aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/print.c
blob: 5c62d3c1113496515d2e8af63c753ab24f28a3ad (plain) (blame)
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
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
/*
 * Evolution calendar - Print support
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>
 *
 *
 * Authors:
 *      Michael Zucchi <notzed@ximian.com>
 *      Federico Mena-Quintero <federico@ximian.com>
 *      Damon Chaplin <damon@ximian.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <sys/stat.h>
#include <sys/time.h>
#include <math.h>
#include <string.h>
#include <time.h>
#include <glib.h>
#include <gtk/gtk.h>
#include <glib/gi18n.h>
#include <libedataserver/e-time-utils.h>
#include <libedataserver/e-data-server-util.h>
#include <e-util/e-util.h>
#include <e-util/e-dialog-widgets.h>
#include <e-util/e-print.h>
#include <libecal/e-cal-time-util.h>
#include <libecal/e-cal-component.h>
#include "e-cal-model.h"
#include "e-day-view.h"
#include "e-day-view-layout.h"
#include "e-week-view.h"
#include "e-week-view-layout.h"
#include "e-task-table.h"
#include "gnome-cal.h"
#include "print.h"

#include "art/jump.xpm"

typedef struct PrintCompItem PrintCompItem;
typedef struct PrintCalItem PrintCalItem;

struct PrintCompItem {
    ECal *client;
    ECalComponent *comp;
    icaltimezone *zone;
    gboolean use_24_hour_format;
};

struct PrintCalItem {
    GnomeCalendar *gcal;
    time_t start;
};

static double
evo_calendar_print_renderer_get_width (GtkPrintContext *context,
                       PangoFontDescription *font,
                       const gchar *text)
{
    PangoLayout *layout;
    gint layout_width, layout_height;

    layout = gtk_print_context_create_pango_layout (context);

    pango_layout_set_font_description (layout, font);
    pango_layout_set_text (layout, text, -1);
    pango_layout_set_indent (layout, 0);
    pango_layout_get_size (layout, &layout_width, &layout_height);

    g_object_unref (layout);

    return pango_units_to_double (layout_width);
}

static gdouble
evo_calendar_print_renderer_get_height (GtkPrintContext *context,
                    PangoFontDescription *font,
                    const gchar *text)
{
    PangoLayout *layout;
    gint layout_width, layout_height;

    layout = gtk_print_context_create_pango_layout (context);

    pango_layout_set_font_description (layout, font);
    pango_layout_set_text (layout, text, -1);
    pango_layout_set_indent (layout, 0);
    pango_layout_get_size (layout, &layout_width, &layout_height);

    g_object_unref (layout);

    return pango_units_to_double (layout_height);
}

static double
get_font_size (PangoFontDescription *font)
{
    g_return_val_if_fail (font, 0.0);

    return pango_units_to_double (pango_font_description_get_size (font));
}



/*
 * Note that most dimensions are in points (1/72 of an inch) since that is
 * what gnome-print uses.
 */

/* GtkHTML prints using a fixed margin. It has code to get the margins from
 * gnome-print keys, but it's commented out. The corresponding code here
 * doesn't seem to work either (getting zero margins), so we adopt
 * gtkhtml's cheat. */

#define TEMP_MARGIN .05

/* The fonts to use */
#define FONT_FAMILY "Sans"

/* The font size to use for normal text. */
#define DAY_NORMAL_FONT_SIZE    12
#define WEEK_NORMAL_FONT_SIZE   12
#define MONTH_NORMAL_FONT_SIZE  8

/* The height of the header bar across the top of the Day, Week & Month views,
   which contains the dates shown and the 2 small calendar months. */
#define HEADER_HEIGHT       80

/* The width of the small calendar months, the space from the right edge of
   the header rectangle, and the space between the months. */
#define MIN_SMALL_MONTH_WIDTH   100
#define SMALL_MONTH_PAD     5
#define SMALL_MONTH_SPACING 20

/* The minimum number of rows we leave space for for the long events in the
   day view. */
#define DAY_VIEW_MIN_ROWS_IN_TOP_DISPLAY    2

/* The row height for long events in the day view. */
#define DAY_VIEW_ROW_HEIGHT     14

/* The minutes per row in the day view printout. */
#define DAY_VIEW_MINS_PER_ROW       30

#define DAY_VIEW_ROWS           ((60 / DAY_VIEW_MINS_PER_ROW) * 24)

/* The width of the column with all the times in it. */
#define DAY_VIEW_TIME_COLUMN_WIDTH  36

/* The space on the right of each event. */
#define DAY_VIEW_EVENT_X_PAD        8

/* Allowance for small errors in floating point comparisons. */
#define EPSILON         0.01

/* The weird month of September 1752, where 3 Sep through 13 Sep were
   eliminated due to the Gregorian reformation. */
static const gint sept_1752[42] = {
     0,  0,  1,  2, 14, 15, 16,
    17, 18, 19, 20, 21, 22, 23,
    24, 25, 26, 27, 28, 29, 30,
     0,  0,  0,  0,  0,  0,  0,
     0,  0,  0,  0,  0,  0,  0,
     0,  0,  0,  0,  0,  0,  0
};
#define SEPT_1752_START 2       /* Start day within month */
#define SEPT_1752_END 20        /* End day within month */

struct pdinfo
{
    gint days_shown;
    time_t day_starts[E_DAY_VIEW_MAX_DAYS + 1];

    GArray *long_events;
    GArray *events[E_DAY_VIEW_MAX_DAYS];

    gint start_hour;
    gint end_hour;
    gint start_minute_offset;
    gint end_minute_offset;
    gint rows;
    gint mins_per_row;
    guint8 cols_per_row[DAY_VIEW_ROWS];
    gboolean use_24_hour_format;
    icaltimezone *zone;
};

struct psinfo
{
    gint days_shown;
    time_t day_starts[E_WEEK_VIEW_MAX_WEEKS * 7 + 1];

    GArray *events;

    gint rows_per_cell;
    gint rows_per_compressed_cell;
    gint display_start_weekday;
    gboolean multi_week_view;
    gint weeks_shown;
    gint month;
    gboolean compress_weekend;
    gboolean use_24_hour_format;
    gdouble row_height;
    gdouble header_row_height;
    icaltimezone *zone;
};

/* Convenience function to help the transition to timezone functions.
   It converts a time_t to a struct tm. */
static void
convert_timet_to_struct_tm (time_t time,
                            icaltimezone *zone,
                            struct tm *tm)
{
    struct icaltimetype tt;

    /* Convert it to an icaltimetype. */
    tt = icaltime_from_timet_with_zone (time, FALSE, zone);

    /* Fill in the struct tm. */
    tm->tm_year = tt.year - 1900;
    tm->tm_mon = tt.month - 1;
    tm->tm_mday = tt.day;
    tm->tm_hour = tt.hour;
    tm->tm_min = tt.minute;
    tm->tm_sec = tt.second;
    tm->tm_isdst = tt.is_daylight;

    tm->tm_wday = time_day_of_week (tt.day, tt.month - 1, tt.year);
}

/* Fills the 42-element days array with the day numbers for the specified
 * month.  Slots outside the bounds of the month are filled with zeros.
 * The starting and ending indexes of the days are returned in the start
 * and end arguments. */
static void
build_month (ECalModel *model,
             gint month,
             gint year,
             gint *days,
             gint *start,
             gint *end)
{
    gint i;
    gint d_month, d_week, week_start_day;

    /* Note that months are zero-based, so September is month 8 */

    if ((year == 1752) && (month == 8)) {
        memcpy (days, sept_1752, 42 * sizeof (gint));

        if (start)
            *start = SEPT_1752_START;

        if (end)
            *end = SEPT_1752_END;

        return;
    }

    for (i = 0; i < 42; i++)
        days[i] = 0;

    d_month = time_days_in_month (year, month);
    /* Get the start weekday in the month, 0=Sun to 6=Sat. */
    d_week = time_day_of_week (1, month, year);

    /* Get the configuration setting specifying which weekday we put on
       the left column, 0=Sun to 6=Sat. */
    week_start_day = e_cal_model_get_week_start_day (model);

    /* Figure out which square we want to put the 1 in. */
    d_week = (d_week + 7 - week_start_day) % 7;

    for (i = 0; i < d_month; i++)
        days[d_week + i] = i + 1;

    if (start)
        *start = d_week;

    if (end)
        *end = d_week + d_month - 1;
}

static PangoFontDescription *
get_font_for_size (double height, PangoWeight weight)
{
    PangoFontDescription *desc;
    gint size;

    #define MAGIC_SCALE_FACTOR (0.86)
    size = pango_units_from_double (height * MAGIC_SCALE_FACTOR);

    desc = pango_font_description_new ();
    pango_font_description_set_size (desc, size);
    pango_font_description_set_weight (desc, weight);
    pango_font_description_set_family_static (desc, FONT_FAMILY);

    return desc;
}

/* Prints a rectangle, with or without a border, filled or outline, and
   possibly with triangular arrows at one or both horizontal edges.
   width      = width of border, -ve means no border.
   red,green,blue = bgcolor to fill,   -ve means no fill.
   left_triangle_width, right_triangle_width = width from edge of rectangle to
          point of triangle, or -ve for no triangle. */
static void
print_border_with_triangles (GtkPrintContext *pc,
                 gdouble x1, gdouble x2,
                 gdouble y1, gdouble y2,
                 gdouble line_width,
                 gdouble red, gdouble green, gdouble blue,
                 gdouble left_triangle_width,
                 gdouble right_triangle_width)
{
    cairo_t *cr = gtk_print_context_get_cairo_context (pc);

    cairo_save (cr);

    /* Fill in the interior of the rectangle, if desired. */
    if (red >= -EPSILON && green >= -EPSILON && blue >= -EPSILON) {

        cairo_move_to (cr, x1, y1);

        if (left_triangle_width > 0.0)
            cairo_line_to (cr, x1 - left_triangle_width,
                      (y1 + y2) / 2);

        cairo_line_to (cr, x1, y2);
        cairo_line_to (cr, x2, y2);

        if (right_triangle_width > 0.0)
            cairo_line_to (cr, x2 + right_triangle_width, (y1 + y2) / 2);

        cairo_line_to (cr, x2, y1);
        cairo_close_path (cr);
        cairo_set_source_rgb (cr, red, green, blue);
        cairo_fill (cr);
        cairo_restore (cr);
        cairo_save (cr);
    }

    /* Draw the outline, if desired. */
    if (line_width >= EPSILON) {

        cr = gtk_print_context_get_cairo_context (pc);
        cairo_move_to (cr, x1, y1);

        if (left_triangle_width > 0.0)
            cairo_line_to (cr, x1 - left_triangle_width,
                        (y1 + y2) / 2);

        cairo_line_to (cr, x1, y2);
        cairo_line_to (cr, x2, y2);

        if (right_triangle_width > 0.0)
            cairo_line_to (cr, x2 + right_triangle_width,
                        (y1 + y2) / 2);

        cairo_line_to (cr, x2, y1);
        cairo_close_path (cr);
        cairo_set_source_rgb (cr, 0, 0, 0);
        cairo_set_line_width (cr, line_width);
        cairo_stroke (cr);
    }

    cairo_restore (cr);
}

/* Prints a rectangle, with or without a border, and filled or outline.
   width      = width of border, -ve means no border.
   fillcolor = shade of fill,   -ve means no fill. */
static void
print_border_rgb (GtkPrintContext *pc,
          gdouble x1, gdouble x2,
          gdouble y1, gdouble y2,
          gdouble line_width,
          gdouble red, gdouble green, gdouble blue)
{
    print_border_with_triangles (
        pc, x1, x2, y1, y2, line_width,
        red, green, blue, -1.0, -1.0);
}

static void
print_border (GtkPrintContext *pc,
          gdouble x1, gdouble x2,
          gdouble y1, gdouble y2,
          gdouble line_width,
          gdouble fillcolor)
{
    print_border_rgb (
        pc, x1, x2, y1, y2, line_width,
        fillcolor, fillcolor, fillcolor);
}

static void
print_rectangle (GtkPrintContext *context,
         gdouble x, gdouble y,
         gdouble width, gdouble height,
         gdouble red, gdouble green, gdouble blue)
{
    cairo_t *cr = gtk_print_context_get_cairo_context (context);

    cairo_save (cr);

    cairo_rectangle (cr, x, y, width, height);
    cairo_set_source_rgb (cr, red, green, blue);
    cairo_fill (cr);

    cairo_restore (cr);
}

/* Prints 1 line of aligned text in a box. It is centered vertically, and
   the horizontal alignment can be either PANGO_ALIGN_LEFT, PANGO_ALIGN_RIGHT,
   or PANGO_ALIGN_CENTER. */
static double
print_text (GtkPrintContext *context, PangoFontDescription *desc,
            const gchar *text, PangoAlignment alignment,
            gdouble x1, gdouble x2, gdouble y1, gdouble y2)
{
    PangoLayout *layout;
    gint layout_width, layout_height;
    cairo_t *cr;

    cr = gtk_print_context_get_cairo_context (context);
    layout = gtk_print_context_create_pango_layout (context);

    pango_layout_set_font_description (layout, desc);
    pango_layout_set_alignment (layout, alignment);
    pango_layout_set_text (layout, text, -1);

    /* Grab the width before expanding the layout. */
    pango_layout_get_size (layout, &layout_width, &layout_height);

    pango_layout_set_width (layout, pango_units_from_double (x2 - x1));

    cairo_save (cr);

    /* Set a clipping rectangle. */
    cairo_move_to (cr, x1, y1);
    cairo_rectangle (cr, x1, y1, x2 - x1, y2 - y1);
    cairo_clip (cr);

    cairo_new_path (cr);
    cairo_set_source_rgb (cr, 0, 0, 0);

    cairo_move_to (cr, x1, y1);
    pango_cairo_show_layout (cr, layout);

    cairo_stroke (cr);

    cairo_restore (cr);

    g_object_unref (layout);

    return pango_units_to_double (layout_width);
}

/* gets/frees the font for you, as a normal font */
static double
print_text_size (GtkPrintContext *context, const gchar *text,
                 PangoAlignment alignment, gdouble x1, gdouble x2,
                 gdouble y1, gdouble y2)
{
    PangoFontDescription *font;
    gdouble w;

    font = get_font_for_size (ABS (y2 - y1) * 0.5, PANGO_WEIGHT_NORMAL);
    w = print_text (context, font, text, alignment, x1, x2, y1, y2);
    pango_font_description_free (font);

    return w;
}

/* gets/frees the font for you, as a bold font */
static double
print_text_size_bold (GtkPrintContext *context, const gchar *text,
                      PangoAlignment alignment, gdouble x1, gdouble x2,
                      gdouble y1, gdouble y2)
{
    PangoFontDescription *font;
    gdouble w;

    font = get_font_for_size (ABS (y2 - y1) * 0.5, PANGO_WEIGHT_BOLD);
    w = print_text (context, font, text, alignment, x1, x2, y1, y2);
    pango_font_description_free (font);

    return w;
}

static void
titled_box (GtkPrintContext *context, const gchar *text,
            PangoFontDescription *font, PangoAlignment alignment,
            gdouble *x1, gdouble *y1, gdouble *x2, gdouble *y2,
        gdouble linewidth)
{
    gdouble size;

    size = evo_calendar_print_renderer_get_height (context, font, text);
    print_border (context, *x1, *x2, *y1, *y1 + size  + 2, linewidth, 0.9);
    print_border (context, *x1, *x2, *y1 + size + 2, *y2, linewidth, -1.0);
    *x1 += 2;
    *x2 -= 2;
    *y2 += 2;
    print_text (context, font, text, alignment, *x1, *x2, *y1 + 1.0, *y1 + size);
    *y1 += size + 2;
}

static gboolean
get_show_week_numbers (void)
{
    return e_shell_settings_get_boolean (e_shell_get_shell_settings (e_shell_get_default ()), "cal-show-week-numbers");
}

enum datefmt {
    DATE_MONTH  = 1 << 0,
    DATE_DAY    = 1 << 1,
    DATE_DAYNAME    = 1 << 2,
    DATE_YEAR   = 1 << 3
};

static const gchar *days[] = {
    N_("1st"), N_("2nd"), N_("3rd"), N_("4th"), N_("5th"),
    N_("6th"), N_("7th"), N_("8th"), N_("9th"), N_("10th"),
    N_("11th"), N_("12th"), N_("13th"), N_("14th"), N_("15th"),
    N_("16th"), N_("17th"), N_("18th"), N_("19th"), N_("20th"),
    N_("21st"), N_("22nd"), N_("23rd"), N_("24th"), N_("25th"),
    N_("26th"), N_("27th"), N_("28th"), N_("29th"), N_("30th"),
    N_("31st")
};

/*
  format the date 'nicely' and consistently for various headers
*/
static gchar *
format_date (struct tm *tm,
             gint flags,
             gchar *buffer,
             gint bufflen)
{
    gchar fmt[64];

    fmt[0] = 0;
    if (flags & DATE_DAYNAME) {
        strcat(fmt, "%A");
    }
    if (flags & DATE_DAY) {
        if (flags & DATE_DAYNAME)
            strcat(fmt, " ");
        strcat (fmt, gettext (days[tm->tm_mday-1]));
    }
    if (flags & DATE_MONTH) {
        if (flags & (DATE_DAY|DATE_DAYNAME))
            strcat(fmt, " ");
        strcat(fmt, "%B");
        if ((flags & (DATE_DAY|DATE_YEAR)) == (DATE_DAY|DATE_YEAR))
            strcat(fmt, ",");
    }
    if (flags & DATE_YEAR) {
        if (flags & (DATE_DAY|DATE_DAYNAME|DATE_MONTH))
            strcat(fmt, " ");
        strcat(fmt, "%Y");
    }
    e_utf8_strftime (buffer, bufflen, fmt, tm);
    buffer[bufflen - 1] = '\0';

    return buffer;
}

static gboolean
instance_cb (ECalComponent *comp,
             time_t instance_start,
             time_t instance_end,
             gpointer data)
{

    gboolean *found = ((ECalModelGenerateInstancesData *) data)->cb_data;

    *found = TRUE;

    return FALSE;
}

/* Translators: These are workday abbreviations, e.g. Su=Sunday and Th=thursday */
const gchar *daynames[] =
    { N_("Su"), N_("Mo"), N_("Tu"), N_("We"),
      N_("Th"), N_("Fr"), N_("Sa") };

static gdouble
calc_small_month_width (GtkPrintContext *context, gdouble for_height)
{

    PangoFontDescription *font_bold;
    gdouble res = 0.0;
    gint ii;

    font_bold = get_font_for_size (for_height / 7.4, PANGO_WEIGHT_BOLD);
    res = MAX (evo_calendar_print_renderer_get_width (context, font_bold, "23"), res);
    for (ii = 0; ii < 7; ii++) {
        res = MAX (evo_calendar_print_renderer_get_width (context, font_bold, _(daynames[ii])), res);
    }

    pango_font_description_free (font_bold);

    /* res is max cell width, thus multiply it with column count plus some space between columns */
    res = (res + 1.0) * (7 + (get_show_week_numbers () ? 1 : 0)) - 1.0;

    if (res < MIN_SMALL_MONTH_WIDTH)
        res = MIN_SMALL_MONTH_WIDTH;

    return res;
}

/*
  print out the month small, embolden any days with events.
*/
static void
print_month_small (GtkPrintContext *context, GnomeCalendar *gcal, time_t month,
           gdouble x1, gdouble y1, gdouble x2, gdouble y2,
           gint titleflags, time_t greystart, time_t greyend,
           gint bordertitle)
{
    icaltimezone *zone;
    PangoFontDescription *font, *font_bold, *font_normal;
    ECalModel *model;
    time_t now, next;
    gint x, y;
    gint days[42];
    gint day, weekday, week_start_day;
    gchar buf[100];
    struct tm tm;
    gdouble font_size;
    gdouble header_size, col_width, row_height, text_xpad, w;
    gdouble cell_top, cell_bottom, cell_left, cell_right, text_right;
    gboolean week_numbers;
    cairo_t *cr;

    model = gnome_calendar_get_model (gcal);
    zone = e_cal_model_get_timezone (model);

    week_numbers = get_show_week_numbers ();

    /* Print the title, e.g. 'June 2001', in the top 16% of the area. */
    convert_timet_to_struct_tm (month, zone, &tm);
    format_date (&tm, titleflags, buf, 100);

    header_size = ABS (y2 - y1) * 0.16;

    font = get_font_for_size (header_size, PANGO_WEIGHT_BOLD);
    if (bordertitle)
        print_border (context, x1, x2, y1, y1 + header_size, 1.0, 0.9);
    print_text (context, font, buf, PANGO_ALIGN_CENTER, x1, x2,
            y1, y1 + header_size);
    pango_font_description_free (font);

    y1 += header_size;
    col_width = (x2 - x1) / (7 + (week_numbers ? 1 : 0));

    /* The top row with the day abbreviations gets an extra bit of
       vertical space around it. */
    row_height = ABS (y2 - y1) / 7.4;

    /* First we need to calculate a reasonable font size. We start with a
       rough guess of just under the height of each row. */
    font_size = row_height;

    /* get month days */
    convert_timet_to_struct_tm (month, zone, &tm);
    build_month (model, tm.tm_mon, tm.tm_year + 1900, days, NULL, NULL);

    font_normal = get_font_for_size (font_size, PANGO_WEIGHT_NORMAL);
    font_bold = get_font_for_size (font_size, PANGO_WEIGHT_BOLD);

    /* Get a reasonable estimate of the largest number we will need,
       and use it to calculate the offset from the right edge of the
       cell that we should put the numbers. */
    w = evo_calendar_print_renderer_get_width (context, font_bold, "23");
    text_xpad = (col_width - w) / 2;

    cr = gtk_print_context_get_cairo_context (context);
    cairo_set_source_rgb (cr, 0, 0, 0);

    /* Print the abbreviated day names across the top in bold. */
    week_start_day = e_cal_model_get_week_start_day (model);
    weekday = week_start_day;
    for (x = 0; x < 7; x++) {
        print_text (
            context, font_bold,
            _(daynames[weekday]), PANGO_ALIGN_RIGHT,
            x1 + (x + (week_numbers ? 1 : 0)) * col_width, x1 + (x + 1 + (week_numbers ? 1 : 0)) * col_width,
            y1, y1 + row_height * 1.4);
        weekday = (weekday + 1) % 7;
    }

    y1 += row_height * 1.4;

    now = time_month_begin_with_zone (month, zone);
    for (y = 0; y < 6; y++) {

        cell_top = y1 + y * row_height;
        cell_bottom = cell_top + row_height;

        if (week_numbers) {
            cell_left = x1;
            /* We add a 0.05 to make sure the cells meet up with
               each other. Otherwise you sometimes get lines
               between them which looks bad. Maybe I'm not using
               coords in the way gnome-print expects. */
            cell_right = cell_left + col_width + 0.05;
            text_right = cell_right - text_xpad;

            /* last week can be empty */
            for (x = 0; x < 7; x++) {
                day = days[y * 7 + x];
                if (day != 0)
                    break;
            }

            if (day != 0) {
                time_t week_begin = time_week_begin_with_zone (now, week_start_day, zone);

                convert_timet_to_struct_tm (week_begin, zone, &tm);

                /* month in e_calendar_item_get_week_number is also zero-based */
                sprintf (buf, "%d", e_calendar_item_get_week_number (NULL, tm.tm_mday, tm.tm_mon, tm.tm_year + 1900));

                print_text (context, font_normal, buf, PANGO_ALIGN_RIGHT,
                        cell_left, text_right,
                        cell_top, cell_bottom);
            }
        }

        for (x = 0; x < 7; x++) {

            cell_left = x1 + (x + (week_numbers ? 1 : 0)) * col_width;
            /* We add a 0.05 to make sure the cells meet up with
               each other. Otherwise you sometimes get lines
               between them which looks bad. Maybe I'm not using
               coords in the way gnome-print expects. */
            cell_right = cell_left + col_width + 0.05;
            text_right = cell_right - text_xpad;

            day = days[y * 7 + x];
            if (day != 0) {
                gboolean found = FALSE;
                sprintf (buf, "%d", day);

                /* this is a slow messy way to do this ... but easy ... */
                e_cal_model_generate_instances (gnome_calendar_get_model (gcal), now,
                                time_day_end_with_zone (now, zone),
                                instance_cb, &found);

                font = found ? font_bold : font_normal;

                next = time_add_day_with_zone (now, 1, zone);
                if ((now >= greystart && now < greyend)
                    || (greystart >= now && greystart < next)) {
                    print_border (context,
                              cell_left, cell_right,
                              cell_top, cell_bottom,
                              -1.0, 0.75);
                }
                print_text (context, font, buf, PANGO_ALIGN_RIGHT,
                        cell_left, text_right,
                        cell_top, cell_bottom);

                now = next;
            }
        }
    }
    pango_font_description_free (font_normal);
    pango_font_description_free (font_bold);
}

/* wraps text into the print context, not taking up more than its allowed space */
static double
bound_text (GtkPrintContext *context,
            PangoFontDescription *font,
            const gchar *text, gint len,
        gdouble x1, gdouble y1,
        gdouble x2, gdouble y2,
            gboolean can_wrap, gdouble *last_page_start, gint *pages)
{
    PangoLayout *layout;
    gint layout_width, layout_height;
    cairo_t *cr;

    cr = gtk_print_context_get_cairo_context (context);
    layout = gtk_print_context_create_pango_layout (context);

    pango_layout_set_font_description (layout, font);
    pango_layout_set_text (layout, text, len);
    pango_layout_set_width (layout, pango_units_from_double (x2 - x1));

    if (can_wrap)
        pango_layout_set_wrap (layout, PANGO_WRAP_WORD_CHAR);

    pango_layout_get_size (layout, &layout_width, &layout_height);

    if (last_page_start &&
        y1 + pango_units_to_double (layout_height) >
        y2 + (*last_page_start)) {
        /* draw this on new page */
        if (pages)
            *pages = *pages + 1;

        *last_page_start = *last_page_start + y2;
        y1 = *last_page_start + 10.0;
    }

    if (!last_page_start || (y1 >= 0.0 && y1 < y2)) {
        cairo_save (cr);

        /* Set a clipping rectangle. */
        cairo_move_to (cr, x1, y1);
        cairo_rectangle (cr, x1, y1, x2 - x1, y2 - y1);
        cairo_clip (cr);
        cairo_new_path (cr);

        cairo_move_to (cr, x1, y1);
        pango_cairo_show_layout (cr, layout);
        cairo_stroke (cr);

        cairo_restore (cr);
    }

    g_object_unref (layout);

    return y1 + pango_units_to_double (layout_height);
}

/* Draw the borders, lines, and times down the left of the day view. */
static void
print_day_background (GtkPrintContext *context, GnomeCalendar *gcal,
              time_t whence, struct pdinfo *pdi,
              double left, double right, double top, double bottom)
{
    ECalModel *model;
    PangoFontDescription *font_hour, *font_minute;
    gdouble yinc, y;
    gdouble width = DAY_VIEW_TIME_COLUMN_WIDTH;
    gdouble font_size, max_font_size, hour_font_size, minute_font_size;
    gchar buf[20];
    const gchar *minute;
    gboolean use_24_hour;
    gint i, hour, row;
    gdouble hour_minute_x, hour_minute_width;
    cairo_t *cr;

    model = gnome_calendar_get_model (gcal);
    use_24_hour = e_cal_model_get_use_24_hour_format (model);

    /* Fill the time column in light-gray. */
    print_border (context, left, left + width, top, bottom, -1.0, 0.9);

    /* Draw the border around the entire view. */
    cr = gtk_print_context_get_cairo_context (context);

    cairo_set_source_rgb (cr, 0, 0, 0);
    print_border (context, left, right, top, bottom, 1.0, -1.0);

    /* Draw the vertical line on the right of the time column. */
    cr = gtk_print_context_get_cairo_context (context);
    cairo_set_line_width (cr, 0.0);
    cairo_move_to (cr, left + width, bottom);
    cairo_line_to (cr, left + width, top);
    cairo_stroke (cr);

    /* Calculate the row height. */
    if (top > bottom)
        yinc = (top - bottom) / (pdi->end_hour - pdi->start_hour);
    else
        yinc = (bottom - top) / (pdi->end_hour - pdi->start_hour);

        /* Get the 2 fonts we need. */
    font_size = yinc * 0.6;
    max_font_size = width * 0.45;
    hour_font_size = MIN (font_size, max_font_size);
    font_hour = get_font_for_size (hour_font_size, PANGO_WEIGHT_BOLD);

    font_size = yinc * 0.33;
    max_font_size = width * 0.2;
    minute_font_size = MIN (font_size, max_font_size);
    font_minute = get_font_for_size (minute_font_size, PANGO_WEIGHT_BOLD);
    hour_minute_width = evo_calendar_print_renderer_get_width (context, font_minute, use_24_hour ? "00" : _("am"));
    if (!use_24_hour)
        hour_minute_width = MAX (hour_minute_width, evo_calendar_print_renderer_get_width (context, font_minute, _("pm")));

    row = 0;
    hour_minute_x = left + width - hour_minute_width - 3;
    for (i = pdi->start_hour; i < pdi->end_hour; i++) {
        y = top + yinc * (row + 1);
        cr = gtk_print_context_get_cairo_context (context);
        cairo_set_source_rgb (cr, 0, 0, 0);

        if (use_24_hour) {
            hour = i;
            minute = "00";
        } else {
            if (i < 12)
                minute = _("am");
            else
                minute = _("pm");

            hour = i % 12;
            if (hour == 0)
                hour = 12;
        }

        /* the hour label/minute */
        sprintf (buf, "%d", hour);
        print_text (context, font_hour, buf, PANGO_ALIGN_RIGHT,
                left, hour_minute_x,
                y - yinc, y - yinc + hour_font_size);
        print_text (context, font_minute, minute, PANGO_ALIGN_LEFT,
                hour_minute_x, left + width - 3,
                y - yinc, y - yinc + minute_font_size);

                /* Draw the horizontal line between hours, across the entire
           width of the day view. */
        cr = gtk_print_context_get_cairo_context (context);
        cairo_move_to (cr, left, y);
        cairo_line_to (cr, right, y);
        cairo_set_line_width (cr, 1);
        cairo_stroke (cr);

        /* Draw the horizontal line for the 1/2-hours, across the
           entire width except for part of the time column. */
        cairo_move_to (cr, left + width * 0.6, y - yinc / 2);
        cairo_line_to (cr, right, y - yinc / 2);
        cairo_set_line_width (cr, 1);
        cairo_stroke (cr);
        row++;
    }

    pango_font_description_free (font_hour);
    pango_font_description_free (font_minute);
}

/* This adds one event to the view, adding it to the appropriate array. */
static gint
print_day_add_event (ECalModelComponent *comp_data,
             time_t     start,
             time_t     end,
             icaltimezone *zone,
             gint       days_shown,
             time_t    *day_starts,
             GArray    *long_events,
             GArray   **events)

{
    EDayViewEvent event;
    gint day, offset;
    struct icaltimetype start_tt, end_tt;

#if 0
    g_print ("Day view lower: %s", ctime (&day_starts[0]));
    g_print ("Day view upper: %s", ctime (&day_starts[days_shown]));
    g_print ("Event start: %s", ctime (&start));
    g_print ("Event end  : %s\n", ctime (&end));
#endif

    /* Check that the event times are valid. */
    g_return_val_if_fail (start <= end, -1);
    g_return_val_if_fail (start < day_starts[days_shown], -1);
    g_return_val_if_fail (end > day_starts[0], -1);

    start_tt = icaltime_from_timet_with_zone (start, FALSE, zone);
    end_tt = icaltime_from_timet_with_zone (end, FALSE, zone);

    event.comp_data = comp_data;
    event.start = start;
    event.end = end;
    event.canvas_item = NULL;

    /* Calculate the start & end minute, relative to the top of the
       display. */
    /*offset = day_view->first_hour_shown * 60
      + day_view->first_minute_shown;*/
    offset = 0;
    event.start_minute = start_tt.hour * 60 + start_tt.minute - offset;
    event.end_minute = end_tt.hour * 60 + end_tt.minute - offset;

    event.start_row_or_col = 0;
    event.num_columns = 0;

    /* Find out which array to add the event to. */
    for (day = 0; day < days_shown; day++) {
        if (start >= day_starts[day] && end <= day_starts[day + 1]) {

            /* Special case for when the appointment ends at
               midnight, i.e. the start of the next day. */
            if (end == day_starts[day + 1]) {

                /* If the event last the entire day, then we
                   skip it here so it gets added to the top
                   canvas. */
                if (start == day_starts[day])
                    break;

                event.end_minute = 24 * 60;
            }
            g_array_append_val (events[day], event);
            return day;
        }
    }

    /* The event wasn't within one day so it must be a long event,
       i.e. shown in the top canvas. */
    g_array_append_val (long_events, event);
    return E_DAY_VIEW_LONG_EVENT;
}

static gboolean
print_day_details_cb (ECalComponent *comp, time_t istart, time_t iend,
              gpointer data)
{
    ECalModelGenerateInstancesData *mdata = (ECalModelGenerateInstancesData *) data;
    struct pdinfo *pdi = (struct pdinfo *) mdata->cb_data;

    print_day_add_event (mdata->comp_data, istart, iend,
                 pdi->zone, pdi->days_shown, pdi->day_starts,
                 pdi->long_events, pdi->events);

    return TRUE;
}

static void
free_event_array (GArray *array)
{
    EDayViewEvent *event;
    gint event_num;

    for (event_num = 0; event_num < array->len; event_num++) {
        event = &g_array_index (array, EDayViewEvent, event_num);
        if (event->canvas_item)
            g_object_run_dispose (G_OBJECT (event->canvas_item));
    }

    g_array_set_size (array, 0);
}

static const gchar *
get_type_as_string (icalparameter_cutype cutype)
{
    const gchar *res;

    switch (cutype) {
        case ICAL_CUTYPE_NONE:       res = NULL;            break;
        case ICAL_CUTYPE_INDIVIDUAL: res = _("Individual"); break;
        case ICAL_CUTYPE_GROUP:      res = _("Group");      break;
        case ICAL_CUTYPE_RESOURCE:   res = _("Resource");   break;
        case ICAL_CUTYPE_ROOM:       res = _("Room");       break;
        default:                     res = _("Unknown");    break;
    }

    return res;
}

static const gchar *
get_role_as_string (icalparameter_role role)
{
    const gchar *res;

    switch (role) {
        case ICAL_ROLE_NONE:           res = NULL;                      break;
        case ICAL_ROLE_CHAIR:          res = _("Chair");                break;
        case ICAL_ROLE_REQPARTICIPANT: res = _("Required Participant"); break;
        case ICAL_ROLE_OPTPARTICIPANT: res = _("Optional Participant"); break;
        case ICAL_ROLE_NONPARTICIPANT: res = _("Non-Participant");      break;
        default:                       res = _("Unknown");              break;
    }

    return res;
}

static double
print_attendees (GtkPrintContext *context, PangoFontDescription *font, cairo_t *cr,
         double left, double right, double top, double bottom,
         ECalComponent *comp, gint page_nr, gint *pages)
{
    GSList *attendees = NULL, *l;

    g_return_val_if_fail (context != NULL, top);
    g_return_val_if_fail (font != NULL, top);
    g_return_val_if_fail (cr != NULL, top);

    e_cal_component_get_attendee_list (comp, &attendees);

    for (l = attendees; l; l = l->next) {
        ECalComponentAttendee *attendee = l->data;

        if (attendee && attendee->value && *attendee->value) {
            GString *text;
            const gchar *tmp;

            tmp = get_type_as_string (attendee->cutype);
            text = g_string_new (tmp ? tmp : "");

            if (tmp)
                g_string_append (text, " ");

            if (attendee->cn && *attendee->cn)
                g_string_append (text, attendee->cn);
            else {
                /* it's usually in form of "mailto:email@domain" */
                tmp = strchr (attendee->value, ':');
                g_string_append (text, tmp ? tmp + 1 : attendee->value);
            }

            tmp = get_role_as_string (attendee->role);
            if (tmp) {
                g_string_append (text, " (");
                g_string_append (text, tmp);
                g_string_append (text, ")");
            }

            if (top > bottom) {
                top = 10.0;
                cairo_show_page (cr);
            }

            top = bound_text (
                context, font, text->str, -1, left + 40.0,
                top, right, bottom, FALSE, NULL, pages);

            g_string_free (text, TRUE);
        }
    }

    e_cal_component_free_attendee_list (attendees);

    return top;
}

static gchar *
get_summary_with_location (icalcomponent *icalcomp)
{
    const gchar *summary, *location;
    gchar *text;

    g_return_val_if_fail (icalcomp != NULL, NULL);

    summary = icalcomponent_get_summary (icalcomp);
    if (summary == NULL)
        summary = "";

    location = icalcomponent_get_location (icalcomp);
    if (location && *location) {
        text = g_strdup_printf ("%s (%s)", summary, location);
    } else {
        text = g_strdup (summary);
    }

    return text;
}

static void
print_day_long_event (GtkPrintContext *context,
                      PangoFontDescription *font,
                      gdouble left,
                      gdouble right,
                      gdouble top,
                      gdouble bottom,
                      gdouble row_height,
                      EDayViewEvent *event,
                      struct pdinfo *pdi,
                      ECalModel *model)
{
    gdouble x1, x2, y1, y2;
    gdouble left_triangle_width = -1.0, right_triangle_width = -1.0;
    gchar *text;
    gchar buffer[32];
    struct tm date_tm;
    gdouble red, green, blue;

    if (!is_comp_data_valid (event))
        return;

    /* If the event starts before the first day being printed, draw a
       triangle. (Note that I am assuming we are just showing 1 day at
       the moment.) */
    if (event->start < pdi->day_starts[0])
        left_triangle_width = 4;

    /* If the event ends after the last day being printed, draw a
       triangle. */
    if (event->end > pdi->day_starts[1])
        right_triangle_width = 4;

    x1 = left + 10;
    x2 = right - 10;
    y1 = top + event->start_row_or_col * row_height + 1;
    y2 = y1 + row_height - 1;
    red = green = blue = 0.95;
    e_cal_model_get_rgb_color_for_component (
        model, event->comp_data, &red, &green, &blue);
    print_border_with_triangles (context, x1, x2, y1, y2, 0.5, red, green, blue,
                     left_triangle_width,
                     right_triangle_width);

    /* If the event starts after the first day being printed, we need to
       print the start time. */
    if (event->start > pdi->day_starts[0]) {
        date_tm.tm_year = 2001;
        date_tm.tm_mon = 0;
        date_tm.tm_mday = 1;
        date_tm.tm_hour = event->start_minute / 60;
        date_tm.tm_min = event->start_minute % 60;
        date_tm.tm_sec = 0;
        date_tm.tm_isdst = -1;

        e_time_format_time (&date_tm, pdi->use_24_hour_format, FALSE,
                    buffer, sizeof (buffer));

        x1 += 4;
        x1 += print_text (context, font, buffer, PANGO_ALIGN_LEFT, x1, x2, y1, y2);
    }

    /* If the event ends before the end of the last day being printed,
       we need to print the end time. */
    if (event->end < pdi->day_starts[1]) {
        date_tm.tm_year = 2001;
        date_tm.tm_mon = 0;
        date_tm.tm_mday = 1;
        date_tm.tm_hour = event->end_minute / 60;
        date_tm.tm_min = event->end_minute % 60;
        date_tm.tm_sec = 0;
        date_tm.tm_isdst = -1;

        e_time_format_time (&date_tm, pdi->use_24_hour_format, FALSE,
                    buffer, sizeof (buffer));

        x2 -= 4;
        x2 -= print_text (context, font, buffer, PANGO_ALIGN_RIGHT, x1, x2, y1, y2);
    }

    /* Print the text. */
    text = get_summary_with_location (event->comp_data->icalcomp);

    x1 += 4;
    x2 -= 4;
    print_text (context, font, text, PANGO_ALIGN_CENTER, x1, x2, y1, y2);

    g_free (text);
}

static void
print_day_event (GtkPrintContext *context, PangoFontDescription *font,
         double left, double right, double top, double bottom,
         EDayViewEvent *event, struct pdinfo *pdi, ECalModel *model)
{
    gdouble x1, x2, y1, y2, col_width, row_height;
    gint start_offset, end_offset, start_row, end_row;
    gchar *text, start_buffer[32], end_buffer[32];
    gboolean display_times = FALSE;
    struct tm date_tm;
    gdouble red, green, blue;

    if (!is_comp_data_valid (event))
        return;

    if ((event->start_minute >= pdi->end_minute_offset)
        || (event->end_minute <= pdi->start_minute_offset))
        return;

    start_offset = event->start_minute - pdi->start_minute_offset;
    end_offset = event->end_minute - pdi->start_minute_offset;

    start_row = start_offset / pdi->mins_per_row;
    start_row = MAX (0, start_row);
    end_row = (end_offset - 1) / pdi->mins_per_row;
    end_row = MIN (pdi->rows - 1, end_row);
    col_width = (right - left) /
        pdi->cols_per_row[event->start_minute / pdi->mins_per_row];

    if (start_offset != start_row * pdi->mins_per_row
        || end_offset != (end_row + 1) * pdi->mins_per_row)
        display_times = TRUE;

    x1 = left + event->start_row_or_col * col_width;
    x2 = x1 + event->num_columns * col_width - DAY_VIEW_EVENT_X_PAD;

    row_height = (bottom - top) / pdi->rows;
    y1 = top + start_row * row_height;
    y2 = top + (end_row + 1) * row_height;
#if 0
    g_print ("Event: %g,%g %g,%g\n  row_height: %g start_row: %i top: %g rows: %i\n",
         x1, y1, x2, y2, row_height, start_row, top, pdi->rows);
#endif

    red = green = blue = 0.95;
    e_cal_model_get_rgb_color_for_component (
        model, event->comp_data, &red, &green, &blue);
    print_border_rgb (context, x1, x2, y1, y2, 1.0, red, green, blue);

    text = get_summary_with_location (event->comp_data->icalcomp);

    if (display_times) {
        gchar *t = NULL;

        date_tm.tm_year = 2001;
        date_tm.tm_mon = 0;
        date_tm.tm_mday = 1;
        date_tm.tm_hour = event->start_minute / 60;
        date_tm.tm_min = event->start_minute % 60;
        date_tm.tm_sec = 0;
        date_tm.tm_isdst = -1;

        e_time_format_time (&date_tm, pdi->use_24_hour_format, FALSE,
                    start_buffer, sizeof (start_buffer));

        date_tm.tm_hour = event->end_minute / 60;
        date_tm.tm_min = event->end_minute % 60;

        e_time_format_time (&date_tm, pdi->use_24_hour_format, FALSE,
                    end_buffer, sizeof (end_buffer));

        t = text;
        text = g_strdup_printf ("%s - %s %s ", start_buffer,
                    end_buffer, text);

        g_free (t);
    }

    bound_text (context, font, text, -1, x1 + 2, y1, x2 - 2, y2, FALSE, NULL, NULL);

    g_free (text);
}

static void
print_day_details (GtkPrintContext *context, GnomeCalendar *gcal, time_t whence,
           double left, double right, double top, double bottom)
{
    ECalModel *model;
    icaltimezone *zone;
    EDayViewEvent *event;
    PangoFontDescription *font;
    time_t start, end;
    struct pdinfo pdi = { 0 };
    gint rows_in_top_display, i;
    gdouble font_size, max_font_size;
    cairo_t *cr;
    GdkPixbuf *pixbuf = NULL;
#define LONG_DAY_EVENTS_TOP_SPACING 4
#define LONG_DAY_EVENTS_BOTTOM_SPACING 2

    model = gnome_calendar_get_model (gcal);
    zone = e_cal_model_get_timezone (model);

    start = time_day_begin_with_zone (whence, zone);
    end = time_day_end_with_zone (start, zone);

    pdi.days_shown = 1;
    pdi.day_starts[0] = start;
    pdi.day_starts[1] = end;
    pdi.long_events = g_array_new (FALSE, FALSE, sizeof (EDayViewEvent));
    pdi.events[0] = g_array_new (FALSE, FALSE, sizeof (EDayViewEvent));
    pdi.start_hour = e_cal_model_get_work_day_start_hour (model);
    pdi.end_hour = e_cal_model_get_work_day_end_hour (model);
    if (e_cal_model_get_work_day_end_minute (model) != 0)
        pdi.end_hour++;
    pdi.rows = (pdi.end_hour - pdi.start_hour) * 2;
    pdi.mins_per_row = 30;
    pdi.start_minute_offset = pdi.start_hour * 60;
    pdi.end_minute_offset = pdi.end_hour * 60;
    pdi.use_24_hour_format = e_cal_model_get_use_24_hour_format (model);
    pdi.zone = e_cal_model_get_timezone (model);

    /* Get the events from the server. */
    e_cal_model_generate_instances (model, start, end, print_day_details_cb, &pdi);
    qsort (pdi.long_events->data, pdi.long_events->len,
           sizeof (EDayViewEvent), e_day_view_event_sort_func);
    qsort (pdi.events[0]->data, pdi.events[0]->len,
           sizeof (EDayViewEvent), e_day_view_event_sort_func);

    /* Also print events outside of work hours */
    if (pdi.events[0]->len > 0) {
        struct icaltimetype tt;

        event = &g_array_index (pdi.events[0], EDayViewEvent, 0);
        tt = icaltime_from_timet_with_zone (event->start, FALSE, zone);
        if (tt.hour < pdi.start_hour)
            pdi.start_hour = tt.hour;
        pdi.start_minute_offset = pdi.start_hour * 60;

        event = &g_array_index (pdi.events[0], EDayViewEvent, pdi.events[0]->len - 1);
        tt = icaltime_from_timet_with_zone (event->end, FALSE, zone);
        if (tt.hour > pdi.end_hour || tt.hour == 0) {
            pdi.end_hour = tt.hour ? tt.hour : 24;
            if (tt.minute > 0)
                pdi.end_hour++;
        }
        pdi.end_minute_offset = pdi.end_hour * 60;

        pdi.rows = (pdi.end_hour - pdi.start_hour) * 2;
    }

    /* Lay them out the long events, across the top of the page. */
    e_day_view_layout_long_events (pdi.long_events, pdi.days_shown,
                       pdi.day_starts, &rows_in_top_display);

     /*Print the long events. */
    font = get_font_for_size (12, PANGO_WEIGHT_NORMAL);

    /* We always leave space for DAY_VIEW_MIN_ROWS_IN_TOP_DISPLAY in the
       top display, but we may have more rows than that, in which case
       the main display area will be compressed. */
    /* Limit long day event to half the height of the panel */
    rows_in_top_display = MIN (MAX (rows_in_top_display,
                   DAY_VIEW_MIN_ROWS_IN_TOP_DISPLAY),
                   (bottom-top)*0.5/DAY_VIEW_ROW_HEIGHT);

    if (rows_in_top_display > pdi.long_events->len)
        rows_in_top_display = pdi.long_events->len;

    for (i = 0; i < rows_in_top_display && i < pdi.long_events->len; i++) {
        event = &g_array_index (pdi.long_events, EDayViewEvent, i);
        print_day_long_event (
            context, font, left, right,
            top + LONG_DAY_EVENTS_TOP_SPACING, bottom,
            DAY_VIEW_ROW_HEIGHT, event, &pdi, model);
    }

    if (rows_in_top_display < pdi.long_events->len) {
        /* too many events */
        cairo_t *cr = gtk_print_context_get_cairo_context (context);
        gint x, y;

        if (!pixbuf) {
            const gchar **xpm = (const gchar **)jump_xpm;

            /* this ugly thing is here only to get rid of compiler warning
               about unused 'jump_xpm_focused' */
            if (pixbuf)
                xpm = (const gchar **)jump_xpm_focused;

            pixbuf = gdk_pixbuf_new_from_xpm_data (xpm);
        }

        /* Right align - 10 comes from print_day_long_event  too */
        x = right - gdk_pixbuf_get_width (pixbuf) * 0.5 - 10;
        /* Placing '...' over the last all day event entry printed. '-1 -1' comes
            from print_long_day_event (top/bottom spacing in each cell) */
        y = top + LONG_DAY_EVENTS_TOP_SPACING
            + DAY_VIEW_ROW_HEIGHT * (i - 1)
            + (DAY_VIEW_ROW_HEIGHT - 1 - 1) * 0.5;

        cairo_save (cr);
        cairo_scale (cr, 0.5, 0.5);
        gdk_cairo_set_source_pixbuf (cr, pixbuf, x * 2.0, y * 2.0);
        cairo_paint (cr);
        cairo_restore (cr);
    }

    if (!rows_in_top_display)
        rows_in_top_display++;

    /* Draw the border around the long events. */
    cr = gtk_print_context_get_cairo_context (context);

    cairo_set_source_rgb (cr, 0, 0, 0);
    print_border (
        context, left, right,
        top, top + rows_in_top_display * DAY_VIEW_ROW_HEIGHT +
        LONG_DAY_EVENTS_TOP_SPACING + LONG_DAY_EVENTS_BOTTOM_SPACING,
        1.0, -1.0);

    /* Adjust the area containing the main display. */
    top += rows_in_top_display * DAY_VIEW_ROW_HEIGHT
        + LONG_DAY_EVENTS_TOP_SPACING
        + LONG_DAY_EVENTS_BOTTOM_SPACING;

    /* Draw the borders, lines, and times down the left. */
    print_day_background (context, gcal, whence, &pdi,
                  left, right, top, bottom);
    /* Now adjust to get rid of the time column. */
    left += DAY_VIEW_TIME_COLUMN_WIDTH;

    /* lay out the short events, within the day. */
    e_day_view_layout_day_events (pdi.events[0], DAY_VIEW_ROWS,
                      DAY_VIEW_MINS_PER_ROW, pdi.cols_per_row, -1);

    /* print the short events. */
    if (top > bottom )
        max_font_size = ((top - bottom) / pdi.rows) - 4;
    else
        max_font_size = ((bottom - top ) / pdi.rows) - 4;
    font_size = MIN (DAY_NORMAL_FONT_SIZE, max_font_size);
    font = get_font_for_size (font_size, PANGO_WEIGHT_NORMAL);

    for (i = 0; i < pdi.events[0]->len; i++) {
        event = &g_array_index (pdi.events[0], EDayViewEvent, i);
        print_day_event (context, font, left, right, top, bottom,
                 event, &pdi, model);
    }

    /* Free everything. */
    if (pixbuf)
        g_object_unref (pixbuf);
    free_event_array (pdi.long_events);
    pango_font_description_free (font);
    g_array_free (pdi.long_events, TRUE);
    free_event_array (pdi.events[0]);
    g_array_free (pdi.events[0], TRUE);
}

/* Returns TRUE if the event is a one-day event (i.e. not a long event). */
static gboolean
print_is_one_day_week_event (EWeekViewEvent *event,
                 EWeekViewEventSpan *span,
                 time_t *day_starts)
{
    if (event->start == day_starts[span->start_day]
        && event->end == day_starts[span->start_day + 1])
        return FALSE;

    if (span->num_days == 1
        && event->start >= day_starts[span->start_day]
        && event->end <= day_starts[span->start_day + 1])
        return TRUE;

    return FALSE;
}

static void
print_week_long_event (GtkPrintContext *context, PangoFontDescription *font,
               struct psinfo *psi,
               double x1, double x2, double y1, double row_height,
               EWeekViewEvent *event, EWeekViewEventSpan *span,
               gchar *text, double red, double green, double blue)
{
    gdouble left_triangle_width = -1.0, right_triangle_width = -1.0;
    struct tm date_tm;
    gchar buffer[32];

    /* If the event starts before the first day of the span, draw a
       triangle to indicate it continues. */
    if (event->start < psi->day_starts[span->start_day])
        left_triangle_width = 4;

    /* If the event ends after the last day of the span, draw a
       triangle. */
    if (event->end > psi->day_starts[span->start_day + span->num_days])
        right_triangle_width = 4;

    print_border_with_triangles (
        context, x1, x2, y1, y1 + row_height, 0.0, red, green, blue,
        left_triangle_width, right_triangle_width);

    /* If the event starts after the first day being printed, we need to
       print the start time. */
    if (event->start > psi->day_starts[span->start_day]) {
        date_tm.tm_year = 2001;
        date_tm.tm_mon = 0;
        date_tm.tm_mday = 1;
        date_tm.tm_hour = event->start_minute / 60;
        date_tm.tm_min = event->start_minute % 60;
        date_tm.tm_sec = 0;
        date_tm.tm_isdst = -1;

        e_time_format_time (&date_tm, psi->use_24_hour_format, FALSE,
                    buffer, sizeof (buffer));

        x1 += 4;
        x1 += print_text_size (
            context, buffer, PANGO_ALIGN_LEFT,
            x1, x2, y1, y1 + row_height);
    }

    /* If the event ends before the end of the last day being printed,
       we need to print the end time. */
    if (event->end < psi->day_starts[span->start_day + span->num_days]) {
        date_tm.tm_year = 2001;
        date_tm.tm_mon = 0;
        date_tm.tm_mday = 1;
        date_tm.tm_hour = event->end_minute / 60;
        date_tm.tm_min = event->end_minute % 60;
        date_tm.tm_sec = 0;
        date_tm.tm_isdst = -1;

        e_time_format_time (&date_tm, psi->use_24_hour_format, FALSE,
                    buffer, sizeof (buffer));

        x2 -= 4;
        x2 -= print_text_size (
            context, buffer, PANGO_ALIGN_RIGHT,
            x1, x2, y1, y1 + row_height);
    }

    x1 += 4;
    x2 -= 4;
    print_text_size (context, text, PANGO_ALIGN_CENTER, x1, x2, y1, y1 + row_height);
}

static void
print_week_day_event (GtkPrintContext *context, PangoFontDescription *font,
              struct psinfo *psi,
              double x1, double x2, double y1, double row_height,
              EWeekViewEvent *event, EWeekViewEventSpan *span,
              gchar *text, double red, double green, double blue)
{
    struct tm date_tm;
    gchar buffer[32];

    date_tm.tm_year = 2001;
    date_tm.tm_mon = 0;
    date_tm.tm_mday = 1;
    date_tm.tm_hour = event->start_minute / 60;
    date_tm.tm_min = event->start_minute % 60;
    date_tm.tm_sec = 0;
    date_tm.tm_isdst = -1;

    e_time_format_time (&date_tm, psi->use_24_hour_format, FALSE,
                buffer, sizeof (buffer));
    print_rectangle (context, x1, y1, x2 - x1, row_height, red, green, blue);
    x1 += print_text_size (
        context, buffer, PANGO_ALIGN_LEFT,
        x1, x2, y1, y1 + row_height) + 4;

    if (psi->weeks_shown <= 2) {
        date_tm.tm_hour = event->end_minute / 60;
        date_tm.tm_min = event->end_minute % 60;

        e_time_format_time (&date_tm, psi->use_24_hour_format, FALSE,
                    buffer, sizeof (buffer));

        print_rectangle (context, x1, y1, x2 - x1, row_height, red, green, blue);
        x1 += print_text_size (
            context, buffer, PANGO_ALIGN_LEFT,
            x1, x2, y1, y1 + row_height) + 4;
    }

    print_text_size (
        context, text, PANGO_ALIGN_LEFT,
        x1, x2, y1, y1 + row_height);
}

static void
print_week_event (GtkPrintContext *context, PangoFontDescription *font,
          struct psinfo *psi,
          double left, double top,
          double cell_width, double cell_height,
          ECalModel *model,
          EWeekViewEvent *event, GArray *spans)
{
    EWeekViewEventSpan *span;
    gint span_num;
    gchar *text;
    gint num_days, start_x, start_y, start_h, end_x, end_y, end_h;
    gdouble x1, x2, y1;
    gdouble red, green, blue;
    GdkPixbuf *pixbuf = NULL;

    if (!is_comp_data_valid (event))
        return;

    text = get_summary_with_location (event->comp_data->icalcomp);

    for (span_num = 0; span_num < event->num_spans; span_num++) {
        span = &g_array_index (spans, EWeekViewEventSpan,
                       event->spans_index + span_num);

        if (e_week_view_layout_get_span_position
            (event, span,
             psi->rows_per_cell,
             psi->rows_per_compressed_cell,
             psi->display_start_weekday,
             psi->multi_week_view,
             psi->compress_weekend,
             &num_days)) {

            e_week_view_layout_get_day_position
                (span->start_day,
                 psi->multi_week_view,
                 psi->weeks_shown,
                 psi->display_start_weekday,
                 psi->compress_weekend,
                 &start_x, &start_y, &start_h);

            if (num_days == 1) {
                end_x = start_x;
                end_y = start_y;
                end_h = start_h;
            } else {
                e_week_view_layout_get_day_position
                    (span->start_day + num_days - 1,
                     psi->multi_week_view,
                     psi->weeks_shown,
                     psi->display_start_weekday,
                     psi->compress_weekend,
                     &end_x, &end_y, &end_h);
            }

            x1 = left + start_x * cell_width + 6;
            x2 = left + (end_x + 1) * cell_width - 6;
            y1 = top + start_y * cell_height
                 + psi->header_row_height
                 + span->row * (psi->row_height + 2);

            red = .9;
            green = .9;
            blue = .9;
            e_cal_model_get_rgb_color_for_component (
                model, event->comp_data, &red, &green, &blue);
            if (print_is_one_day_week_event (event, span,
                             psi->day_starts)) {
                print_week_day_event (context, font, psi,
                              x1, x2, y1, psi->row_height,
                              event, span, text, red, green, blue);
            } else {
                print_week_long_event (context, font, psi,
                               x1, x2, y1, psi->row_height,
                               event, span, text, red, green, blue);
            }
        } else {
            cairo_t *cr = gtk_print_context_get_cairo_context (context);

            e_week_view_layout_get_day_position
                (span->start_day,
                 psi->multi_week_view,
                 psi->weeks_shown,
                 psi->display_start_weekday,
                 psi->compress_weekend,
                 &start_x, &start_y, &start_h);

            y1 = top + start_y * cell_height
                 + psi->header_row_height
                 + psi->rows_per_cell * (psi->row_height + 2);

            if (span->row >= psi->rows_per_compressed_cell && psi->compress_weekend) {
                gint end_day_of_week = (psi->display_start_weekday + span->start_day) % 7;

                if (end_day_of_week == 5 || end_day_of_week == 6) {
                    /* Sat or Sun */
                    y1 = top + start_y * cell_height
                         + psi->header_row_height
                         + psi->rows_per_compressed_cell * (psi->row_height + 2);

                }
            }

            if (!pixbuf) {
                const gchar **xpm = (const gchar **)jump_xpm;

                /* this ugly thing is here only to get rid of compiler warning
                   about unused 'jump_xpm_focused' */
                if (pixbuf)
                    xpm = (const gchar **)jump_xpm_focused;

                pixbuf = gdk_pixbuf_new_from_xpm_data (xpm);
            }

            x1 = left + (start_x + 1) * cell_width - 6 - gdk_pixbuf_get_width (pixbuf) * 0.5;

            cairo_save (cr);
            cairo_scale (cr, 0.5, 0.5);
            gdk_cairo_set_source_pixbuf (cr, pixbuf, x1 * 2.0, y1 * 2.0);
            cairo_paint (cr);
            cairo_restore (cr);
        }
    }

    if (pixbuf)
        g_object_unref (pixbuf);

    g_free (text);
}

static void
print_week_view_background (GtkPrintContext *context,
                            PangoFontDescription *font,
                struct psinfo *psi,
                double left, double top,
                double cell_width, double cell_height)
{
    struct tm tm;
    gint day, day_x, day_y, day_h;
    gdouble x1, x2, y1, y2, font_size, fillcolor;
    const gchar *format_string;
    gchar buffer[128];
    cairo_t *cr;

    font_size = get_font_size (font);

    for (day = 0; day < psi->days_shown; day++) {
        e_week_view_layout_get_day_position
            (day, psi->multi_week_view, psi->weeks_shown,
             psi->display_start_weekday, psi->compress_weekend,
             &day_x, &day_y, &day_h);

        x1 = left + day_x * cell_width;
        x2 = left + (day_x + 1) * cell_width;
        y1 = top + day_y * cell_height;
        y2 = y1 + day_h * cell_height;

        convert_timet_to_struct_tm (psi->day_starts[day], psi->zone, &tm);

        /* In the month view we draw a grey background for the end
           of the previous month and the start of the following. */
        fillcolor = -1.0;
        if (psi->multi_week_view && (tm.tm_mon != psi->month))
            fillcolor = 0.9;

        print_border (context, x1, x2, y1, y2, 1.0, fillcolor);

        if (psi->multi_week_view) {
            if (tm.tm_mday == 1)
                format_string = _("%d %B");
            else
                format_string = "%d";
        } else {
            cr = gtk_print_context_get_cairo_context (context);

            cairo_move_to (cr, x1 + 0.1 * cell_width,
                        y1 + psi->header_row_height - 4);
            cairo_line_to (cr, x2,
                        y1 + psi->header_row_height - 4);

            cairo_set_source_rgb (cr, 0, 0, 0);
            cairo_set_line_width (cr, 0.5);
            cairo_stroke (cr);

            /* strftime format %A = full weekday name, %d = day of
               month, %B = full month name. You can change the
               order but don't change the specifiers or add
               anything. */
            format_string = _("%A %d %B");

        }

        e_utf8_strftime (buffer, sizeof (buffer), format_string, &tm);

         print_text_size (context, buffer, PANGO_ALIGN_RIGHT,
                 x1, x2 - 4, y1 + 2, y1 + 2 + font_size);
    }
}

/* This adds one event to the view, adding it to the appropriate array. */
static gboolean
print_week_summary_cb (ECalComponent *comp,
               time_t     start,
               time_t     end,
               gpointer   data)

{
    EWeekViewEvent event;
    struct icaltimetype start_tt, end_tt;
    ECalModelGenerateInstancesData *mdata = (ECalModelGenerateInstancesData *) data;
    struct psinfo *psi = (struct psinfo *) mdata->cb_data;

    /* Check that the event times are valid. */

#if 0
    g_print ("View start:%li end:%li  Event start:%li end:%li\n",
         psi->day_starts[0], psi->day_starts[psi->days_shown],
         start, end);
#endif

    g_return_val_if_fail (start <= end, TRUE);
    g_return_val_if_fail (start < psi->day_starts[psi->days_shown], TRUE);
    g_return_val_if_fail (end > psi->day_starts[0], TRUE);

    start_tt = icaltime_from_timet_with_zone (start, FALSE, psi->zone);
    end_tt = icaltime_from_timet_with_zone (end, FALSE, psi->zone);

    event.comp_data = g_object_ref (mdata->comp_data);

    event.start = start;
    event.end = end;
    event.spans_index = 0;
    event.num_spans = 0;

    event.start_minute = start_tt.hour * 60 + start_tt.minute;
    event.end_minute = end_tt.hour * 60 + end_tt.minute;
    if (event.end_minute == 0 && start != end)
        event.end_minute = 24 * 60;

    g_array_append_val (psi->events, event);

    return TRUE;
}

static void
print_week_summary (GtkPrintContext *context, GnomeCalendar *gcal,
            time_t whence, gboolean multi_week_view, gint weeks_shown,
            gint month, double font_size,
            double left, double right, double top, double bottom)
{
    icaltimezone *zone;
    EWeekViewEvent *event;
    struct psinfo psi = { 0 };
    time_t day_start;
    gint rows_per_day[E_WEEK_VIEW_MAX_WEEKS * 7], day, event_num;
    GArray *spans;
    PangoFontDescription *font;
    gdouble cell_width, cell_height;
    ECalModel *model;

    model = gnome_calendar_get_model (gcal);
    zone = e_cal_model_get_timezone (model);

    psi.days_shown = weeks_shown * 7;
    psi.events = g_array_new (FALSE, FALSE, sizeof (EWeekViewEvent));
    psi.multi_week_view = multi_week_view;
    psi.weeks_shown = weeks_shown;
    psi.month = month;
    psi.zone = zone;

    /* Get a few config settings. */
    if (multi_week_view)
        psi.compress_weekend = e_cal_model_get_compress_weekend (model);
    else
        psi.compress_weekend = TRUE;
    psi.use_24_hour_format = e_cal_model_get_use_24_hour_format (model);

    /* We convert this from (0 = Sun, 6 = Sat) to (0 = Mon, 6 = Sun). */
    psi.display_start_weekday = e_cal_model_get_week_start_day (model);
    psi.display_start_weekday = (psi.display_start_weekday + 6) % 7;

    /* If weekends are compressed then we can't start on a Sunday. */
    if (psi.compress_weekend && psi.display_start_weekday == 6)
        psi.display_start_weekday = 5;

    day_start = time_day_begin_with_zone (whence, zone);
    for (day = 0; day <= psi.days_shown; day++) {
        psi.day_starts[day] = day_start;
        day_start = time_add_day_with_zone (day_start, 1, zone);
    }

    /* Get the events from the server. */
    e_cal_model_generate_instances (model,
                    psi.day_starts[0], psi.day_starts[psi.days_shown],
                    print_week_summary_cb, &psi);
    qsort (psi.events->data, psi.events->len,
           sizeof (EWeekViewEvent), e_week_view_event_sort_func);

    /* Layout the events. */
    spans = e_week_view_layout_events (psi.events, NULL,
                       psi.multi_week_view,
                       psi.weeks_shown,
                       psi.compress_weekend,
                       psi.display_start_weekday,
                       psi.day_starts, rows_per_day);

    /* Calculate the size of the cells. */
    if (multi_week_view) {
        cell_width = (right - left) / (psi.compress_weekend ? 6 : 7);
        cell_height = (bottom - top) / (weeks_shown * 2);
    } else {
        cell_width = (right - left) / 2;
        cell_height = (bottom - top) / 6;
    }

    /* Calculate the row height, using the normal font and with room for
       space or a rectangle around it. */
    psi.row_height = font_size * 1.2;
    psi.header_row_height = font_size * 1.5;

    /* Calculate how many rows we can fit into each type of cell. */
    psi.rows_per_cell = ((cell_height * 2) - psi.header_row_height)
        / (psi.row_height + 2);
    psi.rows_per_compressed_cell = (cell_height - psi.header_row_height)
        / (psi.row_height + 2);

    font = get_font_for_size (font_size, PANGO_WEIGHT_NORMAL);
    /* Draw the grid and the day names/numbers. */
    print_week_view_background (context, font, &psi, left, top,
                    cell_width, cell_height);
    /* Print the events. */
    for (event_num = 0; event_num < psi.events->len; event_num++) {
        event = &g_array_index (psi.events, EWeekViewEvent, event_num);
        print_week_event (context, font, &psi, left, top,
                  cell_width, cell_height, model, event, spans);
    }

    pango_font_description_free (font);

    /* Free everything. */
    for (event_num = 0; event_num < psi.events->len; event_num++) {
        event = &g_array_index (psi.events, EWeekViewEvent, event_num);
        g_object_unref (event->comp_data);
    }
    g_array_free (psi.events, TRUE);
    g_array_free (spans, TRUE);
}

static void
print_month_summary (GtkPrintContext *context,
                     GnomeCalendar *gcal,
                     time_t whence,
                     gdouble left,
                     gdouble right,
                     gdouble top,
                     gdouble bottom)
{
    icaltimezone *zone;
    time_t date;
    struct tm tm;
    struct icaltimetype tt;
    gchar buffer[100];
    ECalModel *model;
    PangoFontDescription *font;
    gboolean compress_weekend;
    gint columns, col, weekday, month, weeks;
    gdouble font_size, cell_width, x1, x2, y1, y2;

    model = gnome_calendar_get_model (gcal);
    zone = e_cal_model_get_timezone (model);
    weekday = e_cal_model_get_week_start_day (model);
    compress_weekend = e_cal_model_get_compress_weekend (model);

    date = 0;
    weeks = 6;
    if (gnome_calendar_get_view (gcal) == GNOME_CAL_MONTH_VIEW) {
        GnomeCalendarViewType view_type;
        ECalendarView *calendar_view;
        EWeekView *week_view;

        view_type = gnome_calendar_get_view (gcal);
        calendar_view = gnome_calendar_get_calendar_view (gcal, view_type);
        week_view = E_WEEK_VIEW (calendar_view);

        if (week_view && week_view->multi_week_view
            && !(week_view->weeks_shown >= 4 &&
            g_date_valid (&week_view->first_day_shown))) {
            weeks = week_view->weeks_shown;
            date = whence;
        }
    }

    /* Remember which month we want. */
    tt = icaltime_from_timet_with_zone (whence, FALSE, zone);
    month = tt.month - 1;

    /* Find the start of the month, and then the start of the week on
       or before that day. */
    if (!date)
        date = time_month_begin_with_zone (whence, zone);
    date = time_week_begin_with_zone (date, weekday, zone);

    /* If weekends are compressed then we can't start on a Sunday. */
    if (compress_weekend && weekday == 0)
        date = time_add_day_with_zone (date, -1, zone);

    /* do day names ... */

    /* We are only interested in outputting the weekday here, but we want
       to be able to step through the week without worrying about
       overflows making strftime choke, so we move near to the start of
       the month. */
    convert_timet_to_struct_tm (date, zone, &tm);
    tm.tm_mday = (tm.tm_mday % 7) + 7;

    font = get_font_for_size (MONTH_NORMAL_FONT_SIZE, PANGO_WEIGHT_BOLD);
    font_size = get_font_size (font);

    columns = compress_weekend ? 6 : 7;
    cell_width = (right - left) / columns;
    y1 = top;
    y2 = top + font_size * 1.5;

    for (col = 0; col < columns; col++) {
        if (tm.tm_wday == 6 && compress_weekend)
            g_snprintf (
                buffer, sizeof (buffer), "%s/%s",
                e_get_weekday_name (G_DATE_SATURDAY, TRUE),
                e_get_weekday_name (G_DATE_SUNDAY, TRUE));
        else
            g_snprintf (
                buffer, sizeof (buffer), "%s",
                e_get_weekday_name (
                tm.tm_wday ? tm.tm_wday : 7, FALSE));

        x1 = left + cell_width * col;
        x2 = x1 + cell_width;

        print_border (context, x1, x2, y1, y2, 1.0, -1.0);
        print_text_size (context, buffer, PANGO_ALIGN_CENTER, x1, x2, y1, y2);

        tm.tm_mday++;
        tm.tm_wday = (tm.tm_wday + 1) % 7;
    }
    pango_font_description_free (font);

    top = y2;
    print_week_summary (context, gcal, date, TRUE, weeks, month,
                MONTH_NORMAL_FONT_SIZE,
                left, right, top, bottom);
}

static void
print_todo_details (GtkPrintContext *context, GnomeCalendar *gcal,
            time_t start, time_t end,
            double left, double right, double top, double bottom)
{
    PangoFontDescription *font_summary;
    gdouble y, yend, x, xend;
    struct icaltimetype *tt;
    GtkWidget *task_table;
    ETable *table;
    ECalModel *model;
    gint rows, row;
    cairo_t *cr;

    /* We get the tasks directly from the TaskPad ETable. This means we
       get them filtered & sorted for free. */
    task_table = gnome_calendar_get_task_table (gcal);
    table = E_TABLE (task_table);
    g_return_if_fail (table != NULL);
    model = e_task_table_get_model (E_TASK_TABLE (task_table));

    font_summary = get_font_for_size (12, PANGO_WEIGHT_NORMAL);

    cr = gtk_print_context_get_cairo_context (context);

    cairo_set_source_rgb (cr, 0, 0, 0);
    cairo_set_line_width (cr, 0.0);
    top +=2;

    titled_box (context, _("Tasks"), font_summary, PANGO_ALIGN_CENTER,
            &left, &top, &right, &bottom, 1.0);

    y = top;
    yend = bottom - 2;

    rows = e_table_model_row_count (E_TABLE_MODEL (model));
    for (row = 0; row < rows; row++) {
        ECalModelComponent *comp_data;
        ECalComponent *comp;
        ECalComponentText summary;
        gint model_row;

        model_row = e_table_view_to_model_row (table, row);
        comp_data = e_cal_model_get_component_at (model, model_row);
        if (!comp_data)
            continue;

        comp = e_cal_component_new ();
        e_cal_component_set_icalcomponent (
            comp, icalcomponent_new_clone (comp_data->icalcomp));

        e_cal_component_get_summary (comp, &summary);
        if (!summary.value) {
            g_object_unref (comp);
            continue;
        }

        x = left;
        xend = right - 2;
        if (y > bottom) {
            g_object_unref (comp);
            break;
        }

        /* Print the box to put the tick in. */
        print_border (context, x + 2, x + 8, y + 6, y + 15, 0.1, -1.0);

        /* If the task is complete, print a tick in the box. */
        e_cal_component_get_completed (comp, &tt);
        if (tt) {
            e_cal_component_free_icaltimetype (tt);

            cr = gtk_print_context_get_cairo_context (context);
            cairo_set_source_rgb (cr, 0, 0, 0);
            cairo_move_to (cr, x + 3, y + 11);
            cairo_line_to (cr, x + 5, y + 14);
            cairo_line_to (cr, x + 7, y + 5.5);
            cairo_set_line_width (cr, 1);
            cairo_stroke (cr);
        }

        y = bound_text (context, font_summary, summary.value, -1,
                x + 14, y + 4, xend, yend, FALSE, NULL, NULL);

        y += get_font_size (font_summary)-5;
        cr = gtk_print_context_get_cairo_context (context);
        cairo_move_to (cr, x, y);
        cairo_line_to (cr, xend, y);
        cairo_set_line_width (cr, 1);
        cairo_stroke (cr);

        g_object_unref (comp);
    }

    pango_font_description_free (font_summary);
}

static void
print_day_view (GtkPrintContext *context, GnomeCalendar *gcal, time_t date)
{
    ECalModel *model;
    GtkPageSetup *setup;
    icaltimezone *zone;
    gint i, days = 1;
    gdouble todo, l, week_numbers_inc, small_month_width;
    gchar buf[100];
    gdouble width, height;
    struct tm tm;

    model = gnome_calendar_get_model (gcal);
    zone = e_cal_model_get_timezone (model);

    setup = gtk_print_context_get_page_setup (context);

    width = gtk_page_setup_get_page_width (setup, GTK_UNIT_POINTS);
    height = gtk_page_setup_get_page_height (setup, GTK_UNIT_POINTS);
    small_month_width = calc_small_month_width (context, HEADER_HEIGHT);
    week_numbers_inc = get_show_week_numbers () ? small_month_width / 7.0 : 0;

    for (i = 0; i < days; i++) {
        todo = width * 0.75;

        /* Print the main view with all the events in. */
        print_day_details (context, gcal, date,
                   0.0, todo - 2.0, HEADER_HEIGHT + 4,
                   height);

         /* Print the TaskPad down the right. */
        print_todo_details (context, gcal, 0, INT_MAX,
                    todo, width, HEADER_HEIGHT + 4,
                    height);

        /* Print the filled border around the header. */
        print_border (context, 0.0, width,
                  0.0, HEADER_HEIGHT + 4, 1.0, 0.9);

        /* Print the 2 mini calendar-months. */
        l = width - SMALL_MONTH_PAD - (small_month_width + week_numbers_inc) * 2  - SMALL_MONTH_SPACING;

        print_month_small (context, gcal, date,
                   l, 2, l + small_month_width + week_numbers_inc, HEADER_HEIGHT + 2,
                   DATE_MONTH | DATE_YEAR, date, date, FALSE);

        l += SMALL_MONTH_SPACING + small_month_width + week_numbers_inc;
        print_month_small (context, gcal,
                   time_add_month_with_zone (date, 1, zone),
                   l, 2, l + small_month_width + week_numbers_inc, HEADER_HEIGHT + 2,
                   DATE_MONTH | DATE_YEAR, 0, 0, FALSE);

        /* Print the date, e.g. '8th May, 2001'. */
        convert_timet_to_struct_tm (date, zone, &tm);
        format_date (&tm, DATE_DAY | DATE_MONTH | DATE_YEAR,
                 buf, 100);

        print_text_size_bold (context, buf, PANGO_ALIGN_LEFT,
                      4, todo, 4,
                                      4 + 24);

        /* Print the day, e.g. 'Tuesday'. */
        format_date (&tm, DATE_DAYNAME, buf, 100);

        print_text_size_bold (context, buf, PANGO_ALIGN_LEFT,
                      4, todo,
                      HEADER_HEIGHT + 9,
                      HEADER_HEIGHT + 9 + 18);

        date = time_add_day_with_zone (date, 1, zone);
     }
}

static void
print_work_week_background (GtkPrintContext *context, GnomeCalendar *gcal,
                time_t whence, struct pdinfo *pdi, double left,
                double right, double top, double bottom)
{
    ECalModel *model;
    PangoFontDescription *font_hour, *font_minute;
    gdouble yinc, y;
    gdouble width = DAY_VIEW_TIME_COLUMN_WIDTH;
    gdouble day_width;
    gdouble font_size, max_font_size, hour_font_size, minute_font_size;
    gchar buf[20];
    const gchar *minute;
    const gint LONG_EVENT_OFFSET = 6;
    gboolean use_24_hour;
    gint i, hour, row;
    gdouble hour_minute_xl, hour_minute_xr;
    cairo_t *cr;

    model = gnome_calendar_get_model (gcal);
    use_24_hour = e_cal_model_get_use_24_hour_format (model);

    /* Fill the left time column in light-gray. */
    print_border (context, left, left + width, top, bottom, -1.0, 0.9);
    /* Fill the right time column in light-gray */
    print_border (context, right - width, right, top, bottom, -1.0, 0.9);

    /* Draw the border around the entire view. */
    cr = gtk_print_context_get_cairo_context (context);

    cairo_set_source_rgb (cr, 0, 0, 0);
    print_border (context, left, right, top, bottom, 1.0, -1.0);

    /* Draw the vertical line on the right of the time column. */
    cr = gtk_print_context_get_cairo_context (context);
    cairo_set_line_width (cr, 0.0);
    cairo_move_to (cr, left + width, bottom);
    cairo_line_to (cr, left + width, top);
    cairo_stroke (cr);

    cairo_move_to (cr, right - width, bottom);
    cairo_line_to (cr, right - width, top);
    cairo_stroke (cr);

    /* Calculate the row height. */
    if (top > bottom)
        yinc = (top - bottom) / (pdi->end_hour - pdi->start_hour);
    else
        yinc = (bottom - top) / (pdi->end_hour - pdi->start_hour);

        /* Get the 2 fonts we need. */
    font_size = yinc * 0.6;
    max_font_size = width * 0.45;
    hour_font_size = MIN (font_size, max_font_size);
    font_hour = get_font_for_size (hour_font_size, PANGO_WEIGHT_BOLD);

    font_size = yinc * 0.33;
    max_font_size = width * 0.2;
    minute_font_size = MIN (font_size, max_font_size);
    font_minute = get_font_for_size (minute_font_size, PANGO_WEIGHT_BOLD);
    hour_minute_xr = evo_calendar_print_renderer_get_width (context, font_minute, use_24_hour ? "00" : _("am"));
    if (!use_24_hour)
        hour_minute_xr = MAX (hour_minute_xr, evo_calendar_print_renderer_get_width (context, font_minute, _("pm")));

    row = 0;
    hour_minute_xl = left + width - hour_minute_xr - 3;
    hour_minute_xr = right - hour_minute_xr - 3;
    for (i = pdi->start_hour; i < pdi->end_hour; i++) {
        y = top + yinc * (row + 1);
        cr = gtk_print_context_get_cairo_context (context);
        cairo_set_source_rgb (cr, 0, 0, 0);

        if (use_24_hour) {
            hour = i;
            minute = "00";
        } else {
            if (i < 12)
                minute = _("am");
            else
                minute = _("pm");

            hour = i % 12;
            if (hour == 0)
                hour = 12;
        }

        /* the hour label/minute */
        sprintf (buf, "%d", hour);
        print_text (context, font_hour, buf, PANGO_ALIGN_RIGHT,
                left, hour_minute_xl,
                y - yinc, y - yinc + hour_font_size);
        print_text (context, font_minute, minute, PANGO_ALIGN_LEFT,
                hour_minute_xl, left + width - 3,
                y - yinc, y - yinc + minute_font_size);

        /* To the right */
        print_text (context, font_hour, buf, PANGO_ALIGN_RIGHT,
                right - width, hour_minute_xr,
                y - yinc, y - yinc + hour_font_size);
        print_text (context, font_minute, minute, PANGO_ALIGN_LEFT,
                hour_minute_xr, right - 3,
                y - yinc, y - yinc + minute_font_size);

                /* Draw the horizontal line between hours, across the entire
           width of the day view. */
        cr = gtk_print_context_get_cairo_context (context);
        cairo_move_to (cr, left, y);
        cairo_line_to (cr, right, y);
        cairo_set_line_width (cr, 1);
        cairo_stroke (cr);

        /* Draw the horizontal line for the 1/2-hours, across the
           entire width except for part of the time column. */
        cairo_move_to (cr, left + width * 0.6, y - yinc / 2);
        cairo_line_to (cr, right, y - yinc / 2);
        cairo_set_line_width (cr, 1);
        cairo_stroke (cr);
        row++;
    }

    /* Draw the vertical lines for the days */
    day_width = (right - left - 2*width) / pdi->days_shown;
    for (i = 0; i < pdi->days_shown - 1; ++i) {
      cr = gtk_print_context_get_cairo_context (context);
      cairo_move_to (cr, left + width + day_width * (i + 1), top);
      cairo_line_to (cr, left + width + day_width * (i + 1), bottom);
      cairo_set_line_width (cr, 1);
      cairo_stroke (cr);
    }

    /* And now the ones from the border to the hours, looks weird otherwise */
    cr = gtk_print_context_get_cairo_context (context);
    cairo_move_to (cr, left, HEADER_HEIGHT);
    cairo_line_to (cr, left, HEADER_HEIGHT + DAY_VIEW_ROW_HEIGHT + LONG_EVENT_OFFSET);

    cairo_move_to (cr, right, HEADER_HEIGHT);
    cairo_line_to (cr, right, HEADER_HEIGHT + DAY_VIEW_ROW_HEIGHT + LONG_EVENT_OFFSET);
    cairo_stroke (cr);

    pango_font_description_free (font_hour);
    pango_font_description_free (font_minute);
}

static void
print_work_week_day_details (GtkPrintContext *context, GnomeCalendar *gcal,
                 time_t whence, double left, double right,
                 double top, double bottom, struct pdinfo *_pdi)
{
    ECalModel *model;
    icaltimezone *zone;
    EDayViewEvent *event;
    PangoFontDescription *font;
    time_t start, end;
    struct pdinfo pdi = { 0 };
    gint rows_in_top_display, i;
    gdouble font_size, max_font_size;
    cairo_t *cr;
    GdkPixbuf *pixbuf = NULL;
#define LONG_DAY_EVENTS_TOP_SPACING 4
#define LONG_DAY_EVENTS_BOTTOM_SPACING 2

    model = gnome_calendar_get_model (gcal);
    zone = e_cal_model_get_timezone (model);

    start = time_day_begin_with_zone (whence, zone);
    end = time_day_end_with_zone (start, zone);

    pdi.days_shown = 1;
    pdi.day_starts[0] = start;
    pdi.day_starts[1] = end;
    pdi.long_events = g_array_new (FALSE, FALSE, sizeof (EDayViewEvent));
    pdi.events[0] = g_array_new (FALSE, FALSE, sizeof (EDayViewEvent));
    pdi.start_hour = e_cal_model_get_work_day_start_hour (model);
    pdi.end_hour = e_cal_model_get_work_day_end_hour (model);
    if (e_cal_model_get_work_day_end_minute (model) != 0)
        pdi.end_hour++;
    pdi.rows = (pdi.end_hour - pdi.start_hour) * 2;
    pdi.mins_per_row = 30;
    pdi.start_minute_offset = pdi.start_hour * 60;
    pdi.end_minute_offset = pdi.end_hour * 60;
    pdi.use_24_hour_format = e_cal_model_get_use_24_hour_format (model);
    pdi.zone = e_cal_model_get_timezone (model);

    /* Get the events from the server. */
    e_cal_model_generate_instances (model, start, end, print_day_details_cb, &pdi);
    qsort (pdi.long_events->data, pdi.long_events->len,
           sizeof (EDayViewEvent), e_day_view_event_sort_func);
    qsort (pdi.events[0]->data, pdi.events[0]->len,
           sizeof (EDayViewEvent), e_day_view_event_sort_func);

    pdi.start_hour = MIN (pdi.start_hour, _pdi->start_hour);
    pdi.end_hour = MAX (pdi.end_hour, _pdi->end_hour);

    /* TODO: This should be redundant */
    /* Also print events outside of work hours */
    if (pdi.events[0]->len > 0) {
        struct icaltimetype tt;

        event = &g_array_index (pdi.events[0], EDayViewEvent, 0);
        tt = icaltime_from_timet_with_zone (event->start, FALSE, zone);
        if (tt.hour < pdi.start_hour)
            pdi.start_hour = tt.hour;
        pdi.start_minute_offset = pdi.start_hour * 60;

        event = &g_array_index (pdi.events[0], EDayViewEvent, pdi.events[0]->len - 1);
        tt = icaltime_from_timet_with_zone (event->end, FALSE, zone);
        if (tt.hour > pdi.end_hour || tt.hour == 0) {
            pdi.end_hour = tt.hour ? tt.hour : 24;
            if (tt.minute > 0)
                pdi.end_hour++;
        }
        pdi.end_minute_offset = pdi.end_hour * 60;

        pdi.rows = (pdi.end_hour - pdi.start_hour) * 2;
    }

    /* Lay them out the long events, across the top of the page. */
    e_day_view_layout_long_events (pdi.long_events, pdi.days_shown,
                       pdi.day_starts, &rows_in_top_display);

     /*Print the long events. */
    font = get_font_for_size (12, PANGO_WEIGHT_NORMAL);

    /* We always leave space for DAY_VIEW_MIN_ROWS_IN_TOP_DISPLAY in the
       top display, but we may have more rows than that, in which case
       the main display area will be compressed. */
    /* Limit long day event to half the height of the panel */
    rows_in_top_display = MIN (MAX (rows_in_top_display,
                   DAY_VIEW_MIN_ROWS_IN_TOP_DISPLAY),
                   (bottom-top)*0.5/DAY_VIEW_ROW_HEIGHT);

    if (rows_in_top_display > pdi.long_events->len)
        rows_in_top_display = pdi.long_events->len;

    for (i = 0; i < rows_in_top_display && i < pdi.long_events->len; i++) {
        event = &g_array_index (pdi.long_events, EDayViewEvent, i);
        print_day_long_event (
            context, font, left, right,
            top + LONG_DAY_EVENTS_TOP_SPACING, bottom,
            DAY_VIEW_ROW_HEIGHT, event, &pdi, model);
    }

    if (rows_in_top_display < pdi.long_events->len) {
        /* too many events */
        cairo_t *cr = gtk_print_context_get_cairo_context (context);
        gint x, y;

        if (!pixbuf) {
            const gchar **xpm = (const gchar **)jump_xpm;

            /* this ugly thing is here only to get rid of compiler warning
               about unused 'jump_xpm_focused' */
            if (pixbuf)
                xpm = (const gchar **)jump_xpm_focused;

            pixbuf = gdk_pixbuf_new_from_xpm_data (xpm);
        }

        /* Right align - 10 comes from print_day_long_event  too */
        x = right - gdk_pixbuf_get_width (pixbuf) * 0.5 - 10;
        /* Placing '...' over the last all day event entry printed. '-1 -1' comes
            from print_long_day_event (top/bottom spacing in each cell) */
        y = top + LONG_DAY_EVENTS_TOP_SPACING
            + DAY_VIEW_ROW_HEIGHT * (i - 1)
            + (DAY_VIEW_ROW_HEIGHT - 1 - 1) * 0.5;

        cairo_save (cr);
        cairo_scale (cr, 0.5, 0.5);
        gdk_cairo_set_source_pixbuf (cr, pixbuf, x * 2.0, y * 2.0);
        cairo_paint (cr);
        cairo_restore (cr);
    }

    if (!rows_in_top_display)
        rows_in_top_display++;

    /* Draw the border around the long events. */
    cr = gtk_print_context_get_cairo_context (context);

    cairo_set_source_rgb (cr, 0, 0, 0);
    print_border (
        context, left, right,
        top, top + rows_in_top_display * DAY_VIEW_ROW_HEIGHT +
        LONG_DAY_EVENTS_TOP_SPACING + LONG_DAY_EVENTS_BOTTOM_SPACING,
        1.0, -1.0);

    /* Adjust the area containing the main display. */
    top += rows_in_top_display * DAY_VIEW_ROW_HEIGHT
        + LONG_DAY_EVENTS_TOP_SPACING
        + LONG_DAY_EVENTS_BOTTOM_SPACING;

    /* lay out the short events, within the day. */
    e_day_view_layout_day_events (pdi.events[0], DAY_VIEW_ROWS,
                      DAY_VIEW_MINS_PER_ROW, pdi.cols_per_row, -1);

    /* print the short events. */
    if (top > bottom )
        max_font_size = ((top - bottom) / pdi.rows) - 4;
    else
        max_font_size = ((bottom - top ) / pdi.rows) - 4;
    font_size = MIN (DAY_NORMAL_FONT_SIZE, max_font_size);
    font = get_font_for_size (font_size, PANGO_WEIGHT_NORMAL);

    for (i = 0; i < pdi.events[0]->len; i++) {
        event = &g_array_index (pdi.events[0], EDayViewEvent, i);
        print_day_event (context, font, left,
                 right, top, bottom, event, &pdi, model);
    }

    /* Free everything. */
    if (pixbuf)
        g_object_unref (pixbuf);
    free_event_array (pdi.long_events);
    pango_font_description_free (font);
    g_array_free (pdi.long_events, TRUE);
    free_event_array (pdi.events[0]);
    g_array_free (pdi.events[0], TRUE);
}

/* Figure out what the overal hour limits are */
static gboolean
print_work_week_view_cb (ECalComponent *comp,
                         time_t istart,
                         time_t iend,
                         gpointer data)
{
    ECalModelGenerateInstancesData *mdata = (ECalModelGenerateInstancesData *) data;
    struct pdinfo *pdi = (struct pdinfo *) mdata->cb_data;
    struct icaltimetype tt;

    tt = icaltime_from_timet_with_zone (istart, FALSE, pdi->zone);
    pdi->start_hour = MIN (pdi->start_hour, tt.hour);

    tt = icaltime_from_timet_with_zone (iend, FALSE, pdi->zone);
    /* If we're past the hour, use the next one */
    pdi->end_hour = MAX (pdi->end_hour, tt.minute ? tt.hour + 1 : tt.hour);

    return TRUE;
}

static void
print_work_week_view (GtkPrintContext *context, GnomeCalendar *gcal, time_t date)
{
    GtkPageSetup *setup;
    icaltimezone *zone;
    time_t when, start, end;
    gdouble width, height, l, small_month_width = calc_small_month_width (context, HEADER_HEIGHT);
    gint i, days = 5;
    gchar buf[100];
    const gint LONG_EVENT_OFFSET = 6;
    struct pdinfo pdi = { 0 };
    struct tm tm;
    gdouble day_width, day_x;
    ECalModel *model;
    gdouble weeknum_inc = get_show_week_numbers () ? small_month_width / 7.0 : 0;

    model = gnome_calendar_get_model (gcal);
    zone = e_cal_model_get_timezone (model);

    setup = gtk_print_context_get_page_setup (context);

    width = gtk_page_setup_get_page_width (setup, GTK_UNIT_POINTS);
    height = gtk_page_setup_get_page_height (setup, GTK_UNIT_POINTS);

    /* We always start on a Monday */
    start = time_week_begin_with_zone (date, 1, zone);
    end = time_add_day_with_zone (start, days, zone);

    pdi.days_shown = days;
    pdi.start_hour = e_cal_model_get_work_day_start_hour (model);
    pdi.end_hour = e_cal_model_get_work_day_end_hour (model);
    pdi.zone = zone;

    e_cal_model_generate_instances (model, start, end,
                    print_work_week_view_cb, &pdi);

    print_work_week_background (context, gcal, date, &pdi, 0.0, width,
                    HEADER_HEIGHT + DAY_VIEW_ROW_HEIGHT + LONG_EVENT_OFFSET,
                    height);

    print_border (context, 0.0, width, 0.0, HEADER_HEIGHT, 1.0, 0.9);

    /* Print the 2 mini calendar-months. */
    l = width - SMALL_MONTH_PAD - (small_month_width + weeknum_inc) * 2  - SMALL_MONTH_SPACING;

    print_month_small (context, gcal, start,
               l, 4, l + small_month_width + weeknum_inc, HEADER_HEIGHT + 4,
               DATE_MONTH | DATE_YEAR, start, end, FALSE);

    l += SMALL_MONTH_SPACING + small_month_width + weeknum_inc;
    print_month_small (context, gcal,
               time_add_month_with_zone (start, 1, zone),
               l, 4, l + small_month_width + weeknum_inc, HEADER_HEIGHT + 4,
               DATE_MONTH | DATE_YEAR, 0, 0, FALSE);

    /* Print the start day of the week, e.g. '7th May 2001'. */
    convert_timet_to_struct_tm (start, zone, &tm);
    format_date (&tm, DATE_DAY | DATE_MONTH | DATE_YEAR, buf, 100);
    print_text_size_bold (context, buf, PANGO_ALIGN_LEFT,
                  3, width,
                  4, 4 + 24);

    /* Print the end day of the week, e.g. '13th May 2001'. */
    /* We need to substract one or the wrong day will be printed */
    convert_timet_to_struct_tm (
        time_add_day_with_zone (end, -1, zone), zone, &tm);
    format_date (&tm, DATE_DAY | DATE_MONTH | DATE_YEAR, buf, 100);
    print_text_size_bold (context, buf, PANGO_ALIGN_LEFT,
                  3, width,
                  24 + 3, 24 + 3 + 24);

    /* Now print each days' events */
    day_width = (width - 2*DAY_VIEW_TIME_COLUMN_WIDTH) / days;
    when = start;
    for (i = 0; i < days; ++i) {
        day_x = DAY_VIEW_TIME_COLUMN_WIDTH + day_width * i;

        /* Print the day, e.g. 'Tuesday'. */
        convert_timet_to_struct_tm (when, zone, &tm);
        format_date (&tm, DATE_DAYNAME, buf, 100);

        print_text_size_bold (context, buf, PANGO_ALIGN_LEFT,
                      day_x + 4, day_x + day_width,
                      HEADER_HEIGHT + 4, HEADER_HEIGHT + 4 + 18);

        print_work_week_day_details (context, gcal, when,
                         day_x, day_x + day_width,
                         HEADER_HEIGHT, height, &pdi);
        when = time_add_day_with_zone (when, 1, zone);
    }
}

static void
print_week_view (GtkPrintContext *context, GnomeCalendar *gcal, time_t date)
{
    GtkPageSetup *setup;
    ECalModel *model;
    icaltimezone *zone;
    gdouble l, week_numbers_inc, small_month_width;
    gchar buf[100];
    time_t when;
    gint week_start_day;
    struct tm tm;
    gdouble width, height;

    setup = gtk_print_context_get_page_setup (context);

    width = gtk_page_setup_get_page_width (setup, GTK_UNIT_POINTS);
    height = gtk_page_setup_get_page_height (setup, GTK_UNIT_POINTS);
    small_month_width = calc_small_month_width (context, HEADER_HEIGHT);
    week_numbers_inc = get_show_week_numbers () ? small_month_width / 7.0 : 0;

    model = gnome_calendar_get_model (gcal);
    zone = e_cal_model_get_timezone (model);

    convert_timet_to_struct_tm (date, zone, &tm);
    week_start_day = e_cal_model_get_week_start_day (model);
    when = time_week_begin_with_zone (date, week_start_day, zone);

    /* If the week starts on a Sunday, we have to show the Saturday first,
       since the weekend is compressed. */
    if (week_start_day == 0) {
        if (tm.tm_wday == 6)
            when = time_add_day_with_zone (when, 6, zone);
        else
            when = time_add_day_with_zone (when, -1, zone);
    }

    /* Print the main week view. */
    print_week_summary (context, gcal, when, FALSE, 1, 0,
                WEEK_NORMAL_FONT_SIZE,
                0.0, width,
                HEADER_HEIGHT + 20, height);

    /* Print the border around the main view. */
    print_border (context, 0.0, width, HEADER_HEIGHT ,
              height, 1.0, -1.0);

    /* Print the border around the header area. */
    print_border (context, 0.0, width,
                      0.0, HEADER_HEIGHT + 2.0 + 20, 1.0, 0.9);

    /* Print the 2 mini calendar-months. */
    l = width - SMALL_MONTH_PAD - (small_month_width + week_numbers_inc) * 2
        - SMALL_MONTH_SPACING;
    print_month_small (context, gcal, when,
               l, 4, l + small_month_width + week_numbers_inc, HEADER_HEIGHT + 10,
               DATE_MONTH | DATE_YEAR, when,
               time_add_week_with_zone (when, 1, zone), FALSE);

    l += SMALL_MONTH_SPACING + small_month_width + week_numbers_inc;
    print_month_small (context, gcal,
               time_add_month_with_zone (when, 1, zone),
               l, 4, l + small_month_width + week_numbers_inc, HEADER_HEIGHT + 10,
               DATE_MONTH | DATE_YEAR, when,
               time_add_week_with_zone (when, 1, zone), FALSE);

    /* Print the start day of the week, e.g. '7th May 2001'. */
    convert_timet_to_struct_tm (when, zone, &tm);
    format_date (&tm, DATE_DAY | DATE_MONTH | DATE_YEAR, buf, 100);
    print_text_size_bold (context, buf, PANGO_ALIGN_LEFT,
                  3, width,
                  4, 4 + 24);

    /* Print the end day of the week, e.g. '13th May 2001'. */
    when = time_add_day_with_zone (when, 6, zone);
    convert_timet_to_struct_tm (when, zone, &tm);
    format_date (&tm, DATE_DAY | DATE_MONTH | DATE_YEAR, buf, 100);
    print_text_size_bold (context, buf, PANGO_ALIGN_LEFT,
                  3, width,
                  24 + 3, 24 + 3 + 24);
}

static void
print_month_view (GtkPrintContext *context, GnomeCalendar *gcal, time_t date)
{
    ECalModel *model;
    GtkPageSetup *setup;
    icaltimezone *zone;
    gchar buf[100];
    gdouble width, height;
    gdouble l, week_numbers_inc, small_month_width;
    struct tm tm;

    model = gnome_calendar_get_model (gcal);
    zone = e_cal_model_get_timezone (model);

    setup = gtk_print_context_get_page_setup (context);

    width = gtk_page_setup_get_page_width (setup, GTK_UNIT_POINTS);
    height = gtk_page_setup_get_page_height (setup, GTK_UNIT_POINTS);
    small_month_width = calc_small_month_width (context, HEADER_HEIGHT);
    week_numbers_inc = get_show_week_numbers () ? small_month_width / 7.0 : 0;

    /* Print the main month view. */
    print_month_summary (context, gcal, date, 0.0, width, HEADER_HEIGHT, height);

    /* Print the border around the header. */
    print_border (context, 0.0, width, 0.0, HEADER_HEIGHT + 10, 1.0, 0.9);

    l = width - SMALL_MONTH_PAD - small_month_width - week_numbers_inc;

    /* Print the 2 mini calendar-months. */
    print_month_small (context, gcal,
               time_add_month_with_zone (date, 1, zone),
               l, 4, l + small_month_width + week_numbers_inc, HEADER_HEIGHT + 4,
               DATE_MONTH | DATE_YEAR, 0, 0, FALSE);

    print_month_small (context, gcal,
               time_add_month_with_zone (date, -1, zone),
               8, 4, 8 + small_month_width + week_numbers_inc, HEADER_HEIGHT + 4,
               DATE_MONTH | DATE_YEAR, 0, 0, FALSE);

    /* Print the month, e.g. 'May 2001'. */
    convert_timet_to_struct_tm (date, zone, &tm);
    format_date (&tm, DATE_MONTH | DATE_YEAR, buf, 100);
    print_text_size_bold (context, buf, PANGO_ALIGN_CENTER,
                  3, width - 3,
                              3, 3 + 24);

}

static gboolean
same_date (struct tm tm1, time_t t2, icaltimezone *zone)
{
    struct tm tm2;

    convert_timet_to_struct_tm (t2, zone, &tm2);

    return
        tm1.tm_mday == tm2.tm_mday &&
        tm1.tm_mon == tm2.tm_mon &&
        tm1.tm_year == tm2.tm_year;
}

static void
write_label_piece (time_t t,
                   time_t *start_cmp,
                   icaltimezone *zone,
                   gboolean use_24_hour_format,
                   gchar *buffer,
                   gint size,
                   gchar *stext,
                   const gchar *etext)
{
    struct tm tmp_tm;
    gint len;

    convert_timet_to_struct_tm (t, zone, &tmp_tm);

    if (stext != NULL)
        strcat (buffer, stext);

    len = strlen (buffer);
    if (start_cmp && same_date (tmp_tm, *start_cmp, zone))
        e_time_format_time (
            &tmp_tm, use_24_hour_format,
            FALSE, &buffer[len], size - len);
    else
        e_time_format_date_and_time (
            &tmp_tm, use_24_hour_format, FALSE,
            FALSE, &buffer[len], size - len);
    if (etext != NULL)
        strcat (buffer, etext);
}

static icaltimezone*
get_zone_from_tzid (ECal *client, const gchar *tzid)
{
    icaltimezone *zone;

    /* Note that the timezones may not be on the server, so we try to get
       the builtin timezone with the TZID first. */
    zone = icaltimezone_get_builtin_timezone_from_tzid (tzid);
    if (!zone) {
        if (!e_cal_get_timezone (client, tzid, &zone, NULL))
            /* FIXME: Handle error better. */
            g_warning ("Couldn't get timezone from server: %s",
                   tzid ? tzid : "");
    }

    return zone;
}

static void
print_date_label (GtkPrintContext *context,
                  ECalComponent *comp,
                  ECal *client,
                  icaltimezone *zone,
                  gboolean use_24_hour_format,
                  gdouble left,
                  gdouble right,
                  gdouble top,
                  gdouble bottom)
{
    icaltimezone *start_zone, *end_zone, *due_zone, *completed_zone;
    ECalComponentDateTime datetime;
    time_t start = 0, end = 0, complete = 0, due = 0;
    static gchar buffer[1024];

    e_cal_component_get_dtstart (comp, &datetime);
    if (datetime.value) {
        start_zone = get_zone_from_tzid (client, datetime.tzid);
        if (!start_zone || datetime.value->is_date)
            start_zone = zone;
        start = icaltime_as_timet_with_zone (*datetime.value,
                             start_zone);
    }
    e_cal_component_free_datetime (&datetime);

    e_cal_component_get_dtend (comp, &datetime);
    if (datetime.value) {
        end_zone = get_zone_from_tzid (client, datetime.tzid);
        if (!end_zone || datetime.value->is_date)
            end_zone = zone;
        end = icaltime_as_timet_with_zone (*datetime.value,
                           end_zone);
    }
    e_cal_component_free_datetime (&datetime);

    e_cal_component_get_due (comp, &datetime);
    if (datetime.value) {
        due_zone = get_zone_from_tzid (client, datetime.tzid);
        if (!due_zone || datetime.value->is_date)
            due_zone = zone;
        due = icaltime_as_timet_with_zone (*datetime.value,
                           due_zone);
    }
    e_cal_component_free_datetime (&datetime);

    e_cal_component_get_completed (comp, &datetime.value);
    if (datetime.value) {
        completed_zone = icaltimezone_get_utc_timezone ();
        complete = icaltime_as_timet_with_zone (*datetime.value,
                            completed_zone);
        e_cal_component_free_icaltimetype (datetime.value);
    }

    buffer[0] = '\0';

    if (start > 0)
        write_label_piece (
            start, NULL, zone, use_24_hour_format,
            buffer, 1024, NULL, NULL);

    if (end > 0 && start > 0) {
        /* Translators: This is part of "START to END" text,
         * where START and END are date/times. */
        write_label_piece (
            end, &start, zone, use_24_hour_format,
            buffer, 1024, _(" to "), NULL);
    }

    if (complete > 0) {
        if (start > 0) {
            /* Translators: This is part of "START to END
             * (Completed COMPLETED)", where COMPLETED is a
             * completed date/time. */
            write_label_piece (
                complete, NULL, zone, use_24_hour_format,
                buffer, 1024, _(" (Completed "), ")");
        } else {
            /* Translators: This is part of "Completed COMPLETED",
             * where COMPLETED is a completed date/time. */
            write_label_piece (
                complete, &start, zone, use_24_hour_format,
                buffer, 1024, _("Completed "), NULL);
        }
    }

    if (due > 0 && complete == 0) {
        if (start > 0) {
            /* Translators: This is part of "START (Due DUE)",
             * where START and DUE are dates/times. */
            write_label_piece (
                due, NULL, zone, use_24_hour_format,
                buffer, 1024, _(" (Due "), ")");
        } else {
            /* Translators: This is part of "Due DUE",
             * where DUE is a date/time due the event
             * should be finished. */
            write_label_piece (
                due, &start, zone, use_24_hour_format,
                buffer, 1024, _("Due "), NULL);
        }
    }

    print_text_size_bold (context, buffer, PANGO_ALIGN_LEFT,
                  left, right, top, top + 24);
}

static void
print_calendar_draw_page (GtkPrintOperation *operation,
                          GtkPrintContext *context,
                          gint page_nr,
                          PrintCalItem *pcali)
{
    switch (gnome_calendar_get_view (pcali->gcal)) {
        case GNOME_CAL_DAY_VIEW:
            print_day_view (context, pcali->gcal, pcali->start);
            break;
        case GNOME_CAL_WORK_WEEK_VIEW:
            print_work_week_view (context, pcali->gcal, pcali->start);
            break;
        case GNOME_CAL_WEEK_VIEW:
            print_week_view (context, pcali->gcal, pcali->start);
            break;
        case GNOME_CAL_MONTH_VIEW:
            print_month_view (context, pcali->gcal, pcali->start);
            break;
        default:
            g_return_if_reached ();
    }
}

void
print_calendar (GnomeCalendar *gcal,
                GtkPrintOperationAction action,
                time_t start)
{
    GtkPrintOperation *operation;
    PrintCalItem pcali;

    g_return_if_fail (gcal != NULL);
    g_return_if_fail (GNOME_IS_CALENDAR (gcal));

    if (gnome_calendar_get_view (gcal) == GNOME_CAL_MONTH_VIEW) {
        GnomeCalendarViewType view_type;
        ECalendarView *calendar_view;
        EWeekView *week_view;

        view_type = gnome_calendar_get_view (gcal);
        calendar_view = gnome_calendar_get_calendar_view (gcal, view_type);
        week_view = E_WEEK_VIEW (calendar_view);

        if (week_view && week_view->multi_week_view &&
            week_view->weeks_shown >= 4 &&
            g_date_valid (&week_view->first_day_shown)) {

            GDate date = week_view->first_day_shown;
            struct icaltimetype start_tt;

            g_date_add_days (&date, 7);

            start_tt = icaltime_null_time ();
            start_tt.is_date = TRUE;
            start_tt.year = g_date_get_year (&date);
            start_tt.month = g_date_get_month (&date);
            start_tt.day = g_date_get_day (&date);

            start = icaltime_as_timet (start_tt);
        } else if (week_view && week_view->multi_week_view) {
            start = week_view->day_starts[0];
        }
    }

    pcali.gcal = (GnomeCalendar *)gcal;
    pcali.start = start;

    operation = e_print_operation_new ();
    gtk_print_operation_set_n_pages (operation, 1);

        g_signal_connect (
        operation, "draw_page",
        G_CALLBACK (print_calendar_draw_page), &pcali);

    gtk_print_operation_run (operation, action, NULL, NULL);

    g_object_unref (operation);
}

/* returns number of required pages, when page_nr is -1 */
static gint
print_comp_draw_real (GtkPrintOperation *operation,
                      GtkPrintContext *context,
                      gint page_nr,
                      PrintCompItem *pci)
{
    GtkPageSetup *setup;
    PangoFontDescription *font;
    ECal *client;
    ECalComponent *comp;
    ECalComponentVType vtype;
    ECalComponentText text;
    GSList *desc, *l;
    GSList *contact_list, *elem;

    const gchar *title, *categories, *location;
    gchar *categories_string, *location_string, *summary_string;
    gdouble header_size;
    cairo_t *cr;
    gdouble width, height, page_start;
    gdouble top;
    gint pages = 1;

    setup = gtk_print_context_get_page_setup (context);

    width = gtk_page_setup_get_page_width (setup, GTK_UNIT_POINTS);
    height = gtk_page_setup_get_page_height (setup, GTK_UNIT_POINTS);

    top = 0.0;

    /* Either draw only the right page or do not draw
     * anything when calculating number of pages. */
    if (page_nr != -1)
        top = top - ((page_nr) * height);
    else
        top = height;

    page_start = top;

        /* PrintCompItem structure contains elements to be used
         * with the Print Context , obtained in comp_draw_page
         */
    client = pci->client;
    comp = pci->comp;

    vtype = e_cal_component_get_vtype (comp);

    /* We should only be asked to print VEVENTs, VTODOs, or VJOURNALs. */
    if (vtype == E_CAL_COMPONENT_EVENT)
        title = _("Appointment");
    else if (vtype == E_CAL_COMPONENT_TODO)
        title = _("Task");
    else if (vtype == E_CAL_COMPONENT_JOURNAL)
        title = _("Memo");
    else
        return pages;

    cr = gtk_print_context_get_cairo_context (context);

    /* Print the title in a box at the top of the page. */
    font = get_font_for_size (18, PANGO_WEIGHT_BOLD);
    header_size = 40;

    if (page_nr == 0) {
        print_border (context, 0.0, width, 0.0, header_size,
            1.0, 0.9);
        print_text (context, font, title, PANGO_ALIGN_CENTER, 0.0, width,
            0.1, header_size - 0.1);
        pango_font_description_free (font);
    }

    top += header_size + 30;

    /* Summary */
    font = get_font_for_size (18, PANGO_WEIGHT_BOLD);
    e_cal_component_get_summary (comp, &text);
    summary_string = g_strdup_printf (_("Summary: %s"), text.value);
    top = bound_text (context, font, summary_string, -1, 0.0, top, width,
              height, FALSE, &page_start, &pages);

    g_free (summary_string);

    /* Location */
    e_cal_component_get_location (comp, &location);
    if (location && location[0]) {
        location_string = g_strdup_printf (_("Location: %s"),
                           location);
        top = bound_text (context, font, location_string, -1, 0.0,
                  top + 3, width, height, FALSE, &page_start, &pages);
        g_free (location_string);
    }

    /* Date information */
    if (page_nr == 0)
        print_date_label (
            context, comp, client,
            pci->zone, pci->use_24_hour_format,
            0.0, width, top + 3, top + 15);
    top += 20;

    /* Attendees */
    if ((page_nr == 0) && e_cal_component_has_attendees (comp)) {
        top = bound_text (
            context, font, _("Attendees: "), -1, 0.0,
            top, width, height, FALSE, &page_start, &pages);
        pango_font_description_free (font);
        font = get_font_for_size (12, PANGO_WEIGHT_NORMAL);
        top = print_attendees (
            context, font, cr, 0.0, width,
            top, height, comp, page_nr, &pages);
        top += get_font_size (font) - 6;
    }

    pango_font_description_free (font);

    font = get_font_for_size (12, PANGO_WEIGHT_NORMAL);

    /* For a VTODO we print the Status, Priority, % Complete and URL. */
    if (vtype == E_CAL_COMPONENT_TODO) {
        icalproperty_status status;
        const gchar *status_string = NULL;
        gint *percent;
        gint *priority;
        const gchar *url;

        /* Status */
        e_cal_component_get_status (comp, &status);
        if (status != ICAL_STATUS_NONE) {
            switch (status) {
            case ICAL_STATUS_NEEDSACTION:
                status_string = _("Not Started");
                break;
            case ICAL_STATUS_INPROCESS:
                status_string = _("In Progress");
                break;
            case ICAL_STATUS_COMPLETED:
                status_string = _("Completed");
                break;
            case ICAL_STATUS_CANCELLED:
                status_string = _("Canceled");
                break;
            default:
                break;
            }

            if (status_string) {
                gchar *status_text = g_strdup_printf (_("Status: %s"),
                                  status_string);
                top = bound_text (context, font, status_text, -1,
                          0.0, top, width, height, FALSE, &page_start, &pages);
                top += get_font_size (font) - 6;
                g_free (status_text);
            }
        }

        /* Priority */
        e_cal_component_get_priority (comp, &priority);
        if (priority && *priority >= 0) {
            gchar *pri_text;

            pri_text = g_strdup_printf (
                _("Priority: %s"),
                e_cal_util_priority_to_string (*priority));
            top = bound_text (
                context, font, pri_text, -1,
                0.0, top, width, height, FALSE,
                &page_start, &pages);
            top += get_font_size (font) - 6;
            g_free (pri_text);
        }

        if (priority)
            e_cal_component_free_priority (priority);

        /* Percent Complete */
        e_cal_component_get_percent (comp, &percent);
        if (percent) {
            gchar *percent_string;

            percent_string = g_strdup_printf (_("Percent Complete: %i"), *percent);
            e_cal_component_free_percent (percent);

            top = bound_text (context, font, percent_string, -1,
                      0.0, top, width, height, FALSE, &page_start, &pages);
            top += get_font_size (font) - 6;
        }

        /* URL */
        e_cal_component_get_url (comp, &url);
        if (url && url[0]) {
            gchar *url_string = g_strdup_printf (_("URL: %s"),
                                url);

            top = bound_text (context, font, url_string, -1,
                      0.0, top, width, height, TRUE, &page_start, &pages);
            top += get_font_size (font) - 6;
            g_free (url_string);
        }
    }

    /* Categories */
    e_cal_component_get_categories (comp, &categories);
    if (categories && categories[0]) {
        categories_string = g_strdup_printf (_("Categories: %s"),
                             categories);
        top = bound_text (context, font, categories_string, -1,
                  0.0, top, width, height, TRUE, &page_start, &pages);
        top += get_font_size (font) - 6;
        g_free (categories_string);
    }

    /* Contacts */
    e_cal_component_get_contact_list (comp, &contact_list);
    if (contact_list) {
        GString *contacts = g_string_new (_("Contacts: "));
        for (elem = contact_list; elem; elem = elem->next) {
            ECalComponentText *t = elem->data;
            /* Put a comma between contacts. */
            if (elem != contact_list)
                g_string_append (contacts, ", ");
            g_string_append (contacts, t->value);
        }
        e_cal_component_free_text_list (contact_list);

        top = bound_text (context, font, contacts->str, -1,
                  0.0, top, width, height, TRUE, &page_start, &pages);
        top += get_font_size (font) - 6;
        g_string_free (contacts, TRUE);
    }
    top += 16;

    /* Description */
    e_cal_component_get_description_list (comp, &desc);
    for (l = desc; l != NULL; l = l->next) {
        ECalComponentText *ptext = l->data;
        const gchar *line, *next_line;

        for (line = ptext->value; line != NULL; line = next_line) {
            next_line = strchr (line, '\n');

            top = bound_text (
                context, font, line,
                next_line ? next_line - line : -1,
                0.0, top + 3, width, height, TRUE,
                &page_start, &pages);

            if (next_line) {
                next_line++;
                if (!*next_line)
                    next_line = NULL;
            }
        }

    }

    e_cal_component_free_text_list (desc);
    pango_font_description_free (font);

    return pages;
}

static void
print_comp_draw_page (GtkPrintOperation *operation,
                      GtkPrintContext *context,
                      gint page_nr,
                      PrintCompItem *pci)
{
    print_comp_draw_real (operation, context, page_nr, pci);
}

static void
print_comp_begin_print (GtkPrintOperation *operation,
            GtkPrintContext   *context,
                        PrintCompItem     *pci)
{
    gint pages;

    pages = print_comp_draw_real (operation, context, -1, pci);

    gtk_print_operation_set_n_pages (operation, pages);
}

void
print_comp (ECalComponent *comp,
            ECal *client,
            icaltimezone *zone,
            gboolean use_24_hour_format,
            GtkPrintOperationAction action)
{
    GtkPrintOperation *operation;
    PrintCompItem pci;

    g_return_if_fail (E_IS_CAL_COMPONENT (comp));

    pci.comp = comp;
    pci.client = client;
    pci.zone = zone;
    pci.use_24_hour_format = use_24_hour_format;

    operation = e_print_operation_new ();
    gtk_print_operation_set_n_pages (operation, 1);

    g_signal_connect (
        operation, "begin-print",
        G_CALLBACK (print_comp_begin_print), &pci);

    g_signal_connect (
        operation, "draw-page",
        G_CALLBACK (print_comp_draw_page), &pci);

    gtk_print_operation_run (operation, action, NULL, NULL);

    g_object_unref (operation);
}

static void
print_title (GtkPrintContext *context, const gchar *text, gdouble page_width)
{
    PangoFontDescription *desc;
    PangoLayout *layout;
    cairo_t *cr;

    cr = gtk_print_context_get_cairo_context (context);

    desc = pango_font_description_from_string (FONT_FAMILY " Bold 18");

    layout = gtk_print_context_create_pango_layout (context);
    pango_layout_set_text (layout, text, -1);
    pango_layout_set_font_description (layout, desc);
    pango_layout_set_alignment (layout, PANGO_ALIGN_CENTER);
    pango_layout_set_width (layout, pango_units_from_double (page_width));

    cairo_save (cr);

    cairo_move_to (cr, 0.0, 0.0);
    pango_cairo_show_layout (cr, layout);
    cairo_translate (cr, 0.0, 18);
    cairo_save (cr);
    cairo_restore (cr);

    g_object_unref (layout);

    pango_font_description_free (desc);
}

struct print_opts {
  EPrintable *printable;
  const gchar *print_header;
};

static void
print_table_draw_page (GtkPrintOperation *operation,
                       GtkPrintContext *context,
                       gint page_nr,
                       struct print_opts *opts)
{
    GtkPageSetup *setup;
    gdouble width;

    setup = gtk_print_context_get_page_setup (context);

    width = gtk_page_setup_get_page_width (setup, GTK_UNIT_POINTS);

    do {
        /* TODO Allow the user to customize the title. */
        print_title (context, opts->print_header, width);

        if (e_printable_data_left (opts->printable))
            e_printable_print_page (
                opts->printable, context, width, 24, TRUE);

    } while (e_printable_data_left (opts->printable));

    g_free (opts);
}

void
print_table (ETable *table, const gchar *dialog_title,
             const gchar *print_header, GtkPrintOperationAction action)
{
    GtkPrintOperation *operation;
    EPrintable *printable;
    struct print_opts *opts;

    printable = e_table_get_printable (table);
    g_object_ref_sink (printable);
    e_printable_reset (printable);

    operation = e_print_operation_new ();
    gtk_print_operation_set_n_pages (operation, 1);

    opts = g_malloc (sizeof (struct print_opts));
    opts->printable = printable;
    opts->print_header = print_header;

    g_signal_connect (
        operation, "draw_page",
        G_CALLBACK (print_table_draw_page), opts);

    gtk_print_operation_run (operation, action, NULL, NULL);

    g_object_unref (operation);
}
href='#n16942'>16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19832 19833 19834 19835 19836 19837 19838 19839 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197 20198 20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20348 20349 20350 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394 20395 20396 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 20438 20439 20440 20441 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 20480 20481 20482 20483 20484 20485 20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20526 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20569 20570 20571 20572 20573 20574 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20610 20611 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20648 20649 20650 20651 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20689 20690 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20727 20728 20729 20730 20731 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764 20765 20766 20767 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20801 20802 20803 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 20835 20836 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20870 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20901 20902 20903 20904 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20935 20936 20937 20938 20939 20940 20941 20942 20943 20944 20945 20946 20947 20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20963 20964 20965 20966 20967 20968 20969 20970 20971 20972 20973 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20996 20997 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021 21022 21023 21024 21025 21026 21027 21028 21029 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 21419 21420 21421 21422 21423 21424 21425 21426 21427 21428 21429 21430 21431 21432 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 22115 22116 22117 22118 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130 22131 22132 22133 22134 22135 22136 22137 22138 22139 22140 22141 22142 22143 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22430 22431 22432 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444 22445 22446 22447 22448 22449 22450 22451 22452 22453 22454 22455 22456 22457 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553 22554 22555 22556 22557 22558 22559 22560 22561 22562 22563 22564 22565 22566 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22910 22911 22912 22913 22914 22915 22916 22917 22918 22919 22920 22921 22922 22923 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049 23050 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23184 23185 23186 23187 23188 23189 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231 23232 23233 23234 23235 23236 23237 23238 23239 23240 23241 23242 23243 23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23655 23656 23657 23658 23659 23660 23661 23662 23663 23664 23665 23666 23667 23668 23669 23670 23671 23672 23673 23674 23675 23676 23677 23678 23679 23680 23681 23682 23683 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23758 23759 23760 23761 23762 23763 23764 23765 23766 23767 23768 23769 23770 23771 23772 23773 23774 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930 23931 23932 23933 23934 23935 23936 23937 23938 23939 23940 23941 23942 23943 23944 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954 23955 23956 23957 23958 23959 23960 23961 23962 23963 23964 23965 23966 23967 23968 23969 23970 23971 23972 23973 23974 23975 23976 23977 23978 23979 23980 23981 23982 23983 23984 23985 23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996 23997 23998 23999 24000 24001 24002 24003 24004 24005 24006 24007 24008 24009 24010 24011 24012 24013 24014 24015 24016 24017 24018 24019 24020 24021 24022 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24033 24034 24035 24036 24037 24038 24039 24040 24041 24042 24043 24044 24045 24046 24047 24048 24049 24050 24051 24052 24053 24054 24055 24056 24057 24058 24059 24060 24061 24062 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 24073 24074 24075 24076 24077 24078 24079 24080 24081 24082 24083 24084 24085 24086 24087 24088 24089 24090 24091 24092 24093 24094 24095 24096 24097 24098 24099 24100 24101 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124 24125 24126 24127 24128 24129 24130 24131 24132 24133 24134 24135 24136 24137 24138 24139 24140 24141 24142 24143 24144 24145 24146 24147 24148 24149 24150 24151 24152 24153 24154 24155 24156 24157 24158 24159 24160 24161 24162 24163 24164 24165 24166 24167 24168 24169 24170 24171 24172 24173 24174 24175 24176 24177 24178 24179 24180 24181 24182 24183 24184 24185 24186 24187 24188 24189 24190 24191 24192 24193 24194 24195 24196 24197 24198 24199 24200 24201 24202 24203 24204 24205 24206 24207 24208 24209 24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 24220 24221 24222 24223 24224 24225 24226 24227 24228 24229 24230 24231 24232 24233 24234 24235 24236 24237 24238 24239 24240 24241 24242 24243 24244 24245 24246 24247 24248 24249 24250 24251 24252 24253 24254 24255 24256 24257 24258 24259 24260 24261 24262 24263 24264 24265 24266 24267 24268 24269 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281 24282 24283 24284 24285 24286 24287 24288 24289 24290 24291 24292 24293 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305 24306 24307 24308 24309 24310 24311 24312 24313 24314 24315 24316 24317 24318 24319 24320 24321 24322 24323 24324 24325 24326 24327 24328 24329 24330 24331 24332 24333 24334 24335 24336 24337 24338 24339 24340 24341 24342 24343 24344 24345 24346 24347 24348 24349 24350 24351 24352 24353 24354 24355 24356 24357 24358 24359 24360 24361 24362 24363 24364 24365 24366 24367 24368 24369 24370 24371 24372 24373 24374 24375 24376 24377 24378 24379 24380 24381 24382 24383 24384 24385 24386 24387 24388 24389 24390 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 24402 24403 24404 24405 24406 24407 24408 24409 24410 24411 24412 24413 24414 24415 24416 24417 24418 24419 24420 24421 24422 24423 24424 24425 24426 24427 24428 24429 24430 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 24441 24442 24443 24444 24445 24446 24447 24448 24449 24450 24451 24452 24453 24454 24455 24456 24457 24458 24459 24460 24461 24462 24463 24464 24465 24466 24467 24468 24469 24470 24471 24472 24473 24474 24475 24476 24477 24478 24479 24480 24481 24482 24483 24484 24485 24486 24487 24488 24489 24490 24491 24492 24493 24494 24495 24496 24497 24498 24499 24500 24501 24502 24503 24504 24505 24506 24507 24508 24509 24510 24511 24512 24513 24514 24515 24516 24517 24518 24519 24520 24521 24522 24523 24524 24525 24526 24527 24528 24529 24530 24531 24532 24533 24534 24535 24536 24537 24538 24539 24540 24541 24542 24543 24544 24545 24546 24547 24548 24549 24550 24551 24552 24553 24554 24555 24556 24557 24558 24559 24560 24561 24562 24563 24564 24565 24566 24567 24568 24569 24570 24571 24572 24573 24574 24575 24576 24577 24578 24579 24580 24581 24582 24583 24584 24585 24586 24587 24588 24589 24590 24591 24592 24593 24594 24595 24596 24597 24598 24599 24600 24601 24602 24603 24604 24605 24606 24607 24608 24609 24610 24611 24612 24613 24614 24615 24616 24617 24618 24619 24620 24621 24622 24623 24624 24625 24626 24627 24628 24629 24630 24631 24632 24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644 24645 24646 24647 24648 24649 24650 24651 24652 24653 24654 24655 24656 24657 24658 24659 24660 24661 24662 24663 24664 24665 24666 24667 24668 24669 24670 24671 24672 24673 24674 24675 24676 24677 24678 24679 24680 24681 24682 24683 24684 24685 24686 24687 24688 24689 24690 24691 24692 24693 24694 24695 24696 24697 24698 24699 24700 24701 24702 24703 24704 24705 24706 24707 24708 24709 24710 24711 24712 24713 24714 24715 24716 24717 24718 24719 24720 24721 24722 24723 24724 24725 24726 24727 24728 24729 24730 24731 24732 24733 24734 24735 24736 24737 24738 24739 24740 24741 24742 24743 24744 24745 24746 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24777 24778 24779 24780 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 24794 24795 24796 24797 24798 24799 24800 24801 24802 24803 24804 24805 24806 24807 24808 24809 24810 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24831 24832 24833 24834 24835 24836 24837 24838 24839 24840 24841 24842 24843 24844 24845 24846 24847 24848 24849 24850 24851 24852 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24884 24885 24886 24887 24888 24889 24890 24891 24892 24893 24894 24895 24896 24897 24898 24899 24900 24901 24902 24903 24904 24905 24906 24907 24908 24909 24910 24911 24912 24913 24914 24915 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24947 24948 24949 24950 24951 24952 24953 24954 24955 24956 24957 24958 24959 24960 24961 24962 24963 24964 24965 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 24986 24987 24988 24989 24990 24991 24992 24993 24994 24995 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372 25373 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411 25412 25413 25414 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447 25448 25449 25450 25451 25452 25453 25454 25455 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486 25487 25488 25489 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 25534 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25558 25559 25560 25561 25562 25563 25564 25565 25566 25567 25568 25569 25570 25571 25572 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25594 25595 25596 25597 25598 25599 25600 25601 25602 25603 25604 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25630 25631 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699 25700 25701 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25730 25731 25732 25733 25734 25735 25736 25737 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761 25762 25763 25764 25765 25766 25767 25768 25769 25770 25771 25772 25773 25774 25775 25776 25777 25778 25779 25780 25781 25782 25783 25784 25785 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797 25798 25799 25800 25801 25802 25803 25804 25805 25806 25807 25808 25809 25810 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25825 25826 25827 25828 25829 25830 25831 25832 25833 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845 25846 25847 25848 25849 25850 25851 25852 25853 25854 25855 25856 25857 25858 25859 25860 25861 25862 25863 25864 25865 25866 25867 25868 25869 25870 25871 25872 25873 25874 25875 25876 25877 25878 25879 25880 25881 25882 25883 25884 25885 25886 25887 25888 25889 25890 25891 25892 25893 25894 25895 25896 25897 25898 25899 25900 25901 25902 25903 25904 25905 25906 25907 25908 25909 25910 25911 25912 25913 25914 25915 25916 25917 25918 25919 25920 25921 25922 25923 25924 25925 25926 25927 25928 25929 25930 25931 25932 25933 25934 25935 25936 25937 25938 25939 25940 25941 25942 25943 25944 25945 25946 25947 25948 25949 25950 25951 25952 25953 25954 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 25966 25967 25968 25969 25970 25971 25972 25973 25974 25975 25976 25977 25978 25979 25980 25981 25982 25983 25984 25985 25986 25987 25988 25989 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001 26002 26003 26004 26005 26006 26007 26008 26009 26010 26011 26012 26013 26014 26015 26016 26017 26018 26019 26020 26021 26022 26023 26024 26025 26026 26027 26028 26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 26042 26043 26044 26045 26046 26047 26048 26049 26050 26051 26052 26053 26054 26055 26056 26057 26058 26059 26060 26061 26062 26063 26064 26065 26066 26067 26068 26069 26070 26071 26072 26073 26074 26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085 26086 26087 26088 26089 26090 26091 26092 26093 26094 26095 26096 26097 26098 26099 26100 26101 26102 26103 26104 26105 26106 26107 26108 26109 26110 26111 26112 26113 26114 26115 26116 26117 26118 26119 26120 26121 26122 26123 26124 26125 26126 26127 26128 26129 26130 26131 26132 26133 26134 26135 26136 26137 26138 26139 26140 26141 26142 26143 26144 26145 26146 26147 26148 26149 26150 26151 26152 26153 26154 26155 26156 26157 26158 26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169 26170 26171 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181 26182 26183 26184 26185 26186 26187 26188 26189 26190 26191
# Norwegian (Nynorsk) translation of Evolution
# Copyright (C) 2001-2002 Roy-Magne Mo
# Roy-Magne Mo <rmo@sunnmore.net>, 2001-2002
# 
msgid ""
msgstr ""
"Project-Id-Version: evolution-1.01\n"
"POT-Creation-Date: 2002-01-30 06:12+0100\n"
"PO-Revision-Date: 2002-01-30 06:10+0100\n"
"Last-Translator: Roy-Magne Mo <rmo@sunnmore.net>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"

#: addressbook/backend/ebook/GNOME_Evolution_Addressbook_LDIF_Importer.oaf.in.h:1
msgid "Factory to import LDIF files into Evolution."
msgstr "Fabrikk for å importere LDIF-filer inn i Evolution."

#: addressbook/backend/ebook/GNOME_Evolution_Addressbook_LDIF_Importer.oaf.in.h:2
msgid "Imports LDIF files into Evolution."
msgstr "Importerar LDIF-filer inn i Evolution."

#: addressbook/backend/ebook/GNOME_Evolution_Addressbook_VCard_Importer.oaf.in.h:1
msgid "Factory to import VCard files into Evolution."
msgstr "Fabrikk for å importere VCard-filer inn i Evolution."

#: addressbook/backend/ebook/GNOME_Evolution_Addressbook_VCard_Importer.oaf.in.h:2
msgid "Imports VCard files into Evolution."
msgstr "Importerar VCard-filer inn i Evolution."

#: addressbook/backend/ebook/e-card-simple.c:60
#: addressbook/gui/widgets/e-addressbook-view.c:960
msgid "File As"
msgstr "Arkiver som"

#: addressbook/backend/ebook/e-card-simple.c:61
msgid "Name"
msgstr "Namn"

#: addressbook/backend/ebook/e-card-simple.c:62
#: addressbook/gui/widgets/e-addressbook-view.c:962
msgid "Email"
msgstr "E-post"

#: addressbook/backend/ebook/e-card-simple.c:63
#: addressbook/gui/contact-editor/e-contact-editor.c:1659
msgid "Primary"
msgstr "Primær"

#: addressbook/backend/ebook/e-card-simple.c:63
msgid "Prim"
msgstr "Prim"

#: addressbook/backend/ebook/e-card-simple.c:64
#: addressbook/backend/ebook/e-card-simple.c:94
#: addressbook/gui/contact-editor/e-contact-editor.c:1644
#: addressbook/gui/widgets/e-addressbook-view.c:994
msgid "Assistant"
msgstr "Assistent"

#: addressbook/backend/ebook/e-card-simple.c:65
#: addressbook/backend/ebook/e-card-simple.c:70
#: addressbook/gui/contact-editor/contact-editor.glade.h:5
#: addressbook/gui/contact-editor/e-contact-editor.c:1645
#: addressbook/gui/contact-editor/e-contact-editor.c:1712
msgid "Business"
msgstr "Firma"

#: addressbook/backend/ebook/e-card-simple.c:65
#: addressbook/backend/ebook/e-card-simple.c:70
msgid "Bus"
msgstr "Frm"

#: addressbook/backend/ebook/e-card-simple.c:66
#: addressbook/gui/contact-editor/e-contact-editor.c:1648
msgid "Callback"
msgstr "Ring tilbake"

#: addressbook/backend/ebook/e-card-simple.c:67
#: addressbook/gui/contact-editor/e-contact-editor.c:1650
msgid "Company"
msgstr "Firma"

#: addressbook/backend/ebook/e-card-simple.c:67
msgid "Comp"
msgstr "Frm"

#: addressbook/backend/ebook/e-card-simple.c:68
#: addressbook/backend/ebook/e-card-simple.c:71
#: addressbook/gui/contact-editor/contact-editor.glade.h:17
#: addressbook/gui/contact-editor/e-contact-editor.c:1651
#: addressbook/gui/contact-editor/e-contact-editor.c:1713
msgid "Home"
msgstr "Heim"

#: addressbook/backend/ebook/e-card-simple.c:69
#: addressbook/gui/widgets/e-addressbook-view.c:969
msgid "Organization"
msgstr "Organisasjon"

#: addressbook/backend/ebook/e-card-simple.c:69
msgid "Org"
msgstr "Org"

#: addressbook/backend/ebook/e-card-simple.c:72
#: addressbook/gui/contact-editor/contact-editor.glade.h:20
#: addressbook/gui/contact-editor/e-contact-editor.c:1655
msgid "Mobile"
msgstr "Mobil"

#: addressbook/backend/ebook/e-card-simple.c:73
#: addressbook/gui/contact-editor/e-contact-editor.c:1649
msgid "Car"
msgstr "Bil"

#: addressbook/backend/ebook/e-card-simple.c:74
#: addressbook/gui/contact-editor/contact-editor.glade.h:6
#: addressbook/gui/contact-editor/e-contact-editor.c:1647
#: addressbook/gui/widgets/e-addressbook-view.c:974
msgid "Business Fax"
msgstr "Firma-fax"

#: addressbook/backend/ebook/e-card-simple.c:74
msgid "Bus Fax"
msgstr "Frm-fax"

#: addressbook/backend/ebook/e-card-simple.c:75
#: addressbook/gui/contact-editor/e-contact-editor.c:1653
#: addressbook/gui/widgets/e-addressbook-view.c:975
msgid "Home Fax"
msgstr "Heime-faks"

#: addressbook/backend/ebook/e-card-simple.c:76
#: addressbook/gui/contact-editor/e-contact-editor.c:1646
msgid "Business 2"
msgstr "Firma 2"

#: addressbook/backend/ebook/e-card-simple.c:76
msgid "Bus 2"
msgstr "Frm 2"

#: addressbook/backend/ebook/e-card-simple.c:77
#: addressbook/gui/contact-editor/e-contact-editor.c:1652
msgid "Home 2"
msgstr "Heim 2"

#: addressbook/backend/ebook/e-card-simple.c:78
#: addressbook/gui/contact-editor/e-contact-editor.c:1654
#: addressbook/gui/widgets/e-addressbook-view.c:978
msgid "ISDN"
msgstr "ISDN"

#: addressbook/backend/ebook/e-card-simple.c:79
#: addressbook/backend/ebook/e-card-simple.c:85
#: addressbook/gui/contact-editor/e-contact-editor.c:1656
#: addressbook/gui/contact-editor/e-contact-editor.c:1714
#: mail/mail-config.glade.h:57
msgid "Other"
msgstr "Anna"

#: addressbook/backend/ebook/e-card-simple.c:80
#: addressbook/gui/contact-editor/e-contact-editor.c:1657
#: addressbook/gui/widgets/e-addressbook-view.c:980
msgid "Other Fax"
msgstr "Alternativ faks"

#: addressbook/backend/ebook/e-card-simple.c:81
#: addressbook/gui/contact-editor/e-contact-editor.c:1658
#: addressbook/gui/widgets/e-addressbook-view.c:981
msgid "Pager"
msgstr "Personsøkjar"

#: addressbook/backend/ebook/e-card-simple.c:82
#: addressbook/gui/contact-editor/e-contact-editor.c:1660
#: addressbook/gui/widgets/e-addressbook-view.c:982
msgid "Radio"
msgstr "Radio"

#: addressbook/backend/ebook/e-card-simple.c:83
#: addressbook/gui/contact-editor/e-contact-editor.c:1661
#: addressbook/gui/widgets/e-addressbook-view.c:983
msgid "Telex"
msgstr "Teleks"

#: addressbook/backend/ebook/e-card-simple.c:84
#: addressbook/gui/widgets/e-addressbook-view.c:984
msgid "TTY"
msgstr "TTY"

#: addressbook/backend/ebook/e-card-simple.c:86
#: addressbook/gui/component/e-address-popup.c:484
#: addressbook/gui/contact-editor/e-contact-editor.c:1687
#: addressbook/gui/widgets/e-addressbook-view.c:986
msgid "Email 2"
msgstr "E-post 2"

#: addressbook/backend/ebook/e-card-simple.c:87
#: addressbook/gui/component/e-address-popup.c:494
#: addressbook/gui/contact-editor/e-contact-editor.c:1688
#: addressbook/gui/widgets/e-addressbook-view.c:987
msgid "Email 3"
msgstr "E-post 3"

#: addressbook/backend/ebook/e-card-simple.c:88
#: addressbook/gui/widgets/e-addressbook-view.c:988
msgid "Web Site"
msgstr "Nettstad"

#: addressbook/backend/ebook/e-card-simple.c:88
msgid "Url"
msgstr "Url"

#: addressbook/backend/ebook/e-card-simple.c:89
#: addressbook/gui/widgets/e-addressbook-view.c:989
msgid "Department"
msgstr "Avdeling"

#: addressbook/backend/ebook/e-card-simple.c:89
msgid "Dep"
msgstr "Avd"

#: addressbook/backend/ebook/e-card-simple.c:90
#: addressbook/gui/widgets/e-addressbook-view.c:990
msgid "Office"
msgstr "Kontor"

#: addressbook/backend/ebook/e-card-simple.c:90
msgid "Off"
msgstr "Av"

#: addressbook/backend/ebook/e-card-simple.c:91
#: addressbook/gui/widgets/e-addressbook-view.c:991
msgid "Title"
msgstr "Tittel"

#: addressbook/backend/ebook/e-card-simple.c:92
#: addressbook/gui/widgets/e-addressbook-view.c:992
msgid "Profession"
msgstr "Yrke"

#: addressbook/backend/ebook/e-card-simple.c:92
msgid "Prof"
msgstr "Yrke"

#: addressbook/backend/ebook/e-card-simple.c:93
#: addressbook/gui/widgets/e-addressbook-view.c:993
msgid "Manager"
msgstr "Sjef"

#: addressbook/backend/ebook/e-card-simple.c:93
msgid "Man"
msgstr "Sjef"

#: addressbook/backend/ebook/e-card-simple.c:94
msgid "Ass"
msgstr "Ass"

#: addressbook/backend/ebook/e-card-simple.c:95
#: addressbook/gui/widgets/e-addressbook-view.c:995
msgid "Nickname"
msgstr "Kallenamn"

#: addressbook/backend/ebook/e-card-simple.c:95
msgid "Nick"
msgstr "Kallenamn"

#: addressbook/backend/ebook/e-card-simple.c:96
#: addressbook/gui/widgets/e-addressbook-view.c:996
msgid "Spouse"
msgstr "Ektefelle"

#: addressbook/backend/ebook/e-card-simple.c:97
#: addressbook/gui/widgets/e-addressbook-view.c:997
msgid "Note"
msgstr "Merknad"

#: addressbook/backend/ebook/e-card-simple.c:98
msgid "Calendar URI"
msgstr "Kalendar URI"

#: addressbook/backend/ebook/e-card-simple.c:98
msgid "CALUri"
msgstr "CALUri"

#: addressbook/backend/ebook/e-card-simple.c:99
#: addressbook/gui/widgets/e-addressbook-view.c:998
msgid "Free-busy URL"
msgstr "Ledit-oppteke URL"

#: addressbook/backend/ebook/e-card-simple.c:99
msgid "FBUrl"
msgstr "LOUrl"

#: addressbook/backend/ebook/e-card-simple.c:100
msgid "Anniversary"
msgstr "Merkedag"

#: addressbook/backend/ebook/e-card-simple.c:100
msgid "Anniv"
msgstr "Mrkdag"

#: addressbook/backend/ebook/e-card-simple.c:101
msgid "Birth Date"
msgstr "Fødselsdag"

#: addressbook/backend/ebook/e-card-simple.c:104
#: calendar/gui/e-calendar-table.etspec.h:4
msgid "Categories"
msgstr "Kategoriar"

#: addressbook/backend/ebook/e-card-simple.c:105
msgid "Family Name"
msgstr "Etternamn"

#: addressbook/backend/ebook/e-card-simple.c:788
#, c-format
msgid "%x"
msgstr "%x"

#: addressbook/backend/ebook/e-card.c:3712
msgid "Card: "
msgstr "Kort: "

#: addressbook/backend/ebook/e-card.c:3714
msgid ""
"\n"
"Name: "
msgstr ""
"\n"
"Namn: "

#: addressbook/backend/ebook/e-card.c:3715
msgid ""
"\n"
"  Prefix:     "
msgstr ""
"\n"
"  Prefiks:    "

#: addressbook/backend/ebook/e-card.c:3716
msgid ""
"\n"
"  Given:      "
msgstr ""
"\n"
"  Fornamn:    "

#: addressbook/backend/ebook/e-card.c:3717
msgid ""
"\n"
"  Additional: "
msgstr ""
"\n"
"  Tillegg:"

#: addressbook/backend/ebook/e-card.c:3718
msgid ""
"\n"
"  Family:     "
msgstr ""
"\n"
"  Etternamn:  "

#: addressbook/backend/ebook/e-card.c:3719
msgid ""
"\n"
"  Suffix:     "
msgstr ""
"\n"
"  Etterstaving:    "

#: addressbook/backend/ebook/e-card.c:3733
msgid ""
"\n"
"Birth Date: "
msgstr ""
"\n"
"Fødselsdato: "

#: addressbook/backend/ebook/e-card.c:3744
msgid ""
"\n"
"Address:"
msgstr ""
"\n"
"Adresse:"

#: addressbook/backend/ebook/e-card.c:3746
msgid ""
"\n"
"  Postal Box:  "
msgstr ""
"\n"
"  Postboks:"

#: addressbook/backend/ebook/e-card.c:3747
msgid ""
"\n"
"  Ext:         "
msgstr ""
"\n"
"  Prefix:    "

#: addressbook/backend/ebook/e-card.c:3748
msgid ""
"\n"
"  Street:      "
msgstr ""
"\n"
"  Gateaddresse:"

#: addressbook/backend/ebook/e-card.c:3749
msgid ""
"\n"
"  City:        "
msgstr ""
"\n"
"  By:          "

#: addressbook/backend/ebook/e-card.c:3750
msgid ""
"\n"
"  Region:      "
msgstr ""
"\n"
"  Region:      "

#: addressbook/backend/ebook/e-card.c:3751
msgid ""
"\n"
"  Postal Code: "
msgstr ""
"\n"
"  Postnummer: "

#: addressbook/backend/ebook/e-card.c:3752
msgid ""
"\n"
"  Country:     "
msgstr ""
"\n"
"  Land:        "

#: addressbook/backend/ebook/e-card.c:3765
msgid ""
"\n"
"Delivery Label: "
msgstr ""
"\n"
"Leveringsetikett: "

#: addressbook/backend/ebook/e-card.c:3777
msgid ""
"\n"
"Telephones:\n"
msgstr ""
"\n"
"Telefonar:\n"

#: addressbook/backend/ebook/e-card.c:3780
msgid ""
"\n"
"Telephone:"
msgstr ""
"\n"
"Telefon:"

#: addressbook/backend/ebook/e-card.c:3804
msgid ""
"\n"
"E-mail:\n"
msgstr ""
"\n"
"E-post:\n"

#: addressbook/backend/ebook/e-card.c:3807
msgid ""
"\n"
"E-mail:"
msgstr ""
"\n"
"E-post:"

#: addressbook/backend/ebook/e-card.c:3826
msgid ""
"\n"
"Mailer: "
msgstr ""

#: addressbook/backend/ebook/e-card.c:3832
msgid ""
"\n"
"Time Zone: "
msgstr ""
"\n"
"Tidssone:"

#: addressbook/backend/ebook/e-card.c:3840
msgid ""
"\n"
"Geo Location: "
msgstr ""
"\n"
"Geo lokasjon: "

#: addressbook/backend/ebook/e-card.c:3844
msgid ""
"\n"
"Business Role: "
msgstr ""
"\n"
"Forretningsrolle: "

#: addressbook/backend/ebook/e-card.c:3856
msgid ""
"\n"
"Org: "
msgstr ""
"\n"
"Org: "

#: addressbook/backend/ebook/e-card.c:3857
msgid ""
"\n"
"  Name:  "
msgstr ""
"\n"
"  Namn:  "

#: addressbook/backend/ebook/e-card.c:3858
msgid ""
"\n"
"  Unit:  "
msgstr ""
"\n"
" Eining: "

#: addressbook/backend/ebook/e-card.c:3859
msgid ""
"\n"
"  Unit2: "
msgstr ""
"\n"
" Eining2: "

#: addressbook/backend/ebook/e-card.c:3860
msgid ""
"\n"
"  Unit3: "
msgstr ""
"\n"
" Eining3: "

#: addressbook/backend/ebook/e-card.c:3861
msgid ""
"\n"
"  Unit4: "
msgstr ""
"\n"
" Eining4: "

#: addressbook/backend/ebook/e-card.c:3865
msgid ""
"\n"
"Categories: "
msgstr ""
"\n"
"Kategoriar: "

#: addressbook/backend/ebook/e-card.c:3866
msgid ""
"\n"
"Comment: "
msgstr ""
"\n"
"Merknad:"

#. if (crd->sound.prop.used) {
#. if (crd->sound.type != SOUND_PHONETIC)
#. addPropSizedValue (string, _ ("\nPronunciation: "),
#. crd->sound.data, crd->sound.size);
#. else
#. add_strProp_to_string (string, _ ("\nPronunciation: "),
#. crd->sound.data);
#.
#. add_SoundType (string, crd->sound.type);
#. }
#: addressbook/backend/ebook/e-card.c:3879
msgid ""
"\n"
"Unique String: "
msgstr ""
"\n"
"Unik streng:"

#: addressbook/backend/ebook/e-card.c:3882
msgid ""
"\n"
"Public Key: "
msgstr ""
"\n"
"Offentleg nøkkel: "

#: addressbook/backend/ebook/e-card.c:4235
msgid "Multiple VCards"
msgstr "Fleire VKort"

#: addressbook/backend/ebook/e-card.c:4243
#, c-format
msgid "VCard for %s"
msgstr "VKort for %s"

#: addressbook/backend/ebook/load-gnomecard-addressbook.c:21
#: addressbook/backend/ebook/load-pine-addressbook.c:22
#: addressbook/backend/ebook/test-client-list.c:23
#: addressbook/backend/ebook/test-client.c:33
#: addressbook/conduit/address-conduit.c:1721
#: addressbook/gui/component/addressbook-factory.c:50
#: calendar/conduits/calendar/calendar-conduit.c:1727
#: calendar/conduits/todo/todo-conduit.c:1316
#: calendar/gui/alarm-notify/notify-main.c:171 calendar/gui/main.c:62
#: tools/evolution-addressbook-abuse.c:132
#: tools/evolution-addressbook-export.c:60
#: tools/evolution-addressbook-import.c:86
msgid "Could not initialize Bonobo"
msgstr "Kunne ikkje initialisere Bonobo"

#: addressbook/backend/pas/pas-backend-file.c:259
#: addressbook/backend/pas/pas-backend-ldap.c:2272
msgid "Searching..."
msgstr "Søkjer ..."

#: addressbook/backend/pas/pas-backend-file.c:261
msgid "Loading..."
msgstr "Lastar ..."

#. need a different error message here.
#: addressbook/backend/pas/pas-backend-file.c:270
msgid "Error in search expression."
msgstr "Feil i søkeuttrykk."

#: addressbook/backend/pas/pas-backend-ldap.c:486
msgid "Connecting to LDAP server..."
msgstr "Koplar til LDAP-tenar ..."

#: addressbook/backend/pas/pas-backend-ldap.c:496
msgid "Unable to connect to LDAP server."
msgstr "Klarte ikkje å kople til LDAP-tenar."

#: addressbook/backend/pas/pas-backend-ldap.c:512
msgid "Waiting for connection to LDAP server..."
msgstr "Ventar på å kople til LDAP-tenar ..."

#: addressbook/backend/pas/pas-backend-ldap.c:915
msgid "Adding card to LDAP server..."
msgstr "Legg til kort til LDAP-tenar ..."

#: addressbook/backend/pas/pas-backend-ldap.c:1016
msgid "Removing card from LDAP server..."
msgstr "Fjernar kort frå LDAP-tenar ..."

#: addressbook/backend/pas/pas-backend-ldap.c:1126
msgid "Modifying card from LDAP server..."
msgstr "Endrar kort frå LDAP-tenar ..."

#: addressbook/backend/pas/pas-backend-ldap.c:2217
msgid "Receiving LDAP search results..."
msgstr "Mottek LDAP-søkeresultat ..."

#: addressbook/backend/pas/pas-backend-ldap.c:2222
msgid "Restarting search."
msgstr "Startar søk om att."

#: addressbook/conduit/address-conduit.c:426
msgid "Cursor could not be loaded\n"
msgstr "Markør kunne ikkje lastast\n"

#: addressbook/conduit/address-conduit.c:439
msgid "EBook not loaded\n"
msgstr "EBook vart ikkje lasta\n"

#: addressbook/conduit/address-conduit.c:1220
#: calendar/conduits/calendar/calendar-conduit.c:1203
#: calendar/conduits/todo/todo-conduit.c:824
msgid "Could not start wombat server"
msgstr "Klarte ikkje å starte wombat-tenar."

#: addressbook/conduit/address-conduit.c:1221
#: calendar/conduits/calendar/calendar-conduit.c:1204
#: calendar/conduits/todo/todo-conduit.c:825
msgid "Could not start wombat"
msgstr "Klarte ikkje å starte wombat."

#: addressbook/conduit/address-conduit.c:1251
#: addressbook/conduit/address-conduit.c:1254
msgid "Could not read pilot's Address application block"
msgstr "Klarte ikkje å lese addresseblokka i programmet til piloten"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:1
msgid "A Bonobo control for an address popup."
msgstr "Ein Bonobo-kontroll for ein addresse sprett-opp."

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:2
msgid "A Bonobo control for displaying an address."
msgstr "Ein bonobo-kontroll for vising av addresser."

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:3
#: notes/GNOME_Evolution_Notes.oaf.in.h:1
msgid "A sample Bonobo control which displays an addressbook."
msgstr "Ein eksempel Bonobo-kotroll som viser ein addressebok."

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:4
msgid "Control that displays an Evolution addressbook minicard."
msgstr "Kontroll som viser eit Evolution addressebok minikort."

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:5
msgid "Evolution Addressbook minicard viewer"
msgstr "Evolutions addressebok minikortlesar"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:6
msgid "Evolution component for handling contacts."
msgstr "Evolutionkomponent for handsaming av kontakter."

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:7
msgid "Factory for the Addressbook Minicard control"
msgstr "Fabrikk for Minikortkontrolle i addresseboka"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:8
msgid "Factory for the Addressbook's address displayer"
msgstr "Fabrikk for addressevisaren til addresseboka"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:9
msgid "Factory for the Addressbook's address popup"
msgstr "Fabrikke for sprettopp-vindauget til addresseboka"

#: addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in.h:10
msgid "Factory for the sample Addressbook control"
msgstr "Fabrikk for ein eksemple adressebokkontroll"

#: addressbook/gui/component/addressbook-component.c:71
#: calendar/gui/dialogs/comp-editor-util.c:310
#: calendar/gui/dialogs/comp-editor-util.c:366 shell/e-local-storage.c:172
#: shell/e-shortcuts.c:1061
msgid "Contacts"
msgstr "Kontakter"

#: addressbook/gui/component/addressbook-component.c:71
msgid "Folder containing contact information"
msgstr "Mappe som inneheld kontaktinformasjon"

#: addressbook/gui/component/addressbook-component.c:73
msgid "LDAP Server"
msgstr "LDAP-tenar"

#: addressbook/gui/component/addressbook-component.c:73
msgid "LDAP server containing contact information"
msgstr "LDAP-tenar som inneheld kontaktinformasjon"

#: addressbook/gui/component/addressbook-component.c:527
#: ui/evolution-addressbook.xml.h:11
msgid "New Contact"
msgstr "Ny kontakt"

#: addressbook/gui/component/addressbook-component.c:527
msgid "New _Contact"
msgstr "Ny _kontakt"

#: addressbook/gui/component/addressbook-component.c:530
msgid "New Contact List"
msgstr "Ny kontaktliste"

#: addressbook/gui/component/addressbook-component.c:530
msgid "New Contact _List"
msgstr "Ny kontakt_liste"

#: addressbook/gui/component/addressbook-config.c:193
msgid "Edit Addressbook"
msgstr "Rediger adressebok"

#: addressbook/gui/component/addressbook-config.glade.h:1
#, fuzzy
msgid "100"
msgstr "100%"

#: addressbook/gui/component/addressbook-config.glade.h:2
msgid "389"
msgstr "389"

#: addressbook/gui/component/addressbook-config.glade.h:3
msgid "Account Name"
msgstr "Kontonamn"

#: addressbook/gui/component/addressbook-config.glade.h:4
msgid "Add Addressbook"
msgstr "Legg til adressebok"

#: addressbook/gui/component/addressbook-config.glade.h:5
msgid "Addressbook Sources"
msgstr "Addressebokkjelder"

#: addressbook/gui/component/addressbook-config.glade.h:6
msgid "Advanced"
msgstr "Avansert"

#: addressbook/gui/component/addressbook-config.glade.h:7
msgid "Base"
msgstr "Base"

#: addressbook/gui/component/addressbook-config.glade.h:8
#: calendar/gui/dialogs/task-editor.c:178
msgid "Basic"
msgstr "Enkel"

#: addressbook/gui/component/addressbook-config.glade.h:9
msgid "De_lete"
msgstr "S_lett"

#: addressbook/gui/component/addressbook-config.glade.h:10
msgid "Email Address:"
msgstr "E-postadresse:"

#: addressbook/gui/component/addressbook-config.glade.h:11
msgid ""
"Evolution will use this email address to authenticate you with the server"
msgstr ""
"Evolution kjem til å bruke denne e-postaddressa for å autentisere deg "
"ovanfor tenaren"

#: addressbook/gui/component/addressbook-config.glade.h:12
msgid "One"
msgstr "Ein"

#: addressbook/gui/component/addressbook-config.glade.h:13
msgid "Search _base:"
msgstr "Søke_base:"

#: addressbook/gui/component/addressbook-config.glade.h:14
msgid "Search s_cope: "
msgstr "Søkes_kop:"

#: addressbook/gui/component/addressbook-config.glade.h:15
msgid "Server Name"
msgstr "Tenarnamn"

#: addressbook/gui/component/addressbook-config.glade.h:16
msgid "Sub"
msgstr "Sub"

#: addressbook/gui/component/addressbook-config.glade.h:17
msgid "The information below is required in order to add an addressbook.  "
msgstr "Informasjon trengs for å legge til ei addressebok."

#: addressbook/gui/component/addressbook-config.glade.h:18
msgid "This information is not required for most ldap servers. "
msgstr "Denne informasjonen er ikkje naudsynt for dei fleste ldap-tenarer."

#: addressbook/gui/component/addressbook-config.glade.h:19
msgid ""
"This information is used by your ldap server to specify which nodes are used "
"in a search. Contact your server administrator for more information."
msgstr ""
"Denne informasjonen er brukt av ldap-tenaren for å spesifierse kva nodar som "
"skal brukast i søket. Kontakt tenaradmistratoren din for meir informasjon."

#: addressbook/gui/component/addressbook-config.glade.h:20
msgid ""
"This is the base node for all your searches on the ldap server. Contact your "
"server administrator for more information."
msgstr ""

#: addressbook/gui/component/addressbook-config.glade.h:21
msgid ""
"This is the maximum number of cards to download.  Setting this number too "
"large will slow down this addressbook."
msgstr ""

#: addressbook/gui/component/addressbook-config.glade.h:22
msgid "This is the name of the server where your addressbook is located."
msgstr ""

#: addressbook/gui/component/addressbook-config.glade.h:23
msgid "This is the port that your ldap server uses."
msgstr ""

#: addressbook/gui/component/addressbook-config.glade.h:24
msgid ""
"This name will be used to identify your account. It is for display purposes "
"only."
msgstr ""
"Namnet blir brukt til å identifisere kontoen din. Det er kun til for "
"visningsføremål."

#: addressbook/gui/component/addressbook-config.glade.h:25
msgid "_Account name:"
msgstr "Konton_amn:"

#: addressbook/gui/component/addressbook-config.glade.h:26
#: addressbook/gui/contact-editor/contact-editor.glade.h:30
#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:4
#: calendar/gui/dialogs/alarm-page.glade.h:8 filter/filter.glade.h:7
#: mail/mail-config.glade.h:99 my-evolution/my-evolution.glade.h:21
msgid "_Add"
msgstr "_Legg til"

#: addressbook/gui/component/addressbook-config.glade.h:27
msgid "_Download Limit"
msgstr ""

#: addressbook/gui/component/addressbook-config.glade.h:28
#: filter/filter.glade.h:9 mail/mail-config.glade.h:107
#: ui/evolution-addressbook.xml.h:35 ui/evolution-calendar.xml.h:39
#: ui/evolution-mail-list.xml.h:25 ui/evolution-mail-messagedisplay.xml.h:6
#: ui/evolution-message-composer.xml.h:47
#: ui/evolution-signature-editor.xml.h:7 ui/evolution-subscribe.xml.h:10
#: ui/evolution-tasks.xml.h:19
msgid "_Edit"
msgstr "R_edigér"

#: addressbook/gui/component/addressbook-config.glade.h:29
msgid "_My server requires authentication"
msgstr "_Min tenar treng autentisering"

#: addressbook/gui/component/addressbook-config.glade.h:30
msgid "_Port:"
msgstr "_Port:"

#: addressbook/gui/component/addressbook-config.glade.h:31
msgid "_Server name:"
msgstr "_Tenarnamn:"

#: addressbook/gui/component/addressbook-factory.c:70
#: calendar/gui/alarm-notify/notify-main.c:174 calendar/gui/main.c:134
msgid "Could not initialize gnome-vfs"
msgstr "Klarte ikkje å initialisere gnome-vfs"

#: addressbook/gui/component/addressbook-storage.c:168
msgid "Other Contacts"
msgstr "Andre kontakter"

#: addressbook/gui/component/addressbook.c:499
msgid "Unable to open addressbook"
msgstr "Ikkje i stand å opne adresseboka"

#: addressbook/gui/component/addressbook.c:508
msgid ""
"We were unable to open this addressbook.  This either\n"
"means you have entered an incorrect URI, or the LDAP server\n"
"is down"
msgstr ""

#: addressbook/gui/component/addressbook.c:513
msgid ""
"This version of Evolution does not have LDAP support\n"
"compiled in to it.  If you want to use LDAP in Evolution\n"
"you must compile the program from the CVS sources after\n"
"retrieving OpenLDAP from the link below.\n"
msgstr ""

#: addressbook/gui/component/addressbook.c:521
msgid ""
"We were unable to open this addressbook.  Please check that the\n"
"path exists and that you have permission to access it."
msgstr ""

#: addressbook/gui/component/addressbook.c:654
#, c-format
msgid "Enter password for %s (user %s)"
msgstr "Oppgi passord for %s (brukar %s)"

#: addressbook/gui/component/addressbook.c:822
#: calendar/gui/cal-search-bar.c:55
msgid "Any field contains"
msgstr "Nokon felt inneheld"

#: addressbook/gui/component/addressbook.c:823
msgid "Name contains"
msgstr "Namn inneheld"

#: addressbook/gui/component/addressbook.c:824
msgid "Email contains"
msgstr "E-post inneheld"

#: addressbook/gui/component/addressbook.c:825
#: calendar/gui/cal-search-bar.c:59
msgid "Category is"
msgstr "Kategori er"

#. We attach subitems below
#: addressbook/gui/component/addressbook.c:826 widgets/misc/e-filter-bar.h:97
#: widgets/misc/e-filter-bar.h:104
msgid "Advanced..."
msgstr "Avansert ..."

#. All, unmatched, separator
#: addressbook/gui/component/addressbook.c:1053
#: calendar/gui/cal-search-bar.c:412
msgid "Any Category"
msgstr "Nokon kategori"

#: addressbook/gui/component/addressbook.c:1136
msgid "The URI that the Folder Browser will display"
msgstr ""

#.
#. * This is the code for the UI thingie that lets you manipulate the e-mail
#. * addresses (and *only* the e-mail addresses) associated with an existing
#. * card.
#.
#: addressbook/gui/component/e-address-popup.c:178
msgid "(none)"
msgstr "(ingen)"

#: addressbook/gui/component/e-address-popup.c:474
#: addressbook/gui/contact-editor/contact-editor.glade.h:26
#: addressbook/gui/contact-editor/e-contact-editor.c:1686
msgid "Primary Email"
msgstr "Primær e-post"

#: addressbook/gui/component/e-address-popup.c:587
msgid "Select an Action"
msgstr "Vel ei handling"

#: addressbook/gui/component/e-address-popup.c:593
#, c-format
msgid "Create a new contact \"%s\""
msgstr "Lag ny kontakt «%s»"

#: addressbook/gui/component/e-address-popup.c:605
#, c-format
msgid "Add address to existing contact \"%s\""
msgstr "Legg til addresser for eksisterande kontakt «%s»"

#: addressbook/gui/component/e-address-popup.c:891
msgid "Querying Addressbook..."
msgstr "Spør adresseboka ..."

#: addressbook/gui/component/e-address-popup.c:973
#: addressbook/gui/component/e-address-widget.c:387
#: addressbook/gui/component/select-names/e-select-names-popup.c:306
msgid "Edit Contact Info"
msgstr "Rediger kontaktinformasjon"

#: addressbook/gui/component/e-address-popup.c:1003
#: addressbook/gui/component/e-address-widget.c:423
#: addressbook/gui/component/select-names/e-select-names-popup.c:485
msgid "Add to Contacts"
msgstr "Legg til kontakter"

#: addressbook/gui/component/e-address-popup.c:1046
msgid "Merge E-Mail Address"
msgstr "Flett e-postadresser"

#: addressbook/gui/component/e-address-widget.c:364
msgid "Disable Queries"
msgstr "Slå av spørjingar"

#: addressbook/gui/component/e-address-widget.c:364
msgid "Enable Queries (Dangerous!)"
msgstr "Slå på spørjingar (Farleg!)"

#: addressbook/gui/component/select-names/GNOME_Evolution_Addressbook_SelectNames.oaf.in.h:1
#, fuzzy
msgid "Evolution's addressbook name selection interface."
msgstr "Gpilotd adressekomponent"

#: addressbook/gui/component/select-names/GNOME_Evolution_Addressbook_SelectNames.oaf.in.h:2
msgid "Factory for the Addressbook's name selection interface"
msgstr ""

#: addressbook/gui/component/select-names/e-select-names-popup.c:163
#: addressbook/gui/component/select-names/e-select-names.c:830
#: composer/e-msg-composer-attachment-bar.c:505 filter/filter-filter.c:436
#: filter/filter-rule.c:637 shell/e-shortcuts-view.c:180
msgid "Remove"
msgstr "Fjern"

#: addressbook/gui/component/select-names/e-select-names-popup.c:178
msgid "Remove All"
msgstr "Fjern alle"

#: addressbook/gui/component/select-names/e-select-names-popup.c:202
msgid "Send HTML Mail?"
msgstr "Sende HTML e-post?"

#: addressbook/gui/component/select-names/e-select-names-popup.c:405
msgid "Edit Contact List"
msgstr "Rediger kontaktliste"

#: addressbook/gui/component/select-names/e-select-names-popup.c:423
msgid "Unnamed Contact List"
msgstr "Kontaktliste utan namn"

#: addressbook/gui/component/select-names/e-select-names-popup.c:440
#, c-format
msgid "(%d not shown)"
msgstr "(%d ikkje vist)"

#: addressbook/gui/component/select-names/e-select-names-popup.c:506
msgid "Unnamed Contact"
msgstr "Kontakt utan namn"

#: addressbook/gui/component/select-names/e-select-names.c:581
msgid ""
"Evolution is unable to get the addressbook local storage.\n"
"This may have been caused by the evolution-addressbook component crashing.\n"
"To help us better understand and ultimately resolve this problem,\n"
"please send an e-mail to Jon Trowbridge <trow@ximian.com> with a\n"
"detailed description of the circumstances under which this error\n"
"occurred.  Thank you."
msgstr ""

#: addressbook/gui/component/select-names/e-select-names.c:589
msgid ""
"Evolution is unable to get the addressbook local storage.\n"
"Under normal circumstances, this should never happen.\n"
"You may need to exit and restart Evolution in order to\n"
"correct this problem."
msgstr ""

#: addressbook/gui/component/select-names/e-select-names.c:671
msgid "Select Contacts from Addressbook"
msgstr ""

#: addressbook/gui/component/select-names/select-names.glade.h:1
msgid "C_ontaining:"
msgstr "I_nneheld:"

#: addressbook/gui/component/select-names/select-names.glade.h:2
msgid "F_ind"
msgstr "F_inn"

#: addressbook/gui/component/select-names/select-names.glade.h:3
msgid "Select Names"
msgstr "Vel namn"

#: addressbook/gui/component/select-names/select-names.glade.h:4
msgid "Show contacts matching the following criteria:"
msgstr "Vis kontakter som stemmer med desse kriteria:"

#: addressbook/gui/component/select-names/select-names.glade.h:5
msgid "_Category:"
msgstr "_Kategori:"

#: addressbook/gui/component/select-names/select-names.glade.h:6
msgid "_Folder:"
msgstr "_Mapper:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:1
msgid "A_ssistant's name:"
msgstr "Namn på a_ssistent:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:2
msgid "Add_ress..."
msgstr "Ad_resse ..."

#: addressbook/gui/contact-editor/contact-editor.glade.h:3
msgid "Anni_versary:"
msgstr "M_erkedag"

#: addressbook/gui/contact-editor/contact-editor.glade.h:4
msgid "Birthda_y:"
msgstr "Fødsels_dag:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:7
msgid "C_ontacts..."
msgstr "Kontakter ..."

#: addressbook/gui/contact-editor/contact-editor.glade.h:8
#: calendar/gui/dialogs/event-page.glade.h:3
#: calendar/gui/dialogs/task-page.glade.h:1
msgid "Ca_tegories..."
msgstr "Ka_tegoriar ..."

#: addressbook/gui/contact-editor/contact-editor.glade.h:9
msgid "Collaboration"
msgstr "Samarbeid"

#. Construct the app
#: addressbook/gui/contact-editor/contact-editor.glade.h:10
#: addressbook/gui/contact-editor/e-contact-editor.c:1293
msgid "Contact Editor"
msgstr "Kontaktredigering"

#: addressbook/gui/contact-editor/contact-editor.glade.h:11
msgid "D_epartment:"
msgstr "Avd_eling:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:12
#: calendar/gui/dialogs/task-editor.c:183
msgid "Details"
msgstr "Detaljar"

#: addressbook/gui/contact-editor/contact-editor.glade.h:13
msgid "F_ree/Busy URL:"
msgstr "_Ledig/Oppteken URL:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:14
msgid "File A_s:"
msgstr "Arkiver _som:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:15
msgid "Full _Name..."
msgstr "Fullt _namn ..."

#: addressbook/gui/contact-editor/contact-editor.glade.h:16
msgid "General"
msgstr "Allment"

#: addressbook/gui/contact-editor/contact-editor.glade.h:18
msgid ""
"If this person publishes free/busy or other calendar information on the "
"Internet, enter the address\n"
"of that information here."
msgstr ""

#: addressbook/gui/contact-editor/contact-editor.glade.h:21
msgid "New phone type"
msgstr "Ny telefontype"

#: addressbook/gui/contact-editor/contact-editor.glade.h:22
msgid "No_tes:"
msgstr "Mer_knadar:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:23
msgid "Organi_zation:"
msgstr "Organi_sasjon:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:24
msgid "P_rofession:"
msgstr "Y_rke:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:25
msgid "Phone Types"
msgstr "Telefontypar"

#: addressbook/gui/contact-editor/contact-editor.glade.h:27
msgid "S_pouse:"
msgstr "E_ktefelle"

#: addressbook/gui/contact-editor/contact-editor.glade.h:28
msgid "This is the _mailing address"
msgstr ""

#: addressbook/gui/contact-editor/contact-editor.glade.h:29
msgid "Wants to receive _HTML mail"
msgstr "Vil motta _HTML-post"

#: addressbook/gui/contact-editor/contact-editor.glade.h:31
#: calendar/gui/dialogs/alarm-page.glade.h:9
#: calendar/gui/dialogs/meeting-page.c:707 filter/filter.glade.h:8
#: mail/folder-browser.c:1478 mail/mail-config.glade.h:105
#: ui/evolution-calendar.xml.h:38 ui/evolution-mail-message.xml.h:95
#: ui/evolution-tasks.xml.h:18 ui/evolution.xml.h:35
msgid "_Delete"
msgstr "_Slett"

#: addressbook/gui/contact-editor/contact-editor.glade.h:32
msgid "_Job title:"
msgstr "_Jobb-tittel:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:33
msgid "_Manager's Name:"
msgstr "Na_mn på sjef:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:34
msgid "_Nickname:"
msgstr "Kalle_namn:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:35
msgid "_Office:"
msgstr "K_ontor:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:36
msgid "_Public Calendar URL:"
msgstr "_Offentleg kalendar-URL:"

#: addressbook/gui/contact-editor/contact-editor.glade.h:37
msgid "_Web page address:"
msgstr "_Nettsideaddresse"

#: addressbook/gui/contact-editor/e-contact-editor-confirm-delete.glade.h:1
msgid ""
"Are you sure you want\n"
"to delete this contact?"
msgstr ""
"Er du sikker på at du vil\n"
" slette denne kontakta?"

#: addressbook/gui/contact-editor/e-contact-editor-confirm-delete.glade.h:3
msgid "Delete Contact?"
msgstr "Slett kontakt?"

#: addressbook/gui/contact-editor/e-contact-editor.c:757
msgid "Category editor not available."
msgstr "Kategoriredigering ikkje tilgjengeleg."

#: addressbook/gui/contact-editor/e-contact-editor.c:764
msgid "This contact belongs to these categories:"
msgstr ""

#: addressbook/gui/contact-editor/e-contact-editor.c:978
msgid "Save Contact as VCard"
msgstr "Lagre kontakt som VKort"

#: addressbook/gui/contact-editor/e-contact-editor.c:1662
msgid "TTY/TDD"
msgstr "TTY/TDD"

#: addressbook/gui/contact-editor/e-contact-editor.c:2309
#, c-format
msgid "Could not find widget for a field: `%s'"
msgstr ""

#: addressbook/gui/contact-editor/e-contact-quick-add.c:298
msgid "Contact Quick-Add"
msgstr ""

#: addressbook/gui/contact-editor/e-contact-quick-add.c:300
msgid "Edit Full"
msgstr "Rediger full"

#: addressbook/gui/contact-editor/e-contact-quick-add.c:326
#: addressbook/gui/widgets/e-addressbook-view.c:961
msgid "Full Name"
msgstr "Fullt namn"

#: addressbook/gui/contact-editor/e-contact-quick-add.c:332
msgid "E-mail"
msgstr "E-post"

#. This is a filename. Translators take note.
#: addressbook/gui/contact-editor/e-contact-save-as.c:106
msgid "card.vcf"
msgstr "card.vcf"

#: addressbook/gui/contact-editor/e-contact-save-as.c:170
msgid "list"
msgstr "liste"

#: addressbook/gui/contact-editor/e-contact-save-as.c:201
#, c-format
msgid ""
"%s already exists\n"
"Do you want to overwrite it?"
msgstr ""
"%s eksisterar allereide\n"
"Vil du skrive over?"

#: addressbook/gui/contact-editor/fulladdr.glade.h:1
msgid "Address _2:"
msgstr "Adresse _2:"

#: addressbook/gui/contact-editor/fulladdr.glade.h:2
msgid "Check Address"
msgstr "Sjekk adresse"

#: addressbook/gui/contact-editor/fulladdr.glade.h:3
msgid "Countr_y:"
msgstr "_Land:"

#: addressbook/gui/contact-editor/fulladdr.glade.h:4
msgid "_Address:"
msgstr "_Adresse:"

#: addressbook/gui/contact-editor/fulladdr.glade.h:5
msgid "_City:"
msgstr "_Stad:"

#: addressbook/gui/contact-editor/fulladdr.glade.h:6
msgid "_PO Box:"
msgstr "_Postboks:"

#: addressbook/gui/contact-editor/fulladdr.glade.h:7
msgid "_State/Province:"
msgstr "_Stat/provins:"

#: addressbook/gui/contact-editor/fulladdr.glade.h:8
msgid "_ZIP Code:"
msgstr "_ZIP/Postnummer:"

#: addressbook/gui/contact-editor/fullname.glade.h:1
msgid "Check Full Name"
msgstr "Sjekk fullt namn"

#: addressbook/gui/contact-editor/fullname.glade.h:2
msgid "Dr."
msgstr "Dr."

#: addressbook/gui/contact-editor/fullname.glade.h:3
msgid "Esq."
msgstr ""

#: addressbook/gui/contact-editor/fullname.glade.h:4
msgid "I"
msgstr "I"

#: addressbook/gui/contact-editor/fullname.glade.h:5
msgid "II"
msgstr "II"

#: addressbook/gui/contact-editor/fullname.glade.h:6
msgid "III"
msgstr "III"

#: addressbook/gui/contact-editor/fullname.glade.h:7
msgid "Jr."
msgstr "Jr."

#: addressbook/gui/contact-editor/fullname.glade.h:8
msgid "Miss"
msgstr "Frøken"

#: addressbook/gui/contact-editor/fullname.glade.h:9
msgid "Mr."
msgstr "Hr."

#: addressbook/gui/contact-editor/fullname.glade.h:10
msgid "Mrs."
msgstr "Fru."

#: addressbook/gui/contact-editor/fullname.glade.h:11
msgid "Ms."
msgstr "Fr."

#: addressbook/gui/contact-editor/fullname.glade.h:12
msgid "Sr."
msgstr "Sr."

#: addressbook/gui/contact-editor/fullname.glade.h:13
msgid "_First:"
msgstr "_Førenamn:"

#: addressbook/gui/contact-editor/fullname.glade.h:14
msgid "_Last:"
msgstr "_Etternamn:"

#: addressbook/gui/contact-editor/fullname.glade.h:15
msgid "_Middle:"
msgstr "_Mellomnamn:"

#: addressbook/gui/contact-editor/fullname.glade.h:16
msgid "_Suffix:"
msgstr "E_tterstaving:"

#: addressbook/gui/contact-editor/fullname.glade.h:17
msgid "_Title:"
msgstr "_Tittel:"

#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:1
msgid "List _name:"
msgstr "Liste_namn:"

#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:2
msgid "Members"
msgstr "Medlemar"

#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:3
msgid "Type an email address or drag a contact into the list below:"
msgstr ""

#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:5
msgid "_Hide addresses when sending mail to this list"
msgstr ""

#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:6
#: calendar/gui/dialogs/recurrence-page.glade.h:12 filter/filter.glade.h:10
msgid "_Remove"
msgstr "Fje_rn"

#: addressbook/gui/contact-list-editor/contact-list-editor.glade.h:7
msgid "contact-list-editor"
msgstr "contact-list-editor"

#. Construct the app
#: addressbook/gui/contact-list-editor/e-contact-list-editor.c:234
msgid "Contact List Editor"
msgstr "Redigering av kontakter"

#: addressbook/gui/contact-list-editor/e-contact-list-editor.c:428
msgid "Save List as VCard"
msgstr "Lagre liste som VCard"

#: addressbook/gui/merging/e-card-duplicate-detected.glade.h:1
msgid "Add Anyway"
msgstr "Legg til uansett"

#: addressbook/gui/merging/e-card-duplicate-detected.glade.h:2
#: addressbook/gui/merging/e-card-merging-book-commit-duplicate-detected.glade.h:4
msgid "Duplicate Contact Detected"
msgstr "Duplikatkontakt funne"

#: addressbook/gui/merging/e-card-duplicate-detected.glade.h:3
msgid "New Contact:"
msgstr "Ny kontakt"

#: addressbook/gui/merging/e-card-duplicate-detected.glade.h:4
#, fuzzy
msgid "Original Contact:"
msgstr "Opprinneleg forfattar"

#: addressbook/gui/merging/e-card-duplicate-detected.glade.h:5
msgid ""
"The name or email address of this contact already exists\n"
"in this folder.  Would you like to add it anyway?"
msgstr ""

#: addressbook/gui/merging/e-card-merging-book-commit-duplicate-detected.glade.h:1
msgid "Change Anyway"
msgstr "Endre uansett"

#: addressbook/gui/merging/e-card-merging-book-commit-duplicate-detected.glade.h:2
#, fuzzy
msgid "Changed Contact:"
msgstr "Endra skrift"

#: addressbook/gui/merging/e-card-merging-book-commit-duplicate-detected.glade.h:3
#, fuzzy
msgid "Conflicting Contact:"
msgstr "Koplar til: "

#: addressbook/gui/merging/e-card-merging-book-commit-duplicate-detected.glade.h:5
msgid ""
"The changed email or name of this contact already\n"
"exists in this folder.  Would you like to add it anyway?"
msgstr ""

#: addressbook/gui/search/e-addressbook-search-dialog.c:145
#: widgets/misc/e-filter-bar.c:238
msgid "Advanced Search"
msgstr "Avansert søk"

#: addressbook/gui/search/e-addressbook-search-dialog.c:151
#: mail/mail-search.c:263
msgid "Search"
msgstr "Søk"

#: addressbook/gui/widgets/e-addressbook-model.c:127
msgid "No cards"
msgstr "Ingen kort"

#: addressbook/gui/widgets/e-addressbook-model.c:130
msgid "1 card"
msgstr "1 kort"

#: addressbook/gui/widgets/e-addressbook-model.c:133
#, c-format
msgid "%d cards"
msgstr "%d kort"

#: addressbook/gui/widgets/e-addressbook-reflow-adapter.c:141
#: addressbook/gui/widgets/e-addressbook-reflow-adapter.c:278
#: addressbook/gui/widgets/e-addressbook-view.c:734
#: addressbook/gui/widgets/e-addressbook-view.c:834
#: addressbook/gui/widgets/e-addressbook-view.c:1516
#: ui/evolution-addressbook.xml.h:19
msgid "Save as VCard"
msgstr "Lagre som VKort"

#: addressbook/gui/widgets/e-addressbook-reflow-adapter.c:277
#: ui/evolution-message-composer.xml.h:13
msgid "Open"
msgstr "Opne"

#: addressbook/gui/widgets/e-addressbook-reflow-adapter.c:279
#: addressbook/gui/widgets/e-addressbook-view.c:835
#: ui/evolution-addressbook.xml.h:10
msgid "Forward Contact"
msgstr "Vidaresend kontakt"

#: addressbook/gui/widgets/e-addressbook-reflow-adapter.c:280
#: addressbook/gui/widgets/e-addressbook-view.c:836
msgid "Send Message to Contact"
msgstr "Send melding til kontakt"

#: addressbook/gui/widgets/e-addressbook-reflow-adapter.c:281
#: addressbook/gui/widgets/e-addressbook-view.c:837
#: ui/evolution-addressbook.xml.h:16 ui/evolution-comp-editor.xml.h:8
#: ui/evolution-contact-editor.xml.h:4 ui/evolution-mail-message.xml.h:67
#: ui/my-evolution.xml.h:2
msgid "Print"
msgstr "Skriv ut"

#: addressbook/gui/widgets/e-addressbook-reflow-adapter.c:283
#: addressbook/gui/widgets/e-addressbook-view.c:839
msgid "Print Envelope"
msgstr "Skriv ut konvolutt"

#: addressbook/gui/widgets/e-addressbook-reflow-adapter.c:285
#: addressbook/gui/widgets/e-addressbook-view.c:841
#: ui/evolution-addressbook.xml.h:6 ui/evolution-tasks.xml.h:7
msgid "Cut"
msgstr "Klipp ut"

#: addressbook/gui/widgets/e-addressbook-reflow-adapter.c:286
#: addressbook/gui/widgets/e-addressbook-view.c:842
#: ui/evolution-addressbook.xml.h:2 ui/evolution-mail-message.xml.h:6
#: ui/evolution-tasks.xml.h:3
msgid "Copy"
msgstr "Kopier"

#: addressbook/gui/widgets/e-addressbook-reflow-adapter.c:287
#: addressbook/gui/widgets/e-addressbook-view.c:843
#: ui/evolution-addressbook.xml.h:13 ui/evolution-tasks.xml.h:13
msgid "Paste"
msgstr "Lim inn"

#: addressbook/gui/widgets/e-addressbook-reflow-adapter.c:288
#: addressbook/gui/widgets/e-addressbook-view.c:844 filter/libfilter-i18n.h:9
#: mail/mail-accounts.c:296 ui/evolution-addressbook.xml.h:8
#: ui/evolution-comp-editor.xml.h:4 ui/evolution-contact-editor.xml.h:2
#: ui/evolution-contact-list-editor.xml.h:2 ui/evolution-mail-message.xml.h:18
msgid "Delete"
msgstr "Slett"

#: addressbook/gui/widgets/e-addressbook-table-adapter.c:140
#: addressbook/gui/widgets/e-addressbook-util.c:85
#: addressbook/gui/widgets/e-minicard.c:475
msgid "Error modifying card"
msgstr "Feil ved endringa av kort"

#: addressbook/gui/widgets/e-addressbook-util.c:33
#: shell/evolution-shell-component.c:1020
msgid "Success"
msgstr "Vellukka"

#: addressbook/gui/widgets/e-addressbook-util.c:34
#: camel/providers/imap/camel-imap-command.c:275
#: camel/providers/imap/camel-imap-command.c:363 shell/e-shell.c:1895
#: shell/e-storage.c:528 shell/evolution-shell-component.c:1057
msgid "Unknown error"
msgstr "Ukjend feil"

#: addressbook/gui/widgets/e-addressbook-util.c:35
#, fuzzy
msgid "Repository offline"
msgstr "depot i vcs"

#: addressbook/gui/widgets/e-addressbook-util.c:36 shell/e-storage.c:516
#: shell/evolution-shell-component.c:1048
msgid "Permission denied"
msgstr "Nekta tilgang"

#: addressbook/gui/widgets/e-addressbook-util.c:37
msgid "Card not found"
msgstr "Fann ikkje kort"

#: addressbook/gui/widgets/e-addressbook-util.c:38
msgid "Card ID already exists"
msgstr "Kort-id eksisterar allereide"

#: addressbook/gui/widgets/e-addressbook-util.c:39
msgid "Protocol not supported"
msgstr "Protokollen er ikkje støtta"

#: addressbook/gui/widgets/e-addressbook-util.c:40
#: calendar/gui/calendar-model.c:763 calendar/gui/calendar-model.c:1197
#: calendar/gui/dialogs/task-details-page.glade.h:3
#: calendar/gui/e-calendar-table.c:482 calendar/gui/print.c:2255
#: camel/camel-service.c:610 camel/camel-service.c:646
msgid "Cancelled"
msgstr "Avbroten"

#: addressbook/gui/widgets/e-addressbook-util.c:41
msgid "Other error"
msgstr "Anna feil"

#: addressbook/gui/widgets/e-addressbook-util.c:57
#: calendar/gui/dialogs/save-comp.c:50
msgid "Do you want to save changes?"
msgstr "Vil du lagre endringar?"

#: addressbook/gui/widgets/e-addressbook-util.c:76
msgid "Error adding list"
msgstr "Feil ved tillegging av liste"

#: addressbook/gui/widgets/e-addressbook-util.c:76
msgid "Error adding card"
msgstr "Feil ved tilleggjing av kort"

#: addressbook/gui/widgets/e-addressbook-util.c:85
msgid "Error modifying list"
msgstr "Feil ved endring av liste"

#: addressbook/gui/widgets/e-addressbook-util.c:95
msgid "Error removing list"
msgstr "Feil ved fjerning av liste"

#: addressbook/gui/widgets/e-addressbook-util.c:95
#: addressbook/gui/widgets/e-addressbook-view.c:1389
msgid "Error removing card"
msgstr "Feil ved fjerning av kort"

#: addressbook/gui/widgets/e-addressbook-util.c:202
#, fuzzy
msgid "Display Cards?"
msgstr "Vis"

#: addressbook/gui/widgets/e-addressbook-util.c:203
#, fuzzy
msgid "Display Cards"
msgstr "Vis"

#: addressbook/gui/widgets/e-addressbook-util.c:207
#, c-format
msgid ""
"You have requested that %d cards be cards. This will cause %d new windows to "
"be\n"
"displayed on your screen. Do you really want to display all of these cards?"
msgstr ""

#. Translators: put here a list of labels you want to see on buttons in
#. addressbook. You may use any character to separate labels but it must
#. also be placed at the begining ot the string
#: addressbook/gui/widgets/e-addressbook-view.c:404
msgid ",123,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z"
msgstr ",123,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,æ,ø,å"

#. Translators: put here a list of characters that correspond to buttons
#. in addressbook. You may use any character to separate labels but it
#. must also be placed at the begining ot the string.
#. Use lower case letters if possible.
#: addressbook/gui/widgets/e-addressbook-view.c:409
msgid ",0,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z"
msgstr ",0,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,æ,ø,å"

#: addressbook/gui/widgets/e-addressbook-view.c:959
msgid "* Click here to add a contact *"
msgstr "* Trykk her for å legge til ein kontakt *"

#: addressbook/gui/widgets/e-addressbook-view.c:963
msgid "Primary Phone"
msgstr "Primær telefon"

#: addressbook/gui/widgets/e-addressbook-view.c:964
msgid "Assistant Phone"
msgstr "Telefon til assistent"

#: addressbook/gui/widgets/e-addressbook-view.c:965
msgid "Business Phone"
msgstr "Firma-telefon"

#: addressbook/gui/widgets/e-addressbook-view.c:966
msgid "Callback Phone"
msgstr "Tilbakering telefon"

#: addressbook/gui/widgets/e-addressbook-view.c:967
msgid "Company Phone"
msgstr "Firmatelefon"

#: addressbook/gui/widgets/e-addressbook-view.c:968
msgid "Home Phone"
msgstr "Heime-telefon"

#: addressbook/gui/widgets/e-addressbook-view.c:970
msgid "Business Address"
msgstr "Firma-adresse"

#: addressbook/gui/widgets/e-addressbook-view.c:971
msgid "Home Address"
msgstr "Heime-adresse"

#: addressbook/gui/widgets/e-addressbook-view.c:972
msgid "Mobile Phone"
msgstr "Mobiltelefon"

#: addressbook/gui/widgets/e-addressbook-view.c:973
msgid "Car Phone"
msgstr "Bil-telefon"

#: addressbook/gui/widgets/e-addressbook-view.c:976
msgid "Business Phone 2"
msgstr "Firma-telefon 2"

#: addressbook/gui/widgets/e-addressbook-view.c:977
msgid "Home Phone 2"
msgstr "Heime-telefon 2"

#: addressbook/gui/widgets/e-addressbook-view.c:979
msgid "Other Phone"
msgstr "Alternativ telefon"

#: addressbook/gui/widgets/e-addressbook-view.c:985
msgid "Other Address"
msgstr "Alternativ adresse"

#: addressbook/gui/widgets/e-minicard-control.c:185
#, c-format
msgid "and %d other cards."
msgstr "og %d andre kort."

#: addressbook/gui/widgets/e-minicard-control.c:187
msgid "and one other card."
msgstr ""

#: addressbook/gui/widgets/e-minicard-control.c:316
msgid "Save in addressbook"
msgstr "Lagre i addressebok"

#: addressbook/gui/widgets/e-minicard-view.c:150
msgid ""
"\n"
"\n"
"There are no items to show in this view\n"
"\n"
"Double-click here to create a new Contact."
msgstr ""

#: addressbook/gui/widgets/gal-view-factory-minicard.c:26
msgid "Card View"
msgstr "Kort-visning"

#: addressbook/printing/e-contact-print-envelope.c:215
#: addressbook/printing/e-contact-print-envelope.c:236
msgid "Print envelope"
msgstr "Skriv ut konvolutt"

#: addressbook/printing/e-contact-print.c:1115
msgid "Print cards"
msgstr "Skriv ut kort"

#: addressbook/printing/e-contact-print.c:1175
#: addressbook/printing/e-contact-print.c:1197
msgid "Print card"
msgstr "Skriv ut kort"

#: addressbook/printing/e-contact-print.glade.h:1
msgid "10 pt. Tahoma"
msgstr "10 pt. Tahoma"

#: addressbook/printing/e-contact-print.glade.h:2
msgid "8 pt. Tahoma"
msgstr "8 pt. Tahoma"

#: addressbook/printing/e-contact-print.glade.h:3
msgid "Blank forms at end:"
msgstr ""

#: addressbook/printing/e-contact-print.glade.h:4
msgid "Body"
msgstr "Kropp"

#: addressbook/printing/e-contact-print.glade.h:5
msgid "Bottom:"
msgstr "Botn:"

#: addressbook/printing/e-contact-print.glade.h:6
msgid "Dimensions:"
msgstr "Mål:"

#: addressbook/printing/e-contact-print.glade.h:7
msgid "F_ont..."
msgstr "_Skrifttype ..."

#: addressbook/printing/e-contact-print.glade.h:8
msgid "Fonts"
msgstr "Skrifttyper"

#: addressbook/printing/e-contact-print.glade.h:9
msgid "Footer:"
msgstr "Botntekst:"

#: addressbook/printing/e-contact-print.glade.h:10
msgid "Format"
msgstr "Format"

#: addressbook/printing/e-contact-print.glade.h:11
msgid "Header"
msgstr "Topptekst"

#: addressbook/printing/e-contact-print.glade.h:12
msgid "Header/Footer"
msgstr "Topp-/botntekst"

#: addressbook/printing/e-contact-print.glade.h:13
msgid "Headings"
msgstr "Overskrifter"

#: addressbook/printing/e-contact-print.glade.h:14
msgid "Headings for each letter"
msgstr "Overskrifter for kvar bokstav"

#: addressbook/printing/e-contact-print.glade.h:15
msgid "Height:"
msgstr "Høgd:"

#: addressbook/printing/e-contact-print.glade.h:16
msgid "Immediately follow each other"
msgstr ""

#: addressbook/printing/e-contact-print.glade.h:17
msgid "Include:"
msgstr "Inkluder:"

#: addressbook/printing/e-contact-print.glade.h:18
msgid "Landscape"
msgstr "Liggjande"

#: addressbook/printing/e-contact-print.glade.h:19
msgid "Left:"
msgstr "Venstre:"

#: addressbook/printing/e-contact-print.glade.h:20
msgid "Letter tabs on side"
msgstr ""

#: addressbook/printing/e-contact-print.glade.h:21
msgid "Margins"
msgstr "Margar"

#: addressbook/printing/e-contact-print.glade.h:22
msgid "Number of columns:"
msgstr "Tal på kolonnar:"

#: addressbook/printing/e-contact-print.glade.h:23
msgid "Options"
msgstr "Val"

#: addressbook/printing/e-contact-print.glade.h:24
msgid "Orientation"
msgstr "Retning"

#: addressbook/printing/e-contact-print.glade.h:25
#: my-evolution/Locations.h:1672
msgid "Page"
msgstr "Side"

#: addressbook/printing/e-contact-print.glade.h:26
msgid "Page Setup:"
msgstr "Sideoppsett"

#: addressbook/printing/e-contact-print.glade.h:27
msgid "Paper"
msgstr "Papir"

#: addressbook/printing/e-contact-print.glade.h:28
msgid "Paper source:"
msgstr "Papirkjelde:"

#: addressbook/printing/e-contact-print.glade.h:29
msgid "Portrait"
msgstr "Ståande"

#: addressbook/printing/e-contact-print.glade.h:30
msgid "Preview:"
msgstr "Førehandsvising:"

#: addressbook/printing/e-contact-print.glade.h:31
msgid "Print using gray shading"
msgstr "Skriv med grånyansar"

#: addressbook/printing/e-contact-print.glade.h:32
msgid "Reverse on even pages"
msgstr "Reversér på ulike sider"

#: addressbook/printing/e-contact-print.glade.h:33
msgid "Right:"
msgstr "Høgre:"

#: addressbook/printing/e-contact-print.glade.h:34
msgid "Sections:"
msgstr "Seksjonar:"

#: addressbook/printing/e-contact-print.glade.h:35
msgid "Shading"
msgstr "Skuggelegging"

#: addressbook/printing/e-contact-print.glade.h:36
msgid "Size:"
msgstr "Storleik:"

#: addressbook/printing/e-contact-print.glade.h:37
msgid "Start on a new page"
msgstr "Start på ei ny side"

#: addressbook/printing/e-contact-print.glade.h:38
msgid "Style name:"
msgstr "Stilnamn:"

#: addressbook/printing/e-contact-print.glade.h:39
msgid "Top:"
msgstr "Topp:"

#: addressbook/printing/e-contact-print.glade.h:40
msgid "Type:"
msgstr "Type:"

#: addressbook/printing/e-contact-print.glade.h:41
msgid "Width:"
msgstr "Breidd:"

#: addressbook/printing/e-contact-print.glade.h:42
msgid "_Font..."
msgstr "_Skrifttype ..."

#: calendar/cal-util/cal-component.c:1207
msgid "Untitled appointment"
msgstr "Avtale utan namn"

#: calendar/cal-util/cal-util.c:498 calendar/cal-util/cal-util.c:520
#: calendar/gui/dialogs/task-details-page.glade.h:6
#: calendar/gui/e-calendar-table.c:406 mail/message-list.c:679
msgid "High"
msgstr "Høg"

#: calendar/cal-util/cal-util.c:500 calendar/cal-util/cal-util.c:522
#: calendar/gui/calendar-model.c:1711
#: calendar/gui/dialogs/task-details-page.glade.h:9
#: calendar/gui/e-calendar-table.c:407 mail/message-list.c:678
msgid "Normal"
msgstr "Vanleg"

#: calendar/cal-util/cal-util.c:502 calendar/cal-util/cal-util.c:524
#: calendar/gui/dialogs/task-details-page.glade.h:8
#: calendar/gui/e-calendar-table.c:408 mail/message-list.c:677
msgid "Low"
msgstr "Lav"

#. An empty string is the same as 'None'.
#: calendar/cal-util/cal-util.c:518
#: calendar/gui/dialogs/task-details-page.glade.h:13
#: calendar/gui/e-calendar-table.c:409
msgid "Undefined"
msgstr "Udefinert"

#: calendar/conduits/calendar/calendar-conduit.c:1150
#: calendar/conduits/todo/todo-conduit.c:770
msgid "Error while communicating with calendar server"
msgstr "Feil ved kommunikasjon mot kalendartenaren"

#: calendar/conduits/calendar/calendar-conduit.c:1297
#: calendar/conduits/calendar/calendar-conduit.c:1300
#, fuzzy
msgid "Could not read pilot's Calendar application block"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: calendar/conduits/todo/todo-conduit.c:886
#: calendar/conduits/todo/todo-conduit.c:889
msgid "Could not read pilot's ToDo application block"
msgstr ""

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:1
msgid "A Bonobo control which displays a task list."
msgstr ""

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:2
msgid "A sample Bonobo control which displays an calendar."
msgstr ""

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:3
#, fuzzy
msgid "Evolution calendar executive summary component."
msgstr "Kan ikkje initialisera lokale variablar"

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:4
#, fuzzy
msgid "Evolution calendar iTip/iMip viewer"
msgstr "Tilgjengelege lenkjer:"

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:5
msgid "Evolution component for handling the calendar."
msgstr "Evolutionkomponent for handtere kalendaren."

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:6
#, fuzzy
msgid "Factory for the Calendar Summary component."
msgstr "Øydelagd oppsettfil."

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:7
#, fuzzy
msgid "Factory for the Evolution Tasks control"
msgstr "Øydelagd oppsettfil."

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:8
#, fuzzy
msgid "Factory for the calendar iTip view control"
msgstr "Øydelagd oppsettfil."

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:9
#, fuzzy
msgid "Factory for the sample Calendar control"
msgstr "Øydelagd oppsettfil."

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:10
#, fuzzy
msgid "Factory to centralize calendar component editor dialogs"
msgstr "Øydelagd oppsettfil."

#: calendar/gui/GNOME_Evolution_Calendar.oaf.in.h:11
#, fuzzy
msgid "Factory to create a component editor factory"
msgstr "Øydelagd oppsettfil."

#: calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.oaf.in.h:1
msgid "Alarm notification service"
msgstr ""

#: calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.oaf.in.h:2
msgid "Factory for the alarm notification service"
msgstr ""

#: calendar/gui/alarm-notify/alarm-notify-dialog.c:216
msgid "Starting:"
msgstr "Startar:"

#: calendar/gui/alarm-notify/alarm-notify-dialog.c:218
msgid "Ending:"
msgstr "Slutt:"

#: calendar/gui/alarm-notify/alarm-notify-dialog.c:231
msgid "invalid time"
msgstr "ugyldig tid"

#: calendar/gui/alarm-notify/alarm-notify-dialog.c:276
msgid "Evolution Alarm"
msgstr "Evolution alarm"

#: calendar/gui/alarm-notify/alarm-notify-dialog.c:371
#, c-format
msgid "Alarm on %s"
msgstr "Alarm på %s"

#: calendar/gui/alarm-notify/alarm-notify.glade.h:1
#: ui/evolution-comp-editor.xml.h:1
msgid "C_lose"
msgstr "_Lukk"

#: calendar/gui/alarm-notify/alarm-notify.glade.h:2
#, fuzzy
msgid "Snoo_ze"
msgstr "Spooler"

#: calendar/gui/alarm-notify/alarm-notify.glade.h:3
#, fuzzy
msgid "Snooze time (minutes)"
msgstr "Låg grense (minutt):"

#: calendar/gui/alarm-notify/alarm-notify.glade.h:4
msgid "_Edit appointment"
msgstr "R_edigér avtale"

#: calendar/gui/alarm-notify/alarm-queue.c:675
msgid "No description available."
msgstr "Inga skildring tilgjengeleg"

#: calendar/gui/alarm-notify/alarm-queue.c:735
msgid ""
"Evolution does not support calendar reminders with\n"
"email notifications yet, but this reminder was\n"
"configured to send an email.  Evolution will display\n"
"a normal reminder dialog box instead."
msgstr ""

#: calendar/gui/alarm-notify/alarm-queue.c:753
#: calendar/gui/tasks-control.c:426 mail/mail-callbacks.c:2235
#: widgets/misc/e-messagebox.c:159
msgid "Warning"
msgstr "Åtvaring"

#: calendar/gui/alarm-notify/alarm-queue.c:758
#, c-format
msgid ""
"An Evolution Calendar reminder is about to trigger. This reminder is "
"configured to run the following program:\n"
"\n"
"        %s\n"
"\n"
"Are you sure you want to run this program?"
msgstr ""

#: calendar/gui/alarm-notify/alarm-queue.c:772
#, fuzzy
msgid "Do not ask me about this program again."
msgstr "Ikkje spør igjen"

#: calendar/gui/alarm-notify/notify-main.c:166 calendar/gui/main.c:57
#, fuzzy
msgid "Could not initialize GNOME"
msgstr "Kunne ikkje initiere Bonobo"

#: calendar/gui/alarm-notify/notify-main.c:181
#, fuzzy
msgid "Could not create the alarm notify service"
msgstr ""
"Kunne ikkje laga mellombels fil\n"
"%1:\n"
"%2"

#: calendar/gui/alarm-notify/notify-main.c:186
#, fuzzy
msgid "Could not create the alarm notify service factory"
msgstr ""
"Kunne ikkje laga mellombels fil\n"
"%1:\n"
"%2"

#: calendar/gui/cal-search-bar.c:56
msgid "Summary contains"
msgstr "Samandrag inneheld"

#: calendar/gui/cal-search-bar.c:57
msgid "Description contains"
msgstr "Skildring inneheld"

#: calendar/gui/cal-search-bar.c:58
msgid "Comment contains"
msgstr "Merknad inneheld"

#: calendar/gui/cal-search-bar.c:416 mail/mail-ops.c:1081
msgid "Unmatched"
msgstr "Ikkje truffe"

#: calendar/gui/calendar-commands.c:446
#, fuzzy
msgid "%A %d %B %Y"
msgstr "%1 bit %2 %3"

#. strftime format %a = abbreviated weekday name, %d = day of month,
#. %b = abbreviated month name. Don't use any other specifiers.
#: calendar/gui/calendar-commands.c:449 calendar/gui/e-day-view-top-item.c:288
#: calendar/gui/e-day-view.c:1403 calendar/gui/e-week-view-main-item.c:333
msgid "%a %d %b"
msgstr "%d. %a %b"

#: calendar/gui/calendar-commands.c:451 calendar/gui/calendar-commands.c:456
#: calendar/gui/calendar-commands.c:458
msgid "%a %d %b %Y"
msgstr "%d. %a %b %Y"

#: calendar/gui/calendar-commands.c:469 calendar/gui/calendar-commands.c:476
#: calendar/gui/calendar-commands.c:482 calendar/gui/calendar-commands.c:484
msgid "%d %B %Y"
msgstr "%d. %B %Y"

#. strftime format %d = day of month, %B = full
#. month name. You can change the order but don't
#. change the specifiers or add anything.
#: calendar/gui/calendar-commands.c:474
#: calendar/gui/e-week-view-main-item.c:341 calendar/gui/print.c:1445
msgid "%d %B"
msgstr "%d. %b"

#: calendar/gui/calendar-commands.c:820
msgid ""
"Could not create the calendar view.  Please check your ORBit and OAF setup."
msgstr ""

#: calendar/gui/calendar-model.c:418 calendar/gui/calendar-model.c:988
#: calendar/gui/e-calendar-table.c:385
msgid "Private"
msgstr "Privat"

#: calendar/gui/calendar-model.c:421 calendar/gui/calendar-model.c:990
#: calendar/gui/e-calendar-table.c:386
msgid "Confidential"
msgstr "Konfidensiell"

#: calendar/gui/calendar-model.c:424 calendar/gui/e-calendar-table.c:384
msgid "Public"
msgstr "Offentleg"

#: calendar/gui/calendar-model.c:536
msgid "N"
msgstr "N"

#: calendar/gui/calendar-model.c:536
msgid "S"
msgstr "S"

#: calendar/gui/calendar-model.c:538
msgid "E"
msgstr "E"

#: calendar/gui/calendar-model.c:538
msgid "W"
msgstr "V"

#: calendar/gui/calendar-model.c:603 calendar/gui/calendar-model.c:1147
#: calendar/gui/e-calendar-table.c:458
msgid "Free"
msgstr "Ledig"

#: calendar/gui/calendar-model.c:605 calendar/gui/e-calendar-table.c:459
#: calendar/gui/e-meeting-time-sel.c:432
#: shell/evolution-shell-component.c:1042
msgid "Busy"
msgstr "Oppteke"

#: calendar/gui/calendar-model.c:754 calendar/gui/calendar-model.c:1191
#: calendar/gui/dialogs/task-details-page.glade.h:10
#: calendar/gui/e-calendar-table.c:479 calendar/gui/print.c:2246
msgid "Not Started"
msgstr "Ikkje starta"

#: calendar/gui/calendar-model.c:757 calendar/gui/calendar-model.c:1193
#: calendar/gui/dialogs/task-details-page.glade.h:7
#: calendar/gui/e-calendar-table.c:480 calendar/gui/print.c:2249
msgid "In Progress"
msgstr "Under arbeid"

#: calendar/gui/calendar-model.c:760 calendar/gui/calendar-model.c:1195
#: calendar/gui/dialogs/task-details-page.glade.h:4
#: calendar/gui/e-calendar-table.c:481 calendar/gui/e-meeting-model.c:329
#: calendar/gui/e-meeting-model.c:352 calendar/gui/print.c:2252
msgid "Completed"
msgstr "Ferdig"

#: calendar/gui/calendar-model.c:1052
msgid ""
"The geographical position must be entered in the format: \n"
"\n"
"45.436845,125.862501"
msgstr ""

#. An empty string is the same as 'None'.
#: calendar/gui/calendar-model.c:1189 calendar/gui/dialogs/meeting-page.c:312
#: calendar/gui/dialogs/meeting-page.glade.h:1 mail/mail-account-gui.c:1494
#: mail/mail-accounts.c:148 mail/mail-accounts.c:405
#: mail/mail-config.glade.h:55
#: widgets/e-timezone-dialog/e-timezone-dialog.c:202
#: widgets/misc/e-cell-date-edit.c:250 widgets/misc/e-dateedit.c:452
#: widgets/misc/e-dateedit.c:1488 widgets/misc/e-dateedit.c:1603
msgid "None"
msgstr "Ingen"

#: calendar/gui/calendar-model.c:1713
msgid "Recurring"
msgstr "Repeterande"

#: calendar/gui/calendar-model.c:1715
msgid "Assigned"
msgstr "Tildelt"

#: calendar/gui/calendar-model.c:1721 calendar/gui/e-meeting-model.c:301
#: calendar/gui/e-meeting-model.c:311 calendar/gui/e-meeting-model.c:536
#: calendar/gui/e-meeting-model.c:810
msgid "Yes"
msgstr "Ja"

#: calendar/gui/calendar-model.c:1721 calendar/gui/e-meeting-model.c:313
#: calendar/gui/e-meeting-model.c:811
msgid "No"
msgstr "Nei"

#. No time range is set, so don't start a query
#: calendar/gui/calendar-model.c:1984 calendar/gui/e-day-view.c:1677
#: calendar/gui/e-week-view.c:1188
msgid "Searching"
msgstr "Søker"

#: calendar/gui/calendar-view-factory.c:148 views/calendar/galview.xml.h:1
msgid "Day View"
msgstr "Dagsvisning"

#: calendar/gui/calendar-view-factory.c:151 views/calendar/galview.xml.h:4
msgid "Work Week View"
msgstr "Arbeidsvekevisning"

#: calendar/gui/calendar-view-factory.c:154 views/calendar/galview.xml.h:3
msgid "Week View"
msgstr "Vekesvisning"

#: calendar/gui/calendar-view-factory.c:157 views/calendar/galview.xml.h:2
msgid "Month View"
msgstr "Månadsvising"

#: calendar/gui/component-factory.c:63 my-evolution/my-evolution.glade.h:7
#: shell/e-local-storage.c:171 shell/e-shortcuts.c:1055
msgid "Calendar"
msgstr "Kalender"

#: calendar/gui/component-factory.c:64
msgid "Folder containing appointments and events"
msgstr "Mappe inneheld avtaler og hendingar"

#: calendar/gui/component-factory.c:68 calendar/gui/print.c:1733
#: my-evolution/e-summary-tasks.c:240 my-evolution/e-summary-tasks.c:257
#: shell/e-local-storage.c:177 shell/e-shortcuts.c:1058
#: views/tasks/galview.xml.h:1
msgid "Tasks"
msgstr "Oppgåver"

#: calendar/gui/component-factory.c:69
msgid "Folder containing to-do items"
msgstr "Mappe inneheld huskeliste"

#: calendar/gui/component-factory.c:642 ui/evolution-calendar.xml.h:7
msgid "Create a new appointment"
msgstr "Lag ein ny avtale"

#: calendar/gui/component-factory.c:643 calendar/gui/e-day-view.c:3525
msgid "New _Appointment"
msgstr "Ny _avtale"

#: calendar/gui/component-factory.c:648 ui/evolution-calendar.xml.h:8
#: ui/evolution-tasks.xml.h:6
msgid "Create a new task"
msgstr "Opprett ei ny oppgåve"

#: calendar/gui/component-factory.c:649
msgid "New _Task"
msgstr "Ny oppgåve"

#: calendar/gui/control-factory.c:127
#, fuzzy
msgid "The URI that the calendar will display"
msgstr "Viser korleis datoverdiar vert viste."

#: calendar/gui/dialogs/alarm-options.c:359
msgid "Audio Alarm Options"
msgstr "Val for lydlarm"

#: calendar/gui/dialogs/alarm-options.c:368
msgid "Message Alarm Options"
msgstr "Eigenskapar meldingsalarm"

#: calendar/gui/dialogs/alarm-options.c:377
msgid "Mail Alarm Options"
msgstr "Eigenskapar for e-postalam"

#: calendar/gui/dialogs/alarm-options.c:386
#, fuzzy
msgid "Program Alarm Options"
msgstr "Programplasseringar"

#: calendar/gui/dialogs/alarm-options.c:395
#, fuzzy
msgid "Unknown Alarm Options"
msgstr "Kjende program"

#: calendar/gui/dialogs/alarm-options.glade.h:1
msgid "Alarm Repeat"
msgstr "Alarmen repeterar"

#: calendar/gui/dialogs/alarm-options.glade.h:2
msgid "Message to Display"
msgstr "Melding som skal visast"

#: calendar/gui/dialogs/alarm-options.glade.h:3
msgid "Play sound:"
msgstr "Spel lyd:"

#: calendar/gui/dialogs/alarm-options.glade.h:4
msgid "Repeat the alarm"
msgstr "Repeter alarmen"

#: calendar/gui/dialogs/alarm-options.glade.h:5
msgid "Run program:"
msgstr "Køyr program:"

#: calendar/gui/dialogs/alarm-options.glade.h:6
msgid ""
"This is an email reminder, but Evolution does not yet support this kind of "
"reminders.  You will not be able to edit the options for this reminder."
msgstr ""

#: calendar/gui/dialogs/alarm-options.glade.h:7
msgid "With these arguments:"
msgstr "Med desse argumenta:"

#: calendar/gui/dialogs/alarm-options.glade.h:8 filter/filter-datespec.c:83
msgid "days"
msgstr "dagar"

#: calendar/gui/dialogs/alarm-options.glade.h:9
#, fuzzy
msgid "extra times every"
msgstr "Oppdater kvart"

#: calendar/gui/dialogs/alarm-options.glade.h:10 filter/filter-datespec.c:84
msgid "hours"
msgstr "timar"

#: calendar/gui/dialogs/alarm-options.glade.h:11
#: executive-summary/test-service/rdf-summary.c:806
#: filter/filter-datespec.c:85
msgid "minutes"
msgstr "minutt"

#: calendar/gui/dialogs/alarm-page.c:309
#, c-format
msgid "%d days"
msgstr "%d dagar"

#: calendar/gui/dialogs/alarm-page.c:312
msgid "1 day"
msgstr "1 dag"

#: calendar/gui/dialogs/alarm-page.c:317
#, c-format
msgid "%d weeks"
msgstr "%d veker"

#: calendar/gui/dialogs/alarm-page.c:320
msgid "1 week"
msgstr "1 veke"

#: calendar/gui/dialogs/alarm-page.c:325
#, c-format
msgid "%d hours"
msgstr "%d timar"

#: calendar/gui/dialogs/alarm-page.c:328
msgid "1 hour"
msgstr "1 time"

#: calendar/gui/dialogs/alarm-page.c:333
#, c-format
msgid "%d minutes"
msgstr "%d minutt"

#: calendar/gui/dialogs/alarm-page.c:336
msgid "1 minute"
msgstr "1 minutt"

#: calendar/gui/dialogs/alarm-page.c:341
#, c-format
msgid "%d seconds"
msgstr "%d sekund"

#: calendar/gui/dialogs/alarm-page.c:344
msgid "1 second"
msgstr "1 sekund"

#: calendar/gui/dialogs/alarm-page.c:373
#: calendar/gui/dialogs/alarm-page.glade.h:4
msgid "Play a sound"
msgstr "Spel ein lyd"

#: calendar/gui/dialogs/alarm-page.c:377
#: calendar/gui/dialogs/alarm-page.glade.h:3
msgid "Display a message"
msgstr "Vis ei melding"

#: calendar/gui/dialogs/alarm-page.c:381
msgid "Send an email"
msgstr "Send ein e-post"

#: calendar/gui/dialogs/alarm-page.c:385
#: calendar/gui/dialogs/alarm-page.glade.h:6
msgid "Run a program"
msgstr "Køyr eit program"

#: calendar/gui/dialogs/alarm-page.c:391
msgid "Unknown action to be performed"
msgstr "Ukjent handling som skal utførast"

#: calendar/gui/dialogs/alarm-page.c:403
#, c-format
msgid "%s %s before the start of the appointment"
msgstr "%s %s før byrjing på avtalen"

#: calendar/gui/dialogs/alarm-page.c:406
#, c-format
msgid "%s %s after the start of the appointment"
msgstr "%s %s etter byrjinga på avtalen"

#: calendar/gui/dialogs/alarm-page.c:411
#, fuzzy, c-format
msgid "%s at the start of the appointment"
msgstr "&Slett avtale"

#: calendar/gui/dialogs/alarm-page.c:420
#, fuzzy, c-format
msgid "%s %s before the end of the appointment"
msgstr "&Slett avtale"

#: calendar/gui/dialogs/alarm-page.c:423
#, fuzzy, c-format
msgid "%s %s after the end of the appointment"
msgstr "&Slett avtale"

#: calendar/gui/dialogs/alarm-page.c:428
#, fuzzy, c-format
msgid "%s at the end of the appointment"
msgstr "&Slett avtale"

#: calendar/gui/dialogs/alarm-page.c:452
#, c-format
msgid "%s at %s"
msgstr "%s %s"

#: calendar/gui/dialogs/alarm-page.c:458
#, c-format
msgid "%s for an unknown trigger type"
msgstr ""

#: calendar/gui/dialogs/alarm-page.glade.h:1
#: calendar/gui/dialogs/recurrence-page.glade.h:2
msgid "Basics"
msgstr "Enkel"

#: calendar/gui/dialogs/alarm-page.glade.h:2
#: calendar/gui/dialogs/recurrence-page.glade.h:3
msgid "Date/Time:"
msgstr "Dato/tid:"

#: calendar/gui/dialogs/alarm-page.glade.h:5
msgid "Reminders"
msgstr "Påminning"

#: calendar/gui/dialogs/alarm-page.glade.h:7
#: calendar/gui/dialogs/recurrence-page.glade.h:8
#: calendar/gui/e-itip-control.c:748 calendar/gui/e-itip-control.glade.h:11
msgid "Summary:"
msgstr "Samandrag:"

#: calendar/gui/dialogs/alarm-page.glade.h:10
msgid "_Options..."
msgstr "_Val ..."

#: calendar/gui/dialogs/alarm-page.glade.h:11
msgid "after"
msgstr "etter"

#: calendar/gui/dialogs/alarm-page.glade.h:12
msgid "before"
msgstr "før"

#: calendar/gui/dialogs/alarm-page.glade.h:13
#: calendar/gui/dialogs/recurrence-page.glade.h:14
msgid "day(s)"
msgstr "dag(ar)"

#: calendar/gui/dialogs/alarm-page.glade.h:14
msgid "end of appointment"
msgstr "slutt på avtale"

#: calendar/gui/dialogs/alarm-page.glade.h:15
msgid "hour(s)"
msgstr "time/timar"

#: calendar/gui/dialogs/alarm-page.glade.h:16 mail/mail-config.glade.h:129
msgid "minute(s)"
msgstr "minutt"

#: calendar/gui/dialogs/alarm-page.glade.h:17
msgid "start of appointment"
msgstr "byrjing på avtale"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:1
msgid "05 minutes"
msgstr "05 minutt"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:2
msgid "10 minutes"
msgstr "10 minutt"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:3
msgid "15 minutes"
msgstr "15 minutt"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:4
msgid "30 minutes"
msgstr "30 minutt"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:5
msgid "60 minutes"
msgstr "60 minutt"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:6
msgid "Calendar and Tasks Settings"
msgstr "Innstillingar for kalendar og oppgåver"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:7
msgid "Color for overdue tasks"
msgstr "Farge for oppgåver som har gått over tida"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:8
#, fuzzy
msgid "Color for tasks due today"
msgstr "Farge eller pixmap"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:9
#, fuzzy
msgid "Create new appointments with a default _reminder"
msgstr "&Slett avtale"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:10
msgid "Days"
msgstr "Dagar"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:11
msgid "First day of wee_k:"
msgstr "Første ve_kedag:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:12
#: calendar/gui/dialogs/recurrence-page.c:963
msgid "Friday"
msgstr "Fredag"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:13
msgid "Hours"
msgstr "Timar"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:14
msgid "Minutes"
msgstr "Minutt"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:15
#: calendar/gui/dialogs/recurrence-page.c:959
msgid "Monday"
msgstr "Måndag"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:16
#, fuzzy
msgid "O_verdue tasks:"
msgstr "&Syntaksmerkingsmodusar"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:17
#: calendar/gui/dialogs/recurrence-page.c:964
msgid "Saturday"
msgstr "Laurdag"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:18
#, fuzzy
msgid "Show appointment _end times in week and month views"
msgstr "Avtale"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:19
msgid "Show week _numbers in date navigator"
msgstr "Vis veke_nummer i datonavigatøren"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:20
msgid "Sta_rt of day:"
msgstr "Sta_rt på dagen:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:21
msgid "Su_n"
msgstr "Su_n"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:22
#: calendar/gui/dialogs/recurrence-page.c:965
msgid "Sunday"
msgstr "Søndag"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:23
msgid "T_hu"
msgstr "T_or"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:24
msgid "T_ue"
msgstr "T_ys"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:25
msgid "Tas_ks due today:"
msgstr "_Oppgåver som skal vere ferdig i dag:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:26
#: calendar/gui/dialogs/recurrence-page.c:962
msgid "Thursday"
msgstr "Torsdag"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:27
msgid "Time"
msgstr "Tid"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:28
msgid "Time _zone:"
msgstr "Tid_ssone:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:29
msgid "Time di_visions:"
msgstr "Oppdeling a_v tid:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:30
msgid "Time format:"
msgstr "Tidsformat:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:31
#: calendar/gui/dialogs/recurrence-page.c:960
msgid "Tuesday"
msgstr "Tysdag"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:32
#: calendar/gui/dialogs/recurrence-page.c:961
msgid "Wednesday"
msgstr "Onsdag"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:33
#: ui/evolution-calendar.xml.h:33
msgid "Work Week"
msgstr "Arbeidsveke"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:34
msgid "_12 hour (AM/PM)"
msgstr "_12 timers (AM/PM)"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:35
msgid "_24 hour"
msgstr "_24 timar"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:36
msgid "_Ask for confirmation when deleting items"
msgstr ""

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:37
msgid "_Compress weekends in month view"
msgstr ""

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:38
msgid "_Display"
msgstr "_Vis"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:39
msgid "_End of day:"
msgstr "S_lutt på dag:"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:40
msgid "_Fri"
msgstr "_Fre"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:41
msgid "_General"
msgstr "_Generelt"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:42
#, fuzzy
msgid "_Hide completed tasks after"
msgstr "Neste melding"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:43
msgid "_Mon"
msgstr "_Mån"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:44
msgid "_Other"
msgstr "_Anna"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:45
msgid "_Sat"
msgstr "_Lau"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:46
msgid "_Task List"
msgstr "_Oppgåveliste"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:47
msgid "_Wed"
msgstr "_Ons"

#: calendar/gui/dialogs/cal-prefs-dialog.glade.h:48
#, fuzzy
msgid "before the start of the appointment"
msgstr "&Slett avtale"

#: calendar/gui/dialogs/cancel-comp.c:51
msgid "The meeting status has changed. Send an updated version?"
msgstr ""

#: calendar/gui/dialogs/cancel-comp.c:57
#, fuzzy
msgid "Are you sure you want to cancel and delete this meeting?"
msgstr "Er du sikker på at du vil sletta denne metoden?"

#: calendar/gui/dialogs/cancel-comp.c:62
#, fuzzy
msgid "Are you sure you want to cancel and delete this task?"
msgstr "Er du sikker på at du vil sletta denne klassen?"

#: calendar/gui/dialogs/cancel-comp.c:67
#, fuzzy
msgid "Are you sure you want to cancel and delete this journal entry?"
msgstr "Er du sikker på at du vil sletta denne klassen?"

#: calendar/gui/dialogs/changed-comp.c:59
#, fuzzy
msgid "This event has been deleted."
msgstr "Inga hending valt."

#: calendar/gui/dialogs/changed-comp.c:63
msgid "This task has been deleted."
msgstr "Denn oppgåva har vorte sletta."

#: calendar/gui/dialogs/changed-comp.c:67
#, fuzzy
msgid "This journal entry has been deleted."
msgstr "Denne mappa kan ikkje slettast."

#: calendar/gui/dialogs/changed-comp.c:76
#, c-format
msgid "%s  You have made changes. Forget those changes and close the editor?"
msgstr ""

#: calendar/gui/dialogs/changed-comp.c:78
#, c-format
msgid "%s  You have made no changes, close the editor?"
msgstr ""

#: calendar/gui/dialogs/changed-comp.c:83
#, fuzzy
msgid "This event has been changed."
msgstr "Passordet ditt er endra."

#: calendar/gui/dialogs/changed-comp.c:87
#, fuzzy
msgid "This task has been changed."
msgstr "Passordet ditt er endra."

#: calendar/gui/dialogs/changed-comp.c:91
#, fuzzy
msgid "This journal entry has been changed."
msgstr "Passordet ditt er endra."

#: calendar/gui/dialogs/changed-comp.c:100
#, c-format
msgid "%s  You have made changes. Forget those changes and update the editor?"
msgstr ""

#: calendar/gui/dialogs/changed-comp.c:102
#, c-format
msgid "%s  You have made no changes, update the editor?"
msgstr ""

#: calendar/gui/dialogs/comp-editor-util.c:188 calendar/gui/print.c:2164
msgid " to "
msgstr " til "

#: calendar/gui/dialogs/comp-editor-util.c:192 calendar/gui/print.c:2168
msgid " (Completed "
msgstr " (Ferdig "

#: calendar/gui/dialogs/comp-editor-util.c:194 calendar/gui/print.c:2170
msgid "Completed "
msgstr "Ferdig "

#: calendar/gui/dialogs/comp-editor-util.c:199 calendar/gui/print.c:2175
msgid " (Due "
msgstr " (Ferdig"

#: calendar/gui/dialogs/comp-editor-util.c:201 calendar/gui/print.c:2177
msgid "Due "
msgstr "Ferdig"

#: calendar/gui/dialogs/comp-editor.c:321
#, fuzzy
msgid "Could not update object!"
msgstr "Kunne ikkje laga kio-jobb.\n"

#: calendar/gui/dialogs/comp-editor.c:692
msgid "Edit Appointment"
msgstr "Redigér avtale"

#: calendar/gui/dialogs/comp-editor.c:697
#, c-format
msgid "Appointment - %s"
msgstr "Avtale - %s"

#: calendar/gui/dialogs/comp-editor.c:700
#, c-format
msgid "Task - %s"
msgstr "Oppgåve - %s"

#: calendar/gui/dialogs/comp-editor.c:703
#, c-format
msgid "Journal entry - %s"
msgstr "Journaloppføring - %s"

#: calendar/gui/dialogs/comp-editor.c:717
msgid "No summary"
msgstr "Ikkje noko samandrag"

#: calendar/gui/dialogs/comp-editor.c:1077 mail/mail-callbacks.c:2015
#: mail/mail-display.c:102
msgid "Overwrite file?"
msgstr "Skriv over fil?"

#: calendar/gui/dialogs/comp-editor.c:1081 mail/mail-callbacks.c:2022
#: mail/mail-display.c:106
msgid ""
"A file by that name already exists.\n"
"Overwrite it?"
msgstr ""
"Ei fil med det namnet finst alt.\n"
"Vil du skrive over den?"

#: calendar/gui/dialogs/comp-editor.c:1127 ui/evolution-comp-editor.xml.h:13
#: widgets/misc/e-filter-bar.h:101
msgid "Save As..."
msgstr "Lagre som ..."

#: calendar/gui/dialogs/comp-editor.c:1277
msgid "Unable to obtain current version!"
msgstr "Ikkje stand til å få tak i noverande versjon!"

#: calendar/gui/dialogs/delete-comp.c:96
#, fuzzy, c-format
msgid "Are you sure you want to delete the appointment `%s'?"
msgstr "Er du sikker på at du vil sletta denne klassen?"

#: calendar/gui/dialogs/delete-comp.c:99
#, fuzzy
msgid "Are you sure you want to delete this untitled appointment?"
msgstr "Er du sikker på at du vil sletta denne klassen?"

#: calendar/gui/dialogs/delete-comp.c:105
#, fuzzy, c-format
msgid "Are you sure you want to delete the task `%s'?"
msgstr "Er du sikker på at du vil sletta denne klassen?"

#: calendar/gui/dialogs/delete-comp.c:108
#, fuzzy
msgid "Are you sure you want to delete this untitled task?"
msgstr "Er du sikker på at du vil sletta denne klassen?"

#: calendar/gui/dialogs/delete-comp.c:114
#, fuzzy, c-format
msgid "Are you sure you want to delete the journal entry `%s'?"
msgstr "Er du sikker på at du vil sletta denne klassen?"

#: calendar/gui/dialogs/delete-comp.c:117
#, fuzzy
msgid "Are you sure want to delete this untitled journal entry?"
msgstr "Er du sikker på at du vil sletta denne klassen?"

#: calendar/gui/dialogs/delete-comp.c:132
#, fuzzy, c-format
msgid "Are you sure you want to delete %d appointments?"
msgstr "Er du sikker på at du vil sletta denne klassen?"

#: calendar/gui/dialogs/delete-comp.c:137
#, fuzzy, c-format
msgid "Are you sure you want to delete %d tasks?"
msgstr "Er du sikker på at du vil sletta denne klassen?"

#: calendar/gui/dialogs/delete-comp.c:142
#, fuzzy, c-format
msgid "Are you sure you want to delete %d journal entries?"
msgstr "Er du sikker på at du vil sletta denne klassen?"

#: calendar/gui/dialogs/e-delegate-dialog.glade.h:1
msgid "Addressbook..."
msgstr "Adressebok ..."

#: calendar/gui/dialogs/e-delegate-dialog.glade.h:2
msgid "Delegate To:"
msgstr "Delegér til:"

#: calendar/gui/dialogs/e-delegate-dialog.glade.h:3
msgid "Enter Delegate"
msgstr "Tast inn delegat"

#: calendar/gui/dialogs/event-editor.c:185 calendar/gui/print.c:2203
msgid "Appointment"
msgstr "Avtale"

#: calendar/gui/dialogs/event-editor.c:190
msgid "Reminder"
msgstr "Påminning"

#: calendar/gui/dialogs/event-editor.c:195
msgid "Recurrence"
msgstr "Repetering"

#: calendar/gui/dialogs/event-editor.c:202
#: calendar/gui/dialogs/event-editor.c:260
#: calendar/gui/dialogs/event-editor.c:363
#, fuzzy
msgid "Scheduling"
msgstr "Køyreplan ..."

#: calendar/gui/dialogs/event-editor.c:207
#: calendar/gui/dialogs/event-editor.c:263
#: calendar/gui/dialogs/event-editor.c:366
msgid "Meeting"
msgstr "Møte"

#: calendar/gui/dialogs/event-page.glade.h:1
msgid "A_ll day event"
msgstr ""

#: calendar/gui/dialogs/event-page.glade.h:2
msgid "B_usy"
msgstr "_Oppteke"

#: calendar/gui/dialogs/event-page.glade.h:4
#: calendar/gui/dialogs/task-page.glade.h:2
#: calendar/gui/e-calendar-table.etspec.h:5
msgid "Classification"
msgstr "Klassifisering"

#: calendar/gui/dialogs/event-page.glade.h:5
#: calendar/gui/dialogs/task-page.glade.h:3
msgid "Con_fidential"
msgstr "Kon_fidensielt"

#: calendar/gui/dialogs/event-page.glade.h:6
#: calendar/gui/dialogs/task-page.glade.h:4
msgid "Date & Time"
msgstr "Dato og tid"

#: calendar/gui/dialogs/event-page.glade.h:7
msgid "F_ree"
msgstr "_Ledig"

#: calendar/gui/dialogs/event-page.glade.h:8
msgid "L_ocation:"
msgstr "_Plassering:"

#: calendar/gui/dialogs/event-page.glade.h:9
#: calendar/gui/dialogs/task-page.glade.h:6
msgid "Pri_vate"
msgstr "Pri_vat"

#: calendar/gui/dialogs/event-page.glade.h:10
#: calendar/gui/dialogs/task-page.glade.h:7
msgid "Pu_blic"
msgstr "_Offentleg"

#: calendar/gui/dialogs/event-page.glade.h:11
#: calendar/gui/e-calendar-table.etspec.h:13
msgid "Show Time As"
msgstr "Vis tid som"

#: calendar/gui/dialogs/event-page.glade.h:12
#: calendar/gui/dialogs/task-page.glade.h:9
msgid "Su_mmary:"
msgstr "Sa_mandrag:"

#: calendar/gui/dialogs/event-page.glade.h:13
#: calendar/gui/dialogs/task-page.glade.h:10
msgid "_Contacts..."
msgstr "_Kontaktar ..."

#: calendar/gui/dialogs/event-page.glade.h:14
msgid "_End time:"
msgstr "_Slutt-tid:"

#: calendar/gui/dialogs/event-page.glade.h:15
msgid "_Start time:"
msgstr "_Start-tid:"

#: calendar/gui/dialogs/meeting-page.c:425
msgid "An organizer is required."
msgstr ""

#: calendar/gui/dialogs/meeting-page.c:446
msgid "At least one attendee is required."
msgstr ""

#: calendar/gui/dialogs/meeting-page.c:626
msgid "That person is already attending the meeting!"
msgstr ""

#: calendar/gui/dialogs/meeting-page.c:701
msgid "_Delegate To..."
msgstr "_Delegér til ..."

#: calendar/gui/dialogs/meeting-page.etspec.h:1
#: calendar/gui/e-meeting-time-sel.etspec.h:1
msgid "Attendee"
msgstr "Deltakar"

#: calendar/gui/dialogs/meeting-page.etspec.h:2
#: calendar/gui/e-meeting-time-sel.etspec.h:2
msgid "Click here to add an attendee"
msgstr "Klikke her for å leggje til ein deltakar"

#: calendar/gui/dialogs/meeting-page.etspec.h:3
#: calendar/gui/e-meeting-time-sel.etspec.h:3
msgid "Common Name"
msgstr "Felles namn"

#: calendar/gui/dialogs/meeting-page.etspec.h:4
#: calendar/gui/e-meeting-time-sel.etspec.h:4
msgid "Delegated From"
msgstr "Delegert frå"

#: calendar/gui/dialogs/meeting-page.etspec.h:5
#: calendar/gui/e-meeting-time-sel.etspec.h:5
msgid "Delegated To"
msgstr "Delegert til"

#: calendar/gui/dialogs/meeting-page.etspec.h:6
#: calendar/gui/e-meeting-time-sel.etspec.h:6
msgid "Language"
msgstr "Språk"

#: calendar/gui/dialogs/meeting-page.etspec.h:7
#: calendar/gui/e-meeting-time-sel.etspec.h:7
msgid "Member"
msgstr "Medlem"

#: calendar/gui/dialogs/meeting-page.etspec.h:8
#: calendar/gui/e-itip-control.c:809
#: calendar/gui/e-meeting-time-sel.etspec.h:8
msgid "RSVP"
msgstr "RSVP"

#: calendar/gui/dialogs/meeting-page.etspec.h:9
#: calendar/gui/e-meeting-time-sel.etspec.h:9
msgid "Role"
msgstr "Rolle"

#: calendar/gui/dialogs/meeting-page.etspec.h:10
#: calendar/gui/e-calendar-table.etspec.h:15
#: calendar/gui/e-meeting-time-sel.etspec.h:10 filter/libfilter-i18n.h:47
#: mail/message-list.etspec.h:9
msgid "Status"
msgstr "Status"

#: calendar/gui/dialogs/meeting-page.etspec.h:11
#: calendar/gui/e-calendar-table.etspec.h:18
#: calendar/gui/e-meeting-time-sel.etspec.h:11 mail/mail-config.glade.h:94
#: shell/glade/e-active-connection-dialog.glade.h:5
msgid "Type"
msgstr "Type"

#: calendar/gui/dialogs/meeting-page.glade.h:2
#: calendar/gui/e-itip-control.glade.h:9
msgid "Organizer:"
msgstr "Organisator:"

#: calendar/gui/dialogs/meeting-page.glade.h:3
msgid "_Change Organizer"
msgstr "_Endre organisator"

#: calendar/gui/dialogs/meeting-page.glade.h:4
#: calendar/gui/e-meeting-time-sel.c:450
msgid "_Invite Others..."
msgstr "_Inviter andre ..."

#: calendar/gui/dialogs/meeting-page.glade.h:5
#, fuzzy
msgid "_Other Organizer"
msgstr "Planleggjar"

#: calendar/gui/dialogs/recurrence-page.c:571
msgid "This appointment contains recurrences that Evolution cannot edit."
msgstr ""

#: calendar/gui/dialogs/recurrence-page.c:932
msgid "on"
msgstr "på"

#: calendar/gui/dialogs/recurrence-page.c:958 filter/filter-datespec.c:83
msgid "day"
msgstr "dag"

#: calendar/gui/dialogs/recurrence-page.c:1088
#, fuzzy
msgid "on the"
msgstr "Månad"

#: calendar/gui/dialogs/recurrence-page.c:1096
#, fuzzy
msgid "th"
msgstr "4."

#: calendar/gui/dialogs/recurrence-page.c:1269
#, fuzzy
msgid "occurrences"
msgstr "gong(ar)"

#: calendar/gui/dialogs/recurrence-page.glade.h:1
msgid "A_dd"
msgstr "Le_gg til"

#: calendar/gui/dialogs/recurrence-page.glade.h:4
msgid "Every"
msgstr "Kvar"

#: calendar/gui/dialogs/recurrence-page.glade.h:5
msgid "Exceptions"
msgstr "Unntak"

#: calendar/gui/dialogs/recurrence-page.glade.h:6
msgid "Preview"
msgstr "Førehandsvisning"

#: calendar/gui/dialogs/recurrence-page.glade.h:7
#, fuzzy
msgid "Recurrence Rule"
msgstr "Regel for repetering"

#: calendar/gui/dialogs/recurrence-page.glade.h:9
#, fuzzy
msgid "_Custom recurrence"
msgstr "Tilpassa repetering"

#: calendar/gui/dialogs/recurrence-page.glade.h:10
msgid "_Modify"
msgstr "_Endre"

#: calendar/gui/dialogs/recurrence-page.glade.h:11
#, fuzzy
msgid "_No recurrence"
msgstr "Repetering"

#: calendar/gui/dialogs/recurrence-page.glade.h:13
#, fuzzy
msgid "_Simple recurrence"
msgstr "Repetering"

#: calendar/gui/dialogs/recurrence-page.glade.h:15
#, fuzzy
msgid "for"
msgstr "Munnar"

#: calendar/gui/dialogs/recurrence-page.glade.h:16
msgid "forever"
msgstr "for alltid"

#: calendar/gui/dialogs/recurrence-page.glade.h:17
msgid "month(s)"
msgstr "månad(er)"

#: calendar/gui/dialogs/recurrence-page.glade.h:18
msgid "until"
msgstr "inntil"

#: calendar/gui/dialogs/recurrence-page.glade.h:19
msgid "week(s)"
msgstr "veke(r)"

#: calendar/gui/dialogs/recurrence-page.glade.h:20
msgid "year(s)"
msgstr "år"

#: calendar/gui/dialogs/send-comp.c:56
msgid "The meeting information has been created. Send it?"
msgstr ""

#: calendar/gui/dialogs/send-comp.c:59
msgid "The meeting information has changed. Send an updated version?"
msgstr ""

#: calendar/gui/dialogs/send-comp.c:66
msgid "The task assignment information has been created. Send it?"
msgstr ""

#: calendar/gui/dialogs/send-comp.c:70
msgid "The task information has changed. Send an updated version?"
msgstr ""

#: calendar/gui/dialogs/task-details-page.glade.h:2
#: calendar/gui/e-calendar-table.etspec.h:2
#, no-c-format
msgid "% Complete"
msgstr "prosent ferdig"

#: calendar/gui/dialogs/task-details-page.glade.h:5
msgid "Date Completed:"
msgstr "Dato ferdig"

#: calendar/gui/dialogs/task-details-page.glade.h:11
msgid "Progress"
msgstr "Framgang"

#: calendar/gui/dialogs/task-details-page.glade.h:12
#: my-evolution/e-summary-preferences.c:966
msgid "URL:"
msgstr "URL:"

#: calendar/gui/dialogs/task-details-page.glade.h:14
msgid "_Priority:"
msgstr "_Prioritet:"

#: calendar/gui/dialogs/task-details-page.glade.h:15
msgid "_Status:"
msgstr "_Status:"

#: calendar/gui/dialogs/task-editor.c:190
#: calendar/gui/dialogs/task-editor.c:227
#: calendar/gui/dialogs/task-editor.c:322
msgid "Assignment"
msgstr "Tildeling"

#: calendar/gui/dialogs/task-page.glade.h:5 calendar/gui/e-itip-control.c:757
#: calendar/gui/e-itip-control.glade.h:6
#: composer/e-msg-composer-attachment.glade.h:2 mail/mail-config.glade.h:31
msgid "Description:"
msgstr "Skildring:"

#: calendar/gui/dialogs/task-page.glade.h:8
msgid "Sta_rt Date:"
msgstr "Sta_rt-dato:"

#: calendar/gui/dialogs/task-page.glade.h:11
msgid "_Due Date:"
msgstr "Forfalls_dato:"

#: calendar/gui/e-calendar-table.c:428
#, c-format
msgid "0%"
msgstr "0%"

#: calendar/gui/e-calendar-table.c:429
#, c-format
msgid "10%"
msgstr "10%"

#: calendar/gui/e-calendar-table.c:430
#, c-format
msgid "20%"
msgstr "20%"

#: calendar/gui/e-calendar-table.c:431
#, c-format
msgid "30%"
msgstr "30%"

#: calendar/gui/e-calendar-table.c:432
#, c-format
msgid "40%"
msgstr "40%"

#: calendar/gui/e-calendar-table.c:433
#, c-format
msgid "50%"
msgstr "50%"

#: calendar/gui/e-calendar-table.c:434
#, c-format
msgid "60%"
msgstr "60%"

#: calendar/gui/e-calendar-table.c:435
#, c-format
msgid "70%"
msgstr "70%"

#: calendar/gui/e-calendar-table.c:436
#, c-format
msgid "80%"
msgstr "80%"

#: calendar/gui/e-calendar-table.c:437
#, c-format
msgid "90%"
msgstr "90%"

#: calendar/gui/e-calendar-table.c:438
#, c-format
msgid "100%"
msgstr "100%"

#: calendar/gui/e-calendar-table.c:741 calendar/gui/e-day-view.c:2726
#: calendar/gui/e-week-view.c:1828
msgid "Deleting selected objects"
msgstr "Slettar valde objekt"

#: calendar/gui/e-calendar-table.c:960 calendar/gui/e-day-view.c:3546
#: calendar/gui/e-week-view.c:3432 mail/folder-browser.c:1455
#: shell/e-shortcuts-view.c:384 ui/evolution-addressbook.xml.h:37
msgid "_Open"
msgstr "_Opne"

#: calendar/gui/e-calendar-table.c:964 calendar/gui/e-day-view.c:3555
#: calendar/gui/e-week-view.c:3441 ui/evolution-addressbook.xml.h:1
#: ui/evolution-calendar.xml.h:1 ui/evolution-tasks.xml.h:1
msgid "C_ut"
msgstr "Kl_ipp ut"

#: calendar/gui/e-calendar-table.c:966 calendar/gui/e-day-view.c:3557
#: calendar/gui/e-week-view.c:3443 ui/evolution-addressbook.xml.h:34
#: ui/evolution-calendar.xml.h:37 ui/evolution-mail-list.xml.h:24
#: ui/evolution-tasks.xml.h:17
msgid "_Copy"
msgstr "_Kopier"

#: calendar/gui/e-calendar-table.c:968 calendar/gui/e-day-view.c:3532
#: calendar/gui/e-day-view.c:3559 calendar/gui/e-week-view.c:3419
#: calendar/gui/e-week-view.c:3445 ui/evolution-addressbook.xml.h:38
#: ui/evolution-calendar.xml.h:40 ui/evolution-mail-list.xml.h:29
#: ui/evolution-tasks.xml.h:21
msgid "_Paste"
msgstr "_Lim inn"

#: calendar/gui/e-calendar-table.c:973
msgid "_Mark as Complete"
msgstr "_Merk som komplett"

#: calendar/gui/e-calendar-table.c:975
msgid "_Delete this Task"
msgstr "Slett _denne oppgåva"

#: calendar/gui/e-calendar-table.c:978
msgid "_Mark Tasks as Complete"
msgstr "_Merk oppgåver som ferdig"

#: calendar/gui/e-calendar-table.c:980
msgid "_Delete Selected Tasks"
msgstr "Slett _den valde oppgåver"

#: calendar/gui/e-calendar-table.c:1164 calendar/gui/e-day-view.c:7137
#: calendar/gui/e-week-view.c:3928
msgid "Updating objects"
msgstr "Oppdaterar objekt"

#: calendar/gui/e-calendar-table.c:1247
#: calendar/gui/e-calendar-table.etspec.h:6
msgid "Click to add a task"
msgstr "Trykk her for å leggje til ei oppgåve"

#: calendar/gui/e-calendar-table.etspec.h:3
msgid "Alarms"
msgstr "Alarmar"

#: calendar/gui/e-calendar-table.etspec.h:7 camel/camel-filter-driver.c:924
#: camel/camel-filter-driver.c:1026
msgid "Complete"
msgstr "Ferdig"

#: calendar/gui/e-calendar-table.etspec.h:8
msgid "Completion Date"
msgstr "Fullføringsdato"

#: calendar/gui/e-calendar-table.etspec.h:9
msgid "Due Date"
msgstr "Forfallsdato"

#: calendar/gui/e-calendar-table.etspec.h:10
msgid "End Date"
msgstr "Sluttdato"

#: calendar/gui/e-calendar-table.etspec.h:11
msgid "Geographical Position"
msgstr "Geografisk plassering"

#: calendar/gui/e-calendar-table.etspec.h:12
msgid "Priority"
msgstr "Prioritet"

#: calendar/gui/e-calendar-table.etspec.h:14
msgid "Start Date"
msgstr "Start-dato"

#. FIXME: Inbox shortcut should point to something else for
#. people who won't care about using /Local Folders/Inbox
#: calendar/gui/e-calendar-table.etspec.h:16
#: my-evolution/component-factory.c:44 shell/e-shortcuts.c:1049
#: shell/e-storage-set-view.c:1483 shell/e-summary-storage.c:79
msgid "Summary"
msgstr "Samandrag"

#: calendar/gui/e-calendar-table.etspec.h:17
msgid "Task sort"
msgstr "Sortér oppgåver"

#: calendar/gui/e-calendar-table.etspec.h:19
msgid "URL"
msgstr "URL"

#. strftime format of a weekday, a date and a time, 24-hour.
#: calendar/gui/e-cell-date-edit-text.c:118 e-util/e-time-utils.c:163
#: e-util/e-time-utils.c:357
msgid "%a %m/%d/%Y %H:%M:%S"
msgstr ""

#. strftime format of a weekday, a date and a time, 12-hour.
#: calendar/gui/e-cell-date-edit-text.c:121 e-util/e-time-utils.c:158
#: e-util/e-time-utils.c:366
msgid "%a %m/%d/%Y %I:%M:%S %p"
msgstr ""

#: calendar/gui/e-cell-date-edit-text.c:126
#, c-format
msgid ""
"The date must be entered in the format: \n"
"\n"
"%s"
msgstr ""
"Datoen må tastast inn på dette formatet:\n"
"\n"
"%s"

#: calendar/gui/e-day-view-time-item.c:518
#, c-format
msgid "%02i minute divisions"
msgstr "%02i minutt oppdeling"

#. strftime format %A = full weekday name, %d = day of month,
#. %B = full month name. Don't use any other specifiers.
#: calendar/gui/e-day-view-top-item.c:284 calendar/gui/e-day-view.c:1389
#: calendar/gui/e-week-view-main-item.c:324 calendar/gui/print.c:1461
msgid "%A %d %B"
msgstr "%A %d. %B"

#. strftime format %d = day of month, %b = abbreviated month name.
#. Don't use any other specifiers.
#: calendar/gui/e-day-view-top-item.c:292 calendar/gui/e-day-view.c:1416
#: calendar/gui/e-week-view-main-item.c:347
msgid "%d %b"
msgstr "%d. %b"

#. String to use in 12-hour time format for times in the morning.
#: calendar/gui/e-day-view.c:614 calendar/gui/e-week-view.c:350
#: calendar/gui/print.c:768
msgid "am"
msgstr "am"

#. String to use in 12-hour time format for times in the afternoon.
#: calendar/gui/e-day-view.c:617 calendar/gui/e-week-view.c:353
#: calendar/gui/print.c:770
msgid "pm"
msgstr "pm"

#: calendar/gui/e-day-view.c:3527 calendar/gui/e-week-view.c:3414
msgid "New All Day _Event"
msgstr "Ny h_eildagshending"

#: calendar/gui/e-day-view.c:3537 calendar/gui/e-week-view.c:3424
#: ui/evolution-calendar.xml.h:17
msgid "Go to _Today"
msgstr "Gå _til idag"

#: calendar/gui/e-day-view.c:3539 calendar/gui/e-week-view.c:3426
msgid "_Go to Date..."
msgstr "_Gå til dato ..."

#: calendar/gui/e-day-view.c:3548 calendar/gui/e-week-view.c:3434
msgid "_Delete this Appointment"
msgstr "Slett _denne avtalen"

#: calendar/gui/e-day-view.c:3567 calendar/gui/e-week-view.c:3459
#, fuzzy
msgid "Make this Occurrence _Movable"
msgstr "Se&nd avtale"

#: calendar/gui/e-day-view.c:3569 calendar/gui/e-week-view.c:3461
#, fuzzy
msgid "Delete this _Occurrence"
msgstr "Erstatt denne førekomsten?"

#: calendar/gui/e-day-view.c:3571 calendar/gui/e-week-view.c:3463
#, fuzzy
msgid "Delete _All Occurrences"
msgstr "Slettar klassen"

#: calendar/gui/e-itip-control.c:535
msgid "Meeting begins: <b>"
msgstr "Møtet byrjar: <b>"

#: calendar/gui/e-itip-control.c:540
msgid "Task begins: <b>"
msgstr "Oppgåva byrjar: <b>"

#: calendar/gui/e-itip-control.c:545
#, fuzzy
msgid "Free/Busy info begins: <b>"
msgstr "Informasjon"

#: calendar/gui/e-itip-control.c:549
msgid "Begins: <b>"
msgstr "Byrjar: <b>"

#: calendar/gui/e-itip-control.c:561
#, fuzzy
msgid "Meeting ends: <b>"
msgstr "Informasjon"

#: calendar/gui/e-itip-control.c:564
#, fuzzy
msgid "Free/Busy info ends: <b>"
msgstr "Informasjon"

#: calendar/gui/e-itip-control.c:568
msgid "Ends: <b>"
msgstr "Sluttar: <b>"

#: calendar/gui/e-itip-control.c:582
#, fuzzy
msgid "Task Completed: <b>"
msgstr "Ferdig"

#: calendar/gui/e-itip-control.c:592
msgid "Task Due: <b>"
msgstr "Oppgåva ferdig: <b>"

#: calendar/gui/e-itip-control.c:629 calendar/gui/e-itip-control.c:678
#, fuzzy
msgid "iCalendar Information"
msgstr "Informasjon"

#. Title
#: calendar/gui/e-itip-control.c:644
#, fuzzy
msgid "iCalendar Error"
msgstr "Skriv ut alle"

#: calendar/gui/e-itip-control.c:709 calendar/gui/e-itip-control.c:725
msgid "An unknown person"
msgstr "Ein ukjent person"

#. Describe what the user can do
#: calendar/gui/e-itip-control.c:732
msgid ""
"<br> Please review the following information, and then select an action from "
"the menu below."
msgstr ""
"<br> Sjå gjennom den følgjande informasjon, og velj ei handling frå menyen "
"under."

#: calendar/gui/e-itip-control.c:748
msgid "<i>None</i>"
msgstr "<i>Ingen</i>"

#: calendar/gui/e-itip-control.c:789 calendar/gui/e-itip-control.c:805
#: calendar/gui/e-itip-control.c:821 calendar/gui/e-itip-control.c:834
#: calendar/gui/e-itip-control.c:847 calendar/gui/e-itip-control.c:860
msgid "Choose an action:"
msgstr "Vel ei handling:"

#: calendar/gui/e-itip-control.c:790
msgid "Update"
msgstr "Oppdater"

#: calendar/gui/e-itip-control.c:791 calendar/gui/e-itip-control.c:810
#: calendar/gui/e-itip-control.c:823 calendar/gui/e-itip-control.c:836
#: calendar/gui/e-itip-control.c:849 calendar/gui/e-itip-control.c:862
#: shell/e-shell.c:1885 widgets/misc/e-cell-date-edit.c:258
msgid "OK"
msgstr "OK"

#: calendar/gui/e-itip-control.c:806
msgid "Accept"
msgstr "Godta"

#: calendar/gui/e-itip-control.c:807
#, fuzzy
msgid "Tentatively accept"
msgstr "Mellombels"

#: calendar/gui/e-itip-control.c:808
msgid "Decline"
msgstr "Avslå"

#: calendar/gui/e-itip-control.c:822
#, fuzzy
msgid "Send Free/Busy Information"
msgstr "Informasjon"

#: calendar/gui/e-itip-control.c:835
msgid "Update respondent status"
msgstr "Opdatér status på svar"

#: calendar/gui/e-itip-control.c:848
#, fuzzy
msgid "Send Latest Information"
msgstr "Informasjon"

#: calendar/gui/e-itip-control.c:861 ui/evolution-mail-global.xml.h:1
msgid "Cancel"
msgstr "Avbryt"

#: calendar/gui/e-itip-control.c:909
#, fuzzy, c-format
msgid "<b>%s</b> has published meeting information."
msgstr "generer avlusingsinformasjon"

#: calendar/gui/e-itip-control.c:910
#, fuzzy
msgid "Meeting Information"
msgstr "Personleg informasjon"

#: calendar/gui/e-itip-control.c:914
#, c-format
msgid "<b>%s</b> requests your presence at a meeting."
msgstr "<b>%s</b> spør etter deg for å stille opp på eit møte."

#: calendar/gui/e-itip-control.c:915
msgid "Meeting Proposal"
msgstr "Møteframlegg"

#: calendar/gui/e-itip-control.c:919
#, c-format
msgid "<b>%s</b> wishes to add to an existing meeting."
msgstr ""

#: calendar/gui/e-itip-control.c:920
msgid "Meeting Update"
msgstr "Møteoppdatering"

#: calendar/gui/e-itip-control.c:924
#, fuzzy, c-format
msgid "<b>%s</b> wishes to receive the latest meeting information."
msgstr "generer avlusingsinformasjon"

#: calendar/gui/e-itip-control.c:925
msgid "Meeting Update Request"
msgstr ""

#: calendar/gui/e-itip-control.c:942 calendar/gui/e-itip-control.c:1013
#: calendar/gui/e-meeting-model.c:257 calendar/gui/e-meeting-model.c:292
#: calendar/gui/e-meeting-model.c:357 calendar/gui/e-meeting-model.c:782
#: calendar/gui/e-meeting-model.c:798
#: camel/providers/smtp/camel-smtp-transport.c:171
#: camel/providers/smtp/camel-smtp-transport.c:226
#: widgets/misc/e-charset-picker.c:58 widgets/misc/e-charset-picker.c:442
msgid "Unknown"
msgstr "Ukjend"

#: calendar/gui/e-itip-control.c:948
#, fuzzy, c-format
msgid "<b>%s</b> has replied to a meeting request."
msgstr "Dette er ei repeterande hending."

#: calendar/gui/e-itip-control.c:949
msgid "Meeting Reply"
msgstr "Møtesvar"

#: calendar/gui/e-itip-control.c:953
#, c-format
msgid "<b>%s</b> has cancelled a meeting."
msgstr ""

#: calendar/gui/e-itip-control.c:954
msgid "Meeting Cancellation"
msgstr "Møtekansellering"

#: calendar/gui/e-itip-control.c:958 calendar/gui/e-itip-control.c:1029
#: calendar/gui/e-itip-control.c:1064
#, c-format
msgid "<b>%s</b> has sent an unintelligible message."
msgstr ""

#: calendar/gui/e-itip-control.c:959
#, fuzzy
msgid "Bad Meeting Message"
msgstr "&Finn i melding ..."

#: calendar/gui/e-itip-control.c:979
#, c-format
msgid "<b>%s</b> has published task information."
msgstr ""

#: calendar/gui/e-itip-control.c:980
msgid "Task Information"
msgstr "Oppgåveinformasjon"

#: calendar/gui/e-itip-control.c:984
#, c-format
msgid "<b>%s</b> requests you perform a task."
msgstr ""

#: calendar/gui/e-itip-control.c:985
msgid "Task Proposal"
msgstr "Oppgåveframlegg"

#: calendar/gui/e-itip-control.c:989
#, c-format
msgid "<b>%s</b> wishes to add to an existing task."
msgstr "<b>%s</b> ønskjar å leggje til ei eksisterande oppgåve."

#: calendar/gui/e-itip-control.c:990
msgid "Task Update"
msgstr "Oppgåveoppdatering"

#: calendar/gui/e-itip-control.c:994
#, fuzzy, c-format
msgid "<b>%s</b> wishes to receive the latest task information."
msgstr "Dette er ei førehandsvising av det valte bakgrunnsbiletet."

#: calendar/gui/e-itip-control.c:995
msgid "Task Update Request"
msgstr "Oppgåveoppdateringsforepørjing"

#: calendar/gui/e-itip-control.c:1019
#, fuzzy, c-format
msgid "<b>%s</b> has replied to a task assignment."
msgstr "Dette er ei repeterande hending."

#: calendar/gui/e-itip-control.c:1020
msgid "Task Reply"
msgstr "Oppgåvesvar"

#: calendar/gui/e-itip-control.c:1024
#, c-format
msgid "<b>%s</b> has cancelled a task."
msgstr "<b>%s</b> har kansellert ei oppgåve."

#: calendar/gui/e-itip-control.c:1025
msgid "Task Cancellation"
msgstr "Oppgåvekansellering"

#: calendar/gui/e-itip-control.c:1030
#, fuzzy
msgid "Bad Task Message"
msgstr "Skriv ut alle"

#: calendar/gui/e-itip-control.c:1049
#, fuzzy, c-format
msgid "<b>%s</b> has published free/busy information."
msgstr "Skriv avlusingsinformasjon"

#: calendar/gui/e-itip-control.c:1050
msgid "Free/Busy Information"
msgstr "Fri/ledig-informasjon"

#: calendar/gui/e-itip-control.c:1054
#, fuzzy, c-format
msgid "<b>%s</b> requests your free/busy information."
msgstr "Prøv «%s --help» for meir informasjon\n"

#: calendar/gui/e-itip-control.c:1055
msgid "Free/Busy Request"
msgstr "Fri/ledig forespørsel"

#: calendar/gui/e-itip-control.c:1059
#, fuzzy, c-format
msgid "<b>%s</b> has replied to a free/busy request."
msgstr "Dette er ei repeterande hending."

#: calendar/gui/e-itip-control.c:1060
msgid "Free/Busy Reply"
msgstr "Fri/Oppteke svar"

#: calendar/gui/e-itip-control.c:1065
#, fuzzy
msgid "Bad Free/Busy Message"
msgstr "Private meldingar"

#: calendar/gui/e-itip-control.c:1138
msgid "The message does not appear to be properly formed"
msgstr "Meldinga ser ikkje ut til å vere skikkeleg forma"

#: calendar/gui/e-itip-control.c:1157
#, fuzzy
msgid "The message contains only unsupported requests."
msgstr "Meldinga har ingen sendar"

#: calendar/gui/e-itip-control.c:1185 calendar/gui/e-itip-control.c:1191
msgid "The attachment does not contain a valid calendar message"
msgstr "Vedlegg inneheld ikkje ei gyldig kalendarmelding."

#: calendar/gui/e-itip-control.c:1216
msgid "The attachment has no viewable calendar items"
msgstr ""

#: calendar/gui/e-itip-control.c:1315
msgid "Calendar file could not be updated!\n"
msgstr ""

#: calendar/gui/e-itip-control.c:1317
#, fuzzy
msgid "Update complete\n"
msgstr "Ferdig"

#: calendar/gui/e-itip-control.c:1362
msgid "Attendee status could not be updated because of an invalid status!\n"
msgstr ""

#: calendar/gui/e-itip-control.c:1370
msgid "Attendee status could not be updated!\n"
msgstr ""

#: calendar/gui/e-itip-control.c:1372
msgid "Attendee status updated\n"
msgstr ""

#: calendar/gui/e-itip-control.c:1374
msgid "Attendee status can not be updated because the item no longer exists"
msgstr ""

#: calendar/gui/e-itip-control.c:1402
#, fuzzy
msgid "Removal Complete"
msgstr "Ferdig"

#: calendar/gui/e-itip-control.c:1421 calendar/gui/e-itip-control.c:1471
#, fuzzy
msgid "Item sent!\n"
msgstr "Dato"

#: calendar/gui/e-itip-control.c:1423 calendar/gui/e-itip-control.c:1475
msgid "The item could not be sent!\n"
msgstr ""

#: calendar/gui/e-itip-control.c:1648
msgid "Unable to find any of your identities in the attendees list!\n"
msgstr ""

#: calendar/gui/e-itip-control.glade.h:2
#, no-c-format
msgid "%P %%"
msgstr "%P %%"

#: calendar/gui/e-itip-control.glade.h:3
msgid "--to--"
msgstr "--til--"

#: calendar/gui/e-itip-control.glade.h:4
msgid "Calendar Message"
msgstr "Kalendermelding"

#: calendar/gui/e-itip-control.glade.h:5
msgid "Date:"
msgstr "Dato:"

#: calendar/gui/e-itip-control.glade.h:7
msgid "Loading Calendar"
msgstr "Lastar kalendar"

#: calendar/gui/e-itip-control.glade.h:8
msgid "Loading calendar..."
msgstr "Lastar melding ..."

#: calendar/gui/e-itip-control.glade.h:10
msgid "Server Message:"
msgstr "Tenarmelding:"

#: calendar/gui/e-itip-control.glade.h:12
msgid "date-end"
msgstr "sluttdato"

#: calendar/gui/e-itip-control.glade.h:13
msgid "date-start"
msgstr "start-dato"

#: calendar/gui/e-meeting-model.c:95
#, fuzzy
msgid "Chair Persons"
msgstr "Bil-telefon"

#: calendar/gui/e-meeting-model.c:96 calendar/gui/e-meeting-model.c:1568
#, fuzzy
msgid "Required Participants"
msgstr "Tenarinformasjon"

#: calendar/gui/e-meeting-model.c:97
#, fuzzy
msgid "Optional Participants"
msgstr "Personleg informasjon"

#: calendar/gui/e-meeting-model.c:98
msgid "Non-Participants"
msgstr "Ikkje-deltakarar"

#: calendar/gui/e-meeting-model.c:232 calendar/gui/e-meeting-model.c:249
#: calendar/gui/e-meeting-model.c:532 calendar/gui/e-meeting-model.c:778
msgid "Individual"
msgstr "Individuell"

#: calendar/gui/e-meeting-model.c:234 calendar/gui/e-meeting-model.c:251
#: calendar/gui/e-meeting-model.c:779
msgid "Group"
msgstr "Gruppe"

#: calendar/gui/e-meeting-model.c:236 calendar/gui/e-meeting-model.c:253
#: calendar/gui/e-meeting-model.c:780
msgid "Resource"
msgstr "Ressurs"

#: calendar/gui/e-meeting-model.c:238 calendar/gui/e-meeting-model.c:255
#: calendar/gui/e-meeting-model.c:781
msgid "Room"
msgstr "Rom"

#: calendar/gui/e-meeting-model.c:267 calendar/gui/e-meeting-model.c:284
#: calendar/gui/e-meeting-model.c:794
#, fuzzy
msgid "Chair"
msgstr "Teikn"

#: calendar/gui/e-meeting-model.c:269 calendar/gui/e-meeting-model.c:286
#: calendar/gui/e-meeting-model.c:534 calendar/gui/e-meeting-model.c:795
#, fuzzy
msgid "Required Participant"
msgstr "Tenarinformasjon"

#: calendar/gui/e-meeting-model.c:271 calendar/gui/e-meeting-model.c:288
#: calendar/gui/e-meeting-model.c:796
#, fuzzy
msgid "Optional Participant"
msgstr "Personleg informasjon"

#: calendar/gui/e-meeting-model.c:273 calendar/gui/e-meeting-model.c:290
#: calendar/gui/e-meeting-model.c:797
msgid "Non-Participant"
msgstr "Ikkje-deltakar"

#: calendar/gui/e-meeting-model.c:319 calendar/gui/e-meeting-model.c:342
#: calendar/gui/e-meeting-model.c:542 calendar/gui/e-meeting-model.c:823
#, fuzzy
msgid "Needs Action"
msgstr "Vel ikon"

#: calendar/gui/e-meeting-model.c:321 calendar/gui/e-meeting-model.c:344
#: calendar/gui/e-meeting-model.c:824
msgid "Accepted"
msgstr "Akseptert"

#: calendar/gui/e-meeting-model.c:323 calendar/gui/e-meeting-model.c:346
#: calendar/gui/e-meeting-model.c:825
msgid "Declined"
msgstr "Avslått"

#: calendar/gui/e-meeting-model.c:325 calendar/gui/e-meeting-model.c:348
#: calendar/gui/e-meeting-model.c:826 calendar/gui/e-meeting-time-sel.c:431
msgid "Tentative"
msgstr "Mellombels"

#: calendar/gui/e-meeting-model.c:327 calendar/gui/e-meeting-model.c:350
#: calendar/gui/e-meeting-model.c:827
msgid "Delegated"
msgstr "Delegert"

#: calendar/gui/e-meeting-model.c:331 calendar/gui/e-meeting-model.c:354
msgid "In Process"
msgstr "Under prossering"

#. This is a strftime() format string %A = full weekday name,
#. %B = full month name, %d = month day, %Y = full year.
#: calendar/gui/e-meeting-time-sel-item.c:471
#: calendar/gui/e-meeting-time-sel.c:2102
msgid "%A, %B %d, %Y"
msgstr "%A, %d. %B, %Y"

#. This is a strftime() format string %a = abbreviated weekday
#. name, %m = month number, %d = month day, %Y = full year.
#: calendar/gui/e-meeting-time-sel-item.c:475
#: calendar/gui/e-meeting-time-sel.c:2132 e-util/e-time-utils.c:186
#: e-util/e-time-utils.c:276 e-util/e-time-utils.c:348
msgid "%a %m/%d/%Y"
msgstr "%a %d/%m/%Y"

#. This is a strftime() format string %m = month number,
#. %d = month day, %Y = full year.
#: calendar/gui/e-meeting-time-sel-item.c:479 e-util/e-time-utils.c:221
#: e-util/e-time-utils.c:279 widgets/misc/e-dateedit.c:1612
msgid "%m/%d/%Y"
msgstr "%d/%m/%Y"

#: calendar/gui/e-meeting-time-sel.c:433
msgid "Out of Office"
msgstr "Ute av kontoret"

#: calendar/gui/e-meeting-time-sel.c:434
msgid "No Information"
msgstr "Ingen informasjon"

#: calendar/gui/e-meeting-time-sel.c:470
msgid "_Options"
msgstr "_Val"

#: calendar/gui/e-meeting-time-sel.c:487
msgid "Show _Only Working Hours"
msgstr "Vis kun _arbeidstid"

#: calendar/gui/e-meeting-time-sel.c:500
#, fuzzy
msgid "Show _Zoomed Out"
msgstr "Forminsk"

#: calendar/gui/e-meeting-time-sel.c:518
#, fuzzy
msgid "_Update Free/Busy"
msgstr "Oppdateringsfrekvens"

#: calendar/gui/e-meeting-time-sel.c:536
msgid "_<<"
msgstr "_<<"

#: calendar/gui/e-meeting-time-sel.c:553
msgid "_Autopick"
msgstr "_Autoplukk"

#: calendar/gui/e-meeting-time-sel.c:567
msgid ">_>"
msgstr ">_>"

#: calendar/gui/e-meeting-time-sel.c:584
#, fuzzy
msgid "_All People and Resources"
msgstr "Alle filer og katalogar"

#: calendar/gui/e-meeting-time-sel.c:597
msgid "All _People and One Resource"
msgstr ""

#: calendar/gui/e-meeting-time-sel.c:610
msgid "_Required People"
msgstr ""

#: calendar/gui/e-meeting-time-sel.c:623
msgid "Required People and _One Resource"
msgstr ""

#: calendar/gui/e-meeting-time-sel.c:646
#, fuzzy
msgid "Meeting _start time:"
msgstr "&Helsingstekst:"

#: calendar/gui/e-meeting-time-sel.c:665
msgid "Meeting _end time:"
msgstr "Møt_e slutttid:"

#: calendar/gui/e-tasks.c:342
#, fuzzy, c-format
msgid "Opening tasks at %s"
msgstr "Leitar etter tilleggsmodular"

#: calendar/gui/e-tasks.c:367
#, fuzzy, c-format
msgid "Could not load the tasks in `%s'"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: calendar/gui/e-tasks.c:379
#, fuzzy, c-format
msgid "The method required to load `%s' is not supported"
msgstr "Metoden %1 er ikkje støtta."

#: calendar/gui/e-tasks.c:629
#, fuzzy
msgid "Expunging"
msgstr "Forventar %1"

#: calendar/gui/e-week-view.c:3412 calendar/gui/e-week-view.c:3450
msgid "New _Appointment..."
msgstr "Ny _avtale ..."

#: calendar/gui/gnome-cal.c:1493
#, fuzzy, c-format
msgid "Could not open the folder in `%s'"
msgstr ""
"Kan ikkje fjerna post frå\n"
"postboksen '%1':\n"
"%2"

#: calendar/gui/gnome-cal.c:1504
#, fuzzy, c-format
msgid "The method required to open `%s' is not supported"
msgstr "Metoden %1 er ikkje støtta."

#: calendar/gui/gnome-cal.c:1859
#, fuzzy, c-format
msgid "Opening calendar at %s"
msgstr "Feil ved opning"

#: calendar/gui/goto-dialog.glade.h:1
msgid "April"
msgstr "April"

#: calendar/gui/goto-dialog.glade.h:2
msgid "August"
msgstr "August"

#: calendar/gui/goto-dialog.glade.h:3
msgid "December"
msgstr "Desember"

#: calendar/gui/goto-dialog.glade.h:4
msgid "February"
msgstr "Februar"

#: calendar/gui/goto-dialog.glade.h:5
msgid "Go To Date"
msgstr "Gå til dato"

#: calendar/gui/goto-dialog.glade.h:6
msgid "Go To Today"
msgstr "Gå til i dag"

#: calendar/gui/goto-dialog.glade.h:7
msgid "January"
msgstr "Januar"

#: calendar/gui/goto-dialog.glade.h:8
msgid "July"
msgstr "Juli"

#: calendar/gui/goto-dialog.glade.h:9
msgid "June"
msgstr "Juni"

#: calendar/gui/goto-dialog.glade.h:10
msgid "March"
msgstr "Mars"

#: calendar/gui/goto-dialog.glade.h:11
msgid "May"
msgstr "Mai"

#: calendar/gui/goto-dialog.glade.h:12
msgid "November"
msgstr "November"

#: calendar/gui/goto-dialog.glade.h:13
msgid "October"
msgstr "Oktober"

#: calendar/gui/goto-dialog.glade.h:14
msgid "September"
msgstr "September"

#: calendar/gui/itip-utils.c:243
msgid "At least one attendee is necessary"
msgstr ""

#: calendar/gui/itip-utils.c:274
msgid "An organizer must be set."
msgstr ""

#: calendar/gui/itip-utils.c:313 calendar/gui/itip-utils.c:355
#, fuzzy
msgid "Event information"
msgstr "Informasjon"

#: calendar/gui/itip-utils.c:315 calendar/gui/itip-utils.c:357
msgid "Task information"
msgstr "Informasjon om oppgåve"

#: calendar/gui/itip-utils.c:317 calendar/gui/itip-utils.c:359
#, fuzzy
msgid "Journal information"
msgstr "Personleg informasjon"

#: calendar/gui/itip-utils.c:319 calendar/gui/itip-utils.c:376
#, fuzzy
msgid "Free/Busy information"
msgstr "Informasjon"

#: calendar/gui/itip-utils.c:321
#, fuzzy
msgid "Calendar information"
msgstr "Informasjon"

#: calendar/gui/itip-utils.c:370
#, fuzzy, c-format
msgid "Free/Busy information (%s to %s)"
msgstr "Informasjon"

#: calendar/gui/itip-utils.c:382
#, fuzzy
msgid "iCalendar information"
msgstr "Informasjon"

#: calendar/gui/itip-utils.c:581
msgid "You must be an attendee of the event."
msgstr ""

#: calendar/gui/main.c:91
#, fuzzy
msgid "Could not create the component editor factory"
msgstr ""
"Kunne ikkje laga mellombels fil\n"
"%1:\n"
"%2"

#: calendar/gui/print.c:425
msgid "1st"
msgstr "1."

#: calendar/gui/print.c:425
msgid "2nd"
msgstr "2."

#: calendar/gui/print.c:425
msgid "3rd"
msgstr "3."

#: calendar/gui/print.c:425
msgid "4th"
msgstr "4."

#: calendar/gui/print.c:425
msgid "5th"
msgstr "5."

#: calendar/gui/print.c:426
msgid "6th"
msgstr "6."

#: calendar/gui/print.c:426
msgid "7th"
msgstr "7."

#: calendar/gui/print.c:426
msgid "8th"
msgstr "8."

#: calendar/gui/print.c:426
msgid "9th"
msgstr "9."

#: calendar/gui/print.c:426
msgid "10th"
msgstr "10."

#: calendar/gui/print.c:427
msgid "11th"
msgstr "11."

#: calendar/gui/print.c:427
msgid "12th"
msgstr "12."

#: calendar/gui/print.c:427
msgid "13th"
msgstr "13."

#: calendar/gui/print.c:427
msgid "14th"
msgstr "14."

#: calendar/gui/print.c:427
msgid "15th"
msgstr "15."

#: calendar/gui/print.c:428
msgid "16th"
msgstr "16."

#: calendar/gui/print.c:428
msgid "17th"
msgstr "17."

#: calendar/gui/print.c:428
msgid "18th"
msgstr "18."

#: calendar/gui/print.c:428
msgid "19th"
msgstr "19."

#: calendar/gui/print.c:428
msgid "20th"
msgstr "20."

#: calendar/gui/print.c:429
msgid "21st"
msgstr "21."

#: calendar/gui/print.c:429
msgid "22nd"
msgstr "22."

#: calendar/gui/print.c:429
msgid "23rd"
msgstr "23."

#: calendar/gui/print.c:429
msgid "24th"
msgstr "24."

#: calendar/gui/print.c:429
msgid "25th"
msgstr "25."

#: calendar/gui/print.c:430
msgid "26th"
msgstr "26."

#: calendar/gui/print.c:430
msgid "27th"
msgstr "27."

#: calendar/gui/print.c:430
msgid "28th"
msgstr "28."

#: calendar/gui/print.c:430
msgid "29th"
msgstr "29."

#: calendar/gui/print.c:430
msgid "30th"
msgstr "30."

#: calendar/gui/print.c:431
msgid "31st"
msgstr "31."

#: calendar/gui/print.c:498
msgid "Su"
msgstr "Sun"

#: calendar/gui/print.c:498
msgid "Mo"
msgstr "Mån"

#: calendar/gui/print.c:498
msgid "Tu"
msgstr "Tys"

#: calendar/gui/print.c:498
msgid "We"
msgstr "Ons"

#: calendar/gui/print.c:499
msgid "Th"
msgstr "Tor"

#: calendar/gui/print.c:499
msgid "Fr"
msgstr "Fre"

#: calendar/gui/print.c:499
msgid "Sa"
msgstr "Lau"

#. Day
#: calendar/gui/print.c:1819
msgid "Selected day (%a %b %d %Y)"
msgstr "Vald dag (%a %d %b %Y)"

#: calendar/gui/print.c:1844 calendar/gui/print.c:1848
msgid "%a %b %d"
msgstr "%a %d. %b"

#: calendar/gui/print.c:1845
msgid "%a %d %Y"
msgstr "%a %d %Y"

#: calendar/gui/print.c:1849 calendar/gui/print.c:1851
#: calendar/gui/print.c:1852
msgid "%a %b %d %Y"
msgstr "%a %d %b %Y"

#: calendar/gui/print.c:1856
#, c-format
msgid "Selected week (%s - %s)"
msgstr "Vald veke (%s - %s)"

#. Month
#: calendar/gui/print.c:1864
msgid "Selected month (%b %Y)"
msgstr "Vald månad (%b %Y)"

#. Year
#: calendar/gui/print.c:1871
msgid "Selected year (%Y)"
msgstr "Vald år (%Y)"

#: calendar/gui/print.c:2205
msgid "Task"
msgstr "Oppgåve"

#: calendar/gui/print.c:2262
#, c-format
msgid "Status: %s"
msgstr "Status: %s"

#: calendar/gui/print.c:2280
#, c-format
msgid "Priority: %s"
msgstr "Prioritet: %s"

#: calendar/gui/print.c:2294
#, c-format
msgid "Percent Complete: %i"
msgstr "Prosent ferdig: %i"

#: calendar/gui/print.c:2306
#, c-format
msgid "URL: %s"
msgstr "URL: %s"

#: calendar/gui/print.c:2320
#, c-format
msgid "Categories: %s"
msgstr "Kategoriar %s"

#: calendar/gui/print.c:2331
msgid "Contacts: "
msgstr "Kontaktar: "

#: calendar/gui/print.c:2386
msgid "Print Calendar"
msgstr "Skriv ut kalendar"

#: calendar/gui/print.c:2477 calendar/gui/print.c:2569
#: mail/mail-callbacks.c:2512 my-evolution/e-summary.c:605
#: ui/evolution-addressbook.xml.h:17 ui/evolution-mail-message.xml.h:68
msgid "Print Preview"
msgstr "Førehandsvising av utskrift"

#: calendar/gui/print.c:2506
msgid "Print Item"
msgstr "Skriv ut element"

#: calendar/gui/print.c:2587
msgid "Print Setup"
msgstr "Utskriftoppsett"

#: calendar/gui/tasks-control-factory.c:75
msgid ""
"Could not create the tasks view.  Please check your ORBit and OAF setup."
msgstr ""

#: calendar/gui/tasks-control.c:137
#, fuzzy
msgid "The URI of the tasks folder to display"
msgstr "Viser korleis datoverdiar vert viste."

#: calendar/gui/tasks-control.c:434
msgid ""
"This operation will permanently erase all tasks marked as completed. If you "
"continue, you will not be able to recover these tasks.\n"
"\n"
"Really erase these tasks?"
msgstr ""

#: calendar/gui/tasks-control.c:441 mail/mail-callbacks.c:2249
msgid "Do not ask me again."
msgstr "Ikkje spør igjen"

#: calendar/gui/tasks-migrate.c:105
msgid ""
"Evolution has taken the tasks that were in your calendar folder and "
"automatically migrated them to the new tasks folder."
msgstr ""

#: calendar/gui/tasks-migrate.c:108
msgid ""
"Evolution has tried to take the tasks that were in your calendar folder and "
"migrate them to the new tasks folder.\n"
"Some of the tasks could not be migrated, so this process may be attempted "
"again in the future."
msgstr ""

#: calendar/gui/tasks-migrate.c:120
#, c-format
msgid ""
"Could not open `%s'; no items from the calendar folder will be migrated to "
"the tasks folder."
msgstr ""

#: calendar/gui/tasks-migrate.c:133
#, c-format
msgid ""
"The method required to load `%s' is not supported; no items from the "
"calendar folder will be migrated to the tasks folder."
msgstr ""

#: calendar/gui/weekday-picker.c:314 calendar/gui/weekday-picker.c:409
msgid "SMTWTFS"
msgstr "MTOTFLS"

#: calendar/importers/GNOME_Evolution_Calendar_Importer.oaf.in.h:1
#, fuzzy
msgid "Factory to import iCalendar files into Evolution"
msgstr "Fabrikk for å importere VCard-filer inn i Evolution."

#: calendar/importers/GNOME_Evolution_Calendar_Importer.oaf.in.h:2
#, fuzzy
msgid "Imports iCalendar files into Evolution"
msgstr "Importerar VCard-filer inn i Evolution."

#: calendar/pcs/query.c:246
msgid "time-now expects 0 arguments"
msgstr ""

#: calendar/pcs/query.c:270
msgid "make-time expects 1 argument"
msgstr ""

#: calendar/pcs/query.c:275
msgid "make-time expects argument 1 to be a string"
msgstr ""

#: calendar/pcs/query.c:283
msgid "make-time argument 1 must be an ISO 8601 date/time string"
msgstr ""

#: calendar/pcs/query.c:312
msgid "time-add-day expects 2 arguments"
msgstr ""

#: calendar/pcs/query.c:317
msgid "time-add-day expects argument 1 to be a time_t"
msgstr ""

#: calendar/pcs/query.c:324
msgid "time-add-day expects argument 2 to be an integer"
msgstr ""

#: calendar/pcs/query.c:351
msgid "time-day-begin expects 1 argument"
msgstr ""

#: calendar/pcs/query.c:356
msgid "time-day-begin expects argument 1 to be a time_t"
msgstr ""

#: calendar/pcs/query.c:383
msgid "time-day-end expects 1 argument"
msgstr ""

#: calendar/pcs/query.c:388
msgid "time-day-end expects argument 1 to be a time_t"
msgstr ""

#: calendar/pcs/query.c:424
msgid "get-vtype expects 0 arguments"
msgstr ""

#: calendar/pcs/query.c:520
msgid "occur-in-time-range? expects 2 arguments"
msgstr ""

#: calendar/pcs/query.c:525
msgid "occur-in-time-range? expects argument 1 to be a time_t"
msgstr ""

#: calendar/pcs/query.c:532
msgid "occur-in-time-range? expects argument 2 to be a time_t"
msgstr ""

#: calendar/pcs/query.c:662
msgid "contains? expects 2 arguments"
msgstr ""

#: calendar/pcs/query.c:667
msgid "contains? expects argument 1 to be a string"
msgstr ""

#: calendar/pcs/query.c:674
msgid "contains? expects argument 2 to be a string"
msgstr ""

#: calendar/pcs/query.c:691
msgid ""
"contains? expects argument 1 to be one of \"any\", \"summary\", \"description"
"\""
msgstr ""

#: calendar/pcs/query.c:733
msgid "has-categories? expects at least 1 argument"
msgstr ""

#: calendar/pcs/query.c:745
msgid ""
"has-categories? expects all arguments to be strings or one and only one "
"argument to be a boolean false (#f)"
msgstr ""

#: calendar/pcs/query.c:833
msgid "is-completed? expects 0 arguments"
msgstr ""

#: calendar/pcs/query.c:878
msgid "completed-before? expects 1 argument"
msgstr ""

#: calendar/pcs/query.c:883
msgid "completed-before? expects argument 1 to be a time_t"
msgstr ""

#: calendar/pcs/query.c:1160
msgid "Evaluation of the search expression did not yield a boolean value"
msgstr ""

#.
#. * These are the timezone names from the Olson timezone data.
#. * We only place them here so gettext picks them up for translation.
#. * Don't include in any C files.
#.
#: calendar/zones.h:7
msgid "Africa/Abidjan"
msgstr "Afrika/Abidjan"

#: calendar/zones.h:8
msgid "Africa/Accra"
msgstr "Afrika/Accra"

#: calendar/zones.h:9
msgid "Africa/Addis_Ababa"
msgstr "Afrika/Addis_Ababa"

#: calendar/zones.h:10
msgid "Africa/Algiers"
msgstr "Afrika/Algiers"

#: calendar/zones.h:11
msgid "Africa/Asmera"
msgstr "Afrika/Asmera"

#: calendar/zones.h:12
msgid "Africa/Bamako"
msgstr "Afrika/Bamako"

#: calendar/zones.h:13
msgid "Africa/Bangui"
msgstr "Afrika/Bangui"

#: calendar/zones.h:14
msgid "Africa/Banjul"
msgstr "Afrika/Banjul"

#: calendar/zones.h:15
msgid "Africa/Bissau"
msgstr "Afrika/Bissau"

#: calendar/zones.h:16
msgid "Africa/Blantyre"
msgstr "Afrika/Blantyre"

#: calendar/zones.h:17
msgid "Africa/Brazzaville"
msgstr "Afrika/Brazzaville"

#: calendar/zones.h:18
msgid "Africa/Bujumbura"
msgstr "Afrika/Bujumbura"

#: calendar/zones.h:19
msgid "Africa/Cairo"
msgstr "Afrika/Kairo"

#: calendar/zones.h:20
msgid "Africa/Casablanca"
msgstr "Afrika/Casablanca"

#: calendar/zones.h:21
msgid "Africa/Ceuta"
msgstr "Afrika/Ceuta"

#: calendar/zones.h:22
msgid "Africa/Conakry"
msgstr "Afrika/Conakry"

#: calendar/zones.h:23
msgid "Africa/Dakar"
msgstr "Afrika/Dakar"

#: calendar/zones.h:24
msgid "Africa/Dar_es_Salaam"
msgstr "Afrika/Dar_es_Salaam"

#: calendar/zones.h:25
msgid "Africa/Djibouti"
msgstr "Afrika/Djibouti"

#: calendar/zones.h:26
msgid "Africa/Douala"
msgstr "Afrika/Douala"

#: calendar/zones.h:27
msgid "Africa/El_Aaiun"
msgstr "Afrika/El_Aaiun"

#: calendar/zones.h:28
msgid "Africa/Freetown"
msgstr "Afrika/Freetown"

#: calendar/zones.h:29
msgid "Africa/Gaborone"
msgstr "Afrika/Gaborone"

#: calendar/zones.h:30
msgid "Africa/Harare"
msgstr "Afrika/Harare"

#: calendar/zones.h:31
msgid "Africa/Johannesburg"
msgstr "Afrika/Johannesburg"

#: calendar/zones.h:32
msgid "Africa/Kampala"
msgstr "Afrika/Kampala"

#: calendar/zones.h:33
msgid "Africa/Khartoum"
msgstr "Afrika/Khartoum"

#: calendar/zones.h:34
msgid "Africa/Kigali"
msgstr "Afrika/Kigali"

#: calendar/zones.h:35
msgid "Africa/Kinshasa"
msgstr "Afrika/Kinshasa"

#: calendar/zones.h:36
msgid "Africa/Lagos"
msgstr "Afrika/Lagos"

#: calendar/zones.h:37
msgid "Africa/Libreville"
msgstr "Afrika/Libreville"

#: calendar/zones.h:38
msgid "Africa/Lome"
msgstr "Afrika/Lome"

#: calendar/zones.h:39
msgid "Africa/Luanda"
msgstr "Afrika/Luanda"

#: calendar/zones.h:40
msgid "Africa/Lubumbashi"
msgstr "Afrika/Lubumbashi"

#: calendar/zones.h:41
msgid "Africa/Lusaka"
msgstr "Afrika/Lusaka"

#: calendar/zones.h:42
msgid "Africa/Malabo"
msgstr "Afrika/Malabo"

#: calendar/zones.h:43
msgid "Africa/Maputo"
msgstr "Afrika/Maputo"

#: calendar/zones.h:44
msgid "Africa/Maseru"
msgstr "Afrika/Maseru"

#: calendar/zones.h:45
msgid "Africa/Mbabane"
msgstr "Afrika/Mbabane"

#: calendar/zones.h:46
msgid "Africa/Mogadishu"
msgstr "Afrika/Mogadishu"

#: calendar/zones.h:47
msgid "Africa/Monrovia"
msgstr "Afrika/Monrovia"

#: calendar/zones.h:48
msgid "Africa/Nairobi"
msgstr "Afrika/Nairobi"

#: calendar/zones.h:49
msgid "Africa/Ndjamena"
msgstr "Afrika/Ndjamena"

#: calendar/zones.h:50
msgid "Africa/Niamey"
msgstr "Afrika/Niamey"

#: calendar/zones.h:51
msgid "Africa/Nouakchott"
msgstr "Afrika/Nouakchott"

#: calendar/zones.h:52
msgid "Africa/Ouagadougou"
msgstr "Afrika/Ouagadougou"

#: calendar/zones.h:53
msgid "Africa/Porto-Novo"
msgstr "Afrika/Porto-Novo"

#: calendar/zones.h:54
msgid "Africa/Sao_Tome"
msgstr "Afrika/Sao_Tome"

#: calendar/zones.h:55
msgid "Africa/Timbuktu"
msgstr "Afrika/Timbuktu"

#: calendar/zones.h:56
msgid "Africa/Tripoli"
msgstr "Afrika/Tripoli"

#: calendar/zones.h:57
msgid "Africa/Tunis"
msgstr "Afrika/Tunis"

#: calendar/zones.h:58
msgid "Africa/Windhoek"
msgstr "Afrika/Windhoek"

#: calendar/zones.h:59
msgid "America/Adak"
msgstr "Amerika/Adak"

#: calendar/zones.h:60
msgid "America/Anchorage"
msgstr "Amerika/Anchorage"

#: calendar/zones.h:61
msgid "America/Anguilla"
msgstr "Amerika/Anguilla"

#: calendar/zones.h:62
msgid "America/Antigua"
msgstr "Amerika/Antigua"

#: calendar/zones.h:63
msgid "America/Araguaina"
msgstr "Amerika/Araguaina"

#: calendar/zones.h:64
msgid "America/Aruba"
msgstr "Amerika/Aruba"

#: calendar/zones.h:65
msgid "America/Asuncion"
msgstr "Amerika/Asuncion"

#: calendar/zones.h:66
msgid "America/Barbados"
msgstr "Amerika/Barbados"

#: calendar/zones.h:67
msgid "America/Belem"
msgstr "Amerika/Belem"

#: calendar/zones.h:68
msgid "America/Belize"
msgstr "Amerika/Belize"

#: calendar/zones.h:69
msgid "America/Boa_Vista"
msgstr "Amerika/Boa_Vista"

#: calendar/zones.h:70
msgid "America/Bogota"
msgstr "Amerika/Bogota"

#: calendar/zones.h:71
msgid "America/Boise"
msgstr "Amerika/Boise"

#: calendar/zones.h:72
msgid "America/Buenos_Aires"
msgstr "Amerika/Buenos_Aires"

#: calendar/zones.h:73
msgid "America/Cambridge_Bay"
msgstr "Amerika/Cambridge_Bay"

#: calendar/zones.h:74
msgid "America/Cancun"
msgstr "Amerika/Cancun"

#: calendar/zones.h:75
msgid "America/Caracas"
msgstr "Amerika/Caracas"

#: calendar/zones.h:76
msgid "America/Catamarca"
msgstr "Amerika/Catamarca"

#: calendar/zones.h:77
msgid "America/Cayenne"
msgstr "Amerika/Cayenne"

#: calendar/zones.h:78
msgid "America/Cayman"
msgstr "Amerika/Cayman"

#: calendar/zones.h:79
msgid "America/Chicago"
msgstr "Amerika/Chicago"

#: calendar/zones.h:80
msgid "America/Chihuahua"
msgstr "Amerika/Chihuahua"

#: calendar/zones.h:81
msgid "America/Cordoba"
msgstr "Amerika/Cordoba"

#: calendar/zones.h:82
msgid "America/Costa_Rica"
msgstr "Amerika/Costa_Rica"

#: calendar/zones.h:83
msgid "America/Cuiaba"
msgstr "Amerika/Cuiaba"

#: calendar/zones.h:84
msgid "America/Curacao"
msgstr "Amerika/Curacao"

#: calendar/zones.h:85
msgid "America/Danmarkshavn"
msgstr "Amerika/Danmarkshavn"

#: calendar/zones.h:86
msgid "America/Dawson"
msgstr "Amerika/Dawson"

#: calendar/zones.h:87
msgid "America/Dawson_Creek"
msgstr "Amerika/Dawson_Creek"

#: calendar/zones.h:88
msgid "America/Denver"
msgstr "Amerika/Denver"

#: calendar/zones.h:89
msgid "America/Detroit"
msgstr "Amerika/Detroit"

#: calendar/zones.h:90
msgid "America/Dominica"
msgstr "Amerika/Dominica"

#: calendar/zones.h:91
msgid "America/Edmonton"
msgstr "Amerika/Edmonton"

#: calendar/zones.h:92
msgid "America/Eirunepe"
msgstr "Amerika/Eirunepe"

#: calendar/zones.h:93
msgid "America/El_Salvador"
msgstr "Amerika/El_Salvador"

#: calendar/zones.h:94
msgid "America/Fortaleza"
msgstr "Amerika/Fortaleza"

#: calendar/zones.h:95
msgid "America/Glace_Bay"
msgstr "Amerika/Glace_Bay"

#: calendar/zones.h:96
msgid "America/Godthab"
msgstr "Amerika/Godthab"

#: calendar/zones.h:97
msgid "America/Goose_Bay"
msgstr "Amerika/Goose_Bay"

#: calendar/zones.h:98
msgid "America/Grand_Turk"
msgstr "Amerika/Grand_Turk"

#: calendar/zones.h:99
msgid "America/Grenada"
msgstr "Amerika/Grenada"

#: calendar/zones.h:100
msgid "America/Guadeloupe"
msgstr "Amerika/Guadeloupe"

#: calendar/zones.h:101
msgid "America/Guatemala"
msgstr "Amerika/Guatemala"

#: calendar/zones.h:102
msgid "America/Guayaquil"
msgstr "Amerika/Guayaquil"

#: calendar/zones.h:103
msgid "America/Guyana"
msgstr "Amerika/Guyana"

#: calendar/zones.h:104
msgid "America/Halifax"
msgstr "Amerika/Halifax"

#: calendar/zones.h:105
msgid "America/Havana"
msgstr "Amerika/Havana"

#: calendar/zones.h:106
msgid "America/Hermosillo"
msgstr "Amerika/Hermosillo"

#: calendar/zones.h:107
msgid "America/Indiana/Indianapolis"
msgstr "Amerika/Indiana/Indianapolis"

#: calendar/zones.h:108
msgid "America/Indiana/Knox"
msgstr "Amerika/Indiana/Knox"

#: calendar/zones.h:109
msgid "America/Indiana/Marengo"
msgstr "Amerika/Indiana/Marengo"

#: calendar/zones.h:110
msgid "America/Indiana/Vevay"
msgstr "Amerika/Indiana/Vevay"

#: calendar/zones.h:111
msgid "America/Indianapolis"
msgstr "Amerika/Indianapolis"

#: calendar/zones.h:112
msgid "America/Inuvik"
msgstr "Amerika/Inuvik"

#: calendar/zones.h:113
msgid "America/Iqaluit"
msgstr "Amerika/Iqaluit"

#: calendar/zones.h:114
msgid "America/Jamaica"
msgstr "Amerika/Jamaica"

#: calendar/zones.h:115
msgid "America/Jujuy"
msgstr "Amerika/Jujuy"

#: calendar/zones.h:116
msgid "America/Juneau"
msgstr "Amerika/Juneau"

#: calendar/zones.h:117
msgid "America/Kentucky/Louisville"
msgstr "Amerika/Kentucky/Louisville"

#: calendar/zones.h:118
msgid "America/Kentucky/Monticello"
msgstr "Amerika/Kentucky/Monticello"

#: calendar/zones.h:119
msgid "America/La_Paz"
msgstr "Amerika/La_Paz"

#: calendar/zones.h:120
msgid "America/Lima"
msgstr "Amerika/Lima"

#: calendar/zones.h:121
msgid "America/Los_Angeles"
msgstr "Amerika/Los_Angeles"

#: calendar/zones.h:122
msgid "America/Louisville"
msgstr "Amerika/Louisville"

#: calendar/zones.h:123
msgid "America/Maceio"
msgstr "Amerika/Maceio"

#: calendar/zones.h:124
msgid "America/Managua"
msgstr "Amerika/Managua"

#: calendar/zones.h:125
msgid "America/Manaus"
msgstr "Amerika/Manaus"

#: calendar/zones.h:126
msgid "America/Martinique"
msgstr "Amerika/Martinique"

#: calendar/zones.h:127
msgid "America/Mazatlan"
msgstr "Amerika/Mazatlan"

#: calendar/zones.h:128
msgid "America/Mendoza"
msgstr "Amerika/Mendoza"

#: calendar/zones.h:129
msgid "America/Menominee"
msgstr "Amerika/Menominee"

#: calendar/zones.h:130
msgid "America/Merida"
msgstr "Amerika/Merida"

#: calendar/zones.h:131
msgid "America/Mexico_City"
msgstr "Amerika/Mexico_City"

#: calendar/zones.h:132
msgid "America/Miquelon"
msgstr "Amerika/Miquelon"

#: calendar/zones.h:133
msgid "America/Monterrey"
msgstr "Amerika/Monterrey"

#: calendar/zones.h:134
msgid "America/Montevideo"
msgstr "Amerika/Montevideo"

#: calendar/zones.h:135
msgid "America/Montreal"
msgstr "Amerika/Montreal"

#: calendar/zones.h:136
msgid "America/Montserrat"
msgstr "Amerika/Montserrat"

#: calendar/zones.h:137
msgid "America/Nassau"
msgstr "Amerika/Nassau"

#: calendar/zones.h:138
msgid "America/New_York"
msgstr "Amerika/New_York"

#: calendar/zones.h:139
msgid "America/Nipigon"
msgstr "Amerika/Nipigon"

#: calendar/zones.h:140
msgid "America/Nome"
msgstr "Amerika/Nome"

#: calendar/zones.h:141
msgid "America/Noronha"
msgstr "Amerika/Noronha"

#: calendar/zones.h:142
msgid "America/North_Dakota/Center"
msgstr "Amerika/North_Dakota/Center"

#: calendar/zones.h:143
msgid "America/Panama"
msgstr "Amerika/Panama"

#: calendar/zones.h:144
msgid "America/Pangnirtung"
msgstr "Amerika/Pangnirtung"

#: calendar/zones.h:145
msgid "America/Paramaribo"
msgstr "Amerika/Paramaribo"

#: calendar/zones.h:146
msgid "America/Phoenix"
msgstr "Amerika/Phoenix"

#: calendar/zones.h:147
msgid "America/Port-au-Prince"
msgstr "Amerika/Port-au-Prince"

#: calendar/zones.h:148
msgid "America/Port_of_Spain"
msgstr "Amerika/Port_of_Spain"

#: calendar/zones.h:149
msgid "America/Porto_Velho"
msgstr "Amerika/Porto_Velho"

#: calendar/zones.h:150
msgid "America/Puerto_Rico"
msgstr "Amerika/Puerto_Rico"

#: calendar/zones.h:151
msgid "America/Rainy_River"
msgstr "Amerika/Rainy_River"

#: calendar/zones.h:152
msgid "America/Rankin_Inlet"
msgstr "Amerika/Rankin_Inlet"

#: calendar/zones.h:153
msgid "America/Recife"
msgstr "Amerika/Recife"

#: calendar/zones.h:154
msgid "America/Regina"
msgstr "Amerika/Regina"

#: calendar/zones.h:155
msgid "America/Rio_Branco"
msgstr "Amerika/Rio_Branco"

#: calendar/zones.h:156
msgid "America/Rosario"
msgstr "Amerika/Rosario"

#: calendar/zones.h:157
msgid "America/Santiago"
msgstr "Amerika/Santiago"

#: calendar/zones.h:158
msgid "America/Santo_Domingo"
msgstr "Amerika/Santo_Domingo"

#: calendar/zones.h:159
msgid "America/Sao_Paulo"
msgstr "Amerika/Sao_Paulo"

#: calendar/zones.h:160
msgid "America/Scoresbysund"
msgstr "Amerika/Scoresbysund"

#: calendar/zones.h:161
msgid "America/Shiprock"
msgstr "Amerika/Shiprock"

#: calendar/zones.h:162
msgid "America/St_Johns"
msgstr "Amerika/St_Johns"

#: calendar/zones.h:163
msgid "America/St_Kitts"
msgstr "Amerika/St_Kitts"

#: calendar/zones.h:164
msgid "America/St_Lucia"
msgstr "Amerika/St_Lucia"

#: calendar/zones.h:165
msgid "America/St_Thomas"
msgstr "Amerika/St_Thomas"

#: calendar/zones.h:166
msgid "America/St_Vincent"
msgstr "Amerika/St_Vincent"

#: calendar/zones.h:167
msgid "America/Swift_Current"
msgstr "Amerika/Swift_Current"

#: calendar/zones.h:168
msgid "America/Tegucigalpa"
msgstr "Amerika/Tegucigalpa"

#: calendar/zones.h:169
msgid "America/Thule"
msgstr "Amerika/Thule"

#: calendar/zones.h:170
msgid "America/Thunder_Bay"
msgstr "Amerika/Thunder_Bay"

#: calendar/zones.h:171
msgid "America/Tijuana"
msgstr "Amerika/Tijuana"

#: calendar/zones.h:172
msgid "America/Tortola"
msgstr "Amerika/Tortola"

#: calendar/zones.h:173
msgid "America/Vancouver"
msgstr "Amerika/Vancouver"

#: calendar/zones.h:174
msgid "America/Whitehorse"
msgstr "Amerika/Whitehorse"

#: calendar/zones.h:175
msgid "America/Winnipeg"
msgstr "Amerika/Winnipeg"

#: calendar/zones.h:176
msgid "America/Yakutat"
msgstr "Amerika/Yakutat"

#: calendar/zones.h:177
msgid "America/Yellowknife"
msgstr "Amerika/Yellowknife"

#: calendar/zones.h:178
msgid "Antarctica/Casey"
msgstr "Anatarktis/Casey"

#: calendar/zones.h:179
msgid "Antarctica/Davis"
msgstr "Antarktis/Davis"

#: calendar/zones.h:180
msgid "Antarctica/DumontDUrville"
msgstr "Antarktis/DumontDUrville"

#: calendar/zones.h:181
msgid "Antarctica/Mawson"
msgstr "Antarktis/Mawson"

#: calendar/zones.h:182
msgid "Antarctica/McMurdo"
msgstr "Antarktis/McMurdo"

#: calendar/zones.h:183
msgid "Antarctica/Palmer"
msgstr "Antarktis/Palmer"

#: calendar/zones.h:184
msgid "Antarctica/South_Pole"
msgstr "Antarktis/Sør_Polen"

#: calendar/zones.h:185
msgid "Antarctica/Syowa"
msgstr "Anatarktis/Syowa"

#: calendar/zones.h:186
msgid "Antarctica/Vostok"
msgstr "Anatarktis/Vostok"

#: calendar/zones.h:187
msgid "Arctic/Longyearbyen"
msgstr "Artiks/Longyaerbyen"

#: calendar/zones.h:188
msgid "Asia/Aden"
msgstr "Asia/Aden"

#: calendar/zones.h:189
msgid "Asia/Almaty"
msgstr "Asia/Almaty"

#: calendar/zones.h:190
msgid "Asia/Amman"
msgstr "Asia/Amman"

#: calendar/zones.h:191
msgid "Asia/Anadyr"
msgstr "Asia/Anadyr"

#: calendar/zones.h:192
msgid "Asia/Aqtau"
msgstr "Asia/Aqtau"

#: calendar/zones.h:193
msgid "Asia/Aqtobe"
msgstr "Asia/Aqtobe"

#: calendar/zones.h:194
msgid "Asia/Ashgabat"
msgstr "Asia/Ashgabat"

#: calendar/zones.h:195
msgid "Asia/Baghdad"
msgstr "Asia/Baghdad"

#: calendar/zones.h:196
msgid "Asia/Bahrain"
msgstr "Asia/Bahrain"

#: calendar/zones.h:197
msgid "Asia/Baku"
msgstr "Asia/Baku"

#: calendar/zones.h:198
msgid "Asia/Bangkok"
msgstr "Asia/Bangkok"

#: calendar/zones.h:199
msgid "Asia/Beirut"
msgstr "Asia/Beirut"

#: calendar/zones.h:200
msgid "Asia/Bishkek"
msgstr "Asia/Bishkek"

#: calendar/zones.h:201
msgid "Asia/Brunei"
msgstr "Asia/Brunei"

#: calendar/zones.h:202
msgid "Asia/Calcutta"
msgstr "Asia/Calcutta"

#: calendar/zones.h:203
msgid "Asia/Choibalsan"
msgstr "Asia/Choibalsan"

#: calendar/zones.h:204
msgid "Asia/Chongqing"
msgstr "Asia/Chongqing"

#: calendar/zones.h:205
msgid "Asia/Colombo"
msgstr "Asia/Colombo"

#: calendar/zones.h:206
msgid "Asia/Damascus"
msgstr "Asia/Damascus"

#: calendar/zones.h:207
msgid "Asia/Dhaka"
msgstr "Asia/Dhaka"

#: calendar/zones.h:208
msgid "Asia/Dili"
msgstr "Asia/Dili"

#: calendar/zones.h:209
msgid "Asia/Dubai"
msgstr "Asia/Dubai"

#: calendar/zones.h:210
msgid "Asia/Dushanbe"
msgstr "Asia/Dushanbe"

#: calendar/zones.h:211
msgid "Asia/Gaza"
msgstr "Asia/Gaza"

#: calendar/zones.h:212
msgid "Asia/Harbin"
msgstr "Asia/Harbin"

#: calendar/zones.h:213
msgid "Asia/Hong_Kong"
msgstr "Asia/Hong_Kong"

#: calendar/zones.h:214
msgid "Asia/Hovd"
msgstr "Asia/Hovd"

#: calendar/zones.h:215
msgid "Asia/Irkutsk"
msgstr "Asia/Irkutsk"

#: calendar/zones.h:216
msgid "Asia/Istanbul"
msgstr "Asia/Istanbul"

#: calendar/zones.h:217
msgid "Asia/Jakarta"
msgstr "Asia/Jakarta"

#: calendar/zones.h:218
msgid "Asia/Jayapura"
msgstr "Asia/Jayapura"

#: calendar/zones.h:219
msgid "Asia/Jerusalem"
msgstr "Asia/Jerusalem"

#: calendar/zones.h:220
msgid "Asia/Kabul"
msgstr "Asia/Kabul"

#: calendar/zones.h:221
msgid "Asia/Kamchatka"
msgstr "Asia/Kamjatka"

#: calendar/zones.h:222
msgid "Asia/Karachi"
msgstr "Asia/Karachi"

#: calendar/zones.h:223
msgid "Asia/Kashgar"
msgstr "Asia/Kashgar"

#: calendar/zones.h:224
msgid "Asia/Katmandu"
msgstr "Asia/Katmandu"

#: calendar/zones.h:225
msgid "Asia/Krasnoyarsk"
msgstr "Asia/Krasnoyarsk"

#: calendar/zones.h:226
msgid "Asia/Kuala_Lumpur"
msgstr "Asia/Kuala_Lumpur"

#: calendar/zones.h:227
msgid "Asia/Kuching"
msgstr "Asia/Kuching"

#: calendar/zones.h:228
msgid "Asia/Kuwait"
msgstr "Asia/Kuwait"

#: calendar/zones.h:229
msgid "Asia/Macao"
msgstr "Asia/Macao"

#: calendar/zones.h:230
msgid "Asia/Magadan"
msgstr "Asia/Magadan"

#: calendar/zones.h:231
msgid "Asia/Manila"
msgstr "Asia/Manila"

#: calendar/zones.h:232
msgid "Asia/Muscat"
msgstr "Asia/Muscat"

#: calendar/zones.h:233
msgid "Asia/Nicosia"
msgstr "Asia/Nicosia"

#: calendar/zones.h:234
msgid "Asia/Novosibirsk"
msgstr "Asia/Novosibirsk"

#: calendar/zones.h:235
msgid "Asia/Omsk"
msgstr "Asia/Omsk"

#: calendar/zones.h:236
msgid "Asia/Phnom_Penh"
msgstr "Asia/Phnom_Penh"

#: calendar/zones.h:237
msgid "Asia/Pontianak"
msgstr "Asia/Pontianak"

#: calendar/zones.h:238
msgid "Asia/Pyongyang"
msgstr "Asia/Pyongyang"

#: calendar/zones.h:239
msgid "Asia/Qatar"
msgstr "Asia/Qatar"

#: calendar/zones.h:240
msgid "Asia/Rangoon"
msgstr "Asia/Rangoon"

#: calendar/zones.h:241
msgid "Asia/Riyadh"
msgstr "Asia/Riyadh"

#: calendar/zones.h:242
msgid "Asia/Saigon"
msgstr "Asia/Saigon"

#: calendar/zones.h:243
msgid "Asia/Sakhalin"
msgstr "Asia/Sakhalin"

#: calendar/zones.h:244
msgid "Asia/Samarkand"
msgstr "Asia/Samarkand"

#: calendar/zones.h:245
msgid "Asia/Seoul"
msgstr "Asia/Seoul"

#: calendar/zones.h:246
msgid "Asia/Shanghai"
msgstr "Asia/Shanghai"

#: calendar/zones.h:247
msgid "Asia/Singapore"
msgstr "Asia/Singapore"

#: calendar/zones.h:248
msgid "Asia/Taipei"
msgstr "Asia/Taipei"

#: calendar/zones.h:249
msgid "Asia/Tashkent"
msgstr "Asia/Tashkent"

#: calendar/zones.h:250
msgid "Asia/Tbilisi"
msgstr "Asia/Tbilisi"

#: calendar/zones.h:251
msgid "Asia/Tehran"
msgstr "Asia/Tehran"

#: calendar/zones.h:252
msgid "Asia/Thimphu"
msgstr "Asia/Thimphu"

#: calendar/zones.h:253
msgid "Asia/Tokyo"
msgstr "Asia/Tokyo"

#: calendar/zones.h:254
msgid "Asia/Ujung_Pandang"
msgstr "Asia/Ujung_Pandang"

#: calendar/zones.h:255
msgid "Asia/Ulaanbaatar"
msgstr "Asia/Ulaanbaatar"

#: calendar/zones.h:256
msgid "Asia/Urumqi"
msgstr "Asia/Urumqi"

#: calendar/zones.h:257
msgid "Asia/Vientiane"
msgstr "Asia/Vientiane"

#: calendar/zones.h:258
msgid "Asia/Vladivostok"
msgstr "Asia/Vladivostok"

#: calendar/zones.h:259
msgid "Asia/Yakutsk"
msgstr "Asia/Yakutsk"

#: calendar/zones.h:260
msgid "Asia/Yekaterinburg"
msgstr "Asia/Yekaterinburg"

#: calendar/zones.h:261
msgid "Asia/Yerevan"
msgstr "Asia/Yerevan"

#: calendar/zones.h:262
msgid "Atlantic/Azores"
msgstr "Atlantisk/Azores"

#: calendar/zones.h:263
msgid "Atlantic/Bermuda"
msgstr "Atlantisk/Bermuda"

#: calendar/zones.h:264
msgid "Atlantic/Canary"
msgstr "Atlantisk/Canary"

#: calendar/zones.h:265
msgid "Atlantic/Cape_Verde"
msgstr "Atlantisk/Cape_Verde"

#: calendar/zones.h:266
msgid "Atlantic/Faeroe"
msgstr "Atlantisk/Færøyane"

#: calendar/zones.h:267
#, fuzzy
msgid "Atlantic/Jan_Mayen"
msgstr "Atlantisk/Jan_Mayen"

#: calendar/zones.h:268
#, fuzzy
msgid "Atlantic/Madeira"
msgstr "Atlantisk/Madeira"

#: calendar/zones.h:269
#, fuzzy
msgid "Atlantic/Reykjavik"
msgstr "Atlantisk/Reykjavik"

#: calendar/zones.h:270
#, fuzzy
msgid "Atlantic/South_Georgia"
msgstr "Atlantisk/South_Georgia"

#: calendar/zones.h:271
#, fuzzy
msgid "Atlantic/St_Helena"
msgstr "Atlantisk/St_Helena"

#: calendar/zones.h:272
#, fuzzy
msgid "Atlantic/Stanley"
msgstr "Atlantisk/Stanley"

#: calendar/zones.h:273
msgid "Australia/Adelaide"
msgstr "Australia/Adelaide"

#: calendar/zones.h:274
msgid "Australia/Brisbane"
msgstr "Australia/Brisbane"

#: calendar/zones.h:275
msgid "Australia/Broken_Hill"
msgstr "Australia/Broken_Hill"

#: calendar/zones.h:276
msgid "Australia/Darwin"
msgstr "Australia/Darwin"

#: calendar/zones.h:277
msgid "Australia/Hobart"
msgstr "Australia/Hobart"

#: calendar/zones.h:278
msgid "Australia/Lindeman"
msgstr "Australia/Lindeman"

#: calendar/zones.h:279
msgid "Australia/Lord_Howe"
msgstr "Australia/Lord_Howe"

#: calendar/zones.h:280
msgid "Australia/Melbourne"
msgstr "Australia/Melbourne"

#: calendar/zones.h:281
msgid "Australia/Perth"
msgstr "Australia/Perth"

#: calendar/zones.h:282
msgid "Australia/Sydney"
msgstr "Australia/Sydney"

#: calendar/zones.h:283
msgid "Europe/Amsterdam"
msgstr "Europa/Amsterdam"

#: calendar/zones.h:284
msgid "Europe/Andorra"
msgstr "Europa/Andorra"

#: calendar/zones.h:285
msgid "Europe/Athens"
msgstr "Europa/Athen"

#: calendar/zones.h:286
msgid "Europe/Belfast"
msgstr "Europa/Belfast"

#: calendar/zones.h:287
msgid "Europe/Belgrade"
msgstr "Europa/Beograd"

#: calendar/zones.h:288
msgid "Europe/Berlin"
msgstr "Europa/Berlin"

#: calendar/zones.h:289
msgid "Europe/Bratislava"
msgstr "Europa/Bratislava"

#: calendar/zones.h:290
msgid "Europe/Brussels"
msgstr "Europa/Brüssel"

#: calendar/zones.h:291
msgid "Europe/Bucharest"
msgstr "Europa/Bucaresti"

#: calendar/zones.h:292
msgid "Europe/Budapest"
msgstr "Europa/Budapest"

#: calendar/zones.h:293
msgid "Europe/Chisinau"
msgstr "Europe/Chisinau"

#: calendar/zones.h:294
msgid "Europe/Copenhagen"
msgstr "Europa/København"

#: calendar/zones.h:295
msgid "Europe/Dublin"
msgstr "Europa/Dublin"

#: calendar/zones.h:296
msgid "Europe/Gibraltar"
msgstr "Europa/Gibraltar"

#: calendar/zones.h:297
msgid "Europe/Helsinki"
msgstr "Europa/Helsinki"

#: calendar/zones.h:298
msgid "Europe/Istanbul"
msgstr "Europa/Istanbul"

#: calendar/zones.h:299
msgid "Europe/Kaliningrad"
msgstr "Europa/Kaliningrad"

#: calendar/zones.h:300
msgid "Europe/Kiev"
msgstr "Europa/Kiev"

#: calendar/zones.h:301
msgid "Europe/Lisbon"
msgstr "Europa/Lisboa"

#: calendar/zones.h:302
msgid "Europe/Ljubljana"
msgstr "Europa/Ljubljana"

#: calendar/zones.h:303
msgid "Europe/London"
msgstr "Europa/London"

#: calendar/zones.h:304
msgid "Europe/Luxembourg"
msgstr "Europa/Luxembourg"

#: calendar/zones.h:305
msgid "Europe/Madrid"
msgstr "Europa/Madrid"

#: calendar/zones.h:306
msgid "Europe/Malta"
msgstr "Europa/Malta"

#: calendar/zones.h:307
msgid "Europe/Minsk"
msgstr "Europa/Minsk"

#: calendar/zones.h:308
msgid "Europe/Monaco"
msgstr "Europa/Monaco"

#: calendar/zones.h:309
msgid "Europe/Moscow"
msgstr "Europa/Moskva"

#: calendar/zones.h:310
msgid "Europe/Nicosia"
msgstr "Europa/Nicosia"

#: calendar/zones.h:311
msgid "Europe/Oslo"
msgstr "Europa/Oslo"

#: calendar/zones.h:312
msgid "Europe/Paris"
msgstr "Europa/Paris"

#: calendar/zones.h:313
msgid "Europe/Prague"
msgstr "Europa/Praha"

#: calendar/zones.h:314
msgid "Europe/Riga"
msgstr "Europa/Riga"

#: calendar/zones.h:315
msgid "Europe/Rome"
msgstr "Europa/Roma"

#: calendar/zones.h:316
msgid "Europe/Samara"
msgstr "Europa/Samara"

#: calendar/zones.h:317
msgid "Europe/San_Marino"
msgstr "Europa/San_Marino"

#: calendar/zones.h:318
msgid "Europe/Sarajevo"
msgstr "Europa/Sarajevo"

#: calendar/zones.h:319
msgid "Europe/Simferopol"
msgstr "Europe/Simferopol"

#: calendar/zones.h:320
msgid "Europe/Skopje"
msgstr "Europa/Skopje"

#: calendar/zones.h:321
msgid "Europe/Sofia"
msgstr "Europa/Sofia"

#: calendar/zones.h:322
msgid "Europe/Stockholm"
msgstr "Europa/Stockholm"

#: calendar/zones.h:323
msgid "Europe/Tallinn"
msgstr "Europa/Tallinn"

#: calendar/zones.h:324
msgid "Europe/Tirane"
msgstr "Europa/Tirana"

#: calendar/zones.h:325
msgid "Europe/Uzhgorod"
msgstr "Europa/Uzhgorod"

#: calendar/zones.h:326
msgid "Europe/Vaduz"
msgstr "Europa/Vaduz"

#: calendar/zones.h:327
msgid "Europe/Vatican"
msgstr "Europa/Vatikan"

#: calendar/zones.h:328
msgid "Europe/Vienna"
msgstr "Europa/Wien"

#: calendar/zones.h:329
msgid "Europe/Vilnius"
msgstr "Europa/Vilnius"

#: calendar/zones.h:330
msgid "Europe/Warsaw"
msgstr "Europa/Warsawa"

#: calendar/zones.h:331
msgid "Europe/Zagreb"
msgstr "Europa/Zagreb"

#: calendar/zones.h:332
msgid "Europe/Zaporozhye"
msgstr "Europe/Zaporozhye"

#: calendar/zones.h:333
msgid "Europe/Zurich"
msgstr "Europa/Zürich"

#: calendar/zones.h:334
msgid "Indian/Antananarivo"
msgstr ""

#: calendar/zones.h:335
msgid "Indian/Chagos"
msgstr ""

#: calendar/zones.h:336
msgid "Indian/Christmas"
msgstr ""

#: calendar/zones.h:337
msgid "Indian/Cocos"
msgstr ""

#: calendar/zones.h:338
#, fuzzy
msgid "Indian/Comoro"
msgstr "Lukk"

#: calendar/zones.h:339
msgid "Indian/Kerguelen"
msgstr ""

#: calendar/zones.h:340
#, fuzzy
msgid "Indian/Mahe"
msgstr "India"

#: calendar/zones.h:341
msgid "Indian/Maldives"
msgstr ""

#: calendar/zones.h:342
#, fuzzy
msgid "Indian/Mauritius"
msgstr "Marger"

#: calendar/zones.h:343
#, fuzzy
msgid "Indian/Mayotte"
msgstr "Måndag"

#: calendar/zones.h:344
#, fuzzy
msgid "Indian/Reunion"
msgstr "Start om att"

#: calendar/zones.h:345
msgid "Pacific/Apia"
msgstr "Stillehavet/Apia"

#: calendar/zones.h:346
msgid "Pacific/Auckland"
msgstr "Stillehavet/Auckland"

#: calendar/zones.h:347
msgid "Pacific/Chatham"
msgstr "Stillehavet/Chatham"

#: calendar/zones.h:348
msgid "Pacific/Easter"
msgstr "Stillehavet/Påskeøya"

#: calendar/zones.h:349
msgid "Pacific/Efate"
msgstr "Stillehavet/Efate"

#: calendar/zones.h:350
msgid "Pacific/Enderbury"
msgstr "Stillehavet/Enderbury"

#: calendar/zones.h:351
msgid "Pacific/Fakaofo"
msgstr "Stillehavet/Fakaofo"

#: calendar/zones.h:352
msgid "Pacific/Fiji"
msgstr "Stillehavet/Fiji"

#: calendar/zones.h:353
msgid "Pacific/Funafuti"
msgstr "Stillehavet/Funafuti"

#: calendar/zones.h:354
msgid "Pacific/Galapagos"
msgstr "Stillehavet/Galapagos"

#: calendar/zones.h:355
msgid "Pacific/Gambier"
msgstr "Stillehavet/Gambier"

#: calendar/zones.h:356
msgid "Pacific/Guadalcanal"
msgstr "Stillehavet/Guadalcanal"

#: calendar/zones.h:357
msgid "Pacific/Guam"
msgstr "Stillehavet/Guam"

#: calendar/zones.h:358
msgid "Pacific/Honolulu"
msgstr "Stillehavet/Honolulu"

#: calendar/zones.h:359
msgid "Pacific/Johnston"
msgstr "Stillehavet/Johnston"

#: calendar/zones.h:360
msgid "Pacific/Kiritimati"
msgstr "Stillehavet/Kiritimati"

#: calendar/zones.h:361
msgid "Pacific/Kosrae"
msgstr "Stillehavet/Kosrae"

#: calendar/zones.h:362
msgid "Pacific/Kwajalein"
msgstr "Stillehavet/Kwajalein"

#: calendar/zones.h:363
msgid "Pacific/Majuro"
msgstr "Stillehavet/Majuro"

#: calendar/zones.h:364
msgid "Pacific/Marquesas"
msgstr "Stillehavet/Marquesas"

#: calendar/zones.h:365
msgid "Pacific/Midway"
msgstr "Stillehavet/Midway"

#: calendar/zones.h:366
msgid "Pacific/Nauru"
msgstr "Stillehavet/Nauru"

#: calendar/zones.h:367
msgid "Pacific/Niue"
msgstr "Stillehavet/Niue"

#: calendar/zones.h:368
msgid "Pacific/Norfolk"
msgstr "Stillehavet/Norfolk"

#: calendar/zones.h:369
msgid "Pacific/Noumea"
msgstr "Stillehavet/Noumea"

#: calendar/zones.h:370
msgid "Pacific/Pago_Pago"
msgstr "Stillehavet/Pago_Pago"

#: calendar/zones.h:371
msgid "Pacific/Palau"
msgstr "Stillehavet/Palau"

#: calendar/zones.h:372
msgid "Pacific/Pitcairn"
msgstr "Stillehavet/Pitcairn"

#: calendar/zones.h:373
msgid "Pacific/Ponape"
msgstr "Stillehavet/Ponape"

#: calendar/zones.h:374
msgid "Pacific/Port_Moresby"
msgstr "Stillehavet/Port_Moresby"

#: calendar/zones.h:375
msgid "Pacific/Rarotonga"
msgstr "Stillehavet/Rarotonga"

#: calendar/zones.h:376
msgid "Pacific/Saipan"
msgstr "Stillehavet/Saipan"

#: calendar/zones.h:377
msgid "Pacific/Tahiti"
msgstr "Stillehavet/Tahiti"

#: calendar/zones.h:378
msgid "Pacific/Tarawa"
msgstr "Stillehavet/Tarawa"

#: calendar/zones.h:379
msgid "Pacific/Tongatapu"
msgstr "Stillehavet/Tongatapu"

#: calendar/zones.h:380
msgid "Pacific/Truk"
msgstr "Stillehavet/Truk"

#: calendar/zones.h:381
msgid "Pacific/Wake"
msgstr "Stillehavet/Wake"

#: calendar/zones.h:382
msgid "Pacific/Wallis"
msgstr "Stillehavet/Wallis"

#: calendar/zones.h:383
msgid "Pacific/Yap"
msgstr "Stillehavet/Yap"

#: camel/camel-cipher-context.c:169
#, fuzzy
msgid "Signing is not supported by this cipher"
msgstr "Den oppgitte fila finst ikkje"

#: camel/camel-cipher-context.c:209
#, fuzzy
msgid "Clearsigning is not supported by this cipher"
msgstr "Den oppgitte fila finst ikkje"

#: camel/camel-cipher-context.c:249
#, fuzzy
msgid "Verifying is not supported by this cipher"
msgstr "Den oppgitte fila finst ikkje"

#: camel/camel-cipher-context.c:292
#, fuzzy
msgid "Encryption is not supported by this cipher"
msgstr "Knapp (ikkje støtta av KControl)"

#: camel/camel-cipher-context.c:334
#, fuzzy
msgid "Decryption is not supported by this cipher"
msgstr "Den oppgitte fila finst ikkje"

#: camel/camel-data-cache.c:159
#, fuzzy
msgid "Unable to create cache path"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/camel-data-cache.c:426
#, fuzzy, c-format
msgid "Could not remove cache entry: %s: %s"
msgstr ""
"Kan ikkje laga heimekatalog\n"
"Feil: %1"

#: camel/camel-disco-diary.c:180
#, c-format
msgid ""
"Could not write log entry: %s\n"
"Further operations on this server will not be replayed when you\n"
"reconnect to the network."
msgstr ""

#: camel/camel-disco-diary.c:243
#, c-format
msgid ""
"Could not open `%s':\n"
"%s\n"
"Changes made to this folder will not be resynchronized."
msgstr ""
"Klarte ikkje å opne «%s»:\n"
"%s\n"
"Endringar gjort på mappa vil ikkje bli resynkronisert."

#: camel/camel-disco-diary.c:277
#, fuzzy
msgid "Resynchronizing with server"
msgstr "Registrerer hjå tenaren ..."

#: camel/camel-disco-store.c:343
#, fuzzy
msgid "You must be working online to complete this operation"
msgstr "Kan ikkje gjera LIST-operasjon ferdig"

#: camel/camel-filter-driver.c:689 camel/camel-filter-driver.c:698
msgid "Syncing folders"
msgstr "Synkroniserar mapper"

#: camel/camel-filter-driver.c:789 camel/camel-filter-driver.c:1169
#, fuzzy, c-format
msgid "Error parsing filter: %s: %s"
msgstr ""
"Feil ved lesing a fil:\n"
"%1"

#: camel/camel-filter-driver.c:798 camel/camel-filter-driver.c:1175
#, fuzzy, c-format
msgid "Error executing filter: %s: %s"
msgstr ""
"Feil ved lesing a fil:\n"
"%1"

#: camel/camel-filter-driver.c:865
#, fuzzy
msgid "Unable to open spool folder"
msgstr "Kan ikkje 'chown' 'spool'-katalogen"

#: camel/camel-filter-driver.c:874
#, fuzzy
msgid "Unable to process spool folder"
msgstr "Kan ikkje laga 'spool'-katalog"

#: camel/camel-filter-driver.c:889
#, c-format
msgid "Getting message %d (%d%%)"
msgstr "Mottek melding %d (%d%%)"

#: camel/camel-filter-driver.c:893
msgid "Cannot open message"
msgstr "Kan ikkje opne melding"

#: camel/camel-filter-driver.c:894 camel/camel-filter-driver.c:906
#, fuzzy, c-format
msgid "Failed on message %d"
msgstr "Kunne ikkje leggja til melding:\n"

#: camel/camel-filter-driver.c:920 camel/camel-filter-driver.c:1021
msgid "Syncing folder"
msgstr "Synkroniser mapper"

#: camel/camel-filter-driver.c:988
#, fuzzy, c-format
msgid "Getting message %d of %d"
msgstr "Mottek meldingar frå %1"

#: camel/camel-filter-driver.c:1003
#, fuzzy, c-format
msgid "Failed at message %d of %d"
msgstr "Mottek meldingar frå %1"

#: camel/camel-filter-search.c:126
#, fuzzy
msgid "Failed to retrieve message"
msgstr "Klarte ikkje å dekode melding."

#: camel/camel-filter-search.c:543 camel/camel-filter-search.c:551
#, fuzzy, c-format
msgid "Error executing filter search: %s: %s"
msgstr ""
"Feil ved lesing a fil:\n"
"%1"

#: camel/camel-folder-search.c:332
#, fuzzy, c-format
msgid ""
"Cannot parse search expression: %s:\n"
"%s"
msgstr ""
"Feil ved lesing av fil:\n"
"%s"

#: camel/camel-folder-search.c:342
#, fuzzy, c-format
msgid ""
"Error executing search expression: %s:\n"
"%s"
msgstr ""
"Feil ved lesing av fil:\n"
"%s"

#: camel/camel-folder-search.c:559 camel/camel-folder-search.c:587
msgid "(match-all) requires a single bool result"
msgstr ""

#: camel/camel-folder-search.c:638
#, c-format
msgid "Performing query on unknown header: %s"
msgstr ""

#: camel/camel-folder-search.c:750 camel/camel-folder-search.c:794
msgid "Invalid type in body-contains, expecting string"
msgstr ""

#: camel/camel-folder.c:471
#, c-format
msgid "Unsupported operation: append message: for %s"
msgstr ""

#: camel/camel-folder.c:1040
#, fuzzy, c-format
msgid "Unsupported operation: search by expression: for %s"
msgstr ""
"Feil ved lesing av fil:\n"
"%s"

#: camel/camel-folder.c:1080
#, fuzzy, c-format
msgid "Unsupported operation: search by uids: for %s"
msgstr ""
"Feil ved lesing av fil:\n"
"%s"

#: camel/camel-folder.c:1262
msgid "Moving messages"
msgstr "Flyttar melding"

#: camel/camel-lock-client.c:111
#, fuzzy, c-format
msgid "Cannot build locking helper pipe: %s"
msgstr "Kunne ikkje laga katalog\n"

#: camel/camel-lock-client.c:124
#, fuzzy, c-format
msgid "Cannot fork locking helper: %s"
msgstr ""
"Kan ikkje fjerna post frå\n"
"postboksen '%1':\n"
"%2"

#: camel/camel-lock-client.c:202 camel/camel-lock-client.c:225
#, c-format
msgid "Could not lock '%s': protocol error with lock-helper"
msgstr ""

#: camel/camel-lock-client.c:215
#, fuzzy, c-format
msgid "Could not lock '%s'"
msgstr "Kunne ikkje starta %1."

#. well, this is really only a programatic error
#: camel/camel-lock.c:91 camel/camel-lock.c:110
#, fuzzy, c-format
msgid "Could not create lock file for %s: %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/camel-lock.c:150
#, c-format
msgid "Timed out trying to get lock file on %s. Try again later."
msgstr ""

#: camel/camel-lock.c:204
#, c-format
msgid "Failed to get lock using fcntl(2): %s"
msgstr ""

#: camel/camel-lock.c:266
#, c-format
msgid "Failed to get lock using flock(2): %s"
msgstr ""

#: camel/camel-movemail.c:107
#, fuzzy, c-format
msgid "Could not check mail file %s: %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/camel-movemail.c:121
#, fuzzy, c-format
msgid "Could not open mail file %s: %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/camel-movemail.c:129
#, fuzzy, c-format
msgid "Could not open temporary mail file %s: %s"
msgstr ""
"Kunne ikkje laga mellombels fil\n"
"%1:\n"
"%2"

#: camel/camel-movemail.c:158
#, c-format
msgid "Failed to store mail in temp file %s: %s"
msgstr ""

#: camel/camel-movemail.c:188
#, fuzzy, c-format
msgid "Could not create pipe: %s"
msgstr "Kunne ikkje laga katalog\n"

#: camel/camel-movemail.c:200
#, fuzzy, c-format
msgid "Could not fork: %s"
msgstr "Kunne ikkje starta %1."

#: camel/camel-movemail.c:238
#, c-format
msgid "Movemail program failed: %s"
msgstr ""

#: camel/camel-movemail.c:239
msgid "(Unknown error)"
msgstr "(Ukjend feil)"

#: camel/camel-movemail.c:262
#, fuzzy, c-format
msgid "Error reading mail file: %s"
msgstr ""
"Feil ved nedlasting av fil:\n"
"%1"

#: camel/camel-movemail.c:273
#, fuzzy, c-format
msgid "Error writing mail temp file: %s"
msgstr ""
"Feil ved lesing a fil:\n"
"%1"

#: camel/camel-movemail.c:466 camel/camel-movemail.c:533
#, fuzzy, c-format
msgid "Error copying mail temp file: %s"
msgstr ""
"Feil ved lesing a fil:\n"
"%1"

#: camel/camel-pgp-context.c:193
#, fuzzy, c-format
msgid "Please enter your %s passphrase for %s"
msgstr "Oppgi ditt OpenPGP-passord"

#: camel/camel-pgp-context.c:196
#, fuzzy, c-format
msgid "Please enter your %s passphrase"
msgstr "Oppgi ditt OpenPGP-passord"

#: camel/camel-pgp-context.c:575
#, fuzzy
msgid "Cannot sign this message: no plaintext to sign"
msgstr "Kan ikkje setja blokkstorleik for band."

#: camel/camel-pgp-context.c:582 camel/camel-pgp-context.c:762
msgid "Cannot sign this message: no password provided"
msgstr ""

#: camel/camel-pgp-context.c:588 camel/camel-pgp-context.c:768
#, fuzzy, c-format
msgid "Cannot sign this message: couldn't create pipe to GPG/PGP: %s"
msgstr "Kunne ikkje laga katalog\n"

#: camel/camel-pgp-context.c:755
msgid "Cannot sign this message: no plaintext to clearsign"
msgstr ""

#: camel/camel-pgp-context.c:953
msgid "Cannot verify this message: no plaintext to verify"
msgstr ""

#: camel/camel-pgp-context.c:959
#, fuzzy, c-format
msgid "Cannot verify this message: couldn't create pipe to GPG/PGP: %s"
msgstr "Kunne ikkje laga katalog\n"

#: camel/camel-pgp-context.c:970
#, fuzzy, c-format
msgid "Cannot verify this message: couldn't create temp file: %s"
msgstr "Kunne ikkje laga katalog\n"

#: camel/camel-pgp-context.c:1143
msgid "Cannot encrypt this message: no plaintext to encrypt"
msgstr ""

#: camel/camel-pgp-context.c:1153
msgid "Cannot encrypt this message: no password provided"
msgstr ""

#: camel/camel-pgp-context.c:1160
#, fuzzy, c-format
msgid "Cannot encrypt this message: couldn't create pipe to GPG/PGP: %s"
msgstr "Kunne ikkje laga katalog\n"

#: camel/camel-pgp-context.c:1169
msgid "Cannot encrypt this message: no recipients specified"
msgstr ""

#: camel/camel-pgp-context.c:1337
msgid "Cannot decrypt this message: no ciphertext to decrypt"
msgstr ""

#: camel/camel-pgp-context.c:1345
msgid "Cannot decrypt this message: no password provided"
msgstr ""

#: camel/camel-pgp-context.c:1352
#, fuzzy, c-format
msgid "Cannot decrypt this message: couldn't create pipe to GPG/PGP: %s"
msgstr "Kunne ikkje laga katalog\n"

#: camel/camel-pgp-mime.c:310
msgid "This is a digitally signed message part"
msgstr ""

#: camel/camel-pkcs7-context.c:197 camel/camel-smime-context.c:173
#, fuzzy, c-format
msgid "Please enter your password for %s"
msgstr "Oppgi ditt OpenPGP-passord"

#: camel/camel-pkcs7-context.c:213
#, fuzzy
msgid "Error hashing password."
msgstr "Feil ved tilleggjing av kort"

#: camel/camel-pkcs7-context.c:222
#, fuzzy
msgid "Invalid password."
msgstr "Ugyldig argument"

#: camel/camel-pkcs7-context.c:329
#, fuzzy, c-format
msgid "Could not sign: certificate not found for \"%s\"."
msgstr "Kunne ikkje lasta biletet '%1'\n"

#: camel/camel-pkcs7-context.c:378
#, fuzzy, c-format
msgid "Could not clearsign: certificate not found for \"%s\"."
msgstr "Kunne ikkje lasta biletet '%1'\n"

#: camel/camel-pkcs7-context.c:567
msgid "Could not encrypt: failed to create enveloped data."
msgstr ""

#: camel/camel-pkcs7-context.c:590
#, fuzzy
msgid "Could not encrypt: failed to create encryption context."
msgstr "Kunne ikkje laga kio-jobb.\n"

#: camel/camel-pkcs7-context.c:620
#, fuzzy, c-format
msgid "Could not encrypt data: invalid user key: \"%s\"."
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/camel-pkcs7-context.c:626
#, fuzzy
msgid "Could not encrypt: encoding failed."
msgstr "Klarte ikkje å lagre signaturfil."

#: camel/camel-pkcs7-context.c:677
msgid "Failed to decrypt: Unknown"
msgstr ""

#: camel/camel-provider.c:130
#, c-format
msgid "Could not load %s: Module loading not supported on this system."
msgstr ""

#: camel/camel-provider.c:139
#, c-format
msgid "Could not load %s: %s"
msgstr "Klarte ikkje å laste %s: %s"

#: camel/camel-provider.c:147
#, c-format
msgid "Could not load %s: No initialization code in module."
msgstr ""

#: camel/camel-remote-store.c:203
#, c-format
msgid "%s server %s"
msgstr "%s tenar %s"

#: camel/camel-remote-store.c:207
#, c-format
msgid "%s service for %s on %s"
msgstr ""

#: camel/camel-remote-store.c:264
msgid "Connection cancelled"
msgstr "Tilknytning avbroten"

#: camel/camel-remote-store.c:267
#: camel/providers/smtp/camel-smtp-transport.c:274
#, c-format
msgid "Could not connect to %s (port %d): %s"
msgstr ""

#: camel/camel-remote-store.c:268
msgid "(unknown host)"
msgstr "(ukjend vert)"

#: camel/camel-remote-store.c:358 camel/camel-remote-store.c:420
#: camel/camel-remote-store.c:481
#: camel/providers/imap/camel-imap-command.c:228
#: camel/providers/imap/camel-imap-command.c:409
msgid "Operation cancelled"
msgstr "Operasjonen vart avbroten"

#: camel/camel-remote-store.c:484
#: camel/providers/imap/camel-imap-command.c:274
#, c-format
msgid "Server unexpectedly disconnected: %s"
msgstr ""

#: camel/camel-sasl-anonymous.c:33
msgid "Anonymous"
msgstr "Anonym"

#: camel/camel-sasl-anonymous.c:35
msgid "This option will connect to the server using an anonymous login."
msgstr ""

#: camel/camel-sasl-anonymous.c:110 camel/camel-sasl-plain.c:87
msgid "Authentication failed."
msgstr "Autentisering feila."

#: camel/camel-sasl-anonymous.c:119
#, c-format
msgid ""
"Invalid email address trace information:\n"
"%s"
msgstr ""

#: camel/camel-sasl-anonymous.c:131
#, fuzzy, c-format
msgid ""
"Invalid opaque trace information:\n"
"%s"
msgstr "Les filinformasjon"

#: camel/camel-sasl-anonymous.c:143
#, fuzzy, c-format
msgid ""
"Invalid trace information:\n"
"%s"
msgstr "Les filinformasjon"

#: camel/camel-sasl-cram-md5.c:35
msgid "CRAM-MD5"
msgstr "CRAM-MD5"

#: camel/camel-sasl-cram-md5.c:37
msgid ""
"This option will connect to the server using a secure CRAM-MD5 password, if "
"the server supports it."
msgstr ""

#: camel/camel-sasl-digest-md5.c:43
msgid "DIGEST-MD5"
msgstr "DIGEST-MD5"

#: camel/camel-sasl-digest-md5.c:45
msgid ""
"This option will connect to the server using a secure DIGEST-MD5 password, "
"if the server supports it."
msgstr ""

#: camel/camel-sasl-digest-md5.c:810
msgid "Server challenge too long (>2048 octets)\n"
msgstr ""

#: camel/camel-sasl-digest-md5.c:819
msgid "Server challenge invalid\n"
msgstr ""

#: camel/camel-sasl-digest-md5.c:825
msgid "Server challenge contained invalid \"Quality of Protection\" token\n"
msgstr ""

#: camel/camel-sasl-digest-md5.c:847
msgid "Server response did not contain authorization data\n"
msgstr ""

#: camel/camel-sasl-digest-md5.c:865
msgid "Server response contained incomplete authorization data\n"
msgstr ""

#: camel/camel-sasl-digest-md5.c:875
msgid "Server response does not match\n"
msgstr ""

#: camel/camel-sasl-kerberos4.c:40
msgid "Kerberos 4"
msgstr "Kerberos 4"

#: camel/camel-sasl-kerberos4.c:42
msgid "This option will connect to the server using Kerberos 4 authentication."
msgstr ""

#: camel/camel-sasl-kerberos4.c:161
#, c-format
msgid ""
"Could not get Kerberos ticket:\n"
"%s"
msgstr ""

#: camel/camel-sasl-kerberos4.c:218
#: camel/providers/imap/camel-imap-store.c:495
msgid "Bad authentication response from server."
msgstr ""

#: camel/camel-sasl-login.c:32
msgid "NT Login"
msgstr "NT Login"

#: camel/camel-sasl-login.c:34 camel/camel-sasl-plain.c:34
msgid "This option will connect to the server using a simple password."
msgstr ""

#: camel/camel-sasl-login.c:127
#, fuzzy
msgid "Unknown authentication state."
msgstr "Inga autentisering i det heile"

#: camel/camel-sasl-plain.c:32 camel/providers/imap/camel-imap-provider.c:80
#: camel/providers/nntp/camel-nntp-store.c:149
#: camel/providers/pop3/camel-pop3-provider.c:67 mail/mail-config.glade.h:60
msgid "Password"
msgstr "Passord"

#: camel/camel-sasl-popb4smtp.c:34
msgid "POP before SMTP"
msgstr "POP før SMTP"

#: camel/camel-sasl-popb4smtp.c:36
msgid "This option will authorise a POP connection before attempting SMTP"
msgstr ""

#: camel/camel-sasl-popb4smtp.c:107
#, fuzzy
msgid "POP Source URI"
msgstr "Kjelder"

#: camel/camel-sasl-popb4smtp.c:111
msgid "POP Before SMTP auth using an unknown transport"
msgstr ""

#: camel/camel-sasl-popb4smtp.c:116
msgid "POP Before SMTP auth using a non-pop source"
msgstr ""

#: camel/camel-search-private.c:113
#, c-format
msgid "Regular expression compilation failed: %s: %s"
msgstr ""

#: camel/camel-service.c:157
#, c-format
msgid "URL '%s' needs a username component"
msgstr "URLen «%s» treng ein bruknamn-komponent"

#: camel/camel-service.c:165
#, c-format
msgid "URL '%s' needs a host component"
msgstr ""

#: camel/camel-service.c:173
#, c-format
msgid "URL '%s' needs a path component"
msgstr ""

#: camel/camel-service.c:614
#, c-format
msgid "Resolving: %s"
msgstr "Slår opp: %s"

#: camel/camel-service.c:641
#, c-format
msgid "Failure in name lookup: %s"
msgstr "Feil i namneoppslag: %s"

#: camel/camel-service.c:666
#, c-format
msgid "Host lookup failed: %s: host not found"
msgstr ""

#: camel/camel-service.c:668
#, c-format
msgid "Host lookup failed: %s: unknown reason"
msgstr ""

#: camel/camel-session.c:75
msgid "Virtual folder email provider"
msgstr ""

#: camel/camel-session.c:77
msgid "For reading mail as a query of another set of folders"
msgstr ""

#: camel/camel-session.c:346 camel/camel-session.c:415
#, c-format
msgid "No provider available for protocol `%s'"
msgstr ""

#: camel/camel-session.c:532
#, fuzzy, c-format
msgid ""
"Could not create directory %s:\n"
"%s"
msgstr ""
"Kan ikkje laga heimekatalog\n"
"Feil: %1"

#: camel/camel-smime-context.c:203
msgid "Please indicate the nickname of a certificate to sign with."
msgstr ""

#: camel/camel-smime-context.c:209
#, fuzzy, c-format
msgid "The signature certificate for \"%s\" does not exist."
msgstr "Den oppgjevne fila finst ikkje."

#: camel/camel-smime-context.c:249
#, fuzzy, c-format
msgid "The encryption certificate for \"%s\" does not exist."
msgstr "Den faste katalogen som er spesifisert for %1 finst ikkje."

#: camel/camel-smime-context.c:419 camel/camel-smime-context.c:430
#: camel/camel-smime-context.c:536 camel/camel-smime-context.c:546
#, fuzzy, c-format
msgid "Failed to find certificate for \"%s\"."
msgstr "Kunne ikkje lasta biletet '%1'\n"

#: camel/camel-smime-context.c:556
msgid "Failed to find a common bulk algorithm."
msgstr ""

#: camel/camel-smime-context.c:810
msgid "Failed to decode message."
msgstr "Klarte ikkje å dekode melding."

#: camel/camel-smime-context.c:855
#, fuzzy
msgid "Failed to verify certificates."
msgstr "Åtvaring ved &tilbaketrekte sertifikat"

#: camel/camel-store.c:220
#, fuzzy
msgid "Cannot get folder: Invalid operation on this store"
msgstr "Leitar etter tilleggsmodular"

#: camel/camel-store.c:282
msgid "Cannot create folder: Invalid operation on this store"
msgstr "Klarar ikkje å opprette mappe: Ugyldig operasjon på dette lageret"

#: camel/camel-tcp-stream-openssl.c:519
#, c-format
msgid ""
"Issuer: %s\n"
"Subject: %s"
msgstr ""

#: camel/camel-tcp-stream-openssl.c:524
#, c-format
msgid ""
"Bad certificate from %s:\n"
"\n"
"%s\n"
"\n"
"Do you wish to accept anyway?"
msgstr ""
"Ugyldig sertifikat frå %s\n"
"\n"
"%s\n"
"\n"
"Vil du akseptere likevel?"

#. issuer = CERT_FindCertByName (CERT_GetDefaultCertDB (), &cert->derIssuer);
#. valid_cert = issuer && CERT_VerifySignedData (&cert->signatureWrap, issuer, PR_Now (), NULL);
#: camel/camel-tcp-stream-ssl.c:438
#, c-format
msgid ""
"Issuer:            %s\n"
"Subject:           %s\n"
"Fingerprint:       %s\n"
"Signature:         %s"
msgstr ""

#: camel/camel-tcp-stream-ssl.c:444
msgid "GOOD"
msgstr ""

#: camel/camel-tcp-stream-ssl.c:444
msgid "BAD"
msgstr ""

#. construct our user prompt
#: camel/camel-tcp-stream-ssl.c:447
#, fuzzy, c-format
msgid ""
"SSL Certificate check for %s:\n"
"\n"
"%s\n"
"\n"
"Do you wish to accept?"
msgstr ""
"Ugyldig sertifikat frå %s\n"
"\n"
"%s\n"
"\n"
"Vil du akseptere likevel?"

#: camel/camel-url.c:288
#, c-format
msgid "Could not parse URL `%s'"
msgstr "Klarter ikkje å tolke URL frå «%s»"

#: camel/camel-vee-folder.c:588
#, c-format
msgid "No such message %s in %s"
msgstr "Inga slik melding %s i %s"

#: camel/camel-vee-folder.c:749
#, c-format
msgid "No such message: %s"
msgstr "Inga slik melding: %s"

#: camel/camel-vee-store.c:258
#, fuzzy, c-format
msgid "Cannot delete folder: %s: Invalid operation"
msgstr "Leitar etter tilleggsmodular"

#: camel/camel-vee-store.c:293
#, fuzzy, c-format
msgid "Cannot delete folder: %s: No such folder"
msgstr "Leitar etter tilleggsmodular"

#: camel/camel-vee-store.c:306
#, fuzzy, c-format
msgid "Cannot rename folder: %s: Invalid operation"
msgstr "Leitar etter tilleggsmodular"

#: camel/camel-vee-store.c:314
#, fuzzy, c-format
msgid "Cannot rename folder: %s: No such folder"
msgstr "Leitar etter tilleggsmodular"

#: camel/camel-vtrash-folder.c:117
#, fuzzy
msgid "You cannot copy messages from this trash folder."
msgstr "Vil du lagra denne artikkelen i Kladd-mappa?"

#: camel/providers/imap/camel-imap-command.c:352
#, fuzzy, c-format
msgid "Unexpected response from IMAP server: %s"
msgstr "Slett e-post frå tenaren"

#: camel/providers/imap/camel-imap-command.c:362
#, c-format
msgid "IMAP command failed: %s"
msgstr "IMAP-kommando feila: %s"

#: camel/providers/imap/camel-imap-command.c:417
msgid "Server response ended too soon."
msgstr ""

#: camel/providers/imap/camel-imap-command.c:610
#, c-format
msgid "IMAP server response did not contain %s information"
msgstr ""

#: camel/providers/imap/camel-imap-command.c:646
#, c-format
msgid "Unexpected OK response from IMAP server: %s"
msgstr ""

#: camel/providers/imap/camel-imap-folder.c:197
#, fuzzy, c-format
msgid "Could not create directory %s: %s"
msgstr ""
"Kan ikkje laga heimekatalog\n"
"Feil: %1"

#: camel/providers/imap/camel-imap-folder.c:216
#, fuzzy, c-format
msgid "Could not load summary for %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/imap/camel-imap-folder.c:282
msgid "Folder was destroyed and recreated on server."
msgstr ""

#. Check UIDs and flags of all messages we already know of.
#: camel/providers/imap/camel-imap-folder.c:466
#, fuzzy
msgid "Scanning for changed messages"
msgstr "Melding"

#: camel/providers/imap/camel-imap-folder.c:1632
#: camel/providers/imap/camel-imap-folder.c:2104
#, fuzzy
msgid "This message is not currently available"
msgstr "%1 er ikkje tilgjengeleg."

#: camel/providers/imap/camel-imap-folder.c:1787
#: camel/providers/imap/camel-imap-folder.c:1861
msgid "Fetching summary information for new messages"
msgstr ""

#: camel/providers/imap/camel-imap-folder.c:1793
#, fuzzy
msgid "Scanning for new messages"
msgstr "Melding"

#: camel/providers/imap/camel-imap-folder.c:2141
msgid "Could not find message body in FETCH response."
msgstr ""

#: camel/providers/imap/camel-imap-message-cache.c:154
#, fuzzy, c-format
msgid "Could not open cache directory: %s"
msgstr ""
"Kan ikkje laga heimekatalog\n"
"Feil: %1"

#: camel/providers/imap/camel-imap-message-cache.c:256
#: camel/providers/imap/camel-imap-message-cache.c:313
#: camel/providers/imap/camel-imap-message-cache.c:344
#: camel/providers/imap/camel-imap-message-cache.c:376
#, fuzzy, c-format
msgid "Failed to cache message %s: %s"
msgstr "Kunne ikkje leggja til melding:\n"

#: camel/providers/imap/camel-imap-provider.c:43
#, fuzzy
msgid "Checking for new mail"
msgstr "Berre sjekk for ny e-post."

#: camel/providers/imap/camel-imap-provider.c:45
#, fuzzy
msgid "Check for new messages in all folders"
msgstr "Berre sjekk for ny e-post."

#: camel/providers/imap/camel-imap-provider.c:48 shell/e-shell-view.c:832
msgid "Folders"
msgstr "Mapper"

#: camel/providers/imap/camel-imap-provider.c:50
#, fuzzy
msgid "Show only subscribed folders"
msgstr "Berre vi&s skrifter med fast breidd"

#: camel/providers/imap/camel-imap-provider.c:52
msgid "Override server-supplied folder namespace"
msgstr ""

#: camel/providers/imap/camel-imap-provider.c:54
#, fuzzy
msgid "Namespace"
msgstr "meldingar"

#: camel/providers/imap/camel-imap-provider.c:57
msgid "Apply filters to new messages in INBOX on this server"
msgstr ""

#: camel/providers/imap/camel-imap-provider.c:63
msgid "IMAP"
msgstr "IMAP"

#: camel/providers/imap/camel-imap-provider.c:65
msgid "For reading and storing mail on IMAP servers."
msgstr ""

#: camel/providers/imap/camel-imap-provider.c:82
msgid "This option will connect to the IMAP server using a plaintext password."
msgstr ""

#: camel/providers/imap/camel-imap-store.c:518
#, c-format
msgid "IMAP server %s does not support requested authentication type %s"
msgstr "IMAP-tenaren %s søttar ikkje den ønska autentiseringstypa %s"

#: camel/providers/imap/camel-imap-store.c:528
#: camel/providers/smtp/camel-smtp-transport.c:390
#, fuzzy, c-format
msgid "No support for authentication type %s"
msgstr "Autentisering:"

#: camel/providers/imap/camel-imap-store.c:552
#, c-format
msgid "%sPlease enter the IMAP password for %s@%s"
msgstr ""

#: camel/providers/imap/camel-imap-store.c:567
#: camel/providers/smtp/camel-smtp-transport.c:431
msgid "You didn't enter a password."
msgstr "Du tasta ikkje inn eit passord."

#: camel/providers/imap/camel-imap-store.c:596
#, c-format
msgid ""
"Unable to authenticate to IMAP server.\n"
"%s\n"
"\n"
msgstr ""
"Ikkje i stand til å autentisere mot IMAP-tenar.\n"
"%s\n"

#: camel/providers/imap/camel-imap-store.c:900
#, fuzzy, c-format
msgid "No such folder %s"
msgstr "Vidaresendt melding"

#: camel/providers/imap/camel-imap-store.c:1275
msgid "The parent folder is not allowed to contain subfolders"
msgstr ""

#: camel/providers/local/camel-local-provider.c:42
#, fuzzy
msgid "MH-format mail directories"
msgstr "Separate katalogar"

#: camel/providers/local/camel-local-provider.c:43
msgid "For storing local mail in MH-like mail directories."
msgstr ""

#: camel/providers/local/camel-local-provider.c:52
#, fuzzy
msgid "Local delivery"
msgstr "Mapper"

#: camel/providers/local/camel-local-provider.c:53
msgid "For retrieving local mail from standard mbox formated spools."
msgstr ""

#: camel/providers/local/camel-local-provider.c:62
#, fuzzy
msgid "Apply filters to new messages in INBOX"
msgstr "Sentrer dei valte elementa"

#: camel/providers/local/camel-local-provider.c:68
#, fuzzy
msgid "Maildir-format mail directories"
msgstr "Separate katalogar"

#: camel/providers/local/camel-local-provider.c:69
msgid "For storing local mail in maildir directories."
msgstr ""

#: camel/providers/local/camel-local-provider.c:80
#, fuzzy
msgid "Standard Unix mbox spools"
msgstr "Standardfil"

#: camel/providers/local/camel-local-provider.c:81
msgid "For reading and storing local mail in standard mbox spool files."
msgstr ""

#: camel/providers/local/camel-local-store.c:138
#: camel/providers/local/camel-local-store.c:227
#: camel/providers/local/camel-spool-store.c:109
#, c-format
msgid "Store root %s is not an absolute path"
msgstr ""

#: camel/providers/local/camel-local-store.c:145
#, fuzzy, c-format
msgid "Store root %s is not a regular directory"
msgstr "er ei vanleg fil"

#: camel/providers/local/camel-local-store.c:153
#: camel/providers/local/camel-local-store.c:169
#: camel/providers/local/camel-local-store.c:235
#, fuzzy, c-format
msgid "Cannot get folder: %s: %s"
msgstr "Leitar etter tilleggsmodular"

#: camel/providers/local/camel-local-store.c:184
msgid "Local stores do not have an inbox"
msgstr ""

#: camel/providers/local/camel-local-store.c:196
#, fuzzy, c-format
msgid "Local mail file %s"
msgstr ""
"Feil ved lesing a fil:\n"
"%1"

#: camel/providers/local/camel-local-store.c:300 mail/mail-local.c:864
#, fuzzy, c-format
msgid "Could not rename folder %s to %s: %s"
msgstr ""
"Kunne ikkje laga mellombels fil\n"
"%1:\n"
"%2"

#: camel/providers/local/camel-local-store.c:374
#, fuzzy, c-format
msgid "Could not delete folder summary file `%s': %s"
msgstr ""
"Kunne ikkje laga mellombels fil\n"
"%1:\n"
"%2"

#: camel/providers/local/camel-local-store.c:384
#, fuzzy, c-format
msgid "Could not delete folder index file `%s': %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/local/camel-local-summary.c:367
#, fuzzy, c-format
msgid "Could not save summary: %s: %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/local/camel-local-summary.c:423
#: camel/providers/local/camel-spool-summary.c:1157
msgid "Unable to add message to summary: unknown reason"
msgstr ""

#: camel/providers/local/camel-maildir-folder.c:181
#, fuzzy
msgid "Maildir append message cancelled"
msgstr "Kunne ikkje leggja til melding:\n"

#: camel/providers/local/camel-maildir-folder.c:184
#, fuzzy, c-format
msgid "Cannot append message to maildir folder: %s: %s"
msgstr "Mottek meldingar frå %1"

#: camel/providers/local/camel-maildir-folder.c:209
#: camel/providers/local/camel-maildir-folder.c:221
#: camel/providers/local/camel-maildir-folder.c:230
#: camel/providers/local/camel-mbox-folder.c:331
#: camel/providers/local/camel-mh-folder.c:198
#: camel/providers/local/camel-mh-folder.c:207
#: camel/providers/local/camel-mh-folder.c:215
#: camel/providers/local/camel-spool-folder.c:579
#, fuzzy, c-format
msgid ""
"Cannot get message: %s\n"
"  %s"
msgstr "Kan ikkje setja blokkstorleik for band."

#: camel/providers/local/camel-maildir-folder.c:209
#: camel/providers/local/camel-mbox-folder.c:331
#: camel/providers/local/camel-mh-folder.c:198
#: camel/providers/local/camel-spool-folder.c:579
#, fuzzy
msgid "No such message"
msgstr "Vidaresendt melding"

#: camel/providers/local/camel-maildir-folder.c:231
#: camel/providers/local/camel-mh-folder.c:216
msgid "Invalid message contents"
msgstr ""

#: camel/providers/local/camel-maildir-store.c:105
#: camel/providers/local/camel-mh-store.c:89
#, fuzzy, c-format
msgid ""
"Could not open folder `%s':\n"
"%s"
msgstr ""
"Kan ikkje fjerna post frå\n"
"postboksen '%1':\n"
"%2"

#: camel/providers/local/camel-maildir-store.c:109
#: camel/providers/local/camel-mbox-store.c:100
#: camel/providers/local/camel-mh-store.c:96
#, c-format
msgid "Folder `%s' does not exist."
msgstr "Mappa «%s» eksisterar ikkje."

#: camel/providers/local/camel-maildir-store.c:116
#: camel/providers/local/camel-mh-store.c:102
#, fuzzy, c-format
msgid ""
"Could not create folder `%s':\n"
"%s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/local/camel-maildir-store.c:131
#, c-format
msgid "`%s' is not a maildir directory."
msgstr ""

#: camel/providers/local/camel-maildir-store.c:166
#: camel/providers/local/camel-maildir-store.c:203
#: camel/providers/local/camel-mh-store.c:126
#, fuzzy, c-format
msgid "Could not delete folder `%s': %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/local/camel-maildir-store.c:167
msgid "not a maildir directory"
msgstr ""

#: camel/providers/local/camel-maildir-store.c:331
#, fuzzy, c-format
msgid "Could not scan folder `%s': %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/local/camel-maildir-summary.c:405
#: camel/providers/local/camel-maildir-summary.c:526
#, fuzzy, c-format
msgid "Cannot open maildir directory path: %s: %s"
msgstr ""
"Kan ikkje fjerna post frå\n"
"postboksen '%1':\n"
"%2"

#: camel/providers/local/camel-mbox-folder.c:151
#: camel/providers/local/camel-spool-folder.c:274
#, fuzzy, c-format
msgid "Cannot create folder lock on %s: %s"
msgstr "Leitar etter tilleggsmodular"

#: camel/providers/local/camel-mbox-folder.c:208
#: camel/providers/local/camel-spool-folder.c:456
#, fuzzy, c-format
msgid "Cannot open mailbox: %s: %s\n"
msgstr ""
"Kan ikkje fjerna post frå\n"
"postboksen '%1':\n"
"%2"

#: camel/providers/local/camel-mbox-folder.c:265
#, fuzzy
msgid "Mail append cancelled"
msgstr "Feil ved opning"

#: camel/providers/local/camel-mbox-folder.c:268
#, c-format
msgid "Cannot append message to mbox file: %s: %s"
msgstr ""

#: camel/providers/local/camel-mbox-folder.c:347
#: camel/providers/local/camel-mbox-folder.c:379
#: camel/providers/local/camel-mbox-folder.c:391
#: camel/providers/local/camel-spool-folder.c:595
#: camel/providers/local/camel-spool-folder.c:627
#: camel/providers/local/camel-spool-folder.c:639
#, fuzzy, c-format
msgid ""
"Cannot get message: %s from folder %s\n"
"  %s"
msgstr "Mottek meldingar frå %1"

#: camel/providers/local/camel-mbox-folder.c:380
#: camel/providers/local/camel-spool-folder.c:628
msgid "The folder appears to be irrecoverably corrupted."
msgstr ""

#: camel/providers/local/camel-mbox-folder.c:392
#: camel/providers/local/camel-spool-folder.c:640
msgid "Message construction failed: Corrupt mailbox?"
msgstr ""

#: camel/providers/local/camel-mbox-store.c:93
#, fuzzy, c-format
msgid ""
"Could not open file `%s':\n"
"%s"
msgstr ""
"Kan ikkje fjerna post frå\n"
"postboksen '%1':\n"
"%2"

#: camel/providers/local/camel-mbox-store.c:109
#, fuzzy, c-format
msgid ""
"Could not create file `%s':\n"
"%s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/local/camel-mbox-store.c:118
#: camel/providers/local/camel-mbox-store.c:145
#, c-format
msgid "`%s' is not a regular file."
msgstr "«%s» er ikkje ei vanleg fil."

#: camel/providers/local/camel-mbox-store.c:137
#: camel/providers/local/camel-mbox-store.c:160
#, fuzzy, c-format
msgid ""
"Could not delete folder `%s':\n"
"%s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/local/camel-mbox-store.c:152
#, c-format
msgid "Folder `%s' is not empty. Not deleted."
msgstr ""

#. FIXME: If there is a failure, it shouldn't clear the summary and restart,
#. it should try and merge the summary info's.  This is a bit tricky.
#: camel/providers/local/camel-mbox-summary.c:248
#: camel/providers/local/camel-mbox-summary.c:497
#: camel/providers/local/camel-mbox-summary.c:698
#: camel/providers/local/camel-spool-summary.c:378
#: camel/providers/local/camel-spool-summary.c:643
#: camel/providers/local/camel-spool-summary.c:935
msgid "Storing folder"
msgstr "Lagrar mappe"

#: camel/providers/local/camel-mbox-summary.c:253
#: camel/providers/local/camel-spool-summary.c:383
#, fuzzy, c-format
msgid "Could not open folder: %s: %s"
msgstr ""
"Kan ikkje fjerna post frå\n"
"postboksen '%1':\n"
"%2"

#: camel/providers/local/camel-mbox-summary.c:295
#: camel/providers/local/camel-spool-summary.c:425
#, c-format
msgid "Fatal mail parser error near position %ld in folder %s"
msgstr ""

#: camel/providers/local/camel-mbox-summary.c:370
#: camel/providers/local/camel-spool-summary.c:497
#, fuzzy, c-format
msgid "Cannot check folder: %s: %s"
msgstr "Leitar etter tilleggsmodular"

#: camel/providers/local/camel-mbox-summary.c:502
#: camel/providers/local/camel-mbox-summary.c:703
#: camel/providers/local/camel-spool-summary.c:648
#, fuzzy, c-format
msgid "Could not open file: %s: %s"
msgstr ""
"Kan ikkje fjerna post frå\n"
"postboksen '%1':\n"
"%2"

#: camel/providers/local/camel-mbox-summary.c:519
#: camel/providers/local/camel-spool-summary.c:672
#, fuzzy, c-format
msgid "Cannot open temporary mailbox: %s"
msgstr ""
"Kunne ikkje laga mellombels fil\n"
"%1:\n"
"%2"

#: camel/providers/local/camel-mbox-summary.c:544
#: camel/providers/local/camel-mbox-summary.c:552
#: camel/providers/local/camel-mbox-summary.c:741
#: camel/providers/local/camel-mbox-summary.c:749
#: camel/providers/local/camel-spool-summary.c:697
#: camel/providers/local/camel-spool-summary.c:705
#: camel/providers/local/camel-spool-summary.c:978
#: camel/providers/local/camel-spool-summary.c:986
msgid "Summary and folder mismatch, even after a sync"
msgstr ""

#: camel/providers/local/camel-mbox-summary.c:595
#: camel/providers/local/camel-spool-summary.c:749
#, c-format
msgid "Error writing to temp mailbox: %s"
msgstr ""

#: camel/providers/local/camel-mbox-summary.c:612
#: camel/providers/local/camel-spool-summary.c:771
#, c-format
msgid "Writing to tmp mailbox failed: %s: %s"
msgstr ""

#: camel/providers/local/camel-mbox-summary.c:630
#: camel/providers/local/camel-mbox-summary.c:799
#: camel/providers/local/camel-spool-summary.c:1036
#, fuzzy, c-format
msgid "Could not close source folder %s: %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/local/camel-mbox-summary.c:639
#, fuzzy, c-format
msgid "Could not close temp folder: %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/local/camel-mbox-summary.c:650
#, fuzzy, c-format
msgid "Could not rename folder: %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/local/camel-mbox-summary.c:873
#: camel/providers/local/camel-spool-summary.c:544
#: camel/providers/local/camel-spool-summary.c:1110
#, fuzzy, c-format
msgid "Unknown error: %s"
msgstr "Ukjend feil"

#: camel/providers/local/camel-mh-folder.c:172
#, fuzzy
msgid "MH append message cancelled"
msgstr "Sender ei melding til ein nettverksspelar"

#: camel/providers/local/camel-mh-folder.c:175
#, fuzzy, c-format
msgid "Cannot append message to mh folder: %s: %s"
msgstr "Mottek meldingar frå %1"

#: camel/providers/local/camel-mh-store.c:109
#, c-format
msgid "`%s' is not a directory."
msgstr "«%s» er ikkje ein katalog"

#: camel/providers/local/camel-mh-summary.c:218
#, fuzzy, c-format
msgid "Cannot open MH directory path: %s: %s"
msgstr "Kan ikkje opna katalogen %1"

#: camel/providers/local/camel-spool-folder.c:512
#, fuzzy, c-format
msgid "Cannot append message to spool file: %s: %s"
msgstr "Mottek meldingar frå %1"

#: camel/providers/local/camel-spool-store.c:115
#, fuzzy, c-format
msgid "Spool `%s' does not exist or is not a regular file"
msgstr "%1 finst, men er inga vanleg fil"

#: camel/providers/local/camel-spool-store.c:141
#, fuzzy, c-format
msgid "Folder `%s/%s' does not exist."
msgstr "Fila finst ikkje\n"

#: camel/providers/local/camel-spool-store.c:163
#, fuzzy, c-format
msgid "Spool mail file %s"
msgstr ""
"Feil ved lesing a fil:\n"
"%1"

#: camel/providers/local/camel-spool-store.c:209
#, fuzzy
msgid "Spool folders cannot be renamed"
msgstr "Denne mappa kan ikkje fjernast."

#: camel/providers/local/camel-spool-store.c:217
#, fuzzy
msgid "Spool folders cannot be deleted"
msgstr "Denne mappa kan ikkje slettast."

#: camel/providers/local/camel-spool-summary.c:788
#: camel/providers/local/camel-spool-summary.c:797
#: camel/providers/local/camel-spool-summary.c:806
#, fuzzy, c-format
msgid "Could not sync temporary folder %s: %s"
msgstr ""
"Kunne ikkje laga mellombels fil\n"
"%1:\n"
"%2"

#: camel/providers/local/camel-spool-summary.c:821
#, fuzzy, c-format
msgid "Could not sync spool folder %s: %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/local/camel-spool-summary.c:851
#: camel/providers/local/camel-spool-summary.c:869
#: camel/providers/local/camel-spool-summary.c:881
#, c-format
msgid ""
"Could not sync spool folder %s: %s\n"
"Folder may be corrupt, copy saved in `%s'"
msgstr ""

#: camel/providers/local/camel-spool-summary.c:940
#, fuzzy, c-format
msgid "Could not file: %s: %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/nntp/camel-nntp-auth.c:44
#, c-format
msgid "Please enter the NNTP password for %s@%s"
msgstr ""

#: camel/providers/nntp/camel-nntp-auth.c:64
msgid "Server rejected username"
msgstr "Tenaren avslo brukarnamnet"

#: camel/providers/nntp/camel-nntp-auth.c:70
msgid "Failed to send username to server"
msgstr ""

#: camel/providers/nntp/camel-nntp-auth.c:79
msgid "Server rejected username/password"
msgstr ""

#: camel/providers/nntp/camel-nntp-folder.c:112
#, c-format
msgid "Internal error: uid in invalid format: %s"
msgstr ""

#: camel/providers/nntp/camel-nntp-folder.c:153
#: camel/providers/nntp/camel-nntp-folder.c:159
#, fuzzy, c-format
msgid "Cannot get message %s: %s"
msgstr "Kan ikkje setja blokkstorleik for band."

#: camel/providers/nntp/camel-nntp-folder.c:157
#, fuzzy
msgid "User cancelled"
msgstr "Operasjonen vart avbroten"

#: camel/providers/nntp/camel-nntp-grouplist.c:45
#, fuzzy
msgid "Could not get group list from server."
msgstr "Kunne ikkje starta underprosess."

#: camel/providers/nntp/camel-nntp-grouplist.c:98
#: camel/providers/nntp/camel-nntp-grouplist.c:107
#, c-format
msgid "Unable to load grouplist file for %s: %s"
msgstr ""

#: camel/providers/nntp/camel-nntp-grouplist.c:158
#, c-format
msgid "Unable to save grouplist file for %s: %s"
msgstr ""

#: camel/providers/nntp/camel-nntp-provider.c:41
msgid "USENET news"
msgstr "USENET news"

#: camel/providers/nntp/camel-nntp-provider.c:43
msgid "This is a provider for reading from and posting toUSENET newsgroups."
msgstr ""

#: camel/providers/nntp/camel-nntp-store.c:144
#, c-format
msgid "USENET News via %s"
msgstr "USENET News via %s"

#: camel/providers/nntp/camel-nntp-store.c:151
msgid ""
"This option will authenticate with the NNTP server using a plaintext "
"password."
msgstr ""

#: camel/providers/nntp/camel-nntp-summary.c:234
#, fuzzy, c-format
msgid "No such folder: %s"
msgstr "Vidaresendt melding"

#: camel/providers/nntp/camel-nntp-summary.c:238
#, fuzzy, c-format
msgid "Could not get group: %s"
msgstr "Kunne ikkje laga katalog\n"

#: camel/providers/nntp/camel-nntp-summary.c:344
#, fuzzy, c-format
msgid "NNTP Command failed: %s"
msgstr "IMAP-kommando feila: %s"

#: camel/providers/nntp/camel-nntp-summary.c:404
#: camel/providers/nntp/camel-nntp-summary.c:505
#, fuzzy, c-format
msgid "%s: Scanning new messages"
msgstr "Melding"

#: camel/providers/nntp/camel-nntp-summary.c:520
#, fuzzy, c-format
msgid "Unknown server response: %s"
msgstr "Ukjend feil"

#: camel/providers/nntp/camel-nntp-summary.c:566
#, fuzzy
msgid "Use cancel"
msgstr "Avbryt"

#: camel/providers/nntp/camel-nntp-summary.c:568
#, fuzzy, c-format
msgid "Operation failed: %s"
msgstr "Operasjonen vart avbroten"

#: camel/providers/pop3/camel-pop3-folder.c:175
#, fuzzy
msgid "Retrieving POP summary"
msgstr "Mottek meldingar frå %1"

#: camel/providers/pop3/camel-pop3-folder.c:181
#, fuzzy, c-format
msgid "Could not check POP server for new messages: %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/pop3/camel-pop3-folder.c:228
msgid "Could not open folder: message listing was incomplete."
msgstr ""

#: camel/providers/pop3/camel-pop3-folder.c:252
#, fuzzy
msgid "Expunging deleted messages"
msgstr "Sentrer dei valte elementa"

#: camel/providers/pop3/camel-pop3-folder.c:328
#, fuzzy, c-format
msgid "Could not fetch message: %s"
msgstr "Vidaresendt melding frå %1"

#: camel/providers/pop3/camel-pop3-folder.c:344
#, fuzzy, c-format
msgid "Could not retrieve message from POP server %s: %s"
msgstr "Slett e-post frå tenaren"

#: camel/providers/pop3/camel-pop3-folder.c:367
#, fuzzy, c-format
msgid "No message with uid %s"
msgstr "Lag meldingar og slå saman"

#: camel/providers/pop3/camel-pop3-folder.c:371
#, fuzzy, c-format
msgid "Retrieving POP message %d"
msgstr "Mottek meldingar frå %1"

#: camel/providers/pop3/camel-pop3-provider.c:36
#, fuzzy
msgid "Message storage"
msgstr "Meldingsliste"

#: camel/providers/pop3/camel-pop3-provider.c:38
#, fuzzy
msgid "Leave messages on server"
msgstr "&La e-posten liggja på tenaren."

#: camel/providers/pop3/camel-pop3-provider.c:41
#, fuzzy, c-format
msgid "Delete after %s day(s)"
msgstr "Slett denne adressa"

#: camel/providers/pop3/camel-pop3-provider.c:50 mail/mail-config.glade.h:59
msgid "POP"
msgstr "POP"

#: camel/providers/pop3/camel-pop3-provider.c:52
msgid "For connecting to and downloading mail from POP servers."
msgstr ""

#: camel/providers/pop3/camel-pop3-provider.c:69
msgid ""
"This option will connect to the POP server using a plaintext password. This "
"is the only option supported by many POP servers."
msgstr ""

#: camel/providers/pop3/camel-pop3-provider.c:79
msgid ""
"This option will connect to the POP server using an encrypted password via "
"the APOP protocol. This may not work for all users even on servers that "
"claim to support it."
msgstr ""

#: camel/providers/pop3/camel-pop3-provider.c:91
msgid ""
"This will connect to the POP server and use Kerberos 4 to authenticate to it."
msgstr ""

#: camel/providers/pop3/camel-pop3-store.c:198
#, fuzzy, c-format
msgid "Could not authenticate to KPOP server: %s"
msgstr "Kunne ikkje starta underprosess."

#: camel/providers/pop3/camel-pop3-store.c:214
#, fuzzy, c-format
msgid "Could not connect to server: %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/pop3/camel-pop3-store.c:321
#, fuzzy, c-format
msgid "Could not connect to POP server on %s."
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/pop3/camel-pop3-store.c:360
#, c-format
msgid "%sPlease enter the POP3 password for %s@%s"
msgstr ""

#: camel/providers/pop3/camel-pop3-store.c:377
#, c-format
msgid ""
"Unable to connect to POP server.\n"
"Error sending username: %s"
msgstr ""

#: camel/providers/pop3/camel-pop3-store.c:380
#: camel/providers/pop3/camel-pop3-store.c:417
msgid "(Unknown)"
msgstr "(Ukjend)"

#: camel/providers/pop3/camel-pop3-store.c:407
msgid ""
"Unable to connect to POP server.\n"
"No support for requested authentication mechanism."
msgstr ""

#: camel/providers/pop3/camel-pop3-store.c:415
#, c-format
msgid ""
"Unable to connect to POP server.\n"
"Error sending password: %s"
msgstr ""

#: camel/providers/pop3/camel-pop3-store.c:480
#, c-format
msgid "No such folder `%s'."
msgstr "Inga slik mappe «%s»."

#: camel/providers/pop3/camel-pop3-store.c:563
#, c-format
msgid "Unexpected response from POP server: %s"
msgstr "Uventa svar frå POP-tenaren: %s"

#: camel/providers/sendmail/camel-sendmail-provider.c:36
#: mail/mail-config.glade.h:81
msgid "Sendmail"
msgstr "Sendmail"

#: camel/providers/sendmail/camel-sendmail-provider.c:38
msgid ""
"For delivering mail by passing it to the \"sendmail\" program on the local "
"system."
msgstr ""

#: camel/providers/sendmail/camel-sendmail-transport.c:107
#, fuzzy, c-format
msgid "Could not create pipe to sendmail: %s: mail not sent"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/sendmail/camel-sendmail-transport.c:124
#, c-format
msgid "Could not fork sendmail: %s: mail not sent"
msgstr ""

#: camel/providers/sendmail/camel-sendmail-transport.c:150
#, fuzzy, c-format
msgid "Could not send message: %s"
msgstr "Vidaresendt melding frå %1"

#: camel/providers/sendmail/camel-sendmail-transport.c:163
#, c-format
msgid "sendmail exited with signal %s: mail not sent."
msgstr ""

#: camel/providers/sendmail/camel-sendmail-transport.c:170
#, c-format
msgid "Could not execute %s: mail not sent."
msgstr ""

#: camel/providers/sendmail/camel-sendmail-transport.c:175
#, c-format
msgid "sendmail exited with status %d: mail not sent."
msgstr ""

#: camel/providers/sendmail/camel-sendmail-transport.c:194
#, fuzzy
msgid "Could not find 'From' address in message"
msgstr "Vidaresendt melding frå %1"

#: camel/providers/sendmail/camel-sendmail-transport.c:226
#, fuzzy
msgid "Could not parse recipient list"
msgstr "Klarter ikkje å tolke URL frå «%s»"

#: camel/providers/sendmail/camel-sendmail-transport.c:259
msgid "sendmail"
msgstr "sendmail"

#: camel/providers/sendmail/camel-sendmail-transport.c:261
msgid "Mail delivery via the sendmail program"
msgstr ""

#: camel/providers/smtp/camel-smtp-provider.c:37 mail/mail-config.glade.h:74
msgid "SMTP"
msgstr "SMTP"

#: camel/providers/smtp/camel-smtp-provider.c:39
msgid "For delivering mail by connecting to a remote mailhub using SMTP.\n"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:173
msgid "Syntax error, command unrecognized"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:175
msgid "Syntax error in parameters or arguments"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:177
msgid "Command not implemented"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:179
msgid "Command parameter not implemented"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:181
msgid "System status, or system help reply"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:183
#, fuzzy
msgid "Help message"
msgstr "Lagra melding"

#: camel/providers/smtp/camel-smtp-transport.c:185
msgid "Service ready"
msgstr "Teneste klar"

#: camel/providers/smtp/camel-smtp-transport.c:187
msgid "Service closing transmission channel"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:189
msgid "Service not available, closing transmission channel"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:191
msgid "Requested mail action okay, completed"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:193
msgid "User not local; will forward to <forward-path>"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:195
msgid "Requested mail action not taken: mailbox unavailable"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:197
msgid "Requested action not taken: mailbox unavailable"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:199
msgid "Requested action aborted: error in processing"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:201
msgid "User not local; please try <forward-path>"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:203
msgid "Requested action not taken: insufficient system storage"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:205
msgid "Requested mail action aborted: exceeded storage allocation"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:207
msgid "Requested action not taken: mailbox name not allowed"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:209
msgid "Start mail input; end with <CRLF>.<CRLF>"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:211
msgid "Transaction failed"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:215
#, fuzzy
msgid "A password transition is needed"
msgstr "Ingen passord oppgitt."

#: camel/providers/smtp/camel-smtp-transport.c:217
msgid "Authentication mechanism is too weak"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:219
msgid "Encryption required for requested authentication mechanism"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:221
#, fuzzy
msgid "Temporary authentication failure"
msgstr "Autentisering:"

#: camel/providers/smtp/camel-smtp-transport.c:223
#, fuzzy
msgid "Authentication required"
msgstr "Autentisering:"

#: camel/providers/smtp/camel-smtp-transport.c:318
#, c-format
msgid "Welcome response error: %s: possibly non-fatal"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:380
#, fuzzy, c-format
msgid "SMTP server %s does not support requested authentication type %s"
msgstr "Autentisering:"

#: camel/providers/smtp/camel-smtp-transport.c:418
#, fuzzy, c-format
msgid "%sPlease enter the SMTP password for %s@%s"
msgstr "Oppgi ditt OpenPGP-passord"

#: camel/providers/smtp/camel-smtp-transport.c:439
#, fuzzy, c-format
msgid ""
"Unable to authenticate to SMTP server.\n"
"%s\n"
"\n"
msgstr "Kunne ikkje starta underprosess."

#: camel/providers/smtp/camel-smtp-transport.c:555
#, c-format
msgid "SMTP server %s"
msgstr "SMTP-tenar %s"

#: camel/providers/smtp/camel-smtp-transport.c:557
#, c-format
msgid "SMTP mail delivery via %s"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:581
msgid "Cannot send message: sender address not defined."
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:588
msgid "Cannot send message: sender address not valid."
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:593 mail/mail-ops.c:567
#, fuzzy
msgid "Sending message"
msgstr "Sen melding"

#: camel/providers/smtp/camel-smtp-transport.c:604
msgid "Cannot send message: no recipients defined."
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:615
#, fuzzy
msgid "Cannot send message: one or more invalid recipients"
msgstr "Meldinga har ingen sendar"

#: camel/providers/smtp/camel-smtp-transport.c:674
#, fuzzy
msgid "SMTP Greeting"
msgstr "Møte"

#: camel/providers/smtp/camel-smtp-transport.c:696
#, c-format
msgid "HELO request timed out: %s: non-fatal"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:716
#, c-format
msgid "HELO response error: %s: non-fatal"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:748
#, fuzzy
msgid "SMTP Authentication"
msgstr "Autentisering:"

#: camel/providers/smtp/camel-smtp-transport.c:754
msgid "Error creating SASL authentication object."
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:769
#: camel/providers/smtp/camel-smtp-transport.c:781
#, fuzzy, c-format
msgid "AUTH request timed out: %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/smtp/camel-smtp-transport.c:790
#, fuzzy
msgid "AUTH request failed."
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/smtp/camel-smtp-transport.c:838
msgid "Bad authentication response from server.\n"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:864
#, c-format
msgid "MAIL FROM request timed out: %s: mail not sent"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:883
#, c-format
msgid "MAIL FROM response error: %s: mail not sent"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:908
#, fuzzy, c-format
msgid "RCPT TO request timed out: %s: mail not sent"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/smtp/camel-smtp-transport.c:927
#, fuzzy, c-format
msgid "RCPT TO response error: %s: mail not sent"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/smtp/camel-smtp-transport.c:961
#, fuzzy, c-format
msgid "DATA request timed out: %s: mail not sent"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: camel/providers/smtp/camel-smtp-transport.c:980
#, c-format
msgid "DATA response error: %s: mail not sent"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:1020
#: camel/providers/smtp/camel-smtp-transport.c:1038
#, c-format
msgid "DATA send timed out: message termination: %s: mail not sent"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:1057
#, c-format
msgid "DATA response error: message termination: %s: mail not sent"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:1081
#, c-format
msgid "RSET request timed out: %s"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:1100
#, c-format
msgid "RSET response error: %s"
msgstr "Feil svar på RSET: %s"

#: camel/providers/smtp/camel-smtp-transport.c:1123
#, c-format
msgid "QUIT request timed out: %s: non-fatal"
msgstr ""

#: camel/providers/smtp/camel-smtp-transport.c:1142
#, c-format
msgid "QUIT response error: %s: non-fatal"
msgstr ""

#: composer/e-msg-composer-attachment-bar.c:101
msgid "1 byte"
msgstr "1 byte"

#: composer/e-msg-composer-attachment-bar.c:103
#, c-format
msgid "%u bytes"
msgstr "%u oktettar"

#: composer/e-msg-composer-attachment-bar.c:110
#, c-format
msgid "%.1fK"
msgstr "%.1fK"

#: composer/e-msg-composer-attachment-bar.c:114
#, c-format
msgid "%.1fM"
msgstr "%.1fM"

#: composer/e-msg-composer-attachment-bar.c:118
#, c-format
msgid "%.1fG"
msgstr "%.1fG"

#. This is a filename. Translators take note.
#: composer/e-msg-composer-attachment-bar.c:361 mail/mail-display.c:136
msgid "attachment"
msgstr "vedlegg"

#: composer/e-msg-composer-attachment-bar.c:506
#, fuzzy
msgid "Remove selected items from the attachment list"
msgstr "Fjern det valte programmet frå lista"

#: composer/e-msg-composer-attachment-bar.c:537
#, fuzzy
msgid "Add attachment..."
msgstr "Vedlegg"

#: composer/e-msg-composer-attachment-bar.c:538
#, fuzzy
msgid "Attach a file to the message"
msgstr "Kunne ikkje lagra melding(ar)."

#: composer/e-msg-composer-attachment.c:168
#: composer/e-msg-composer-attachment.c:184
#, fuzzy, c-format
msgid "Cannot attach file %s: %s"
msgstr "Leitar etter tilleggsmodular"

#: composer/e-msg-composer-attachment.c:176
#, fuzzy, c-format
msgid "Cannot attach file %s: not a regular file"
msgstr "er ei vanleg fil"

#: composer/e-msg-composer-attachment.glade.h:1
#, fuzzy
msgid "Attachment properties"
msgstr "Vedleggseigenskapar"

#: composer/e-msg-composer-attachment.glade.h:3
msgid "File name:"
msgstr "Filnamn:"

#: composer/e-msg-composer-attachment.glade.h:4
msgid "MIME type:"
msgstr "MIME-type:"

#: composer/e-msg-composer-attachment.glade.h:5
#: composer/e-msg-composer-select-file.c:180
msgid "Suggest automatic display of attachment"
msgstr ""

#: composer/e-msg-composer-hdrs.c:326
#, fuzzy
msgid "Click here for the address book"
msgstr "Legg adresse til adresseboka"

#.
#. * From:
#.
#: composer/e-msg-composer-hdrs.c:357
msgid "From:"
msgstr "Frå:"

#.
#. * Reply-To:
#.
#: composer/e-msg-composer-hdrs.c:363
msgid "Reply-To:"
msgstr "Svar-til:"

#.
#. * Subject:
#.
#: composer/e-msg-composer-hdrs.c:374
msgid "Subject:"
msgstr "Emne:"

#: composer/e-msg-composer-hdrs.c:388
msgid "To:"
msgstr "Til:"

#: composer/e-msg-composer-hdrs.c:389
#, fuzzy
msgid "Enter the recipients of the message"
msgstr "Oppgi eit nytt namn på meldinga."

#: composer/e-msg-composer-hdrs.c:392
msgid "Cc:"
msgstr "Cc:"

#: composer/e-msg-composer-hdrs.c:393
msgid "Enter the addresses that will receive a carbon copy of the message"
msgstr ""

#: composer/e-msg-composer-hdrs.c:396
msgid "Bcc:"
msgstr "Bcc:"

#: composer/e-msg-composer-hdrs.c:397
msgid ""
"Enter the addresses that will receive a carbon copy of the message without "
"appearing in the recipient list of the message."
msgstr ""

#: composer/e-msg-composer-select-file.c:291
#: ui/evolution-message-composer.xml.h:2
msgid "Attach a file"
msgstr "Legg ved fil"

#: composer/e-msg-composer.c:688
#, c-format
msgid ""
"Error while reading file %s:\n"
"%s"
msgstr ""
"Feil ved lesing av fil %s:\n"
"%s"

#: composer/e-msg-composer.c:905
msgid "Save as..."
msgstr "Lagre som ..."

#: composer/e-msg-composer.c:914
msgid "Warning!"
msgstr "Åtvaring:"

#: composer/e-msg-composer.c:918
msgid "File exists, overwrite?"
msgstr "Fila eksisterar, skriv over?"

#: composer/e-msg-composer.c:940
#, fuzzy, c-format
msgid "Error saving file: %s"
msgstr ""
"Feil ved lesing a fil:\n"
"%1"

#: composer/e-msg-composer.c:959
#, c-format
msgid "Error loading file: %s"
msgstr "Feil ved lasting av fil %s"

#: composer/e-msg-composer.c:990
#, fuzzy, c-format
msgid "Error accessing file: %s"
msgstr ""
"Feil ved lesing a fil:\n"
"%1"

#: composer/e-msg-composer.c:998
#, fuzzy
msgid "Unable to retrieve message from editor"
msgstr "Kunne ikkje motta fil"

#: composer/e-msg-composer.c:1005
#, fuzzy, c-format
msgid ""
"Unable to seek on file: %s\n"
"%s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: composer/e-msg-composer.c:1012
#, fuzzy, c-format
msgid ""
"Unable to truncate file: %s\n"
"%s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: composer/e-msg-composer.c:1021
#, fuzzy, c-format
msgid ""
"Error autosaving message: %s\n"
" %s"
msgstr ""
"Feil ved lesing a fil:\n"
"%1"

#: composer/e-msg-composer.c:1123
msgid ""
"Ximian Evolution has found unsaved files from a previous session.\n"
"Would you like to try to recover them?"
msgstr ""

#: composer/e-msg-composer.c:1281
#, fuzzy
msgid ""
"This message has not been sent.\n"
"\n"
"Do you wish to save your changes?"
msgstr ""
"Dette er siste trekk.\n"
"Vil du leggja til fleire trekk?"

#: composer/e-msg-composer.c:1288
msgid "Warning: Modified Message"
msgstr "Åtvaring: Melding er endra"

#: composer/e-msg-composer.c:1311
msgid "Open file"
msgstr "Opna fil"

#: composer/e-msg-composer.c:1460
msgid "Insert File"
msgstr "Set inn fil"

#: composer/e-msg-composer.c:1846 composer/e-msg-composer.c:2322
msgid "Compose a message"
msgstr "Skriv ei melding"

#: composer/e-msg-composer.c:2339
msgid ""
"Could not create composer window:\n"
"Unable to activate address selector control."
msgstr ""

#: composer/e-msg-composer.c:2362 composer/e-msg-composer.c:2417
#, fuzzy
msgid ""
"Could not create composer window:\n"
"Unable to activate HTML editor component."
msgstr "Kan ikkje laga nytt vindauge.\n"

#: composer/evolution-composer.c:367
msgid ""
"Could not create composer window, because you have not yet\n"
"configured any identities in the mail component."
msgstr ""

#: composer/evolution-composer.c:382
msgid "Cannot initialize Evolution's composer."
msgstr "Klarar ikkje å starte Evolution-komponisten."

#: data/evolution.desktop.in.h:1
msgid "The Evolution groupware suite"
msgstr "Gruppevareverktyet Evolution"

#: data/evolution.desktop.in.h:2
msgid "Ximian Evolution"
msgstr "Ximian Evolution"

#: data/evolution.keys.in.h:1
msgid "address card"
msgstr "adressekort"

#: data/evolution.keys.in.h:2
msgid "calendar information"
msgstr "kalendarinformasjon"

#: default_user/searches.xml.h:1
msgid "Body contains"
msgstr "Kropp inneheld"

#: default_user/searches.xml.h:2
msgid "Body does not contain"
msgstr "Kropp inneheld ikkje"

#: default_user/searches.xml.h:3
msgid "Body or subject contains"
msgstr "Kropp eller emne inneheld"

#: default_user/searches.xml.h:4
msgid "Message contains"
msgstr "Meldinga inneheld"

#: default_user/searches.xml.h:5
msgid "Recipients contain"
msgstr "Mottakar inneheld"

#: default_user/searches.xml.h:6
msgid "Sender contains"
msgstr "Avsendar inneheld"

#: default_user/searches.xml.h:7
msgid "Subject contains"
msgstr "Emne inneheld"

#: default_user/searches.xml.h:8
msgid "Subject does not contain"
msgstr "Emne inneheld ikkje"

#. Remember the password?
#: e-util/e-passwords.c:360 mail/mail-session.c:269
msgid "Remember this password"
msgstr "Husk dette passordet"

#: e-util/e-passwords.c:362 mail/mail-session.c:270
msgid "Remember this password for the remainder of this session"
msgstr ""

#. strptime format of a weekday, a date and a time,
#. in 12-hour format, without seconds.
#: e-util/e-time-utils.c:168 e-util/e-time-utils.c:362
msgid "%a %m/%d/%Y %I:%M %p"
msgstr "%a %m/%d/%Y %I:%M %p"

#. strptime format of a weekday, a date and a time,
#. in 24-hour format, without seconds.
#: e-util/e-time-utils.c:173 e-util/e-time-utils.c:353
msgid "%a %m/%d/%Y %H:%M"
msgstr ""

#. strptime format of a weekday, a date and a time,
#. in 12-hour format, without minutes or seconds.
#: e-util/e-time-utils.c:178
msgid "%a %m/%d/%Y %I %p"
msgstr "%a %m/%d/%Y %I %p"

#. strptime format of a weekday, a date and a time,
#. in 24-hour format, without minutes or seconds.
#: e-util/e-time-utils.c:183
msgid "%a %m/%d/%Y %H"
msgstr "%a %d/%m/%Y %H"

#. strptime format of a date and a time, in 12-hour format.
#: e-util/e-time-utils.c:194
msgid "%m/%d/%Y %I:%M:%S %p"
msgstr "%m/%d/%Y %I:%M:%S %p"

#. strptime format of a date and a time, in 24-hour format.
#: e-util/e-time-utils.c:198
msgid "%m/%d/%Y %H:%M:%S"
msgstr "%d/%m/%Y %H:%M:%S"

#. strptime format of a date and a time, in 12-hour format,
#. without seconds.
#: e-util/e-time-utils.c:203
msgid "%m/%d/%Y %I:%M %p"
msgstr "%m/%d/%Y %I:%M %p"

#. strptime format of a date and a time, in 24-hour format,
#. without seconds.
#: e-util/e-time-utils.c:208
msgid "%m/%d/%Y %H:%M"
msgstr "%d/%m/%Y %H:%M"

#. strptime format of a date and a time, in 12-hour format,
#. without minutes or seconds.
#: e-util/e-time-utils.c:213
msgid "%m/%d/%Y %I %p"
msgstr "%m/%d/%Y %I %p"

#. strptime format of a date and a time, in 24-hour format,
#. without minutes or seconds.
#: e-util/e-time-utils.c:218
msgid "%m/%d/%Y %H"
msgstr "%m/%d/%Y %H"

#. strptime format for a time of day, in 12-hour format.
#: e-util/e-time-utils.c:303 e-util/e-time-utils.c:402
msgid "%I:%M:%S %p"
msgstr "%I:%M:%S %p"

#. strptime format for a time of day, in 24-hour format.
#: e-util/e-time-utils.c:307 e-util/e-time-utils.c:394
msgid "%H:%M:%S"
msgstr "%H:%M:%S"

#. strptime format for time of day, without seconds,
#. in 12-hour format.
#: e-util/e-time-utils.c:312 e-util/e-time-utils.c:399
#: widgets/misc/e-dateedit.c:1420 widgets/misc/e-dateedit.c:1647
msgid "%I:%M %p"
msgstr "%I:%M %p"

#. strptime format for time of day, without seconds 24-hour format.
#: e-util/e-time-utils.c:316 e-util/e-time-utils.c:391
#: widgets/misc/e-dateedit.c:1417 widgets/misc/e-dateedit.c:1644
msgid "%H:%M"
msgstr "%H:%M"

#. strptime format for hour and AM/PM, 12-hour format.
#: e-util/e-time-utils.c:320
msgid "%I %p"
msgstr "%I %p"

#: executive-summary/GNOME_Evolution_Summary.oaf.in.h:1
#: my-evolution/GNOME_Evolution_Summary.oaf.in.h:1
msgid "Evolution component for the executive summary."
msgstr "Evolutionkomponent for Mitt samandrag"

#: executive-summary/GNOME_Evolution_Summary.oaf.in.h:2
#, fuzzy
msgid "Factory for the Evolution executive summary component."
msgstr "Kan ikkje initialisera lokale variablar"

#: executive-summary/component/component-factory.c:151
#, fuzzy
msgid "Cannot initialize Evolution's Executive Summary component."
msgstr "Kan ikkje initialisera lokale variablar"

#: executive-summary/component/e-summary-callbacks.c:125
#, fuzzy
msgid "Select a service"
msgstr "Vel ei fil"

#: executive-summary/component/e-summary-callbacks.c:289
msgid ""
"You can select a different HTML page for the background of the Executive "
"Summary.\n"
"\n"
"Just leave it blank for the default"
msgstr ""

#: executive-summary/component/e-summary-url.c:69
#: executive-summary/component/e-summary-url.c:74
#: executive-summary/component/e-summary-url.c:81
#, c-format
msgid "Open %s with the default GNOME application"
msgstr ""

#: executive-summary/component/e-summary-url.c:70
#, c-format
msgid "Open %s with the default GNOME web browser"
msgstr ""

#: executive-summary/component/e-summary-url.c:71
#, fuzzy, c-format
msgid "Send an email to %s"
msgstr "Send ein e-post"

#: executive-summary/component/e-summary-url.c:72
#, fuzzy, c-format
msgid "Change the view to %s"
msgstr "Endra namnet på denne mappa"

#: executive-summary/component/e-summary-url.c:73
#, fuzzy, c-format
msgid "Run %s"
msgstr "URL: %s"

#: executive-summary/component/e-summary-url.c:75
#, fuzzy, c-format
msgid "Close %s"
msgstr "Lukk"

#: executive-summary/component/e-summary-url.c:76
#, fuzzy, c-format
msgid "Move %s to the left"
msgstr "Flytt denne mappa til ein annan plass"

#: executive-summary/component/e-summary-url.c:77
#, c-format
msgid "Move %s to the right"
msgstr ""

#: executive-summary/component/e-summary-url.c:78
#, c-format
msgid "Move %s into the previous row"
msgstr ""

#: executive-summary/component/e-summary-url.c:79
#, c-format
msgid "Move %s into the next row"
msgstr ""

#: executive-summary/component/e-summary-url.c:80
#, fuzzy, c-format
msgid "Configure %s"
msgstr "Set opp %1"

#: executive-summary/component/e-summary-url.c:553
#, fuzzy
msgid "page"
msgstr "Side"

#: executive-summary/component/e-summary.c:925
#, fuzzy, c-format
msgid ""
"Cannot open the HTML file:\n"
"%s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: executive-summary/component/e-summary.c:939
#, fuzzy, c-format
msgid ""
"Error reading data:\n"
"%s"
msgstr "Feil ved asting av %s"

#: executive-summary/component/e-summary.c:957
msgid "File does not have a place for the services.\n"
msgstr ""

#: executive-summary/component/main.c:61
msgid ""
"Executive summary component could not initialize Bonobo.\n"
"If there was a warning message about the RootPOA, it probably means\n"
"you compiled Bonobo against GOAD instead of OAF."
msgstr ""

#: executive-summary/test-service/GNOME_Evolution_Summary_rdf.oaf.in.h:1
#, fuzzy
msgid "Factory for the RDF summary."
msgstr "Øydelagd oppsettfil."

#: executive-summary/test-service/GNOME_Evolution_Summary_rdf.oaf.in.h:2
#, fuzzy
msgid "RDF Summary"
msgstr "Samandrag"

#: executive-summary/test-service/GNOME_Evolution_Summary_test.oaf.in.h:1
#, fuzzy
msgid "Factory for the test bonobo component."
msgstr "Øydelagd oppsettfil."

#: executive-summary/test-service/GNOME_Evolution_Summary_test.oaf.in.h:2
#, fuzzy
msgid "Factory for the test component."
msgstr "Øydelagd oppsettfil."

#: executive-summary/test-service/GNOME_Evolution_Summary_test.oaf.in.h:3
msgid "Test bonobo service"
msgstr ""

#: executive-summary/test-service/GNOME_Evolution_Summary_test.oaf.in.h:4
#, fuzzy
msgid "Test service"
msgstr "Estherville"

#: executive-summary/test-service/rdf-summary.c:512
#: executive-summary/test-service/rdf-summary.c:549
#: executive-summary/test-service/rdf-summary.c:594
#: widgets/misc/e-messagebox.c:166
msgid "Error"
msgstr "Feil"

#: executive-summary/test-service/rdf-summary.c:775
msgid "Update automatically"
msgstr ""

#: executive-summary/test-service/rdf-summary.c:785
#, fuzzy
msgid "Update now"
msgstr "Oppdater"

#: executive-summary/test-service/rdf-summary.c:795
#, fuzzy
msgid "Update every "
msgstr "Oppdateringsfrekvens"

#: filter/filter-datespec.c:80
msgid "year"
msgstr "år"

#: filter/filter-datespec.c:80
msgid "years"
msgstr "år"

#: filter/filter-datespec.c:81
msgid "month"
msgstr "månad"

#: filter/filter-datespec.c:81
msgid "months"
msgstr "månader"

#: filter/filter-datespec.c:82
msgid "week"
msgstr "veke"

#: filter/filter-datespec.c:82
msgid "weeks"
msgstr "veker"

#: filter/filter-datespec.c:84
msgid "hour"
msgstr "time"

#: filter/filter-datespec.c:85
msgid "minute"
msgstr "minutt"

#: filter/filter-datespec.c:86
msgid "second"
msgstr "sekund"

#: filter/filter-datespec.c:86
msgid "seconds"
msgstr "sekund"

#: filter/filter-datespec.c:194
msgid "You have forgotten to choose a date."
msgstr "Du har gløymt å velje ein dato."

#: filter/filter-datespec.c:196
msgid "You have chosen an invalid date."
msgstr "Du har vald ein ugyldig dato."

#: filter/filter-datespec.c:271
msgid ""
"The message's date will be compared against\n"
"whatever the time is when the filter is run\n"
"or vfolder is opened."
msgstr ""

#: filter/filter-datespec.c:294
msgid ""
"The message's date will be compared against\n"
"the time that you specify here."
msgstr ""

#: filter/filter-datespec.c:334
msgid ""
"The message's date will be compared against\n"
"a time relative to when the filter is run;\n"
"\"a week ago\", for example."
msgstr ""

#. keep in sync with FilterDatespec_type!
#: filter/filter-datespec.c:369
msgid "the current time"
msgstr "tid no"

#: filter/filter-datespec.c:369
msgid "a time you specify"
msgstr "ei tid du spesifiserar"

#: filter/filter-datespec.c:370
#, fuzzy
msgid "a time relative to the current time"
msgstr "Vis hendingane for denne dagen"

#. The dialog
#: filter/filter-datespec.c:394
#, fuzzy
msgid "Select a time to compare against"
msgstr "Vel ei biletefil"

#. The label
#: filter/filter-datespec.c:428
#, fuzzy
msgid "Compare against"
msgstr "Kompilatoråtvaringar"

#: filter/filter-datespec.c:546 filter/filter-datespec.c:725
msgid "now"
msgstr "no"

#: filter/filter-datespec.c:575
msgid " ago"
msgstr " sidan"

#: filter/filter-datespec.c:621
msgid "ago"
msgstr "sidan"

#: filter/filter-datespec.c:711 mail/message-list.c:973
#, fuzzy
msgid "%b %d %l:%M %p"
msgstr "%d. %b %k:%M"

#: filter/filter-datespec.c:722
msgid "<click here to select a date>"
msgstr "<klikk her for å velje ein dato>"

#: filter/filter-editor.c:132 filter/filter.glade.h:3
#, fuzzy
msgid "Filter Rules"
msgstr "Filter-reglar"

#. and now for the action area
#: filter/filter-filter.c:487
#, fuzzy
msgid "Then"
msgstr "Tiaren"

#: filter/filter-filter.c:501
msgid "Add action"
msgstr "Legg til handling"

#: filter/filter-folder.c:156
msgid ""
"You forgot to choose a folder.\n"
"Please go back and specify a valid folder to deliver mail to."
msgstr ""

#: filter/filter-folder.c:239 filter/vfolder-rule.c:365
#: mail/mail-account-gui.c:834
msgid "Select Folder"
msgstr "Vel mappe"

#: filter/filter-folder.c:274
msgid "Enter folder URI"
msgstr ""

#: filter/filter-folder.c:321
msgid "<click here to select a folder>"
msgstr "<klikk her for å velje mappe>"

#: filter/filter-input.c:198
#, fuzzy, c-format
msgid ""
"Error in regular expression '%s':\n"
"%s"
msgstr ""
"Feil ved lesing av fil:\n"
"%s"

#: filter/filter-part.c:488 shell/evolution-test-component.c:41
msgid "Test"
msgstr "Test"

#: filter/filter-rule.c:217
msgid "You must name this filter."
msgstr "Du gi dette filteret eit namn."

#: filter/filter-rule.c:720
msgid "Rule name: "
msgstr "Regelnamn: "

#: filter/filter-rule.c:724
msgid "Untitled"
msgstr "Utan tittel"

#: filter/filter-rule.c:741
msgid "If"
msgstr "Dersom"

#: filter/filter-rule.c:759
#, fuzzy
msgid "Execute actions"
msgstr "Køyr autorun.sh"

#: filter/filter-rule.c:763
msgid "if all criteria are met"
msgstr ""

#: filter/filter-rule.c:768
msgid "if any criteria are met"
msgstr ""

#: filter/filter-rule.c:779
msgid "Add criterion"
msgstr "Legg til kriterium"

#: filter/filter-rule.c:864
msgid "incoming"
msgstr "inkomande"

#: filter/filter-rule.c:864
msgid "outgoing"
msgstr "Utgåande"

#: filter/filter.glade.h:1
msgid "Edit Filters"
msgstr "Rediger filter"

#: filter/filter.glade.h:2
msgid "Edit VFolders"
msgstr "Rediger vMapper"

#: filter/filter.glade.h:4
msgid "Incoming"
msgstr "Innkomande"

#: filter/filter.glade.h:5
msgid "Outgoing"
msgstr "Utgåande"

#: filter/filter.glade.h:6 filter/vfolder-editor.c:130
msgid "Virtual Folders"
msgstr "Virtuelle mapper"

#: filter/filter.glade.h:11
#, fuzzy
msgid "specific folders only"
msgstr "Den oppgitte fila finst ikkje"

#: filter/filter.glade.h:12
msgid "vFolder Sources"
msgstr "vMappe-kjelder"

#: filter/filter.glade.h:13
msgid "with all active remote folders"
msgstr ""

#: filter/filter.glade.h:14
msgid "with all local and active remote folders"
msgstr ""

#: filter/filter.glade.h:15
msgid "with all local folders"
msgstr ""

#. Automatically generated. Do not edit.
#: filter/libfilter-i18n.h:2
msgid "Assign Color"
msgstr "Tildel farge"

#: filter/libfilter-i18n.h:3
msgid "Assign Score"
msgstr ""

#: filter/libfilter-i18n.h:4
msgid "Attachments"
msgstr "Vedlegg"

#: filter/libfilter-i18n.h:5
msgid "contains"
msgstr "inneheld"

#: filter/libfilter-i18n.h:6
msgid "Copy to Folder"
msgstr "Kopier til mappe"

#: filter/libfilter-i18n.h:7
msgid "Date received"
msgstr "Dato motteke"

#: filter/libfilter-i18n.h:8
msgid "Date sent"
msgstr "Dato sendt"

#: filter/libfilter-i18n.h:10
msgid "Deleted"
msgstr "Sletta"

#: filter/libfilter-i18n.h:11
msgid "does not contain"
msgstr "inneheld ikkje"

#: filter/libfilter-i18n.h:12
msgid "does not end with"
msgstr "sluttar ikkje med"

#: filter/libfilter-i18n.h:13
msgid "does not exist"
msgstr "finst ikkje"

#: filter/libfilter-i18n.h:14
msgid "does not sound like"
msgstr "høyres ikkje ut som"

#: filter/libfilter-i18n.h:15
msgid "does not start with"
msgstr "startar ikkje med"

#: filter/libfilter-i18n.h:16
msgid "Do Not Exist"
msgstr "Eksisterar ikkje"

#: filter/libfilter-i18n.h:17
msgid "Draft"
msgstr "Kladd"

#: filter/libfilter-i18n.h:18
msgid "ends with"
msgstr "sluttar med"

#: filter/libfilter-i18n.h:19
msgid "Execute Shell Command"
msgstr ""

#: filter/libfilter-i18n.h:20
msgid "Exist"
msgstr "Eksisterar"

#: filter/libfilter-i18n.h:21
msgid "exists"
msgstr "eksisterar"

#: filter/libfilter-i18n.h:22
msgid "Expression"
msgstr "Uttrykk"

#: filter/libfilter-i18n.h:23
msgid "Important"
msgstr "Viktig"

#: filter/libfilter-i18n.h:24
msgid "is"
msgstr "er"

#: filter/libfilter-i18n.h:25
#, fuzzy
msgid "is after"
msgstr "var etter"

#: filter/libfilter-i18n.h:26
#, fuzzy
msgid "is before"
msgstr "var før"

#: filter/libfilter-i18n.h:27
msgid "is greater than"
msgstr "er større enn"

#: filter/libfilter-i18n.h:28
msgid "is less than"
msgstr "er mindre enn"

#: filter/libfilter-i18n.h:29
msgid "is not"
msgstr "er ikkje"

#: filter/libfilter-i18n.h:30
msgid "Mailing list"
msgstr "E-postliste"

#: filter/libfilter-i18n.h:31
msgid "Message Body"
msgstr "Meldingskropp"

#: filter/libfilter-i18n.h:32
#, fuzzy
msgid "Message Header"
msgstr "Melding motteken"

#: filter/libfilter-i18n.h:33
msgid "Move to Folder"
msgstr "Flytt til mappe"

#: filter/libfilter-i18n.h:34 mail/message-list.c:671
#: mail/message-list.etspec.h:4
#, fuzzy
msgid "Needs Reply"
msgstr "Fri/Oppteke svar"

#: filter/libfilter-i18n.h:35
msgid "Read"
msgstr "Les"

#: filter/libfilter-i18n.h:36
msgid "Recipients"
msgstr "Mottakarar"

#: filter/libfilter-i18n.h:37
msgid "Regex Match"
msgstr ""

#: filter/libfilter-i18n.h:38
msgid "Replied to"
msgstr "Svart til"

#: filter/libfilter-i18n.h:39 filter/score-rule.c:204 filter/score-rule.c:206
#: mail/message-list.etspec.h:6
msgid "Score"
msgstr "Poengsum"

#: filter/libfilter-i18n.h:40 mail/mail-callbacks.c:1486
msgid "Sender"
msgstr "Avsendar"

#: filter/libfilter-i18n.h:41
msgid "Set Status"
msgstr "Sett status"

#: filter/libfilter-i18n.h:42
msgid "Size (kB)"
msgstr "Storleik (kB)"

#: filter/libfilter-i18n.h:43
msgid "sounds like"
msgstr "høyres ut som"

#: filter/libfilter-i18n.h:44
#, fuzzy
msgid "Source Account"
msgstr "Set opp konto"

#: filter/libfilter-i18n.h:45
msgid "Specific header"
msgstr ""

#: filter/libfilter-i18n.h:46
msgid "starts with"
msgstr "byrjar med"

#: filter/libfilter-i18n.h:48
msgid "Stop Processing"
msgstr "Stopp prosessering"

#: filter/libfilter-i18n.h:49 mail/mail-format.c:932
#: mail/message-list.etspec.h:10
msgid "Subject"
msgstr "Emne"

#: filter/rule-editor.c:179
msgid "Rules"
msgstr "Linjer"

#: filter/rule-editor.c:284
msgid "Add Rule"
msgstr "Legg til regel"

#: filter/rule-editor.c:357
msgid "Edit Rule"
msgstr "Rediger regel"

#: filter/score-editor.c:130
#, fuzzy
msgid "Score Rules"
msgstr "Rediger filterreglar"

#: filter/vfolder-rule.c:204
msgid "You must name this vfolder."
msgstr "Du må gi denne mappa eit namn."

#: filter/vfolder-rule.c:213
msgid "You need to to specify at least one folder as a source."
msgstr ""

#: importers/elm-importer.c:95
msgid "Evolution is importing your old Elm mail"
msgstr ""

#: importers/elm-importer.c:96 importers/netscape-importer.c:107
#: importers/pine-importer.c:101
msgid "Importing..."
msgstr "Importerar ..."

#: importers/elm-importer.c:98 importers/netscape-importer.c:109
#: importers/pine-importer.c:103
msgid "Please wait"
msgstr "Venlegast vent"

#: importers/elm-importer.c:169 importers/netscape-importer.c:689
#: importers/pine-importer.c:365
#, c-format
msgid "Importing %s as %s"
msgstr "Importerar %s som %s"

#: importers/elm-importer.c:375 importers/netscape-importer.c:782
#: importers/pine-importer.c:471
#, fuzzy, c-format
msgid "Scanning %s"
msgstr "Sender %1"

#: importers/elm-importer.c:525 importers/netscape-importer.c:958
#: importers/pine-importer.c:637 mail/component-factory.c:100
msgid "Mail"
msgstr "E-post"

#: importers/elm-importer.c:545
msgid ""
"Evolution has found Elm mail files\n"
"Would you like to import them into Evolution?"
msgstr ""

#: importers/elm-importer.c:574
msgid "Elm"
msgstr "Elm"

#: importers/evolution-gnomecard-importer.c:228 importers/pine-importer.c:642
msgid "Addressbook"
msgstr "Adressebok"

#: importers/evolution-gnomecard-importer.c:246
msgid ""
"Evolution has found GnomeCard files.\n"
"Would you like them to be imported into Evolution?"
msgstr ""

#: importers/netscape-importer.c:106
msgid "Evolution is importing your old Netscape data"
msgstr ""

#: importers/netscape-importer.c:888 importers/pine-importer.c:570
#, fuzzy
msgid "Scanning directory"
msgstr "Leitar etter tilleggsmodular"

#: importers/netscape-importer.c:897
msgid "Starting import"
msgstr "Startar importering"

#: importers/netscape-importer.c:963
msgid "Settings"
msgstr "Innstillingar"

#: importers/netscape-importer.c:984
msgid ""
"Evolution has found Netscape mail files.\n"
"Would you like them to be imported into Evolution?"
msgstr ""

#: importers/pine-importer.c:100
msgid "Evolution is importing your old Pine data"
msgstr "Evolution importerar dine galme Pine-data"

#: importers/pine-importer.c:663
msgid ""
"Evolution has found Pine mail files.\n"
"Would you like to import them into Evolution?"
msgstr ""
"Evolution har funne Pine e-postfiler.\n"
"Vil du importere desse inn i Evolution?"

#: importers/pine-importer.c:691
msgid "Pine"
msgstr "Pine"

#: mail/GNOME_Evolution_Mail.oaf.in.h:1 notes/GNOME_Evolution_Notes.oaf.in.h:2
msgid "Evolution component for handling mail."
msgstr "Evolutionskomponent for å handtere e-post."

#: mail/GNOME_Evolution_Mail.oaf.in.h:2
#, fuzzy
msgid "Evolution mail composer."
msgstr "Kan ikkje initialisera lokale variablar"

#: mail/GNOME_Evolution_Mail.oaf.in.h:3
#, fuzzy
msgid "Evolution mail executive summary component."
msgstr "Kan ikkje initialisera lokale variablar"

#: mail/GNOME_Evolution_Mail.oaf.in.h:4
#, fuzzy
msgid "Evolution mail folder display component."
msgstr "Kan ikkje initialisera lokale variablar"

#: mail/GNOME_Evolution_Mail.oaf.in.h:5
#, fuzzy
msgid "Evolution mail folder factory component."
msgstr "Kan ikkje initialisera lokale variablar"

#: mail/GNOME_Evolution_Mail.oaf.in.h:6
#, fuzzy
msgid "Factory for the Evolution composer."
msgstr "Øydelagd oppsettfil."

#: mail/GNOME_Evolution_Mail.oaf.in.h:7
#, fuzzy
msgid "Factory for the Mail Summary component."
msgstr "Øydelagd oppsettfil."

#: mail/GNOME_Evolution_Mail.oaf.in.h:8
#, fuzzy
msgid "Mail configuration interface"
msgstr "Oppsett"

#: mail/component-factory.c:100
#, fuzzy
msgid "Folder containing mail"
msgstr "Fil alt i liste"

#: mail/component-factory.c:101
msgid "Mail storage folder (internal)"
msgstr "E-post lagrinsmappe (intern)"

#: mail/component-factory.c:102
msgid "Virtual Trash"
msgstr "Virtuell papirkorg"

#: mail/component-factory.c:102
#, fuzzy
msgid "Virtual Trash folder"
msgstr "Mapper"

#: mail/component-factory.c:129
#, fuzzy, c-format
msgid "Cannot connect to store: %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: mail/component-factory.c:147
msgid "This folder cannot contain messages."
msgstr "Denne mappe kan ikkje innehalde meldingar."

#: mail/component-factory.c:432
msgid "Properties..."
msgstr "Eigenskapar ..."

#: mail/component-factory.c:432
#, fuzzy
msgid "Change this folder's properties"
msgstr "Endra namnet på spelarane"

#: mail/component-factory.c:783
msgid ""
"Some of your mail settings seem corrupt, please check that everything is in "
"order."
msgstr ""
"Nokre av e-postinstillingane dine ser ut til å vere øydelagde, sjekk at alt "
"er i orden."

#: mail/component-factory.c:952
msgid "New Mail Message"
msgstr "Ny e-postmelding"

#: mail/component-factory.c:952
msgid "New _Mail Message"
msgstr "Ny e-post_melding"

#: mail/component-factory.c:977
msgid "Cannot initialize Evolution's mail component."
msgstr "Klarar ikkje initialisere Evolution sin e-postkomponent"

#: mail/component-factory.c:986
#, fuzzy
msgid "Cannot initialize Evolution's mail config component."
msgstr "Kan ikkje initialisera lokale variablar"

#: mail/component-factory.c:992
#, fuzzy
msgid "Cannot initialize Evolution's folder info component."
msgstr "Kan ikkje initialisera lokale variablar"

#: mail/component-factory.c:1208
msgid "Cannot register storage with shell"
msgstr "Klarar ikkje å registrer lager med skal"

#: mail/folder-browser-ui.c:272
#, c-format
msgid "Properties for \"%s\""
msgstr "Eigenskapar for «%s»"

#: mail/folder-browser-ui.c:274
msgid "Properties"
msgstr "Eigenskapar"

#: mail/folder-browser.c:298 mail/mail-display.c:307
#, c-format
msgid "Could not create temporary directory: %s"
msgstr "Klarte ikkje å lage mellombels katalog: %s"

#: mail/folder-browser.c:752
#, c-format
msgid "%d new"
msgstr "%d nye"

#: mail/folder-browser.c:755 mail/folder-browser.c:763
#: mail/folder-browser.c:766
msgid ", "
msgstr ", "

#: mail/folder-browser.c:757
#, c-format
msgid "%d hidden"
msgstr "%d gøymde"

#: mail/folder-browser.c:759
#, c-format
msgid "%d visible"
msgstr ""

#: mail/folder-browser.c:764
#, c-format
msgid "%d selected"
msgstr "%d valde"

#: mail/folder-browser.c:769
#, c-format
msgid "%d unsent"
msgstr "%d usendt"

#: mail/folder-browser.c:771
#, c-format
msgid "%d sent"
msgstr "%d sendt"

#: mail/folder-browser.c:773
#, c-format
msgid "%d total"
msgstr "%d totalt"

#: mail/folder-browser.c:1055
msgid "Create vFolder from Search"
msgstr "Lag vFolder frå søk"

#: mail/folder-browser.c:1438
msgid "VFolder on _Subject"
msgstr "vMappe på _emne"

#: mail/folder-browser.c:1439
msgid "VFolder on Se_nder"
msgstr "vMappe på avse_dar"

#: mail/folder-browser.c:1440
msgid "VFolder on _Recipients"
msgstr "vMappe på mottaka_r"

#: mail/folder-browser.c:1441
msgid "VFolder on Mailing _List"
msgstr "vMappe på e-post_liste"

#: mail/folder-browser.c:1445
msgid "Filter on Sub_ject"
msgstr "Filtrér på _emne"

#: mail/folder-browser.c:1446
msgid "Filter on Sen_der"
msgstr "Filtrér på avsen_dar:"

#: mail/folder-browser.c:1447
#, fuzzy
msgid "Filter on Re_cipients"
msgstr "Skriv ut filer"

#: mail/folder-browser.c:1448
#, fuzzy
msgid "Filter on _Mailing List"
msgstr "Fil alt i liste"

#: mail/folder-browser.c:1456 ui/evolution-mail-message.xml.h:96
msgid "_Edit as New Message..."
msgstr "R_ediger som ny melding .."

#: mail/folder-browser.c:1457 ui/evolution-mail-message.xml.h:105
msgid "_Save As..."
msgstr "_Lagre som ..."

#: mail/folder-browser.c:1458
msgid "_Print"
msgstr "S_kriv ut"

#: mail/folder-browser.c:1462 ui/evolution-mail-message.xml.h:104
msgid "_Reply to Sender"
msgstr "Sva_r til avsendar"

#: mail/folder-browser.c:1463 ui/evolution-mail-message.xml.h:73
msgid "Reply to _List"
msgstr "Svar til _liste"

#: mail/folder-browser.c:1464 ui/evolution-mail-message.xml.h:72
msgid "Reply to _All"
msgstr "Svar til _alle"

#: mail/folder-browser.c:1465
msgid "_Forward"
msgstr "_Vidaresend"

#: mail/folder-browser.c:1467 ui/evolution-mail-message.xml.h:43
msgid "Mar_k as Read"
msgstr "Mar_ker som lesen"

#: mail/folder-browser.c:1468 ui/evolution-mail-message.xml.h:45
msgid "Mark as U_nread"
msgstr "Marker som _ulesen"

#: mail/folder-browser.c:1469
msgid "Mark as _Important"
msgstr "Marker som v_iktig"

#: mail/folder-browser.c:1470
msgid "Mark as Unim_portant"
msgstr "Marker som uvi_ktig"

#: mail/folder-browser.c:1471
#, fuzzy
msgid "Mark as Needing Reply"
msgstr "Møtesvar"

#: mail/folder-browser.c:1472
#, fuzzy
msgid "Mark as Not Needing Reply"
msgstr "Møtesvar"

#: mail/folder-browser.c:1476
msgid "_Move to Folder..."
msgstr "Flytt til _mappe ..."

#: mail/folder-browser.c:1477
msgid "_Copy to Folder..."
msgstr "_Kopier til mappe ..."

#: mail/folder-browser.c:1479 ui/evolution-mail-message.xml.h:107
#, fuzzy
msgid "_Undelete"
msgstr "Slett"

#: mail/folder-browser.c:1483 ui/evolution-mail-message.xml.h:1
msgid "Add Sender to Address Book"
msgstr "Legg til avsendar i adresseboka"

#: mail/folder-browser.c:1486
msgid "Apply Filters"
msgstr "Bruk filter"

#: mail/folder-browser.c:1488
#, fuzzy
msgid "Create Ru_le From Message"
msgstr "Mapper"

#: mail/folder-browser.c:1657
#, fuzzy
msgid "Filter on Mailing List"
msgstr "Fil alt i liste"

#: mail/folder-browser.c:1658
#, fuzzy
msgid "VFolder on Mailing List"
msgstr "Fil alt i liste"

#: mail/folder-browser.c:1660
#, c-format
msgid "Filter on Mailing List (%s)"
msgstr "Filtrér på e-postliste (%s)"

#: mail/folder-browser.c:1661
#, fuzzy, c-format
msgid "VFolder on Mailing List (%s)"
msgstr "Fil alt i liste"

#: mail/folder-browser.h:26
msgid "Default"
msgstr "Forvald"

#: mail/folder-info.c:64
msgid "Getting Folder Information"
msgstr "Hentar informasjon om mapper"

#: mail/importers/GNOME_Evolution_Mail_Mbox_Importer.oaf.in.h:1
#, fuzzy
msgid "Factory to import mbox into Evolution"
msgstr "Øydelagd oppsettfil."

#: mail/importers/GNOME_Evolution_Mail_Mbox_Importer.oaf.in.h:2
msgid "Imports mbox files into Evolution"
msgstr "Importerar mbox-filer inn i Evolution"

#: mail/importers/GNOME_Evolution_Mail_Outlook_Importer.oaf.in.h:1
msgid "Factory to import Outlook Express 4 mails into Evolution"
msgstr "Fabrikk for å importere Outlook Express 4 e-postar inn i Evolution"

#: mail/importers/GNOME_Evolution_Mail_Outlook_Importer.oaf.in.h:2
msgid "Imports Outlook Express 4 files into Evolution"
msgstr "Importér Outlook Express 4 filer inn i Evolution"

#: mail/local-config.glade.h:1
msgid "Body contents"
msgstr "Kroppsinnhald"

#: mail/local-config.glade.h:2
#, fuzzy
msgid "Current store format:"
msgstr "Kunne ikkje starta %1."

#: mail/local-config.glade.h:3
msgid "Indexing:"
msgstr "Indekserar"

#: mail/local-config.glade.h:4
msgid "Mailbox Format"
msgstr "Postkasseformat"

#: mail/local-config.glade.h:5
#, fuzzy
msgid "New store format:"
msgstr "&Ny type"

#: mail/local-config.glade.h:6
msgid ""
"Note: When converting between mailbox formats, a failure\n"
"(such as lack of disk space) may not be automatically\n"
"recoverable.  Please use this feature with care."
msgstr ""
"Merk: Ved konvertering mellom e-postkasseformat, ein feil\n"
"(slik som slutt på diskplass) kan vere vanskeleg å rette opp.\n"
"Bruk denne funksjonen med varsemd."

#: mail/local-config.glade.h:9
msgid "maildir"
msgstr "maildir"

#: mail/local-config.glade.h:10
msgid "mbox"
msgstr "mbox"

#: mail/local-config.glade.h:11
msgid "mh"
msgstr "mh"

#: mail/mail-account-editor-news.c:105 mail/mail-account-editor.c:107
msgid "You have not filled in all of the required information."
msgstr "Du har ikkje fyllt ut all den påkrevde informasjonen."

#. give our dialog an OK button and title
#: mail/mail-account-editor-news.c:160
#, fuzzy
msgid "Evolution News Editor"
msgstr "KDeelop-installering"

#. give our dialog an OK button and title
#: mail/mail-account-editor.c:160
msgid "Evolution Account Editor"
msgstr "Evolutions kontohandtering"

#: mail/mail-account-gui.c:959
msgid "Could not save signature file."
msgstr "Klarte ikkje å lagre signaturfil."

#: mail/mail-account-gui.c:1036
msgid "Save signature"
msgstr "Lagre signatur"

#: mail/mail-account-gui.c:1042
#, fuzzy
msgid ""
"This signature has been changed, but hasn't been saved.\n"
"\n"
"Do you wish to save your changes?"
msgstr ""
"Dette er siste trekk.\n"
"Vil du leggja til fleire trekk?"

#: mail/mail-account-gui.c:1663
msgid "You may not create two accounts with the same name."
msgstr "Du kan ikkje opprette to kontoar med det same namnet."

#: mail/mail-accounts.c:149
msgid " (default)"
msgstr " (standard)"

#: mail/mail-accounts.c:194
msgid "Disable"
msgstr "Skru av"

#: mail/mail-accounts.c:196
msgid "Enable"
msgstr "Skru på"

#: mail/mail-accounts.c:293
#, fuzzy
msgid "Are you sure you want to delete this account?"
msgstr "Er du sikker på at du vil sletta denne klassen?"

#: mail/mail-accounts.c:297
msgid "Don't delete"
msgstr "Ikkje slett"

#: mail/mail-accounts.c:300
msgid "Really delete account?"
msgstr "Verkeleg slette konto?"

#: mail/mail-accounts.c:532 mail/mail-accounts.c:536
#, fuzzy
msgid "Are you sure you want to delete this news account?"
msgstr "Er du sikker på at du vil sletta denne klassen?"

#. give our dialog an Close button and title
#: mail/mail-accounts.c:823 mail/mail-config.glade.h:49
msgid "Mail Settings"
msgstr "Innstillingar for e-post"

#: mail/mail-autofilter.c:72
#, c-format
msgid "Mail to %s"
msgstr "Melding til %s"

#: mail/mail-autofilter.c:217
#, c-format
msgid "Subject is %s"
msgstr "Emne er %s"

#: mail/mail-autofilter.c:233
#, c-format
msgid "Mail from %s"
msgstr "Melding frå %s"

#: mail/mail-autofilter.c:289
#, fuzzy, c-format
msgid "%s mailing list"
msgstr "E-post&liste for språket:"

#: mail/mail-autofilter.c:338 mail/mail-autofilter.c:358
#, fuzzy
msgid "Add Filter Rule"
msgstr "Filter-reglar"

#: mail/mail-callbacks.c:94
msgid ""
"You have not configured the mail client.\n"
"You need to do this before you can send,\n"
"receive or compose mail.\n"
"Would you like to configure it now?"
msgstr ""
"Du har ikkje sett opp denne e-postklienten.\n"
"Dette må du gjere dør du kan sende, motta\n"
"eller skrive e-post.\n"
"Vil du sette opp dette no?"

#: mail/mail-callbacks.c:143
msgid ""
"You need to configure an identity\n"
"before you can compose mail."
msgstr ""
"Du må sette opp ein identitet\n"
"før du skrive e-post."

#: mail/mail-callbacks.c:157
msgid ""
"You need to configure a mail transport\n"
"before you can compose mail."
msgstr ""
"Du må sette opp ein transport av e-post\n"
"før du kan skrive e-post."

#: mail/mail-callbacks.c:187
msgid "You have not set a mail transport method"
msgstr "Du har ikkje sett opp ein transportmetode for e-post"

#. FIXME: this wording sucks
#: mail/mail-callbacks.c:222
msgid ""
"You are sending an HTML-formatted message, but the following recipients do "
"not want HTML-formatted mail:\n"
msgstr ""
"Du sender ei HTML-formattert melding, men den følgjande mottakeren vil ikkje "
"ha HTML-formatter e-post:\n"

#: mail/mail-callbacks.c:237
msgid "Send anyway?"
msgstr "Send likevel?"

#: mail/mail-callbacks.c:279
#, fuzzy
msgid ""
"This message has no subject.\n"
"Really send?"
msgstr "Meldinga har ingen sendar"

#: mail/mail-callbacks.c:323
msgid ""
"Since the contact list you are sending to is configured to hide the list's "
"addresses, this message will contain only Bcc recipients."
msgstr ""
"Sidan kontaktlista du sender til, er sett opp til å gøyme addressatane, vil "
"den sette opp alle mottakarane som Bcc."

#: mail/mail-callbacks.c:327
msgid "This message contains only Bcc recipients."
msgstr "Denne meldinga inneheld kun Bcc-mottakarar."

#: mail/mail-callbacks.c:331
msgid ""
"It is possible that the mail server may reveal the recipients by adding an "
"Apparently-To header.\n"
"Send anyway?"
msgstr ""
"Det er mogleg at e-posttenaren kan avsløre mottakarane ved å leggje til ei "
"«Apparently-To»-topptekst.\n"
"Send likevel?"

#: mail/mail-callbacks.c:461
#, fuzzy
msgid "This message contains invalid recipients:"
msgstr "Meldinga har ingen sendar"

#: mail/mail-callbacks.c:496
msgid "You must specify recipients in order to send this message."
msgstr "Du må spesifisere mottakarar for å sende denne meldinga."

#: mail/mail-callbacks.c:584
msgid "You must configure an account before you can send this email."
msgstr "Du må setje opp ein konto før du kan sende denn e-posten."

#: mail/mail-callbacks.c:703
msgid ""
"Unable to open the drafts folder for this account.\n"
"Would you like to use the default drafts folder?"
msgstr ""

#: mail/mail-callbacks.c:913
msgid "an unknown sender"
msgstr "ein ukjend avsendar"

#: mail/mail-callbacks.c:918
msgid "On %a, %Y-%m-%d at %H:%M, %%s wrote:"
msgstr "På %a, %d/%m/%Y klokka %H:%M, skreiv %%s:"

#: mail/mail-callbacks.c:1363 mail/message-browser.c:130
#, fuzzy
msgid "Move message(s) to"
msgstr "Flytta alle meldingar til papirkorga"

#: mail/mail-callbacks.c:1365 mail/message-browser.c:132
#, fuzzy
msgid "Copy message(s) to"
msgstr "&Kopier bileteplassering"

#: mail/mail-callbacks.c:1866
#, fuzzy, c-format
msgid "Are you sure you want to edit all %d messages?"
msgstr "Er du sikker på at du vil sletta %1?"

#: mail/mail-callbacks.c:1891
#, fuzzy
msgid ""
"You may only edit messages saved\n"
"in the Drafts folder."
msgstr "Vil du lagra denne artikkelen i Kladd-mappa?"

#: mail/mail-callbacks.c:1930
#, fuzzy
msgid ""
"You may only resend messages\n"
"in the Sent folder."
msgstr "Vil du lagra denne artikkelen i Kladd-mappa?"

#: mail/mail-callbacks.c:1944
#, fuzzy, c-format
msgid "Are you sure you want to resend all %d messages?"
msgstr "Er du sikker på at du vil fjerna %1?"

#: mail/mail-callbacks.c:1970
msgid "No Message Selected"
msgstr "Ingen meldingar vald!"

#: mail/mail-callbacks.c:2069
msgid "Save Message As..."
msgstr "Lagre melding som ..."

#: mail/mail-callbacks.c:2071
msgid "Save Messages As..."
msgstr "Lagre meldingar som ..."

#: mail/mail-callbacks.c:2242
msgid ""
"This operation will permanently erase all messages marked as deleted. If you "
"continue, you will not be able to recover these messages.\n"
"\n"
"Really erase these messages?"
msgstr ""

#: mail/mail-callbacks.c:2357
#, fuzzy, c-format
msgid ""
"Error loading filter information:\n"
"%s"
msgstr "Les filinformasjon"

#: mail/mail-callbacks.c:2369
msgid "Filters"
msgstr "Filter"

#: mail/mail-callbacks.c:2453
msgid "Print Message"
msgstr "Skriv ut melding"

#: mail/mail-callbacks.c:2480
msgid "US-Letter"
msgstr "US-Letter"

#: mail/mail-callbacks.c:2519
msgid "Printing of message failed"
msgstr "Utskrift av melding feila"

#: mail/mail-callbacks.c:2685
#, fuzzy, c-format
msgid "Are you sure you want to open all %d messages in separate windows?"
msgstr "Er du sikker på at du vil sletta denne overføringa?"

#: mail/mail-config-druid.c:146
msgid ""
"Please enter your name and email address below. The \"optional\" fields "
"below do not need to be filled in,\n"
"unless you wish to include this information in email you send."
msgstr ""

#: mail/mail-config-druid.c:148
msgid ""
"Please enter information about your incoming mail server below. If you are "
"not sure, ask your system\n"
"administrator or Internet Service Provider."
msgstr ""

#: mail/mail-config-druid.c:150
msgid "Please select among the following options"
msgstr ""

#: mail/mail-config-druid.c:152
msgid ""
"Please enter information about the way you will send mail. If you are not "
"sure, ask your system\n"
"administrator or Internet Service Provider."
msgstr ""

#: mail/mail-config-druid.c:154
msgid ""
"You are almost done with the mail configuration process. The identity, "
"incoming mail server and\n"
"outgoing mail transport method which you provided will be grouped together "
"to\n"
"make an Evolution mail account. Please enter a name for this account in the "
"space below.\n"
"This name will be used for display purposes only."
msgstr ""

#. set window title
#: mail/mail-config-druid.c:599
#, fuzzy
msgid "Evolution Account Assistant"
msgstr "KDeelop-installering"

#: mail/mail-config.c:337
#, c-format
msgid "Account %d"
msgstr "Konto %d"

#: mail/mail-config.c:1954
#, c-format
msgid ""
"Could not get inbox for new mail store:\n"
"%s\n"
"No shortcut will be created."
msgstr ""

#. Create the shortcut. FIXME: This only works if the
#. * full name matches the path.
#.
#: mail/mail-config.c:1965
#, c-format
msgid "%s: Inbox"
msgstr "%s: innboks"

#: mail/mail-config.c:2207
msgid "Checking Service"
msgstr "Sjekkar teneste"

#: mail/mail-config.c:2285 mail/mail-config.c:2289
#, fuzzy
msgid "Connecting to server..."
msgstr " Koplar til tenar ..."

#: mail/mail-config.glade.h:1
#, fuzzy
msgid " _Check for supported types "
msgstr "Vel modemtype ..."

#: mail/mail-config.glade.h:2
msgid " color"
msgstr "farge"

#: mail/mail-config.glade.h:3
#, fuzzy
msgid "(SSL is not supported in this build of evolution)"
msgstr "Den oppgitte fila finst ikkje"

#: mail/mail-config.glade.h:4
msgid "A_lways encrypt to myself when sending encrypted mail"
msgstr ""

#: mail/mail-config.glade.h:5
msgid "Account"
msgstr "Konto"

#: mail/mail-config.glade.h:6
#, fuzzy
msgid "Account Information"
msgstr "Informasjon"

#: mail/mail-config.glade.h:7 shell/glade/evolution-startup-wizard.glade.h:1
msgid "Account Management"
msgstr ""

#: mail/mail-config.glade.h:8
msgid "Accounts"
msgstr "Kontoar"

#: mail/mail-config.glade.h:9
msgid "Always _encrypt to myself when sending encrypted mail"
msgstr ""

#: mail/mail-config.glade.h:10
msgid "Always _sign outgoing messages when using this account"
msgstr ""

#: mail/mail-config.glade.h:11
msgid "Always blind carbon-copy to:"
msgstr ""

#: mail/mail-config.glade.h:12
msgid "Always carbon-copy to:"
msgstr ""

#: mail/mail-config.glade.h:13 mail/message-list.etspec.h:1
msgid "Attachment"
msgstr "Vedlegg"

#: mail/mail-config.glade.h:14
msgid "Authentication"
msgstr "Autentisering"

#: mail/mail-config.glade.h:15
msgid "Beep when new mail arrives"
msgstr ""

#: mail/mail-config.glade.h:16
msgid "Checking for New Mail"
msgstr "Ser etter ny e-post"

#: mail/mail-config.glade.h:17
msgid "Composer"
msgstr "Meldingsskrivar"

#: mail/mail-config.glade.h:18
#, fuzzy
msgid "Composing Messages"
msgstr "Skriv ei melding"

#: mail/mail-config.glade.h:19
msgid "Configuration"
msgstr "Oppsett"

#: mail/mail-config.glade.h:20
#, fuzzy
msgid "Confirm when Expunging a folder"
msgstr "Forventar %1"

#: mail/mail-config.glade.h:21
msgid ""
"Congratulations, your mail configuration is complete.\n"
"\n"
"You are now ready to send and receive email \n"
"using Evolution. \n"
"\n"
"Click \"Finish\" to save your settings."
msgstr ""

#: mail/mail-config.glade.h:27
msgid "De_fault"
msgstr "_Standard"

#: mail/mail-config.glade.h:28
msgid "Default Forward style is: "
msgstr "Standard vidaresendingsstil er: "

#: mail/mail-config.glade.h:29
#, fuzzy
msgid "Default character encoding: "
msgstr "Standardteiknsett"

#: mail/mail-config.glade.h:30
#, fuzzy
msgid "Defaults"
msgstr "Forvald"

#: mail/mail-config.glade.h:32
msgid "Digital IDs..."
msgstr "Digitale IDar ..."

#: mail/mail-config.glade.h:33
msgid "Display"
msgstr "Vis"

#: mail/mail-config.glade.h:34
msgid "Do not notify me when new mail arrives"
msgstr ""

#: mail/mail-config.glade.h:35 shell/glade/evolution-startup-wizard.glade.h:2
msgid "Done"
msgstr "Ferdig"

#: mail/mail-config.glade.h:36 shell/e-local-storage.c:173
msgid "Drafts"
msgstr "Kladd"

#: mail/mail-config.glade.h:37
msgid "E_nable"
msgstr "S_lå på"

#: mail/mail-config.glade.h:38 widgets/misc/e-filter-bar.h:96
#: widgets/misc/e-filter-bar.h:103
msgid "Edit..."
msgstr "Rediger ..."

#: mail/mail-config.glade.h:39
msgid "Enabled"
msgstr "På"

#: mail/mail-config.glade.h:40
#, fuzzy
msgid "Execute Command..."
msgstr "Køyr autorun.sh"

#: mail/mail-config.glade.h:41
#, fuzzy
msgid "Get Digital ID..."
msgstr "Les band-ID ..."

#: mail/mail-config.glade.h:42
msgid "HTML signature file:"
msgstr "HTML-signaturfil:"

#: mail/mail-config.glade.h:43
msgid "IMAPv4 "
msgstr "IMAPv4 "

#: mail/mail-config.glade.h:44 shell/glade/evolution-startup-wizard.glade.h:4
msgid "Identity"
msgstr "Identitet"

#: mail/mail-config.glade.h:45
msgid "In HTML mail"
msgstr "I HTML-e-post"

#: mail/mail-config.glade.h:46
msgid "Inline"
msgstr "Innvevd"

#: mail/mail-config.glade.h:47
msgid "Kerberos "
msgstr "Kerberos "

#: mail/mail-config.glade.h:48
msgid "Mail Configuration"
msgstr "Oppsett for post"

#: mail/mail-config.glade.h:50
msgid "Mailbox location"
msgstr "Postkaseeplassering"

#: mail/mail-config.glade.h:51
msgid "Make this my _default account"
msgstr "Gjer _dette til min standardkonto"

#: mail/mail-config.glade.h:52
msgid "NNTP Server:"
msgstr "NNTP-tenar:"

#: mail/mail-config.glade.h:53
#, fuzzy
msgid "New Mail Notification"
msgstr "Oppsett for post"

#: mail/mail-config.glade.h:54
msgid "News"
msgstr "Nyhende"

#: mail/mail-config.glade.h:56
msgid "Optional Information"
msgstr "Valfri informasjon"

#: mail/mail-config.glade.h:58
msgid "PGP _Key ID:"
msgstr "PGP-lykje ID:"

#: mail/mail-config.glade.h:61
msgid "Pick a color"
msgstr "Vel ein farge"

#: mail/mail-config.glade.h:62
msgid "Play sound file when new mail arrives"
msgstr ""

#: mail/mail-config.glade.h:63
msgid "Pretty Good Privacy"
msgstr "Pretty Good Privacy"

#: mail/mail-config.glade.h:64
#, fuzzy
msgid "Prompt when sending HTML messages to contacts that don't want them"
msgstr "Sender meldingar til %1"

#: mail/mail-config.glade.h:65
#, fuzzy
msgid "Prompt when sending messages with an _empty subject"
msgstr "Sender meldingar til %1"

#: mail/mail-config.glade.h:66
#, fuzzy
msgid "Prompt when sending messages with only _Bcc recipients defined"
msgstr "Sender meldingar til %1"

#: mail/mail-config.glade.h:67
msgid "Qmail maildir "
msgstr "Qmail maildir "

#: mail/mail-config.glade.h:68
msgid "Quoted"
msgstr "Sitert"

#: mail/mail-config.glade.h:69
msgid "Re_member this password"
msgstr "_Husk dette passordet"

#: mail/mail-config.glade.h:70 shell/glade/evolution-startup-wizard.glade.h:6
msgid "Receiving Email"
msgstr "Mottek e-post"

#: mail/mail-config.glade.h:71
msgid "Receiving Mail"
msgstr "Mottak av e-post"

#: mail/mail-config.glade.h:72
msgid "Receiving Options"
msgstr "Val for mottak"

#: mail/mail-config.glade.h:73
#, fuzzy
msgid "Required Information"
msgstr "Tenarinformasjon"

#: mail/mail-config.glade.h:75
msgid "Secure MIME"
msgstr "Trygg MIME"

#: mail/mail-config.glade.h:76
msgid "Security"
msgstr "Tryggleik"

#: mail/mail-config.glade.h:77
#, fuzzy
msgid "Select Filter Log file..."
msgstr "Signaturfil:"

#: mail/mail-config.glade.h:78
msgid "Select PGP binary"
msgstr "Vel PGP-binær"

#: mail/mail-config.glade.h:79 shell/glade/evolution-startup-wizard.glade.h:7
#, fuzzy
msgid "Sending Email"
msgstr "Send"

#: mail/mail-config.glade.h:80
msgid "Sending Mail"
msgstr "Sender e-post"

#: mail/mail-config.glade.h:82 mail/message-list.etspec.h:7
#: shell/e-local-storage.c:176
msgid "Sent"
msgstr "Sendt"

#: mail/mail-config.glade.h:83
#, fuzzy
msgid "Sent _messages folder:"
msgstr "Mottek meldingar frå %1"

#: mail/mail-config.glade.h:84
#, fuzzy
msgid "Sent and Draft Messages"
msgstr "Send meldingar"

#: mail/mail-config.glade.h:85
#, fuzzy
msgid "Ser_ver requires authentication"
msgstr "Autentisering:"

#: mail/mail-config.glade.h:86
msgid "Server Configuration"
msgstr "Tenar-oppsett"

#: mail/mail-config.glade.h:87
msgid "Server _Type: "
msgstr "Tenar-_type: "

#: mail/mail-config.glade.h:88
msgid "Signature file:"
msgstr "Signaturfil:"

#: mail/mail-config.glade.h:89
msgid "Source"
msgstr "Kjelde"

#: mail/mail-config.glade.h:90
#, fuzzy
msgid "Source Information"
msgstr "Tenarinformasjon"

#: mail/mail-config.glade.h:91
msgid "Sources"
msgstr "Kjelder"

#: mail/mail-config.glade.h:92
#, fuzzy
msgid "Specify filename:"
msgstr "Stilnamn:"

#: mail/mail-config.glade.h:93
msgid "Standard Unix mbox"
msgstr "Standard unix e-postkasse"

#: mail/mail-config.glade.h:95
msgid "Use s_ecure connection (SSL)"
msgstr "Bruk sikker tilknytning (SSL)"

#: mail/mail-config.glade.h:96
msgid ""
"Welcome to the Evolution Mail Configuration Assistant.\n"
"\n"
"Click \"Next\" to begin. "
msgstr ""

#: mail/mail-config.glade.h:100
msgid "_Always load images off the net"
msgstr ""

#: mail/mail-config.glade.h:101
msgid "_Always sign outgoing messages when using this account"
msgstr ""

#: mail/mail-config.glade.h:102
msgid "_Authentication Type: "
msgstr "_Autentiseringtype: "

#: mail/mail-config.glade.h:103
#, fuzzy
msgid "_Automatically check for new mail"
msgstr "enkle innlegg"

#: mail/mail-config.glade.h:104
msgid "_Certificate ID:"
msgstr "_Sertifikat-ID:"

#: mail/mail-config.glade.h:106
#, fuzzy
msgid "_Drafts folder:"
msgstr "Lagra i &kladdemappe"

#: mail/mail-config.glade.h:108
#, fuzzy
msgid "_Email Address:"
msgstr "E-post-adresse:"

#: mail/mail-config.glade.h:109
#, fuzzy
msgid "_Empty trash folders on exit"
msgstr "Tøm papirkorg ved avslutting"

#: mail/mail-config.glade.h:110
msgid "_Full Name:"
msgstr "_Fullt namn:"

#: mail/mail-config.glade.h:111
msgid "_HTML Signature:"
msgstr "_HTML-signatur:"

#: mail/mail-config.glade.h:112
#, fuzzy
msgid "_Highlight citations with"
msgstr "Merkingsvilkår"

#: mail/mail-config.glade.h:113
msgid "_Host:"
msgstr "_Vert:"

#: mail/mail-config.glade.h:114
#, fuzzy
msgid "_Load images if sender is in addressbook"
msgstr "Last alle bileta i ein katalog"

#: mail/mail-config.glade.h:115
msgid "_Log filter actions to:"
msgstr "_Loggfør filterhandlingar til:"

#: mail/mail-config.glade.h:116
msgid "_Mark messages as Read after"
msgstr "_Merk meldingar som lest etter"

#: mail/mail-config.glade.h:117
msgid "_Name:"
msgstr "_Namn:"

#: mail/mail-config.glade.h:118
msgid "_Never load images off the net"
msgstr "Last aldri bileter frå _nettet"

#: mail/mail-config.glade.h:119
msgid "_Organization:"
msgstr "_Organisasjon:"

#: mail/mail-config.glade.h:120
msgid "_PGP binary path:"
msgstr ""

#: mail/mail-config.glade.h:121
msgid "_Path:"
msgstr "_Sti:"

#: mail/mail-config.glade.h:122
#, fuzzy
msgid "_Remember this password"
msgstr "Fjern denne oppføringa"

#: mail/mail-config.glade.h:123
#, fuzzy
msgid "_Send mail in HTML format by default."
msgstr "Send meldingar:"

#: mail/mail-config.glade.h:124
msgid "_Server Type: "
msgstr "_Tenartype: "

#: mail/mail-config.glade.h:125
msgid "_Signature file:"
msgstr "_Signaturfil:"

#: mail/mail-config.glade.h:126
msgid "_Username:"
msgstr "Br_ukarnamn:"

#: mail/mail-config.glade.h:127
msgid "_every"
msgstr "_kvar"

#: mail/mail-config.glade.h:128
msgid "description"
msgstr "skildring"

#: mail/mail-config.glade.h:130
msgid "newswindow1"
msgstr "newswindow1"

#: mail/mail-config.glade.h:131
#, fuzzy
msgid "placeholder"
msgstr "Bruk &plasshaldarar"

#: mail/mail-config.glade.h:132
msgid "seconds."
msgstr "sekund."

#: mail/mail-crypto.c:59
#, fuzzy
msgid "Could not create a PGP signature context."
msgstr "Kunne ikkje laga kio-jobb.\n"

#: mail/mail-crypto.c:84
#, fuzzy
msgid "Could not create a PGP verification context."
msgstr "Kunne ikkje laga kio-jobb.\n"

#: mail/mail-crypto.c:113
#, fuzzy
msgid "Could not create a PGP encryption context."
msgstr "Kunne ikkje laga kio-jobb.\n"

#: mail/mail-crypto.c:138
#, fuzzy
msgid "Could not create a PGP decryption context."
msgstr "Kunne ikkje laga kio-jobb.\n"

#: mail/mail-crypto.c:173
#, fuzzy
msgid "Could not create a S/MIME signature context."
msgstr "Kunne ikkje laga kio-jobb.\n"

#: mail/mail-crypto.c:205
#, fuzzy
msgid "Could not create a S/MIME certsonly context."
msgstr "Kunne ikkje laga kio-jobb.\n"

#: mail/mail-crypto.c:236
#, fuzzy
msgid "Could not create a S/MIME encryption context."
msgstr "Kunne ikkje laga kio-jobb.\n"

#: mail/mail-crypto.c:267
#, fuzzy
msgid "Could not create a S/MIME envelope context."
msgstr "Kunne ikkje laga kio-jobb.\n"

#: mail/mail-crypto.c:297
#, fuzzy
msgid "Could not create a S/MIME decode context."
msgstr "Kunne ikkje laga kio-jobb.\n"

#: mail/mail-display.c:252
msgid "Save Attachment"
msgstr "Lagre vedlegg"

#: mail/mail-display.c:359
msgid "Save to Disk..."
msgstr "Lagra til disk ..."

#: mail/mail-display.c:361
msgid "View Inline"
msgstr "Vis innvevd"

#: mail/mail-display.c:363
#, c-format
msgid "Open in %s..."
msgstr "Opne i %s ..."

#: mail/mail-display.c:424
#, c-format
msgid "View Inline (via %s)"
msgstr ""

#: mail/mail-display.c:428
msgid "Hide"
msgstr "Gøym"

#: mail/mail-display.c:449
msgid "External Viewer"
msgstr "Ekstern visar"

#: mail/mail-display.c:1171
#, fuzzy
msgid "Loading message content"
msgstr "Markerer meldingar"

#: mail/mail-display.c:1666
#, fuzzy
msgid "Open Link in Browser"
msgstr "Opna ved innsetjing"

#: mail/mail-display.c:1668
msgid "Copy Link Location"
msgstr "Kopier lenkjeadresse"

#: mail/mail-display.c:1671
msgid "Save Link as (FIXME)"
msgstr "Lagre lenkje som "

#: mail/mail-display.c:1674
msgid "Save Image as..."
msgstr "Lagre  bilete som ..."

#: mail/mail-format.c:646
#, c-format
msgid "%s attachment"
msgstr "%s vedlegg"

#: mail/mail-format.c:692
msgid "Could not parse MIME message. Displaying as source."
msgstr ""

#: mail/mail-format.c:775
msgid "Date"
msgstr "Dato"

#: mail/mail-format.c:867
msgid "Bad Address"
msgstr "Ugyldig addresse"

#: mail/mail-format.c:910 mail/message-list.etspec.h:3
msgid "From"
msgstr "Frå"

#: mail/mail-format.c:914
msgid "Reply-To"
msgstr "Svar-til"

#: mail/mail-format.c:919 mail/message-list.etspec.h:11
msgid "To"
msgstr "Til"

#: mail/mail-format.c:924
msgid "Cc"
msgstr "Cc"

#: mail/mail-format.c:929
msgid "Bcc"
msgstr "Bcc:"

#: mail/mail-format.c:1768
msgid ""
"This message is digitally signed. Click the lock icon for more information."
msgstr ""

#: mail/mail-format.c:1791
msgid "Evolution does not recognize this type of signed message."
msgstr ""

#: mail/mail-format.c:1799
msgid "This message is digitally signed and has been found to be authentic."
msgstr ""

#: mail/mail-format.c:1807
msgid "This message is digitally signed but can not be proven to be authentic."
msgstr ""

#: mail/mail-format.c:2022
#, c-format
msgid "Pointer to FTP site (%s)"
msgstr ""

#: mail/mail-format.c:2036
#, c-format
msgid "Pointer to local file (%s) valid at site \"%s\""
msgstr ""

#: mail/mail-format.c:2041
#, c-format
msgid "Pointer to local file (%s)"
msgstr ""

#: mail/mail-format.c:2070
#, c-format
msgid "Pointer to remote data (%s)"
msgstr ""

#: mail/mail-format.c:2078
#, c-format
msgid "Pointer to unknown external data (\"%s\" type)"
msgstr ""

#: mail/mail-format.c:2083
msgid "Malformed external-body part."
msgstr ""

#: mail/mail-local.c:626
#, fuzzy
msgid "Reconfiguring folder"
msgstr "Les mapper"

#: mail/mail-local.c:707
#, c-format
msgid ""
"Cannot save folder metainfo; you'll probably find you can't\n"
"open this folder anymore: %s: %s"
msgstr ""

#: mail/mail-local.c:763
#, c-format
msgid "Cannot save folder metainfo to %s: %s"
msgstr "Klarar ikkje å lagre mappemetainfo til %s: %s"

#: mail/mail-local.c:815
#, fuzzy, c-format
msgid "Cannot delete folder metadata %s: %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: mail/mail-local.c:1281
#, c-format
msgid "Changing folder \"%s\" to \"%s\" format"
msgstr ""

#: mail/mail-local.c:1296
#, c-format
msgid "%s may not be reconfigured because it is not a local folder"
msgstr ""

#: mail/mail-local.c:1318
msgid ""
"If you can no longer open this mailbox, then\n"
"you may need to repair it manually."
msgstr ""

#: mail/mail-local.c:1407
#, fuzzy
msgid "You cannot change the format of a non-local folder."
msgstr "Vil du lagra denne artikkelen i Kladd-mappa?"

#: mail/mail-local.c:1416
#, fuzzy, c-format
msgid "Reconfigure /%s"
msgstr "Set opp %1"

#: mail/mail-mt.c:254
#, c-format
msgid ""
"Error while '%s':\n"
"%s"
msgstr ""
"Feil ved «%s»:\n"
"%s"

#: mail/mail-mt.c:257
#, fuzzy, c-format
msgid ""
"Error while performing operation:\n"
"%s"
msgstr ""
"Feil ved lesing av fil:\n"
"%s"

#: mail/mail-mt.c:901
msgid "Working"
msgstr "Arbeidar"

#: mail/mail-ops.c:87
#, fuzzy
msgid "Filtering Folder"
msgstr "Les mapper"

#: mail/mail-ops.c:258
msgid "Fetching Mail"
msgstr "Hentar e-post"

#: mail/mail-ops.c:498 mail/mail-ops.c:527
msgid "However, the message was successfully sent."
msgstr ""

#: mail/mail-ops.c:563
#, c-format
msgid "Sending \"%s\""
msgstr "Sender «%s»"

#: mail/mail-ops.c:683
#, c-format
msgid "Sending message %d of %d"
msgstr "Sender melding %d av %d"

#: mail/mail-ops.c:702
#, fuzzy, c-format
msgid "Failed on message %d of %d"
msgstr "Markerer meldingar"

#: mail/mail-ops.c:704 mail/mail-send-recv.c:545
msgid "Complete."
msgstr "Ferdig."

#: mail/mail-ops.c:797
#, fuzzy
msgid "Saving message to folder"
msgstr "Mottek meldingar frå %1"

#: mail/mail-ops.c:877
#, c-format
msgid "Moving messages to %s"
msgstr "Flyttar meldingar til %s"

#: mail/mail-ops.c:877
#, fuzzy, c-format
msgid "Copying messages to %s"
msgstr "Melding"

#: mail/mail-ops.c:904
msgid "Moving"
msgstr "Flyttar"

#: mail/mail-ops.c:907
msgid "Copying"
msgstr "Kopierer"

#: mail/mail-ops.c:1017
#, fuzzy, c-format
msgid "Scanning folders in \"%s\""
msgstr "Leitar etter tilleggsmodular"

#. Fill in the new fields
#: mail/mail-ops.c:1067 shell/e-local-storage.c:178
msgid "Trash"
msgstr "Papirkorg"

#: mail/mail-ops.c:1200
msgid "Forwarded messages"
msgstr "Vidaresendt melding"

#: mail/mail-ops.c:1243
#, fuzzy, c-format
msgid "Opening folder %s"
msgstr "Leitar etter tilleggsmodular"

#: mail/mail-ops.c:1315
#, fuzzy, c-format
msgid "Opening store %s"
msgstr "Leitar etter tilleggsmodular"

#: mail/mail-ops.c:1384
#, c-format
msgid "Removing folder %s"
msgstr "Fjernar mappe %s"

#: mail/mail-ops.c:1478
#, c-format
msgid "Storing folder '%s'"
msgstr "Lagrar mappe «%s»"

#: mail/mail-ops.c:1529
msgid "Refreshing folder"
msgstr "Friskar opp mappe"

#: mail/mail-ops.c:1565
#, fuzzy
msgid "Expunging folder"
msgstr "Forventar %1"

#: mail/mail-ops.c:1614
#, c-format
msgid "Retrieving message %s"
msgstr "Hentat melding %s"

#: mail/mail-ops.c:1681
#, c-format
msgid "Retrieving %d message(s)"
msgstr "Mottek %d melding(ar)"

#: mail/mail-ops.c:1767
#, c-format
msgid "Saving %d messsage(s)"
msgstr "Lagrar %d melding(ar)"

#: mail/mail-ops.c:1879
#, fuzzy, c-format
msgid ""
"Unable to create output file: %s\n"
" %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: mail/mail-ops.c:1907
#, fuzzy, c-format
msgid ""
"Error saving messages to: %s:\n"
" %s"
msgstr ""
"Feil ved lesing a fil:\n"
"%1"

#: mail/mail-ops.c:1981
msgid "Saving attachment"
msgstr "Lagrar vedlegg"

#: mail/mail-ops.c:1997
#, fuzzy, c-format
msgid ""
"Cannot create output file: %s:\n"
" %s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: mail/mail-ops.c:2028
#, c-format
msgid "Could not write data: %s"
msgstr "Klarte ikkje å skrive data: %s"

#: mail/mail-ops.c:2097
#, c-format
msgid "Disconnecting from %s"
msgstr "Koplar frå %s"

#: mail/mail-ops.c:2098
#, c-format
msgid "Reconnecting to %s"
msgstr "Koplar til %s på nytt"

#: mail/mail-ops.c:2197
#, c-format
msgid "Executing shell command: %s"
msgstr ""

#: mail/mail-search-dialogue.c:113
msgid "_Search"
msgstr "_Søk"

#: mail/mail-search.c:137
msgid "(Untitled Message)"
msgstr "(Melding utan tittel)"

#: mail/mail-search.c:240
msgid "Untitled Message"
msgstr "Melding utan tittel"

#: mail/mail-search.c:244
msgid "Empty Message"
msgstr "Tom melding"

#: mail/mail-search.c:291
msgid "Find in Message"
msgstr "Finn i melding"

#: mail/mail-search.c:321
msgid "Case Sensitive"
msgstr "Skil mellom store og små bokstavar"

#: mail/mail-search.c:323
msgid "Search Forward"
msgstr "Søk framover"

#: mail/mail-search.c:343
msgid "Find:"
msgstr "Finn:"

#: mail/mail-search.c:346
msgid "Matches:"
msgstr "Treff:"

#: mail/mail-send-recv.c:143
msgid "Cancelling..."
msgstr "Avbryt ..."

#: mail/mail-send-recv.c:251
#, c-format
msgid "Server: %s, Type: %s"
msgstr "Tenar: %s, Type: %s"

#: mail/mail-send-recv.c:253
#, c-format
msgid "Path: %s, Type: %s"
msgstr ""

#: mail/mail-send-recv.c:255
#, c-format
msgid "Type: %s"
msgstr "Type: %s"

#: mail/mail-send-recv.c:292
msgid "Send & Receive Mail"
msgstr "Send og motta e-post"

#: mail/mail-send-recv.c:294
msgid "Cancel All"
msgstr "Avbryt alle"

#: mail/mail-send-recv.c:354
msgid "Updating..."
msgstr "Oppdaterar ..."

#: mail/mail-send-recv.c:355 mail/mail-send-recv.c:408
msgid "Waiting..."
msgstr "Ventar ..."

#: mail/mail-send-recv.c:541
msgid "Cancelled."
msgstr "Avbroten."

#: mail/mail-session.c:222
msgid "User canceled operation."
msgstr "Brukar avbraut operasjonen."

#: mail/mail-session.c:321
#, c-format
msgid "Enter Password for %s"
msgstr "Tast inn passord for %s"

#: mail/mail-session.c:324
msgid "Enter Password"
msgstr "Tast inn passord"

#: mail/mail-summary.c:109
msgid "Incomplete message written on pipe!"
msgstr ""

#: mail/mail-summary.c:467
#, fuzzy
msgid "Mail Summary"
msgstr "Postsamandrag"

#: mail/mail-tools.c:256
#, c-format
msgid "Forwarded message - %s"
msgstr "Vidaresendt melding - %s"

#: mail/mail-tools.c:260
msgid "Forwarded message"
msgstr "Vidaresendt melding"

#: mail/mail-tools.c:394
msgid "Forwarded Message"
msgstr "Vidaresendt melding"

#: mail/mail-vfolder.c:85
#, c-format
msgid "Setting up vfolder: %s"
msgstr "Set opp vMappe: %s"

#: mail/mail-vfolder.c:203
#, c-format
msgid "Updating vfolders for uri: %s"
msgstr ""

#: mail/mail-vfolder.c:419
#, c-format
msgid ""
"The following vFolder(s):\n"
"%sUsed the removed folder:\n"
"    '%s'\n"
"And have been updated."
msgstr ""

#: mail/mail-vfolder.c:728
msgid "VFolders"
msgstr "vMapper"

#: mail/mail-vfolder.c:785
msgid "vFolders"
msgstr "vMapper"

#: mail/mail-vfolder.c:825
msgid "Edit VFolder"
msgstr "Rediger vMappe"

#: mail/mail-vfolder.c:841
#, c-format
msgid "Trying to edit a vfolder '%s' which doesn't exist."
msgstr "Prøvar å redigere ei vmappe «%s» som ikkje finnest."

#: mail/mail-vfolder.c:895
msgid "New VFolder"
msgstr "Ny vMappe"

#: mail/message-browser.c:212
msgid "(No subject)"
msgstr "(Ikkje noko emne)"

#: mail/message-browser.c:214
#, c-format
msgid "%s - Message"
msgstr "%s - melding"

#: mail/message-list.c:662
msgid "Unseen"
msgstr "Ulesen"

#: mail/message-list.c:663
msgid "Seen"
msgstr "Lest"

#: mail/message-list.c:664
msgid "Answered"
msgstr "Svara"

#: mail/message-list.c:665
msgid "Multiple Unseen Messages"
msgstr "Fleire uleste meldingar"

#: mail/message-list.c:666
msgid "Multiple Messages"
msgstr "Fleire meldingar"

#: mail/message-list.c:675
msgid "Lowest"
msgstr "Lavast"

#: mail/message-list.c:676
msgid "Lower"
msgstr "Senk"

#: mail/message-list.c:680
msgid "Higher"
msgstr "Høgare"

#: mail/message-list.c:681
msgid "Highest"
msgstr "Høgast"

#: mail/message-list.c:937
msgid "?"
msgstr "?"

#: mail/message-list.c:944
msgid "Today %l:%M %p"
msgstr "I dag, %H:%M"

#: mail/message-list.c:953
msgid "Yesterday %l:%M %p"
msgstr "I går %H:%M"

#: mail/message-list.c:965
msgid "%a %l:%M %p"
msgstr "%a %H:%M"

#: mail/message-list.c:975
msgid "%b %d %Y"
msgstr "%d. %b %Y"

#: mail/message-list.c:2387
msgid "Generating message list"
msgstr "Opprettar meldingsliste"

#: mail/message-list.etspec.h:2
msgid "Flagged"
msgstr "Flagga"

#: mail/message-list.etspec.h:5
msgid "Received"
msgstr "Mottatt"

#: mail/message-list.etspec.h:8
msgid "Size"
msgstr "Storleik"

#: mail/subscribe-dialog.c:219
#, fuzzy, c-format
msgid "Scanning folders under %s on \"%s\""
msgstr "Leitar etter tilleggsmodular"

#: mail/subscribe-dialog.c:221
#, fuzzy, c-format
msgid "Scanning root-level folders on \"%s\""
msgstr "Leitar etter tilleggsmodular"

#: mail/subscribe-dialog.c:318
#, c-format
msgid "Subscribing to folder \"%s\""
msgstr "Abbonerar på mappe «%s»"

#: mail/subscribe-dialog.c:320
#, fuzzy, c-format
msgid "Unsubscribing to folder \"%s\""
msgstr "Mottek meldingar frå %1"

#: mail/subscribe-dialog.c:1279 mail/subscribe-dialog.etspec.h:1
#: shell/e-storage-set-view.etspec.h:1
msgid "Folder"
msgstr "Mappe"

#: mail/subscribe-dialog.c:1520
msgid "No server has been selected"
msgstr "Ingen tenar har vorte vald"

#: mail/subscribe-dialog.c:1581
msgid "Please select a server."
msgstr "Velj ein tenar"

#: mail/subscribe-dialog.glade.h:1
msgid " _Refresh List "
msgstr " F_risk opp liste "

#: mail/subscribe-dialog.glade.h:2
msgid "All folders"
msgstr "Alle mapper"

#: mail/subscribe-dialog.glade.h:3
msgid "Display options"
msgstr "Visingsval"

#: mail/subscribe-dialog.glade.h:4
msgid "Folders whose names begin with:"
msgstr ""

#: mail/subscribe-dialog.glade.h:5
#, fuzzy
msgid "Manage Subscriptions"
msgstr "Skildring:"

#: mail/subscribe-dialog.glade.h:6
msgid "Show _folders from server: "
msgstr "Vis mapper _frå tenar:"

#: mail/subscribe-dialog.glade.h:7
msgid "_Subscribe"
msgstr "_Abboner"

#: mail/subscribe-dialog.glade.h:8
msgid "_Unsubscribe"
msgstr "_Fjern abbonnment"

#: my-evolution/Locations.h:1
msgid "Aarhus"
msgstr "Århus"

#: my-evolution/Locations.h:2
msgid "Abakan"
msgstr "Abakan"

#: my-evolution/Locations.h:3
msgid "Abbotsford"
msgstr "Abbotsford"

#: my-evolution/Locations.h:4
msgid "Aberdeen"
msgstr "Aberdeen"

#: my-evolution/Locations.h:5
msgid "Abha"
msgstr "Abha"

#: my-evolution/Locations.h:6
msgid "Abilene"
msgstr "Abilene"

#: my-evolution/Locations.h:7
msgid "Abingdon"
msgstr "Abingdon"

#: my-evolution/Locations.h:8
msgid "Abu Dhabi"
msgstr "Abu Dhabi"

#: my-evolution/Locations.h:9
msgid "Abu Dhabi - Bateen"
msgstr "Abu Dhabi - Bateen"

#: my-evolution/Locations.h:10
msgid "Acajutla"
msgstr "Acajutla"

#: my-evolution/Locations.h:11
msgid "Acapulco"
msgstr "Acapulco"

#: my-evolution/Locations.h:12
msgid "Acarigua"
msgstr "Acarigua"

#: my-evolution/Locations.h:13
msgid "Adak"
msgstr "Adak"

#: my-evolution/Locations.h:14
msgid "Adana"
msgstr "Adana"

#: my-evolution/Locations.h:15
msgid "Adana/Incirlik"
msgstr "Adana/Incirlik"

#: my-evolution/Locations.h:16
msgid "Adelaide"
msgstr "Adelaide"

#: my-evolution/Locations.h:17
msgid "Aden"
msgstr "Aden"

#: my-evolution/Locations.h:18
msgid "Adrar"
msgstr "Adrar"

#: my-evolution/Locations.h:19
msgid "Aeroparque"
msgstr "Aeroparque"

#: my-evolution/Locations.h:20
msgid "Aeropuerto del Norte"
msgstr "Aeropuerto del Norte"

#: my-evolution/Locations.h:21
msgid "Afonsos"
msgstr "Afonsos"

#: my-evolution/Locations.h:22
msgid "Africa"
msgstr "Afrika"

#: my-evolution/Locations.h:23
msgid "Afyon"
msgstr "Afyon"

#: my-evolution/Locations.h:24
msgid "Agen"
msgstr "Agen"

#: my-evolution/Locations.h:25
msgid "Aguascaliantes"
msgstr "Aguascaliantes"

#: my-evolution/Locations.h:26
msgid "Ahmadabad"
msgstr "Ahmadabad"

#: my-evolution/Locations.h:27
msgid "Ahwaz"
msgstr "Ahwaz"

#: my-evolution/Locations.h:28
msgid "Ainsworth"
msgstr "Ainsworth"

#: my-evolution/Locations.h:29
msgid "Air Force"
msgstr "Air Force"

#: my-evolution/Locations.h:30
msgid "Ajaccio/Campo dell'Oro"
msgstr "Ajaccio/Campo dell'Oro"

#: my-evolution/Locations.h:31
msgid "Akeno Ab"
msgstr "Akeno Ab"

#: my-evolution/Locations.h:32
msgid "Akita Airport"
msgstr "Akita Airport"

#: my-evolution/Locations.h:33
msgid "Akron"
msgstr "Akron"

#: my-evolution/Locations.h:34
msgid "Akrotiri"
msgstr "Akrotiri"

#: my-evolution/Locations.h:35
msgid "Alabama"
msgstr "Alabama"

#: my-evolution/Locations.h:36
msgid "Al Ahsa"
msgstr "Al Ahsa"

#: my-evolution/Locations.h:37
msgid "Al Ain"
msgstr "Al Ain"

#: my-evolution/Locations.h:38
msgid "Alamogordo"
msgstr "Alamogordo"

#: my-evolution/Locations.h:39
msgid "Alamosa"
msgstr "Alamosa"

#: my-evolution/Locations.h:40
msgid "Alaska"
msgstr "Alaska"

#: my-evolution/Locations.h:41
msgid "Al Baha"
msgstr "Al Baha"

#: my-evolution/Locations.h:42
msgid "Albania"
msgstr "Albania"

#: my-evolution/Locations.h:43
msgid "Albany"
msgstr "Albany"

#: my-evolution/Locations.h:44
msgid "Albenga"
msgstr "Albenga"

#: my-evolution/Locations.h:45
msgid "Alberta"
msgstr "Alberta"

#: my-evolution/Locations.h:46
msgid "Alborg"
msgstr "Ålborg"

#: my-evolution/Locations.h:47
msgid "Albuquerque"
msgstr "Albuquerque"

#: my-evolution/Locations.h:48
msgid "Alderney"
msgstr "Alderney"

#: my-evolution/Locations.h:49
msgid "Alesund"
msgstr "Ålesund"

#: my-evolution/Locations.h:50
msgid "Alexandria"
msgstr "Aleksandria"

#: my-evolution/Locations.h:51
msgid "Alexandria-Esler"
msgstr "Alexandria-Esler"

#: my-evolution/Locations.h:52
msgid "Alexandria/Nouzha"
msgstr "Alexandria/Nouzha"

#: my-evolution/Locations.h:53
msgid "Alexandroupolis"
msgstr "Alexandroupolis"

#: my-evolution/Locations.h:54
msgid "Algeria"
msgstr "Algerie"

#: my-evolution/Locations.h:55
msgid "Alghero"
msgstr "Alghero"

#: my-evolution/Locations.h:56
msgid "Algona"
msgstr "Algona"

#: my-evolution/Locations.h:57
msgid "Alicante"
msgstr "Alicante"

#: my-evolution/Locations.h:58
msgid "Alice"
msgstr "Alice"

#: my-evolution/Locations.h:59
msgid "Alice Springs"
msgstr "Alice Springs"

#: my-evolution/Locations.h:60
msgid "Al-Jouf"
msgstr "Al-Jouf"

#: my-evolution/Locations.h:61
msgid "Allentown"
msgstr "Allentown"

#: my-evolution/Locations.h:62
msgid "Alliance"
msgstr "Alliance"

#: my-evolution/Locations.h:63
msgid "Alma"
msgstr "Alma"

#: my-evolution/Locations.h:64
msgid "Almeria"
msgstr "Almeria"

#: my-evolution/Locations.h:65
msgid "Alpena"
msgstr "Alpena"

#: my-evolution/Locations.h:66
msgid "Al Qaysumah"
msgstr "Al Qaysumah"

#: my-evolution/Locations.h:67
msgid "Alta"
msgstr "Alta"

#: my-evolution/Locations.h:68
msgid "Altamira"
msgstr "Altamira"

#: my-evolution/Locations.h:69
msgid "Alton"
msgstr "Alton"

#: my-evolution/Locations.h:70
msgid "Altoona"
msgstr "Altoona"

#: my-evolution/Locations.h:71
msgid "Alturas"
msgstr "Alturas"

#: my-evolution/Locations.h:72
msgid "Altus"
msgstr "Altus"

#: my-evolution/Locations.h:73
msgid "Amami Airport"
msgstr "Amami Airport"

#: my-evolution/Locations.h:74
msgid "Amapala"
msgstr "Amapala"

#: my-evolution/Locations.h:75
msgid "Amarillo"
msgstr "Amarillo"

#: my-evolution/Locations.h:76
msgid "Amasya"
msgstr "Amasya"

#: my-evolution/Locations.h:77
msgid "Ambler"
msgstr "Ambler"

#: my-evolution/Locations.h:78
msgid "Amelia"
msgstr "Amelia"

#: my-evolution/Locations.h:79
msgid "Amendola"
msgstr "Amendola"

#: my-evolution/Locations.h:80
msgid "Ames"
msgstr "Ames"

#: my-evolution/Locations.h:81
msgid "Amritsar"
msgstr "Amritsar"

#: my-evolution/Locations.h:82
msgid "Amsterdam"
msgstr "Amsterdam"

#: my-evolution/Locations.h:83
msgid "Anadyr"
msgstr "Anadyr"

#: my-evolution/Locations.h:84
msgid "Anaktuvuk"
msgstr "Anaktuvuk"

#: my-evolution/Locations.h:85
msgid "Anapa"
msgstr "Anapa"

#: my-evolution/Locations.h:86
msgid "Anchorage"
msgstr "Anchorage"

#: my-evolution/Locations.h:87
msgid "Anchorage - Elmendorf AFB"
msgstr "Anchorage - Elmendorf AFB"

#: my-evolution/Locations.h:88
msgid "Ancona"
msgstr "Ancona"

#: my-evolution/Locations.h:89
msgid "Andahuayla"
msgstr "Andahuayla"

#: my-evolution/Locations.h:90
msgid "Anderson"
msgstr "Anderson"

#: my-evolution/Locations.h:91
msgid "Andoya"
msgstr "Andøya"

#: my-evolution/Locations.h:92
msgid "Andravida"
msgstr "Andravida"

#: my-evolution/Locations.h:93
msgid "Andrews AFB"
msgstr "Andrews AFB"

#: my-evolution/Locations.h:94
msgid "Angleton"
msgstr "Angleton"

#: my-evolution/Locations.h:95
msgid "Aniak"
msgstr "Aniak"

#: my-evolution/Locations.h:96
msgid "Ankara/Esenboga"
msgstr "Ankara/Esenboga"

#: my-evolution/Locations.h:97
msgid "Ankara/Etimesgut"
msgstr "Ankara/Etimesgut"

#: my-evolution/Locations.h:98
msgid "Annaba"
msgstr "Annaba"

#: my-evolution/Locations.h:99
msgid "Ann Arbor"
msgstr "Ann Arbor"

#: my-evolution/Locations.h:100
msgid "Annette"
msgstr "Annette"

#: my-evolution/Locations.h:101
msgid "Anniston"
msgstr "Anniston"

#: my-evolution/Locations.h:102
msgid "Antalya"
msgstr "Antalya"

#: my-evolution/Locations.h:103
msgid "Antartica"
msgstr "Antarktis"

#: my-evolution/Locations.h:104
msgid "Antigo"
msgstr "Antigo"

#: my-evolution/Locations.h:105
msgid "Antigua"
msgstr "Antigua"

#: my-evolution/Locations.h:106
msgid "Antigua and Barbuda"
msgstr "Antigua and Barbuda"

#: my-evolution/Locations.h:107
msgid "Antofagasta"
msgstr "Antofagasta"

#: my-evolution/Locations.h:108
msgid "Antwerpen/Deurne"
msgstr "Antwerpen/Deurne"

#: my-evolution/Locations.h:109
msgid "Aomori Airport"
msgstr "Aomori Airport"

#: my-evolution/Locations.h:110
msgid "Apalachicola"
msgstr "Apalachicola"

#: my-evolution/Locations.h:111
msgid "Appleton"
msgstr "Appleton"

#: my-evolution/Locations.h:112
msgid "Aquadilla"
msgstr "Aquadilla"

#: my-evolution/Locations.h:113
msgid "Aracaju"
msgstr "Aracaju"

#: my-evolution/Locations.h:114
msgid "Arad"
msgstr "Arad"

#: my-evolution/Locations.h:115
msgid "Arar"
msgstr "Arar"

#: my-evolution/Locations.h:116
msgid "Araxos"
msgstr "Araxos"

#: my-evolution/Locations.h:117
msgid "Arcata"
msgstr "Arcata"

#: my-evolution/Locations.h:118
msgid "Ardmore"
msgstr "Ardmore"

#: my-evolution/Locations.h:119
msgid "Arequipa"
msgstr "Arequipa"

#: my-evolution/Locations.h:120
msgid "Argentina"
msgstr "Argentina"

#: my-evolution/Locations.h:121
msgid "Arica"
msgstr "Arica"

#: my-evolution/Locations.h:122
msgid "Arizona"
msgstr "Arizona"

#: my-evolution/Locations.h:123
msgid "Arkansas"
msgstr "Arkansas"

#: my-evolution/Locations.h:124
msgid "Arkhangelsk"
msgstr "Arkhangelsk"

#: my-evolution/Locations.h:125
msgid "Arlington"
msgstr "Arlington"

#: my-evolution/Locations.h:126
msgid "Artigas"
msgstr "Artigas"

#: my-evolution/Locations.h:127
msgid "Asahikawa Ab"
msgstr "Asahikawa Ab"

#: my-evolution/Locations.h:128
msgid "Asahikawa Airport"
msgstr "Asahikawa Airport"

#: my-evolution/Locations.h:129
msgid "Ashburnam"
msgstr "Ashburnam"

#: my-evolution/Locations.h:130
msgid "Asheville"
msgstr "Asheville"

#: my-evolution/Locations.h:131
msgid "Ashfield"
msgstr "Ashfield"

#: my-evolution/Locations.h:132
msgid "Ashiya Ab"
msgstr "Ashiya Ab"

#: my-evolution/Locations.h:133
msgid "Ashland"
msgstr "Ashland"

#: my-evolution/Locations.h:134
msgid "Asia"
msgstr "Asia"

#: my-evolution/Locations.h:135
msgid "Aspen"
msgstr "Aspen"

#: my-evolution/Locations.h:136
msgid "Asswan"
msgstr "Asswan"

#: my-evolution/Locations.h:137
msgid "Astoria"
msgstr "Astoria"

#: my-evolution/Locations.h:138
msgid "Astrakhan"
msgstr "Astrakhan"

#: my-evolution/Locations.h:139
msgid "Asturias"
msgstr "Asturias"

#: my-evolution/Locations.h:140
msgid "Asuncion"
msgstr "Asuncion"

#: my-evolution/Locations.h:141
msgid "Athens"
msgstr "Athens"

#: my-evolution/Locations.h:142
msgid "Athinai"
msgstr "Athinai"

#: my-evolution/Locations.h:143
msgid "Atlanta"
msgstr "Atlanta"

#: my-evolution/Locations.h:144
msgid "Atlantic"
msgstr "Atlantic"

#: my-evolution/Locations.h:145
msgid "Atlantic City"
msgstr "Atlantic City"

#: my-evolution/Locations.h:146
msgid "Atsugi US NAS"
msgstr "Atsugi US NAS"

#: my-evolution/Locations.h:147
msgid "Auburn"
msgstr "Auburn"

#: my-evolution/Locations.h:148
msgid "Auckland"
msgstr "Auckland"

#: my-evolution/Locations.h:149
msgid "Augsburg"
msgstr "Augsburg"

#: my-evolution/Locations.h:150
msgid "Augusta"
msgstr "Augusta"

#: my-evolution/Locations.h:151
msgid "Aurora"
msgstr "Aurora"

#: my-evolution/Locations.h:152
msgid "Austin"
msgstr "Austin"

#: my-evolution/Locations.h:153
msgid "Australasia"
msgstr "Australasia"

#: my-evolution/Locations.h:154
msgid "Australia"
msgstr "Australia"

#: my-evolution/Locations.h:155
msgid "Austria"
msgstr "Austerrike"

#: my-evolution/Locations.h:156
msgid "Avalon"
msgstr "Avalon"

#: my-evolution/Locations.h:157
msgid "Aviano"
msgstr "Aviano"

#: my-evolution/Locations.h:158
msgid "Ayacucho"
msgstr "Ayacucho"

#: my-evolution/Locations.h:159
msgid "Bage"
msgstr "Bage"

#: my-evolution/Locations.h:160
msgid "Bagotville"
msgstr "Bagotville"

#: my-evolution/Locations.h:161
msgid "Bahamas"
msgstr "Bahamas"

#: my-evolution/Locations.h:162
msgid "Bahia Blanca"
msgstr "Bahia Blanca"

#: my-evolution/Locations.h:163
msgid "Bahias de Huatulco"
msgstr "Bahias de Huatulco"

#: my-evolution/Locations.h:164
msgid "Bahrain"
msgstr "Bahrain"

#: my-evolution/Locations.h:165
msgid "Baker City"
msgstr "Baker City"

#: my-evolution/Locations.h:166
msgid "Bakersfield"
msgstr "Bakersfield"

#: my-evolution/Locations.h:167
msgid "Bale-Mulhouse"
msgstr "Bale-Mulhouse"

#: my-evolution/Locations.h:168
msgid "Balikesir"
msgstr "Balikesir"

#: my-evolution/Locations.h:169
msgid "Balikesir/Bandirma"
msgstr "Balikesir/Bandirma"

#: my-evolution/Locations.h:170
msgid "Ball Mountain"
msgstr "Ball Mountain"

#: my-evolution/Locations.h:171
msgid "Baltimore"
msgstr "Baltimore"

#: my-evolution/Locations.h:172
msgid "Baltimore-Glen Burnie"
msgstr "Baltimore-Glen Burnie"

#: my-evolution/Locations.h:173
msgid "Banak"
msgstr "Banak"

#: my-evolution/Locations.h:174
msgid "Bandarabbass"
msgstr "Bandarabbass"

#: my-evolution/Locations.h:175
msgid "Bangor"
msgstr "Bangor"

#: my-evolution/Locations.h:176
msgid "Baracoa"
msgstr "Baracoa"

#: my-evolution/Locations.h:177
msgid "Barbers Point"
msgstr "Barbers Point"

#: my-evolution/Locations.h:178
msgid "Barcelona"
msgstr "Barcelona"

#: my-evolution/Locations.h:179
msgid "Bardufoss"
msgstr "Bardufoss"

#: my-evolution/Locations.h:180
msgid "Bar Harbor"
msgstr "Bar Harbor"

#: my-evolution/Locations.h:181
msgid "Bari"
msgstr "Bari"

#: my-evolution/Locations.h:182
msgid "Bariloche"
msgstr "Bariloche"

#: my-evolution/Locations.h:183
msgid "Barinas"
msgstr "Barinas"

#: my-evolution/Locations.h:184
msgid "Barking Sand"
msgstr "Barking Sand"

#: my-evolution/Locations.h:185
msgid "Barksdale"
msgstr "Barksdale"

#: my-evolution/Locations.h:186
msgid "Barnaul"
msgstr "Barnaul"

#: my-evolution/Locations.h:187
msgid "Barquisimeto"
msgstr "Barquisimeto"

#: my-evolution/Locations.h:188
msgid "Barranquilla/Ernestocortissoz"
msgstr "Barranquilla/Ernestocortissoz"

#: my-evolution/Locations.h:189
msgid "Barrow"
msgstr "Barrow"

#: my-evolution/Locations.h:190
msgid "Barter Island"
msgstr "Barter Island"

#: my-evolution/Locations.h:191
msgid "Bartlesville"
msgstr "Bartlesville"

#: my-evolution/Locations.h:192
msgid "Bartow"
msgstr "Bartow"

#: my-evolution/Locations.h:193
msgid "Bastia"
msgstr "Bastia"

#: my-evolution/Locations.h:194
msgid "Batesville"
msgstr "Batesville"

#: my-evolution/Locations.h:195
msgid "Batman"
msgstr "Batman"

#: my-evolution/Locations.h:196
msgid "Baton Rouge"
msgstr "Baton Rouge"

#: my-evolution/Locations.h:197
msgid "Battle Creek"
msgstr "Battle Creek"

#: my-evolution/Locations.h:198
msgid "Battle Mountain"
msgstr "Battle Mountain"

#: my-evolution/Locations.h:199
msgid "Bauru"
msgstr "Bauru"

#: my-evolution/Locations.h:200
msgid "Bayamo"
msgstr "Bayamo"

#: my-evolution/Locations.h:201
msgid "Bayreuth"
msgstr "Bayreuth"

#: my-evolution/Locations.h:202
msgid "Beatrice"
msgstr "Beatrice"

#: my-evolution/Locations.h:203
msgid "Beaufort"
msgstr "Beaufort"

#: my-evolution/Locations.h:204
msgid "Beaumont"
msgstr "Beaumont"

#: my-evolution/Locations.h:205
msgid "Beaumont-Port Arthur"
msgstr "Beaumont-Port Arthur"

#: my-evolution/Locations.h:206
msgid "Beauvais-Tille"
msgstr "Beauvais-Tille"

#: my-evolution/Locations.h:207
msgid "Beauvechain"
msgstr "Beauvechain"

#: my-evolution/Locations.h:208
msgid "Beckley"
msgstr "Beckley"

#: my-evolution/Locations.h:209
msgid "Bedford"
msgstr "Bedford"

#: my-evolution/Locations.h:210
msgid "Beijing"
msgstr "Beijing"

#: my-evolution/Locations.h:211
msgid "Beirut"
msgstr "Beirut"

#: my-evolution/Locations.h:212
msgid "Beja"
msgstr "Beja"

#: my-evolution/Locations.h:213
msgid "Belem"
msgstr "Belem"

#: my-evolution/Locations.h:214
msgid "Belfast/Aldergrove"
msgstr "Belfast/Aldergrove"

#: my-evolution/Locations.h:215
msgid "Belfast/Harbour"
msgstr "Belfast/Harbour"

#: my-evolution/Locations.h:216
msgid "Belgium"
msgstr "Belgia"

#: my-evolution/Locations.h:217
msgid "Belgorod"
msgstr "Belgorod"

#: my-evolution/Locations.h:218
msgid "Belize"
msgstr "Belize"

#: my-evolution/Locations.h:219
msgid "Belleville"
msgstr "Belleville"

#: my-evolution/Locations.h:220
msgid "Bellingham"
msgstr "Bellingham"

#: my-evolution/Locations.h:221
msgid "Belmar-Farmingdale"
msgstr "Belmar-Farmingdale"

#: my-evolution/Locations.h:222
msgid "Belo Horizonte"
msgstr "Belo Horizonte"

#: my-evolution/Locations.h:223
msgid "Belo Horizonte Apt"
msgstr "Belo Horizonte Apt"

#: my-evolution/Locations.h:224
msgid "Bemidji"
msgstr "Bemidji"

#: my-evolution/Locations.h:225
msgid "Benbecula"
msgstr "Benbecula"

#: my-evolution/Locations.h:226
msgid "Benina"
msgstr "Benina"

#: my-evolution/Locations.h:227
msgid "Benton Harbor"
msgstr "Benton Harbor"

#: my-evolution/Locations.h:228
msgid "Bentonville"
msgstr "Bentonville"

#: my-evolution/Locations.h:229
msgid "Beograd"
msgstr "Beograd"

#: my-evolution/Locations.h:230
msgid "Bergamo"
msgstr "Bergamo"

#: my-evolution/Locations.h:231
msgid "Bergen"
msgstr "Bergen"

#: my-evolution/Locations.h:232
msgid "Bergstrom AFB"
msgstr "Bergstrom AFB"

#: my-evolution/Locations.h:233
msgid "Berlevag"
msgstr "Berlevåg"

#: my-evolution/Locations.h:234
msgid "Berlin"
msgstr "Berlin"

#: my-evolution/Locations.h:235
msgid "Berlin-Tegel"
msgstr "Berlin-Tegel"

#: my-evolution/Locations.h:236
msgid "Berlin-Tempelhof"
msgstr "Berlin-Tempelhof"

#: my-evolution/Locations.h:237
msgid "Bern"
msgstr "Bern"

#: my-evolution/Locations.h:238
msgid "Bethel"
msgstr "Bethel"

#: my-evolution/Locations.h:239
msgid "Bethlehem Airport"
msgstr "Bethlehem Airport"

#: my-evolution/Locations.h:240
msgid "Bettles"
msgstr "Bettles"

#: my-evolution/Locations.h:241
msgid "Beverly"
msgstr "Beverly"

#: my-evolution/Locations.h:242
msgid "Biarritz-Bayonne"
msgstr "Biarritz-Bayonne"

#: my-evolution/Locations.h:243
msgid "Bicycle Lake"
msgstr "Bicycle Lake"

#: my-evolution/Locations.h:244
msgid "Biggin Hill"
msgstr "Biggin Hill"

#: my-evolution/Locations.h:245
msgid "Big Piney"
msgstr "Big Piney"

#: my-evolution/Locations.h:246
msgid "Big River Lake"
msgstr "Big River Lake"

#: my-evolution/Locations.h:247
msgid "Bilbao"
msgstr "Bilbao"

#: my-evolution/Locations.h:248
msgid "Billings"
msgstr "Billings"

#: my-evolution/Locations.h:249
msgid "Billund"
msgstr "Billund"

#: my-evolution/Locations.h:250
msgid "Binghamton"
msgstr "Binghamton"

#: my-evolution/Locations.h:251
msgid "Birmingham"
msgstr "Birmingham"

#: my-evolution/Locations.h:252
msgid "Bisha"
msgstr "Bisha"

#: my-evolution/Locations.h:253
msgid "Bishop"
msgstr "Bishop"

#: my-evolution/Locations.h:254
msgid "Bismark"
msgstr "Bismark"

#: my-evolution/Locations.h:255
msgid "Blackpool"
msgstr "Blackpool"

#: my-evolution/Locations.h:256
msgid "Blagoveschensk"
msgstr "Blagoveschensk"

#: my-evolution/Locations.h:257
msgid "Blanding"
msgstr "Blanding"

#: my-evolution/Locations.h:258
msgid "Block Island"
msgstr "Block Island"

#: my-evolution/Locations.h:259
msgid "Bloemfontein J. B. M. Hertzog "
msgstr "Bloemfontein J. B. M. Hertzog "

#: my-evolution/Locations.h:260
msgid "Bloomington"
msgstr "Bloomington"

#: my-evolution/Locations.h:261
msgid "Blue Canyon"
msgstr "Blue Canyon"

#: my-evolution/Locations.h:262
msgid "Bluefield"
msgstr "Bluefield"

#: my-evolution/Locations.h:263
msgid "Bluefields"
msgstr "Bluefields"

#: my-evolution/Locations.h:264
msgid "Blythe"
msgstr "Blythe"

#: my-evolution/Locations.h:265
msgid "Boa Vista"
msgstr "Boa Vista"

#: my-evolution/Locations.h:266
msgid "Bocas del Toro"
msgstr "Bocas del Toro"

#: my-evolution/Locations.h:267
msgid "Bodo"
msgstr "Bodø"

#: my-evolution/Locations.h:268
msgid "Bogota/Eldorado"
msgstr "Bogota/Eldorado"

#: my-evolution/Locations.h:269
msgid "Boise"
msgstr "Boise"

#: my-evolution/Locations.h:270
msgid "Bolivia"
msgstr "Bolivia"

#: my-evolution/Locations.h:271
msgid "Bologna"
msgstr "Bologna"

#: my-evolution/Locations.h:272
msgid "Bolzano"
msgstr "Bolzano"

#: my-evolution/Locations.h:273
msgid "Bombay/Santacruz"
msgstr "Bombay/Santacruz"

#: my-evolution/Locations.h:274
msgid "Boone"
msgstr "Boone"

#: my-evolution/Locations.h:275
msgid "Bordeaux"
msgstr "Bordeaux"

#: my-evolution/Locations.h:276
msgid "Borger"
msgstr "Borger"

#: my-evolution/Locations.h:277
msgid "Bornholm"
msgstr "Bornholm"

#: my-evolution/Locations.h:278
msgid "Boscombe Down"
msgstr "Boscombe Down"

#: my-evolution/Locations.h:279
msgid "Bosnia-Herzegovina"
msgstr "Bosnia-Herzegovina"

#: my-evolution/Locations.h:280
msgid "Boston"
msgstr "Boston"

#: my-evolution/Locations.h:281
msgid "Boulmer"
msgstr "Boulmer"

#: my-evolution/Locations.h:282
msgid "Bourges"
msgstr "Bourges"

#: my-evolution/Locations.h:283
msgid "Bournemouth"
msgstr "Bournemouth"

#: my-evolution/Locations.h:284
msgid "Bowling Green"
msgstr "Bowling Green"

#: my-evolution/Locations.h:285
msgid "Bozeman"
msgstr "Bozeman"

#: my-evolution/Locations.h:286
msgid "Bradford"
msgstr "Bradford"

#: my-evolution/Locations.h:287
msgid "Bradshaw Field"
msgstr "Bradshaw Field"

#: my-evolution/Locations.h:288
msgid "Brainerd"
msgstr "Brainerd"

#: my-evolution/Locations.h:289
msgid "Brasilia"
msgstr "Brasilia"

#: my-evolution/Locations.h:290
msgid "Brasschaat"
msgstr "Brasschaat"

#: my-evolution/Locations.h:291
msgid "Bratislava"
msgstr "Bratislava"

#: my-evolution/Locations.h:292
msgid "Bratsk"
msgstr "Bratsk"

#: my-evolution/Locations.h:293
msgid "Braunschweig"
msgstr "Braunschweig"

#: my-evolution/Locations.h:294
msgid "Brazil"
msgstr "Brasil"

#: my-evolution/Locations.h:295
msgid "Bremen"
msgstr "Bremen"

#: my-evolution/Locations.h:296
msgid "Bremerton"
msgstr "Bremerton"

#: my-evolution/Locations.h:297
msgid "Brest"
msgstr "Brest"

#: my-evolution/Locations.h:298
msgid "Bridgeport"
msgstr "Bridgeport"

#: my-evolution/Locations.h:299
msgid "Brindisi"
msgstr "Brindisi"

#: my-evolution/Locations.h:300
msgid "Brisbane"
msgstr "Brisbane"

#: my-evolution/Locations.h:301
msgid "Bristol"
msgstr "Bristol"

#: my-evolution/Locations.h:302
msgid "British Columbia"
msgstr "British Columbia"

#: my-evolution/Locations.h:303
msgid "Brno"
msgstr "Brno"

#: my-evolution/Locations.h:304
msgid "Broadus"
msgstr "Broadus"

#: my-evolution/Locations.h:305
msgid "Broken Bow"
msgstr "Broken Bow"

#: my-evolution/Locations.h:306
msgid "Bronnoysund"
msgstr "Brønnøysund"

#: my-evolution/Locations.h:307
msgid "Brookings"
msgstr "Brookings"

#: my-evolution/Locations.h:308
msgid "Brooksville"
msgstr "Brooksville"

#: my-evolution/Locations.h:309
msgid "Broome"
msgstr "Broome"

#: my-evolution/Locations.h:310
msgid "Brownsville"
msgstr "Brownsville"

#: my-evolution/Locations.h:311
msgid "Brunswick"
msgstr "Brunswick"

#: my-evolution/Locations.h:312
msgid "Brussels-National Airport"
msgstr "Brüssel-National Airport"

#: my-evolution/Locations.h:313
msgid "Bryansk"
msgstr "Bryansk"

#: my-evolution/Locations.h:314
msgid "Bryce Canyon"
msgstr "Bryce Canyon"

#: my-evolution/Locations.h:315
msgid "Bucaramanga/Palonegro"
msgstr "Bucaramanga/Palonegro"

#: my-evolution/Locations.h:316
msgid "Bucuresti"
msgstr "Bucuresti"

#: my-evolution/Locations.h:317
msgid "Bucuresti-Otopeni"
msgstr "Bucuresti-Otopeni"

#: my-evolution/Locations.h:318
msgid "Budapest"
msgstr "Budapest"

#: my-evolution/Locations.h:319
msgid "Buffalo"
msgstr "Buffalo"

#: my-evolution/Locations.h:320
msgid "Bulgaria"
msgstr "Bulgaria"

#: my-evolution/Locations.h:321
msgid "Bullfrog"
msgstr "Bullfrog"

#: my-evolution/Locations.h:322
msgid "Burbank"
msgstr "Burbank"

#: my-evolution/Locations.h:323
msgid "Burgas"
msgstr "Burgas"

#: my-evolution/Locations.h:324
msgid "Burley"
msgstr "Burley"

#: my-evolution/Locations.h:325
msgid "Burlington"
msgstr "Burlington"

#: my-evolution/Locations.h:326
msgid "Burnet"
msgstr "Burnet"

#: my-evolution/Locations.h:327
msgid "Burns"
msgstr "Burns"

#: my-evolution/Locations.h:328
msgid "Bursa"
msgstr "Bursa"

#: my-evolution/Locations.h:329
msgid "Burwell"
msgstr "Burwell"

#: my-evolution/Locations.h:330
msgid "Butte"
msgstr "Butte"

#: my-evolution/Locations.h:331
msgid "Caen-Carpiquet"
msgstr "Caen-Carpiquet"

#: my-evolution/Locations.h:332
msgid "Cagliari"
msgstr "Cagliari"

#: my-evolution/Locations.h:333
msgid "Cairns"
msgstr "Cairns"

#: my-evolution/Locations.h:334
msgid "Cairo"
msgstr "Kairo"

#: my-evolution/Locations.h:335
msgid "Calabozo"
msgstr "Calabozo"

#: my-evolution/Locations.h:336
msgid "Calcutta/Dum Dum"
msgstr "Calcutta/Dum Dum"

#: my-evolution/Locations.h:337
msgid "Caldwell"
msgstr "Caldwell"

#: my-evolution/Locations.h:338
msgid "Calgary"
msgstr "Calgary"

#: my-evolution/Locations.h:339
msgid "Cali/Alfonso Bonillaaragon"
msgstr "Cali/Alfonso Bonillaaragon"

#: my-evolution/Locations.h:340
msgid "Caliente"
msgstr "Caliente"

#: my-evolution/Locations.h:341
msgid "California"
msgstr "California"

#: my-evolution/Locations.h:342
msgid "Calvi-Ste-Catherine"
msgstr "Calvi-Ste-Catherine"

#: my-evolution/Locations.h:343
msgid "Camaguey"
msgstr "Camaguey"

#: my-evolution/Locations.h:344
msgid "Camarillo"
msgstr "Camarillo"

#: my-evolution/Locations.h:345
msgid "Cambridge"
msgstr "Cambridge"

#: my-evolution/Locations.h:346
msgid "Cameron"
msgstr "Cameron"

#: my-evolution/Locations.h:347
msgid "Camiri"
msgstr "Camiri"

#: my-evolution/Locations.h:348
msgid "Campeche"
msgstr "Campeche"

#: my-evolution/Locations.h:349
msgid "Campinas"
msgstr "Campinas"

#: my-evolution/Locations.h:350
msgid "Campo"
msgstr "Campo"

#: my-evolution/Locations.h:351
msgid "Campo Grande"
msgstr "Campo Grande"

#: my-evolution/Locations.h:352
msgid "Camp Stanley/H-207"
msgstr "Camp Stanley/H-207"

#: my-evolution/Locations.h:353
msgid "Canaan"
msgstr "Canaan"

#: my-evolution/Locations.h:354
msgid "Canada"
msgstr "Canada"

#: my-evolution/Locations.h:355
msgid "Canarias/Fuerteventura"
msgstr "Canarias/Fuerteventura"

#: my-evolution/Locations.h:356
msgid "Canarias/Gran Canaria"
msgstr "Canarias/Gran Canaria"

#: my-evolution/Locations.h:357
msgid "Canarias/Hierro"
msgstr "Canarias/Hierro"

#: my-evolution/Locations.h:358
msgid "Canarias/Lanzarote"
msgstr "Canarias/Lanzarote"

#: my-evolution/Locations.h:359
msgid "Canarias/La Palma"
msgstr "Canarias/La Palma"

#: my-evolution/Locations.h:360
msgid "Canarias/Tenerife Norte"
msgstr "Canarias/Tenerife Norte"

#: my-evolution/Locations.h:361
msgid "Canarias/Tenerife Sur"
msgstr "Canarias/Tenerife Sur"

#: my-evolution/Locations.h:362
msgid "Canberra"
msgstr "Canberra"

#: my-evolution/Locations.h:363
msgid "Cancun"
msgstr "Cancun"

#: my-evolution/Locations.h:364
msgid "Cannes-Mandelieu"
msgstr "Cannes-Mandelieu"

#: my-evolution/Locations.h:365
msgid "Cantwell"
msgstr "Cantwell"

#: my-evolution/Locations.h:366
msgid "Cape Girardeau"
msgstr "Cape Girardeau"

#: my-evolution/Locations.h:367
msgid "Cape Hatteras"
msgstr "Cape Hatteras"

#: my-evolution/Locations.h:368
msgid "Cape Lisburne"
msgstr "Cape Lisburne"

#: my-evolution/Locations.h:369
msgid "Cape Newenham"
msgstr "Cape Newenham"

#: my-evolution/Locations.h:370
msgid "Cape Romanzoff"
msgstr "Cape Romanzoff"

#: my-evolution/Locations.h:371
msgid "Cape Town D. F. Malan "
msgstr "Cape Town D. F. Malan "

#: my-evolution/Locations.h:372
msgid "Capitan Corbeta"
msgstr "Capitan Corbeta"

#: my-evolution/Locations.h:373
msgid "Capo Mele"
msgstr "Capo Mele"

#: my-evolution/Locations.h:374
msgid "Caracas La Carlota"
msgstr "Caracas La Carlota"

#: my-evolution/Locations.h:375
msgid "Caracas Maiquetia"
msgstr "Caracas Maiquetia"

#: my-evolution/Locations.h:376
msgid "Caravelas"
msgstr "Caravelas"

#: my-evolution/Locations.h:377
msgid "Carbondale"
msgstr "Carbondale"

#: my-evolution/Locations.h:378
msgid "Cardiff"
msgstr "Cardiff"

#: my-evolution/Locations.h:379
msgid "Caribou"
msgstr "Caribou"

#: my-evolution/Locations.h:380
msgid "Carlisle"
msgstr "Carlisle"

#: my-evolution/Locations.h:381
msgid "Carlsbad"
msgstr "Carlsbad"

#: my-evolution/Locations.h:382
msgid "Carroll"
msgstr "Carroll"

#: my-evolution/Locations.h:383
msgid "Cartagena/Rafael Nunez"
msgstr "Cartagena/Rafael Nunez"

#: my-evolution/Locations.h:384
msgid "Casa Granda"
msgstr "Casa Granda"

#: my-evolution/Locations.h:385
msgid "Cascade"
msgstr "Cascade"

#: my-evolution/Locations.h:386
msgid "Casper"
msgstr "Casper"

#: my-evolution/Locations.h:387
msgid "Catacamas"
msgstr "Catacamas"

#: my-evolution/Locations.h:388
msgid "Catania"
msgstr "Catania"

#: my-evolution/Locations.h:389
msgid "Cayman Islands"
msgstr "Cayman Islands"

#: my-evolution/Locations.h:390
msgid "Cayo Largo del Sur"
msgstr "Cayo Largo del Sur"

#: my-evolution/Locations.h:391
msgid "Cazaux"
msgstr "Cazaux"

#: my-evolution/Locations.h:392
msgid "Cecil NAS"
msgstr "Cecil NAS"

#: my-evolution/Locations.h:393
msgid "Cedar City"
msgstr "Cedar City"

#: my-evolution/Locations.h:394
msgid "Cedar Rapids"
msgstr "Cedar Rapids"

#: my-evolution/Locations.h:395
msgid "Central and South America"
msgstr "Central and South America"

#: my-evolution/Locations.h:396
msgid "Cervia"
msgstr "Cervia"

#: my-evolution/Locations.h:397
msgid "Chacarita"
msgstr "Chacarita"

#: my-evolution/Locations.h:398
msgid "Chadron"
msgstr "Chadron"

#: my-evolution/Locations.h:399
msgid "Challis"
msgstr "Challis"

#: my-evolution/Locations.h:400
msgid "Chamberlain"
msgstr "Chamberlain"

#: my-evolution/Locations.h:401
msgid "Chambery"
msgstr "Chambery"

#: my-evolution/Locations.h:402
msgid "Champaign"
msgstr "Champaign"

#: my-evolution/Locations.h:403
msgid "Chandalar Lake"
msgstr "Chandalar Lake"

#: my-evolution/Locations.h:404
msgid "Chandler"
msgstr "Chandler"

#: my-evolution/Locations.h:405
msgid "Chania"
msgstr "Chania"

#: my-evolution/Locations.h:406
msgid "Chanute"
msgstr "Chanute"

#: my-evolution/Locations.h:407
msgid "Chariton"
msgstr "Chariton"

#: my-evolution/Locations.h:408
msgid "Charleroi-Brussels South"
msgstr "Charleroi-Brussels South"

#: my-evolution/Locations.h:409
msgid "Charles City"
msgstr "Charles City"

#: my-evolution/Locations.h:410
msgid "Charleston"
msgstr "Charleston"

#: my-evolution/Locations.h:411
msgid "Charlotte"
msgstr "Charlotte"

#: my-evolution/Locations.h:412
msgid "Charlottesville"
msgstr "Charlottesville"

#: my-evolution/Locations.h:413
msgid "Chatham"
msgstr "Chatham"

#: my-evolution/Locations.h:414
msgid "Chattanooga"
msgstr "Chattanooga"

#: my-evolution/Locations.h:415
msgid "Cheboksary"
msgstr "Cheboksary"

#: my-evolution/Locations.h:416
msgid "Cheju"
msgstr "Cheju"

#: my-evolution/Locations.h:417
msgid "Chelyabinsk"
msgstr "Chelyabinsk"

#: my-evolution/Locations.h:418
msgid "Chengdu"
msgstr "Chengdu"

#: my-evolution/Locations.h:419
msgid "Cherbourg"
msgstr "Cherbourg"

#: my-evolution/Locations.h:420
msgid "Cherry Point"
msgstr "Cherry Point"

#: my-evolution/Locations.h:421
msgid "Chetumal"
msgstr "Chetumal"

#: my-evolution/Locations.h:422
msgid "Cheyenne"
msgstr "Cheyenne"

#: my-evolution/Locations.h:423
msgid "Chiang Kai Shek"
msgstr "Chiang Kai Shek"

#: my-evolution/Locations.h:424
msgid "Chia Tung"
msgstr "Chia Tung"

#: my-evolution/Locations.h:425
msgid "Chiayi"
msgstr "Chiayi"

#: my-evolution/Locations.h:426
msgid "Chicago-DuPage"
msgstr "Chicago-DuPage"

#: my-evolution/Locations.h:427
msgid "Chicago-Lakefront"
msgstr "Chicago-Lakefront"

#: my-evolution/Locations.h:428
msgid "Chicago-Midway"
msgstr "Chicago-Midway"

#: my-evolution/Locations.h:429
msgid "Chicago-O'Hare"
msgstr "Chicago-O'Hare"

#: my-evolution/Locations.h:430
msgid "Chichijima"
msgstr "Chichijima"

#: my-evolution/Locations.h:431
msgid "Chiclayo"
msgstr "Chiclayo"

#: my-evolution/Locations.h:432
msgid "Chico"
msgstr "Chico"

#: my-evolution/Locations.h:433
msgid "Chicopee Falls"
msgstr "Chicopee Falls"

#: my-evolution/Locations.h:434
msgid "Chievres"
msgstr "Chievres"

#: my-evolution/Locations.h:435
msgid "Chihhang"
msgstr "Chihhang"

#: my-evolution/Locations.h:436
msgid "Chihuahua"
msgstr "Chihuahua"

#: my-evolution/Locations.h:437
msgid "Childress"
msgstr "Childress"

#: my-evolution/Locations.h:438
msgid "Chile"
msgstr "Chile"

#: my-evolution/Locations.h:439
msgid "China Lake"
msgstr "China Lake"

#: my-evolution/Locations.h:440
msgid "Chinandega"
msgstr "Chinandega"

#: my-evolution/Locations.h:441
msgid "Chinmem/Shatou"
msgstr "Chinmem/Shatou"

#: my-evolution/Locations.h:442
msgid "Chino"
msgstr "Chino"

#: my-evolution/Locations.h:443
msgid "Chippewa County"
msgstr "Chippewa County"

#: my-evolution/Locations.h:444
msgid "Chita"
msgstr "Chita"

#: my-evolution/Locations.h:445
msgid "Chitose Ab"
msgstr "Chitose Ab"

#: my-evolution/Locations.h:446
msgid "Chitose ASDF"
msgstr "Chitose ASDF"

#: my-evolution/Locations.h:447
msgid "Chofu Airport"
msgstr "Chofu Airport"

#: my-evolution/Locations.h:448
msgid "Choluteca"
msgstr "Choluteca"

#: my-evolution/Locations.h:449
msgid "Chongju Ab"
msgstr "Chongju Ab"

#: my-evolution/Locations.h:450
msgid "Christchurch"
msgstr "Christchurch"

#: my-evolution/Locations.h:451
msgid "Christmas Island"
msgstr "Christmas Island"

#: my-evolution/Locations.h:452
msgid "Chulitna"
msgstr "Chulitna"

#: my-evolution/Locations.h:453
msgid "Churchill"
msgstr "Churchill"

#: my-evolution/Locations.h:454
msgid "Churchill Falls"
msgstr "Churchill Falls"

#: my-evolution/Locations.h:455
msgid "Cincinnati"
msgstr "Cincinnati"

#: my-evolution/Locations.h:456
msgid "Circle City"
msgstr "Circle City"

#: my-evolution/Locations.h:457
msgid "Ciudad Bolivar"
msgstr "Ciudad Bolivar"

#: my-evolution/Locations.h:458
msgid "Ciudad del Carmen"
msgstr "Ciudad del Carmen"

#: my-evolution/Locations.h:459
msgid "Ciudad Juarez"
msgstr "Ciudad Juarez"

#: my-evolution/Locations.h:460
msgid "Ciudad Obregon"
msgstr "Ciudad Obregon"

#: my-evolution/Locations.h:461
msgid "Ciudad Victoria"
msgstr "Ciudad Victoria"

#: my-evolution/Locations.h:462
msgid "Clarinda"
msgstr "Clarinda"

#: my-evolution/Locations.h:463
msgid "Clarion"
msgstr "Clarion"

#: my-evolution/Locations.h:464
msgid "Clarksburg"
msgstr "Clarksburg"

#: my-evolution/Locations.h:465
msgid "Clayton"
msgstr "Clayton"

#: my-evolution/Locations.h:466
msgid "Clayton Lake"
msgstr "Clayton Lake"

#: my-evolution/Locations.h:467
msgid "Clermont-Ferrand"
msgstr "Clermont-Ferrand"

#: my-evolution/Locations.h:468
msgid "Cleveland"
msgstr "Cleveland"

#: my-evolution/Locations.h:469
msgid "Cleveland/Cuyahoga"
msgstr "Cleveland/Cuyahoga"

#: my-evolution/Locations.h:470
msgid "Cleveland-Lakefront"
msgstr "Cleveland-Lakefront"

#: my-evolution/Locations.h:471
msgid "Clinton"
msgstr "Clinton"

#: my-evolution/Locations.h:472
msgid "Clovis-Cannon AFB"
msgstr "Clovis-Cannon AFB"

#: my-evolution/Locations.h:473
msgid "Cobija"
msgstr "Cobija"

#: my-evolution/Locations.h:474
msgid "Cochabamba"
msgstr "Cochabamba"

#: my-evolution/Locations.h:475
msgid "Cocoa Beach"
msgstr "Cocoa Beach"

#: my-evolution/Locations.h:476
msgid "Cocos Island"
msgstr "Cocos Island"

#: my-evolution/Locations.h:477
msgid "Cody"
msgstr "Cody"

#: my-evolution/Locations.h:478
msgid "Coeur d'Alene"
msgstr "Coeur d'Alene"

#: my-evolution/Locations.h:479
msgid "Cold Bay"
msgstr "Cold Bay"

#: my-evolution/Locations.h:480
msgid "Colima"
msgstr "Colima"

#: my-evolution/Locations.h:481
msgid "College Station"
msgstr "College Station"

#: my-evolution/Locations.h:482
msgid "Colmar-Meyenheim"
msgstr "Colmar-Meyenheim"

#: my-evolution/Locations.h:483
msgid "Colombia"
msgstr "Colombia"

#: my-evolution/Locations.h:484
msgid "Colonia"
msgstr "Colonia"

#: my-evolution/Locations.h:485
msgid "Colorado"
msgstr "Colorado"

#: my-evolution/Locations.h:486
msgid "Colorado Springs"
msgstr "Colorado Springs"

#: my-evolution/Locations.h:487
msgid "Columbia"
msgstr "Columbia"

#: my-evolution/Locations.h:488
msgid "Columbia-McEntire"
msgstr "Columbia-McEntire"

#: my-evolution/Locations.h:489
msgid "Columbus"
msgstr "Columbus"

#: my-evolution/Locations.h:490
msgid "Columbus-Fort Benning"
msgstr "Columbus-Fort Benning"

#: my-evolution/Locations.h:491
msgid "Columbus-Gahanna"
msgstr "Columbus-Gahanna"

#: my-evolution/Locations.h:492
msgid "Columbus-OSU"
msgstr "Columbus-OSU"

#: my-evolution/Locations.h:493
msgid "Columbus-W Point-Starkville"
msgstr "Columbus-W Point-Starkville"

#: my-evolution/Locations.h:494
msgid "Colville"
msgstr "Colville"

#: my-evolution/Locations.h:495
msgid "Comodoro Rivadavia"
msgstr "Comodoro Rivadavia"

#: my-evolution/Locations.h:496
msgid "Comox"
msgstr "Comox"

#: my-evolution/Locations.h:497
msgid "Conceicao Do Araguaia"
msgstr "Conceicao Do Araguaia"

#: my-evolution/Locations.h:498
msgid "Concepcion"
msgstr "Concepcion"

#: my-evolution/Locations.h:499
msgid "Concord"
msgstr "Concord"

#: my-evolution/Locations.h:500
msgid "Concordia"
msgstr "Concordia"

#: my-evolution/Locations.h:501
msgid "Connaught"
msgstr "Connaught"

#: my-evolution/Locations.h:502
msgid "Connecticut"
msgstr "Connecticut"

#: my-evolution/Locations.h:503
msgid "Conroe"
msgstr "Conroe"

#: my-evolution/Locations.h:504
msgid "Constantine"
msgstr "Constantine"

#: my-evolution/Locations.h:505
msgid "Copper Harbor"
msgstr "Copper Harbor"

#: my-evolution/Locations.h:506
msgid "Cordoba"
msgstr "Cordoba"

#: my-evolution/Locations.h:507
msgid "Cordova"
msgstr "Cordova"

#: my-evolution/Locations.h:508
msgid "Cork"
msgstr "Cork"

#: my-evolution/Locations.h:509
msgid "Coro"
msgstr "Coro"

#: my-evolution/Locations.h:510
msgid "Corona"
msgstr "Corona"

#: my-evolution/Locations.h:511
msgid "Corpus Christi"
msgstr "Corpus Christi"

#: my-evolution/Locations.h:512
msgid "Corpus Christi NAS"
msgstr "Corpus Christi NAS"

#: my-evolution/Locations.h:513
msgid "Corrientes"
msgstr "Corrientes"

#: my-evolution/Locations.h:514
msgid "Corsicana"
msgstr "Corsicana"

#: my-evolution/Locations.h:515
msgid "Cortez"
msgstr "Cortez"

#: my-evolution/Locations.h:516
msgid "Corumba"
msgstr "Corumba"

#: my-evolution/Locations.h:517
msgid "Costa Rica"
msgstr "Costa Rica"

#: my-evolution/Locations.h:518
msgid "Cotulla"
msgstr "Cotulla"

#: my-evolution/Locations.h:519
msgid "Council Bluffs"
msgstr "Council Bluffs"

#: my-evolution/Locations.h:520
msgid "Coventry"
msgstr "Coventry"

#: my-evolution/Locations.h:521
msgid "Covington"
msgstr "Covington"

#: my-evolution/Locations.h:522
msgid "Cozumel"
msgstr "Cozumel"

#: my-evolution/Locations.h:523
msgid "Craig"
msgstr "Craig"

#: my-evolution/Locations.h:524
msgid "Cranfield"
msgstr "Cranfield"

#: my-evolution/Locations.h:525
msgid "Crescent City"
msgstr "Crescent City"

#: my-evolution/Locations.h:526
msgid "Creston"
msgstr "Creston"

#: my-evolution/Locations.h:527
msgid "Crestview"
msgstr "Crestview"

#: my-evolution/Locations.h:528
msgid "Croatia"
msgstr "Krotia"

#: my-evolution/Locations.h:529
msgid "Cross City"
msgstr "Cross City"

#: my-evolution/Locations.h:530
msgid "Crossville"
msgstr "Crossville"

#: my-evolution/Locations.h:531
msgid "Crotone"
msgstr "Crotone"

#: my-evolution/Locations.h:532
msgid "Cuba"
msgstr "Kuba"

#: my-evolution/Locations.h:533
msgid "Cuba Awrs"
msgstr "Cuba Awrs"

#: my-evolution/Locations.h:534
msgid "Cuernavaca"
msgstr "Cuernavaca"

#: my-evolution/Locations.h:535
msgid "Cuiaba"
msgstr "Cuiaba"

#: my-evolution/Locations.h:536
msgid "Culdrose"
msgstr "Culdrose"

#: my-evolution/Locations.h:537
msgid "Culiacan"
msgstr "Culiacan"

#: my-evolution/Locations.h:538
msgid "Cumana"
msgstr "Cumana"

#: my-evolution/Locations.h:539
msgid "Cumberland"
msgstr "Cumberland"

#: my-evolution/Locations.h:540
msgid "Curitiba"
msgstr "Curitiba"

#: my-evolution/Locations.h:541
msgid "Curitiba Apt"
msgstr "Curitiba Apt"

#: my-evolution/Locations.h:542
msgid "Custer"
msgstr "Custer"

#: my-evolution/Locations.h:543
msgid "Cut Bank"
msgstr "Cut Bank"

#: my-evolution/Locations.h:544
msgid "Cuzco"
msgstr "Cuzco"

#: my-evolution/Locations.h:545
msgid "Cyprus"
msgstr "Kypros"

#: my-evolution/Locations.h:546
msgid "Czech Republic"
msgstr "Tjekkisk republikk"

#: my-evolution/Locations.h:547
msgid "Dagali"
msgstr "Dagali"

#: my-evolution/Locations.h:548
msgid "Daggett"
msgstr "Daggett"

#: my-evolution/Locations.h:549
msgid "Dalhart"
msgstr "Dalhart"

#: my-evolution/Locations.h:550
msgid "Dalian"
msgstr "Dalian"

#: my-evolution/Locations.h:551
msgid "Dallas-Addison"
msgstr "Dallas-Addison"

#: my-evolution/Locations.h:552
msgid "Dallas-Fort Worth"
msgstr "Dallas-Fort Worth"

#: my-evolution/Locations.h:553
msgid "Dallas-Love Field"
msgstr "Dallas-Love Field"

#: my-evolution/Locations.h:554
msgid "Dallas-Redbird"
msgstr "Dallas-Redbird"

#: my-evolution/Locations.h:555
msgid "Da Nang"
msgstr "Da Nang"

#: my-evolution/Locations.h:556
msgid "Danbury"
msgstr "Danbury"

#: my-evolution/Locations.h:557
msgid "Danville"
msgstr "Danville"

#: my-evolution/Locations.h:558
msgid "Dar-El-Beida"
msgstr "Dar-El-Beida"

#: my-evolution/Locations.h:559
msgid "Davenport"
msgstr "Davenport"

#: my-evolution/Locations.h:560
msgid "David"
msgstr "David"

#: my-evolution/Locations.h:561
msgid "Dawadmi"
msgstr "Dawadmi"

#: my-evolution/Locations.h:562
msgid "Dayton"
msgstr "Dayton"

#: my-evolution/Locations.h:563
msgid "Daytona Beach"
msgstr "Daytona Beach"

#: my-evolution/Locations.h:564
msgid "Dayton-Fairborn"
msgstr "Dayton-Fairborn"

#: my-evolution/Locations.h:565
msgid "Dayton-South Airport"
msgstr "Dayton-South Airport"

#: my-evolution/Locations.h:566
msgid "Dead Horse"
msgstr "Dead Horse"

#: my-evolution/Locations.h:567
msgid "Deauville-Saint-Gatien"
msgstr "Deauville-Saint-Gatien"

#: my-evolution/Locations.h:568
msgid "Decatur"
msgstr "Decatur"

#: my-evolution/Locations.h:569
msgid "Decimomannu"
msgstr "Decimomannu"

#: my-evolution/Locations.h:570
msgid "Decorah"
msgstr "Decorah"

#: my-evolution/Locations.h:571
msgid "Deelen"
msgstr "Deelen"

#: my-evolution/Locations.h:572
msgid "Dekalb/Peachtree"
msgstr "Dekalb/Peachtree"

#: my-evolution/Locations.h:573
msgid "Delaware"
msgstr "Delaware"

#: my-evolution/Locations.h:574
msgid "Del Bajio"
msgstr "Del Bajio"

#: my-evolution/Locations.h:575
msgid "Del Rio"
msgstr "Del Rio"

#: my-evolution/Locations.h:576
msgid "Delta"
msgstr "Delta"

#: my-evolution/Locations.h:577
msgid "Deming"
msgstr "Deming"

#: my-evolution/Locations.h:578
msgid "Den Helder/De Kooy"
msgstr "Den Helder/De Kooy"

#: my-evolution/Locations.h:579
msgid "Denison"
msgstr "Denison"

#: my-evolution/Locations.h:580
msgid "Denmark"
msgstr "Danmark"

#: my-evolution/Locations.h:581
msgid "Denton"
msgstr "Denton"

#: my-evolution/Locations.h:582
msgid "Denver"
msgstr "Denver"

#: my-evolution/Locations.h:583
msgid "Denver-Aurora"
msgstr "Denver-Aurora"

#: my-evolution/Locations.h:584
msgid "Denver-Broomfield"
msgstr "Denver-Broomfield"

#: my-evolution/Locations.h:585
msgid "Denver-Cherry Knolls"
msgstr "Denver-Cherry Knolls"

#: my-evolution/Locations.h:586
msgid "Desert Rock"
msgstr "Desert Rock"

#: my-evolution/Locations.h:587
msgid "Des Moines"
msgstr "Des Moines"

#: my-evolution/Locations.h:588
msgid "Destin"
msgstr "Destin"

#: my-evolution/Locations.h:589
msgid "Detroit"
msgstr "Detroit"

#: my-evolution/Locations.h:590
msgid "Detroit Lakes"
msgstr "Detroit Lakes"

#: my-evolution/Locations.h:591
msgid "Detroit-Taylor"
msgstr "Detroit-Taylor"

#: my-evolution/Locations.h:592
msgid "Detroit/Ypsilanti"
msgstr "Detroit/Ypsilanti"

#: my-evolution/Locations.h:593
msgid "Devils Lake"
msgstr "Devils Lake"

#: my-evolution/Locations.h:594
msgid "Devils Lake (2)"
msgstr "Devils Lake (2)"

#: my-evolution/Locations.h:595
msgid "Dhahran"
msgstr "Dhahran"

#: my-evolution/Locations.h:596
msgid "Dickinson"
msgstr "Dickinson"

#: my-evolution/Locations.h:597
msgid "Dijon"
msgstr "Dijon"

#: my-evolution/Locations.h:598
msgid "Dillingham"
msgstr "Dillingham"

#: my-evolution/Locations.h:599
msgid "Dillon"
msgstr "Dillon"

#: my-evolution/Locations.h:600
msgid "Dinard"
msgstr "Dinard"

#: my-evolution/Locations.h:601
msgid "District of Columbia"
msgstr "District of Columbia"

#: my-evolution/Locations.h:602
msgid "Diyarbakir"
msgstr "Diyarbakir"

#: my-evolution/Locations.h:603
msgid "Dnipropetrovsk"
msgstr ""

#: my-evolution/Locations.h:604
msgid "Dobbiaco"
msgstr "Dobbiaco"

#: my-evolution/Locations.h:605
msgid "Dodge City"
msgstr "Dodge City"

#: my-evolution/Locations.h:606
msgid "Doha"
msgstr "Doha"

#: my-evolution/Locations.h:607
msgid "Dole"
msgstr "Dole"

#: my-evolution/Locations.h:608
msgid "Dominican Republic"
msgstr "Dominikanske republikk"

#: my-evolution/Locations.h:609
#, fuzzy
msgid "Donetsk"
msgstr "Ferdig"

#: my-evolution/Locations.h:610
msgid "Dongsha"
msgstr "Dongsha"

#: my-evolution/Locations.h:611
msgid "Dongshi"
msgstr "Dongshi"

#: my-evolution/Locations.h:612
msgid "Don Torcuato"
msgstr "Don Torcuato"

#: my-evolution/Locations.h:613
msgid "Dortmund-Wickede"
msgstr "Dortmund-Wickede"

#: my-evolution/Locations.h:614
msgid "Dothan"
msgstr "Dothan"

#: my-evolution/Locations.h:615
msgid "Douglas"
msgstr "Douglas"

#: my-evolution/Locations.h:616
msgid "Dover"
msgstr "Dover"

#: my-evolution/Locations.h:617
msgid "Dresden-Klotzsche"
msgstr "Dresden-Klotzsche"

#: my-evolution/Locations.h:618
msgid "Drummond"
msgstr "Drummond"

#: my-evolution/Locations.h:619
msgid "Dubai"
msgstr "Dubai"

#: my-evolution/Locations.h:620
msgid "Dubbo"
msgstr "Dubbo"

#: my-evolution/Locations.h:621
msgid "Dublin"
msgstr "Dublin"

#: my-evolution/Locations.h:622
msgid "Du Bois"
msgstr "Du Bois"

#: my-evolution/Locations.h:623
msgid "Dubrovnik"
msgstr "Dubrovnik"

#: my-evolution/Locations.h:624
msgid "Dubuque"
msgstr "Dubuque"

#: my-evolution/Locations.h:625
msgid "Dugway"
msgstr "Dugway"

#: my-evolution/Locations.h:626
msgid "Duluth"
msgstr "Duluth"

#: my-evolution/Locations.h:627
msgid "Dundee"
msgstr "Dundee"

#: my-evolution/Locations.h:628
msgid "Durango"
msgstr "Durango"

#: my-evolution/Locations.h:629
msgid "Durango Awrs"
msgstr "Durango Awrs"

#: my-evolution/Locations.h:630
msgid "Durazno"
msgstr "Durazno"

#: my-evolution/Locations.h:631
msgid "Durban Louis Botha "
msgstr "Durban Louis Botha "

#: my-evolution/Locations.h:632
msgid "Dusseldorf"
msgstr "Dusseldorf"

#: my-evolution/Locations.h:633
msgid "Dutch Harbor"
msgstr "Dutch Harbor"

#: my-evolution/Locations.h:634
msgid "Dyersburg"
msgstr "Dyersburg"

#: my-evolution/Locations.h:635
msgid "Eagle"
msgstr "Eagle"

#: my-evolution/Locations.h:636
msgid "Eagle Range"
msgstr "Eagle Range"

#: my-evolution/Locations.h:637
msgid "East London"
msgstr "East London"

#: my-evolution/Locations.h:638
msgid "East Midlands"
msgstr "East Midlands"

#: my-evolution/Locations.h:639
msgid "East St Louis"
msgstr "East St Louis"

#: my-evolution/Locations.h:640
msgid "Eau Claire"
msgstr "Eau Claire"

#: my-evolution/Locations.h:641
msgid "Ecuador"
msgstr "Ecuador"

#: my-evolution/Locations.h:642
msgid "Edinburgh"
msgstr "Edinburgh"

#: my-evolution/Locations.h:643
msgid "Edmonton"
msgstr "Edmonton"

#: my-evolution/Locations.h:644
msgid "Edmonton/Villeneuve"
msgstr "Edmonton/Villeneuve"

#: my-evolution/Locations.h:645
msgid "Eduardo Gomes International"
msgstr "Eduardo Gomes International"

#: my-evolution/Locations.h:646
msgid "Edwards AFB"
msgstr "Edwards AFB"

#: my-evolution/Locations.h:647
msgid "Egilsstadir"
msgstr "Egilsstadir"

#: my-evolution/Locations.h:648
msgid "Eglin"
msgstr "Eglin"

#: my-evolution/Locations.h:649
msgid "Eglington/Londonderry"
msgstr "Eglington/Londonderry"

#: my-evolution/Locations.h:650
msgid "Egypt"
msgstr "Egypt"

#: my-evolution/Locations.h:651
msgid "Eindhoven"
msgstr "Eindhoven"

#: my-evolution/Locations.h:652
msgid "Ekofisk"
msgstr "Ekofisk"

#: my-evolution/Locations.h:653
msgid "Elazig"
msgstr "Elazig"

#: my-evolution/Locations.h:654
msgid "El Centro"
msgstr "El Centro"

#: my-evolution/Locations.h:655
msgid "El Dorado"
msgstr "El Dorado"

#: my-evolution/Locations.h:656
msgid "Elefsis"
msgstr "Elefsis"

#: my-evolution/Locations.h:657
msgid "Elfin Cove"
msgstr "Elfin Cove"

#: my-evolution/Locations.h:658
msgid "Elizabeth City"
msgstr "Elizabeth City"

#: my-evolution/Locations.h:659
msgid "Elk City"
msgstr "Elk City"

#: my-evolution/Locations.h:660
msgid "Elkhart"
msgstr "Elkhart"

#: my-evolution/Locations.h:661
msgid "Elkins"
msgstr "Elkins"

#: my-evolution/Locations.h:662
msgid "Elko"
msgstr "Elko"

#: my-evolution/Locations.h:663
msgid "Elmira"
msgstr "Elmira"

#: my-evolution/Locations.h:664
msgid "El Monte"
msgstr "El Monte"

#: my-evolution/Locations.h:665
msgid "El Paso"
msgstr "El Paso"

#: my-evolution/Locations.h:666
msgid "El Salvador"
msgstr "El Salvador"

#: my-evolution/Locations.h:667
msgid "El Salvador Int."
msgstr "El Salvador Int."

#: my-evolution/Locations.h:668
msgid "Elsenborn"
msgstr "Elsenborn"

#: my-evolution/Locations.h:669
msgid "Ely"
msgstr "Ely"

#: my-evolution/Locations.h:670
msgid "Emmonak"
msgstr "Emmonak"

#: my-evolution/Locations.h:671
msgid "Emporia"
msgstr "Emporia"

#: my-evolution/Locations.h:672
msgid "Enid"
msgstr "Enid"

#: my-evolution/Locations.h:673
msgid "Enid/Woodring"
msgstr "Enid/Woodring"

#: my-evolution/Locations.h:674
msgid "Enosburg Falls"
msgstr "Enosburg Falls"

#: my-evolution/Locations.h:675
msgid "Ephrata"
msgstr "Ephrata"

#: my-evolution/Locations.h:676
msgid "Ercan"
msgstr "Ercan"

#: my-evolution/Locations.h:677
msgid "Erie"
msgstr "Erie"

#: my-evolution/Locations.h:678
msgid "Erzurum"
msgstr "Erzurum"

#: my-evolution/Locations.h:679
msgid "Esbjerg"
msgstr "Esbjerg"

#: my-evolution/Locations.h:680
msgid "Escanaba"
msgstr "Escanaba"

#: my-evolution/Locations.h:681
msgid "Esfahan"
msgstr "Esfahan"

#: my-evolution/Locations.h:682
msgid "Eskisehir"
msgstr "Eskisehir"

#: my-evolution/Locations.h:683
msgid "Estherville"
msgstr "Estherville"

#: my-evolution/Locations.h:684
msgid "Estonia"
msgstr "Estland"

#: my-evolution/Locations.h:685
msgid "Eugene"
msgstr "Eugene"

#: my-evolution/Locations.h:686
msgid "Eureka"
msgstr "Eureka"

#: my-evolution/Locations.h:687
msgid "Europe"
msgstr "Europa"

#: my-evolution/Locations.h:688
msgid "Evanston"
msgstr "Evanston"

#: my-evolution/Locations.h:689
msgid "Evansville"
msgstr "Evansville"

#: my-evolution/Locations.h:690
msgid "Everett"
msgstr "Everett"

#: my-evolution/Locations.h:691
msgid "Evergreen"
msgstr "Evergreen"

#: my-evolution/Locations.h:692
msgid "Evreux-Fauville"
msgstr "Evreux-Fauville"

#: my-evolution/Locations.h:693
msgid "Exeter"
msgstr "Exeter"

#: my-evolution/Locations.h:694
msgid "Ezeiza"
msgstr "Ezeiza"

#: my-evolution/Locations.h:695
msgid "Fagernes"
msgstr "Fagernes"

#: my-evolution/Locations.h:696
msgid "Fairbanks"
msgstr "Fairbanks"

#: my-evolution/Locations.h:697
msgid "Fairchild"
msgstr "Fairchild"

#: my-evolution/Locations.h:698
msgid "Fairfield"
msgstr "Fairfield"

#: my-evolution/Locations.h:699
msgid "Fairmont"
msgstr "Fairmont"

#: my-evolution/Locations.h:700
msgid "Fallon"
msgstr "Fallon"

#: my-evolution/Locations.h:701
msgid "Falls City"
msgstr "Falls City"

#: my-evolution/Locations.h:702
msgid "Falmouth-Otis AFB"
msgstr "Falmouth-Otis AFB"

#: my-evolution/Locations.h:703
msgid "Farbanks/Eielson AFB"
msgstr "Farbanks/Eielson AFB"

#: my-evolution/Locations.h:704
msgid "Fargo"
msgstr "Fargo"

#: my-evolution/Locations.h:705
msgid "Farmingdale"
msgstr "Farmingdale"

#: my-evolution/Locations.h:706
msgid "Farmington"
msgstr "Farmington"

#: my-evolution/Locations.h:707
msgid "Farmville"
msgstr "Farmville"

#: my-evolution/Locations.h:708
msgid "Faro"
msgstr "Faro"

#: my-evolution/Locations.h:709
msgid "Fayetteville"
msgstr "Fayetteville"

#: my-evolution/Locations.h:710
msgid "Feng Nin"
msgstr "Feng Nin"

#: my-evolution/Locations.h:711
msgid "Fergus Falls"
msgstr "Fergus Falls"

#: my-evolution/Locations.h:712
msgid "Fernando De Noronha"
msgstr "Fernando De Noronha"

#: my-evolution/Locations.h:713
msgid "Ferrara"
msgstr "Ferrara"

#: my-evolution/Locations.h:714
msgid "Figari"
msgstr "Figari"

#: my-evolution/Locations.h:715
msgid "Findlay"
msgstr "Findlay"

#: my-evolution/Locations.h:716
msgid "Finland"
msgstr "Finland"

#: my-evolution/Locations.h:717
msgid "Firenze"
msgstr "Firenze"

#: my-evolution/Locations.h:718
msgid "Fitchburg"
msgstr "Fitchburg"

#: my-evolution/Locations.h:719
msgid "Flagstaff"
msgstr "Flagstaff"

#: my-evolution/Locations.h:720
msgid "Flint"
msgstr "Flint"

#: my-evolution/Locations.h:721
msgid "Flippin"
msgstr "Flippin"

#: my-evolution/Locations.h:722
msgid "Florence"
msgstr "Florence"

#: my-evolution/Locations.h:723
msgid "Florennes"
msgstr "Florennes"

#: my-evolution/Locations.h:724
msgid "Flores"
msgstr "Flores"

#: my-evolution/Locations.h:725
msgid "Florianopolis"
msgstr "Florianopolis"

#: my-evolution/Locations.h:726
msgid "Florida"
msgstr "Florida"

#: my-evolution/Locations.h:727
msgid "Floro"
msgstr "Florø"

#: my-evolution/Locations.h:728
msgid "Fond Du Lac"
msgstr "Fond Du Lac"

#: my-evolution/Locations.h:729
msgid "Forde/Bringeland"
msgstr "Førde/Bringeland"

#: my-evolution/Locations.h:730
msgid "Forli"
msgstr "Forli"

#: my-evolution/Locations.h:731
msgid "Formosa"
msgstr "Formosa"

#: my-evolution/Locations.h:732
msgid "Fortaleza"
msgstr "Fortaleza"

#: my-evolution/Locations.h:733
msgid "Fort Belvoir"
msgstr "Fort Belvoir"

#: my-evolution/Locations.h:734
msgid "Fort Benning"
msgstr "Fort Benning"

#: my-evolution/Locations.h:735
msgid "Fort Bragg"
msgstr "Fort Bragg"

#: my-evolution/Locations.h:736
msgid "Fort Campbell"
msgstr "Fort Campbell"

#: my-evolution/Locations.h:737
msgid "Fort Carson"
msgstr "Fort Carson"

#: my-evolution/Locations.h:738
msgid "Fort Collins"
msgstr "Fort Collins"

#: my-evolution/Locations.h:739
msgid "Fort Collins/Lovel"
msgstr "Fort Collins/Lovel"

#: my-evolution/Locations.h:740
msgid "Fort Dodge"
msgstr "Fort Dodge"

#: my-evolution/Locations.h:741
msgid "Fort Drum"
msgstr "Fort Drum"

#: my-evolution/Locations.h:742
msgid "Fort Eustis"
msgstr "Fort Eustis"

#: my-evolution/Locations.h:743
msgid "Fort Greely/Allen AAF"
msgstr "Fort Greely/Allen AAF"

#: my-evolution/Locations.h:744
msgid "Fort Huachuca"
msgstr "Fort Huachuca"

#: my-evolution/Locations.h:745
msgid "Fort Knox"
msgstr "Fort Knox"

#: my-evolution/Locations.h:746
msgid "Fort Lauderdale"
msgstr "Fort Lauderdale"

#: my-evolution/Locations.h:747
msgid "Fort Lauderdale (International)"
msgstr "Fort Lauderdale (International)"

#: my-evolution/Locations.h:748
msgid "Fort Leonard"
msgstr "Fort Leonard"

#: my-evolution/Locations.h:749
msgid "Fort Lewis"
msgstr "Fort Lewis"

#: my-evolution/Locations.h:750
msgid "Fort Madison"
msgstr "Fort Madison"

#: my-evolution/Locations.h:751
msgid "Fort Meade"
msgstr "Fort Meade"

#: my-evolution/Locations.h:752
msgid "Fort Myers (Page Field)"
msgstr "Fort Myers (Page Field)"

#: my-evolution/Locations.h:753
msgid "Fort Myers (Southwest Florida International)"
msgstr "Fort Myers (Southwest Florida International)"

#: my-evolution/Locations.h:754
msgid "Fort Polk-Leesville"
msgstr "Fort Polk-Leesville"

#: my-evolution/Locations.h:755
msgid "Fort Riley"
msgstr "Fort Riley"

#: my-evolution/Locations.h:756
msgid "Fort Sill"
msgstr "Fort Sill"

#: my-evolution/Locations.h:757
msgid "Fort Smith"
msgstr "Fort Smith"

#: my-evolution/Locations.h:758
msgid "Fort Stewart"
msgstr "Fort Stewart"

#: my-evolution/Locations.h:759
msgid "Fort Stockton"
msgstr "Fort Stockton"

#: my-evolution/Locations.h:760
msgid "Fort Wayne"
msgstr "Fort Wayne"

#: my-evolution/Locations.h:761
msgid "Fort Worth-Alliance"
msgstr "Fort Worth-Alliance"

#: my-evolution/Locations.h:762
msgid "Fort Worth-Meacham"
msgstr "Fort Worth-Meacham"

#: my-evolution/Locations.h:763
msgid "Fort Worth NAS"
msgstr "Fort Worth NAS"

#: my-evolution/Locations.h:764
msgid "Fourchon"
msgstr "Fourchon"

#: my-evolution/Locations.h:765
msgid "Foz Do Iguacu"
msgstr "Foz Do Iguacu"

#: my-evolution/Locations.h:766
msgid "France"
msgstr "Frankrike"

#: my-evolution/Locations.h:767
msgid "Frankfort"
msgstr "Frankfort"

#: my-evolution/Locations.h:768
msgid "Frankfurt/Main"
msgstr "Frankfurt/Main"

#: my-evolution/Locations.h:769
msgid "Franklin"
msgstr "Franklin"

#: my-evolution/Locations.h:770
msgid "Fredericton"
msgstr "Fredericton"

#: my-evolution/Locations.h:771
msgid "Freeport"
msgstr "Freeport"

#: my-evolution/Locations.h:772
msgid "Frenchville"
msgstr "Frenchville"

#: my-evolution/Locations.h:773
msgid "Fresno"
msgstr "Fresno"

#: my-evolution/Locations.h:774
msgid "Fresno-Chandler"
msgstr "Fresno-Chandler"

#: my-evolution/Locations.h:775
msgid "Friday Harbor"
msgstr "Friday Harbor"

#: my-evolution/Locations.h:776
msgid "Friedrichshafen"
msgstr "Friedrichshafen"

#: my-evolution/Locations.h:777
msgid "Frigg"
msgstr "Frigg"

#: my-evolution/Locations.h:778
msgid "Frontone"
msgstr "Frontone"

#: my-evolution/Locations.h:779
msgid "Frosinone"
msgstr "Frosinone"

#: my-evolution/Locations.h:780
msgid "Fryeburg"
msgstr "Fryeburg"

#: my-evolution/Locations.h:781
msgid "Fujairah"
msgstr "Fujairah"

#: my-evolution/Locations.h:782
msgid "Fuji Ab"
msgstr "Fuji Ab"

#: my-evolution/Locations.h:783
msgid "Fukue Airport"
msgstr "Fukue Airport"

#: my-evolution/Locations.h:784
msgid "Fukui Airport"
msgstr "Fukui Airport"

#: my-evolution/Locations.h:785
msgid "Fukuoka Airport"
msgstr "Fukuoka Airport"

#: my-evolution/Locations.h:786
msgid "Fullerton"
msgstr "Fullerton"

#: my-evolution/Locations.h:787
msgid "Funchal"
msgstr "Funchal"

#: my-evolution/Locations.h:788
msgid "FYR Macedonia"
msgstr "FYR Macedonia"

#: my-evolution/Locations.h:789
msgid "Gadsden"
msgstr "Gadsden"

#: my-evolution/Locations.h:790
msgid "Gage"
msgstr "Gage"

#: my-evolution/Locations.h:791
msgid "Gainesville"
msgstr "Gainesville"

#: my-evolution/Locations.h:792
msgid "Galax-Hillsville"
msgstr "Galax-Hillsville"

#: my-evolution/Locations.h:793
msgid "Galbraith Lake"
msgstr "Galbraith Lake"

#: my-evolution/Locations.h:794
msgid "Galeao"
msgstr "Galeao"

#: my-evolution/Locations.h:795
msgid "Galena"
msgstr "Galena"

#: my-evolution/Locations.h:796
msgid "Galesburg"
msgstr "Galesburg"

#: my-evolution/Locations.h:797
msgid "Gallup"
msgstr "Gallup"

#: my-evolution/Locations.h:798
msgid "Galveston"
msgstr "Galveston"

#: my-evolution/Locations.h:799
msgid "Gambell"
msgstr "Gambell"

#: my-evolution/Locations.h:800
msgid "Gander"
msgstr "Gander"

#: my-evolution/Locations.h:801
msgid "Garden City"
msgstr "Garden City"

#: my-evolution/Locations.h:802
msgid "Gary"
msgstr "Gary"

#: my-evolution/Locations.h:803
msgid "Gassim"
msgstr "Gassim"

#: my-evolution/Locations.h:804
msgid "Gatineau"
msgstr "Gatineau"

#: my-evolution/Locations.h:805
msgid "Gaziantep"
msgstr "Gaziantep"

#: my-evolution/Locations.h:806
msgid "Gdansk"
msgstr "Gdansk"

#: my-evolution/Locations.h:807
msgid "Geneve"
msgstr "Geneve"

#: my-evolution/Locations.h:808
msgid "Genova"
msgstr "Genova"

#: my-evolution/Locations.h:809
msgid "George Airport"
msgstr "George Airport"

#: my-evolution/Locations.h:810
msgid "Georgetown"
msgstr "Georgetown"

#: my-evolution/Locations.h:811
msgid "Georgia"
msgstr "Georgia"

#: my-evolution/Locations.h:812
msgid "Germany"
msgstr "Tyskland"

#: my-evolution/Locations.h:813
msgid "Ghardaia"
msgstr "Ghardaia"

#: my-evolution/Locations.h:814
msgid "Ghedi"
msgstr "Ghedi"

#: my-evolution/Locations.h:815
msgid "Gibraltar"
msgstr "Gibraltar"

#: my-evolution/Locations.h:816
msgid "Gifu Ab"
msgstr "Gifu Ab"

#: my-evolution/Locations.h:817
msgid "Gila Bend"
msgstr "Gila Bend"

#: my-evolution/Locations.h:818
msgid "Gillette"
msgstr "Gillette"

#: my-evolution/Locations.h:819
msgid "Gilze-Rijen"
msgstr "Gilze-Rijen"

#: my-evolution/Locations.h:820
msgid "Gioia del Colle"
msgstr "Gioia del Colle"

#: my-evolution/Locations.h:821
msgid "Girona"
msgstr "Girona"

#: my-evolution/Locations.h:822
msgid "Gizan"
msgstr "Gizan"

#: my-evolution/Locations.h:823
msgid "Glasgow"
msgstr "Glasgow"

#: my-evolution/Locations.h:824
msgid "Glendive"
msgstr "Glendive"

#: my-evolution/Locations.h:825
msgid "Glens Falls"
msgstr "Glens Falls"

#: my-evolution/Locations.h:826
msgid "Goiania"
msgstr "Goiania"

#: my-evolution/Locations.h:827
msgid "Goldsboro"
msgstr "Goldsboro"

#: my-evolution/Locations.h:828
msgid "Goodland"
msgstr "Goodland"

#: my-evolution/Locations.h:829
msgid "Goose Bay"
msgstr "Goose Bay"

#: my-evolution/Locations.h:830
msgid "Goteborg (Landvetter)"
msgstr "Göteborg (Landvetter)"

#: my-evolution/Locations.h:831
msgid "Goteborg (Save)"
msgstr "Göteborg (Save)"

#: my-evolution/Locations.h:832
msgid "Granada"
msgstr "Granada"

#: my-evolution/Locations.h:833
msgid "Grand Canyon"
msgstr "Grand Canyon"

#: my-evolution/Locations.h:834
msgid "Grand Cayman"
msgstr "Grand Cayman"

#: my-evolution/Locations.h:835
msgid "Grand Forks"
msgstr "Grand Forks"

#: my-evolution/Locations.h:836
msgid "Grand Island"
msgstr "Grand Island"

#: my-evolution/Locations.h:837
msgid "Grand Isle"
msgstr "Grand Isle"

#: my-evolution/Locations.h:838
msgid "Grand Junction"
msgstr "Grand Junction"

#: my-evolution/Locations.h:839
msgid "Grand Marais"
msgstr "Grand Marais"

#: my-evolution/Locations.h:840
msgid "Grand Rapids"
msgstr "Grand Rapids"

#: my-evolution/Locations.h:841
msgid "Grandview"
msgstr "Grandview"

#: my-evolution/Locations.h:842
msgid "Grangeville"
msgstr "Grangeville"

#: my-evolution/Locations.h:843
msgid "Grants"
msgstr "Grants"

#: my-evolution/Locations.h:844
msgid "Graz"
msgstr "Graz"

#: my-evolution/Locations.h:845
msgid "Great Falls"
msgstr "Great Falls"

#: my-evolution/Locations.h:846
msgid "Greece"
msgstr "Hellas"

#: my-evolution/Locations.h:847
msgid "Greeley"
msgstr "Greeley"

#: my-evolution/Locations.h:848
msgid "Green Bay"
msgstr "Green Bay"

#: my-evolution/Locations.h:849
msgid "Green River"
msgstr "Green River"

#: my-evolution/Locations.h:850
msgid "Greensboro"
msgstr "Greensboro"

#: my-evolution/Locations.h:851
msgid "Greenville"
msgstr "Greenville"

#: my-evolution/Locations.h:852
msgid "Greenville-Spartanburg"
msgstr "Greenville-Spartanburg"

#: my-evolution/Locations.h:853
msgid "Greenwood"
msgstr "Greenwood"

#: my-evolution/Locations.h:854
msgid "Grenoble-Saint-Geoirs"
msgstr "Grenoble-Saint-Geoirs"

#: my-evolution/Locations.h:855
msgid "Griffiss AFB"
msgstr "Griffiss AFB"

#: my-evolution/Locations.h:856
msgid "Groningen"
msgstr "Groningen"

#: my-evolution/Locations.h:857
msgid "Grosseto"
msgstr "Grosseto"

#: my-evolution/Locations.h:858
msgid "Groton"
msgstr "Groton"

#: my-evolution/Locations.h:859
msgid "Guadalajara"
msgstr "Guadalajara"

#: my-evolution/Locations.h:860
msgid "Guadalupe Pass"
msgstr "Guadalupe Pass"

#: my-evolution/Locations.h:861
msgid "Guanare"
msgstr "Guanare"

#: my-evolution/Locations.h:862
msgid "Guangzhou"
msgstr "Guangzhou"

#: my-evolution/Locations.h:863
msgid "Guantanamo"
msgstr "Guantanamo"

#: my-evolution/Locations.h:864
msgid "Guarany"
msgstr "Guarany"

#: my-evolution/Locations.h:865
msgid "Guaratingueta"
msgstr "Guaratingueta"

#: my-evolution/Locations.h:866
msgid "Guarulhos"
msgstr "Guarulhos"

#: my-evolution/Locations.h:867
msgid "Guatemala"
msgstr "Guatemala"

#: my-evolution/Locations.h:868
msgid "Guayaquil/Simon Bolivar"
msgstr "Guayaquil/Simon Bolivar"

#: my-evolution/Locations.h:869
msgid "Guaymas"
msgstr "Guaymas"

#: my-evolution/Locations.h:870
msgid "Guernsey"
msgstr "Guernsey"

#: my-evolution/Locations.h:871
msgid "Guidonia"
msgstr "Guidonia"

#: my-evolution/Locations.h:872
msgid "Gulfport"
msgstr "Gulfport"

#: my-evolution/Locations.h:873
msgid "Gulkana"
msgstr "Gulkana"

#: my-evolution/Locations.h:874
msgid "Gullfax C"
msgstr "Gullfax C"

#: my-evolution/Locations.h:875
msgid "Gunnison"
msgstr "Gunnison"

#: my-evolution/Locations.h:876
msgid "Gunnison (2)"
msgstr "Gunnison (2)"

#: my-evolution/Locations.h:877
msgid "Guriat"
msgstr "Guriat"

#: my-evolution/Locations.h:878
msgid "Gustavus"
msgstr "Gustavus"

#: my-evolution/Locations.h:879
msgid "Guymon"
msgstr "Guymon"

#: my-evolution/Locations.h:880
msgid "Habana"
msgstr "Habana"

#: my-evolution/Locations.h:881
msgid "Hachijojima Airport"
msgstr "Hachijojima Airport"

#: my-evolution/Locations.h:882
msgid "Hachinohe Ab"
msgstr "Hachinohe Ab"

#: my-evolution/Locations.h:883
msgid "Hafr Al-Batin"
msgstr "Hafr Al-Batin"

#: my-evolution/Locations.h:884
msgid "Hagerstown"
msgstr "Hagerstown"

#. HAIL
#: my-evolution/Locations.h:885 my-evolution/metar.c:217
msgid "Hail"
msgstr "Hagl"

#: my-evolution/Locations.h:886
msgid "Hailey-Sun Valley"
msgstr "Hailey-Sun Valley"

#: my-evolution/Locations.h:887
msgid "Haines"
msgstr "Haines"

#: my-evolution/Locations.h:888
msgid "Haiti"
msgstr "Haiti"

#: my-evolution/Locations.h:889
msgid "Hakodate Airport"
msgstr "Hakodate Airport"

#: my-evolution/Locations.h:890
msgid "Halifax"
msgstr "Halifax"

#: my-evolution/Locations.h:891
msgid "Hamamatsu Ab"
msgstr "Hamamatsu Ab"

#: my-evolution/Locations.h:892
msgid "Hamburg"
msgstr "Hamburg"

#: my-evolution/Locations.h:893
msgid "Hamburg-Finkenwerder"
msgstr "Hamburg-Finkenwerder"

#: my-evolution/Locations.h:894
msgid "Hamilton"
msgstr "Hamilton"

#: my-evolution/Locations.h:895
msgid "Hammerfest"
msgstr "Hammerfest"

#: my-evolution/Locations.h:896
msgid "Hampton"
msgstr "Hampton"

#: my-evolution/Locations.h:897
msgid "Hanamaki Airport"
msgstr "Hanamaki Airport"

#: my-evolution/Locations.h:898
msgid "Hancock"
msgstr "Hancock"

#: my-evolution/Locations.h:899
msgid "Hangzhou"
msgstr "Hangzhou"

#: my-evolution/Locations.h:900
msgid "Hanksville"
msgstr "Hanksville"

#: my-evolution/Locations.h:901
msgid "Hannover"
msgstr "Hannover"

#: my-evolution/Locations.h:902
msgid "Ha Noi"
msgstr "Ha Noi"

#: my-evolution/Locations.h:903
msgid "Harbor Beach"
msgstr "Harbor Beach"

#: my-evolution/Locations.h:904
msgid "Harlingen"
msgstr "Harlingen"

#: my-evolution/Locations.h:905
msgid "Harlowton"
msgstr "Harlowton"

#: my-evolution/Locations.h:906
msgid "Harrisburg"
msgstr "Harrisburg"

#: my-evolution/Locations.h:907
msgid "Harrison"
msgstr "Harrison"

#: my-evolution/Locations.h:908
msgid "Harstad/Narvik/Evenes"
msgstr "Harstad/Narvik/Evenes"

#: my-evolution/Locations.h:909
msgid "Hartford"
msgstr "Hartford"

#: my-evolution/Locations.h:910
msgid "Hassi-Messaoud"
msgstr "Hassi-Messaoud"

#: my-evolution/Locations.h:911
msgid "Hastings"
msgstr "Hastings"

#: my-evolution/Locations.h:912
msgid "Haugesund"
msgstr "Haugesund"

#: my-evolution/Locations.h:913
msgid "Havre"
msgstr "Havre"

#: my-evolution/Locations.h:914
msgid "Hawaii"
msgstr "Hawaii"

#: my-evolution/Locations.h:915
msgid "Hawthorne"
msgstr "Hawthorne"

#: my-evolution/Locations.h:916
msgid "Hayden"
msgstr "Hayden"

#: my-evolution/Locations.h:917
msgid "Hayes River"
msgstr "Hayes River"

#: my-evolution/Locations.h:918
msgid "Hays"
msgstr "Hays"

#: my-evolution/Locations.h:919
msgid "Hayward"
msgstr "Hayward"

#: my-evolution/Locations.h:920
msgid "Healy River"
msgstr "Healy River"

#: my-evolution/Locations.h:921
msgid "Helena"
msgstr "Helena"

#: my-evolution/Locations.h:922
msgid "Helsinki"
msgstr "Helsinki"

#: my-evolution/Locations.h:923
msgid "Henderson"
msgstr "Henderson"

#: my-evolution/Locations.h:924
msgid "Hengchun"
msgstr "Hengchun"

#: my-evolution/Locations.h:925
msgid "Hermosillo"
msgstr "Hermosillo"

#: my-evolution/Locations.h:926
msgid "Hibbing"
msgstr "Hibbing"

#: my-evolution/Locations.h:927
msgid "Hickory"
msgstr "Hickory"

#: my-evolution/Locations.h:928
msgid "Hill City"
msgstr "Hill City"

#: my-evolution/Locations.h:929
msgid "Hillsboro"
msgstr "Hillsboro"

#: my-evolution/Locations.h:930
msgid "Hilo"
msgstr "Hilo"

#: my-evolution/Locations.h:931
msgid "Hinesville"
msgstr "Hinesville"

#: my-evolution/Locations.h:932
msgid "Hiroshima Airport"
msgstr "Hiroshima Airport"

#: my-evolution/Locations.h:933
msgid "Hobart"
msgstr "Hobart"

#: my-evolution/Locations.h:934
msgid "Hobbs"
msgstr "Hobbs"

#: my-evolution/Locations.h:935
msgid "Ho Chi Minh"
msgstr "Ho Chi Minh"

#: my-evolution/Locations.h:936
msgid "Hodeidah"
msgstr "Hodeidah"

#: my-evolution/Locations.h:937
msgid "Hof"
msgstr "Hof"

#: my-evolution/Locations.h:938
msgid "Hoffman"
msgstr "Hoffman"

#: my-evolution/Locations.h:939
msgid "Hofu Ab"
msgstr "Hofu Ab"

#: my-evolution/Locations.h:940
msgid "Hohenems"
msgstr "Hohenems"

#: my-evolution/Locations.h:941
msgid "Holguin"
msgstr "Holguin"

#: my-evolution/Locations.h:942
msgid "Homer"
msgstr "Homer"

#: my-evolution/Locations.h:943
msgid "Homestead AFB"
msgstr "Homestead AFB"

#: my-evolution/Locations.h:944
msgid "Hondo"
msgstr "Hondo"

#: my-evolution/Locations.h:945
msgid "Honduras"
msgstr "Honduras"

#: my-evolution/Locations.h:946
msgid "Hong Kong"
msgstr "Hong Kong"

#: my-evolution/Locations.h:947
msgid "Honningsvag"
msgstr "Honningsvåg"

#: my-evolution/Locations.h:948
msgid "Honolulu"
msgstr "Honolulu"

#: my-evolution/Locations.h:949
msgid "Hoonah"
msgstr "Hoonah"

#: my-evolution/Locations.h:950
msgid "Hoquiam"
msgstr "Hoquiam"

#: my-evolution/Locations.h:951
msgid "Hot Springs"
msgstr "Hot Springs"

#: my-evolution/Locations.h:952
msgid "Houghton Lake"
msgstr "Houghton Lake"

#: my-evolution/Locations.h:953
msgid "Houlton"
msgstr "Houlton"

#: my-evolution/Locations.h:954
msgid "Houma"
msgstr "Houma"

#: my-evolution/Locations.h:955
msgid "Houston-Bush"
msgstr "Houston-Bush"

#: my-evolution/Locations.h:956
msgid "Houston-Clover"
msgstr "Houston-Clover"

#: my-evolution/Locations.h:957
msgid "Houston-Ellington Field"
msgstr "Houston-Ellington Field"

#: my-evolution/Locations.h:958
msgid "Houston-Hobby"
msgstr "Houston-Hobby"

#: my-evolution/Locations.h:959
msgid "Houston-Hooks"
msgstr "Houston-Hooks"

#: my-evolution/Locations.h:960
msgid "Howard AFB"
msgstr "Howard AFB"

#: my-evolution/Locations.h:961
msgid "Hsinchu"
msgstr "Hsinchu"

#: my-evolution/Locations.h:962
msgid "Huanuco"
msgstr "Huanuco"

#: my-evolution/Locations.h:963
msgid "Huehuetenango"
msgstr "Huehuetenango"

#: my-evolution/Locations.h:964
msgid "Hulien"
msgstr "Hulien"

#: my-evolution/Locations.h:965
msgid "Humberside"
msgstr "Humberside"

#: my-evolution/Locations.h:966
msgid "Hungary"
msgstr "Ungarn"

#: my-evolution/Locations.h:967
msgid "Huntington"
msgstr "Huntington"

#: my-evolution/Locations.h:968
msgid "Huntsville"
msgstr "Huntsville"

#: my-evolution/Locations.h:969
msgid "Hurlburt"
msgstr "Hurlburt"

#: my-evolution/Locations.h:970
msgid "Huron"
msgstr "Huron"

#: my-evolution/Locations.h:971
msgid "Hutchinson"
msgstr "Hutchinson"

#: my-evolution/Locations.h:972
msgid "Hyakuri Ab"
msgstr "Hyakuri Ab"

#: my-evolution/Locations.h:973
msgid "Hyannis"
msgstr "Hyannis"

#: my-evolution/Locations.h:974
msgid "Hyderabad"
msgstr "Hyderabad"

#: my-evolution/Locations.h:975
msgid "Hyeres-Le Palyvestre"
msgstr "Hyeres-Le Palyvestre"

#: my-evolution/Locations.h:976
msgid "Iasi"
msgstr "Iasi"

#: my-evolution/Locations.h:977
msgid "Ibiza"
msgstr "Ibiza"

#: my-evolution/Locations.h:978
msgid "Iceland"
msgstr "Island"

#: my-evolution/Locations.h:979
msgid "Ichikawa"
msgstr "Ichikawa"

#: my-evolution/Locations.h:980
msgid "Idaho"
msgstr "Idaho"

#: my-evolution/Locations.h:981
msgid "Idaho Falls"
msgstr "Idaho Falls"

#: my-evolution/Locations.h:982
msgid "Iguazu"
msgstr "Iguazu"

#: my-evolution/Locations.h:983
msgid "Iki Airport"
msgstr "Iki Airport"

#: my-evolution/Locations.h:984
msgid "Ilan"
msgstr "Ilan"

#: my-evolution/Locations.h:985
msgid "Iliamna"
msgstr "Iliamna"

#: my-evolution/Locations.h:986
msgid "Illinois"
msgstr "Illinois"

#: my-evolution/Locations.h:987
msgid "Imperial"
msgstr "Imperial"

#: my-evolution/Locations.h:988
msgid "Imperial (2)"
msgstr "Imperial (2)"

#: my-evolution/Locations.h:989
msgid "Imperial Beach"
msgstr "Imperial Beach"

#: my-evolution/Locations.h:990
msgid "In Amenas"
msgstr "In Amenas"

#: my-evolution/Locations.h:991
msgid "India"
msgstr "India"

#: my-evolution/Locations.h:992
msgid "Indiana"
msgstr "Indiana"

#: my-evolution/Locations.h:993
msgid "Indianapolis"
msgstr "Indianapolis"

#: my-evolution/Locations.h:994
msgid "Indian Springs"
msgstr "Indian Springs"

#: my-evolution/Locations.h:995
msgid "Innsbruck"
msgstr "Innsbruck"

#: my-evolution/Locations.h:996
msgid "International Falls"
msgstr "International Falls"

#: my-evolution/Locations.h:997
msgid "Intracoastal"
msgstr "Intracoastal"

#: my-evolution/Locations.h:998
msgid "Inverness"
msgstr "Inverness"

#: my-evolution/Locations.h:999
msgid "Inyokern"
msgstr "Inyokern"

#: my-evolution/Locations.h:1000
msgid "Iowa"
msgstr "Iowa"

#: my-evolution/Locations.h:1001
msgid "Iowa City"
msgstr "Iowa City"

#: my-evolution/Locations.h:1002
msgid "Iqaluit"
msgstr "Iqaluit"

#: my-evolution/Locations.h:1003
msgid "Iquique/Diego Arac"
msgstr "Iquique/Diego Arac"

#: my-evolution/Locations.h:1004
msgid "Iquitos"
msgstr "Iquitos"

#: my-evolution/Locations.h:1005
msgid "Iraklion"
msgstr "Iraklion"

#: my-evolution/Locations.h:1006
msgid "Iran, Islamic Republic of"
msgstr "Iran, Islamic Republic of"

#: my-evolution/Locations.h:1007
msgid "Ireland"
msgstr "Irland"

#: my-evolution/Locations.h:1008
msgid "Iron Mountain"
msgstr "Iron Mountain"

#: my-evolution/Locations.h:1009
msgid "Ironwood"
msgstr "Ironwood"

#: my-evolution/Locations.h:1010
msgid "Iruma Ab"
msgstr "Iruma Ab"

#: my-evolution/Locations.h:1011
msgid "Islamabad"
msgstr "Islamabad"

#: my-evolution/Locations.h:1012
msgid "Isle of Man"
msgstr "Isle of Man"

#: my-evolution/Locations.h:1013
msgid "Islip"
msgstr "Islip"

#: my-evolution/Locations.h:1014
msgid "Istanbul"
msgstr "Istanbul"

#: my-evolution/Locations.h:1015
msgid "Itaituba"
msgstr "Itaituba"

#: my-evolution/Locations.h:1016
msgid "Italy"
msgstr "Italia"

#: my-evolution/Locations.h:1017
msgid "Ithaca"
msgstr "Ithaca"

#: my-evolution/Locations.h:1018
msgid "Ivano-Frankivsk"
msgstr ""

#: my-evolution/Locations.h:1019
msgid "Iwakuni MCAS"
msgstr "Iwakuni MCAS"

#: my-evolution/Locations.h:1020
msgid "Iwojima"
msgstr "Iwo Jima"

#: my-evolution/Locations.h:1021
msgid "Ixtapa"
msgstr "Ixtapa"

#: my-evolution/Locations.h:1022
msgid "Izmir/Adnan Menderes"
msgstr "Izmir/Adnan Menderes"

#: my-evolution/Locations.h:1023
msgid "Izmir/Cigli"
msgstr "Izmir/Cigli"

#: my-evolution/Locations.h:1024
msgid "Izmit"
msgstr "Izmit"

#: my-evolution/Locations.h:1025
msgid "Izumo Airport"
msgstr "Izumo Airport"

#: my-evolution/Locations.h:1026
msgid "Jackson"
msgstr "Jackson"

#: my-evolution/Locations.h:1027
msgid "Jacksonville"
msgstr "Jacksonville"

#: my-evolution/Locations.h:1028
msgid "Jacksonville-Craig Airport"
msgstr "Jacksonville-Craig Airport"

#: my-evolution/Locations.h:1029
msgid "Jacksonville NAS"
msgstr "Jacksonville NAS"

#: my-evolution/Locations.h:1030
msgid "Jaffrey"
msgstr "Jaffrey"

#: my-evolution/Locations.h:1031
msgid "Jamaica"
msgstr "Jamaica"

#: my-evolution/Locations.h:1032
msgid "Jamestown"
msgstr "Jamestown"

#: my-evolution/Locations.h:1033
msgid "Janesville"
msgstr "Janesville"

#: my-evolution/Locations.h:1034
msgid "Jan Smuts"
msgstr "Jan Smuts"

#: my-evolution/Locations.h:1035
msgid "Japan"
msgstr "Japansk"

#: my-evolution/Locations.h:1036
msgid "Jeddah King Abdul Aziz International Airport"
msgstr "Jeddah King Abdul Aziz International Airport"

#: my-evolution/Locations.h:1037
msgid "Jefferson City"
msgstr "Jefferson City"

#: my-evolution/Locations.h:1038
msgid "Jerez"
msgstr "Jerez"

#: my-evolution/Locations.h:1039
msgid "Jersey"
msgstr "Jersey"

#: my-evolution/Locations.h:1040
msgid "Jinotega"
msgstr "Jinotega"

#: my-evolution/Locations.h:1041
msgid "Johan A. Pengel"
msgstr "Johan A. Pengel"

#: my-evolution/Locations.h:1042
msgid "Johnstown"
msgstr "Johnstown"

#: my-evolution/Locations.h:1043
msgid "Jonesboro"
msgstr "Jonesboro"

#: my-evolution/Locations.h:1044
msgid "Jonkoping"
msgstr "Jonköping"

#: my-evolution/Locations.h:1045
msgid "Joplin"
msgstr "Joplin"

#: my-evolution/Locations.h:1046
msgid "Jordan"
msgstr "Jordan"

#: my-evolution/Locations.h:1047
msgid "Juanjui"
msgstr "Juanjui"

#: my-evolution/Locations.h:1048
msgid "Juan Santamaria"
msgstr "Juan Santamaria"

#: my-evolution/Locations.h:1049
msgid "Juigalpa"
msgstr "Juigalpa"

#: my-evolution/Locations.h:1050
msgid "Jujuy"
msgstr "Jujuy"

#: my-evolution/Locations.h:1051
msgid "Juliaca"
msgstr "Juliaca"

#: my-evolution/Locations.h:1052
msgid "Junction"
msgstr "Junction"

#: my-evolution/Locations.h:1053
msgid "Juneau"
msgstr "Juneau"

#: my-evolution/Locations.h:1054
msgid "Kadena Ab"
msgstr "Kadena Ab"

#: my-evolution/Locations.h:1055
msgid "Kagoshima Airport"
msgstr "Kagoshima Airport"

#: my-evolution/Locations.h:1056
msgid "Kahului"
msgstr "Kahului"

#: my-evolution/Locations.h:1057
msgid "Kailua-Kona"
msgstr "Kailua-Kona"

#: my-evolution/Locations.h:1058
msgid "Kake"
msgstr "Kake"

#: my-evolution/Locations.h:1059
msgid "Kalamata"
msgstr "Kalamata"

#: my-evolution/Locations.h:1060
msgid "Kalamazoo"
msgstr "Kalamazoo"

#: my-evolution/Locations.h:1061
msgid "Kalispell"
msgstr "Kalispell"

#: my-evolution/Locations.h:1062
msgid "Kamigoto"
msgstr "Kamigoto"

#: my-evolution/Locations.h:1063
msgid "Kaneohe"
msgstr "Kaneohe"

#: my-evolution/Locations.h:1064
msgid "Kangshan"
msgstr "Kangshan"

#: my-evolution/Locations.h:1065
msgid "Kanoya Ab"
msgstr "Kanoya Ab"

#: my-evolution/Locations.h:1066
msgid "Kansai International Airport"
msgstr "Kansai International Airport"

#: my-evolution/Locations.h:1067
msgid "Kansas"
msgstr "Kansas"

#: my-evolution/Locations.h:1068
msgid "Kansas City"
msgstr "Kansas City"

#: my-evolution/Locations.h:1069
msgid "Kansas City-Gladstone"
msgstr "Kansas City-Gladstone"

#: my-evolution/Locations.h:1070
msgid "Kaohsiung"
msgstr "Kaohsiung"

#: my-evolution/Locations.h:1071
msgid "Karachi"
msgstr "Karachi"

#: my-evolution/Locations.h:1072
msgid "Karup"
msgstr "Karup"

#: my-evolution/Locations.h:1073
msgid "Kassel-Calden"
msgstr "Kassel-Calden"

#: my-evolution/Locations.h:1074
msgid "Kasumigaura Ab"
msgstr "Kasumigaura Ab"

#: my-evolution/Locations.h:1075
msgid "Kasuminome Ab"
msgstr "Kasuminome Ab"

#: my-evolution/Locations.h:1076
msgid "Katowice"
msgstr "Katowice"

#: my-evolution/Locations.h:1077
msgid "Kavala"
msgstr "Kavala"

#: my-evolution/Locations.h:1078
msgid "Kayseri"
msgstr "Kayseri"

#: my-evolution/Locations.h:1079
msgid "Kazan"
msgstr "Kazan"

#: my-evolution/Locations.h:1080
msgid "Kearney"
msgstr "Kearney"

#: my-evolution/Locations.h:1081
msgid "Keene"
msgstr "Keene"

#: my-evolution/Locations.h:1082
msgid "Kefallinia"
msgstr "Kefallinia"

#: my-evolution/Locations.h:1083
msgid "Keflavik"
msgstr "Keflavik"

#: my-evolution/Locations.h:1084
msgid "Kenai"
msgstr "Kenai"

#: my-evolution/Locations.h:1085
msgid "Kenosha"
msgstr "Kenosha"

#: my-evolution/Locations.h:1086
msgid "Kentucky"
msgstr "Kentucky"

#: my-evolution/Locations.h:1087
msgid "Keokuk"
msgstr "Keokuk"

#: my-evolution/Locations.h:1088
msgid "Kerkira"
msgstr "Kerkira"

#: my-evolution/Locations.h:1089
msgid "Kerman"
msgstr "Kerman"

#: my-evolution/Locations.h:1090
msgid "Ketchikan"
msgstr "Ketchikan"

#: my-evolution/Locations.h:1091
msgid "Key West"
msgstr "Key West"

#: my-evolution/Locations.h:1092
msgid "Key West NAS"
msgstr "Key West NAS"

#: my-evolution/Locations.h:1093
msgid "Khabarovsk"
msgstr "Khabarovsk"

#: my-evolution/Locations.h:1094
msgid "Khamis Mushait"
msgstr "Khamis Mushait"

#: my-evolution/Locations.h:1095
msgid "Kharkiv"
msgstr ""

#: my-evolution/Locations.h:1096
msgid "Kikai Island"
msgstr "Kikai Island"

#: my-evolution/Locations.h:1097
msgid "Killeen"
msgstr "Killeen"

#: my-evolution/Locations.h:1098
msgid "Killeen-Ft Hood"
msgstr "Killeen-Ft Hood"

#: my-evolution/Locations.h:1099
msgid "Killeen-Gray AAF"
msgstr "Killeen-Gray AAF"

#: my-evolution/Locations.h:1100
msgid "King Khaled International Airport"
msgstr "King Khaled International Airport"

#: my-evolution/Locations.h:1101
msgid "Kingman"
msgstr "Kingman"

#: my-evolution/Locations.h:1102
msgid "King Salmon"
msgstr "King Salmon"

#: my-evolution/Locations.h:1103
msgid "Kingston"
msgstr "Kingston"

#: my-evolution/Locations.h:1104
msgid "Kingsville"
msgstr "Kingsville"

#: my-evolution/Locations.h:1105
msgid "Kinloss"
msgstr "Kinloss"

#: my-evolution/Locations.h:1106
msgid "Kinston"
msgstr "Kinston"

#: my-evolution/Locations.h:1107
msgid "Kirkenes"
msgstr "Kirkenes"

#: my-evolution/Locations.h:1108
msgid "Kirksville"
msgstr "Kirksville"

#: my-evolution/Locations.h:1109
msgid "Kiruna"
msgstr "Kiruna"

#: my-evolution/Locations.h:1110
msgid "Kisarazu Ab"
msgstr "Kisarazu Ab"

#: my-evolution/Locations.h:1111
msgid "Kishineu"
msgstr "Kishineu"

#: my-evolution/Locations.h:1112
msgid "Kitakyushu Airport"
msgstr "Kitakyushu Airport"

#: my-evolution/Locations.h:1113
msgid "Klagenfurt"
msgstr "Klagenfurt"

#: my-evolution/Locations.h:1114
msgid "Klamath Falls"
msgstr "Klamath Falls"

#: my-evolution/Locations.h:1115
msgid "Klawock"
msgstr "Klawock"

#: my-evolution/Locations.h:1116
msgid "Kleine Brogel"
msgstr "Kleine Brogel"

#: my-evolution/Locations.h:1117
msgid "Kliningrad"
msgstr "Kliningrad"

#: my-evolution/Locations.h:1118
msgid "Knoxville"
msgstr "Knoxville"

#: my-evolution/Locations.h:1119
msgid "Knoxville-Downtown"
msgstr "Knoxville-Downtown"

#: my-evolution/Locations.h:1120
msgid "Kobenhavn/Kastrup"
msgstr "København/Kastrup"

#: my-evolution/Locations.h:1121
msgid "Kobenhavn/Roskilde"
msgstr "København/Roskilde"

#: my-evolution/Locations.h:1122
msgid "Kochi Airport"
msgstr "Kochi Airport"

#: my-evolution/Locations.h:1123
msgid "Kodiak"
msgstr "Kodiak"

#: my-evolution/Locations.h:1124
msgid "Kogalniceanu"
msgstr "Kogalniceanu"

#: my-evolution/Locations.h:1125
msgid "Kogalym"
msgstr "Kogalym"

#: my-evolution/Locations.h:1126
msgid "Koksijde"
msgstr "Koksijde"

#: my-evolution/Locations.h:1127
msgid "Kolding/Vandrup"
msgstr "Kolding/Vandrup"

#: my-evolution/Locations.h:1128
msgid "Koln/Bonn"
msgstr "Köln/Bonn"

#: my-evolution/Locations.h:1129
msgid "Komatsu Ab"
msgstr "Komatsu Ab"

#: my-evolution/Locations.h:1130
msgid "Komatsujima Ab"
msgstr "Komatsujima Ab"

#: my-evolution/Locations.h:1131
msgid "Konya"
msgstr "Konya"

#: my-evolution/Locations.h:1132
msgid "Korea, Democratic People's Republic of"
msgstr "Korea, Democratic People's Republic of"

#: my-evolution/Locations.h:1133
msgid "Korea, Republic of"
msgstr "Korea, Republic of"

#: my-evolution/Locations.h:1134
msgid "Kos"
msgstr "Kos"

#: my-evolution/Locations.h:1135
msgid "Kotzebue"
msgstr "Kotzebue"

#: my-evolution/Locations.h:1136
msgid "Kozani"
msgstr "Kozani"

#: my-evolution/Locations.h:1137
msgid "Krakow"
msgstr "Krakow"

#: my-evolution/Locations.h:1138
msgid "Krasnodar"
msgstr "Krasnodar"

#: my-evolution/Locations.h:1139
msgid "Krasnoyarsk"
msgstr "Krasnoyarsk"

#: my-evolution/Locations.h:1140
msgid "Kristiansand/Kjevik"
msgstr "Kristiansand/Kjevik"

#: my-evolution/Locations.h:1141
msgid "Kristiansund/Kvernberget"
msgstr "Kristiansund/Kvernberget"

#: my-evolution/Locations.h:1142
msgid "Kryviy Rig/Lozovatka"
msgstr ""

#: my-evolution/Locations.h:1143
msgid "Kumamoto Airport"
msgstr "Kumamoto Airport"

#: my-evolution/Locations.h:1144
msgid "Kunming"
msgstr "Kunming"

#: my-evolution/Locations.h:1145
msgid "Kushiro Airport"
msgstr "Kushiro Airport"

#: my-evolution/Locations.h:1146
msgid "Kuwait"
msgstr "Kuwait"

#: my-evolution/Locations.h:1147
msgid "Kyyiv/Boryspil"
msgstr ""

#: my-evolution/Locations.h:1148
msgid "Kyyiv/Zhulyany"
msgstr ""

#: my-evolution/Locations.h:1149
msgid "La Ceiba"
msgstr "La Ceiba"

#: my-evolution/Locations.h:1150
msgid "Laconia"
msgstr "Laconia"

#: my-evolution/Locations.h:1151
msgid "La Coruna"
msgstr "La Coruna"

#: my-evolution/Locations.h:1152
msgid "La Crosse"
msgstr "La Crosse"

#: my-evolution/Locations.h:1153
msgid "La Esperanza"
msgstr "La Esperanza"

#: my-evolution/Locations.h:1154
msgid "Lafayette"
msgstr "Lafayette"

#: my-evolution/Locations.h:1155
msgid "La Grande"
msgstr "La Grande"

#: my-evolution/Locations.h:1156
msgid "Lahaina"
msgstr "Lahaina"

#: my-evolution/Locations.h:1157
msgid "Lahore"
msgstr "Lahore"

#: my-evolution/Locations.h:1158
msgid "Lajes"
msgstr "Lajes"

#: my-evolution/Locations.h:1159
msgid "La Junta"
msgstr "La Junta"

#: my-evolution/Locations.h:1160
msgid "Lake Charles"
msgstr "Lake Charles"

#: my-evolution/Locations.h:1161
msgid "Lake Hood"
msgstr "Lake Hood"

#: my-evolution/Locations.h:1162
msgid "Lakehurst"
msgstr "Lakehurst"

#: my-evolution/Locations.h:1163
msgid "Lakeland"
msgstr "Lakeland"

#: my-evolution/Locations.h:1164
msgid "Lake Tahoe"
msgstr "Lake Tahoe"

#: my-evolution/Locations.h:1165
msgid "Lakeview"
msgstr "Lakeview"

#: my-evolution/Locations.h:1166
msgid "Lamar"
msgstr "Lamar"

#: my-evolution/Locations.h:1167
msgid "La Mesa"
msgstr "La Mesa"

#: my-evolution/Locations.h:1168
msgid "Lamezia"
msgstr "Lamezia"

#: my-evolution/Locations.h:1169
msgid "Lamoni"
msgstr "Lamoni"

#: my-evolution/Locations.h:1170
msgid "Lampedusa"
msgstr "Lampedusa"

#: my-evolution/Locations.h:1171
msgid "Lanai"
msgstr "Lanai"

#: my-evolution/Locations.h:1172
msgid "Lancaster"
msgstr "Lancaster"

#: my-evolution/Locations.h:1173
msgid "Lander"
msgstr "Lander"

#: my-evolution/Locations.h:1174
msgid "Langebaanweg"
msgstr "Langebaanweg"

#: my-evolution/Locations.h:1175
msgid "Langley AFB"
msgstr "Langley AFB"

#: my-evolution/Locations.h:1176
msgid "Lannion"
msgstr "Lannion"

#: my-evolution/Locations.h:1177
msgid "Lansing"
msgstr "Lansing"

#: my-evolution/Locations.h:1178
msgid "Lanzhou"
msgstr "Lanzhou"

#: my-evolution/Locations.h:1179
msgid "La Paz"
msgstr "La Paz"

#: my-evolution/Locations.h:1180
msgid "La Paz/Alto"
msgstr "La Paz/Alto"

#: my-evolution/Locations.h:1181
msgid "Laramie"
msgstr "Laramie"

#: my-evolution/Locations.h:1182
msgid "Laredo"
msgstr "Laredo"

#: my-evolution/Locations.h:1183
msgid "Larnaka"
msgstr "Larnaka"

#: my-evolution/Locations.h:1184
msgid "La Romana"
msgstr "La Romana"

#: my-evolution/Locations.h:1185
msgid "Las Americas"
msgstr "Las Americas"

#: my-evolution/Locations.h:1186
msgid "Las Tunas"
msgstr "Las Tunas"

#: my-evolution/Locations.h:1187
msgid "Las Vegas"
msgstr "Las Vegas"

#: my-evolution/Locations.h:1188
msgid "Latina"
msgstr "Latina"

#: my-evolution/Locations.h:1189
msgid "Latrobe"
msgstr "Latrobe"

#: my-evolution/Locations.h:1190
msgid "Latvia"
msgstr "Latvia"

#: my-evolution/Locations.h:1191
msgid "Laughlin"
msgstr "Laughlin"

#: my-evolution/Locations.h:1192
msgid "Laurel"
msgstr "Laurel"

#: my-evolution/Locations.h:1193
msgid "La Verne"
msgstr "La Verne"

#: my-evolution/Locations.h:1194
msgid "Lawrence"
msgstr "Lawrence"

#: my-evolution/Locations.h:1195
msgid "Lawton"
msgstr "Lawton"

#: my-evolution/Locations.h:1196
msgid "Leadville"
msgstr "Leadville"

#: my-evolution/Locations.h:1197
msgid "Learmouth"
msgstr "Learmouth"

#: my-evolution/Locations.h:1198
msgid "Lebanon"
msgstr "Libanon"

#: my-evolution/Locations.h:1199
msgid "Lecce"
msgstr "Lecce"

#: my-evolution/Locations.h:1200
msgid "Leeds and Bradford"
msgstr "Leeds and Bradford"

#: my-evolution/Locations.h:1201
msgid "Leesburg"
msgstr "Leesburg"

#: my-evolution/Locations.h:1202
msgid "Leeuwarden"
msgstr "Leeuwarden"

#: my-evolution/Locations.h:1203
msgid "Le Havre-Octeville"
msgstr "Le Havre-Octeville"

#: my-evolution/Locations.h:1204
msgid "Leipzig-Schkeuditz"
msgstr "Leipzig-Schkeuditz"

#: my-evolution/Locations.h:1205
msgid "Leknes"
msgstr "Leknes"

#: my-evolution/Locations.h:1206
msgid "Le Mans"
msgstr "Le Mans"

#: my-evolution/Locations.h:1207
msgid "Le Marine"
msgstr "Le Marine"

#: my-evolution/Locations.h:1208
msgid "Lemmon"
msgstr "Lemmon"

#: my-evolution/Locations.h:1209
msgid "Lemoore"
msgstr "Lemoore"

#: my-evolution/Locations.h:1210
msgid "Leticia/Vasquez Cobo"
msgstr "Leticia/Vasquez Cobo"

#: my-evolution/Locations.h:1211
msgid "Le Touquet"
msgstr "Le Touquet"

#: my-evolution/Locations.h:1212
msgid "Leuchars"
msgstr "Leuchars"

#: my-evolution/Locations.h:1213
msgid "Lewisburg"
msgstr "Lewisburg"

#: my-evolution/Locations.h:1214
msgid "Lewiston"
msgstr "Lewiston"

#: my-evolution/Locations.h:1215
msgid "Lewistown"
msgstr "Lewistown"

#: my-evolution/Locations.h:1216
msgid "Lexington"
msgstr "Lexington"

#: my-evolution/Locations.h:1217
msgid "Liberal"
msgstr "Liberal"

#: my-evolution/Locations.h:1218
msgid "Liberia"
msgstr "Liberia"

#: my-evolution/Locations.h:1219
msgid "Libya"
msgstr "Libya"

#: my-evolution/Locations.h:1220
msgid "Lichtenburg"
msgstr "Lichtenburg"

#: my-evolution/Locations.h:1221
msgid "Lidgerwood"
msgstr "Lidgerwood"

#: my-evolution/Locations.h:1222
msgid "Liege"
msgstr "Liege"

#: my-evolution/Locations.h:1223
msgid "Lihue"
msgstr "Lihue"

#: my-evolution/Locations.h:1224
msgid "Lille-Lesquin"
msgstr "Lille-Lesquin"

#: my-evolution/Locations.h:1225
msgid "Lima-Callao"
msgstr "Lima-Callao"

#: my-evolution/Locations.h:1226
msgid "Limnos"
msgstr "Limnos"

#: my-evolution/Locations.h:1227
msgid "Limoges"
msgstr "Limoges"

#: my-evolution/Locations.h:1228
msgid "Limon"
msgstr "Limon"

#: my-evolution/Locations.h:1229
msgid "Lincoln"
msgstr "Lincoln"

#: my-evolution/Locations.h:1230
msgid "Linz"
msgstr "Linz"

#: my-evolution/Locations.h:1231
msgid "Lisboa"
msgstr "Lisboa"

#: my-evolution/Locations.h:1232
msgid "Lista"
msgstr "Lista"

#: my-evolution/Locations.h:1233
msgid "Litchfield"
msgstr "Litchfield"

#: my-evolution/Locations.h:1234
msgid "Lithuania"
msgstr "Litauen"

#: my-evolution/Locations.h:1235
msgid "Little Rock"
msgstr "Little Rock"

#: my-evolution/Locations.h:1236
msgid "Little Rock AFB"
msgstr "Little Rock AFB"

#: my-evolution/Locations.h:1237
msgid "Livermore"
msgstr "Livermore"

#: my-evolution/Locations.h:1238
msgid "Liverpool"
msgstr "Liverpool"

#: my-evolution/Locations.h:1239
msgid "Livingston"
msgstr "Livingston"

#: my-evolution/Locations.h:1240
msgid "Ljubljana"
msgstr "Ljubljana"

#: my-evolution/Locations.h:1241
msgid "Logan"
msgstr "Logan"

#: my-evolution/Locations.h:1242
msgid "Lolland Falster"
msgstr "Lolland Falster"

#: my-evolution/Locations.h:1243
msgid "Lompoc"
msgstr "Lompoc"

#: my-evolution/Locations.h:1244
msgid "London"
msgstr "London"

#: my-evolution/Locations.h:1245
msgid "London/City"
msgstr "London/City"

#: my-evolution/Locations.h:1246
msgid "London/Gatwick"
msgstr "London/Gatwick"

#: my-evolution/Locations.h:1247
msgid "London/Heathrow"
msgstr "London/Heathrow"

#: my-evolution/Locations.h:1248
msgid "London/Stansted"
msgstr "London/Stansted"

#: my-evolution/Locations.h:1249
msgid "Londrina"
msgstr "Londrina"

#: my-evolution/Locations.h:1250
msgid "Lone Rock"
msgstr "Lone Rock"

#: my-evolution/Locations.h:1251
msgid "Long Beach"
msgstr "Long Beach"

#: my-evolution/Locations.h:1252
msgid "Longview"
msgstr "Longview"

#: my-evolution/Locations.h:1253
msgid "Lorient-Lann-Bihoue"
msgstr "Lorient-Lann-Bihoue"

#: my-evolution/Locations.h:1254
msgid "Los Alamos"
msgstr "Los Alamos"

#: my-evolution/Locations.h:1255
msgid "Los Angeles"
msgstr "Los Angeles"

#: my-evolution/Locations.h:1256
msgid "Los Mochis"
msgstr "Los Mochis"

#: my-evolution/Locations.h:1257
msgid "Lossiemouth"
msgstr "Lossiemouth"

#: my-evolution/Locations.h:1258
msgid "Louisville"
msgstr "Louisville"

#: my-evolution/Locations.h:1259
msgid "Louisville-Standiford Field"
msgstr "Louisville-Standiford Field"

#: my-evolution/Locations.h:1260
msgid "Lousiana"
msgstr "Lousiana"

#: my-evolution/Locations.h:1261
msgid "Lovelock"
msgstr "Lovelock"

#: my-evolution/Locations.h:1262
msgid "Lubbock"
msgstr "Lubbock"

#: my-evolution/Locations.h:1263
msgid "Lubeck-Blankensee"
msgstr "Lubeck-Blankensee"

#: my-evolution/Locations.h:1264
msgid "Lufkin"
msgstr "Lufkin"

#: my-evolution/Locations.h:1265
msgid "Lugano"
msgstr "Lugano"

#: my-evolution/Locations.h:1266
msgid "Luqa"
msgstr "Luqa"

#: my-evolution/Locations.h:1267
msgid "Luton"
msgstr "Luton"

#: my-evolution/Locations.h:1268
msgid "Luxembourg"
msgstr "Luxembourg"

#: my-evolution/Locations.h:1269
msgid "Luxeuil"
msgstr "Luxeuil"

#: my-evolution/Locations.h:1270
msgid "Luxor"
msgstr "Luxor"

#: my-evolution/Locations.h:1271
#, fuzzy
msgid "Lviv"
msgstr "Latvia"

#: my-evolution/Locations.h:1272
msgid "Lynchburg"
msgstr "Lynchburg"

#: my-evolution/Locations.h:1273
msgid "Lyneham"
msgstr "Lyneham"

#: my-evolution/Locations.h:1274
msgid "Lyon-Bron"
msgstr "Lyon-Bron"

#: my-evolution/Locations.h:1275
msgid "Lyon-Satolas"
msgstr "Lyon-Satolas"

#: my-evolution/Locations.h:1276
msgid "Maastricht"
msgstr "Maastricht"

#: my-evolution/Locations.h:1277
msgid "Macae"
msgstr "Macae"

#: my-evolution/Locations.h:1278
msgid "Macapa"
msgstr "Macapa"

#: my-evolution/Locations.h:1279
msgid "Maceio"
msgstr "Maceio"

#: my-evolution/Locations.h:1280
msgid "Macon"
msgstr "Macon"

#: my-evolution/Locations.h:1281
msgid "Madinah"
msgstr "Madinah"

#: my-evolution/Locations.h:1282
msgid "Madison"
msgstr "Madison"

#: my-evolution/Locations.h:1283
msgid "Madras/Minambakkam"
msgstr "Madras/Minambakkam"

#: my-evolution/Locations.h:1284
msgid "Madrid (Barajas)"
msgstr "Madrid (Barajas)"

#: my-evolution/Locations.h:1285
msgid "Madrid (Cuatro Vientos)"
msgstr "Madrid (Cuatro Vientos)"

#: my-evolution/Locations.h:1286
msgid "Magadan"
msgstr "Magadan"

#: my-evolution/Locations.h:1287
msgid "Magdalena"
msgstr "Magdalena"

#: my-evolution/Locations.h:1288
msgid "Maine"
msgstr "Maine"

#: my-evolution/Locations.h:1289
msgid "Makhachkala"
msgstr "Makhachkala"

#: my-evolution/Locations.h:1290
msgid "Makkah"
msgstr "Makkah"

#: my-evolution/Locations.h:1291
msgid "Makung"
msgstr "Makung"

#: my-evolution/Locations.h:1292
msgid "Malad City"
msgstr "Malad City"

#: my-evolution/Locations.h:1293
msgid "Malaga"
msgstr "Malaga"

#: my-evolution/Locations.h:1294
msgid "Malatya"
msgstr "Malatya"

#: my-evolution/Locations.h:1295
msgid "Maldonado/Punta Est"
msgstr "Maldonado/Punta Est"

#: my-evolution/Locations.h:1296
msgid "Malmo/Sturup"
msgstr "Malmö/Sturup"

#: my-evolution/Locations.h:1297
msgid "Malta"
msgstr "Malta"

#: my-evolution/Locations.h:1298
msgid "Mammoth Lakes"
msgstr "Mammoth Lakes"

#: my-evolution/Locations.h:1299
msgid "Managua"
msgstr "Managua"

#: my-evolution/Locations.h:1300
msgid "Manassas"
msgstr "Manassas"

#: my-evolution/Locations.h:1301
msgid "Manaus"
msgstr "Manaus"

#: my-evolution/Locations.h:1302
msgid "Manchester"
msgstr "Manchester"

#: my-evolution/Locations.h:1303
msgid "Mangilsan Ab"
msgstr "Mangilsan Ab"

#: my-evolution/Locations.h:1304
msgid "Manhattan"
msgstr "Manhattan"

#: my-evolution/Locations.h:1305
msgid "Manisa"
msgstr "Manisa"

#: my-evolution/Locations.h:1306
msgid "Manistee"
msgstr "Manistee"

#: my-evolution/Locations.h:1307
msgid "Manitoba"
msgstr "Manitoba"

#: my-evolution/Locations.h:1308
msgid "Manitowoc"
msgstr "Manitowoc"

#: my-evolution/Locations.h:1309
msgid "Mankato"
msgstr "Mankato"

#: my-evolution/Locations.h:1310
msgid "Mansfield"
msgstr "Mansfield"

#: my-evolution/Locations.h:1311
msgid "Manta"
msgstr "Manta"

#: my-evolution/Locations.h:1312
msgid "Manzanillo"
msgstr "Manzanillo"

#: my-evolution/Locations.h:1313
msgid "Maraba"
msgstr "Maraba"

#: my-evolution/Locations.h:1314
msgid "Maracaibo-La Chinita"
msgstr "Maracaibo-La Chinita"

#: my-evolution/Locations.h:1315
msgid "Maracay-B.A.Sucre"
msgstr "Maracay-B.A.Sucre"

#: my-evolution/Locations.h:1316
msgid "Marathon"
msgstr "Marathon"

#: my-evolution/Locations.h:1317
msgid "Mar Del Plata"
msgstr "Mar Del Plata"

#: my-evolution/Locations.h:1318
msgid "Margarita"
msgstr "Margarita"

#: my-evolution/Locations.h:1319
msgid "Marianna"
msgstr "Marianna"

#: my-evolution/Locations.h:1320
msgid "Marib"
msgstr "Marib"

#: my-evolution/Locations.h:1321
msgid "Maribor"
msgstr "Maribor"

#: my-evolution/Locations.h:1322
msgid "Marietta"
msgstr "Marietta"

#: my-evolution/Locations.h:1323
msgid "Marino di Ravenna"
msgstr "Marino di Ravenna"

#: my-evolution/Locations.h:1324
msgid "Marion"
msgstr "Marion"

#: my-evolution/Locations.h:1325
msgid "Marion-Wytheville"
msgstr "Marion-Wytheville"

#: my-evolution/Locations.h:1326
msgid "Marquette"
msgstr "Marquette"

#: my-evolution/Locations.h:1327
msgid "Marseille-Provence"
msgstr "Marseille-Provence"

#: my-evolution/Locations.h:1328
msgid "Marseilles"
msgstr "Marseilles"

#: my-evolution/Locations.h:1329
msgid "Marshall"
msgstr "Marshall"

#: my-evolution/Locations.h:1330
msgid "Marshalltown"
msgstr "Marshalltown"

#: my-evolution/Locations.h:1331
msgid "Marshfield"
msgstr "Marshfield"

#: my-evolution/Locations.h:1332
msgid "Marte"
msgstr "Marte"

#: my-evolution/Locations.h:1333
msgid "Marthas Vineyard"
msgstr "Marthas Vineyard"

#: my-evolution/Locations.h:1334
msgid "Martinsburg"
msgstr "Martinsburg"

#: my-evolution/Locations.h:1335
msgid "Martinsville"
msgstr "Martinsville"

#: my-evolution/Locations.h:1336
msgid "Maryland"
msgstr "Maryland"

#: my-evolution/Locations.h:1337
msgid "Marysville"
msgstr "Marysville"

#: my-evolution/Locations.h:1338
msgid "Marysville-Beale AFB"
msgstr "Marysville-Beale AFB"

#: my-evolution/Locations.h:1339
msgid "Mashhad"
msgstr "Mashhad"

#: my-evolution/Locations.h:1340
msgid "Masirah"
msgstr "Masirah"

#: my-evolution/Locations.h:1341
msgid "Mason City"
msgstr "Mason City"

#: my-evolution/Locations.h:1342
msgid "Massachusetts"
msgstr "Massachusetts"

#: my-evolution/Locations.h:1343
msgid "Massena"
msgstr "Massena"

#: my-evolution/Locations.h:1344
msgid "Matamoros"
msgstr "Matamoros"

#: my-evolution/Locations.h:1345
msgid "Matsumoto Airport"
msgstr "Matsumoto Airport"

#: my-evolution/Locations.h:1346
msgid "Matsushima Ab"
msgstr "Matsushima Ab"

#: my-evolution/Locations.h:1347
msgid "Matsuyama Airport"
msgstr "Matsuyama Airport"

#: my-evolution/Locations.h:1348
msgid "Mattoon"
msgstr "Mattoon"

#: my-evolution/Locations.h:1349
msgid "Mayaguez"
msgstr "Mayaguez"

#: my-evolution/Locations.h:1350
msgid "Mayport"
msgstr "Mayport"

#: my-evolution/Locations.h:1351
msgid "Mazatlan"
msgstr "Mazatlan"

#: my-evolution/Locations.h:1352
msgid "Mazu"
msgstr "Mazu"

#: my-evolution/Locations.h:1353
msgid "McAlester"
msgstr "McAlester"

#: my-evolution/Locations.h:1354
msgid "McAllen"
msgstr "McAllen"

#: my-evolution/Locations.h:1355
msgid "McCall"
msgstr "McCall"

#: my-evolution/Locations.h:1356
msgid "McCarthy"
msgstr "McCarthy"

#: my-evolution/Locations.h:1357
msgid "McClellan"
msgstr "McClellan"

#: my-evolution/Locations.h:1358
msgid "McComb"
msgstr "McComb"

#: my-evolution/Locations.h:1359
msgid "McCook"
msgstr "McCook"

#: my-evolution/Locations.h:1360
msgid "McGrath"
msgstr "McGrath"

#: my-evolution/Locations.h:1361
msgid "Mc Gregor"
msgstr "Mc Gregor"

#: my-evolution/Locations.h:1362
msgid "Meacham"
msgstr "Meacham"

#: my-evolution/Locations.h:1363
msgid "Medford"
msgstr "Medford"

#: my-evolution/Locations.h:1364
msgid "Medicine Lodge"
msgstr "Medicine Lodge"

#: my-evolution/Locations.h:1365
msgid "Mehamn"
msgstr "Mehamn"

#: my-evolution/Locations.h:1366
msgid "Mekoryuk"
msgstr "Mekoryuk"

#: my-evolution/Locations.h:1367
msgid "Melbourne"
msgstr "Melbourne"

#: my-evolution/Locations.h:1368
msgid "Melfa"
msgstr "Melfa"

#: my-evolution/Locations.h:1369
msgid "Melilla"
msgstr "Melilla"

#: my-evolution/Locations.h:1370
msgid "Memambetsu Airport"
msgstr "Memambetsu Airport"

#: my-evolution/Locations.h:1371
msgid "Memphis"
msgstr "Memphis"

#: my-evolution/Locations.h:1372
msgid "Memphis-NAS"
msgstr "Memphis-NAS"

#: my-evolution/Locations.h:1373
msgid "Mendoza"
msgstr "Mendoza"

#: my-evolution/Locations.h:1374
msgid "Mene Grande"
msgstr "Mene Grande"

#: my-evolution/Locations.h:1375
msgid "Menominee"
msgstr "Menominee"

#: my-evolution/Locations.h:1376
msgid "Menorca"
msgstr "Menorca"

#: my-evolution/Locations.h:1377
msgid "Merced"
msgstr "Merced"

#: my-evolution/Locations.h:1378
msgid "Merida"
msgstr "Merida"

#: my-evolution/Locations.h:1379
msgid "Meridian"
msgstr "Meridian"

#: my-evolution/Locations.h:1380
msgid "Meridian-Lauderdale"
msgstr "Meridian-Lauderdale"

#: my-evolution/Locations.h:1381
msgid "Merril Field"
msgstr "Merril Field"

#: my-evolution/Locations.h:1382
msgid "Mersa Matruh"
msgstr "Mersa Matruh"

#: my-evolution/Locations.h:1383
msgid "Mesa-Falcon Field"
msgstr "Mesa-Falcon Field"

#: my-evolution/Locations.h:1384
msgid "Metabaru Ab"
msgstr "Metabaru Ab"

#: my-evolution/Locations.h:1385
msgid "Metz-Frescaty"
msgstr "Metz-Frescaty"

#: my-evolution/Locations.h:1386
msgid "Mexicali"
msgstr "Mexicali"

#: my-evolution/Locations.h:1387
msgid "Mexico"
msgstr "Mexico"

#: my-evolution/Locations.h:1388
msgid "Miami"
msgstr "Miami"

#: my-evolution/Locations.h:1389
msgid "Miami-Kendall"
msgstr "Miami-Kendall"

#: my-evolution/Locations.h:1390
msgid "Miami-Opa Locka"
msgstr "Miami-Opa Locka"

#: my-evolution/Locations.h:1391
msgid "Michigan"
msgstr "Michigan"

#: my-evolution/Locations.h:1392
msgid "Middle East"
msgstr "Middle East"

#: my-evolution/Locations.h:1393
msgid "Middleton Island"
msgstr "Middleton Island"

#: my-evolution/Locations.h:1394
msgid "Middletown"
msgstr "Middletown"

#: my-evolution/Locations.h:1395
msgid "Midland"
msgstr "Midland"

#: my-evolution/Locations.h:1396
msgid "Miho Ab"
msgstr "Miho Ab"

#: my-evolution/Locations.h:1397
msgid "Milano/Linate"
msgstr "Milano/Linate"

#: my-evolution/Locations.h:1398
msgid "Milano/Malpensa"
msgstr "Milano/Malpensa"

#: my-evolution/Locations.h:1399
msgid "Miles City"
msgstr "Miles City"

#: my-evolution/Locations.h:1400
msgid "Milford"
msgstr "Milford"

#: my-evolution/Locations.h:1401
msgid "Millinocket"
msgstr "Millinocket"

#: my-evolution/Locations.h:1402
msgid "Millville"
msgstr "Millville"

#: my-evolution/Locations.h:1403
msgid "Milton"
msgstr "Milton"

#: my-evolution/Locations.h:1404
msgid "Milwaukee"
msgstr "Milwaukee"

#: my-evolution/Locations.h:1405
msgid "Milwaukee-Timmerman"
msgstr "Milwaukee-Timmerman"

#: my-evolution/Locations.h:1406
msgid "Minamitorishima"
msgstr "Minamitorishima"

#: my-evolution/Locations.h:1407
msgid "Minatitlan"
msgstr "Minatitlan"

#: my-evolution/Locations.h:1408
msgid "Minchumina"
msgstr "Minchumina"

#: my-evolution/Locations.h:1409
msgid "Mineralnye Vody"
msgstr "Mineralnye Vody"

#: my-evolution/Locations.h:1410
msgid "Mineral Wells"
msgstr "Mineral Wells"

#: my-evolution/Locations.h:1411
msgid "Minneapolis"
msgstr "Minneapolis"

#: my-evolution/Locations.h:1412
msgid "Minneapolis [2]"
msgstr "Minneapolis [2]"

#: my-evolution/Locations.h:1413
msgid "Minneapolis [3]"
msgstr "Minneapolis [3]"

#: my-evolution/Locations.h:1414
msgid "Minnesota"
msgstr "Minnesota"

#: my-evolution/Locations.h:1415
msgid "Minocqua"
msgstr "Minocqua"

#: my-evolution/Locations.h:1416
msgid "Minot"
msgstr "Minot"

#: my-evolution/Locations.h:1417
msgid "Minot AFB"
msgstr "Minot AFB"

#: my-evolution/Locations.h:1418
msgid "Misawa Ab"
msgstr "Misawa Ab"

#: my-evolution/Locations.h:1419
msgid "Mississippi"
msgstr "Mississippi"

#: my-evolution/Locations.h:1420
msgid "Missoula"
msgstr "Missoula"

#: my-evolution/Locations.h:1421
msgid "Missouri"
msgstr "Missouri"

#: my-evolution/Locations.h:1422
msgid "Mitchell"
msgstr "Mitchell"

#: my-evolution/Locations.h:1423
msgid "Mitilini"
msgstr "Mitilini"

#: my-evolution/Locations.h:1424
msgid "Miyakejima Airport"
msgstr "Miyakejima Airport"

#: my-evolution/Locations.h:1425
msgid "Miyazaki Airport"
msgstr "Miyazaki Airport"

#: my-evolution/Locations.h:1426
msgid "Moa"
msgstr "Moa"

#: my-evolution/Locations.h:1427
msgid "Mobile Downtown"
msgstr "Mobile Downtown"

#: my-evolution/Locations.h:1428
msgid "Mobile Regional Airport"
msgstr "Mobile Regional Airport"

#: my-evolution/Locations.h:1429
msgid "Mobridge"
msgstr "Mobridge"

#: my-evolution/Locations.h:1430
msgid "Modesto"
msgstr "Modesto"

#: my-evolution/Locations.h:1431
msgid "Mo I Rana"
msgstr "Mo I Rana"

#: my-evolution/Locations.h:1432
msgid "Mojave"
msgstr "Mojave"

#: my-evolution/Locations.h:1433
msgid "Molde"
msgstr "Molde"

#: my-evolution/Locations.h:1434
msgid "Moldova"
msgstr "Moldova"

#: my-evolution/Locations.h:1435
msgid "Moline-Quad Cities"
msgstr "Moline-Quad Cities"

#: my-evolution/Locations.h:1436
msgid "Molokai"
msgstr "Molokai"

#: my-evolution/Locations.h:1437
msgid "Mombetsu Airport"
msgstr "Mombetsu Airport"

#: my-evolution/Locations.h:1438
msgid "Monchengladbach"
msgstr "Monchengladbach"

#: my-evolution/Locations.h:1439
msgid "Monclova"
msgstr "Monclova"

#: my-evolution/Locations.h:1440
msgid "Moncton"
msgstr "Moncton"

#: my-evolution/Locations.h:1441
msgid "Monida"
msgstr "Monida"

#: my-evolution/Locations.h:1442
msgid "Monpellier-Mediterrannee"
msgstr "Monpellier-Mediterrannee"

#: my-evolution/Locations.h:1443
msgid "Monroe"
msgstr "Monroe"

#: my-evolution/Locations.h:1444
msgid "Montague"
msgstr "Montague"

#: my-evolution/Locations.h:1445
msgid "Montana"
msgstr "Montana"

#: my-evolution/Locations.h:1446
msgid "Mont-de-Marsan"
msgstr "Mont-de-Marsan"

#: my-evolution/Locations.h:1447
msgid "Monte Argentario"
msgstr "Monte Argentario"

#: my-evolution/Locations.h:1448
msgid "Monte Bisbino"
msgstr "Monte Bisbino"

#: my-evolution/Locations.h:1449
msgid "Monte Calamita"
msgstr "Monte Calamita"

#: my-evolution/Locations.h:1450
msgid "Monte Cimone"
msgstr "Monte Cimone"

#: my-evolution/Locations.h:1451
msgid "Montego Bay"
msgstr "Montego Bay"

#: my-evolution/Locations.h:1452
msgid "Monte Malanotte"
msgstr "Monte Malanotte"

#: my-evolution/Locations.h:1453
msgid "Monterey"
msgstr "Monterey"

#: my-evolution/Locations.h:1454
msgid "Monterrey"
msgstr "Monterrey"

#: my-evolution/Locations.h:1455
msgid "Monte Scuro"
msgstr "Monte Scuro"

#: my-evolution/Locations.h:1456
msgid "Monte Terminillo"
msgstr "Monte Terminillo"

#: my-evolution/Locations.h:1457
msgid "Montevideo/Carrasco"
msgstr "Montevideo/Carrasco"

#: my-evolution/Locations.h:1458
msgid "Montgomery"
msgstr "Montgomery"

#: my-evolution/Locations.h:1459
msgid "Montgomery-Maxwell AFB"
msgstr "Montgomery-Maxwell AFB"

#: my-evolution/Locations.h:1460
msgid "Monticello"
msgstr "Monticello"

#: my-evolution/Locations.h:1461
msgid "Montpelier"
msgstr "Montpelier"

#: my-evolution/Locations.h:1462
msgid "Montreal Dorval"
msgstr "Montreal Dorval"

#: my-evolution/Locations.h:1463
msgid "Montreal Mirabel"
msgstr "Montreal Mirabel"

#: my-evolution/Locations.h:1464
msgid "Montreal Saint-Hubert"
msgstr "Montreal Saint-Hubert"

#: my-evolution/Locations.h:1465
msgid "Montrose"
msgstr "Montrose"

#: my-evolution/Locations.h:1466
msgid "Montrose (2)"
msgstr "Montrose (2)"

#: my-evolution/Locations.h:1467
msgid "Morelia"
msgstr "Morelia"

#: my-evolution/Locations.h:1468
msgid "Morgantown"
msgstr "Morgantown"

#: my-evolution/Locations.h:1469
msgid "Moriarty"
msgstr "Moriarty"

#: my-evolution/Locations.h:1470
msgid "Morocco"
msgstr "Marokko"

#: my-evolution/Locations.h:1471
msgid "Morristown"
msgstr "Morristown"

#: my-evolution/Locations.h:1472
msgid "Moscow Domodedovo"
msgstr "Moskva Domodedovo"

#: my-evolution/Locations.h:1473
msgid "Moscow Sheremetyevo"
msgstr "Moskva Sheremetyevo"

#: my-evolution/Locations.h:1474
msgid "Moses Lake"
msgstr "Moses Lake"

#: my-evolution/Locations.h:1475
msgid "Mosinee"
msgstr "Mosinee"

#: my-evolution/Locations.h:1476
msgid "Mosjoen"
msgstr "Mosjøen"

#: my-evolution/Locations.h:1477
msgid "Moultrie"
msgstr "Moultrie"

#: my-evolution/Locations.h:1478
msgid "Mountain Home"
msgstr "Mountain Home"

#: my-evolution/Locations.h:1479
msgid "Mountain View"
msgstr "Mountain View"

#: my-evolution/Locations.h:1480
msgid "Mount Clemens"
msgstr "Mount Clemens"

#: my-evolution/Locations.h:1481
msgid "Mount Holly"
msgstr "Mount Holly"

#: my-evolution/Locations.h:1482
msgid "Mount Shasta"
msgstr "Mount Shasta"

#: my-evolution/Locations.h:1483
msgid "Mount Vernon"
msgstr "Mount Vernon"

#: my-evolution/Locations.h:1484
msgid "Mount Wilson"
msgstr "Mount Wilson"

#: my-evolution/Locations.h:1485
msgid "Mt Washington"
msgstr "Mt Washington"

#: my-evolution/Locations.h:1486
msgid "Mugla/Dalaman"
msgstr "Mugla/Dalaman"

#: my-evolution/Locations.h:1487
msgid "Muir"
msgstr "Muir"

#: my-evolution/Locations.h:1488
msgid "Mullan"
msgstr "Mullan"

#: my-evolution/Locations.h:1489
msgid "Mullen"
msgstr "Mullen"

#: my-evolution/Locations.h:1490
msgid "Munchen"
msgstr "München"

#: my-evolution/Locations.h:1491
msgid "Muncie"
msgstr "Muncie"

#: my-evolution/Locations.h:1492
msgid "Munster/Osnabruck"
msgstr "Munster/Osnabruck"

#: my-evolution/Locations.h:1493
msgid "Murcia"
msgstr "Murcia"

#: my-evolution/Locations.h:1494
msgid "Murmansk"
msgstr "Murmansk"

#: my-evolution/Locations.h:1495
msgid "Mus"
msgstr "Mus"

#: my-evolution/Locations.h:1496
msgid "Muscatine"
msgstr "Muscatine"

#: my-evolution/Locations.h:1497
msgid "Muscle Shoals"
msgstr "Muscle Shoals"

#: my-evolution/Locations.h:1498
msgid "Muskegon"
msgstr "Muskegon"

#: my-evolution/Locations.h:1499
msgid "Mykonos"
msgstr "Mykonos"

#: my-evolution/Locations.h:1500
msgid "Myrtle Beach"
msgstr "Myrtle Beach"

#: my-evolution/Locations.h:1501
msgid "Nabesna/Devil Mt."
msgstr "Nabesna/Devil Mt."

#: my-evolution/Locations.h:1502
msgid "Nacogdoches"
msgstr "Nacogdoches"

#: my-evolution/Locations.h:1503
msgid "Nagasaki Airport"
msgstr "Nagasaki Airport"

#: my-evolution/Locations.h:1504
msgid "Nagoya Airport"
msgstr "Nagoya Airport"

#: my-evolution/Locations.h:1505
msgid "Nagpur Sonegaon"
msgstr "Nagpur Sonegaon"

#: my-evolution/Locations.h:1506
msgid "Naha Airport"
msgstr "Naha Airport"

#: my-evolution/Locations.h:1507
msgid "Najran"
msgstr "Najran"

#: my-evolution/Locations.h:1508
msgid "Nakashibetsu Airport"
msgstr "Nakashibetsu Airport"

#: my-evolution/Locations.h:1509
msgid "Nalchik"
msgstr "Nalchik"

#: my-evolution/Locations.h:1510
msgid "Namsos"
msgstr "Namsos"

#: my-evolution/Locations.h:1511
msgid "Nancy-Essey"
msgstr "Nancy-Essey"

#: my-evolution/Locations.h:1512
msgid "Nancy-Ochey"
msgstr "Nancy-Ochey"

#: my-evolution/Locations.h:1513
msgid "Nankishirahama Airport"
msgstr "Nankishirahama Airport"

#: my-evolution/Locations.h:1514
msgid "Nanning"
msgstr "Nanning"

#: my-evolution/Locations.h:1515
msgid "Nantes Adlantique"
msgstr "Nantes Adlantique"

#: my-evolution/Locations.h:1516
msgid "Nantucket"
msgstr "Nantucket"

#: my-evolution/Locations.h:1517
msgid "Napa"
msgstr "Napa"

#: my-evolution/Locations.h:1518
msgid "Naples"
msgstr "Napoli"

#: my-evolution/Locations.h:1519
msgid "Napoli"
msgstr "Napoli"

#: my-evolution/Locations.h:1520
msgid "Narvik"
msgstr "Narvik"

#: my-evolution/Locations.h:1521
msgid "Nasa Shuttle"
msgstr "Nasa Shuttle"

#: my-evolution/Locations.h:1522
msgid "Nashua"
msgstr "Nashua"

#: my-evolution/Locations.h:1523
msgid "Nashville"
msgstr "Nashville"

#: my-evolution/Locations.h:1524
msgid "Nassau"
msgstr "Nassau"

#: my-evolution/Locations.h:1525
msgid "Natal"
msgstr "Natal"

#: my-evolution/Locations.h:1526
msgid "Natchez"
msgstr "Natchez"

#: my-evolution/Locations.h:1527
msgid "Nawabshah"
msgstr "Nawabshah"

#: my-evolution/Locations.h:1528
msgid "Nebraska"
msgstr "Nebraska"

#: my-evolution/Locations.h:1529
msgid "Needles"
msgstr "Needles"

#: my-evolution/Locations.h:1530
msgid "Nenana"
msgstr "Nenana"

#: my-evolution/Locations.h:1531
msgid "Netherlands"
msgstr "Nederland"

#: my-evolution/Locations.h:1532
msgid "Neuquen"
msgstr "Neuquen"

#: my-evolution/Locations.h:1533
msgid "Nevada"
msgstr "Nevada"

#: my-evolution/Locations.h:1534
msgid "Newark"
msgstr "Newark"

#: my-evolution/Locations.h:1535
msgid "New Bedford"
msgstr "New Bedford"

#: my-evolution/Locations.h:1536
msgid "New Bern"
msgstr "New Bern"

#: my-evolution/Locations.h:1537
msgid "New Braunfels"
msgstr "New Braunfels"

#: my-evolution/Locations.h:1538
msgid "New Brunswick"
msgstr "New Brunswick"

#: my-evolution/Locations.h:1539
msgid "Newburgh"
msgstr "Newburgh"

#: my-evolution/Locations.h:1540
msgid "Newcastle"
msgstr "Newcastle"

#: my-evolution/Locations.h:1541
msgid "New Delhi/Palam"
msgstr "New Delhi/Palam"

#: my-evolution/Locations.h:1542
msgid "Newfoundland"
msgstr "Newfoundland"

#: my-evolution/Locations.h:1543
msgid "New Hampshire"
msgstr "New Hampshire"

#: my-evolution/Locations.h:1544
msgid "New Haven"
msgstr "New Haven"

#: my-evolution/Locations.h:1545
msgid "New Iberia"
msgstr "New Iberia"

#: my-evolution/Locations.h:1546
msgid "New Jersey"
msgstr "New Jersey"

#: my-evolution/Locations.h:1547
msgid "New Mexico"
msgstr "New Mexico"

#: my-evolution/Locations.h:1548
msgid "New Orleans"
msgstr "New Orleans"

#: my-evolution/Locations.h:1549
msgid "New Orleans-Lakefront"
msgstr "New Orleans-Lakefront"

#: my-evolution/Locations.h:1550
msgid "New Orleans NAS"
msgstr "New Orleans NAS"

#: my-evolution/Locations.h:1551
msgid "Newport"
msgstr "Newport"

#: my-evolution/Locations.h:1552
msgid "Newport News"
msgstr "Newport News"

#: my-evolution/Locations.h:1553
msgid "New Port Richey"
msgstr "New Port Richey"

#: my-evolution/Locations.h:1554
msgid "New River"
msgstr "New River"

#: my-evolution/Locations.h:1555
msgid "New Tokyo International Airport"
msgstr "New Tokyo International Airport"

#: my-evolution/Locations.h:1556
msgid "Newton"
msgstr "Newton"

#: my-evolution/Locations.h:1557
msgid "New York"
msgstr "New York"

#: my-evolution/Locations.h:1558
msgid "New York-JFK Arpt"
msgstr "New York-JFK Arpt"

#: my-evolution/Locations.h:1559
msgid "New York-La Guardia"
msgstr "New York-La Guardia"

#: my-evolution/Locations.h:1560
msgid "New Zealand"
msgstr "Ny Zealand"

#: my-evolution/Locations.h:1561
msgid "Niagara Falls"
msgstr "Niagara Falls"

#: my-evolution/Locations.h:1562
msgid "Nicaragua"
msgstr "Nicaragua"

#: my-evolution/Locations.h:1563
msgid "Nice-Cote d'Azur"
msgstr "Nice-Cote d'Azur"

#: my-evolution/Locations.h:1564
msgid "Niigata Airport"
msgstr "Niigata Airport"

#: my-evolution/Locations.h:1565
msgid "Nimes-Garons"
msgstr "Nimes-Garons"

#: my-evolution/Locations.h:1566
msgid "Nipawin"
msgstr "Nipawin"

#: my-evolution/Locations.h:1567
msgid "Nis"
msgstr "Nis"

#: my-evolution/Locations.h:1568
msgid "Nizhny Novgorod"
msgstr "Nizhny Novgorod"

#: my-evolution/Locations.h:1569
msgid "N Las Vegas"
msgstr "N Las Vegas"

#: my-evolution/Locations.h:1570
msgid "N Myrtle Beach"
msgstr "N Myrtle Beach"

#: my-evolution/Locations.h:1571
msgid "Nogales"
msgstr "Nogales"

#: my-evolution/Locations.h:1572
msgid "Nome"
msgstr "Nome"

#: my-evolution/Locations.h:1573
msgid "Norfolk"
msgstr "Norfolk"

#: my-evolution/Locations.h:1574
msgid "Norfolk Island"
msgstr "Norfolk Island"

#: my-evolution/Locations.h:1575
msgid "Norfolk NAS"
msgstr "Norfolk NAS"

#: my-evolution/Locations.h:1576
msgid "Norrkoping"
msgstr "Norrköping"

#: my-evolution/Locations.h:1577
msgid "North Adams"
msgstr "North Adams"

#: my-evolution/Locations.h:1578
msgid "North Bend"
msgstr "North Bend"

#: my-evolution/Locations.h:1579
msgid "North Carolina"
msgstr "North Carolina"

#: my-evolution/Locations.h:1580
msgid "North Conway"
msgstr "North Conway"

#: my-evolution/Locations.h:1581
msgid "North Dakota"
msgstr "North Dakota"

#: my-evolution/Locations.h:1582
msgid "Northeast Philadelphia"
msgstr "Northeast Philadelphia"

#: my-evolution/Locations.h:1583
msgid "North Kingstown"
msgstr "North Kingstown"

#: my-evolution/Locations.h:1584
msgid "North Platte"
msgstr "North Platte"

#: my-evolution/Locations.h:1585
msgid "Northway"
msgstr "Northway"

#: my-evolution/Locations.h:1586
msgid "Northwest Territories"
msgstr "Northwest Territories"

#: my-evolution/Locations.h:1587
msgid "Norway"
msgstr "Noreg"

#: my-evolution/Locations.h:1588
msgid "Norwich"
msgstr "Norwich"

#: my-evolution/Locations.h:1589
msgid "Norwood"
msgstr "Norwood"

#: my-evolution/Locations.h:1590
msgid "Notodden"
msgstr "Notodden"

#: my-evolution/Locations.h:1591
msgid "Novara/Cameri"
msgstr "Novara/Cameri"

#: my-evolution/Locations.h:1592
msgid "Nova Scotia"
msgstr "Nova Scotia"

#: my-evolution/Locations.h:1593
msgid "Novosibirsk"
msgstr "Novosibirsk"

#: my-evolution/Locations.h:1594
msgid "Nueva Gerona"
msgstr "Nueva Gerona"

#: my-evolution/Locations.h:1595
msgid "Nueva Ocotepeque"
msgstr "Nueva Ocotepeque"

#: my-evolution/Locations.h:1596
msgid "Nuevo Laredo"
msgstr "Nuevo Laredo"

#: my-evolution/Locations.h:1597
msgid "Nurnberg"
msgstr "Nürnberg"

#: my-evolution/Locations.h:1598
msgid "Nyutabaru Ab"
msgstr "Nyutabaru Ab"

#: my-evolution/Locations.h:1599
msgid "Oahu"
msgstr "Oahu"

#: my-evolution/Locations.h:1600
msgid "Oak Harbor"
msgstr "Oak Harbor"

#: my-evolution/Locations.h:1601
msgid "Oakland"
msgstr "Oakland"

#: my-evolution/Locations.h:1602
msgid "Oaxaca"
msgstr "Oaxaca"

#: my-evolution/Locations.h:1603
msgid "Oberpfaffenhofen"
msgstr "Oberpfaffenhofen"

#: my-evolution/Locations.h:1604
msgid "Obihiro Airport"
msgstr "Obihiro Airport"

#: my-evolution/Locations.h:1605
msgid "Ocala"
msgstr "Ocala"

#: my-evolution/Locations.h:1606
msgid "Oceanside"
msgstr "Oceanside"

#: my-evolution/Locations.h:1607
msgid "Odense"
msgstr "Odense"

#: my-evolution/Locations.h:1608
#, fuzzy
msgid "Odesa"
msgstr "Odense"

#: my-evolution/Locations.h:1609
msgid "Oelwen"
msgstr "Oelwen"

#: my-evolution/Locations.h:1610
msgid "Ogden"
msgstr "Ogden"

#: my-evolution/Locations.h:1611
msgid "Ogden-Hill AFB"
msgstr "Ogden-Hill AFB"

#: my-evolution/Locations.h:1612
msgid "Ogdensburg"
msgstr "Ogdensburg"

#: my-evolution/Locations.h:1613
msgid "Ohio"
msgstr "Ohio"

#: my-evolution/Locations.h:1614
msgid "Ohrid"
msgstr "Ohrid"

#: my-evolution/Locations.h:1615
msgid "Oita Airport"
msgstr "Oita Airport"

#: my-evolution/Locations.h:1616
msgid "Ojika Island"
msgstr "Ojika Island"

#: my-evolution/Locations.h:1617
msgid "Okayama Airport"
msgstr "Okayama Airport"

#: my-evolution/Locations.h:1618
msgid "Oki Airport"
msgstr "Oki Airport"

#: my-evolution/Locations.h:1619
msgid "Okinoerabu"
msgstr "Okinoerabu"

#: my-evolution/Locations.h:1620
msgid "Oklahoma"
msgstr "Oklahoma"

#: my-evolution/Locations.h:1621
msgid "Oklahoma City"
msgstr "Oklahoma City"

#: my-evolution/Locations.h:1622
msgid "Oklahoma City-Bethany"
msgstr "Oklahoma City-Bethany"

#: my-evolution/Locations.h:1623
msgid "Oklahoma City-Midwest City"
msgstr "Oklahoma City-Midwest City"

#: my-evolution/Locations.h:1624
msgid "Okushiri Island"
msgstr "Okushiri Island"

#: my-evolution/Locations.h:1625
msgid "Olathe"
msgstr "Olathe"

#: my-evolution/Locations.h:1626
msgid "Olathe/Ind."
msgstr "Olathe/Ind."

#: my-evolution/Locations.h:1627
msgid "Olbia"
msgstr "Olbia"

#: my-evolution/Locations.h:1628
msgid "Olympia"
msgstr "Olympia"

#: my-evolution/Locations.h:1629
msgid "Omaha"
msgstr "Omaha"

#: my-evolution/Locations.h:1630
msgid "Omaha-Bellevue"
msgstr "Omaha-Bellevue"

#: my-evolution/Locations.h:1631
msgid "Omak"
msgstr "Omak"

#: my-evolution/Locations.h:1632
msgid "Oman"
msgstr "Oman"

#: my-evolution/Locations.h:1633
msgid "Ominato Ab"
msgstr "Ominato Ab"

#: my-evolution/Locations.h:1634
msgid "Omsk"
msgstr "Omsk"

#: my-evolution/Locations.h:1635
msgid "O'Neill"
msgstr "O'Neill"

#: my-evolution/Locations.h:1636
msgid "Ontario"
msgstr "Ontario"

#: my-evolution/Locations.h:1637
msgid "Oostende"
msgstr "Oostende"

#: my-evolution/Locations.h:1638
msgid "Oran"
msgstr "Oran"

#: my-evolution/Locations.h:1639
msgid "Oran/Es Senia"
msgstr "Oran/Es Senia"

#: my-evolution/Locations.h:1640
msgid "Orange"
msgstr "Orange"

#: my-evolution/Locations.h:1641
msgid "Orange City"
msgstr "Orange City"

#: my-evolution/Locations.h:1642
msgid "Ord-Sharp"
msgstr "Ord-Sharp"

#: my-evolution/Locations.h:1643
msgid "Oregon"
msgstr "Oregon"

#: my-evolution/Locations.h:1644
msgid "Orenburg"
msgstr "Orenburg"

#: my-evolution/Locations.h:1645
msgid "Orland"
msgstr "Orland"

#: my-evolution/Locations.h:1646
msgid "Orlando"
msgstr "Orlando"

#: my-evolution/Locations.h:1647
msgid "Orlando (Orlando International)"
msgstr "Orlando (Orlando International)"

#: my-evolution/Locations.h:1648
msgid "Orsta-Volda"
msgstr "Ørsta-Volda"

#: my-evolution/Locations.h:1649
msgid "Oruro"
msgstr "Oruro"

#: my-evolution/Locations.h:1650
msgid "Osaka International Airport"
msgstr "Osaka International Airport"

#: my-evolution/Locations.h:1651
msgid "Osan Ab"
msgstr "Osan Ab"

#: my-evolution/Locations.h:1652
msgid "Oscoda"
msgstr "Oscoda"

#: my-evolution/Locations.h:1653
msgid "Oseberg A"
msgstr "Oseberg A"

#: my-evolution/Locations.h:1654
msgid "Oshima Airport"
msgstr "Oshima Airport"

#: my-evolution/Locations.h:1655
msgid "Oshkosh"
msgstr "Oshkosh"

#: my-evolution/Locations.h:1656
msgid "Oslo/Gardenmoen"
msgstr "Oslo/Gardermoen"

#: my-evolution/Locations.h:1657
msgid "Ostrava"
msgstr "Ostrava"

#: my-evolution/Locations.h:1658
msgid "Ottawa"
msgstr "Ottawa"

#: my-evolution/Locations.h:1659
msgid "Ottumwa"
msgstr "Ottumwa"

#: my-evolution/Locations.h:1660
msgid "Owensboro"
msgstr "Owensboro"

#: my-evolution/Locations.h:1661
msgid "Owyhee"
msgstr "Owyhee"

#: my-evolution/Locations.h:1662
msgid "Oxford"
msgstr "Oxford"

#: my-evolution/Locations.h:1663
msgid "Oxnard"
msgstr "Oxnard"

#: my-evolution/Locations.h:1664
msgid "Ozark"
msgstr "Ozark"

#: my-evolution/Locations.h:1665
msgid "Ozuki Ab"
msgstr "Ozuki Ab"

#: my-evolution/Locations.h:1666
msgid "Paderborn-Haxterberg"
msgstr "Paderborn-Haxterberg"

#: my-evolution/Locations.h:1667
msgid "Padova"
msgstr "Padova"

#: my-evolution/Locations.h:1668
msgid "Paducah"
msgstr "Paducah"

#: my-evolution/Locations.h:1669
msgid "Paekado"
msgstr "Paekado"

#: my-evolution/Locations.h:1670
msgid "Paengnyongdo Ab"
msgstr "Paengnyongdo Ab"

#: my-evolution/Locations.h:1671
msgid "Paganella"
msgstr "Paganella"

#: my-evolution/Locations.h:1673
msgid "Pakistan"
msgstr "Pakistan"

#: my-evolution/Locations.h:1674
msgid "Pa Kuei/Bakuai"
msgstr "Pa Kuei/Bakuai"

#: my-evolution/Locations.h:1675
msgid "Palacios"
msgstr "Palacios"

#: my-evolution/Locations.h:1676
msgid "Palermo"
msgstr "Palermo"

#: my-evolution/Locations.h:1677
msgid "Palma de Mallorca"
msgstr "Palma de Mallorca"

#: my-evolution/Locations.h:1678
msgid "Palmdale"
msgstr "Palmdale"

#: my-evolution/Locations.h:1679
msgid "Palmer"
msgstr "Palmer"

#: my-evolution/Locations.h:1680
msgid "Palm Springs"
msgstr "Palm Springs"

#: my-evolution/Locations.h:1681
msgid "Palo Alto"
msgstr "Palo Alto"

#: my-evolution/Locations.h:1682
msgid "Pamplona"
msgstr "Pamplona"

#: my-evolution/Locations.h:1683
msgid "Panama"
msgstr "Panama"

#: my-evolution/Locations.h:1684
msgid "Panama City"
msgstr "Panama City"

#: my-evolution/Locations.h:1685
msgid "Pantelleria"
msgstr "Pantelleria"

#: my-evolution/Locations.h:1686
msgid "Papa"
msgstr "Papa"

#: my-evolution/Locations.h:1687
msgid "Paphos"
msgstr "Paphos"

#: my-evolution/Locations.h:1688
msgid "Paraguay"
msgstr "Paraguay"

#: my-evolution/Locations.h:1689
msgid "Paris"
msgstr "Paris"

#: my-evolution/Locations.h:1690
msgid "Paris/Charles De Gaulle"
msgstr "Paris/Charles De Gaulle"

#: my-evolution/Locations.h:1691
msgid "Paris/Le Bourget"
msgstr "Paris/Le Bourget"

#: my-evolution/Locations.h:1692
msgid "Paris/Orly"
msgstr "Paris/Orly"

#: my-evolution/Locations.h:1693
msgid "Parkersburg"
msgstr "Parkersburg"

#: my-evolution/Locations.h:1694
msgid "Pasco"
msgstr "Pasco"

#: my-evolution/Locations.h:1695
msgid "Paso De Los Libres"
msgstr "Paso De Los Libres"

#: my-evolution/Locations.h:1696
msgid "Paso Robles"
msgstr "Paso Robles"

#: my-evolution/Locations.h:1697
msgid "Passo dei Giovi"
msgstr "Passo dei Giovi"

#: my-evolution/Locations.h:1698
msgid "Passo della Cisa"
msgstr "Passo della Cisa"

#: my-evolution/Locations.h:1699
msgid "Passo Resia"
msgstr "Passo Resia"

#: my-evolution/Locations.h:1700
msgid "Passo Rolle"
msgstr "Passo Rolle"

#: my-evolution/Locations.h:1701
msgid "Patna"
msgstr "Patna"

#: my-evolution/Locations.h:1702
msgid "Patterson"
msgstr "Patterson"

#: my-evolution/Locations.h:1703
msgid "Patuxent River"
msgstr "Patuxent River"

#: my-evolution/Locations.h:1704
msgid "Pau/Pyrenees"
msgstr "Pau/Pyrenees"

#: my-evolution/Locations.h:1705
msgid "Paxson"
msgstr "Paxson"

#: my-evolution/Locations.h:1706
msgid "Paysandu"
msgstr "Paysandu"

#: my-evolution/Locations.h:1707
msgid "Payson"
msgstr "Payson"

#: my-evolution/Locations.h:1708
msgid "Pellston"
msgstr "Pellston"

#: my-evolution/Locations.h:1709
msgid "Pelotas"
msgstr "Pelotas"

#: my-evolution/Locations.h:1710
msgid "Pendleton"
msgstr "Pendleton"

#: my-evolution/Locations.h:1711
msgid "Pennsylvania"
msgstr "Pennsylvania"

#: my-evolution/Locations.h:1712
msgid "Penn Yan"
msgstr "Penn Yan"

#: my-evolution/Locations.h:1713
msgid "Pensacola"
msgstr "Pensacola"

#: my-evolution/Locations.h:1714
msgid "Pensacola NAS"
msgstr "Pensacola NAS"

#: my-evolution/Locations.h:1715
msgid "People's Republic of China"
msgstr "Kina"

#: my-evolution/Locations.h:1716
msgid "Peoria"
msgstr "Peoria"

#: my-evolution/Locations.h:1717
msgid "Pequot Lakes"
msgstr "Pequot Lakes"

#: my-evolution/Locations.h:1718
msgid "Pereira/Matecana"
msgstr "Pereira/Matecana"

#: my-evolution/Locations.h:1719
msgid "Perm"
msgstr "Perm"

#: my-evolution/Locations.h:1720
msgid "Perpignan-Rivesaltes"
msgstr "Perpignan-Rivesaltes"

#: my-evolution/Locations.h:1721
msgid "Perry-Foley"
msgstr "Perry-Foley"

#: my-evolution/Locations.h:1722
msgid "Perth"
msgstr "Perth"

#: my-evolution/Locations.h:1723
msgid "Peru"
msgstr "Peru"

#: my-evolution/Locations.h:1724
msgid "Perugia"
msgstr "Perugia"

#: my-evolution/Locations.h:1725
msgid "Pescara"
msgstr "Pescara"

#: my-evolution/Locations.h:1726
msgid "Petersburg"
msgstr "Petersburg"

#: my-evolution/Locations.h:1727
msgid "Petropavlovsk-Kamchatsky"
msgstr "Petropavlovsk-Kamchatsky"

#: my-evolution/Locations.h:1728
msgid "Petrozavodsk"
msgstr "Petrozavodsk"

#: my-evolution/Locations.h:1729
msgid "Philadelphia"
msgstr "Philadelphia"

#: my-evolution/Locations.h:1730
msgid "Philip"
msgstr "Philip"

#: my-evolution/Locations.h:1731
msgid "Philipsburg"
msgstr "Philipsburg"

#: my-evolution/Locations.h:1732
msgid "Phillips"
msgstr "Phillips"

#: my-evolution/Locations.h:1733
msgid "Phoenix"
msgstr "Phoenix"

#: my-evolution/Locations.h:1734
msgid "Phoenix-Deer Valley"
msgstr "Phoenix-Deer Valley"

#: my-evolution/Locations.h:1735
msgid "Phoenix-Goodyear"
msgstr "Phoenix-Goodyear"

#: my-evolution/Locations.h:1736
msgid "Phoenix-Luke AFB"
msgstr "Phoenix-Luke AFB"

#: my-evolution/Locations.h:1737
msgid "Piacenza"
msgstr "Piacenza"

#: my-evolution/Locations.h:1738
msgid "Pian Rosa"
msgstr "Pian Rosa"

#: my-evolution/Locations.h:1739
msgid "Piedras Negras"
msgstr "Piedras Negras"

#: my-evolution/Locations.h:1740
msgid "Pierre"
msgstr "Pierre"

#: my-evolution/Locations.h:1741
msgid "Pietersburg"
msgstr "Pietersburg"

#: my-evolution/Locations.h:1742
msgid "Pikeville"
msgstr "Pikeville"

#: my-evolution/Locations.h:1743
msgid "Pine Bluff"
msgstr "Pine Bluff"

#: my-evolution/Locations.h:1744
msgid "Pingtung North"
msgstr "Pingtung North"

#: my-evolution/Locations.h:1745
msgid "Pingtung South"
msgstr "Pingtung South"

#: my-evolution/Locations.h:1746
msgid "Pirassununga"
msgstr "Pirassununga"

#: my-evolution/Locations.h:1747
msgid "Pisa"
msgstr "Pisa"

#: my-evolution/Locations.h:1748
msgid "Pisco"
msgstr "Pisco"

#: my-evolution/Locations.h:1749
msgid "Pittsburgh"
msgstr "Pittsburgh"

#: my-evolution/Locations.h:1750
msgid "Pittsburgh-West Mifflin"
msgstr "Pittsburgh-West Mifflin"

#: my-evolution/Locations.h:1751
msgid "Plattsburg"
msgstr "Plattsburg"

#: my-evolution/Locations.h:1752
msgid "Plovdiv"
msgstr "Plovdiv"

#: my-evolution/Locations.h:1753
msgid "Plymouth"
msgstr "Plymouth"

#: my-evolution/Locations.h:1754
msgid "Pocatello"
msgstr "Pocatello"

#: my-evolution/Locations.h:1755
msgid "Pocos De Caldas"
msgstr "Pocos De Caldas"

#: my-evolution/Locations.h:1756
msgid "Podgorica"
msgstr "Podgorica"

#: my-evolution/Locations.h:1757
msgid "Podgorica Titograd"
msgstr "Podgorica Titograd"

#: my-evolution/Locations.h:1758
msgid "Pohang Ab"
msgstr "Pohang Ab"

#: my-evolution/Locations.h:1759
msgid "Point Hope"
msgstr "Point Hope"

#: my-evolution/Locations.h:1760
msgid "Point Lay"
msgstr "Point Lay"

#: my-evolution/Locations.h:1761
msgid "Point Mugu"
msgstr "Point Mugu"

#: my-evolution/Locations.h:1762
msgid "Point Piedras Blanca"
msgstr "Point Piedras Blanca"

#: my-evolution/Locations.h:1763
msgid "Poitiers"
msgstr "Poitiers"

#: my-evolution/Locations.h:1764
msgid "Poland"
msgstr "Polen"

#: my-evolution/Locations.h:1765
msgid "Pompano Beach"
msgstr "Pompano Beach"

#: my-evolution/Locations.h:1766
msgid "Ponca City"
msgstr "Ponca City"

#: my-evolution/Locations.h:1767
msgid "Ponce"
msgstr "Ponce"

#: my-evolution/Locations.h:1768
msgid "Ponta Pora"
msgstr "Ponta Pora"

#: my-evolution/Locations.h:1769
msgid "Pontiac"
msgstr "Pontiac"

#: my-evolution/Locations.h:1770
msgid "Pope AFB"
msgstr "Pope AFB"

#: my-evolution/Locations.h:1771
msgid "Poplar Bluff"
msgstr "Poplar Bluff"

#: my-evolution/Locations.h:1772
msgid "Poprad"
msgstr "Poprad"

#: my-evolution/Locations.h:1773
msgid "Port Alexander"
msgstr "Port Alexander"

#: my-evolution/Locations.h:1774
msgid "Port Alsworth"
msgstr "Port Alsworth"

#: my-evolution/Locations.h:1775
msgid "Port Angeles"
msgstr "Port Angeles"

#: my-evolution/Locations.h:1776
msgid "Port-Au-Prince"
msgstr "Port-Au-Prince"

#: my-evolution/Locations.h:1777
msgid "Port Elizabeth"
msgstr "Port Elizabeth"

#: my-evolution/Locations.h:1778
msgid "Porterville"
msgstr "Porterville"

#: my-evolution/Locations.h:1779
msgid "Port Hardy"
msgstr "Port Hardy"

#: my-evolution/Locations.h:1780
msgid "Port Hedland"
msgstr "Port Hedland"

#: my-evolution/Locations.h:1781
msgid "Port Heiden"
msgstr "Port Heiden"

#: my-evolution/Locations.h:1782
msgid "Portland"
msgstr "Portland"

#: my-evolution/Locations.h:1783
msgid "Porto"
msgstr "Porto"

#: my-evolution/Locations.h:1784
msgid "Porto Alegre"
msgstr "Porto Alegre"

#: my-evolution/Locations.h:1785
msgid "Porto Alegre Apt"
msgstr "Porto Alegre Apt"

#: my-evolution/Locations.h:1786
msgid "Portoroz"
msgstr "Portoroz"

#: my-evolution/Locations.h:1787
msgid "Porto Santo"
msgstr "Porto Santo"

#: my-evolution/Locations.h:1788
msgid "Porto Velho"
msgstr "Porto Velho"

#: my-evolution/Locations.h:1789
msgid "Port Said"
msgstr "Port Said"

#: my-evolution/Locations.h:1790
msgid "Portsmouth"
msgstr "Portsmouth"

#: my-evolution/Locations.h:1791
msgid "Portugal"
msgstr "Portugal"

#: my-evolution/Locations.h:1792
msgid "Posadas"
msgstr "Posadas"

#: my-evolution/Locations.h:1793
msgid "Potosi"
msgstr "Potosi"

#: my-evolution/Locations.h:1794
msgid "Poughkeepsie"
msgstr "Poughkeepsie"

#: my-evolution/Locations.h:1795
msgid "Pownal"
msgstr "Pownal"

#: my-evolution/Locations.h:1796
msgid "Poza Rica"
msgstr "Poza Rica"

#: my-evolution/Locations.h:1797
msgid "Poznan"
msgstr "Poznan"

#: my-evolution/Locations.h:1798
msgid "Praha"
msgstr "Praha"

#: my-evolution/Locations.h:1799
msgid "Pratica di Mare"
msgstr "Pratica di Mare"

#: my-evolution/Locations.h:1800
msgid "Prescott"
msgstr "Prescott"

#: my-evolution/Locations.h:1801
msgid "Presidente Prudente"
msgstr "Presidente Prudente"

#: my-evolution/Locations.h:1802
msgid "Presque Isle"
msgstr "Presque Isle"

#: my-evolution/Locations.h:1803
msgid "Prestwick"
msgstr "Prestwick"

#: my-evolution/Locations.h:1804
msgid "Pretoria"
msgstr "Pretoria"

#: my-evolution/Locations.h:1805
msgid "Preveza"
msgstr "Preveza"

#: my-evolution/Locations.h:1806
msgid "Price-Carbon"
msgstr "Price-Carbon"

#: my-evolution/Locations.h:1807
msgid "Pristina"
msgstr "Pristina"

#: my-evolution/Locations.h:1808
msgid "Providence"
msgstr "Providence"

#: my-evolution/Locations.h:1809
msgid "Provincetown"
msgstr "Provincetown"

#: my-evolution/Locations.h:1810
msgid "Provo"
msgstr "Provo"

#: my-evolution/Locations.h:1811
msgid "Pskov"
msgstr "Pskov"

#: my-evolution/Locations.h:1812
msgid "Pucallpa"
msgstr "Pucallpa"

#: my-evolution/Locations.h:1813
msgid "Pudahuel"
msgstr "Pudahuel"

#: my-evolution/Locations.h:1814
msgid "Puebla"
msgstr "Puebla"

#: my-evolution/Locations.h:1815
msgid "Pueblo"
msgstr "Pueblo"

#: my-evolution/Locations.h:1816
msgid "Puerto Barrios"
msgstr "Puerto Barrios"

#: my-evolution/Locations.h:1817
msgid "Puerto Cabezas"
msgstr "Puerto Cabezas"

#: my-evolution/Locations.h:1818
msgid "Puerto Escondido"
msgstr "Puerto Escondido"

#: my-evolution/Locations.h:1819
msgid "Puerto Lempira"
msgstr "Puerto Lempira"

#: my-evolution/Locations.h:1820
msgid "Puerto Limon"
msgstr "Puerto Limon"

#: my-evolution/Locations.h:1821
msgid "Puerto Maldonado"
msgstr "Puerto Maldonado"

#: my-evolution/Locations.h:1822
msgid "Puerto Montt"
msgstr "Puerto Montt"

#: my-evolution/Locations.h:1823
msgid "Puerto Plata"
msgstr "Puerto Plata"

#: my-evolution/Locations.h:1824
msgid "Puerto Rico"
msgstr "Puerto Rico"

#: my-evolution/Locations.h:1825
msgid "Puerto Suarez"
msgstr "Puerto Suarez"

#: my-evolution/Locations.h:1826
msgid "Puerto Vallarta"
msgstr "Puerto Vallarta"

#: my-evolution/Locations.h:1827
msgid "Pula"
msgstr "Pula"

#: my-evolution/Locations.h:1828
msgid "Pullman"
msgstr "Pullman"

#: my-evolution/Locations.h:1829
msgid "Punta Arenas"
msgstr "Punta Arenas"

#: my-evolution/Locations.h:1830
msgid "Punta Cana"
msgstr "Punta Cana"

#: my-evolution/Locations.h:1831
msgid "Punta Gorda"
msgstr "Punta Gorda"

#: my-evolution/Locations.h:1832
msgid "Puntilla Lake"
msgstr "Puntilla Lake"

#: my-evolution/Locations.h:1833
msgid "Pusan/Kimhae"
msgstr "Pusan/Kimhae"

#: my-evolution/Locations.h:1834
msgid "Pyongtaek Ab"
msgstr "Pyongtaek Ab"

#: my-evolution/Locations.h:1835
msgid "Pyongyang"
msgstr "Pyongyang"

#: my-evolution/Locations.h:1836
msgid "Qatar"
msgstr "Qatar"

#: my-evolution/Locations.h:1837
msgid "Quantico"
msgstr "Quantico"

#: my-evolution/Locations.h:1838
msgid "Quebec"
msgstr "Quebec"

#: my-evolution/Locations.h:1839
msgid "Quebec City"
msgstr "Quebec City"

#: my-evolution/Locations.h:1840
msgid "Queretaro"
msgstr "Queretaro"

#: my-evolution/Locations.h:1841
msgid "Quillayute"
msgstr "Quillayute"

#: my-evolution/Locations.h:1842
msgid "Quimper"
msgstr "Quimper"

#: my-evolution/Locations.h:1843
msgid "Quincy"
msgstr "Quincy"

#: my-evolution/Locations.h:1844
msgid "Quito/Mariscal Sucre"
msgstr "Quito/Mariscal Sucre"

#: my-evolution/Locations.h:1845
msgid "Rabat"
msgstr "Rabat"

#: my-evolution/Locations.h:1846
msgid "Raduzhny"
msgstr "Raduzhny"

#: my-evolution/Locations.h:1847
msgid "Rafha"
msgstr "Rafha"

#: my-evolution/Locations.h:1848
msgid "Raleigh-Durham"
msgstr "Raleigh-Durham"

#: my-evolution/Locations.h:1849
msgid "Randolph AFB"
msgstr "Randolph AFB"

#: my-evolution/Locations.h:1850
msgid "Rapid City"
msgstr "Rapid City"

#: my-evolution/Locations.h:1851
msgid "Rapid City-Ellsworth AFB"
msgstr "Rapid City-Ellsworth AFB"

#: my-evolution/Locations.h:1852
msgid "Ras Al Khaimah"
msgstr "Ras Al Khaimah"

#: my-evolution/Locations.h:1853
msgid "Rawlins"
msgstr "Rawlins"

#: my-evolution/Locations.h:1854
msgid "Reading"
msgstr "Reading"

#: my-evolution/Locations.h:1855
msgid "Rebun Island"
msgstr "Rebun Island"

#: my-evolution/Locations.h:1856
msgid "Recife"
msgstr "Recife"

#: my-evolution/Locations.h:1857
msgid "Red Bluff"
msgstr "Red Bluff"

#: my-evolution/Locations.h:1858
msgid "Redding"
msgstr "Redding"

#: my-evolution/Locations.h:1859
msgid "Redig"
msgstr "Redig"

#: my-evolution/Locations.h:1860
msgid "Redmond"
msgstr "Redmond"

#: my-evolution/Locations.h:1861
msgid "Red Oak"
msgstr "Red Oak"

#: my-evolution/Locations.h:1862
msgid "Redwood Falls"
msgstr "Redwood Falls"

#: my-evolution/Locations.h:1863
msgid "Reggio Calabria"
msgstr "Reggio Calabria"

#: my-evolution/Locations.h:1864
msgid "Regina"
msgstr "Regina"

#: my-evolution/Locations.h:1865
msgid "Reims-Champagne"
msgstr "Reims-Champagne"

#: my-evolution/Locations.h:1866
msgid "Rennes"
msgstr "Rennes"

#: my-evolution/Locations.h:1867
msgid "Reno"
msgstr "Reno"

#: my-evolution/Locations.h:1868
msgid "Renton"
msgstr "Renton"

#: my-evolution/Locations.h:1869
msgid "Resistencia"
msgstr "Resistencia"

#: my-evolution/Locations.h:1870
msgid "Reus"
msgstr "Reus"

#: my-evolution/Locations.h:1871
msgid "Reyes"
msgstr "Reyes"

#: my-evolution/Locations.h:1872
msgid "Reykjavik"
msgstr "Reykjavik"

#: my-evolution/Locations.h:1873
msgid "Reynosa"
msgstr "Reynosa"

#: my-evolution/Locations.h:1874
msgid "Rhinelander"
msgstr "Rhinelander"

#: my-evolution/Locations.h:1875
msgid "Rhode Island"
msgstr "Rhode Island"

#: my-evolution/Locations.h:1876
msgid "Riberalta"
msgstr "Riberalta"

#: my-evolution/Locations.h:1877
msgid "Richmond"
msgstr "Richmond"

#: my-evolution/Locations.h:1878
msgid "Rickenbacker"
msgstr "Rickenbacker"

#: my-evolution/Locations.h:1879
msgid "Rieti"
msgstr "Rieti"

#: my-evolution/Locations.h:1880
msgid "Rifle"
msgstr "Rifle"

#: my-evolution/Locations.h:1881
msgid "Riga"
msgstr "Riga"

#: my-evolution/Locations.h:1882
msgid "Rijeka"
msgstr "Rijeka"

#: my-evolution/Locations.h:1883
msgid "Rimini"
msgstr "Rimini"

#: my-evolution/Locations.h:1884
msgid "Rio De Janeiro"
msgstr "Rio De Janeiro"

#: my-evolution/Locations.h:1885
msgid "Rio Gallegos"
msgstr "Rio Gallegos"

#: my-evolution/Locations.h:1886
msgid "Rio Grande"
msgstr "Rio Grande"

#: my-evolution/Locations.h:1887
msgid "Rioja"
msgstr "Rioja"

#: my-evolution/Locations.h:1888
msgid "Rio / Jacarepagua"
msgstr "Rio / Jacarepagua"

#: my-evolution/Locations.h:1889
msgid "Rionegro/J.M.Cordova"
msgstr "Rionegro/J.M.Cordova"

#: my-evolution/Locations.h:1890
msgid "Rishiri Island"
msgstr "Rishiri Island"

#: my-evolution/Locations.h:1891
msgid "Rivas"
msgstr "Rivas"

#: my-evolution/Locations.h:1892
msgid "Rivera"
msgstr "Rivera"

#: my-evolution/Locations.h:1893
msgid "Riverside"
msgstr "Riverside"

#: my-evolution/Locations.h:1894
msgid "Riverside/March AFB"
msgstr "Riverside/March AFB"

#: my-evolution/Locations.h:1895
msgid "Riverton"
msgstr "Riverton"

#: my-evolution/Locations.h:1896
#, fuzzy
msgid "Rivne"
msgstr "Rivera"

#: my-evolution/Locations.h:1897
msgid "Rivolto"
msgstr "Rivolto"

#: my-evolution/Locations.h:1898
msgid "Riyadh"
msgstr "Riyadh"

#: my-evolution/Locations.h:1899
msgid "Roanoke"
msgstr "Roanoke"

#: my-evolution/Locations.h:1900
msgid "Roatan"
msgstr "Roatan"

#: my-evolution/Locations.h:1901
msgid "Robore"
msgstr "Robore"

#: my-evolution/Locations.h:1902
msgid "Rochester"
msgstr "Rochester"

#: my-evolution/Locations.h:1903
msgid "Rockford"
msgstr "Rockford"

#: my-evolution/Locations.h:1904
msgid "Rockland"
msgstr "Rockland"

#: my-evolution/Locations.h:1905
msgid "Rockport"
msgstr "Rockport"

#: my-evolution/Locations.h:1906
msgid "Rock Springs"
msgstr "Rock Springs"

#: my-evolution/Locations.h:1907
msgid "Rocky Mount"
msgstr "Rocky Mount"

#: my-evolution/Locations.h:1908
msgid "Rodos"
msgstr "Rodos"

#: my-evolution/Locations.h:1909
msgid "Rogers"
msgstr "Rogers"

#: my-evolution/Locations.h:1910
msgid "Roma/Ciampino"
msgstr "Roma/Ciampino"

#: my-evolution/Locations.h:1911
msgid "Roma/Fiumicino"
msgstr "Roma/Fiumicino"

#: my-evolution/Locations.h:1912
msgid "Romania"
msgstr "Romania"

#: my-evolution/Locations.h:1913
msgid "Roma/Urbe"
msgstr "Roma/Urbe"

#: my-evolution/Locations.h:1914
msgid "Rome-Russell"
msgstr "Rome-Russell"

#: my-evolution/Locations.h:1915
msgid "Ronchi de' Legionari"
msgstr "Ronchi de' Legionari"

#: my-evolution/Locations.h:1916
msgid "Ronneby"
msgstr "Rønneby"

#: my-evolution/Locations.h:1917
msgid "Roosevelt"
msgstr "Roosevelt"

#: my-evolution/Locations.h:1918
msgid "Roros"
msgstr "Røros"

#: my-evolution/Locations.h:1919
msgid "Rorvik/Ryum"
msgstr "Rørvik/Ryum"

#: my-evolution/Locations.h:1920
msgid "Rosario"
msgstr "Rosario"

#: my-evolution/Locations.h:1921
msgid "Roseburg"
msgstr "Roseburg"

#: my-evolution/Locations.h:1922
msgid "Roseglen"
msgstr "Roseglen"

#: my-evolution/Locations.h:1923
msgid "Rost"
msgstr "Rost"

#: my-evolution/Locations.h:1924
msgid "Rostov-Na-Donu"
msgstr "Rostov-Na-Donu"

#: my-evolution/Locations.h:1925
msgid "Roswell"
msgstr "Roswell"

#: my-evolution/Locations.h:1926
msgid "Rotterdam"
msgstr "Rotterdam"

#: my-evolution/Locations.h:1927
msgid "Rouen-Valle de Seine"
msgstr "Rouen-Valle de Seine"

#: my-evolution/Locations.h:1928
msgid "Ruidoso-Sierra Blanca"
msgstr "Ruidoso-Sierra Blanca"

#: my-evolution/Locations.h:1929
msgid "Rurrenabaque"
msgstr "Rurrenabaque"

#: my-evolution/Locations.h:1930
msgid "Russell"
msgstr "Russell"

#: my-evolution/Locations.h:1931
msgid "Russia"
msgstr "Russland"

#: my-evolution/Locations.h:1932
msgid "Rutland"
msgstr "Rutland"

#: my-evolution/Locations.h:1933
msgid "Rygge"
msgstr "Rygge"

#: my-evolution/Locations.h:1934
msgid "Rzeszow"
msgstr "Rzeszow"

#: my-evolution/Locations.h:1935
msgid "Saarbrucken"
msgstr "Saarbrucken"

#: my-evolution/Locations.h:1936
msgid "Sabine Pass"
msgstr "Sabine Pass"

#: my-evolution/Locations.h:1937
msgid "Sacramento"
msgstr "Sacramento"

#: my-evolution/Locations.h:1938
msgid "Sacramento-Woodland"
msgstr "Sacramento-Woodland"

#: my-evolution/Locations.h:1939
msgid "Safford-Municipal Airport"
msgstr "Safford-Municipal Airport"

#: my-evolution/Locations.h:1940
msgid "Saginaw"
msgstr "Saginaw"

#: my-evolution/Locations.h:1941
msgid "Saint Anthony"
msgstr "Saint Anthony"

#: my-evolution/Locations.h:1942
msgid "Saint-Brieuc-Armor"
msgstr "Saint-Brieuc-Armor"

#: my-evolution/Locations.h:1943
msgid "Saint-Dizier-Robinson"
msgstr "Saint-Dizier-Robinson"

#: my-evolution/Locations.h:1944
msgid "Saint-Etienne-Boutheon"
msgstr "Saint-Etienne-Boutheon"

#: my-evolution/Locations.h:1945
msgid "Saint Mary's"
msgstr "Saint Mary's"

#: my-evolution/Locations.h:1946
msgid "Saint Mawgan"
msgstr "Saint Mawgan"

#: my-evolution/Locations.h:1947
msgid "Saint-Nazaire-Montoir"
msgstr "Saint-Nazaire-Montoir"

#: my-evolution/Locations.h:1948
msgid "Saint Paul"
msgstr "Saint Paul"

#: my-evolution/Locations.h:1949
msgid "Saiq"
msgstr "Saiq"

#: my-evolution/Locations.h:1950
msgid "Salalah"
msgstr "Salalah"

#: my-evolution/Locations.h:1951
msgid "Salem"
msgstr "Salem"

#: my-evolution/Locations.h:1952
msgid "Salida"
msgstr "Salida"

#: my-evolution/Locations.h:1953
msgid "Salida-Harriet"
msgstr "Salida-Harriet"

#: my-evolution/Locations.h:1954
msgid "Salina"
msgstr "Salina"

#: my-evolution/Locations.h:1955
msgid "Salinas"
msgstr "Salinas"

#: my-evolution/Locations.h:1956
msgid "Salisbury"
msgstr "Salisbury"

#: my-evolution/Locations.h:1957
msgid "Salmon"
msgstr "Salmon"

#: my-evolution/Locations.h:1958
msgid "Salmon (2)"
msgstr "Salmon (2)"

#: my-evolution/Locations.h:1959
msgid "Salta"
msgstr "Salta"

#: my-evolution/Locations.h:1960
msgid "Saltillo"
msgstr "Saltillo"

#: my-evolution/Locations.h:1961
msgid "Salt Lake City"
msgstr "Salt Lake City"

#: my-evolution/Locations.h:1962
msgid "Salto"
msgstr "Salto"

#: my-evolution/Locations.h:1963
msgid "Salt point"
msgstr "Salt point"

#: my-evolution/Locations.h:1964
msgid "Salvador"
msgstr "Salvador"

#: my-evolution/Locations.h:1965
msgid "Salzburg"
msgstr "Salzburg"

#: my-evolution/Locations.h:1966
msgid "Samara"
msgstr "Samara"

#: my-evolution/Locations.h:1967
msgid "Samos"
msgstr "Samos"

#: my-evolution/Locations.h:1968
msgid "Samsun"
msgstr "Samsun"

#: my-evolution/Locations.h:1969
msgid "Sana'A"
msgstr "Sana'A"

#: my-evolution/Locations.h:1970
msgid "San Andres Isla/Sesquicentenario"
msgstr "San Andres Isla/Sesquicentenario"

#: my-evolution/Locations.h:1971
msgid "San Angelo"
msgstr "San Angelo"

#: my-evolution/Locations.h:1972
msgid "San Antonio"
msgstr "San Antonio"

#: my-evolution/Locations.h:1973
msgid "San Antonio Del Tachira"
msgstr "San Antonio Del Tachira"

#: my-evolution/Locations.h:1974
msgid "San Antonio-Kelly AFB"
msgstr "San Antonio-Kelly AFB"

#: my-evolution/Locations.h:1975
msgid "San Antonio-Stinson"
msgstr "San Antonio-Stinson"

#: my-evolution/Locations.h:1976
msgid "San Carlos"
msgstr "San Carlos"

#: my-evolution/Locations.h:1977
msgid "Sandane"
msgstr "Sandane"

#: my-evolution/Locations.h:1978
msgid "Sandberg"
msgstr "Sandberg"

#: my-evolution/Locations.h:1979
msgid "Sanderson"
msgstr "Sanderson"

#: my-evolution/Locations.h:1980
msgid "San Diego"
msgstr "San Diego"

#: my-evolution/Locations.h:1981
msgid "San Diego-Brown"
msgstr "San Diego-Brown"

#: my-evolution/Locations.h:1982
msgid "San Diego-Miramar"
msgstr "San Diego-Miramar"

#: my-evolution/Locations.h:1983
msgid "San Diego-Montgomery"
msgstr "San Diego-Montgomery"

#: my-evolution/Locations.h:1984
msgid "San Diego-North Island"
msgstr "San Diego-North Island"

#: my-evolution/Locations.h:1985
msgid "San Diego-Santee"
msgstr "San Diego-Santee"

#: my-evolution/Locations.h:1986
msgid "Sandnessjoen/Stokka"
msgstr "Sandnessjøen/Stokka"

#: my-evolution/Locations.h:1987
msgid "Sand Point"
msgstr "Sand Point"

#: my-evolution/Locations.h:1988
msgid "San Fernando De Apure"
msgstr "San Fernando De Apure"

#: my-evolution/Locations.h:1989
msgid "Sanford"
msgstr "Sanford"

#: my-evolution/Locations.h:1990
msgid "San Francisco"
msgstr "San Francisco"

#: my-evolution/Locations.h:1991
msgid "Sangju"
msgstr "Sangju"

#: my-evolution/Locations.h:1992
msgid "San Ignacio De Velasco"
msgstr "San Ignacio De Velasco"

#: my-evolution/Locations.h:1993
msgid "San Joaquin"
msgstr "San Joaquin"

#: my-evolution/Locations.h:1994
msgid "San Jose"
msgstr "San Jose"

#: my-evolution/Locations.h:1995
msgid "San Jose De Chiquitos"
msgstr "San Jose De Chiquitos"

#: my-evolution/Locations.h:1996
msgid "San Jose del Cabo"
msgstr "San Jose del Cabo"

#: my-evolution/Locations.h:1997
msgid "San Jose-Santa Clara"
msgstr "San Jose-Santa Clara"

#: my-evolution/Locations.h:1998
msgid "San Juan"
msgstr "San Juan"

#: my-evolution/Locations.h:1999
msgid "Sankt-Peterburg"
msgstr "Sankt-Peterburg"

#: my-evolution/Locations.h:2000
msgid "Sanliurfa"
msgstr "Sanliurfa"

#: my-evolution/Locations.h:2001
msgid "San Luis Obispo"
msgstr "San Luis Obispo"

#: my-evolution/Locations.h:2002
msgid "San Luis Potosi"
msgstr "San Luis Potosi"

#: my-evolution/Locations.h:2003
msgid "San Miguel"
msgstr "San Miguel"

#: my-evolution/Locations.h:2004
msgid "San Nicholas Island"
msgstr "San Nicholas Island"

#: my-evolution/Locations.h:2005
msgid "San Salvador"
msgstr "San Salvador"

#: my-evolution/Locations.h:2006
msgid "San Sebastian"
msgstr "San Sebastian"

#: my-evolution/Locations.h:2007
msgid "Santa Ana"
msgstr "Santa Ana"

#: my-evolution/Locations.h:2008
msgid "Santa Barbara"
msgstr "Santa Barbara"

#: my-evolution/Locations.h:2009
msgid "Santa Cruz"
msgstr "Santa Cruz"

#: my-evolution/Locations.h:2010
msgid "Santa Fe"
msgstr "Santa Fe"

#: my-evolution/Locations.h:2011
msgid "Santa Maria"
msgstr "Santa Maria"

#: my-evolution/Locations.h:2012
msgid "Santa Marta/Simon Bolivar"
msgstr "Santa Marta/Simon Bolivar"

#: my-evolution/Locations.h:2013
msgid "Santa Monica"
msgstr "Santa Monica"

#: my-evolution/Locations.h:2014
msgid "Santander"
msgstr "Santander"

#: my-evolution/Locations.h:2015
msgid "Santarem"
msgstr "Santarem"

#: my-evolution/Locations.h:2016
msgid "Santa Rosa"
msgstr "Santa Rosa"

#: my-evolution/Locations.h:2017
msgid "Santa Rosa de Copan"
msgstr "Santa Rosa de Copan"

#: my-evolution/Locations.h:2018
msgid "Santiago"
msgstr "Santiago"

#: my-evolution/Locations.h:2019
msgid "Santiago de Cuba"
msgstr "Santiago de Cuba"

#: my-evolution/Locations.h:2020
msgid "Santiago Del Estero"
msgstr "Santiago Del Estero"

#: my-evolution/Locations.h:2021
msgid "Santorini"
msgstr "Santorini"

#: my-evolution/Locations.h:2022
msgid "Santos"
msgstr "Santos"

#: my-evolution/Locations.h:2023
msgid "Sao Jose Dos Campo"
msgstr "Sao Jose Dos Campo"

#: my-evolution/Locations.h:2024
msgid "Sao Luiz"
msgstr "Sao Luiz"

#: my-evolution/Locations.h:2025
msgid "Sao Paulo"
msgstr "Sao Paulo"

#: my-evolution/Locations.h:2026
msgid "Sapporo Ab"
msgstr "Sapporo Ab"

#: my-evolution/Locations.h:2027
msgid "Sarajevo"
msgstr "Sarajevo"

#: my-evolution/Locations.h:2028
msgid "Saranac Lake"
msgstr "Saranac Lake"

#: my-evolution/Locations.h:2029
msgid "Sarasota"
msgstr "Sarasota"

#: my-evolution/Locations.h:2030
msgid "Saratov"
msgstr "Saratov"

#: my-evolution/Locations.h:2031
msgid "Sarzana"
msgstr "Sarzana"

#: my-evolution/Locations.h:2032
msgid "Saskatchewan"
msgstr "Saskatchewan"

#: my-evolution/Locations.h:2033
msgid "Saskatoon"
msgstr "Saskatoon"

#: my-evolution/Locations.h:2034
msgid "Sauce Viejo"
msgstr "Sauce Viejo"

#: my-evolution/Locations.h:2035
msgid "Saudi Arabia"
msgstr "Saudi Arabia"

#: my-evolution/Locations.h:2036
msgid "Sault Ste Marie"
msgstr "Sault Ste Marie"

#: my-evolution/Locations.h:2037
msgid "Savannah"
msgstr "Savannah"

#: my-evolution/Locations.h:2038
msgid "Savannah-Hunter AAF"
msgstr "Savannah-Hunter AAF"

#: my-evolution/Locations.h:2039
msgid "Sawyer AFB"
msgstr "Sawyer AFB"

#: my-evolution/Locations.h:2040
msgid "Sayun"
msgstr "Sayun"

#: my-evolution/Locations.h:2041
msgid "Scatsta"
msgstr "Scatsta"

#: my-evolution/Locations.h:2042
msgid "Schaffen"
msgstr "Schaffen"

#: my-evolution/Locations.h:2043
msgid "Schenectady"
msgstr "Schenectady"

#: my-evolution/Locations.h:2044
msgid "Scilly Isles"
msgstr "Scilly Isles"

#: my-evolution/Locations.h:2045
msgid "Scottsbluff"
msgstr "Scottsbluff"

#: my-evolution/Locations.h:2046
msgid "Scottsdale"
msgstr "Scottsdale"

#: my-evolution/Locations.h:2047
msgid "Scranton"
msgstr "Scranton"

#: my-evolution/Locations.h:2048
msgid "Seattle"
msgstr "Seattle"

#: my-evolution/Locations.h:2049
msgid "Seattle-Boeing"
msgstr "Seattle-Boeing"

#: my-evolution/Locations.h:2050
msgid "Sedalia"
msgstr "Sedalia"

#: my-evolution/Locations.h:2051
msgid "Seeb"
msgstr "Seeb"

#: my-evolution/Locations.h:2052
msgid "Selanik"
msgstr "Selanik"

#: my-evolution/Locations.h:2053
msgid "Sendai Airport"
msgstr ""

#: my-evolution/Locations.h:2054
msgid "Seoul E Ab"
msgstr "Seoul E Ab"

#: my-evolution/Locations.h:2055
msgid "Seoul/Kimp'O International Airport"
msgstr "Seoul/Kimp'O International Airport"

#: my-evolution/Locations.h:2056
msgid "Seoul/Yongdungp'O Rokaf Wc"
msgstr "Seoul/Yongdungp'O Rokaf Wc"

#: my-evolution/Locations.h:2057
msgid "Sept-Iles"
msgstr "Sept-Iles"

#: my-evolution/Locations.h:2058
msgid "Seul Choix Pt"
msgstr "Seul Choix Pt"

#: my-evolution/Locations.h:2059
msgid "Sevilla"
msgstr "Sevilla"

#: my-evolution/Locations.h:2060
msgid "Seward"
msgstr "Seward"

#: my-evolution/Locations.h:2061
msgid "Sexton Summit"
msgstr "Sexton Summit"

#: my-evolution/Locations.h:2062
msgid "Shanghai"
msgstr "Shanghai"

#: my-evolution/Locations.h:2063
msgid "Shannon"
msgstr "Shannon"

#: my-evolution/Locations.h:2064
msgid "Sharjah"
msgstr "Sharjah"

#: my-evolution/Locations.h:2065
msgid "Sharm El Sheikhintl"
msgstr "Sharm El Sheikhintl"

#: my-evolution/Locations.h:2066
msgid "Sharurah"
msgstr "Sharurah"

#: my-evolution/Locations.h:2067
msgid "Shawbury"
msgstr "Shawbury"

#: my-evolution/Locations.h:2068
msgid "Shearwater"
msgstr "Shearwater"

#: my-evolution/Locations.h:2069
msgid "Sheboygan"
msgstr "Sheboygan"

#: my-evolution/Locations.h:2070
msgid "Sheldon"
msgstr "Sheldon"

#: my-evolution/Locations.h:2071
msgid "Shelter Cove"
msgstr "Shelter Cove"

#: my-evolution/Locations.h:2072
msgid "Shelton"
msgstr "Shelton"

#: my-evolution/Locations.h:2073
msgid "Shenandoah"
msgstr "Shenandoah"

#: my-evolution/Locations.h:2074
msgid "Sheridan"
msgstr "Sheridan"

#: my-evolution/Locations.h:2075
msgid "Sherman-Denison"
msgstr "Sherman-Denison"

#: my-evolution/Locations.h:2076
msgid "Shimofusa Ab"
msgstr "Shimofusa Ab"

#: my-evolution/Locations.h:2077
msgid "Shingle Point"
msgstr "Shingle Point"

#: my-evolution/Locations.h:2078
msgid "Shiraz"
msgstr "Shiraz"

#: my-evolution/Locations.h:2079
msgid "Shishmaref"
msgstr "Shishmaref"

#: my-evolution/Locations.h:2080
msgid "Shizuhama Ab"
msgstr "Shizuhama Ab"

#: my-evolution/Locations.h:2081
msgid "Shoreham"
msgstr "Shoreham"

#: my-evolution/Locations.h:2082
msgid "Show Low"
msgstr "Show Low"

#: my-evolution/Locations.h:2083
msgid "Shreveport Downtown"
msgstr "Shreveport Downtown"

#: my-evolution/Locations.h:2084
msgid "Shreveport Regional"
msgstr "Shreveport Regional"

#: my-evolution/Locations.h:2085
msgid "Sidney"
msgstr "Sidney"

#: my-evolution/Locations.h:2086
msgid "Sigonella"
msgstr "Sigonella"

#: my-evolution/Locations.h:2087
msgid "Siloam Springs"
msgstr "Siloam Springs"

#: my-evolution/Locations.h:2088
msgid "Silver City"
msgstr "Silver City"

#: my-evolution/Locations.h:2089
msgid "Sindal"
msgstr "Sindal"

#: my-evolution/Locations.h:2090
msgid "Singapore"
msgstr "Singapore"

#: my-evolution/Locations.h:2091
msgid "Sioux City"
msgstr "Sioux City"

#: my-evolution/Locations.h:2092
msgid "Sioux Falls"
msgstr "Sioux Falls"

#: my-evolution/Locations.h:2093
msgid "Sitka"
msgstr "Sitka"

#: my-evolution/Locations.h:2094
msgid "Sivas"
msgstr "Sivas"

#: my-evolution/Locations.h:2095
msgid "Sivrihisar"
msgstr "Sivrihisar"

#: my-evolution/Locations.h:2096
msgid "Skagway"
msgstr "Skagway"

#: my-evolution/Locations.h:2097
msgid "Skiathos"
msgstr "Skiathos"

#: my-evolution/Locations.h:2098
msgid "Skien/Geiteryggen"
msgstr "Skien/Geiteryggen"

#: my-evolution/Locations.h:2099
msgid "Skive"
msgstr "Skive"

#: my-evolution/Locations.h:2100
msgid "Skopje"
msgstr "Skopje"

#: my-evolution/Locations.h:2101
msgid "Skwentna"
msgstr "Skwentna"

#: my-evolution/Locations.h:2102
msgid "Slana"
msgstr "Slana"

#: my-evolution/Locations.h:2103
msgid "Slovakia"
msgstr "Slovakia"

#: my-evolution/Locations.h:2104
msgid "Slovenia"
msgstr "Slovenia"

#: my-evolution/Locations.h:2105
msgid "Smithers"
msgstr "Smithers"

#: my-evolution/Locations.h:2106
msgid "Smyrna"
msgstr "Smyrna"

#: my-evolution/Locations.h:2107
msgid "Snowshoe Lake"
msgstr "Snowshoe Lake"

#: my-evolution/Locations.h:2108
msgid "Sochi"
msgstr "Sochi"

#: my-evolution/Locations.h:2109
msgid "Socorro"
msgstr "Socorro"

#: my-evolution/Locations.h:2110
msgid "Socotra"
msgstr "Socotra"

#: my-evolution/Locations.h:2111
msgid "Soda Springs"
msgstr "Soda Springs"

#: my-evolution/Locations.h:2112
msgid "Sofia"
msgstr "Sofia"

#: my-evolution/Locations.h:2113
msgid "Sogndal"
msgstr "Sogndal"

#: my-evolution/Locations.h:2114
msgid "Soldotna"
msgstr "Soldotna"

#: my-evolution/Locations.h:2115
msgid "Somerset"
msgstr "Somerset"

#: my-evolution/Locations.h:2116
msgid "Sonderborg"
msgstr "Sonderborg"

#: my-evolution/Locations.h:2117
msgid "Songmu Ab"
msgstr "Songmu Ab"

#: my-evolution/Locations.h:2118
msgid "Sorkjosen"
msgstr "Sørkjosen"

#: my-evolution/Locations.h:2119
msgid "South Africa"
msgstr "Sør-Afrika"

#: my-evolution/Locations.h:2120
msgid "Southampton"
msgstr "Southampton"

#: my-evolution/Locations.h:2121
msgid "South Bend"
msgstr "South Bend"

#: my-evolution/Locations.h:2122
msgid "South Carolina"
msgstr "South Carolina"

#: my-evolution/Locations.h:2123
msgid "South Dakota"
msgstr "South Dakota"

#: my-evolution/Locations.h:2124
msgid "Southend"
msgstr "Southend"

#: my-evolution/Locations.h:2125
msgid "South Marsh Island"
msgstr "South Marsh Island"

#: my-evolution/Locations.h:2126
msgid "South Timbalier"
msgstr "South Timbalier"

#: my-evolution/Locations.h:2127
msgid "Spain"
msgstr "Spania"

#: my-evolution/Locations.h:2128
msgid "Sparrevohn"
msgstr "Sparrevohn"

#: my-evolution/Locations.h:2129
msgid "Spencer"
msgstr "Spencer"

#: my-evolution/Locations.h:2130
msgid "Spickard"
msgstr "Spickard"

#: my-evolution/Locations.h:2131
msgid "Split"
msgstr "Split"

#: my-evolution/Locations.h:2132
msgid "Spokane"
msgstr "Spokane"

#: my-evolution/Locations.h:2133
msgid "Spokane-Parkwater"
msgstr "Spokane-Parkwater"

#: my-evolution/Locations.h:2134
msgid "Springbok"
msgstr "Springbok"

#: my-evolution/Locations.h:2135
msgid "Springfield"
msgstr "Springfield"

#: my-evolution/Locations.h:2136
msgid "Stampede Pass"
msgstr "Stampede Pass"

#: my-evolution/Locations.h:2137
msgid "State College"
msgstr "State College"

#: my-evolution/Locations.h:2138
msgid "Stauning"
msgstr "Stauning"

#: my-evolution/Locations.h:2139
msgid "Staunton"
msgstr "Staunton"

#: my-evolution/Locations.h:2140
msgid "Stavanger/Sola"
msgstr "Stavanger/Sola"

#: my-evolution/Locations.h:2141
msgid "Staverton"
msgstr "Staverton"

#: my-evolution/Locations.h:2142
msgid "Stavropol"
msgstr "Stavropol"

#: my-evolution/Locations.h:2143
msgid "St Cloud"
msgstr "St Cloud"

#: my-evolution/Locations.h:2144
msgid "Steamboat Springs"
msgstr "Steamboat Springs"

#: my-evolution/Locations.h:2145
msgid "Stephenville"
msgstr "Stephenville"

#: my-evolution/Locations.h:2146
msgid "St. George"
msgstr "St. George"

#: my-evolution/Locations.h:2147
msgid "Stillwater"
msgstr "Stillwater"

#: my-evolution/Locations.h:2148
msgid "St. John's"
msgstr "St. John's"

#: my-evolution/Locations.h:2149
msgid "St Johnsbury"
msgstr "St Johnsbury"

#: my-evolution/Locations.h:2150
msgid "St Joseph"
msgstr "St Joseph"

#: my-evolution/Locations.h:2151
msgid "St Louis"
msgstr "St Louis"

#: my-evolution/Locations.h:2152
msgid "St Louis-Spirit"
msgstr "St Louis-Spirit"

#: my-evolution/Locations.h:2153
msgid "Stockholm (Arlanda)"
msgstr "Stockholm (Arlanda)"

#: my-evolution/Locations.h:2154
msgid "Stockholm (Bromma)"
msgstr "Stockholm (Bromma)"

#: my-evolution/Locations.h:2155
msgid "Stockton"
msgstr "Stockton"

#: my-evolution/Locations.h:2156
msgid "Stokmarknes/Skagen"
msgstr "Stokmarknes/Skagen"

#: my-evolution/Locations.h:2157
msgid "Stord/Sorstokken"
msgstr "Stord/Sørstokken"

#: my-evolution/Locations.h:2158
msgid "Storm Lake"
msgstr "Storm Lake"

#: my-evolution/Locations.h:2159
msgid "Stornoway"
msgstr "Stornoway"

#: my-evolution/Locations.h:2160
msgid "St Paul"
msgstr "St Paul"

#: my-evolution/Locations.h:2161
msgid "St Petersburg"
msgstr "St Petersburg"

#: my-evolution/Locations.h:2162
msgid "St Petersburg / Clearwater"
msgstr "St Petersburg / Clearwater"

#: my-evolution/Locations.h:2163
msgid "Strasbourg"
msgstr "Strasbourg"

#: my-evolution/Locations.h:2164
msgid "Strevell"
msgstr "Strevell"

#: my-evolution/Locations.h:2165
msgid "St Simon's Island"
msgstr "St Simon's Island"

#: my-evolution/Locations.h:2166
msgid "Stumpy Point"
msgstr "Stumpy Point"

#: my-evolution/Locations.h:2167
msgid "Sturgeon Bay"
msgstr "Sturgeon Bay"

#: my-evolution/Locations.h:2168
msgid "Stuttgart"
msgstr "Stuttgart"

#: my-evolution/Locations.h:2169
msgid "Sucre"
msgstr "Sucre"

#: my-evolution/Locations.h:2170
msgid "Sumburgh"
msgstr "Sumburgh"

#: my-evolution/Locations.h:2171
msgid "Sumter"
msgstr "Sumter"

#: my-evolution/Locations.h:2172
msgid "Sumter (2)"
msgstr "Sumter (2)"

#: my-evolution/Locations.h:2173
msgid "Sundsvall-Harnosand"
msgstr "Sundsvall-Harnösand"

#: my-evolution/Locations.h:2174
msgid "Sungshan/Taipei"
msgstr "Sungshan/Taipei"

#: my-evolution/Locations.h:2175
msgid "Superior"
msgstr "Superior"

#: my-evolution/Locations.h:2176
msgid "Suriname"
msgstr "Suriname"

#: my-evolution/Locations.h:2177
msgid "Sutton"
msgstr "Sutton"

#: my-evolution/Locations.h:2178
msgid "Suwon Ab"
msgstr "Suwon Ab"

#: my-evolution/Locations.h:2179
msgid "Svalbard"
msgstr "Svalbard"

#: my-evolution/Locations.h:2180
msgid "Svolvaer/Helle"
msgstr "Svolvær/Helle"

#: my-evolution/Locations.h:2181
msgid "Sweden"
msgstr "Sverige"

#: my-evolution/Locations.h:2182
msgid "Swift Current"
msgstr "Swift Current"

#: my-evolution/Locations.h:2183
msgid "Switzerland"
msgstr "Sveits"

#: my-evolution/Locations.h:2184
msgid "Sydney"
msgstr "Sydney"

#: my-evolution/Locations.h:2185
msgid "Syktyvkar"
msgstr "Syktyvkar"

#: my-evolution/Locations.h:2186
#, fuzzy
msgid "Sympheropol"
msgstr "Stavropol"

#: my-evolution/Locations.h:2187
msgid "Syracuse"
msgstr "Syracuse"

#: my-evolution/Locations.h:2188
msgid "Szczecin"
msgstr "Szczecin"

#: my-evolution/Locations.h:2189
msgid "Szombathely"
msgstr "Szombathely"

#: my-evolution/Locations.h:2190
msgid "Tabatinga"
msgstr "Tabatinga"

#: my-evolution/Locations.h:2191
msgid "Tabriz"
msgstr "Tabriz"

#: my-evolution/Locations.h:2192
msgid "Tabuk"
msgstr "Tabuk"

#: my-evolution/Locations.h:2193
msgid "Tachikawa Ab"
msgstr "Tachikawa Ab"

#: my-evolution/Locations.h:2194
msgid "Tacna"
msgstr "Tacna"

#: my-evolution/Locations.h:2195
msgid "Tacoma"
msgstr "Tacoma"

#: my-evolution/Locations.h:2196
msgid "Tacoma-Lakewood"
msgstr "Tacoma-Lakewood"

#: my-evolution/Locations.h:2197
msgid "Tacuarembo"
msgstr "Tacuarembo"

#: my-evolution/Locations.h:2198
msgid "Taegu"
msgstr "Taegu"

#: my-evolution/Locations.h:2199
msgid "Taegu Ab"
msgstr "Taegu Ab"

#: my-evolution/Locations.h:2200
msgid "Taejon"
msgstr "Taejon"

#: my-evolution/Locations.h:2201
msgid "Tahoe Valley"
msgstr "Tahoe Valley"

#: my-evolution/Locations.h:2202
msgid "Taichung"
msgstr "Taichung"

#: my-evolution/Locations.h:2203
msgid "Taif"
msgstr "Taif"

#: my-evolution/Locations.h:2204
msgid "Tainan"
msgstr "Tainan"

#: my-evolution/Locations.h:2205
msgid "Taiwan"
msgstr "Taiwan"

#: my-evolution/Locations.h:2206
msgid "Taiyuan"
msgstr "Taiyuan"

#: my-evolution/Locations.h:2207
msgid "Taiz"
msgstr "Taiz"

#: my-evolution/Locations.h:2208
msgid "Tajima"
msgstr "Tajima"

#: my-evolution/Locations.h:2209
msgid "Takamatsu Airport"
msgstr "Takamatsu Airport"

#: my-evolution/Locations.h:2210
msgid "Talara"
msgstr "Talara"

#: my-evolution/Locations.h:2211
msgid "Talinn"
msgstr "Talinn"

#: my-evolution/Locations.h:2212
msgid "Talkeetna"
msgstr "Talkeetna"

#: my-evolution/Locations.h:2213
msgid "Tallahassee"
msgstr "Tallahassee"

#: my-evolution/Locations.h:2214
msgid "Tamanrasset"
msgstr "Tamanrasset"

#: my-evolution/Locations.h:2215
msgid "Tamanrasset/Aguenna"
msgstr "Tamanrasset/Aguenna"

#: my-evolution/Locations.h:2216
msgid "Tampa"
msgstr "Tampa"

#: my-evolution/Locations.h:2217
msgid "Tampa-Macdill AFB"
msgstr "Tampa-Macdill AFB"

#: my-evolution/Locations.h:2218
msgid "Tampere"
msgstr "Tampere"

#: my-evolution/Locations.h:2219
msgid "Tampico"
msgstr "Tampico"

#: my-evolution/Locations.h:2220
msgid "Tanana"
msgstr "Tanana"

#: my-evolution/Locations.h:2221
msgid "Tanegashima Airport"
msgstr "Tanegashima Airport"

#: my-evolution/Locations.h:2222
msgid "Taos"
msgstr "Taos"

#: my-evolution/Locations.h:2223
msgid "Taoyuan"
msgstr "Taoyuan"

#: my-evolution/Locations.h:2224
msgid "Tapachula"
msgstr "Tapachula"

#: my-evolution/Locations.h:2225
msgid "Taranto"
msgstr "Taranto"

#: my-evolution/Locations.h:2226
msgid "Tarbes"
msgstr "Tarbes"

#: my-evolution/Locations.h:2227
msgid "Tarija"
msgstr "Tarija"

#: my-evolution/Locations.h:2228
msgid "Tarvisio"
msgstr "Tarvisio"

#: my-evolution/Locations.h:2229
msgid "Tatalina"
msgstr "Tatalina"

#: my-evolution/Locations.h:2230
msgid "Tateyama Ab"
msgstr "Tateyama Ab"

#: my-evolution/Locations.h:2231
msgid "Taunton"
msgstr "Taunton"

#: my-evolution/Locations.h:2232
msgid "Tebessa"
msgstr "Tebessa"

#: my-evolution/Locations.h:2233
msgid "Tees-Side"
msgstr "Tees-Side"

#: my-evolution/Locations.h:2234
msgid "Tegucigalpa"
msgstr "Tegucigalpa"

#: my-evolution/Locations.h:2235
msgid "Tehran-Mehrabad"
msgstr ""

#: my-evolution/Locations.h:2236
msgid "Tela"
msgstr "Tela"

#: my-evolution/Locations.h:2237
msgid "Temple"
msgstr "Temple"

#: my-evolution/Locations.h:2238
msgid "Tennessee"
msgstr "Tennessee"

#: my-evolution/Locations.h:2239
msgid "Tepic"
msgstr "Tepic"

#: my-evolution/Locations.h:2240
msgid "Teresina"
msgstr "Teresina"

#: my-evolution/Locations.h:2241
msgid "Terre Haute"
msgstr "Terre Haute"

#: my-evolution/Locations.h:2242
msgid "Terrell"
msgstr "Terrell"

#: my-evolution/Locations.h:2243
msgid "Teterboro"
msgstr "Teterboro"

#: my-evolution/Locations.h:2244
msgid "Texarkana"
msgstr "Texarkana"

#: my-evolution/Locations.h:2245
msgid "Texas"
msgstr "Texas"

#: my-evolution/Locations.h:2246
msgid "The Dalles"
msgstr "The Dalles"

#: my-evolution/Locations.h:2247
msgid "Thessaloniki"
msgstr "Thessaloniki"

#: my-evolution/Locations.h:2248
msgid "Thief River Falls"
msgstr "Thief River Falls"

#: my-evolution/Locations.h:2249
msgid "Thiruvananthapuram"
msgstr "Thiruvananthapuram"

#: my-evolution/Locations.h:2250
msgid "Thisted"
msgstr "Thisted"

#: my-evolution/Locations.h:2251
msgid "Thompson Falls"
msgstr "Thompson Falls"

#: my-evolution/Locations.h:2252
msgid "Thumrait"
msgstr "Thumrait"

#: my-evolution/Locations.h:2253
msgid "Tianjin"
msgstr "Tianjin"

#: my-evolution/Locations.h:2254
msgid "Tijuana"
msgstr "Tijuana"

#: my-evolution/Locations.h:2255
msgid "Timisoara"
msgstr "Timisoara"

#: my-evolution/Locations.h:2256
msgid "Tin City"
msgstr "Tin City"

#: my-evolution/Locations.h:2257
msgid "Tirana"
msgstr "Tirana"

#: my-evolution/Locations.h:2258
msgid "Tiree"
msgstr "Tiree"

#: my-evolution/Locations.h:2259
msgid "Tirgu Mures"
msgstr "Tirgu Mures"

#: my-evolution/Locations.h:2260
msgid "Tiruchchirapalli"
msgstr "Tiruchchirapalli"

#: my-evolution/Locations.h:2261
msgid "Titusville"
msgstr "Titusville"

#: my-evolution/Locations.h:2262
msgid "Tivat"
msgstr "Tivat"

#: my-evolution/Locations.h:2263
msgid "Tlemcen Zenata"
msgstr "Tlemcen Zenata"

#: my-evolution/Locations.h:2264
msgid "Tobias Bolanos"
msgstr "Tobias Bolanos"

#: my-evolution/Locations.h:2265
msgid "Tocumen"
msgstr "Tocumen"

#: my-evolution/Locations.h:2266
msgid "Togiak Village"
msgstr "Togiak Village"

#: my-evolution/Locations.h:2267
msgid "Tokachi GSDF"
msgstr "Tokachi GSDF"

#: my-evolution/Locations.h:2268
msgid "Tokunoshima Island"
msgstr "Tokunoshima Island"

#: my-evolution/Locations.h:2269
msgid "Tokushima Ab"
msgstr "Tokushima Ab"

#: my-evolution/Locations.h:2270
msgid "Tokyo Heliport"
msgstr "Tokyo Heliport"

#: my-evolution/Locations.h:2271
msgid "Tokyo International Airport"
msgstr "Tokyo International Airport"

#: my-evolution/Locations.h:2272
msgid "Tokyo New International Airport"
msgstr "Tokyo New International Airport"

#: my-evolution/Locations.h:2273
msgid "Toledo"
msgstr "Toledo"

#: my-evolution/Locations.h:2274
msgid "Toluca"
msgstr "Toluca"

#: my-evolution/Locations.h:2275
msgid "Tonopah"
msgstr "Tonopah"

#: my-evolution/Locations.h:2276
msgid "Topeka"
msgstr "Topeka"

#: my-evolution/Locations.h:2277
msgid "Topeka-Forbes Field"
msgstr "Topeka-Forbes Field"

#: my-evolution/Locations.h:2278
msgid "Torino/Bric Della Croce"
msgstr "Torino/Bric Della Croce"

#: my-evolution/Locations.h:2279
msgid "Torino/Caselle"
msgstr "Torino/Caselle"

#: my-evolution/Locations.h:2280
msgid "Toronto"
msgstr "Toronto"

#: my-evolution/Locations.h:2281
msgid "Torp"
msgstr "Torp"

#: my-evolution/Locations.h:2282
msgid "Torrance"
msgstr "Torrance"

#: my-evolution/Locations.h:2283
msgid "Torreon"
msgstr "Torreon"

#: my-evolution/Locations.h:2284
msgid "Tottori Airport"
msgstr "Tottori Airport"

#: my-evolution/Locations.h:2285
msgid "Toulouse"
msgstr "Toulouse"

#: my-evolution/Locations.h:2286
msgid "Toul-Rosieres"
msgstr "Toul-Rosieres"

#: my-evolution/Locations.h:2287
msgid "Tours-St-Symphorien"
msgstr "Tours-St-Symphorien"

#: my-evolution/Locations.h:2288
msgid "Toussus-Le Noble"
msgstr "Toussus-Le Noble"

#: my-evolution/Locations.h:2289
msgid "Townsville"
msgstr "Townsville"

#: my-evolution/Locations.h:2290
msgid "Toyama Airport"
msgstr "Toyama Airport"

#: my-evolution/Locations.h:2291
msgid "Trabzon"
msgstr "Trabzon"

#: my-evolution/Locations.h:2292
msgid "Trapani"
msgstr "Trapani"

#: my-evolution/Locations.h:2293
msgid "Traverse City"
msgstr "Traverse City"

#: my-evolution/Locations.h:2294
msgid "Trelew"
msgstr "Trelew"

#: my-evolution/Locations.h:2295
msgid "Trenton"
msgstr "Trenton"

#: my-evolution/Locations.h:2296
msgid "Trevico"
msgstr "Trevico"

#: my-evolution/Locations.h:2297
msgid "Treviso/Istrana"
msgstr "Treviso/Istrana"

#: my-evolution/Locations.h:2298
msgid "Treviso/S.Angelo"
msgstr "Treviso/S.Angelo"

#: my-evolution/Locations.h:2299
msgid "Trieste"
msgstr "Trieste"

#: my-evolution/Locations.h:2300
msgid "Trinidad"
msgstr "Trinidad"

#: my-evolution/Locations.h:2301
msgid "Tripoli"
msgstr "Tripoli"

#: my-evolution/Locations.h:2302
msgid "Tromso/Langnes"
msgstr "Tromsø/Langnes"

#: my-evolution/Locations.h:2303
msgid "Trondheim/Vaernes"
msgstr "Trondheim/Værnes"

#: my-evolution/Locations.h:2304
msgid "Troutdale"
msgstr "Troutdale"

#: my-evolution/Locations.h:2305
msgid "Troyes/Barberey"
msgstr "Troyes/Barberey"

#: my-evolution/Locations.h:2306
msgid "Truckee"
msgstr "Truckee"

#: my-evolution/Locations.h:2307
msgid "Truth or Consequences"
msgstr "Truth or Consequences"

#: my-evolution/Locations.h:2308
msgid "Tsuiki Ab"
msgstr "Tsuiki Ab"

#: my-evolution/Locations.h:2309
msgid "Tsushima Airport"
msgstr "Tsushima Airport"

#: my-evolution/Locations.h:2310
msgid "Tucson"
msgstr "Tucson"

#: my-evolution/Locations.h:2311
msgid "Tucson-Davis AFB"
msgstr "Tucson-Davis AFB"

#: my-evolution/Locations.h:2312
msgid "Tucuman"
msgstr "Tucuman"

#: my-evolution/Locations.h:2313
msgid "Tucumcari"
msgstr "Tucumcari"

#: my-evolution/Locations.h:2314
msgid "Tucurui"
msgstr "Tucurui"

#: my-evolution/Locations.h:2315
msgid "Tulancingo"
msgstr "Tulancingo"

#: my-evolution/Locations.h:2316
msgid "Tulcea"
msgstr "Tulcea"

#: my-evolution/Locations.h:2317
msgid "Tulsa"
msgstr "Tulsa"

#: my-evolution/Locations.h:2318
msgid "Tupelo"
msgstr "Tupelo"

#: my-evolution/Locations.h:2319
msgid "Turaif"
msgstr "Turaif"

#: my-evolution/Locations.h:2320
msgid "Turin"
msgstr "Turin"

#: my-evolution/Locations.h:2321
msgid "Turkey"
msgstr "Tyrkia"

#: my-evolution/Locations.h:2322
msgid "Turku"
msgstr "Turku"

#: my-evolution/Locations.h:2323
msgid "Tuscaloosa"
msgstr "Tuscaloosa"

#: my-evolution/Locations.h:2324
msgid "Tuxtla Gutierrez"
msgstr "Tuxtla Gutierrez"

#: my-evolution/Locations.h:2325
msgid "Twenthe"
msgstr "Twenthe"

#: my-evolution/Locations.h:2326
msgid "Twentynine Palms"
msgstr "Twentynine Palms"

#: my-evolution/Locations.h:2327
msgid "Twin Falls"
msgstr "Twin Falls"

#: my-evolution/Locations.h:2328
msgid "Tyler"
msgstr "Tyler"

#: my-evolution/Locations.h:2329
msgid "Tyndall AFB"
msgstr "Tyndall AFB"

#: my-evolution/Locations.h:2330
msgid "Tyumen"
msgstr "Tyumen"

#: my-evolution/Locations.h:2331
msgid "Uberaba"
msgstr "Uberaba"

#: my-evolution/Locations.h:2332
msgid "Ufa"
msgstr "Ufa"

#: my-evolution/Locations.h:2333
msgid "Ukiah"
msgstr "Ukiah"

#: my-evolution/Locations.h:2334
msgid "Ukraine"
msgstr "Ukrainia"

#: my-evolution/Locations.h:2335
msgid "Ulan-Ude"
msgstr "Ulan-Ude"

#: my-evolution/Locations.h:2336
msgid "Ulsan"
msgstr "Ulsan"

#: my-evolution/Locations.h:2337
msgid "Ulyanovsk"
msgstr "Ulyanovsk"

#: my-evolution/Locations.h:2338
msgid "Umea"
msgstr "Umeå"

#: my-evolution/Locations.h:2339
msgid "Umiat"
msgstr "Umiat"

#: my-evolution/Locations.h:2340
msgid "Unalakleet"
msgstr "Unalakleet"

#: my-evolution/Locations.h:2341
msgid "United Arab Emirates "
msgstr "Sameinte Arabiske Emiratar"

#: my-evolution/Locations.h:2342
msgid "United Kingdom"
msgstr "Storbritannia"

#: my-evolution/Locations.h:2343
msgid "United States"
msgstr "USA"

#: my-evolution/Locations.h:2344
msgid "Unst"
msgstr "Unst"

#: my-evolution/Locations.h:2345
msgid "Upington"
msgstr "Upington"

#: my-evolution/Locations.h:2346
msgid "Uruapan"
msgstr "Uruapan"

#: my-evolution/Locations.h:2347
msgid "Uruguaiana"
msgstr "Uruguaiana"

#: my-evolution/Locations.h:2348
msgid "Uruguay"
msgstr "Uruguay"

#: my-evolution/Locations.h:2349
msgid "Urumqi"
msgstr "Urumqi"

#: my-evolution/Locations.h:2350
msgid "Utah"
msgstr "Utah"

#: my-evolution/Locations.h:2351
msgid "Utica"
msgstr "Utica"

#: my-evolution/Locations.h:2352
msgid "Utrecht/Soesterberg"
msgstr "Utrecht/Soesterberg"

#: my-evolution/Locations.h:2353
msgid "Utsunomiya Ab"
msgstr "Utsunomiya Ab"

#: my-evolution/Locations.h:2354
#, fuzzy
msgid "Uzhgorod"
msgstr "Europa/Uzhgorod"

#: my-evolution/Locations.h:2355
msgid "Vadso"
msgstr "Vadsø"

#: my-evolution/Locations.h:2356
msgid "Vaerlose"
msgstr "Vaerlose"

#: my-evolution/Locations.h:2357
msgid "Vagar"
msgstr "Vagar"

#: my-evolution/Locations.h:2358
msgid "Valdez 2"
msgstr "Valdez 2"

#: my-evolution/Locations.h:2359
msgid "Valdosta"
msgstr "Valdosta"

#: my-evolution/Locations.h:2360
msgid "Valdosta-Moody AFB"
msgstr "Valdosta-Moody AFB"

#: my-evolution/Locations.h:2361
msgid "Valencia"
msgstr "Valencia"

#: my-evolution/Locations.h:2362
msgid "Valentine"
msgstr "Valentine"

#: my-evolution/Locations.h:2363
msgid "Valera*"
msgstr "Valera*"

#: my-evolution/Locations.h:2364
msgid "Valkenburg"
msgstr "Valkenburg"

#: my-evolution/Locations.h:2365
msgid "Valley"
msgstr "Valley"

#: my-evolution/Locations.h:2366
msgid "Valparaiso"
msgstr "Valparaiso"

#: my-evolution/Locations.h:2367
msgid "Valparaiso-Eglin AFB"
msgstr "Valparaiso-Eglin AFB"

#: my-evolution/Locations.h:2368
msgid "Van"
msgstr "Van"

#: my-evolution/Locations.h:2369
msgid "Vancouver"
msgstr "Vancouver"

#: my-evolution/Locations.h:2370
msgid "Vandel"
msgstr "Vandel"

#: my-evolution/Locations.h:2371
msgid "Vandenberg AFB"
msgstr "Vandenberg AFB"

#: my-evolution/Locations.h:2372
msgid "Vandenberg Range"
msgstr "Vandenberg Range"

#: my-evolution/Locations.h:2373
msgid "Van Nuys"
msgstr "Van Nuys"

#: my-evolution/Locations.h:2374
msgid "Varadero"
msgstr "Varadero"

#: my-evolution/Locations.h:2375
msgid "Varanasi/Babatpur"
msgstr "Varanasi/Babatpur"

#: my-evolution/Locations.h:2376
msgid "Varna"
msgstr "Varna"

#: my-evolution/Locations.h:2377
msgid "Vasteras"
msgstr "Vasteras"

#: my-evolution/Locations.h:2378
msgid "Vaxjo"
msgstr "Vãxjõ"

#: my-evolution/Locations.h:2379
msgid "Venezia"
msgstr "Venezia"

#: my-evolution/Locations.h:2380
msgid "Venezuela"
msgstr "Venezuela"

#: my-evolution/Locations.h:2381
msgid "Venice"
msgstr "Venice"

#: my-evolution/Locations.h:2382
msgid "Veracruz"
msgstr "Veracruz"

#: my-evolution/Locations.h:2383
msgid "Vermillion"
msgstr "Vermillion"

#: my-evolution/Locations.h:2384
msgid "Vermont"
msgstr "Vermont"

#: my-evolution/Locations.h:2385
msgid "Vernal"
msgstr "Vernal"

#: my-evolution/Locations.h:2386
msgid "Vero Beach"
msgstr "Vero Beach"

#: my-evolution/Locations.h:2387
msgid "Vicenza"
msgstr "Vicenza"

#: my-evolution/Locations.h:2388
msgid "Vichy-Charmeil"
msgstr "Vichy-Charmeil"

#: my-evolution/Locations.h:2389
msgid "Vichy-Rolla"
msgstr "Vichy-Rolla"

#: my-evolution/Locations.h:2390
msgid "Vicksburg"
msgstr "Vicksburg"

#: my-evolution/Locations.h:2391
msgid "Victoria"
msgstr "Victoria"

#: my-evolution/Locations.h:2392
msgid "Viet Nam"
msgstr "Vietnam"

#: my-evolution/Locations.h:2393
msgid "Vigo"
msgstr "Vigo"

#: my-evolution/Locations.h:2394
msgid "Vilhena"
msgstr "Vilhena"

#: my-evolution/Locations.h:2395
msgid "Villacoublay"
msgstr "Villacoublay"

#: my-evolution/Locations.h:2396
msgid "Villafranca"
msgstr "Villafranca"

#: my-evolution/Locations.h:2397
msgid "Villahermosa"
msgstr "Villahermosa"

#: my-evolution/Locations.h:2398
msgid "Villamontes"
msgstr "Villamontes"

#: my-evolution/Locations.h:2399
msgid "Villa Reynolds"
msgstr "Villa Reynolds"

#: my-evolution/Locations.h:2400
msgid "Vilnius"
msgstr "Vilnius"

#: my-evolution/Locations.h:2401
msgid "Virginia"
msgstr "Virginia"

#: my-evolution/Locations.h:2402
msgid "Virginia Beach"
msgstr "Virginia Beach"

#: my-evolution/Locations.h:2403
msgid "Virginia Tech Airport"
msgstr "Virginia Tech Airport"

#: my-evolution/Locations.h:2404
msgid "Viru-Viru"
msgstr "Viru-Viru"

#: my-evolution/Locations.h:2405
msgid "Visalia"
msgstr "Visalia"

#: my-evolution/Locations.h:2406
msgid "Visby"
msgstr "Visby"

#: my-evolution/Locations.h:2407
msgid "Viterbo"
msgstr "Viterbo"

#: my-evolution/Locations.h:2408
msgid "Vitoria"
msgstr "Vitoria"

#: my-evolution/Locations.h:2409
msgid "Vladikavkaz"
msgstr "Vladikavkaz"

#: my-evolution/Locations.h:2410
msgid "Vladivostok"
msgstr "Vladivostok"

#: my-evolution/Locations.h:2411
msgid "Vlieland"
msgstr "Vlieland"

#: my-evolution/Locations.h:2412
msgid "Vojens/Skrydstrup"
msgstr "Vojens/Skrydstrup"

#: my-evolution/Locations.h:2413
msgid "Volgograd"
msgstr "Volgograd"

#: my-evolution/Locations.h:2414
msgid "Volkel"
msgstr "Volkel"

#: my-evolution/Locations.h:2415
msgid "Volk Field"
msgstr "Volk Field"

#: my-evolution/Locations.h:2416
msgid "Voronezh"
msgstr "Voronezh"

#: my-evolution/Locations.h:2417
msgid "Voslau"
msgstr "Voslau"

#: my-evolution/Locations.h:2418
msgid "Waco"
msgstr "Waco"

#: my-evolution/Locations.h:2419
msgid "Wadi Al Dawasser Airport"
msgstr "Wadi Al Dawasser Airport"

#: my-evolution/Locations.h:2420
msgid "Wainwright"
msgstr "Wainwright"

#: my-evolution/Locations.h:2421
msgid "Wakefield"
msgstr "Wakefield"

#: my-evolution/Locations.h:2422
msgid "Wakkanai Airport"
msgstr "Wakkanai Airport"

#: my-evolution/Locations.h:2423
msgid "Walla Walla"
msgstr "Walla Walla"

#: my-evolution/Locations.h:2424
msgid "Wallops Island"
msgstr "Wallops Island"

#: my-evolution/Locations.h:2425
msgid "Walnut Ridge"
msgstr "Walnut Ridge"

#: my-evolution/Locations.h:2426
msgid "Warner Robins"
msgstr "Warner Robins"

#: my-evolution/Locations.h:2427
msgid "Warroad"
msgstr "Warroad"

#: my-evolution/Locations.h:2428
msgid "Warszawa"
msgstr "Warszawa"

#: my-evolution/Locations.h:2429
msgid "Washington"
msgstr "Washington"

#: my-evolution/Locations.h:2430
msgid "Washington/Dulles"
msgstr "Washington/Dulles"

#: my-evolution/Locations.h:2431
msgid "Waterbury"
msgstr "Waterbury"

#: my-evolution/Locations.h:2432
msgid "Waterloo"
msgstr "Waterloo"

#: my-evolution/Locations.h:2433
msgid "Watertown"
msgstr "Watertown"

#: my-evolution/Locations.h:2434
msgid "Waterville"
msgstr "Waterville"

#: my-evolution/Locations.h:2435
msgid "Waukesha"
msgstr "Waukesha"

#: my-evolution/Locations.h:2436
msgid "Wausau"
msgstr "Wausau"

#: my-evolution/Locations.h:2437
msgid "Waycross"
msgstr "Waycross"

#: my-evolution/Locations.h:2438
msgid "Waynesboro"
msgstr "Waynesboro"

#: my-evolution/Locations.h:2439
msgid "Webster City"
msgstr "Webster City"

#: my-evolution/Locations.h:2440
msgid "Wejh"
msgstr "Wejh"

#: my-evolution/Locations.h:2441
msgid "Wellington"
msgstr "Wellington"

#: my-evolution/Locations.h:2442
msgid "Wenatchee"
msgstr "Wenatchee"

#: my-evolution/Locations.h:2443
msgid "Wendover"
msgstr "Wendover"

#: my-evolution/Locations.h:2444
msgid "West Atlanta"
msgstr "West Atlanta"

#: my-evolution/Locations.h:2445
msgid "West Burke"
msgstr "West Burke"

#: my-evolution/Locations.h:2446
msgid "Westerland"
msgstr "Westerland"

#: my-evolution/Locations.h:2447
msgid "Westfield"
msgstr "Westfield"

#: my-evolution/Locations.h:2448
msgid "Westhampton"
msgstr "Westhampton"

#: my-evolution/Locations.h:2449
msgid "West Palm Beach"
msgstr "West Palm Beach"

#: my-evolution/Locations.h:2450
msgid "West Virginia"
msgstr "West Virginia"

#: my-evolution/Locations.h:2451
msgid "West Yellowstone"
msgstr "West Yellowstone"

#: my-evolution/Locations.h:2452
msgid "West Yellowstone (2)"
msgstr "West Yellowstone (2)"

#: my-evolution/Locations.h:2453
msgid "Wheeling"
msgstr "Wheeling"

#: my-evolution/Locations.h:2454
msgid "Whidbey Island"
msgstr "Whidbey Island"

#: my-evolution/Locations.h:2455
msgid "Whitefield"
msgstr "Whitefield"

#: my-evolution/Locations.h:2456
msgid "White Plains"
msgstr "White Plains"

#: my-evolution/Locations.h:2457
msgid "White Sulphur"
msgstr "White Sulphur"

#: my-evolution/Locations.h:2458
msgid "Whittier"
msgstr "Whittier"

#: my-evolution/Locations.h:2459
msgid "Wichita"
msgstr "Wichita"

#: my-evolution/Locations.h:2460
msgid "Wichita Falls"
msgstr "Wichita Falls"

#: my-evolution/Locations.h:2461
msgid "Wichita-Jabara"
msgstr "Wichita-Jabara"

#: my-evolution/Locations.h:2462
msgid "Wichita-McConnell AFB"
msgstr "Wichita-McConnell AFB"

#: my-evolution/Locations.h:2463
msgid "Wick"
msgstr "Wick"

#: my-evolution/Locations.h:2464
msgid "Wien"
msgstr "Wien"

#: my-evolution/Locations.h:2465
msgid "Wildwood"
msgstr "Wildwood"

#: my-evolution/Locations.h:2466
msgid "Wilkes - Barre"
msgstr "Wilkes - Barre"

#: my-evolution/Locations.h:2467
msgid "Williams Field"
msgstr "Williams Field"

#: my-evolution/Locations.h:2468
msgid "Williamsport"
msgstr "Williamsport"

#: my-evolution/Locations.h:2469
msgid "Williston"
msgstr "Williston"

#: my-evolution/Locations.h:2470
msgid "Willoughby"
msgstr "Willoughby"

#: my-evolution/Locations.h:2471
msgid "Willow Airport"
msgstr "Willow Airport"

#: my-evolution/Locations.h:2472
msgid "Wilmington"
msgstr "Wilmington"

#: my-evolution/Locations.h:2473
msgid "Winchester"
msgstr "Winchester"

#: my-evolution/Locations.h:2474
msgid "Windsor"
msgstr "Windsor"

#: my-evolution/Locations.h:2475
msgid "Windsor Locks"
msgstr "Windsor Locks"

#: my-evolution/Locations.h:2476
msgid "Wink"
msgstr "Wink"

#: my-evolution/Locations.h:2477
msgid "Winnemucca"
msgstr "Winnemucca"

#: my-evolution/Locations.h:2478
msgid "Winnipeg"
msgstr "Winnipeg"

#: my-evolution/Locations.h:2479
msgid "Winslow"
msgstr "Winslow"

#: my-evolution/Locations.h:2480
msgid "Winston-Salem"
msgstr "Winston-Salem"

#: my-evolution/Locations.h:2481
msgid "Winter Haven"
msgstr "Winter Haven"

#: my-evolution/Locations.h:2482
msgid "Winter Park"
msgstr "Winter Park"

#: my-evolution/Locations.h:2483
msgid "Wiscasset"
msgstr "Wiscasset"

#: my-evolution/Locations.h:2484
msgid "Wisconsin"
msgstr "Wisconsin"

#: my-evolution/Locations.h:2485
msgid "Wisconsin Rapids"
msgstr "Wisconsin Rapids"

#: my-evolution/Locations.h:2486
msgid "Wise"
msgstr "Wise"

#: my-evolution/Locations.h:2487
msgid "Woensdrecht"
msgstr "Woensdrecht"

#: my-evolution/Locations.h:2488
msgid "Wolf Point"
msgstr "Wolf Point"

#: my-evolution/Locations.h:2489
msgid "Woong Cheon"
msgstr "Woong Cheon"

#: my-evolution/Locations.h:2490
msgid "Wooster"
msgstr "Wooster"

#: my-evolution/Locations.h:2491
msgid "Worcester"
msgstr "Worcester"

#: my-evolution/Locations.h:2492
msgid "Worland"
msgstr "Worland"

#: my-evolution/Locations.h:2493
msgid "Worthington"
msgstr "Worthington"

#: my-evolution/Locations.h:2494
msgid "Wrangell"
msgstr "Wrangell"

#: my-evolution/Locations.h:2495
msgid "Wrightstown / Mcguire AFB"
msgstr "Wrightstown / Mcguire AFB"

#: my-evolution/Locations.h:2496
msgid "Wuchia Observatory"
msgstr "Wuchia Observatory"

#: my-evolution/Locations.h:2497
msgid "Wyoming"
msgstr "Wyoming"

#: my-evolution/Locations.h:2498
msgid "Xiamen"
msgstr "Xiamen"

#: my-evolution/Locations.h:2499
msgid "Yacuiba"
msgstr "Yacuiba"

#: my-evolution/Locations.h:2500
msgid "Yakima"
msgstr "Yakima"

#: my-evolution/Locations.h:2501
msgid "Yakushima"
msgstr "Yakushima"

#: my-evolution/Locations.h:2502
msgid "Yakutat"
msgstr "Yakutat"

#: my-evolution/Locations.h:2503
msgid "Yakutsk"
msgstr "Yakutsk"

#: my-evolution/Locations.h:2504
msgid "Yamagata Airport"
msgstr "Yamagata Airport"

#: my-evolution/Locations.h:2505
msgid "Yamaguchi Ube Airport"
msgstr "Yamaguchi Ube Airport"

#: my-evolution/Locations.h:2506
msgid "Yankton"
msgstr "Yankton"

#: my-evolution/Locations.h:2507
msgid "Yao Airport"
msgstr "Yao Airport"

#: my-evolution/Locations.h:2508
msgid "Yechon Ab"
msgstr "Yechon Ab"

#: my-evolution/Locations.h:2509
msgid "Yekaterinburg"
msgstr "Yekaterinburg"

#: my-evolution/Locations.h:2510
msgid "Yellowknife"
msgstr "Yellowknife"

#: my-evolution/Locations.h:2511
msgid "Yellowstone"
msgstr "Yellowstone"

#: my-evolution/Locations.h:2512
msgid "Yemen"
msgstr "Yemen"

#: my-evolution/Locations.h:2513
msgid "Yenbo"
msgstr "Yenbo"

#: my-evolution/Locations.h:2514
msgid "Yeoju Range"
msgstr "Yeoju Range"

#: my-evolution/Locations.h:2515
msgid "Yeonpyeungdo"
msgstr "Yeonpyeungdo"

#: my-evolution/Locations.h:2516
msgid "Yeovilton"
msgstr "Yeovilton"

#: my-evolution/Locations.h:2517
msgid "Yokosuka Fwf"
msgstr "Yokosuka Fwf"

#: my-evolution/Locations.h:2518
msgid "Yokota Ab"
msgstr "Yokota Ab"

#: my-evolution/Locations.h:2519
msgid "Yongsan/H-208 Hp"
msgstr "Yongsan/H-208 Hp"

#: my-evolution/Locations.h:2520
msgid "Yoro"
msgstr "Yoro"

#: my-evolution/Locations.h:2521
msgid "Yosu"
msgstr "Yosu"

#: my-evolution/Locations.h:2522
msgid "Youngstown"
msgstr "Youngstown"

#: my-evolution/Locations.h:2523
msgid "Ypsilanti"
msgstr "Ypsilanti"

#: my-evolution/Locations.h:2524
msgid "Yugoslavia"
msgstr "Jugoslavia"

#: my-evolution/Locations.h:2525
msgid "Yukon"
msgstr "Yukon"

#: my-evolution/Locations.h:2526
msgid "Yuma MCAS"
msgstr "Yuma MCAS"

#: my-evolution/Locations.h:2527
msgid "Yurimaguas"
msgstr "Yurimaguas"

#: my-evolution/Locations.h:2528
msgid "Yuzhno-Sakhalinsk"
msgstr "Yuzhno-Sakhalinsk"

#: my-evolution/Locations.h:2529
msgid "Zacatecas"
msgstr "Zacatecas"

#: my-evolution/Locations.h:2530
msgid "Zadar"
msgstr "Zadar"

#: my-evolution/Locations.h:2531
msgid "Zagreb"
msgstr "Zagreb"

#: my-evolution/Locations.h:2532
msgid "Zakinthos"
msgstr "Zakinthos"

#: my-evolution/Locations.h:2533
msgid "Zama Airfield"
msgstr "Zama Airfield"

#: my-evolution/Locations.h:2534
msgid "Zanesville"
msgstr "Zanesville"

#: my-evolution/Locations.h:2535
msgid "Zaragoza"
msgstr "Zaragoza"

#: my-evolution/Locations.h:2536
msgid "Zell Am See"
msgstr "Zell Am See"

#: my-evolution/Locations.h:2537
msgid "Zuni Pueblo"
msgstr "Zuni Pueblo"

#: my-evolution/Locations.h:2538
msgid "Zurich"
msgstr "Zürich"

#: my-evolution/component-factory.c:44
msgid "Folder containing the Evolution Summary"
msgstr ""

#: my-evolution/component-factory.c:153
#, fuzzy
msgid "Cannot initialize Evolution's Summary component."
msgstr "Kan ikkje initialisera lokale variablar"

#: my-evolution/e-summary-calendar.c:340 my-evolution/e-summary-calendar.c:358
msgid "Appointments"
msgstr "Avtalar"

#: my-evolution/e-summary-calendar.c:341
msgid "No appointments"
msgstr "Ingen avtalar"

#: my-evolution/e-summary-calendar.c:375
msgid "%k:%M %d %B"
msgstr "%k:%M %d. %B"

#: my-evolution/e-summary-calendar.c:377
msgid "%l:%M %d %B"
msgstr "%l:%M %d %B"

#: my-evolution/e-summary-calendar.c:395
msgid "No description"
msgstr "Ingen skildring"

#: my-evolution/e-summary-mail.c:129
msgid "Mail summary"
msgstr "Postsamandrag"

#. translators: Put a list of codes for locations you want to see in
#. My Evolution by default here. You can find the list of all
#. stations and their codes in Evolution sources.
#. (evolution/my-evolution/Locations)
#. Codes are seperated with : eg. "KBOS:EGAA"
#: my-evolution/e-summary-preferences.c:81
#: my-evolution/e-summary-weather.c:606
msgid "KBOS"
msgstr "ENOV:ENGM"

#: my-evolution/e-summary-preferences.c:445
msgid "Dictionary.com Word of the Day"
msgstr "Dictinary.com Ord for dagen"

#: my-evolution/e-summary-preferences.c:466
msgid "Quotes of the Day"
msgstr "Tips for dagen"

#: my-evolution/e-summary-preferences.c:946
msgid "Add a news feed"
msgstr "Legg til ei nyhendekjelde"

#: my-evolution/e-summary-preferences.c:954
msgid "Enter the URL of the news feed you wish to add"
msgstr "Oppgi URLen på den nyhendekjelda du vil leggje til"

#: my-evolution/e-summary-preferences.c:958
msgid "Name:"
msgstr "Namn:"

#: my-evolution/e-summary-preferences.c:1504
msgid "Summary Settings"
msgstr "Innstillingar for samandrag"

#: my-evolution/e-summary-rdf.c:300
msgid "Error downloading RDF"
msgstr "Feil ved nedlasting av RDF"

#: my-evolution/e-summary-rdf.c:443
msgid "News Feed"
msgstr "Nyhendekjelde"

#: my-evolution/e-summary-tasks.c:241
msgid "No tasks"
msgstr "Ingen oppgåver"

#: my-evolution/e-summary-tasks.c:281
msgid "(No Description)"
msgstr "(Ingen skildring)"

#: my-evolution/e-summary-weather.c:70
msgid "My Weather"
msgstr "Mitt vêr"

#: my-evolution/e-summary-weather.c:504
msgid "Weather"
msgstr "Vêr"

#: my-evolution/e-summary-weather.c:667
msgid "Regions"
msgstr "Områder"

#: my-evolution/e-summary.c:190
msgid "%A, %B %e %Y"
msgstr "%A, %e %B %Y"

#: my-evolution/e-summary.c:475
msgid "Please wait..."
msgstr "Venlegast vent ..."

#: my-evolution/e-summary.c:566 ui/my-evolution.xml.h:3
msgid "Print Summary"
msgstr "Skriv ut samandrag"

#: my-evolution/e-summary.c:612
msgid "Printing of Summary failed"
msgstr "Utskrift av samandrag feila"

#: my-evolution/main.c:65
#, fuzzy
msgid "Executive summary component could not initialize Bonobo.\n"
msgstr "Kunne ikkje initiere Bonobo"

#: my-evolution/metar.c:29
msgid " F"
msgstr " F"

#: my-evolution/metar.c:29
msgid " C"
msgstr " C"

#: my-evolution/metar.c:33
msgid "knots"
msgstr "knop"

#: my-evolution/metar.c:33
msgid "kph"
msgstr "km/t"

#: my-evolution/metar.c:38
msgid "inHg"
msgstr "inHg"

#: my-evolution/metar.c:38
msgid "mmHg"
msgstr "mmHg"

#: my-evolution/metar.c:41
msgid "miles"
msgstr "engelske mil"

#: my-evolution/metar.c:41
msgid "kilometers"
msgstr "kilometer"

#: my-evolution/metar.c:44
msgid "Clear sky"
msgstr "Klar himmel"

#: my-evolution/metar.c:45
msgid "Broken clouds"
msgstr "Oppbrotne skyer"

#: my-evolution/metar.c:46
msgid "Scattered clouds"
msgstr "Spreidde skyer"

#: my-evolution/metar.c:47
msgid "Few clouds"
msgstr "Få skyer"

#: my-evolution/metar.c:48
msgid "Overcast"
msgstr "Overskya"

#: my-evolution/metar.c:56 my-evolution/metar.c:74 my-evolution/metar.c:485
msgid "Invalid"
msgstr "Ugyldig"

#: my-evolution/metar.c:63
msgid "Variable"
msgstr "Variabel"

#: my-evolution/metar.c:64
msgid "North"
msgstr "Nord"

#: my-evolution/metar.c:64
msgid "North - NorthEast"
msgstr "Nord - Nordaust"

#: my-evolution/metar.c:64
msgid "Northeast"
msgstr "Nordaust"

#: my-evolution/metar.c:64
msgid "East - NorthEast"
msgstr "Aust - Nordaust"

#: my-evolution/metar.c:65
msgid "East"
msgstr "Aust"

#: my-evolution/metar.c:65
msgid "East - Southeast"
msgstr "Aust - Søraust"

#: my-evolution/metar.c:65
msgid "Southeast"
msgstr "Søraust"

#: my-evolution/metar.c:65
msgid "South - Southeast"
msgstr "Sør - Søraust"

#: my-evolution/metar.c:66
msgid "South"
msgstr "Sør"

#: my-evolution/metar.c:66
msgid "South - Southwest"
msgstr "Sør - Sørvest"

#: my-evolution/metar.c:66
msgid "Southwest"
msgstr "Sørvest"

#: my-evolution/metar.c:66
msgid "West - Southwest"
msgstr "Vest - Sørvest"

#: my-evolution/metar.c:67
msgid "West"
msgstr "Vest"

#: my-evolution/metar.c:67
msgid "West - Northwest"
msgstr "Vest - Nordvest"

#: my-evolution/metar.c:67
msgid "Northwest"
msgstr "Nordvest"

#: my-evolution/metar.c:67
msgid "North - Northwest"
msgstr "Nord - Nordvest"

#. DRIZZLE
#: my-evolution/metar.c:127
msgid "Drizzle"
msgstr "Småregn"

#: my-evolution/metar.c:128
msgid "Drizzle in the vicinity"
msgstr "Småregn i området"

#: my-evolution/metar.c:129
msgid "Light drizzle"
msgstr "Lett småregn"

#: my-evolution/metar.c:130
msgid "Moderate drizzle"
msgstr "Moderat småregn"

#: my-evolution/metar.c:131
msgid "Heavy drizzle"
msgstr "Tungt småregn"

#: my-evolution/metar.c:132
msgid "Shallow drizzle"
msgstr "Tynt småregn"

#: my-evolution/metar.c:133
msgid "Patches of drizzle"
msgstr "Regnbyger"

#: my-evolution/metar.c:134
msgid "Partial drizzle"
msgstr "Delvis småregn"

#: my-evolution/metar.c:135 my-evolution/metar.c:150
msgid "Thunderstorm"
msgstr "Tordenstorm"

#: my-evolution/metar.c:136
msgid "Windy drizzle"
msgstr "Småregn med vind"

#: my-evolution/metar.c:137
msgid "Showers"
msgstr "Regnbyger"

#: my-evolution/metar.c:138
msgid "Drifting drizzle"
msgstr "Drivande småregn"

#: my-evolution/metar.c:139
msgid "Freezing drizzle"
msgstr "Frysande småregn"

#. RAIN
#: my-evolution/metar.c:142
msgid "Rain"
msgstr "Regn"

#: my-evolution/metar.c:143
msgid "Rain in the vicinity"
msgstr "Regn i området"

#: my-evolution/metar.c:144
msgid "Light rain"
msgstr "Lett regn"

#: my-evolution/metar.c:145
msgid "Moderate rain"
msgstr "Moderat regn"

#: my-evolution/metar.c:146
msgid "Heavy rain"
msgstr "Tungt regn"

#: my-evolution/metar.c:147
msgid "Shallow rain"
msgstr "Tynt regn"

#: my-evolution/metar.c:148
msgid "Patches of rain"
msgstr "Regnbyger"

#: my-evolution/metar.c:149
msgid "Partial rainfall"
msgstr "Delvis regn"

#: my-evolution/metar.c:151
msgid "Blowing rainfall"
msgstr "Regn med vind"

#: my-evolution/metar.c:152
msgid "Rain showers"
msgstr "Regnbyger"

#: my-evolution/metar.c:153
msgid "Drifting rain"
msgstr "Drivande regn"

#: my-evolution/metar.c:154
msgid "Freezing rain"
msgstr "Frysande regn"

#. SNOW
#: my-evolution/metar.c:157
msgid "Snow"
msgstr "Snø"

#: my-evolution/metar.c:158
msgid "Snow in the vicinity"
msgstr "Snø i nærleiken"

#: my-evolution/metar.c:159
msgid "Light snow"
msgstr "Lett snø"

#: my-evolution/metar.c:160
msgid "Moderate snow"
msgstr "Moderat snø"

#: my-evolution/metar.c:161
msgid "Heavy snow"
msgstr "Tung snø"

#: my-evolution/metar.c:162
msgid "Shallow snow"
msgstr "Grunn snø"

#: my-evolution/metar.c:163
msgid "Patches of snow"
msgstr "Delvise snøbyger"

#: my-evolution/metar.c:164
msgid "Partial snowfall"
msgstr "Delvis snøfall"

#: my-evolution/metar.c:165 my-evolution/metar.c:180
msgid "Snowstorm"
msgstr "Snøstorm"

#: my-evolution/metar.c:166
msgid "Blowing snowfall"
msgstr "Snø og vind"

#: my-evolution/metar.c:167
msgid "Snow showers"
msgstr "Snøbyger"

#: my-evolution/metar.c:168
msgid "Drifting snow"
msgstr "Drivande snø"

#: my-evolution/metar.c:169
msgid "Freezing snow"
msgstr "Frysande snø"

#. SNOW_GRAINS
#: my-evolution/metar.c:172
msgid "Snow grains"
msgstr "Snøkorn"

#: my-evolution/metar.c:173
msgid "Snow grains in the vicinity"
msgstr "Snøkorn i nærleiken"

#: my-evolution/metar.c:174
#, fuzzy
msgid "Light snow grains"
msgstr "Lett snøkorn"

#: my-evolution/metar.c:175
msgid "Moderate snow grains"
msgstr ""

#: my-evolution/metar.c:176
#, fuzzy
msgid "Heavy snow grains"
msgstr "Tunge snøkorn"

#: my-evolution/metar.c:177
#, fuzzy
msgid "Shallow snow grains"
msgstr "Vis &informasjon"

#: my-evolution/metar.c:178
#, fuzzy
msgid "Patches of snow grains"
msgstr "Stiar til spooler-kommandoar:"

#: my-evolution/metar.c:179
msgid "Partial snow grains"
msgstr ""

#: my-evolution/metar.c:181
#, fuzzy
msgid "Blowing snow grains"
msgstr "Rekningsinformasjon"

#: my-evolution/metar.c:182
#, fuzzy
msgid "Snow grain showers"
msgstr "Vis skjulte ressursar"

#: my-evolution/metar.c:183
msgid "Drifting snow grains"
msgstr ""

#: my-evolution/metar.c:184
msgid "Freezing snow grains"
msgstr ""

#. ICE_CRYSTALS
#: my-evolution/metar.c:187
#, fuzzy
msgid "Ice crystals"
msgstr "Iskrystallar"

#: my-evolution/metar.c:188
msgid "Ice crystals in the vicinity"
msgstr ""

#: my-evolution/metar.c:189
msgid "Few ice crystals"
msgstr "Noken iskrystallar"

#: my-evolution/metar.c:190
msgid "Moderate ice crystals"
msgstr ""

#: my-evolution/metar.c:191
msgid "Heavy ice crystals"
msgstr "Tungt med iskrystallar"

#: my-evolution/metar.c:193
msgid "Patches of ice crystals"
msgstr ""

#: my-evolution/metar.c:194
msgid "Partial ice crystals"
msgstr ""

#: my-evolution/metar.c:195
msgid "Ice crystal storm"
msgstr ""

#: my-evolution/metar.c:196
msgid "Blowing ice crystals"
msgstr ""

#: my-evolution/metar.c:197
msgid "Showers of ice crystals"
msgstr ""

#: my-evolution/metar.c:198
msgid "Drifting ice crystals"
msgstr ""

#: my-evolution/metar.c:199
msgid "Freezing ice crystals"
msgstr ""

#. ICE_PELLETS
#: my-evolution/metar.c:202
msgid "Ice pellets"
msgstr ""

#: my-evolution/metar.c:203
msgid "Ice pellets in the vicinity"
msgstr ""

#: my-evolution/metar.c:204
#, fuzzy
msgid "Few ice pellets"
msgstr "Ny snill-verdi:"

#: my-evolution/metar.c:205
#, fuzzy
msgid "Moderate ice pellets"
msgstr "Slå saman celler"

#: my-evolution/metar.c:206
msgid "Heavy ice pellets"
msgstr ""

#: my-evolution/metar.c:207
#, fuzzy
msgid "Shallow ice pellets"
msgstr "Vis klientar"

#: my-evolution/metar.c:208
msgid "Patches of ice pellets"
msgstr ""

#: my-evolution/metar.c:209
#, fuzzy
msgid "Partial ice pellets"
msgstr "Tilgjengelege appletar"

#: my-evolution/metar.c:210
msgid "Ice pellet storm"
msgstr ""

#: my-evolution/metar.c:211
msgid "Blowing ice pellets"
msgstr ""

#: my-evolution/metar.c:212
msgid "Showers of ice pellets"
msgstr ""

#: my-evolution/metar.c:213
#, fuzzy
msgid "Drifting ice pellets"
msgstr "Skriv indeksfil"

#: my-evolution/metar.c:214
msgid "Freezing ice pellets"
msgstr ""

#: my-evolution/metar.c:218
msgid "Hail in the vicinity"
msgstr "Hagl i nærleiken"

#: my-evolution/metar.c:219 my-evolution/metar.c:234
msgid "Light hail"
msgstr "Lett Hagl"

#: my-evolution/metar.c:220
msgid "Moderate hail"
msgstr "Moderat hagl"

#: my-evolution/metar.c:221
msgid "Heavy hail"
msgstr "Tungt hagl"

#: my-evolution/metar.c:222
#, fuzzy
msgid "Shallow hail"
msgstr "Vis &alle"

#: my-evolution/metar.c:223
#, fuzzy
msgid "Patches of hail"
msgstr "Endringsdato"

#: my-evolution/metar.c:224
#, fuzzy
msgid "Partial hail"
msgstr "Kritisk feil"

#: my-evolution/metar.c:225
msgid "Hailstorm"
msgstr "Haglstorm"

#: my-evolution/metar.c:226
#, fuzzy
msgid "Blowing hail"
msgstr "lastar fil"

#: my-evolution/metar.c:227
#, fuzzy
msgid "Hail showers"
msgstr "Ekte brukarar"

#: my-evolution/metar.c:228
#, fuzzy
msgid "Drifting hail"
msgstr "Utskrift mislukkast."

#: my-evolution/metar.c:229
#, fuzzy
msgid "Freezing hail"
msgstr "Mottek e-post"

#. SMALL_HAIL
#: my-evolution/metar.c:232
#, fuzzy
msgid "Small hail"
msgstr "Lite"

#: my-evolution/metar.c:233
msgid "Small hail in the vicinity"
msgstr ""

#: my-evolution/metar.c:235
msgid "Moderate small hail"
msgstr ""

#: my-evolution/metar.c:236
msgid "Heavy small hail"
msgstr ""

#: my-evolution/metar.c:237
#, fuzzy
msgid "Shallow small hail"
msgstr "Vis &heile meldingshovudet"

#: my-evolution/metar.c:238
msgid "Patches of small hail"
msgstr ""

#: my-evolution/metar.c:239
msgid "Partial small hail"
msgstr ""

#: my-evolution/metar.c:240
msgid "Small hailstorm"
msgstr "Liten haglstorm"

#: my-evolution/metar.c:241
#, fuzzy
msgid "Blowing small hail"
msgstr "Lukkar alle filer ..."

#: my-evolution/metar.c:242
msgid "Showers of small hail"
msgstr ""

#: my-evolution/metar.c:243
#, fuzzy
msgid "Drifting small hail"
msgstr "Tradisjonell KMail"

#: my-evolution/metar.c:244
msgid "Freezing small hail"
msgstr ""

#. PRECIPITATION
#: my-evolution/metar.c:247
#, fuzzy
msgid "Unknown precipitation"
msgstr "Kjende program"

#: my-evolution/metar.c:248
msgid "Precipitation in the vicinity"
msgstr ""

#: my-evolution/metar.c:249
#, fuzzy
msgid "Light precipitation"
msgstr "Lett regn"

#: my-evolution/metar.c:250
#, fuzzy
msgid "Moderate precipitation"
msgstr "Lågare presisjon"

#: my-evolution/metar.c:251
#, fuzzy
msgid "Heavy precipitation"
msgstr "Anna program"

#: my-evolution/metar.c:252
#, fuzzy
msgid "Shallow precipitation"
msgstr "Vis &skildring"

#: my-evolution/metar.c:253
#, fuzzy
msgid "Patches of precipitation"
msgstr "Stioppsett"

#: my-evolution/metar.c:254
#, fuzzy
msgid "Partial precipitation"
msgstr "Pilot-program"

#: my-evolution/metar.c:255
msgid "Unknown thunderstorm"
msgstr "Ukjend tordenstorm"

#: my-evolution/metar.c:256
#, fuzzy
msgid "Blowing precipitation"
msgstr "Blåsande nedbør"

#: my-evolution/metar.c:257
#, fuzzy
msgid "Showers, type unknown"
msgstr "Ukjend port"

#: my-evolution/metar.c:258
#, fuzzy
msgid "Drifting precipitation"
msgstr "Feil spesifikasjon av port."

#: my-evolution/metar.c:259
#, fuzzy
msgid "Freezing precipitation"
msgstr "Feil spesifikasjon av port."

#. MIST
#: my-evolution/metar.c:262
msgid "Mist"
msgstr "Tåke"

#: my-evolution/metar.c:263
msgid "Mist in the vicinity"
msgstr "Tåke i nærleiken"

#: my-evolution/metar.c:264
msgid "Light mist"
msgstr "Lett tåke"

#: my-evolution/metar.c:265
msgid "Moderate mist"
msgstr "Moderat tåke"

#: my-evolution/metar.c:266
#, fuzzy
msgid "Thick mist"
msgstr "Kallenamn-liste"

#: my-evolution/metar.c:267
#, fuzzy
msgid "Shallow mist"
msgstr "Vis eining"

#: my-evolution/metar.c:268
#, fuzzy
msgid "Patches of mist"
msgstr "Lappar og anna"

#: my-evolution/metar.c:269
#, fuzzy
msgid "Partial mist"
msgstr "Innleggliste"

#: my-evolution/metar.c:271
#, fuzzy
msgid "Mist with wind"
msgstr "Maksimer vindauget"

#: my-evolution/metar.c:273
#, fuzzy
msgid "Drifting mist"
msgstr "Utskriftsmetode"

#: my-evolution/metar.c:274
#, fuzzy
msgid "Freezing mist"
msgstr "Skrifttype for helsing"

#. FOG
#: my-evolution/metar.c:277
msgid "Fog"
msgstr "Tåke"

#: my-evolution/metar.c:278
msgid "Fog in the vicinity"
msgstr ""

#: my-evolution/metar.c:279
msgid "Light fog"
msgstr "Lett tåke"

#: my-evolution/metar.c:280
#, fuzzy
msgid "Moderate fog"
msgstr "moderert"

#: my-evolution/metar.c:281
msgid "Thick fog"
msgstr "Tjukk tåke"

#: my-evolution/metar.c:282
#, fuzzy
msgid "Shallow fog"
msgstr "Vis &logg"

#: my-evolution/metar.c:283
#, fuzzy
msgid "Patches of fog"
msgstr "Lappar og anna"

#: my-evolution/metar.c:284
msgid "Partial fog"
msgstr "Delvis tåke"

#: my-evolution/metar.c:286
msgid "Fog with wind"
msgstr "Tåke med vind"

#: my-evolution/metar.c:288
#, fuzzy
msgid "Drifting fog"
msgstr "Skrifttype for helsing"

#: my-evolution/metar.c:289
#, fuzzy
msgid "Freezing fog"
msgstr "Skrifttype for helsing"

#. SMOKE
#: my-evolution/metar.c:292
msgid "Smoke"
msgstr "Røyk"

#: my-evolution/metar.c:293
msgid "Smoke in the vicinity"
msgstr ""

#: my-evolution/metar.c:294
msgid "Thin smoke"
msgstr "Tynn røyk"

#: my-evolution/metar.c:295
#, fuzzy
msgid "Moderate smoke"
msgstr "Format"

#: my-evolution/metar.c:296
#, fuzzy
msgid "Thick smoke"
msgstr "&Ur-modus"

#: my-evolution/metar.c:297
#, fuzzy
msgid "Shallow smoke"
msgstr "Vis meny"

#: my-evolution/metar.c:298
#, fuzzy
msgid "Patches of smoke"
msgstr "Lappar og anna"

#: my-evolution/metar.c:299
#, fuzzy
msgid "Partial smoke"
msgstr "Variabelnamn"

#: my-evolution/metar.c:300
#, fuzzy
msgid "Thunderous smoke"
msgstr "Skiljeteikn for tusental:"

#: my-evolution/metar.c:301
msgid "Smoke with wind"
msgstr "Røyk med vind"

#: my-evolution/metar.c:303
#, fuzzy
msgid "Drifting smoke"
msgstr "&Teiknemodus"

#. VOLCANIC_ASH
#: my-evolution/metar.c:307
msgid "Volcanic ash"
msgstr "Vulkansk oske"

#: my-evolution/metar.c:308
msgid "Volcanic ash in the vicinity"
msgstr ""

#: my-evolution/metar.c:310
msgid "Moderate volcanic ash"
msgstr ""

#: my-evolution/metar.c:311
msgid "Thick volcanic ash"
msgstr "Tjukk vulkansk oske"

#: my-evolution/metar.c:312
msgid "Shallow volcanic ash"
msgstr ""

#: my-evolution/metar.c:313
msgid "Patches of volcanic ash"
msgstr "Lappar med vulkansk oske"

#: my-evolution/metar.c:314
msgid "Partial volcanic ash"
msgstr ""

#: my-evolution/metar.c:315
#, fuzzy
msgid "Thunderous volcanic ash"
msgstr "Stiar til spooler-kommandoar:"

#: my-evolution/metar.c:316
msgid "Blowing volcanic ash"
msgstr ""

#: my-evolution/metar.c:317
#, fuzzy
msgid "Showers of volcanic ash"
msgstr "Stiar til spooler-kommandoar:"

#: my-evolution/metar.c:318
msgid "Drifting volcanic ash"
msgstr ""

#: my-evolution/metar.c:319
msgid "Freezing volcanic ash"
msgstr ""

#. SAND
#: my-evolution/metar.c:322
msgid "Sand"
msgstr "Sand"

#: my-evolution/metar.c:323
msgid "Sand in the vicinity"
msgstr ""

#: my-evolution/metar.c:324
msgid "Light sand"
msgstr "Lett sand"

#: my-evolution/metar.c:325
#, fuzzy
msgid "Moderate sand"
msgstr "moderert"

#: my-evolution/metar.c:326
#, fuzzy
msgid "Heavy sand"
msgstr "Spel lyd"

#: my-evolution/metar.c:328
#, fuzzy
msgid "Patches of sand"
msgstr "Lappar og anna"

#: my-evolution/metar.c:329
#, fuzzy
msgid "Partial sand"
msgstr "Marshalløyane"

#: my-evolution/metar.c:331
#, fuzzy
msgid "Blowing sand"
msgstr "lastar fil"

#: my-evolution/metar.c:333
#, fuzzy
msgid "Drifting sand"
msgstr "Redigeringsko&mmando"

#. HAZE
#: my-evolution/metar.c:337
#, fuzzy
msgid "Haze"
msgstr "Hz"

#: my-evolution/metar.c:338
msgid "Haze in the vicinity"
msgstr ""

#: my-evolution/metar.c:339
#, fuzzy
msgid "Light haze"
msgstr "Høgrehendt"

#: my-evolution/metar.c:340
#, fuzzy
msgid "Moderate haze"
msgstr "moderert"

#: my-evolution/metar.c:341
#, fuzzy
msgid "Thick haze"
msgstr "&Breidd"

#: my-evolution/metar.c:342
#, fuzzy
msgid "Shallow haze"
msgstr "Vis dato"

#: my-evolution/metar.c:343
#, fuzzy
msgid "Patches of haze"
msgstr "Endringsdato"

#: my-evolution/metar.c:344
#, fuzzy
msgid "Partial haze"
msgstr "Variabelnamn"

#: my-evolution/metar.c:346
#, fuzzy
msgid "Haze with wind"
msgstr "Maksimer vindauget"

#: my-evolution/metar.c:348
#, fuzzy
msgid "Drifting haze"
msgstr "Utskrift mislukkast."

#: my-evolution/metar.c:349
#, fuzzy
msgid "Freezing haze"
msgstr "Ledig storleik"

#. SPRAY
#: my-evolution/metar.c:352
#, fuzzy
msgid "Spray"
msgstr "Sprut"

#: my-evolution/metar.c:353
#, fuzzy
msgid "Spray in the vicinity"
msgstr "Vis &linjetal"

#: my-evolution/metar.c:354
#, fuzzy
msgid "Light spray"
msgstr "Høgrehendt"

#: my-evolution/metar.c:355
#, fuzzy
msgid "Moderate spray"
msgstr "moderert"

#: my-evolution/metar.c:356
#, fuzzy
msgid "Heavy spray"
msgstr "Spel lyd"

#: my-evolution/metar.c:357
#, fuzzy
msgid "Shallow spray"
msgstr "Vis brukarar"

#: my-evolution/metar.c:358
#, fuzzy
msgid "Patches of spray"
msgstr "Lappar og anna"

#: my-evolution/metar.c:359
#, fuzzy
msgid "Partial spray"
msgstr "Marshalløyane"

#: my-evolution/metar.c:361
#, fuzzy
msgid "Blowing spray"
msgstr "lastar fil"

#: my-evolution/metar.c:363
#, fuzzy
msgid "Drifting spray"
msgstr "Skriv med grånyansar"

#: my-evolution/metar.c:364
#, fuzzy
msgid "Freezing spray"
msgstr "&Helsingstekst:"

#. DUST
#: my-evolution/metar.c:367
msgid "Dust"
msgstr "Støv"

#: my-evolution/metar.c:368
msgid "Dust in the vicinity"
msgstr ""

#: my-evolution/metar.c:369
#, fuzzy
msgid "Light dust"
msgstr "Lyse felt"

#: my-evolution/metar.c:370
#, fuzzy
msgid "Moderate dust"
msgstr "moderert"

#: my-evolution/metar.c:371
#, fuzzy
msgid "Heavy dust"
msgstr "Emneliste"

#: my-evolution/metar.c:373
#, fuzzy
msgid "Patches of dust"
msgstr "pakkar ut"

#: my-evolution/metar.c:374
msgid "Partial dust"
msgstr ""

#: my-evolution/metar.c:376
#, fuzzy
msgid "Blowing dust"
msgstr "Blinkande prikkar"

#: my-evolution/metar.c:378
#, fuzzy
msgid "Drifting dust"
msgstr "Skriv dokument"

#. SQUALL
#: my-evolution/metar.c:382
#, fuzzy
msgid "Squall"
msgstr "Lite"

#: my-evolution/metar.c:383
msgid "Squall in the vicinity"
msgstr ""

#: my-evolution/metar.c:384
#, fuzzy
msgid "Light squall"
msgstr "Lista er full"

#: my-evolution/metar.c:385
msgid "Moderate squall"
msgstr ""

#: my-evolution/metar.c:386
msgid "Heavy squall"
msgstr ""

#: my-evolution/metar.c:389
#, fuzzy
msgid "Partial squall"
msgstr "Parallell"

#: my-evolution/metar.c:390
msgid "Thunderous squall"
msgstr ""

#: my-evolution/metar.c:391
msgid "Blowing squall"
msgstr ""

#: my-evolution/metar.c:393
msgid "Drifting squall"
msgstr ""

#: my-evolution/metar.c:394
msgid "Freezing squall"
msgstr ""

#. SANDSTORM
#: my-evolution/metar.c:397
msgid "Sandstorm"
msgstr "Sandstorm"

#: my-evolution/metar.c:398
msgid "Sandstorm in the vicinity"
msgstr ""

#: my-evolution/metar.c:399
msgid "Light standstorm"
msgstr ""

#: my-evolution/metar.c:400
#, fuzzy
msgid "Moderate sandstorm"
msgstr "Fjernare"

#: my-evolution/metar.c:401
msgid "Heavy sandstorm"
msgstr ""

#: my-evolution/metar.c:402
#, fuzzy
msgid "Shallow sandstorm"
msgstr "Vis sekund"

#: my-evolution/metar.c:404
#, fuzzy
msgid "Partial sandstorm"
msgstr "Marshalløyane"

#: my-evolution/metar.c:405
#, fuzzy
msgid "Thunderous sandstorm"
msgstr "Skiljeteikn for tusental:"

#: my-evolution/metar.c:406
#, fuzzy
msgid "Blowing sandstorm"
msgstr "&Under redigeringsvindauget"

#: my-evolution/metar.c:408
msgid "Drifting sandstorm"
msgstr ""

#: my-evolution/metar.c:409
msgid "Freezing sandstorm"
msgstr ""

#. DUSTSTORM
#: my-evolution/metar.c:412
msgid "Duststorm"
msgstr "Støvstorm"

#: my-evolution/metar.c:413
msgid "Duststorm in the vicinity"
msgstr ""

#: my-evolution/metar.c:414
#, fuzzy
msgid "Light duststorm"
msgstr "Høgre knapp"

#: my-evolution/metar.c:415
#, fuzzy
msgid "Moderate duststorm"
msgstr "Fjernare"

#: my-evolution/metar.c:416
msgid "Heavy duststorm"
msgstr ""

#: my-evolution/metar.c:417
msgid "Shallow duststorm"
msgstr ""

#: my-evolution/metar.c:419
msgid "Partial duststorm"
msgstr ""

#: my-evolution/metar.c:420
msgid "Thunderous duststorm"
msgstr ""

#: my-evolution/metar.c:421
#, fuzzy
msgid "Blowing duststorm"
msgstr "Blinkande prikkar"

#: my-evolution/metar.c:423
msgid "Drifting duststorm"
msgstr ""

#: my-evolution/metar.c:424
msgid "Freezing duststorm"
msgstr ""

#. FUNNEL_CLOUD
#: my-evolution/metar.c:427
msgid "Funnel cloud"
msgstr ""

#: my-evolution/metar.c:428
msgid "Funnel cloud in the vicinity"
msgstr ""

#: my-evolution/metar.c:429
msgid "Light funnel cloud"
msgstr ""

#: my-evolution/metar.c:430
msgid "Moderate funnel cloud"
msgstr ""

#: my-evolution/metar.c:431
msgid "Thick funnel cloud"
msgstr ""

#: my-evolution/metar.c:432
#, fuzzy
msgid "Shallow funnel cloud"
msgstr "Vis &linjetal"

#: my-evolution/metar.c:433
msgid "Patches of funnel clouds"
msgstr ""

#: my-evolution/metar.c:434
msgid "Partial funnel clouds"
msgstr ""

#: my-evolution/metar.c:436
msgid "Funnel cloud w/ wind"
msgstr ""

#: my-evolution/metar.c:438
msgid "Drifting funnel cloud"
msgstr ""

#. TORNADO
#: my-evolution/metar.c:442 my-evolution/metar.c:451
msgid "Tornado"
msgstr "Tornado"

#: my-evolution/metar.c:443
msgid "Tornado in the vicinity"
msgstr ""

#: my-evolution/metar.c:445
msgid "Moderate tornado"
msgstr "Moderat tornado"

#: my-evolution/metar.c:446
msgid "Raging tornado"
msgstr "Rasande tornado"

#: my-evolution/metar.c:449
#, fuzzy
msgid "Partial tornado"
msgstr "Partisjonar"

#: my-evolution/metar.c:450
msgid "Thunderous tornado"
msgstr ""

#: my-evolution/metar.c:453
#, fuzzy
msgid "Drifting tornado"
msgstr "Utskriftsmetode"

#: my-evolution/metar.c:454
#, fuzzy
msgid "Freezing tornado"
msgstr "Skrifttype for helsing"

#. DUST_WHIRLS
#: my-evolution/metar.c:457
msgid "Dust whirls"
msgstr ""

#: my-evolution/metar.c:458
msgid "Dust whirls in the vicinity"
msgstr ""

#: my-evolution/metar.c:459
msgid "Light dust whirls"
msgstr ""

#: my-evolution/metar.c:460
msgid "Moderate dust whirls"
msgstr ""

#: my-evolution/metar.c:461
msgid "Heavy dust whirls"
msgstr ""

#: my-evolution/metar.c:462
#, fuzzy
msgid "Shallow dust whirls"
msgstr "Vis detaljar"

#: my-evolution/metar.c:463
msgid "Patches of dust whirls"
msgstr ""

#: my-evolution/metar.c:464
msgid "Partial dust whirls"
msgstr ""

#: my-evolution/metar.c:466
msgid "Blowing dust whirls"
msgstr ""

#: my-evolution/metar.c:468
msgid "Drifting dust whirls"
msgstr ""

#: my-evolution/my-evolution.glade.h:1
msgid " _Remove"
msgstr "Fje_rn"

#: my-evolution/my-evolution.glade.h:2
#, fuzzy
msgid "Add n_ews feed"
msgstr "Legg til nytt bilete"

#: my-evolution/my-evolution.glade.h:3
#, fuzzy
msgid "Al_l stations:"
msgstr "&Tilgjengelege handlingar:"

#: my-evolution/my-evolution.glade.h:4
#, fuzzy
msgid "All _folders:"
msgstr "Alle kantar"

#: my-evolution/my-evolution.glade.h:5
#, fuzzy
msgid "All news _feeds:"
msgstr "&Alle felt"

#: my-evolution/my-evolution.glade.h:6
msgid "C_elsius"
msgstr "C_elsius"

#: my-evolution/my-evolution.glade.h:8
msgid "How many days should the calendar display at once?"
msgstr "Kor mange dagar skal kalendaren vise på ein gang?"

#: my-evolution/my-evolution.glade.h:9
#, fuzzy
msgid "Ma_x number of items shown:"
msgstr "&Høgste tal på hopp:"

#: my-evolution/my-evolution.glade.h:10
#, fuzzy
msgid "News Feed Settings"
msgstr "Nettverksinnstillingar"

#: my-evolution/my-evolution.glade.h:11
msgid "One mont_h"
msgstr "Ein _månad"

#: my-evolution/my-evolution.glade.h:12
msgid "One w_eek"
msgstr "Ei v_eke"

#: my-evolution/my-evolution.glade.h:13
#, fuzzy
msgid "R_efresh time (seconds):"
msgstr "&Oppfriskingsrate:"

#: my-evolution/my-evolution.glade.h:14
#, fuzzy
msgid "Refresh _time (seconds):"
msgstr "&Oppfriskingsrate:"

#: my-evolution/my-evolution.glade.h:15
#, fuzzy
msgid "S_how full path for folders"
msgstr "Vis sidekantar"

#: my-evolution/my-evolution.glade.h:16
msgid "Show _all tasks"
msgstr "Vis _alle oppgåver"

#: my-evolution/my-evolution.glade.h:17
#, fuzzy
msgid "Show _today's tasks"
msgstr "Vedlegg"

#: my-evolution/my-evolution.glade.h:18
msgid "Show temperatures in:"
msgstr "Vis temperatur i:"

#: my-evolution/my-evolution.glade.h:19
msgid "Tasks "
msgstr "Oppgåver"

#: my-evolution/my-evolution.glade.h:20
#, fuzzy
msgid "Weather settings"
msgstr "Toppinnstillingar"

#: my-evolution/my-evolution.glade.h:22
#, fuzzy
msgid "_Display folders:"
msgstr "Skjermkontrollerarar"

#: my-evolution/my-evolution.glade.h:23
#, fuzzy
msgid "_Display stations:"
msgstr "Visingsval:"

#: my-evolution/my-evolution.glade.h:24
#, fuzzy
msgid "_Displayed feeds:"
msgstr "Vist namn:"

#: my-evolution/my-evolution.glade.h:25
msgid "_Fahrenheit"
msgstr "_Fahrenheit"

#: my-evolution/my-evolution.glade.h:26
msgid "_Five days"
msgstr "_Fem dagar"

#: my-evolution/my-evolution.glade.h:27
#, fuzzy
msgid "_Mail"
msgstr "Send"

#: my-evolution/my-evolution.glade.h:28
#, fuzzy
msgid "_News Feeds"
msgstr "Diskusjonsgruppetenarar"

#: my-evolution/my-evolution.glade.h:29
msgid "_One day"
msgstr "_Ein dag"

#: my-evolution/my-evolution.glade.h:30
#, fuzzy
msgid "_Schedule"
msgstr "&Plan"

#: my-evolution/my-evolution.glade.h:31
msgid "_Weather"
msgstr "_Vêr"

#: notes/GNOME_Evolution_Notes.oaf.in.h:3
#, fuzzy
msgid "Factory for the Evolution notes component."
msgstr "Øydelagd oppsettfil."

#: notes/GNOME_Evolution_Notes.oaf.in.h:4
#, fuzzy
msgid "Factory for the Notes control"
msgstr "Øydelagd oppsettfil."

#: shell/GNOME_Evolution_Shell.oaf.in.h:1
#, fuzzy
msgid "The Evolution shell."
msgstr "Kan ikkje initialisera adresseboka"

#: shell/e-activity-handler.c:200
msgid "Show Details"
msgstr "Vis detaljar"

#: shell/e-activity-handler.c:202
msgid "Cancel Operation"
msgstr "Avbryt operasjon"

#: shell/e-local-storage.c:174 shell/e-shortcuts.c:1052
msgid "Inbox"
msgstr "Innboks"

#: shell/e-local-storage.c:175
msgid "Outbox"
msgstr "Utboks"

#: shell/e-local-storage.c:636
msgid "Local Folders"
msgstr "Lokale mapper"

#: shell/e-setup.c:124
#, fuzzy
msgid "Evolution installation"
msgstr "KDeelop-installering"

#: shell/e-setup.c:128
msgid ""
"This new version of Evolution needs to install additional files\n"
"into your personal Evolution directory"
msgstr ""

#: shell/e-setup.c:129
msgid "Please click \"OK\" to install the files, or \"Cancel\" to exit."
msgstr "Klikk «OK» for å installere filene, eller «Avbryt» for å avslutte."

#: shell/e-setup.c:169
#, fuzzy
msgid "Could not update files correctly"
msgstr "Kunne ikkje laga kio-jobb.\n"

#: shell/e-setup.c:192
#, fuzzy, c-format
msgid ""
"Cannot create the directory\n"
"%s\n"
"Error: %s"
msgstr ""
"Kan ikkje laga heimekatalog\n"
"Feil: %1"

#: shell/e-setup.c:207
#, fuzzy, c-format
msgid ""
"An error occurred in copying files into\n"
"`%s'."
msgstr "Ein feil oppstod ved lagring."

#: shell/e-setup.c:280
#, fuzzy, c-format
msgid ""
"Evolution could not create directory\n"
"%s:\n"
"%s"
msgstr ""
"Kan ikkje laga heimekatalog\n"
"Feil: %1"

#: shell/e-setup.c:298
#, c-format
msgid ""
"Directory %s\n"
"does not have the right permissions. Please make it\n"
"readable and executable and restart Evolution."
msgstr ""

#: shell/e-setup.c:304
#, c-format
msgid ""
"File %s\n"
"should be removed to allow Evolution to work correctly.\n"
"Please remove this file and restart Evolution."
msgstr ""

#: shell/e-setup.c:327
#, c-format
msgid ""
"The file `%s' is not a directory.\n"
"Please move it in order to allow installation\n"
"of the Evolution user files."
msgstr ""

#: shell/e-setup.c:341
msgid ""
"Evolution has detected an old\n"
"Executive-Summary directory.\n"
"This needs to be removed before\n"
"Evolution will run.\n"
"Do you want me to remove this directory?"
msgstr ""

#: shell/e-setup.c:366
#, c-format
msgid ""
"The directory `%s' exists but is not the\n"
"Evolution directory.  Please move it in order\n"
"to allow installation of the Evolution user files."
msgstr ""

#: shell/e-shell-about-box.c:40
msgid "Evolution "
msgstr "Evolution"

#: shell/e-shell-about-box.c:41
msgid "Copyright 1999, 2000, 2001 Ximian, Inc."
msgstr "Opphavsrett © 1999, 2000, 2001 Ximian, Inc."

#: shell/e-shell-about-box.c:43
msgid "Brought to you by"
msgstr ""

#: shell/e-shell-folder-commands.c:176
#, fuzzy
msgid "Cannot move a folder over itself."
msgstr "Kan ikkje flytta mappe "

#: shell/e-shell-folder-commands.c:178
#, fuzzy
msgid "Cannot copy a folder over itself."
msgstr "kan ikkje opna fila %1"

#: shell/e-shell-folder-commands.c:192
#, fuzzy
msgid "Cannot move a folder into one of its descendants."
msgstr "Kan ikkje flytta ei foreldremappe inn i ei barnemappe."

#: shell/e-shell-folder-commands.c:307
#, c-format
msgid "Specify a folder to copy folder \"%s\" into:"
msgstr ""

#: shell/e-shell-folder-commands.c:312
msgid "Copy folder"
msgstr "Kopier mappe"

#: shell/e-shell-folder-commands.c:354
#, c-format
msgid "Specify a folder to move folder \"%s\" into:"
msgstr ""

#: shell/e-shell-folder-commands.c:359
#, fuzzy
msgid "Move folder"
msgstr "Flytt til mappe"

#: shell/e-shell-folder-commands.c:385
#, fuzzy, c-format
msgid ""
"Cannot delete folder:\n"
"%s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: shell/e-shell-folder-commands.c:401
#, c-format
msgid "Delete \"%s\""
msgstr "Slett «%s»"

#. "Are you sure..." label
#: shell/e-shell-folder-commands.c:411
#, fuzzy, c-format
msgid "Are you sure you want to remove the \"%s\" folder?"
msgstr "Er du sikker på at du vil sletta denne mappa?"

#: shell/e-shell-folder-commands.c:488
#, fuzzy, c-format
msgid ""
"Cannot rename folder:\n"
"%s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: shell/e-shell-folder-commands.c:537
#, fuzzy, c-format
msgid "Rename the \"%s\" folder to:"
msgstr "Endra namn på profil '%1'"

#: shell/e-shell-folder-commands.c:544
#, fuzzy
msgid "Rename folder"
msgstr "Endra namn på profil '%1'"

#: shell/e-shell-folder-commands.c:554
#: shell/e-shell-folder-creation-dialog.c:168
#, fuzzy, c-format
msgid "The specified folder name is not valid: %s"
msgstr "Arkivfilnamnet er ikkje gyldig.\n"

#: shell/e-shell-folder-creation-dialog.c:125
#, fuzzy, c-format
msgid ""
"Cannot create the specified folder:\n"
"%s"
msgstr ""
"Kan ikkje laga fila\n"
"\""

#: shell/e-shell-folder-creation-dialog.c:304
msgid "Evolution - Create new folder"
msgstr "Evolution - Opprett ny mappe"

#: shell/e-shell-folder-selection-dialog.c:98
msgid ""
"The type of the selected folder is not valid for\n"
"the requested operation."
msgstr ""

#: shell/e-shell-folder-selection-dialog.c:376
msgid "New..."
msgstr "Ny ..."

#: shell/e-shell-folder-title-bar.c:584 shell/e-shell-folder-title-bar.c:585
msgid "(Untitled)"
msgstr "(Utan tittel)"

#: shell/e-shell-importer.c:142
msgid "Choose the type of importer to run:"
msgstr ""

#: shell/e-shell-importer.c:145
msgid ""
"Choose the file that you want to import into Evolution, and select what type "
"of file it is from the list.\n"
"\n"
"You can select \"Automatic\" if you do not know, and Evolution will attempt "
"to work it out."
msgstr ""

#: shell/e-shell-importer.c:151 shell/e-shell-startup-wizard.c:803
msgid "Please select the information that you would like to import:"
msgstr "Vel informasjonen du vil importere:"

#. Importer isn't ready yet.
#. Wait 5 seconds and try again.
#: shell/e-shell-importer.c:243
#, c-format
msgid ""
"Importing %s\n"
"Importer not ready.\n"
"Waiting 5 seconds to retry."
msgstr ""

#: shell/e-shell-importer.c:263 shell/e-shell-importer.c:294
#, c-format
msgid ""
"Importing %s\n"
"Importing item %d."
msgstr ""
"Importerar %s\n"
"Importerar element %d."

#: shell/e-shell-importer.c:409
#, c-format
msgid "File %s does not exist"
msgstr "Fila %s finst ikkje"

#: shell/e-shell-importer.c:410 shell/e-shell-importer.c:420
#: shell/e-shell-importer.c:436 shell/e-shell-importer.c:486
msgid "Evolution Error"
msgstr "Evolution feil"

#: shell/e-shell-importer.c:420
msgid "You may only import to local folders"
msgstr "Du kan berre importere til lokale mapper"

#: shell/e-shell-importer.c:435
#, fuzzy, c-format
msgid ""
"There is no importer that is able to handle\n"
"%s"
msgstr "Det er ikkje band i stasjonen."

#: shell/e-shell-importer.c:445
msgid "Importing"
msgstr "Importerar"

#: shell/e-shell-importer.c:453
#, c-format
msgid ""
"Importing %s.\n"
"Starting %s"
msgstr ""
"Importerar %s.\n"
"Startar %s"

#: shell/e-shell-importer.c:466
#, fuzzy, c-format
msgid "Error starting %s"
msgstr ""
"Feil ved nedlasting av fil:\n"
"%1"

#: shell/e-shell-importer.c:485
#, c-format
msgid "Error loading %s"
msgstr "Feil ved asting av %s"

#: shell/e-shell-importer.c:502
#, c-format
msgid ""
"Importing %s\n"
"Importing item 1."
msgstr ""

#: shell/e-shell-importer.c:572
msgid "Automatic"
msgstr "Automatisk"

#: shell/e-shell-importer.c:623
msgid "Filename:"
msgstr "Filnamn:"

#: shell/e-shell-importer.c:628
msgid "Select a file"
msgstr "Vel ei fil"

#: shell/e-shell-importer.c:638
msgid "File type:"
msgstr "Filtype:"

#: shell/e-shell-importer.c:663
msgid "Import data and settings from older programs"
msgstr "Importér data og innstillinga frå eldre program"

#: shell/e-shell-importer.c:667
#, fuzzy
msgid "Import a single file"
msgstr "Flyttar"

#: shell/e-shell-importer.c:732 shell/e-shell-startup-wizard.c:632
msgid ""
"Please wait...\n"
"Scanning for existing setups"
msgstr ""

#: shell/e-shell-importer.c:735 shell/e-shell-startup-wizard.c:635
msgid "Starting Intelligent Importers"
msgstr ""

#: shell/e-shell-importer.c:859 shell/e-shell-startup-wizard.c:758
#, c-format
msgid "From %s:"
msgstr "Frå %s:"

#: shell/e-shell-importer.c:1027
msgid "Select folder"
msgstr "Vel mappe"

#: shell/e-shell-importer.c:1028
msgid "Select a destination folder for importing this data"
msgstr ""

#: shell/e-shell-importer.c:1140 shell/importer/intelligent.c:193
msgid "Import"
msgstr "Importér"

#: shell/e-shell-offline-handler.c:572
#, fuzzy
msgid "Closing connections..."
msgstr "Lukkar prosjekt ..."

#: shell/e-shell-startup-wizard.c:159
#, fuzzy, c-format
msgid ""
"Could not start the Evolution Mailer Assistant interface\n"
"(%s)"
msgstr "Kan ikkje initialisera adresseboka"

#: shell/e-shell-startup-wizard.c:169
#, fuzzy
msgid "Could not start the Evolution Mailer Assistant interface\n"
msgstr "Kan ikkje initialisera adresseboka"

#: shell/e-shell-utils.c:114
#, fuzzy
msgid "No folder name specified."
msgstr "Gå til side"

#: shell/e-shell-utils.c:121
#, fuzzy
msgid "Folder name cannot contain the Return character."
msgstr ""
"Kan ikkje laga heimekatalog\n"
"Feil: %1"

#: shell/e-shell-utils.c:127
#, fuzzy
msgid "Folder name cannot contain slashes."
msgstr ""
"Kan ikkje laga heimekatalog\n"
"Feil: %1"

#: shell/e-shell-utils.c:133
msgid "'.' and '..' are reserved folder names."
msgstr "«.» og «..» er resverte mappenamn."

#: shell/e-shell-view-menu.c:165
msgid "Bug buddy was not found in your $PATH."
msgstr "Bug Buddy vart ikkje funnen i søkestien din ($PATH)"

#: shell/e-shell-view-menu.c:173
#, fuzzy
msgid "Bug buddy could not be run."
msgstr "Kunne ikkje lagra adresseboka."

#: shell/e-shell-view-menu.c:215
#, fuzzy
msgid "About Ximian Evolution"
msgstr "Oppløysing"

#: shell/e-shell-view-menu.c:424
#, fuzzy
msgid "Go to folder..."
msgstr "Flytt til mappe"

#: shell/e-shell-view-menu.c:425
#, fuzzy
msgid "Select the folder that you want to open"
msgstr "Vel det ikontemaet du vil bruka:"

#: shell/e-shell-view-menu.c:545
#, fuzzy
msgid "Create a new shortcut"
msgstr "Lagar eit nytt dokument"

#: shell/e-shell-view-menu.c:546
#, fuzzy
msgid "Select the folder you want the shortcut to point to:"
msgstr "Vel katalogen som inneheld tenestene"

#: shell/e-shell-view-menu.c:577
msgid "The GNOME Pilot tools do not appear to be installed on this system."
msgstr ""

#: shell/e-shell-view-menu.c:585
#, fuzzy, c-format
msgid "Error executing %s."
msgstr ""
"Feil ved lesing a fil:\n"
"%1"

#: shell/e-shell-view-menu.c:688
msgid "_Work Online"
msgstr "Arbeid _tilkopla"

#: shell/e-shell-view-menu.c:701 ui/evolution.xml.h:51
msgid "_Work Offline"
msgstr "Arbeid _fråkopla"

#: shell/e-shell-view-menu.c:714 ui/evolution.xml.h:30
msgid "Work Offline"
msgstr "Arbeid fråkopla"

#: shell/e-shell-view.c:215
msgid "(No folder displayed)"
msgstr "(Ingen mappe vist)"

#: shell/e-shell-view.c:1598
#, c-format
msgid "%s (%d)"
msgstr "%s (%d)"

#: shell/e-shell-view.c:1600
msgid "(None)"
msgstr "(Ingen)"

#: shell/e-shell-view.c:1647
msgid ""
"Ximian Evolution is currently online.  Click on this button to work offline."
msgstr ""

#: shell/e-shell-view.c:1654
msgid "Ximian Evolution is in the process of going offline."
msgstr ""

#: shell/e-shell-view.c:1660
msgid ""
"Ximian Evolution is currently offline.  Click on this button to work online."
msgstr ""

#: shell/e-shell.c:651
#, fuzzy, c-format
msgid "Cannot set up local storage -- %s"
msgstr "Kan ikkje setja blokkstorleik for band."

#: shell/e-shell.c:1660
#, c-format
msgid ""
"The Evolution component that handles folders of type \"%s\"\n"
"has unexpectedly quit. You will need to quit Evolution and restart\n"
"in order to access that data again."
msgstr ""

#: shell/e-shell.c:1887
#, fuzzy
msgid "Invalid arguments"
msgstr "Ugyldig(e) argument"

#: shell/e-shell.c:1889
msgid "Cannot register on OAF"
msgstr ""

#: shell/e-shell.c:1891
msgid "Configuration Database not found"
msgstr "Oppsettsdatabasen ikkje funnen"

#: shell/e-shell.c:1893 shell/e-storage.c:500
msgid "Generic error"
msgstr "Generell feil"

#: shell/e-shortcuts-view.c:74
#, fuzzy
msgid "Create new shortcut group"
msgstr "Endra snarveg for:"

#: shell/e-shortcuts-view.c:75
msgid "Group name:"
msgstr "Gruppenamn:"

#: shell/e-shortcuts-view.c:175
#, fuzzy, c-format
msgid ""
"Do you really want to remove group\n"
"`%s' from the shortcut bar?"
msgstr "Vil du verkeleg leggja '%1' i papirkorga?"

#: shell/e-shortcuts-view.c:180
msgid "Don't remove"
msgstr "Ikkje fjern"

#: shell/e-shortcuts-view.c:209
#, fuzzy
msgid "Rename Shortcut Group"
msgstr "Fjern denne oppføringa"

#: shell/e-shortcuts-view.c:210
#, fuzzy
msgid "Rename selected shortcut group to:"
msgstr "Fjern denne oppføringa"

#: shell/e-shortcuts-view.c:224
msgid "_Small Icons"
msgstr "_Små ikon"

#: shell/e-shortcuts-view.c:225
msgid "Show the shortcuts as small icons"
msgstr ""

#: shell/e-shortcuts-view.c:227
#, fuzzy
msgid "_Large Icons"
msgstr "Ordna ikon"

#: shell/e-shortcuts-view.c:228
msgid "Show the shortcuts as large icons"
msgstr ""

#: shell/e-shortcuts-view.c:239
msgid "_New Group..."
msgstr "_Ny gruppe ..."

#: shell/e-shortcuts-view.c:240
#, fuzzy
msgid "Create a new shortcut group"
msgstr "Lagar eit nytt dokument"

#: shell/e-shortcuts-view.c:242
#, fuzzy
msgid "_Remove this Group..."
msgstr "Fjern gruppe"

#: shell/e-shortcuts-view.c:243
#, fuzzy
msgid "Remove this shortcut group"
msgstr "Fjern denne oppføringa"

#: shell/e-shortcuts-view.c:245
#, fuzzy
msgid "Re_name this Group..."
msgstr "Fjern gruppe"

#: shell/e-shortcuts-view.c:246
#, fuzzy
msgid "Rename this shortcut group"
msgstr "Fjern denne oppføringa"

#: shell/e-shortcuts-view.c:251
msgid "_Hide the Shortcut Bar"
msgstr ""

#: shell/e-shortcuts-view.c:252
#, fuzzy
msgid "Hide the shortcut bar"
msgstr "&Programsnøggtastar"

#: shell/e-shortcuts-view.c:371
msgid "Rename shortcut"
msgstr "Gi snarveg nytt namn"

#: shell/e-shortcuts-view.c:372
msgid "Rename selected shortcut to:"
msgstr "Gi valde snarvegar nytt namn til:"

#: shell/e-shortcuts-view.c:384
msgid "Open the folder linked to this shortcut"
msgstr ""

#: shell/e-shortcuts-view.c:386 ui/evolution.xml.h:19
msgid "Open in New _Window"
msgstr "Opne i nytt _vindauge"

#: shell/e-shortcuts-view.c:386
#, fuzzy
msgid "Open the folder linked to this shortcut in a new window"
msgstr "Opna dokumentet i eit nytt vindauge"

#: shell/e-shortcuts-view.c:389
msgid "_Rename"
msgstr "_Gje nytt namn"

#: shell/e-shortcuts-view.c:389
msgid "Rename this shortcut"
msgstr "Gi denne snarvegen nytt namn"

#: shell/e-shortcuts-view.c:391
msgid "Re_move"
msgstr "Fj_ern"

#: shell/e-shortcuts-view.c:391
msgid "Remove this shortcut from the shortcut bar"
msgstr "Fjern denne snarvegen frå snarvegstolpen"

#: shell/e-shortcuts.c:640
msgid "Error saving shortcuts."
msgstr "Feil ved lagring av snavegar."

#: shell/e-shortcuts.c:1043
msgid "Shortcuts"
msgstr "Snarvegar"

#: shell/e-storage-set-view.c:658
#, fuzzy, c-format
msgid ""
"Cannot transfer folder:\n"
"%s"
msgstr "Kunne ikkje lasta kalender '%1'.\n"

#: shell/e-storage.c:181 shell/e-storage.c:187
msgid "(No name)"
msgstr "(Ingen namn)"

#: shell/e-storage.c:498
msgid "No error"
msgstr "Ingen feil"

#: shell/e-storage.c:502
#, fuzzy
msgid "A folder with the same name already exists"
msgstr "Ein tabell med det namnet finst alt."

#: shell/e-storage.c:504
#, fuzzy
msgid "The specified folder type is not valid"
msgstr "Den oppgitte fila finst ikkje"

#: shell/e-storage.c:506
msgid "I/O error"
msgstr "I/U-feil"

#: shell/e-storage.c:508
#, fuzzy
msgid "Not enough space to create the folder"
msgstr "Ikkje nok skip å senda."

#: shell/e-storage.c:510
msgid "The folder is not empty"
msgstr "Mappa er ikkje tom"

#: shell/e-storage.c:512
#, fuzzy
msgid "The specified folder was not found"
msgstr "Den oppgitte fila finst ikkje"

#: shell/e-storage.c:514
#, fuzzy
msgid "Function not implemented in this storage"
msgstr "Kommando ikkje støtta på tenar"

#: shell/e-storage.c:518
#, fuzzy
msgid "Operation not supported"
msgstr "Operasjonen vart stoppa"

#: shell/e-storage.c:520
#, fuzzy
msgid "The specified type is not supported in this storage"
msgstr "Den oppgitte fila finst ikkje"

#: shell/e-storage.c:522
#, fuzzy
msgid "The specified folder cannot be modified or removed"
msgstr "Den oppgitte fila finst ikkje"

#: shell/e-storage.c:524
#, fuzzy
msgid "Cannot make a folder a child of one of its descendants"
msgstr "Kan ikkje flytta ei foreldremappe inn i ei barnemappe."

#: shell/e-storage.c:526
#, fuzzy
msgid "Cannot create a folder with that name"
msgstr "Leitar etter tilleggsmodular"

#: shell/e-task-widget.c:191
#, c-format
msgid "%s (...)"
msgstr "%s (...)"

#: shell/e-task-widget.c:196
#, fuzzy, c-format
msgid "%s (%d%% complete)"
msgstr "%1 av %2 ferdig"

#: shell/evolution-shell-component-utils.c:124
#, fuzzy, c-format
msgid ""
"%s\n"
"\n"
"Unknown error."
msgstr "Ukjend feil"

#: shell/evolution-shell-component-utils.c:127
#, c-format
msgid ""
"%s\n"
"\n"
"The error from the component system is:\n"
"%s"
msgstr ""

#: shell/evolution-shell-component-utils.c:134
#, c-format
msgid ""
"%s\n"
"\n"
"The error from the activation system is:\n"
"%s"
msgstr ""

#: shell/evolution-shell-component.c:1022
msgid "CORBA error"
msgstr "CORBA-feil"

#: shell/evolution-shell-component.c:1024
msgid "Interrupted"
msgstr "Avbroten"

#: shell/evolution-shell-component.c:1026
msgid "Invalid argument"
msgstr "Ugyldig argument"

#: shell/evolution-shell-component.c:1028
msgid "Already has an owner"
msgstr "Har allereide ein eigar"

#: shell/evolution-shell-component.c:1030
msgid "No owner"
msgstr "Ingen eigar"

#: shell/evolution-shell-component.c:1032
#, fuzzy
msgid "Not found"
msgstr "Fann ikkje fil"

#: shell/evolution-shell-component.c:1034
#, fuzzy
msgid "Unsupported type"
msgstr "Vel modemtype ..."

#: shell/evolution-shell-component.c:1036
msgid "Unsupported schema"
msgstr "Ustøtta skjema"

#: shell/evolution-shell-component.c:1038
msgid "Unsupported operation"
msgstr "Ustøtta operasjon"

#: shell/evolution-shell-component.c:1040
msgid "Internal error"
msgstr "Intern feil"

#: shell/evolution-shell-component.c:1044
msgid "Exists"
msgstr "Eksisterar"

#: shell/evolution-shell-component.c:1046
msgid "Invalid URI"
msgstr "Ugyldig URI"

#: shell/evolution-shell-component.c:1050
#, fuzzy
msgid "Has subfolders"
msgstr "Vidaresendt melding"

#: shell/evolution-shell-component.c:1052
msgid "No space left"
msgstr "Ikkje noko plass att"

#: shell/evolution-shell-component.c:1054
msgid "Old owner has died"
msgstr "Gammal eigar har døydd"

#: shell/evolution-test-component.c:41
#, fuzzy
msgid "Test type"
msgstr "Filtype:"

#: shell/glade/e-active-connection-dialog.glade.h:1
#, fuzzy
msgid "Active connections"
msgstr "Aktive tenarsamband"

#: shell/glade/e-active-connection-dialog.glade.h:2
msgid "Click OK to close these connections and go offline"
msgstr "Klikk OK for å late att desse tilknytningane og for å kople av"

#: shell/glade/e-active-connection-dialog.glade.h:3
msgid "Host"
msgstr "Vert"

#: shell/glade/e-active-connection-dialog.glade.h:4
#, fuzzy
msgid "The following connections are currently active:"
msgstr "Følgjande konto(ar) er\n"

#: shell/glade/e-shell-folder-creation-dialog.glade.h:1
msgid "Folder name:"
msgstr "Mappenamn:"

#: shell/glade/e-shell-folder-creation-dialog.glade.h:2
msgid "Folder type:"