~ubuntu-branches/ubuntu/raring/kde-l10n-is/raring-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
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
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
# translation of knode.po to Icelandic
# Icelandic knode translation
# Copyright (C) 2000,2003, 2004, 2005, 2009 Free Software Foundation, Inc.
# Logi Ragnarsson <logir@logi.org>
#
# Bjarni R. Einarsson <bre@netverjar.is>, 2000.
# Þórhallur Hálfdánarson <tolli@tol.li>, 2001.
# Pjetur G. Hjaltason <pjetur@pjetur.net>, 2003.
# Arnar Leósson <leosson@frisurf.no>, 2003.
# Svanur Palsson <svanur@tern.is>, 2004.
# Þröstur Svanbergsson <throstur@bylur.net>, 2004.
# Arnar Leosson <leosson@frisurf.no>, 2005.
# Sveinn í Felli <sveinki@nett.is>, 2009.
msgid ""
msgstr ""
"Project-Id-Version: knode\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2013-01-23 10:13+0100\n"
"PO-Revision-Date: 2009-07-28 20:17+0000\n"
"Last-Translator: Sveinn í Felli <sveinki@nett.is>\n"
"Language-Team: Icelandic <kde-isl@molar.is>\n"
"Language: is\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n"
"\n"
"\n"

msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
"Bjarni R. Einarsson, Logi Ragnarsson, Þórhallur Hálfdánarson, Pjetur G. "
"Hjaltason, Svanur Pálsson"

msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
"bre@netverjar.is, logir@logi.org, tolli@tol.li, pjetur@pjetur.net, "
"svanurpalsson@hotmail.com"

#: aboutdata.cpp:30
msgid "Maintainer"
msgstr "Umsjónarmaður"

#: aboutdata.cpp:31 aboutdata.cpp:32
msgid "Former maintainer"
msgstr "Fyrrum umsjónarmaður"

#: aboutdata.cpp:46 knjobdata.cpp:154
msgid "KNode"
msgstr "KNode"

#: aboutdata.cpp:48
msgid "A newsreader for KDE"
msgstr "Ráðstefnulesari fyrir KDE"

#: aboutdata.cpp:50
#, fuzzy
msgid "Copyright © 1999–2010 KNode authors"
msgstr "Höfundarréttur (c) 1999-2004, KNode höfundarnir"

#: aboutdata.cpp:59
msgid "Jakob Schroeter"
msgstr ""

#: articlewidget.cpp:157
msgid "F&ind in Article..."
msgstr "F&inna í grein..."

#: articlewidget.cpp:159
msgid "&View Source"
msgstr "Sýna &frumkóða"

#: articlewidget.cpp:164
msgid "&Followup to Newsgroup..."
msgstr "Svara á &ráðstefnu..."

#: articlewidget.cpp:169
msgid "Reply by E&mail..."
msgstr "Svara í tölvu&pósti..."

#: articlewidget.cpp:174
msgid "Forw&ard by Email..."
msgstr "&Framsenda í tölvupósti..."

#: articlewidget.cpp:178
msgctxt "article"
msgid "&Cancel Article"
msgstr "&Afturkalla grein"

#: articlewidget.cpp:181
msgid "S&upersede Article"
msgstr "Úre&lda grein"

#: articlewidget.cpp:184
msgid "U&se Fixed Font"
msgstr "Nota &jafnbreitt letur"

#: articlewidget.cpp:188
msgid "Fancy Formatting"
msgstr ""

#: articlewidget.cpp:193
msgid "&Unscramble (Rot 13)"
msgstr "Af&kóða (Rot 13)"

#: articlewidget.cpp:200
#, fuzzy
msgid "&Headers"
msgstr "Hausar"

#: articlewidget.cpp:202
#, fuzzy
msgid "&Fancy Headers"
msgstr "Hausar"

#: articlewidget.cpp:207
msgid "&Standard Headers"
msgstr ""

#: articlewidget.cpp:212
#, fuzzy
msgid "&All Headers"
msgstr "Fela &alla hausa"

#: articlewidget.cpp:219
#, fuzzy
msgid "&Attachments"
msgstr "Viðhengi"

#: articlewidget.cpp:221
msgid "&As Icon"
msgstr ""

#: articlewidget.cpp:226
#, fuzzy
msgid "&Inline"
msgstr "U&ndirstrikað"

#: articlewidget.cpp:231
msgid "&Hide"
msgstr ""

#: articlewidget.cpp:237
#, fuzzy
#| msgid "Set Charset"
msgid "Set chars&et"
msgstr "Velja stafatöflu"

#: articlewidget.cpp:240 articlewidget.cpp:1409
msgctxt "@item default character set"
msgid "Default"
msgstr ""

#: articlewidget.cpp:245
#, fuzzy
#| msgid "Set Charset"
msgid "Set charset"
msgstr "Velja stafatöflu"

#: articlewidget.cpp:251
#, fuzzy
msgid "&Open URL"
msgstr "&Opna tengil"

#: articlewidget.cpp:255
msgid "&Copy Link Address"
msgstr "&Afrita vistfang tengils"

#: articlewidget.cpp:259
#, fuzzy
msgid "&Bookmark This Link"
msgstr "Setja þennan tengil í bókamerki"

#: articlewidget.cpp:262
msgid "&Add to Address Book"
msgstr "&Bæta við í vistfangaskrá"

#: articlewidget.cpp:265
msgid "&Open in Address Book"
msgstr "&Opna í vistfangaskrá"

#: articlewidget.cpp:269
msgid "&Open Attachment"
msgstr "&Opna viðhengi"

#: articlewidget.cpp:273
#, fuzzy
msgid "&Save Attachment As..."
msgstr "&Vista viðhengi..."

#: articlewidget.cpp:395
msgid "Unable to load the article."
msgstr "Gat ekki lesið grein."

#: articlewidget.cpp:427
#, fuzzy
msgid "The article contains no data."
msgstr "Þessi grein er tóm"

#: articlewidget.cpp:463
msgid "Unknown charset. Default charset is used instead."
msgstr "Óþekkt stafatafla. Nota sjálfgefnu stafatöfluna."

#: articlewidget.cpp:523
#, fuzzy
msgid ""
"<br /><b>This article has the MIME type &quot;message/partial&quot;, which "
"KNode cannot handle yet.<br />Meanwhile you can save the article as a text "
"file and reassemble it by hand.</b>"
msgstr ""
"<br><bodyblock><b>Þessi grein hefur MIME-tagið &quot;message/partial&quot; "
"sem KNode kann enn ekki að fara með.<br>Í millitíðinni gætir þú prófað að "
"vista greinina sem textaskrá og raðað saman handvirkt.</b></bodyblock></qt>"

#: articlewidget.cpp:539
msgid ""
"<b>Note:</b> This is an HTML message. For security reasons, only the raw "
"HTML code is shown. If you trust the sender of this message then you can "
"activate formatted HTML display for this message <a href=\"knode:showHTML"
"\">by clicking here</a>."
msgstr ""

#: articlewidget.cpp:584
#, fuzzy
msgid "An error occurred."
msgstr ""
"Villa kom upp:\n"
"%1"

#: articlewidget.cpp:703
msgid "References:"
msgstr "Tilvitnanir:"

#: articlewidget.cpp:786
#, kde-format
msgid "Message was signed with unknown key 0x%1."
msgstr "Bréf var undirritað með óþekktum lykli 0x%1."

#: articlewidget.cpp:789
msgid "The validity of the signature cannot be verified."
msgstr "Ekki er hægt að staðfesta undirskrift."

#: articlewidget.cpp:807
#, kde-format
msgid "Message was signed by %1 (Key ID: 0x%2)."
msgstr "Bréfið var undirritað af %1 (Auðkenni lykils: 0x%2)."

#: articlewidget.cpp:811
#, kde-format
msgid "Message was signed by %1."
msgstr "Bréf var undirritað af %1."

#: articlewidget.cpp:821
msgid "The signature is valid, but the key's validity is unknown."
msgstr "Undirritunin er gild, en lögmæti lyklisins er óþekkt."

#: articlewidget.cpp:825
msgid "The signature is valid and the key is marginally trusted."
msgstr "Undirritunin er gild og lyklinum er varla treyst."

#: articlewidget.cpp:829
msgid "The signature is valid and the key is fully trusted."
msgstr "Undirritunin er gild og lyklinum er treyst til fulls."

#: articlewidget.cpp:833
msgid "The signature is valid and the key is ultimately trusted."
msgstr "Undirritunin er gild og lyklinum er treyst fullkomlega."

#: articlewidget.cpp:837
msgid "The signature is valid, but the key is untrusted."
msgstr "Undirritunin er gild, en lyklinum er ekki treyst."

#: articlewidget.cpp:841
msgid "Warning: The signature is bad."
msgstr "Varúð: Undirritunin er ógild."

#: articlewidget.cpp:858
msgid "End of signed message"
msgstr ""

#: articlewidget.cpp:874
msgid "unnamed"
msgstr "ónefnt"

#: articlewidget.cpp:1072
#, fuzzy, kde-format
msgid ""
"An error occurred while downloading the article source:\n"
"%1"
msgstr "Villa kom upp þegar þessar greinar voru sendar:"

#: articlewidget.cpp:1427 kncomposer.cpp:1247
msgid "Select Charset"
msgstr "Velja stafatöflu"

#. i18n: ectx: property (text), widget (QLabel, mIdentitySelectorLabel)
#: composer/composer_view.ui:45 configuration/identity_edition_dialog.ui:29
#: configuration/identity_widget.ui:47
#, fuzzy
#| msgid "&Identity"
msgctxt "@label:listbox"
msgid "Identity:"
msgstr "Auð&kenni"

#. i18n: ectx: property (text), widget (QLabel, mToLabel)
#: composer/composer_view.ui:55
#, fuzzy
#| msgid "T&o:"
msgctxt "@label:textbox email recipient of a message"
msgid "To:"
msgstr "T&il:"

#. i18n: ectx: property (text), widget (KPushButton, mToButton)
#: composer/composer_view.ui:68
#, fuzzy
msgctxt "@action:button open a dialog to choose email recipients"
msgid "Browse..."
msgstr "&Flakka..."

#. i18n: ectx: property (text), widget (QLabel, mGroupsLabel)
#: composer/composer_view.ui:75
#, fuzzy
#| msgid "&Groups:"
msgctxt "@label:textbox"
msgid "Groups:"
msgstr "&Ráðstefnur:"

#. i18n: ectx: property (text), widget (QLabel, mFollowuptoLabel)
#: composer/composer_view.ui:85
#, fuzzy
#| msgid "Follo&wup-To:"
msgctxt "@label"
msgid "Followup-To:"
msgstr "S&vara opinberlega á:"

#. i18n: ectx: property (text), widget (QLabel, mSubjetLabel)
#: composer/composer_view.ui:95
#, fuzzy
#| msgid "S&ubject:"
msgctxt "@label:textbox subject of a message"
msgid "Subject:"
msgstr "&Viðfangsefni:"

#. i18n: ectx: property (text), widget (KPushButton, mGroupsButton)
#: composer/composer_view.ui:105
#, fuzzy
msgctxt "@action:button open a dialog to choose newsgroups"
msgid "Browse..."
msgstr "&Flakka..."

#. i18n: ectx: property (text), widget (QLabel, mFromLabel)
#: composer/composer_view.ui:115
#, fuzzy
#| msgid "From"
msgctxt "@label:textbox"
msgid "From:"
msgstr "Frá"

#. i18n: ectx: property (whatsThis), widget (KNode::Composer::FollowuptoCombobox, mFollowuptoEdit)
#: composer/composer_view.ui:137
msgid ""
"<qt>\n"
"<p>The group <strong>where the replies to your message should be sent</"
"strong>. Use this field when you are sending it to more than one group.<br /"
">\n"
"This group is usually the place where you expect the discussion you\n"
"  are starting to fit the best.</p>\n"
"\n"
"<p>Remember to subscribe to this group if you are not yet.</p>\n"
"\n"
"<p><note>It is also good practice to indicate the \"followup-to\"\n"
"  in your message to inform readers.</note></p>\n"
"</qt>"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, mExternalKillSwitchLabel)
#: composer/composer_view.ui:196
#, fuzzy
msgid ""
"You are currently editing the article body\n"
"in an external editor. To continue, you have\n"
"to close the external editor."
msgstr ""
"Þú ert að vinna með meginmál greinarinnar í\n"
"ritli.  Knode bíður nú eftir að þú lokir\n"
"ritlinum."

#. i18n: ectx: property (text), widget (KPushButton, mExternalKillSwitch)
#: composer/composer_view.ui:203
#, fuzzy
#| msgid "&Kill External Editor"
msgctxt "@action:button"
msgid "Kill external editor"
msgstr "Stöðva &ritilinn"

#. i18n: ectx: property (text), widget (KNode::Composer::AttachmentView, mAttachmentsList)
#: composer/composer_view.ui:256
#, fuzzy
msgctxt "@title:column list of attachments of a message"
msgid "File"
msgstr "Sía"

#. i18n: ectx: property (text), widget (KNode::Composer::AttachmentView, mAttachmentsList)
#: composer/composer_view.ui:261
#, fuzzy
#| msgid "Type"
msgctxt "@title:column list of attachments of a message"
msgid "Type"
msgstr "Tegund"

#. i18n: ectx: property (text), widget (KNode::Composer::AttachmentView, mAttachmentsList)
#: composer/composer_view.ui:266
#, fuzzy
#| msgid "Size"
msgctxt "@title:column list of attachments of a message"
msgid "Size"
msgstr "Stærð"

#. i18n: ectx: property (text), widget (KNode::Composer::AttachmentView, mAttachmentsList)
#: composer/composer_view.ui:271
#, fuzzy
#| msgid "Description"
msgctxt "@title:column list of attachments of a message"
msgid "Description"
msgstr "Lýsing"

#. i18n: ectx: property (text), widget (KNode::Composer::AttachmentView, mAttachmentsList)
#: composer/composer_view.ui:276
#, fuzzy
#| msgid "Encoding"
msgctxt "@title:column list of attachments of a message"
msgid "Encoding"
msgstr "Kóðun"

#. i18n: ectx: property (text), widget (KPushButton, mAttachmentAddButton)
#: composer/composer_view.ui:284
#, fuzzy
#| msgid "A&dd..."
msgctxt "@action:button Open a dialog to add a message attachment"
msgid "Add..."
msgstr "&Bæta við..."

#. i18n: ectx: property (text), widget (KPushButton, mAttachmentPropertiesButton)
#: composer/composer_view.ui:291
#, fuzzy
#| msgid "&Properties"
msgctxt ""
"@action:button open a dialog displaying properties of a message attachment"
msgid "Properties"
msgstr "S&tillingar"

#. i18n: ectx: property (text), widget (KPushButton, mAttachmentRemoveButton)
#: composer/composer_view.ui:311
#, fuzzy
msgctxt "@action:button remove an attachment of a message"
msgid "Remove"
msgstr "&Fjarlægja kassa"

#: configuration/identity_edition_dialog.cpp:43
msgctxt "@title:window"
msgid "Manage your identities"
msgstr ""

#: configuration/identity_edition_dialog.cpp:45
#, fuzzy
#| msgid "Chan&ge..."
msgctxt "@action:button Change signing key"
msgid "Change..."
msgstr "B&reyta..."

#: configuration/identity_edition_dialog.cpp:46
#, fuzzy
#| msgid "Your OpenPGP Key"
msgctxt "@title:window PGP key chooser"
msgid "Your OpenPGP Key"
msgstr "OpenPGP lykillinn þinn"

#: configuration/identity_edition_dialog.cpp:47
msgid "Select the OpenPGP key which should be used for signing articles."
msgstr "Veldu OpenPGP lykil sem ætti að nota til að undirrita greinar."

#: configuration/identity_edition_dialog.cpp:190
#, fuzzy
#| msgid "&Identity"
msgctxt "Name of a newly created identity"
msgid "New identity"
msgstr "Auð&kenni"

#: configuration/identity_edition_dialog.cpp:260
#, kde-format
msgid ""
"<qt>Do you really want to remove the identity <emphasis>%1</emphasis>?</qt>"
msgstr ""

#: configuration/identity_edition_dialog.cpp:262
#, fuzzy
#| msgid "&Delete Folder"
msgctxt "@title:window"
msgid "Delete identity"
msgstr "&Eyða möppu"

#. i18n: ectx: property (toolTip), widget (KPushButton, mButtonNewIdentity)
#: configuration/identity_edition_dialog.ui:67
msgid "Create an identity"
msgstr ""

#. i18n: ectx: property (toolTip), widget (KPushButton, mButtonDuplicateIdentity)
#: configuration/identity_edition_dialog.ui:92
msgid "Duplicate this identity"
msgstr ""

#. i18n: ectx: property (toolTip), widget (KPushButton, mButtonRenameIdentity)
#: configuration/identity_edition_dialog.ui:117
msgid "Rename this identity"
msgstr ""

#. i18n: ectx: property (toolTip), widget (KPushButton, mButtonRemoveIdentity)
#: configuration/identity_edition_dialog.ui:142
msgid "Remove this identity"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (QLabel, mNameLabel)
#. i18n: ectx: property (whatsThis), widget (KLineEdit, mNameEdit)
#: configuration/identity_edition_dialog.ui:159
#: configuration/identity_edition_dialog.ui:175
#, fuzzy
#| msgid ""
#| "<qt><p>Your name as it will appear to others reading your articles.</"
#| "p><p>Ex: <b>John Stuart Masterson III</b>.</p></qt>"
msgid ""
"<qt>\n"
"  <p>Your name as it will appear to others reading your articles.</p>\n"
"  <p>Ex: <b>John Stuart Masterson III</b>.</p>\n"
"</qt>"
msgstr ""
"<qt><p>Nafn þitt eins og það mun birtast þeim sem lesa greinar þínar.</"
"p><p>T.d.: <b>John Stuart Masterson III</b>.</p></qt>"

#. i18n: ectx: property (text), widget (QLabel, mNameLabel)
#: configuration/identity_edition_dialog.ui:162
#: configuration/identity_widget.ui:97
#, fuzzy
#| msgid "Name:"
msgctxt "@label:textbox Name of the user in a message"
msgid "Name:"
msgstr "Nafn:"

#. i18n: ectx: property (whatsThis), widget (QLabel, mOrganisationLabel)
#. i18n: ectx: property (whatsThis), widget (KLineEdit, mOrganisationEdit)
#: configuration/identity_edition_dialog.ui:185
#: configuration/identity_edition_dialog.ui:201
#, fuzzy
#| msgid ""
#| "<qt><p>The name of the organization you work for.</p><p>Ex: <b>KNode, "
#| "Inc</b>.</p></qt>"
msgid ""
"<qt>\n"
"  <p>The name of the organization you work for.</p>\n"
"  <p>Ex: <b>KNode, Inc</b>.</p>\n"
"</qt>"
msgstr ""
"<qt><p>Nafn stofnunarinnar sem þú vinnur fyrir.</p><p>T.d.: <b>KNode, Inc</"
"b>.</p></qt>"

#. i18n: ectx: property (text), widget (QLabel, mOrganisationLabel)
#: configuration/identity_edition_dialog.ui:188
#: configuration/identity_widget.ui:104
#, fuzzy
#| msgctxt "collection of article headers"
#| msgid "Organization"
msgid "Organization:"
msgstr "Félag"

#. i18n: ectx: property (whatsThis), widget (QLabel, mEmailLabel)
#. i18n: ectx: property (whatsThis), widget (KLineEdit, mEmailEdit)
#: configuration/identity_edition_dialog.ui:211
#: configuration/identity_edition_dialog.ui:227
#, fuzzy
#| msgid ""
#| "<qt><p>Your email address as it will appear to others reading your "
#| "articles</p><p>Ex: <b>nospam@please.com</b>.</qt>"
msgid ""
"<qt>\n"
"  <p>Your email address as it will appear to others reading your articles</"
"p>\n"
"  <p>Ex: <b>nospam@please.com</b>.</p>\n"
"</qt>"
msgstr ""
"<qt><p>Netfang þitt eins og það mun birtast þeim sem lesa greinar þínar</"
"p><p>T.d.: <b>nospam@please.com</b>.</qt>"

#. i18n: ectx: property (text), widget (QLabel, mEmailLabel)
#: configuration/identity_edition_dialog.ui:214
#: configuration/identity_widget.ui:111
#, fuzzy
#| msgid "Email a&ddress:"
msgid "Email address:"
msgstr "&Netfang:"

#. i18n: ectx: property (whatsThis), widget (QLabel, mReplytoLabel)
#. i18n: ectx: property (whatsThis), widget (KLineEdit, mReplytoEdit)
#: configuration/identity_edition_dialog.ui:237
#: configuration/identity_edition_dialog.ui:253
#, fuzzy
msgid ""
"<qt>\n"
"  <p>When someone replies to your article by email, this is the address to "
"which the message will be sent. If you fill in this field, please do so with "
"a real email address.</p>\n"
"  <p>Ex: <b>john@example.com</b>.</p>\n"
"</qt>"
msgstr ""
"<qt><p>Þegar einhver svarar grein þinni með tölvupósti er þetta netfangið "
"sem bréfið verður sent á. Ef þú fyllir út í þennan reit skaltu nota alvöru "
"netfang.</p><p>T.d.: <b>john@doe.com</b>.</p></qt>"

#. i18n: ectx: property (text), widget (QLabel, mReplytoLabel)
#: configuration/identity_edition_dialog.ui:240
#: configuration/identity_widget.ui:118
#, fuzzy
#| msgid "&Reply-to address:"
msgid "Reply-to address:"
msgstr "Opinbert s&var-netfang:"

#. i18n: ectx: property (whatsThis), widget (QLabel, mMailcopiestoLabel)
#. i18n: ectx: property (whatsThis), widget (KLineEdit, mMailcopiestoEdit)
#: configuration/identity_edition_dialog.ui:263
#: configuration/identity_edition_dialog.ui:279
#, fuzzy
msgid ""
"<qt>\n"
"  <p>When someone replies to your article on a group, you can ask to be sent "
"a copy by email. This is the address to which this copy will be sent. If you "
"fill in this field, please do so with a real email address.</p>\n"
"  <p>Ex: <b>john@example.com</b>.</p>\n"
"</qt>"
msgstr ""
"<qt><p>Þegar einhver svarar grein þinni með tölvupósti er þetta netfangið "
"sem bréfið verður sent á. Ef þú fyllir út í þennan reit skaltu nota alvöru "
"netfang.</p><p>T.d.: <b>john@doe.com</b>.</p></qt>"

#. i18n: ectx: property (text), widget (QLabel, mMailcopiestoLabel)
#: configuration/identity_edition_dialog.ui:266
#: configuration/identity_widget.ui:125
#, fuzzy
#| msgid "&Mail-copies-to:"
msgid "Mail-copies-to:"
msgstr "Póst-&afrit til:"

#. i18n: ectx: property (whatsThis), widget (QLabel, mSigningKeyRequesterLabel)
#. i18n: ectx: property (whatsThis), widget (Kleo::SigningKeyRequester, mSigningKeyRequester)
#: configuration/identity_edition_dialog.ui:286
#: configuration/identity_edition_dialog.ui:296
msgid ""
"<qt><p>The OpenPGP key you choose here will be used to sign your articles.</"
"p></qt>"
msgstr ""
"<qt><p>OpenPGP lykillinn sem þú velur hér verður notaður til að undirrita "
"greinar þínar.</p></qt>"

#. i18n: ectx: property (text), widget (QLabel, mSigningKeyRequesterLabel)
#: configuration/identity_edition_dialog.ui:289
#, fuzzy
#| msgid "Signing ke&y:"
msgid "Signing key:"
msgstr "Undirritunarl&ykill:"

#. i18n: ectx: property (text), widget (QCheckBox, mUseSpecificIdentity)
#: configuration/identity_widget.ui:20
msgid "Use a specific identity"
msgstr ""

#. i18n: ectx: property (text), widget (KPushButton, mModifyIdentitiesButton)
#: configuration/identity_widget.ui:67
msgid "Modify..."
msgstr ""

#: foldertreewidget.cpp:369
#, fuzzy
#| msgid "Total"
msgid "Local"
msgstr "Samtals"

#: foldertreewidget.cpp:372
msgid "IMAP"
msgstr ""

#: foldertreewidget.cpp:375
msgid "Cached IMAP"
msgstr ""

#: foldertreewidget.cpp:378
#, fuzzy
msgid "News"
msgstr "Ráðstefnur"

#: foldertreewidget.cpp:381
#, fuzzy
msgid "Search"
msgstr "L&eit:"

#. i18n: ectx: property (text), widget (QRadioButton, mEncNone)
#: foldertreewidget.cpp:384 nntpaccountdialog_base.ui:160
#, fuzzy
msgid "None"
msgstr "KNode"

#: foldertreewidget.cpp:390
#, fuzzy
#| msgid "unknown"
msgid "Unknown"
msgstr "óþekkt"

#: headerview.cpp:48 knarticlefactory.cpp:315 knfilterconfigwidget.cpp:36
msgid "Subject"
msgstr "Titill"

#: headerview.cpp:49 headerview.cpp:435 knarticlefactory.cpp:316
#: knfilterconfigwidget.cpp:38
msgid "From"
msgstr "Frá"

#: headerview.cpp:50 headerview.cpp:80 knfilterconfigwidget.cpp:63
msgid "Score"
msgstr "Einkunn"

#: headerview.cpp:51 knfilterconfigwidget.cpp:67
msgid "Lines"
msgstr "Línur"

#: headerview.cpp:52 headerview.cpp:225 knarticlefactory.cpp:317
msgid "Date"
msgstr "Dagsetning"

#: headerview.cpp:77 treewidget.cpp:217
msgid "View Columns"
msgstr ""

#: headerview.cpp:79
#, fuzzy
msgid "Line Count"
msgstr "Sýna &línufjölda"

#: headerview.cpp:223
msgid "Date (thread changed)"
msgstr "Dagsetning (sem þráður breyttist)"

#: headerview.cpp:443
#, fuzzy
msgid "Newsgroups / To"
msgstr "Ráðstefnur / til"

#: knaccountmanager.cpp:125
msgid "Cannot create a folder for this account."
msgstr "Gat ekki búið til möppu fyrir þessa tengingu."

#: knaccountmanager.cpp:140
msgid ""
"This account cannot be deleted since there are some unsent messages for it."
msgstr "Það má ekki eyða þessari tengingu, því henni tilheyra ósend bréf."

#: knaccountmanager.cpp:143
msgid "Do you really want to delete this account?"
msgstr "Viltu örugglega eyða þessari tengingu?"

#. i18n: ectx: property (text), widget (QPushButton, mDeleteButton)
#: knaccountmanager.cpp:143 knarticlemanager.cpp:584 knconfigwidgets.cpp:771
#: knfiltermanager.cpp:261 knmainwidget.cpp:1537 knmainwidget.cpp:1588
#: nntpaccountlistwidget_base.ui:69
#, fuzzy
msgid "&Delete"
msgstr "&Eyða"

#: knaccountmanager.cpp:148
msgid ""
"At least one group of this account is currently in use.\n"
"The account cannot be deleted at the moment."
msgstr ""
"Að minnsta kosti ein ráðstefna sem tilheyrir þessari tengingu\n"
"er nú í notkun.  Reyndu aftur síðar."

#: knarticlefactory.cpp:149
#, fuzzy
msgid ""
"The author has requested a reply by email instead\n"
"of a followup to the newsgroup. (Followup-To: poster)\n"
"Do you want to reply in public anyway?"
msgstr ""
"Höfundur greinarinnar bað um að fá svör í tölvupósti í stað\n"
"þess að þau séu send á ráðstefnuna. (Followup-To: poster)"

#: knarticlefactory.cpp:149
msgid "Reply Public"
msgstr ""

#: knarticlefactory.cpp:149
#, fuzzy
msgid "Reply by Email"
msgstr "Svara í tölvu&pósti..."

#: knarticlefactory.cpp:197
msgid "The author requested a mail copy of your reply. (Mail-Copies-To header)"
msgstr ""
"Höfundur greinarinnar bað að fá afrit af svörum í tölvupósti (Mail-Copies-To "
"haus)"

#: knarticlefactory.cpp:287
msgid ""
"This article contains attachments. Do you want them to be forwarded as well?"
msgstr "Þessi grein hefur viðhengi.  Viltu einnig senda þau áfram?"

#: knarticlefactory.cpp:287
msgid "Forward"
msgstr ""

#: knarticlefactory.cpp:287
msgid "Do Not Forward"
msgstr ""

#: knarticlefactory.cpp:313
msgid "Forwarded message (begin)"
msgstr "Framsent bréf (byrjun)"

#: knarticlefactory.cpp:318
#, fuzzy
msgid "Newsgroup"
msgstr "Ráðstefnur"

#: knarticlefactory.cpp:324
msgid "Forwarded message (end)"
msgstr "Framsent bréf (lok)"

#: knarticlefactory.cpp:359
msgid "Do you really want to cancel this article?"
msgstr "Viltu örugglega afturkalla þessa grein?"

#: knarticlefactory.cpp:359
#, fuzzy
msgid "Cancel Article"
msgstr "Vista grein"

#: knarticlefactory.cpp:363
msgid ""
"Do you want to send the cancel\n"
"message now or later?"
msgstr ""
"Viltu senda afturköllunarboðin\n"
"strax eða fresta því?"

#: knarticlefactory.cpp:363
msgid "Question"
msgstr "Spurning"

#: knarticlefactory.cpp:363
msgid "&Now"
msgstr "&Strax"

#: knarticlefactory.cpp:363
msgid "&Later"
msgstr "&Fresta"

#: knarticlefactory.cpp:378 knarticlefactory.cpp:456 kncomposer.cpp:1449
msgid "You have no valid news accounts configured."
msgstr "Þú ert ekki með neina gilda ráðstefnutengingu uppsetta!"

#: knarticlefactory.cpp:440
msgid "Do you really want to supersede this article?"
msgstr "Viltu örugglega úrelda þessa grein?"

#: knarticlefactory.cpp:440
#, fuzzy
msgid "Supersede"
msgstr "Úre&lda grein"

#: knarticlefactory.cpp:574
msgid "This article cannot be edited."
msgstr "Það er ekki hægt að breyta þessari grein."

#: knarticlefactory.cpp:606
msgid "Article has already been sent."
msgstr "Það er nú þegar búið að senda þessa grein."

#: knarticlefactory.cpp:623
msgid "Unable to load article."
msgstr "Gat ekki lesið grein!"

#: knarticlefactory.cpp:664
msgid "Unable to load the outbox-folder."
msgstr "Gat ekki lesið 'út-möppuna'!"

#: knarticlefactory.cpp:727
#, fuzzy
#| msgid ""
#| "You have aborted the posting of articles. The unsent articles are stored "
#| "in the \"Outbox\" folder."
msgid ""
"You canceled the article posting. The unsent articles are stored in the "
"\"Outbox\" folder."
msgstr ""
"Þú hættir við að senda inn greinarnar.  Ósendu greinarnar verða geymdar í "
"\"Út\" möppunni."

#: knarticlefactory.cpp:774
msgid ""
"Please set a hostname for the generation\n"
"of the message-id or disable it."
msgstr ""
"Vinsamlega tilgreindu vélarheiti til að hægt\n"
"sé að smíða kennistreng skeytis eða aftengdu það."

#: knarticlefactory.cpp:810
#, kde-format
msgid ""
"<qt>Please enter a valid email address for the identity named <emphasis>%1</"
"emphasis> at the identity section of the configuration dialog.</qt>"
msgstr ""

#: knarticlefactory.cpp:892
msgid "Emails cannot be canceled or superseded."
msgstr "Hvorki er hægt að afturkalla né úrelda tölvupóst!"

#: knarticlefactory.cpp:898
msgid "Cancel messages cannot be canceled or superseded."
msgstr "Hvorki er hægt að afturkalla né úrelda afturköllunarskeyti!"

#: knarticlefactory.cpp:903
msgid "Only sent articles can be canceled or superseded."
msgstr "Einungis sendar greinar má afturkalla eða úrelda!"

#: knarticlefactory.cpp:908
msgid "This article has already been canceled or superseded."
msgstr "Þessa grein er þegar búið að afturkalla eða úrelda!"

#: knarticlefactory.cpp:915
msgid ""
"This article cannot be canceled or superseded,\n"
"because its message-id has not been created by KNode.\n"
"But you can look for your article in the newsgroup\n"
"and cancel (or supersede) it there."
msgstr ""
"Þessa grein er hvorki hægt að afturkalla né úrelda, \n"
"því kennistrengur hennar hefur ekki verið búinn til\n"
"af KNode.  Þú getur hinsvegar leitað að greininni í viðkomandi\n"
"ráðstefnu og afturkallað hana eða úrelt þar."

#: knarticlefactory.cpp:936
msgid ""
"This article does not appear to be from you.\n"
"You can only cancel or supersede your own articles."
msgstr ""
"Þessi grein virðist ekki vera samin af þér.  Þú\n"
"getur bara afturkallað eða úrelt þínar greinar."

#: knarticlefactory.cpp:941
msgid ""
"You have to download the article body\n"
"before you can cancel or supersede the article."
msgstr ""
"Þú þarft að sækja meginmál greinarinnar áður\n"
"en þú getur afturkallað eða úrelt hana."

#: knarticlefactory.cpp:1035
msgid "Errors While Sending"
msgstr "Villa við sendingu"

#: knarticlefactory.cpp:1041
msgid "Errors occurred while sending these articles:"
msgstr "Villa kom upp þegar þessar greinar voru sendar:"

#: knarticlefactory.cpp:1042
msgid "The unsent articles are stored in the \"Outbox\" folder."
msgstr "Ósendu greinarnar eru geymdar í \"Út\" möppunni."

#: knarticlefactory.cpp:1072
#, fuzzy
#| msgid "<b>Error message:</b><br>"
msgid "<b>Error message:</b><br />"
msgstr "<b>Villuboð:</b><br>"

#: knarticlefilter.cpp:34
msgctxt "default filter name"
msgid "all"
msgstr "öll"

#: knarticlefilter.cpp:35
msgctxt "default filter name"
msgid "unread"
msgstr "ólesin"

#: knarticlefilter.cpp:36
msgctxt "default filter name"
msgid "new"
msgstr "ný"

#: knarticlefilter.cpp:37
msgctxt "default filter name"
msgid "watched"
msgstr "undir eftirliti"

#: knarticlefilter.cpp:38
msgctxt "default filter name"
msgid "threads with unread"
msgstr "umræður, ólesnar að hluta"

#: knarticlefilter.cpp:39
msgctxt "default filter name"
msgid "threads with new"
msgstr "umræður með nýjum greinum"

#: knarticlefilter.cpp:40
msgctxt "default filter name"
msgid "own articles"
msgstr "eigin greinar"

#: knarticlefilter.cpp:41
msgctxt "default filter name"
msgid "threads with own articles"
msgstr "umræður með eigin greinum"

#: knarticlemanager.cpp:86
msgid "Save Attachment"
msgstr "Vista viðhengi"

#: knarticlemanager.cpp:110
msgid "Save Article"
msgstr "Vista grein"

#: knarticlemanager.cpp:193
msgid " Creating list..."
msgstr " Smíða lista ..."

#: knarticlemanager.cpp:578 kngroup.cpp:457
msgid "no subject"
msgstr "án viðfangsefnis"

#: knarticlemanager.cpp:583
msgid "Do you really want to delete these articles?"
msgstr "Viltu örugglega eyða þessum greinum?"

#: knarticlemanager.cpp:584
msgid "Delete Articles"
msgstr "Eyða greinum"

#: knarticlemanager.cpp:920
#, fuzzy, kde-format
msgid ""
"The article you requested is not available on your news server.<br />You "
"could try to get it from <a href=\"http://groups.google.com/groups?selm="
"%1\">groups.google.com</a>."
msgstr ""
"<br><br>Greinin sem þú baðst um er ekki tiltæk á miðlaranum.<br>Þú getur "
"reynt að nálgast hana með hjálp <a href=\"http://groups.google.com/groups?"
"q=msgid:%1&ic=1\">groups.google.com</a>."

#: knarticlemanager.cpp:1013 kngroupbrowser.cpp:423 kngroupbrowser.cpp:436
#: knmainwidget.cpp:298
msgid " (moderated)"
msgstr " (ritstýrt)"

#: knarticlemanager.cpp:1015
#, kde-format
msgid " %1: %2 new , %3 displayed"
msgstr " %1 : %2 ný, %3 á skjá"

#: knarticlemanager.cpp:1019
#, kde-format
msgid " Filter: %1"
msgstr " Sía: %1"

#: knarticlemanager.cpp:1028
#, kde-format
msgid " %1: %2 displayed"
msgstr " %1 : , %2 á skjá"

#: kncleanup.cpp:62
#, kde-format
msgid "Deleting expired articles in <b>%1</b>"
msgstr "Eyði útrunnum greinum í <b>%1</b>"

#: kncleanup.cpp:68
#, kde-format
msgid "Compacting folder <b>%1</b>"
msgstr "þjappa möppu <b>%1</b>"

#: kncleanup.cpp:188
#, fuzzy, kde-format
#| msgid "<b>%1</b><br>expired: %2<br>left: %3"
msgid "<b>%1</b><br />expired: %2<br />left: %3"
msgstr "<b>%1</b><br>útrunnin: %2<br>eftir: %3"

#: kncleanup.cpp:255
msgid "Cleaning Up"
msgstr "Tiltekt"

#: kncleanup.cpp:265
msgid "Cleaning up. Please wait..."
msgstr "Tek til. Augnablik..."

#: kncollectionview.cpp:84 knconfigwidgets.cpp:874 kngroupbrowser.cpp:91
msgid "Name"
msgstr "Nafn"

#: kncollectionview.cpp:85
msgid "Unread"
msgstr "Ólesin"

#: kncollectionview.cpp:86
msgid "Total"
msgstr "Samtals"

#: kncomposer.cpp:74
msgid "Edit Recent Addresses..."
msgstr "Breyta nýlegum vistföngum..."

#: kncomposer.cpp:208
msgid "&Send Now"
msgstr "&Senda núna"

#: kncomposer.cpp:214
msgid "Send &Later"
msgstr "Senda síða&r"

#: kncomposer.cpp:219
msgid "Save as &Draft"
msgstr "Vista sem &uppkast"

#: kncomposer.cpp:224
msgid "D&elete"
msgstr "&Eyða"

#: kncomposer.cpp:241
msgid "Paste as &Quotation"
msgstr "Líma sem &tilvitnun"

#: kncomposer.cpp:253
msgid "Append &Signature"
msgstr "Bæta við undir&skrift"

#: kncomposer.cpp:257
msgid "&Insert File..."
msgstr "Skjóta &inn skrá..."

#: kncomposer.cpp:261
msgid "Insert File (in a &box)..."
msgstr "Skjóta inn skrá (í &kassa)..."

#: kncomposer.cpp:266
msgid "Attach &File..."
msgstr "Hengja skrá &við..."

#: kncomposer.cpp:270
msgid "Sign Article with &PGP"
msgstr "Undirrita grein með &PGP"

#: kncomposer.cpp:274
#, fuzzy
msgid "&Remove"
msgstr "&Fjarlægja kassa"

#: kncomposer.cpp:278
msgid "&Properties"
msgstr "S&tillingar"

#: kncomposer.cpp:285
msgid "Send &News Article"
msgstr "Se&nda grein"

#: kncomposer.cpp:290
msgid "Send E&mail"
msgstr "Senda tölvu&póst"

#: kncomposer.cpp:295
msgid "Set &Charset"
msgstr "Velja &stafatöflu"

#: kncomposer.cpp:302
msgid "Set Charset"
msgstr "Velja stafatöflu"

#: kncomposer.cpp:308
msgid "&Word Wrap"
msgstr "Skipta &línum"

#: kncomposer.cpp:311
msgid "&Automatic Spellchecking"
msgstr ""

#: kncomposer.cpp:323
msgid "Add &Quote Characters"
msgstr "Bæta &tilvísunarstöfum við"

#: kncomposer.cpp:327
msgid "&Remove Quote Characters"
msgstr "&Fjarlægja tilvísunarstafi"

#: kncomposer.cpp:331
msgid "Add &Box"
msgstr "Bæta &kassa við"

#: kncomposer.cpp:335
msgid "Re&move Box"
msgstr "&Fjarlægja kassa"

#: kncomposer.cpp:339
msgid "Get &Original Text (not re-wrapped)"
msgstr "Sækja &upprunalegan texta (línuskipting ekki löguð)"

#: kncomposer.cpp:345
msgid "S&cramble (Rot 13)"
msgstr "&Kóða (Rot 13)"

#: kncomposer.cpp:352
msgid "Start &External Editor"
msgstr "Nota &annan ritil"

#: kncomposer.cpp:515 kncomposer.cpp:522 kncomposer.cpp:1204
msgid "<posted & mailed>"
msgstr "<sent & póstlagt>"

#: kncomposer.cpp:518 kncomposer.cpp:1205
msgid ""
"<posted & mailed>\n"
"\n"
msgstr ""
"<sent & póstlagt>\n"
"\n"

#: kncomposer.cpp:540
msgid "Your email address does not appears to be valid. Please modify it."
msgstr ""

#: kncomposer.cpp:545
msgid "Please enter a subject."
msgstr "Tilgreindu viðfangsefni."

#: kncomposer.cpp:555
msgid "Please enter a newsgroup."
msgstr "Tilgreindu ráðstefnu."

#: kncomposer.cpp:560
msgid ""
"You are crossposting to more than 12 newsgroups.\n"
"Please remove all newsgroups in which your article is off-topic."
msgstr ""
"Þú ert að senda þetta bréf á meira en 12 ráðstefnur.\n"
"Fjarlægðu allar ráðstefnur þar sem hún er ekki viðeigandi."

#: kncomposer.cpp:565
msgid ""
"You are crossposting to more than five newsgroups.\n"
"Please reconsider whether this is really useful\n"
"and remove groups in which your article is off-topic.\n"
"Do you want to re-edit the article or send it anyway?"
msgstr ""
"Þú ert að senda þetta bréf á meira en 5 ráðstefnur.\n"
"Íhugaðu vel hvort þetta sé gagnlegt og fjarlægðu þær\n"
"ráðstefnur sem koma þessu bréfi ekki við.\n"
"Viltu breyta greininni eða bara senda hana samt?"

#: kncomposer.cpp:566 kncomposer.cpp:576 kncomposer.cpp:588 kncomposer.cpp:659
#: kncomposer.cpp:673 kncomposer.cpp:679
msgid "&Send"
msgstr "&Senda"

#: kncomposer.cpp:566 kncomposer.cpp:576 kncomposer.cpp:588 kncomposer.cpp:659
#: kncomposer.cpp:674 kncomposer.cpp:679
msgctxt "edit article"
msgid "&Edit"
msgstr "&Breyta"

#: kncomposer.cpp:572
#, fuzzy
msgid ""
"You are crossposting to more than two newsgroups.\n"
"Please use the \"Followup-To\" header to direct the replies to your article "
"into one group.\n"
"Do you want to re-edit the article or send it anyway?"
msgstr ""
"Þú ert að senda þetta bréf á meira en eina ráðstefnur.\n"
"Notaðu \"Svara opinberlega á\" hausinn til að beina\n"
"svörum við greininni á eina ráðstefnu.\n"
"Viltu breyta greininni eða bara senda hana samt?"

#: kncomposer.cpp:582
msgid ""
"You are directing replies to more than 12 newsgroups.\n"
"Please remove some newsgroups from the \"Followup-To\" header."
msgstr ""
"Þú ert að beina svörum á meira en 12 ráðstefnur.\n"
"Fjarlægðu nokkrar ráðstefnur úr \"Svara opinberlega á\" hausnum."

#: kncomposer.cpp:587
msgid ""
"You are directing replies to more than five newsgroups.\n"
"Please reconsider whether this is really useful.\n"
"Do you want to re-edit the article or send it anyway?"
msgstr ""
"Þú ert að beina svörum á meira en 5 ráðstefnur.\n"
"Íhugaðu vel hvort þetta sé gagnlegt\n"
"Viltu breyta greininni eða bara senda hana samt?"

#: kncomposer.cpp:594
msgid "Please enter the email address."
msgstr "Sláðu inn netfangið."

#: kncomposer.cpp:647
msgid ""
"Your message contains characters which are not included\n"
"in the \"us-ascii\" character set; please choose\n"
"a suitable character set from the \"Options\" menu."
msgstr ""
"Greinin þín notar stafi sem eru ekki í \"us-ascii\" stafatöflunni.\n"
"Veldu viðeigandi stafatöflu á \"Stillingar\" valmyndinni."

#: kncomposer.cpp:652
msgid "You cannot post an empty message."
msgstr "Þú getur ekki sent tómar greinar."

#: kncomposer.cpp:658
msgid ""
"Your article seems to consist entirely of quoted text;\n"
"do you want to re-edit the article or send it anyway?"
msgstr ""
"Í greininni þinni er aðeins tilvitnaður texti.\n"
"Viltu lagfæra þetta eða senda greinina samt?"

#: kncomposer.cpp:663
msgid ""
"You cannot post an article consisting\n"
"entirely of quoted text."
msgstr ""
"Þú getur ekki sent greinar sem\n"
"innihalda bara tilvitnanir."

#: kncomposer.cpp:671
msgid ""
"Your article contains lines longer than 80 characters.\n"
"Do you want to re-edit the article or send it anyway?"
msgstr ""
"Í greininni þinni eru línur sem eru yfir 80 stafi á\n"
"lengd.  Viltu lagfæra þetta eða senda greinina samt?"

#: kncomposer.cpp:678
msgid ""
"Your signature is more than 8 lines long.\n"
"You should shorten it to match the widely accepted limit of 4 lines.\n"
"Do you want to re-edit the article or send it anyway?"
msgstr ""
"Undirskriftin þín er meira en 8 línur á lengd.\n"
"Þú ættir að stytta hana niður í 4 línur sem hefð er fyrir\n"
"Viltu lagfæra þetta eða senda greinina samt?"

#: kncomposer.cpp:683
msgid ""
"Your signature exceeds the widely-accepted limit of 4 lines:\n"
"please consider shortening your signature;\n"
"otherwise, you will probably annoy your readers."
msgstr ""
"Undirskriftin þín er lengri en fjórar línur.\n"
"Þú ættir því að íhuga að stytta undirskriftina.\n"
"Ella munt þú eflaust angra aðra lesendur."

#: kncomposer.cpp:706
msgid ""
"You have not configured your preferred signing key yet;\n"
"please specify it in the global identity configuration,\n"
"in the account properties or in the group properties.\n"
"The article will be sent unsigned."
msgstr ""
"Þú hefur ekki stillt uppáhalds-undirskrifarlykilinn ennþá.\n"
"Vinsamlega tilgreindu hann í víðværum uppsetningum\n"
"auðkennis, uppetningum tengingar eða hóps.\n"
"Greinin verður send óundirrituð."

#: kncomposer.cpp:713
msgid "Send Unsigned"
msgstr "Senda án undirritunnar"

#: kncomposer.cpp:905
msgid "Do you want to save this article in the draft folder?"
msgstr "Viltu vista þessa grein í uppkastamöppunni?"

#: kncomposer.cpp:1059
msgid "Insert File"
msgstr "Skjóta inn skrá"

#: kncomposer.cpp:1132
msgid "Attach File"
msgstr "Hengja skrá við"

#: kncomposer.cpp:1193
msgid ""
"The poster does not want a mail copy of your reply (Mail-Copies-To: "
"nobody);\n"
"please respect their request."
msgstr ""
"Höfundur vill ekki af sent afrit af svarinu þínu.\n"
"Vinsamlega virtu bón hans."

#: kncomposer.cpp:1194
msgid "&Send Copy"
msgstr "&Senda afrit"

#: kncomposer.cpp:1272
msgid "This will replace all text you have written."
msgstr "Þetta mun skrifa yfir allan texta sem þú hefur skrifað."

#: kncomposer.cpp:1286
msgid ""
"No editor configured.\n"
"Please do this in the settings dialog."
msgstr ""
"Enginn ritill hefur verið tilgreindur.\n"
"Lagaðu það í stillingarvalblaðinu."

#: kncomposer.cpp:1332
msgid ""
"Unable to start external editor.\n"
"Please check your configuration in the settings dialog."
msgstr ""
"Gat ekki ræst ritilinn.\n"
"Athugaðu hvort stillingar ritils séu réttar."

#: kncomposer.cpp:1349
msgid "News Article"
msgstr "Fréttagrein"

#: kncomposer.cpp:1351
msgid "Email"
msgstr "Netfang"

#: kncomposer.cpp:1353
msgid "News Article & Email"
msgstr "Fréttagrein & Tölvupóstur"

#: kncomposer.cpp:1357
msgid " OVR "
msgstr " YFR "

#: kncomposer.cpp:1359
msgid " INS "
msgstr " INS "

#: kncomposer.cpp:1361
#, kde-format
msgid " Type: %1 "
msgstr " Tegund: %1 "

#: kncomposer.cpp:1362
#, kde-format
msgid " Charset: %1 "
msgstr " Stafatafla: %1 "

#: kncomposer.cpp:1364 kncomposer.cpp:1371
#, kde-format
msgid " Column: %1 "
msgstr " Dálkur: %1 "

#: kncomposer.cpp:1365 kncomposer.cpp:1372
#, kde-format
msgid " Line: %1 "
msgstr " Lína: %1 "

#: kncomposer.cpp:1412
msgid "No Subject"
msgstr "Ekkert viðfangsefni"

#: kncomposer.cpp:1542
msgid "Attachment Properties"
msgstr "Eiginleikar viðhengis"

#: kncomposer.cpp:1549
#, fuzzy
msgid "File"
msgstr "Sía"

#. i18n: ectx: property (text), widget (QLabel, mNameLabel)
#: kncomposer.cpp:1555 nntpaccountdialog_base.ui:193
msgid "Name:"
msgstr "Nafn:"

#: kncomposer.cpp:1557
msgid "Size:"
msgstr "Stærð:"

#: kncomposer.cpp:1564
msgid "Mime"
msgstr "Mime"

#: kncomposer.cpp:1573
msgid "&Mime-Type:"
msgstr "&MIME-tag:"

#: kncomposer.cpp:1580
msgid "&Description:"
msgstr "&Lýsing:"

#: kncomposer.cpp:1597
msgid "&Encoding:"
msgstr "&Kóðun:"

#: kncomposer.cpp:1632
msgid ""
"You have set an invalid mime-type.\n"
"Please change it."
msgstr ""
"Þú hefur valið ólöglegt MIME-tag.\n"
"Breyttu því."

#: kncomposer.cpp:1637
msgid ""
"You have changed the mime-type of this non-textual attachment\n"
"to text. This might cause an error while loading or encoding the file.\n"
"Proceed?"
msgstr ""
"Þú hefur breytt MIME-tagi þessa gagnaviðhengis í texta-tag.\n"
"Þetta gæti valdið vandræðum þegar viðhengið er lesið eða kóðað.\n"
"Halda áfram?"

#. i18n: ectx: Menu (file)
#: kncomposerui.rc:5 knodeui.rc:5 knreaderui.rc:5
#, fuzzy
msgid "&File"
msgstr "Sí&a"

#. i18n: ectx: Menu (edit)
#: kncomposerui.rc:13 knodeui.rc:15 knreaderui.rc:11
#, fuzzy
msgid "&Edit"
msgstr "&Breyta"

#. i18n: ectx: Menu (attach)
#: kncomposerui.rc:27
msgid "&Attach"
msgstr "&Hengja við"

#. i18n: ectx: Menu (options)
#: kncomposerui.rc:33
msgid "Optio&ns"
msgstr "&Valkostir"

#. i18n: ectx: Menu (tools)
#: kncomposerui.rc:42
msgid "&Tools"
msgstr ""

#. i18n: ectx: ToolBar (mainToolBar)
#: kncomposerui.rc:57 knodeui.rc:131 knreaderui.rc:38
msgid "Main Toolbar"
msgstr ""

#: kncomposerview.cpp:301 kncomposerview.cpp:316
msgctxt ""
"@info/plain This message is place, as an inactive text, in the Followup-To "
"line edit of the message composer when the user select more than one group "
"to post his/her message."
msgid "Choose an appropriate group to redirect replies..."
msgstr ""

#: knconfigpages.cpp:96
msgid "Newsgroup Servers"
msgstr "Ráðstefnuþjónar"

#: knconfigpages.cpp:98
msgid "Mail Server (SMTP)"
msgstr "Póstþjónn (SMTP)"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox1)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: knconfigpages.cpp:132 postnewscomposerwidget_base.ui:23
#: postnewstechnicalwidget_base.ui:23
msgid "General"
msgstr "Almennt"

#: knconfigpages.cpp:133
msgid "Navigation"
msgstr "Leiðarstýring"

#: knconfigpages.cpp:134
msgid "Scoring"
msgstr "Einkunnagjöf"

#: knconfigpages.cpp:135
msgid "Filters"
msgstr "Síur"

#: knconfigpages.cpp:136
msgid "Headers"
msgstr "Hausar"

#: knconfigpages.cpp:137
msgid "Viewer"
msgstr "Skoðari"

#: knconfigpages.cpp:157
msgid "Technical"
msgstr "Tæknilegt"

#. i18n: ectx: label, entry (composerFont), group (VISUAL_APPEARANCE)
#: knconfigpages.cpp:158 knode.kcfg:367
msgid "Composer"
msgstr "Greinaritill"

#: knconfigpages.cpp:159
msgid "Spelling"
msgstr "Stafsetning"

#: knconfigwidgets.cpp:134
#, kde-format
msgid "Server: %1"
msgstr "Þjónn: %1"

#: knconfigwidgets.cpp:135
#, kde-format
msgid "Port: %1"
msgstr "Port: %1"

#: knconfigwidgets.cpp:137
msgid "Server: "
msgstr "Þjónn: "

#: knconfigwidgets.cpp:138
msgid "Port: "
msgstr "Port: "

#: knconfigwidgets.cpp:192 knfilterdialog.cpp:41
#, kde-format
msgid "Properties of %1"
msgstr "Eiginleikar %1"

#: knconfigwidgets.cpp:194
msgid "New Account"
msgstr "Ný tenging"

#: knconfigwidgets.cpp:201
msgid "Ser&ver"
msgstr "Þ&jónn:"

#: knconfigwidgets.cpp:249
#, fuzzy
msgid " minute"
msgid_plural " minutes"
msgstr[0] " mín"
msgstr[1] " mín"

#: knconfigwidgets.cpp:253
msgid "&Identity"
msgstr "Auð&kenni"

#: knconfigwidgets.cpp:257
#, fuzzy
msgid "&Cleanup"
msgstr "Tiltekt"

#: knconfigwidgets.cpp:291
msgid ""
"Please enter an arbitrary name for the account and the\n"
"hostname of the news server."
msgstr ""
"Gefðu upp handahófskennt nafn fyrir tenginguna og\n"
"vélarheiti ráðstefnumiðlarans."

#: knconfigwidgets.cpp:405
msgid "&Use custom colors"
msgstr "Nota sé&rsniðna liti"

#: knconfigwidgets.cpp:410
#, fuzzy
#| msgid "Cha&nge..."
msgctxt "@action:button Run a color selection dialog"
msgid "Cha&nge..."
msgstr "&Breyta..."

#: knconfigwidgets.cpp:420
msgid "Use custom &fonts"
msgstr "N&ota sérsniðin letur"

#: knconfigwidgets.cpp:425
#, fuzzy
#| msgid "Chang&e..."
msgctxt "@action:button Run a font selection dialog"
msgid "Chang&e..."
msgstr "Br&eyta..."

#: knconfigwidgets.cpp:674
#, fuzzy
msgctxt "@action:button Add a new message header field (open dialog)"
msgid "&Add..."
msgstr "&Bæta við..."

#: knconfigwidgets.cpp:678
#, fuzzy
msgctxt "@action:button Delete a message header field"
msgid "&Delete"
msgstr "&Eyða"

#: knconfigwidgets.cpp:682 knconfigwidgets.cpp:1025
msgctxt "modify something"
msgid "&Edit..."
msgstr "&Breyta..."

#: knconfigwidgets.cpp:686
#, fuzzy
#| msgid "&Up"
msgctxt "@action:button Move an element of a list up"
msgid "&Up"
msgstr "&Upp"

#: knconfigwidgets.cpp:690
#, fuzzy
#| msgid "Do&wn"
msgctxt "@action:button Move an element of a list down"
msgid "Do&wn"
msgstr "&Niður"

#: knconfigwidgets.cpp:771
msgid "Really delete this header?"
msgstr "Viltu örugglega eyða þessum haus?"

#: knconfigwidgets.cpp:842
msgid "Header Properties"
msgstr "Eignleikar hauss"

#: knconfigwidgets.cpp:858
#, fuzzy
#| msgid "H&eader:"
msgctxt "@label:textbox Edition of a message header name"
msgid "H&eader:"
msgstr "&Haus:"

#: knconfigwidgets.cpp:866
#, fuzzy
#| msgid "Displayed na&me:"
msgctxt ""
"@label:textbox Edition of the displayed name in the UI of a message header"
msgid "Displayed na&me:"
msgstr "&Birt nafn:"

#: knconfigwidgets.cpp:881
msgid "&Large"
msgstr "&Stórt"

#: knconfigwidgets.cpp:882
msgid "&Bold"
msgstr "&Feitletrað"

#: knconfigwidgets.cpp:883
msgid "&Italic"
msgstr "&Skáletur"

#: knconfigwidgets.cpp:884
msgid "&Underlined"
msgstr "u&ndirstrikað"

#: knconfigwidgets.cpp:890
msgid "Value"
msgstr "Gildi"

#: knconfigwidgets.cpp:897
msgid "L&arge"
msgstr "&stórt"

#: knconfigwidgets.cpp:898
msgid "Bol&d"
msgstr "&feitletrað"

#: knconfigwidgets.cpp:899
msgid "I&talic"
msgstr "S&káletrað"

#: knconfigwidgets.cpp:900
msgid "U&nderlined"
msgstr "U&ndirstrikað"

#: knconfigwidgets.cpp:980
msgid "Default score for &ignored threads:"
msgstr "Sjálfgefin einkunn &hunsaðra þráða:"

#: knconfigwidgets.cpp:987
msgid "Default score for &watched threads:"
msgstr "Sjálfgefin einkunn þráða undir eftir&liti:"

#: knconfigwidgets.cpp:1013
#, fuzzy
#| msgid "&Filters:"
msgctxt "@title"
msgid "&Filters:"
msgstr "Sí&ur:"

#: knconfigwidgets.cpp:1021
#, fuzzy
msgctxt "@action:button Add a new filter"
msgid "&Add..."
msgstr "&Bæta við..."

#: knconfigwidgets.cpp:1029
#, fuzzy
#| msgid "Co&py..."
msgctxt "@action:button Copy a filter"
msgid "Co&py..."
msgstr "&Afrita..."

#: knconfigwidgets.cpp:1033
#, fuzzy
msgctxt "@action:button Delete a filter"
msgid "&Delete"
msgstr "&Eyða"

#: knconfigwidgets.cpp:1040
#, fuzzy
#| msgid "&Menu:"
msgctxt "@title"
msgid "&Menu:"
msgstr "&Valmynd:"

#: knconfigwidgets.cpp:1047
#, fuzzy
#| msgid "&Up"
msgctxt "@action:button move something up in a list"
msgid "&Up"
msgstr "&Upp"

#: knconfigwidgets.cpp:1051
#, fuzzy
#| msgid "Do&wn"
msgctxt "@action:button move something down in a list"
msgid "Do&wn"
msgstr "&Niður"

#: knconfigwidgets.cpp:1055
#, fuzzy
#| msgid ""
#| "Add\n"
#| "&Separator"
msgctxt "@action:button"
msgid ""
"Add\n"
"&Separator"
msgstr ""
"Bæta við\n"
"að&skilnaði"

#: knconfigwidgets.cpp:1059
#, fuzzy
#| msgid ""
#| "&Remove\n"
#| "Separator"
msgctxt "@action:button"
msgid ""
"&Remove\n"
"Separator"
msgstr ""
"&Fjarlægja\n"
"aðskilnað"

#: knconfigwidgets.cpp:1281
msgid "Allow 8-bit"
msgstr "Leyfa 8-bita"

#: knconfigwidgets.cpp:1282
msgid "7-bit (Quoted-Printable)"
msgstr "7-bita (Quoted-Printable)"

#: knconfigwidgets.cpp:1382
#, fuzzy
msgid "Additional Header"
msgstr "&Til viðbótar"

#: knconfigwidgets.cpp:1503
msgid "&Use global cleanup configuration"
msgstr ""

#: knconfigwidgets.cpp:1508
#, fuzzy
msgid "Newsgroup Cleanup Settings"
msgstr "Ráðstefnuþjónar"

#: knconfigwidgets.cpp:1516
msgid "&Expire old articles automatically"
msgstr "&Henda gömlum greinum sjálfkrafa"

#: knconfigwidgets.cpp:1521 knconfigwidgets.cpp:1531 knconfigwidgets.cpp:1539
#: knconfigwidgets.cpp:1619 kscoringeditor.cpp:647
msgid " day"
msgid_plural " days"
msgstr[0] ""
msgstr[1] ""

#: knconfigwidgets.cpp:1522
msgid "&Purge groups every:"
msgstr "&Hreinsa ráðstefnur eftir:"

#: knconfigwidgets.cpp:1532
msgid "&Keep read articles:"
msgstr "&Geyma lesnar greinar í:"

#: knconfigwidgets.cpp:1540
msgid "Keep u&nread articles:"
msgstr "Geyma óles&nar greinar í:"

#: knconfigwidgets.cpp:1546
msgid "&Remove articles that are not available on the server"
msgstr "Fja&rlægja greinar sem eru horfnar af fréttaþjóni"

#: knconfigwidgets.cpp:1550
msgid "Preser&ve threads"
msgstr "&Varðveita umræðuþræði"

#: knconfigwidgets.cpp:1606
msgid "Folders"
msgstr "Möppur"

#: knconfigwidgets.cpp:1614
msgid "Co&mpact folders automatically"
msgstr "Þjappa í möppum s&jálfkrafa"

#: knconfigwidgets.cpp:1620
msgid "P&urge folders every:"
msgstr "&Hreinsa úr möppum á:"

#: kndisplayedheader.cpp:28
msgctxt "collection of article headers"
msgid "Approved"
msgstr "Samþykkt"

#: kndisplayedheader.cpp:29
msgctxt "collection of article headers"
msgid "Content-Transfer-Encoding"
msgstr "Kóðun innihalds í flutningi"

#: kndisplayedheader.cpp:30
msgctxt "collection of article headers"
msgid "Content-Type"
msgstr "Tegund innihalds"

#: kndisplayedheader.cpp:31
msgctxt "collection of article headers"
msgid "Control"
msgstr "Stjórn"

#: kndisplayedheader.cpp:32
msgctxt "collection of article headers"
msgid "Date"
msgstr "Dagsetning"

#: kndisplayedheader.cpp:33
msgctxt "collection of article headers"
msgid "Distribution"
msgstr "Dreifing"

#: kndisplayedheader.cpp:34
msgctxt "collection of article headers"
msgid "Expires"
msgstr "Rennur út"

#: kndisplayedheader.cpp:35
msgctxt "collection of article headers"
msgid "Followup-To"
msgstr "Svara opinberlega á"

#: kndisplayedheader.cpp:36
msgctxt "collection of article headers"
msgid "From"
msgstr "Frá"

#: kndisplayedheader.cpp:37
msgctxt "collection of article headers"
msgid "Lines"
msgstr "Línur"

#: kndisplayedheader.cpp:38
msgctxt "collection of article headers"
msgid "Mail-Copies-To"
msgstr "Póstur-afritast-til"

#: kndisplayedheader.cpp:39
msgctxt "collection of article headers"
msgid "Message-ID"
msgstr "Kennistrengur bréfs"

#: kndisplayedheader.cpp:40
msgctxt "collection of article headers"
msgid "Mime-Version"
msgstr "Mime útgáfa"

#: kndisplayedheader.cpp:41
msgctxt "collection of article headers"
msgid "NNTP-Posting-Host"
msgstr "Frá NNTP þjóni"

#: kndisplayedheader.cpp:42
msgctxt "collection of article headers"
msgid "Newsgroups"
msgstr "Ráðstefnur"

#: kndisplayedheader.cpp:43
msgctxt "collection of article headers"
msgid "Organization"
msgstr "Félag"

#: kndisplayedheader.cpp:44
msgctxt "collection of article headers"
msgid "Path"
msgstr "Slóð"

#: kndisplayedheader.cpp:45
msgctxt "collection of article headers"
msgid "References"
msgstr "Tilvitnanir"

#: kndisplayedheader.cpp:46
msgctxt "collection of article headers"
msgid "Reply-To"
msgstr "Svara höfundi á"

#: kndisplayedheader.cpp:47
msgctxt "collection of article headers"
msgid "Sender"
msgstr "Sendandi"

#: kndisplayedheader.cpp:48
msgctxt "collection of article headers"
msgid "Subject"
msgstr "Viðfangsefni"

#: kndisplayedheader.cpp:49
msgctxt "collection of article headers"
msgid "Supersedes"
msgstr "Úreldir"

#: kndisplayedheader.cpp:50
msgctxt "collection of article headers"
msgid "To"
msgstr "Til"

#: kndisplayedheader.cpp:51
msgctxt "collection of article headers"
msgid "User-Agent"
msgstr "Kennistrengur forrits"

#: kndisplayedheader.cpp:52
msgctxt "collection of article headers"
msgid "X-Mailer"
msgstr "X-Mailer"

#: kndisplayedheader.cpp:53
msgctxt "collection of article headers"
msgid "X-Newsreader"
msgstr "X-Newsreader"

#: kndisplayedheader.cpp:54
msgctxt "collection of article headers"
msgid "X-No-Archive"
msgstr "X-No-Archive"

#: kndisplayedheader.cpp:55
msgctxt "collection of article headers"
msgid "XRef"
msgstr "XRef"

#: kndisplayedheader.cpp:57
msgctxt "collection of article headers"
msgid "Groups"
msgstr "Hópar"

#: knfilterconfigwidget.cpp:40
msgid ""
"The following placeholders are supported:\n"
"%MYNAME=own name, %MYEMAIL=own email address"
msgstr ""
"Nota má eftirfarandi staðgengla:\n"
"%MYNAME=eigið nafn, %MYEMAIL=eigið netfang"

#: knfilterconfigwidget.cpp:43
msgid "Subject && &From"
msgstr "Titill && &Frá"

#: knfilterconfigwidget.cpp:49
msgid "Message-ID"
msgstr "Kennistrengur skeytis"

#: knfilterconfigwidget.cpp:51
msgid "References"
msgstr "Tilvitnanir"

#: knfilterconfigwidget.cpp:54
msgid "M&essage-IDs"
msgstr "K&ennistrengir skeyta"

#: knfilterconfigwidget.cpp:57
msgid "&Status"
msgstr "&Staða"

#: knfilterconfigwidget.cpp:65
msgid "Age"
msgstr "Aldur"

#: knfilterconfigwidget.cpp:65
msgid " days"
msgstr " daga"

#: knfilterconfigwidget.cpp:70
msgid "&Additional"
msgstr "&Til viðbótar"

#: knfilterdialog.cpp:39
msgid "New Filter"
msgstr "Ný sía"

#: knfilterdialog.cpp:50
msgid "Na&me:"
msgstr "&Nafn:"

#: knfilterdialog.cpp:53
msgid "Single Articles"
msgstr "Stakar greinar"

#: knfilterdialog.cpp:54
msgid "Whole Threads"
msgstr "Heila þræði"

#: knfilterdialog.cpp:55
msgid "Apply o&n:"
msgstr "&Beita á:"

#: knfilterdialog.cpp:57
msgid "Sho&w in menu"
msgstr "&Sýna í valmynd"

#: knfilterdialog.cpp:115
msgid "Please provide a name for this filter."
msgstr "Gefðu þessari síu nafn."

#: knfilterdialog.cpp:118
msgid ""
"A filter with this name exists already.\n"
"Please choose a different name."
msgstr ""
"Sía með þessu nafni er nú þegar til.\n"
"Veldu annað nafn."

#: knfiltermanager.cpp:261
msgid "Do you really want to delete this filter?"
msgstr "Viltu örugglega eyða þessari síu?"

#: knfiltermanager.cpp:344
msgid "ERROR: no such filter."
msgstr "VILLA: sían er ekki til."

#: knfiltermanager.cpp:368
msgid "Select Filter"
msgstr "Velja síu"

#: knfolder.cpp:194
msgid " Loading folder..."
msgstr " Hleð inn möppu..."

#: knfoldermanager.cpp:46
msgid "Local Folders"
msgstr "Staðbundnar möppur"

#: knfoldermanager.cpp:50
msgid "Drafts"
msgstr "Uppköst"

#: knfoldermanager.cpp:54
msgid "Outbox"
msgstr "Út"

#: knfoldermanager.cpp:58
msgid "Sent"
msgstr "Send"

#: knfoldermanager.cpp:88
msgid "Cannot load index-file."
msgstr "Gat ekki lesið innihaldsyfirlit."

#: knfoldermanager.cpp:143
msgid "New folder"
msgstr "Ný mappa"

#: knfoldermanager.cpp:306
msgid "Import MBox Folder"
msgstr "Hlaða inn MBox möppu"

#: knfoldermanager.cpp:315
msgid " Importing articles..."
msgstr " Hleð inn greinar..."

#: knfoldermanager.cpp:379
msgid " Storing articles..."
msgstr " Vista greinar..."

#: knfoldermanager.cpp:406
msgid "Export Folder"
msgstr "Flytja möppu út"

#: knfoldermanager.cpp:410
msgid " Exporting articles..."
msgstr " Flyt greinar út..."

#: kngroup.cpp:923
msgid " Scoring..."
msgstr " Einkunnagjöf..."

#: kngroup.cpp:970
msgid " Reorganizing headers..."
msgstr " Endurraða hausum..."

#: kngroup.cpp:1066
#, kde-format
msgid "Cannot load saved headers: %1"
msgstr "Gat ekki hlaðið inn vistaða hausa: %1"

#: kngroupbrowser.cpp:55
msgid "S&earch:"
msgstr "L&eit:"

#: kngroupbrowser.cpp:58
msgid "Disable &tree view"
msgstr "Slökkva á &trjásýn"

#: kngroupbrowser.cpp:60
msgid "&Subscribed only"
msgstr "Takmarka við ás&krift"

#: kngroupbrowser.cpp:62
msgid "&New only"
msgstr "Takmarka við &ný"

#: kngroupbrowser.cpp:70
msgid "Loading groups..."
msgstr "Hleð inn ráðstefnum..."

#: kngroupbrowser.cpp:92
msgid "Description"
msgstr "Lýsing"

#: kngroupbrowser.cpp:369
#, kde-format
msgid "Groups on %1: (%2 displayed)"
msgstr "Ráðstefnur á %1 (%2 sýndar):"

#: kngroupbrowser.cpp:422 kngroupbrowser.cpp:435
msgid "moderated"
msgstr "ritstýrð"

#: kngroupdialog.cpp:38
msgid "Subscribe to Newsgroups"
msgstr "Panta áskrift að ráðstefnum"

#: kngroupdialog.cpp:38
msgid "New &List"
msgstr "Nýr &listi"

#: kngroupdialog.cpp:38
msgid "New &Groups..."
msgstr "Nýjar &ráðstefnur..."

#: kngroupdialog.cpp:40
msgid "Current changes:"
msgstr "Virkar breytingar:"

#: kngroupdialog.cpp:42
msgid "Subscribe To"
msgstr "Panta áskrift að"

#: kngroupdialog.cpp:44
msgid "Unsubscribe From"
msgstr "Afpanta áskrift að"

#: kngroupdialog.cpp:142
msgid ""
"You have subscribed to a moderated newsgroup.\n"
"Your articles will not appear in the group immediately.\n"
"They have to go through a moderation process."
msgstr ""
"Þú hefur gerst áskrifandi að ritstýrðri ráðstefnu.\n"
"Greinar sem þú sendir munu ekki birtast samtímis,\n"
"þar sem þær fara í gegnum ritstýringarferli."

#: kngroupdialog.cpp:276
msgid "Downloading groups..."
msgstr "Sæki ráðstefnur..."

#: kngroupdialog.cpp:288
msgid "New Groups"
msgstr "Nýjar ráðstefnur"

#: kngroupdialog.cpp:291
msgid "Check for New Groups"
msgstr "Leita að nýjum ráðstefnum"

#: kngroupdialog.cpp:295
msgid "Created since last check:"
msgstr "Nýtt síðan síðast var leitað:"

#: kngroupdialog.cpp:303
msgid "Created since this date:"
msgstr "Nýtt síðan:"

#: kngroupdialog.cpp:321
msgid "Checking for new groups..."
msgstr "Leita að nýjum ráðstefnum..."

#: kngroupmanager.cpp:422
msgid ""
"Do you really want to unsubscribe\n"
"from these groups?"
msgstr ""
"Viltu örugglega afpanta áskrift að\n"
"þessum ráðstefnum?"

#: kngroupmanager.cpp:423 knmainwidget.cpp:1462
#, fuzzy
msgid "Unsubscribe"
msgstr "Afpanta áskrift að"

#: kngroupmanager.cpp:461
#, kde-format
msgid ""
"The group \"%1\" is being updated currently.\n"
"It is not possible to unsubscribe from it at the moment."
msgstr ""
"Verið er að uppfæra ráðstefuna \"%1\".\n"
"Ekki er hægt að afpanta áskrift meðan á því stendur."

#: kngroupmanager.cpp:526
msgid ""
"This group cannot be expired because it is currently being updated.\n"
" Please try again later."
msgstr ""
"Ekki er hægt að úrelda þessa ráðstefnu þar sem verið er að uppfæra hana.\n"
"Vinsamlegast reyndu síðar."

#: kngroupmanager.cpp:645
#, kde-format
msgid ""
"The group %1 does not appear to exist anymore on the server.\n"
"You may unsubscribe."
msgstr ""

#: kngroupmanager.cpp:669
msgid ""
"You do not have any groups for this account;\n"
"do you want to fetch a current list?"
msgstr ""
"Þessari tengingu tilheyra engar ráðstefnur.\n"
"Viltu sækja lista yfir virkar ráðstefnur?"

#: kngroupmanager.cpp:669
#, fuzzy
msgid "Fetch List"
msgstr "Greinar"

#: kngroupmanager.cpp:669
msgid "Do Not Fetch"
msgstr ""

#: kngrouppropdlg.cpp:44
#, fuzzy, kde-format
#| msgid "Properties of %1"
msgctxt "@title:window %1=newsgroup name"
msgid "Properties of %1"
msgstr "Eiginleikar %1"

#: kngrouppropdlg.cpp:51
#, fuzzy
#| msgid "General"
msgctxt "@title:tab"
msgid "General"
msgstr "Almennt"

#: kngrouppropdlg.cpp:56
#, fuzzy
#| msgid "Settings"
msgctxt "@title:group"
msgid "Settings"
msgstr "Stillingar"

#: kngrouppropdlg.cpp:67
#, fuzzy
#| msgid "&Nickname:"
msgctxt "@label:textbox Alternative name of a newsgroup"
msgid "Nickname:"
msgstr "Viður&nefni:"

#: kngrouppropdlg.cpp:72
#, fuzzy
#| msgid "&Use different default charset:"
msgctxt "@label:listbox"
msgid "Use different default charset:"
msgstr "&Nota aðra sjálfgefna stafatöflu:"

#: kngrouppropdlg.cpp:89
#, fuzzy
#| msgid "Description"
msgctxt "@title:group"
msgid "Description"
msgstr "Lýsing"

#: kngrouppropdlg.cpp:97
#, fuzzy
#| msgid "Name:"
msgctxt "@label name of a newsgroup"
msgid "Name:"
msgstr "Nafn:"

#: kngrouppropdlg.cpp:102
#, fuzzy
#| msgid "Description:"
msgctxt "@label description of a newsgroup"
msgid "Description:"
msgstr "Lýsing:"

#: kngrouppropdlg.cpp:107
#, fuzzy
#| msgid "Status:"
msgctxt "@label status of posting to a newsgroup"
msgid "Status:"
msgstr "Staða:"

#: kngrouppropdlg.cpp:111
#, fuzzy
#| msgid "unknown"
msgctxt "posting status"
msgid "unknown"
msgstr "óþekkt"

#: kngrouppropdlg.cpp:113
msgid "posting forbidden"
msgstr "sending óheimil"

#: kngrouppropdlg.cpp:115
msgid "posting allowed"
msgstr "sending heimil"

#: kngrouppropdlg.cpp:117
#, fuzzy
#| msgid "moderated"
msgctxt "posting status"
msgid "moderated"
msgstr "ritstýrð"

#: kngrouppropdlg.cpp:127
#, fuzzy
#| msgid "Statistics"
msgctxt "@title:group"
msgid "Statistics"
msgstr "Tölfræði"

#: kngrouppropdlg.cpp:135
msgid "Articles:"
msgstr "Greinar:"

#: kngrouppropdlg.cpp:140
msgid "Unread articles:"
msgstr "Ólesnar greinar:"

#: kngrouppropdlg.cpp:145
msgid "New articles:"
msgstr "Nýjar greinar:"

#: kngrouppropdlg.cpp:150
msgid "Threads with unread articles:"
msgstr "Umræðuþræðir með ólesnum greinum:"

#: kngrouppropdlg.cpp:155
msgid "Threads with new articles:"
msgstr "Umræðuþræðir með nýjum greinum:"

#: kngrouppropdlg.cpp:167
#, fuzzy
#| msgid "&Identity"
msgctxt "@title:tab"
msgid "Identity"
msgstr "Auð&kenni"

#: kngrouppropdlg.cpp:171
#, fuzzy
msgctxt "@title:tab"
msgid "Cleanup"
msgstr "Tiltekt"

#: kngroupselectdialog.cpp:29
msgid "Select Destinations"
msgstr "Velja áfangastaði"

#: kngroupselectdialog.cpp:35
msgid "Groups for this article:"
msgstr "Ráðstefnur greinarinnar:"

#: kngroupselectdialog.cpp:104
msgid ""
"You are crossposting to a moderated newsgroup.\n"
"Please be aware that your article will not appear in any group\n"
"until it has been approved by the moderators of the moderated group."
msgstr ""
"Þú ert að senda á fleiri en eina ráðstefnu.\n"
"Ein eða fleiri ráðstefnan er ritstýrð. Veittu því athygli að greinin mun mun "
"ekki birtast á\n"
"neinni ráðstefnu fyrr en hún hefur verið samþykkt af ritstjórum ritstýrðu "
"ráðstefnanna."

#: knjobdata.cpp:156
#, fuzzy
msgid "Sending message"
msgstr "Sen&da bréf sem bíða"

#: knjobdata.cpp:165 scheduler.cpp:213
#, fuzzy
msgid "Waiting..."
msgstr " Raða..."

#: knmainwidget.cpp:142
msgid "&Search:"
msgstr "L&eit:"

#: knmainwidget.cpp:269
msgid " Ready"
msgstr " Tilbúin"

#: knmainwidget.cpp:294
msgid "KDE News Reader"
msgstr "KDE ráðstefnuskoðari"

#: knmainwidget.cpp:479
msgid "&Next Article"
msgstr "&Næsta grein"

#: knmainwidget.cpp:480
#, fuzzy
msgid "Go to next article"
msgstr "Ráðstefnur greinarinnar:"

#: knmainwidget.cpp:485
msgid "&Previous Article"
msgstr "&Fyrri grein"

#: knmainwidget.cpp:487
#, fuzzy
msgid "Go to previous article"
msgstr "&Fyrri grein"

#: knmainwidget.cpp:492
msgid "Next Unread &Article"
msgstr "Næsta ólesna &grein"

#: knmainwidget.cpp:498
msgid "Next Unread &Thread"
msgstr "Næsti ólesni u&mræðuþráður"

#: knmainwidget.cpp:504
msgid "Ne&xt Group"
msgstr "Næsta &ráðstefna"

#: knmainwidget.cpp:510
msgid "Pre&vious Group"
msgstr "Fyrri ráðs&tefna"

#: knmainwidget.cpp:515
msgid "Read &Through Articles"
msgstr "Lesa gegn&um greinar"

#: knmainwidget.cpp:520
msgid "Focus on Next Folder"
msgstr ""

#: knmainwidget.cpp:525
msgid "Focus on Previous Folder"
msgstr ""

#: knmainwidget.cpp:530
#, fuzzy
msgid "Select Folder with Focus"
msgstr "Velja röðunardálk"

#: knmainwidget.cpp:535
#, fuzzy
msgid "Focus on Next Article"
msgstr "&Næsta grein"

#: knmainwidget.cpp:540
#, fuzzy
msgid "Focus on Previous Article"
msgstr "&Fyrri grein"

#: knmainwidget.cpp:545
#, fuzzy
msgid "Select Article with Focus"
msgstr "Sækja grein með ID"

#: knmainwidget.cpp:552
msgid "Account &Properties"
msgstr "&Eiginleikar tengingar"

#: knmainwidget.cpp:557
msgid "&Rename Account"
msgstr "E&ndurnefna tengingu"

#: knmainwidget.cpp:562
msgid "&Subscribe to Newsgroups..."
msgstr "&Áskrift að ráðstefnum..."

#: knmainwidget.cpp:566
msgid "&Expire All Groups"
msgstr "Láta allar ráðstefnur r&enna út"

#: knmainwidget.cpp:571
msgid "&Get New Articles in All Groups"
msgstr "Sækja &nýjar greinar á öllum ráðstefnum"

#: knmainwidget.cpp:576
msgid "&Get New Articles in All Accounts"
msgstr "Sækja &nýjar greinar á öllum ráðstefnum"

#: knmainwidget.cpp:581
msgid "&Delete Account"
msgstr "&Eyða tengingu"

#: knmainwidget.cpp:586
msgid "&Post to Newsgroup..."
msgstr "&Senda á ráðstefnu..."

#: knmainwidget.cpp:593
msgid "Group &Properties"
msgstr "S&tillingar ráðstefnu"

#: knmainwidget.cpp:598
msgid "Rename &Group"
msgstr "Endu&rnefna ráðstefnu"

#: knmainwidget.cpp:603
msgid "&Get New Articles"
msgstr "Sækja &nýjar greinar"

#: knmainwidget.cpp:607
msgid "E&xpire Group"
msgstr "Láta &renna út"

#: knmainwidget.cpp:611
msgid "Re&organize Group"
msgstr "End&urraða ráðstefnu"

#: knmainwidget.cpp:616
msgid "&Unsubscribe From Group"
msgstr "&Afpanta áskrift að ráðstefnu"

#: knmainwidget.cpp:621
msgid "Mark All as &Read"
msgstr "Merkja allt sem &lesið"

#: knmainwidget.cpp:625
msgid "Mark All as U&nread"
msgstr "Merkja allt sem ól&esið"

#: knmainwidget.cpp:629
msgid "Mark Last as Unr&ead..."
msgstr "Merkja síðasta sem ól&esið..."

#: knmainwidget.cpp:634
msgid "&Configure KNode..."
msgstr "&Stilla KNode..."

#: knmainwidget.cpp:640
msgid "&New Folder"
msgstr "&Ný mappa"

#: knmainwidget.cpp:645
msgid "New &Subfolder"
msgstr "Ný &undirmappa"

#: knmainwidget.cpp:650
msgid "&Delete Folder"
msgstr "&Eyða möppu"

#: knmainwidget.cpp:655
msgid "&Rename Folder"
msgstr "Endu&rnefna möppu"

#: knmainwidget.cpp:659
msgid "C&ompact Folder"
msgstr "Þja&ppa möppu"

#: knmainwidget.cpp:663
msgid "Co&mpact All Folders"
msgstr "Þjappa öllu&m möppum"

#: knmainwidget.cpp:667
msgid "&Empty Folder"
msgstr "&Tæma möppu"

#: knmainwidget.cpp:671
msgid "&Import MBox Folder..."
msgstr "Hlaða &inn MBox möppu..."

#: knmainwidget.cpp:675
msgid "E&xport as MBox Folder..."
msgstr "Flytja út sem MBo&x möppu..."

#: knmainwidget.cpp:680
msgid "S&ort"
msgstr "&Raða"

#: knmainwidget.cpp:682
msgid "By &Subject"
msgstr "Eftir &Titlum"

#: knmainwidget.cpp:683
msgid "By S&ender"
msgstr "Eftir se&ndendum"

#: knmainwidget.cpp:684
msgid "By S&core"
msgstr "Eftir &einkunum"

#: knmainwidget.cpp:685
msgid "By &Lines"
msgstr "Eftir &línufjölda"

#: knmainwidget.cpp:686
msgid "By &Date"
msgstr "Eftir &dagsetningum"

#: knmainwidget.cpp:692
msgid "Sort"
msgstr "Raða"

#: knmainwidget.cpp:696
msgid "&Filter"
msgstr "Sí&a"

#: knmainwidget.cpp:701
msgid "Filter"
msgstr "Sía"

#: knmainwidget.cpp:706
msgid "&Search Articles..."
msgstr "&Leita í greinum..."

#: knmainwidget.cpp:712
msgid "&Refresh List"
msgstr "&Endurnýja lista"

#: knmainwidget.cpp:717
msgid "&Collapse All Threads"
msgstr "&Fella saman umræðuþræði"

#: knmainwidget.cpp:721
msgid "E&xpand All Threads"
msgstr "&Opna alla umræðuþræði"

#: knmainwidget.cpp:725
msgid "&Toggle Subthread"
msgstr "&Birta/fela undirþráð"

#: knmainwidget.cpp:730
msgid "Show T&hreads"
msgstr "Sýna &umræðuþræði"

#: knmainwidget.cpp:738
msgid "Mark as &Read"
msgstr "&Merkja sem lesið"

#: knmainwidget.cpp:744
msgid "Mar&k as Unread"
msgstr "Mer&kja sem ólesið"

#: knmainwidget.cpp:749
msgid "Mark &Thread as Read"
msgstr "Merkja umræðu sem les&na"

#: knmainwidget.cpp:754
msgid "Mark T&hread as Unread"
msgstr "Merk&ja umræðu sem ólesna"

#: knmainwidget.cpp:760
msgid "Open in Own &Window"
msgstr "&Opna í eigin glugga"

#: knmainwidget.cpp:767
msgid "&Edit Scoring Rules..."
msgstr "Breyta &einkunnarreglum..."

#: knmainwidget.cpp:772
msgid "Recalculate &Scores"
msgstr "Endurreikna &einkunnir"

#: knmainwidget.cpp:776
msgid "&Lower Score for Author..."
msgstr "&Lækka einkunn höfundar..."

#: knmainwidget.cpp:781
msgid "&Raise Score for Author..."
msgstr "&Hækka einkunn höfundar..."

#: knmainwidget.cpp:787
msgid "&Ignore Thread"
msgstr "&Hunsa þráð"

#: knmainwidget.cpp:793
msgid "&Watch Thread"
msgstr "&Fylgjast með þræði"

#: knmainwidget.cpp:800
msgid "Sen&d Pending Messages"
msgstr "Sen&da bréf sem bíða"

#: knmainwidget.cpp:805
msgid "&Delete Article"
msgstr "&Eyða grein"

#: knmainwidget.cpp:811
msgid "Send &Now"
msgstr "&Senda núna"

#: knmainwidget.cpp:816
msgctxt "edit article"
msgid "&Edit Article..."
msgstr "&Breyta grein..."

#: knmainwidget.cpp:823
msgid "Stop &Network"
msgstr "Stöðva &netsamskipti"

#: knmainwidget.cpp:828
msgid "&Fetch Article with ID..."
msgstr "Sæ&kja grein með ID..."

#: knmainwidget.cpp:833
msgid "Show Quick Search"
msgstr "Sýna flýtileit"

#: knmainwidget.cpp:894
#, fuzzy
msgid ""
"KNode is currently sending articles. If you quit now you might lose these "
"articles.\n"
"Do you want to quit anyway?"
msgstr ""
"KNode er þessa stundina að senda greinar.  Ef þú hættir núna gætu þessar "
"greinar glatast.\n"
"Viltu samt hætta?"

#: knmainwidget.cpp:1462
#, kde-format
msgid "Do you really want to unsubscribe from %1?"
msgstr "Viltu örugglega afpanta áskrift að %1?"

#: knmainwidget.cpp:1492
msgid "Mark Last as Unread"
msgstr "Merkja síðasta sem ólesið"

#: knmainwidget.cpp:1493
msgid "Enter how many articles should be marked unread:"
msgstr "Gefðu upp hversu margar greinar skulu merktar ólesnar:"

#: knmainwidget.cpp:1534
msgid "You cannot delete a standard folder."
msgstr "Þú getur ekki eytt innbyggðri möppu"

#: knmainwidget.cpp:1537
msgid "Do you really want to delete this folder and all its children?"
msgstr "Viltu örugglega eyða þessari möppu og öllum undirmöppum?"

#: knmainwidget.cpp:1541
msgid ""
"This folder cannot be deleted because some of\n"
" its articles are currently in use."
msgstr ""
"Ekki er unnt að eyða þessari möppu þar sem\n"
"greinar í henni eru í notkun."

#: knmainwidget.cpp:1554
msgid "You cannot rename a standard folder."
msgstr "Þú getur ekki endurnefnt sjálfgefna möppu."

#: knmainwidget.cpp:1584
msgid ""
"This folder cannot be emptied at the moment\n"
"because some of its articles are currently in use."
msgstr ""
"Ekki er unnt að tæma þessa möppu í augnablkinu\n"
"þar sem sumar greinar í henni eru í  notkun."

#: knmainwidget.cpp:1588
#, kde-format
msgid "Do you really want to delete all articles in %1?"
msgstr "Viltu örugglega eyða greinum í %1?"

#: knmainwidget.cpp:1623
msgid "Select Sort Column"
msgstr "Velja röðunardálk"

#: knmainwidget.cpp:1946
msgid "Fetch Article with ID"
msgstr "Sækja grein með ID"

#: knmainwidget.cpp:1952
msgid "&Message-ID:"
msgstr "&Kennistrengur skeytis:"

#: knmainwidget.cpp:1957
msgid "&Fetch"
msgstr "S&ækja"

#. i18n: ectx: label, entry (identity), group (IDENTITY)
#: knode.kcfg:13
#, fuzzy
#| msgid "&Identity"
msgid "Identity"
msgstr "Auð&kenni"

#. i18n: ectx: label, entry (autoCheckGroups), group (READNEWS)
#: knode.kcfg:21
#, fuzzy
msgid "Check for new articles automatically"
msgstr "&Leita sjálfkrafa að nýjum greinum"

#. i18n: ectx: label, entry (maxToFetch), group (READNEWS)
#: knode.kcfg:25
#, fuzzy
msgid "Maximum number of articles to fetch"
msgstr "&Hámarksfjöldi greina sem má sækja:"

#. i18n: ectx: label, entry (autoMark), group (READNEWS)
#: knode.kcfg:29
#, fuzzy
msgid "Automatically mark articles as read"
msgstr "&Merkja greinar sem lesnar eftir:"

#. i18n: ectx: label, entry (autoMarkSeconds), group (READNEWS)
#: knode.kcfg:33
#, fuzzy
msgid "Mark article as read after"
msgstr "&Merkja greinar sem lesnar eftir:"

#. i18n: ectx: label, entry (markCrossposts), group (READNEWS)
#: knode.kcfg:37
#, fuzzy
msgid "Mark crossposted articles as read"
msgstr "&Merkja greinina lesna á öðrum ráðstefnum"

#. i18n: ectx: label, entry (smartScrolling), group (READNEWS)
#: knode.kcfg:41
#, fuzzy
msgid "Smart scrolling"
msgstr "Snjallt skru&n"

#. i18n: ectx: label, entry (totalExpandThreads), group (READNEWS)
#: knode.kcfg:45
#, fuzzy
msgid "Show whole thread on expanding"
msgstr "Sýna allan &þráðinn við opnun"

#. i18n: ectx: label, entry (defaultToExpandedThreads), group (READNEWS)
#: knode.kcfg:49
#, fuzzy
msgid "Default to expanded threads"
msgstr "Sjálfgefið að &opna þræði"

#. i18n: ectx: label, entry (showLines), group (READNEWS)
#: knode.kcfg:53
#, fuzzy
msgid "Show line count column"
msgstr "Sýna &línufjölda"

#. i18n: ectx: label, entry (showScore), group (READNEWS)
#: knode.kcfg:57
#, fuzzy
msgid "Show score column"
msgstr "Sýna &línufjölda"

#. i18n: ectx: label, entry (showUnread), group (READNEWS)
#: knode.kcfg:61
#, fuzzy
msgid "Show unread count in thread"
msgstr "Sýna fjölda ólesinna í þ&ræði"

#. i18n: ectx: label, entry (showThreads), group (READNEWS)
#: knode.kcfg:65
#, fuzzy
msgid "Show Threads"
msgstr "Sýna &umræðuþræði"

#. i18n: ectx: label, entry (dateFormat), group (READNEWS)
#. i18n: ectx: property (text), widget (QRadioButton, mStandardDateFormat)
#: knode.kcfg:71 readnewsgeneralwidget_base.ui:168
msgid "Standard format"
msgstr ""

#. i18n: ectx: label, entry (dateFormat), group (READNEWS)
#. i18n: ectx: property (text), widget (QRadioButton, mLocalizedDateFormat)
#: knode.kcfg:74 readnewsgeneralwidget_base.ui:189
msgid "Localized format"
msgstr ""

#. i18n: ectx: label, entry (dateFormat), group (READNEWS)
#. i18n: ectx: property (text), widget (QRadioButton, mFancyDateFormat)
#: knode.kcfg:77 readnewsgeneralwidget_base.ui:175
msgid "Fancy format"
msgstr ""

#. i18n: ectx: label, entry (dateFormat), group (READNEWS)
#: knode.kcfg:80
msgid "ISO format"
msgstr ""

#. i18n: ectx: label, entry (dateFormat), group (READNEWS)
#: knode.kcfg:83
#, fuzzy
msgid "Custom format"
msgstr "N&ota sérsniðin letur"

#. i18n: ectx: label, entry (dateFormat), group (READNEWS)
#: knode.kcfg:86
msgid "Date format"
msgstr ""

#. i18n: ectx: label, entry (customDateFormat), group (READNEWS)
#: knode.kcfg:90
msgid "Custom date format"
msgstr ""

#. i18n: ectx: whatsthis, entry (customDateFormat), group (READNEWS)
#: knode.kcfg:120
msgid ""
"<!-- taken from KMail -->\n"
"<qt><p><strong>These expressions may be used for the date:</strong></p>\n"
"<ul>\n"
"<li>d - the day as a number without a leading zero (1-31)</li>\n"
"<li>dd - the day as a number with a leading zero (01-31)</li>\n"
"<li>ddd - the abbreviated day name (Mon - Sun)</li>\n"
"<li>dddd - the long day name (Monday - Sunday)</li>\n"
"<li>M - the month as a number without a leading zero (1-12)</li>\n"
"<li>MM - the month as a number with a leading zero (01-12)</li>\n"
"<li>MMM - the abbreviated month name (Jan - Dec)</li>\n"
"<li>MMMM - the long month name (January - December)</li>\n"
"<li>yy - the year as a two digit number (00-99)</li>\n"
"<li>yyyy - the year as a four digit number (0000-9999)</li>\n"
"</ul>\n"
"<p><strong>These expressions may be used for the time:</strong></p>\n"
"<ul>\n"
"<li>h - the hour without a leading zero (0-23 or 1-12 if AM/PM display)</"
"li>\n"
"<li>hh - the hour with a leading zero (00-23 or 01-12 if AM/PM display)</"
"li>\n"
"<li>m - the minutes without a leading zero (0-59)</li>\n"
"<li>mm - the minutes with a leading zero (00-59)</li>\n"
"<li>s - the seconds without a leading zero (0-59)</li>\n"
"<li>ss - the seconds with a leading zero (00-59)</li>\n"
"<li>z - the milliseconds without leading zeroes (0-999)</li>\n"
"<li>zzz - the milliseconds with leading zeroes (000-999)</li>\n"
"<li>AP - switch to AM/PM display. AP will be replaced by either \"AM\" or "
"\"PM\".</li>\n"
"<li>ap - switch to AM/PM display. ap will be replaced by either \"am\" or "
"\"pm\".</li>\n"
"<li>Z - time zone in numeric form (-0500)</li>\n"
"</ul>\n"
"<p><strong>All other input characters will be ignored.</strong></p></qt>\n"
"      "
msgstr ""

#. i18n: ectx: label, entry (rewrapBody), group (READNEWS)
#: knode.kcfg:124
#, fuzzy
msgid "Rewrap text when necessary"
msgstr "Skipta milli &lína ef þörf er á því"

#. i18n: ectx: label, entry (removeTrailingNewlines), group (READNEWS)
#: knode.kcfg:128
#, fuzzy
msgid "Remove trailing empty lines"
msgstr "Fjarlægja &auðar línur aftast"

#. i18n: ectx: label, entry (showSignature), group (READNEWS)
#: knode.kcfg:132
#, fuzzy
msgid "Show signature"
msgstr "Sýna &undirskrift"

#. i18n: ectx: label, entry (interpretFormatTags), group (READNEWS)
#: knode.kcfg:136
msgid "Interpret emoticons and other formatting"
msgstr ""

#. i18n: ectx: label, entry (quoteCharacters), group (READNEWS)
#: knode.kcfg:140
#, fuzzy
msgid "Recognized quote characters"
msgstr "Þekktir &tilvísunarstafir:"

#. i18n: ectx: label, entry (openAttachmentsOnClick), group (READNEWS)
#: knode.kcfg:144
#, fuzzy
msgid "Open attachments on click"
msgstr "Opna viðhengi við smel&l"

#. i18n: ectx: label, entry (showAlternativeContents), group (READNEWS)
#: knode.kcfg:148
#, fuzzy
msgid "Show alternative contents as attachments"
msgstr "Birta önnur birtingarform sem &viðhengi"

#. i18n: ectx: label, entry (useFixedFont), group (READNEWS)
#: knode.kcfg:152
#, fuzzy
msgid "Use fixed font"
msgstr "Nota &jafnbreitt letur"

#. i18n: ectx: label, entry (showRefBar), group (READNEWS)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_showRefBar)
#: knode.kcfg:156 readnewsviewerwidget_base.ui:55
#, fuzzy
msgid "Show reference bar"
msgstr "engar tilvitnanir"

#. i18n: ectx: label, entry (alwaysShowHTML), group (READNEWS)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_alwaysShowHTML)
#: knode.kcfg:160 readnewsviewerwidget_base.ui:120
msgid "Prefer HTML to plain text"
msgstr ""

#. i18n: ectx: label, entry (allowExternalReferences), group (READNEWS)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_allowExternalReferences)
#: knode.kcfg:164 readnewsviewerwidget_base.ui:127
msgid "Allow external references in HTML"
msgstr ""

#. i18n: ectx: label, entry (markAllReadGoNext), group (READNEWS_NAVIGATION)
#: knode.kcfg:171
msgid "Mark group as read goes to next group"
msgstr ""

#. i18n: ectx: label, entry (markThreadReadGoNext), group (READNEWS_NAVIGATION)
#: knode.kcfg:176
#, fuzzy
msgid "Mark thread as read goes to next unread thread"
msgstr "Fara &að næsta ólesna þræði"

#. i18n: ectx: label, entry (markThreadReadCloseThread), group (READNEWS_NAVIGATION)
#: knode.kcfg:180
#, fuzzy
msgid "Mark thread as read closes the current thread"
msgstr "Loka þ&essum þræði"

#. i18n: ectx: label, entry (ignoreThreadGoNext), group (READNEWS_NAVIGATION)
#: knode.kcfg:184
#, fuzzy
msgid "Ignore thread goes to the next unread thread"
msgstr "Fara &að næsta ólesna þræði"

#. i18n: ectx: label, entry (ignoreThreadCloseThread), group (READNEWS_NAVIGATION)
#: knode.kcfg:188
#, fuzzy
msgid "Ignore thread closes the current thread"
msgstr "Loka þ&essum þræði"

#. i18n: ectx: label, entry (leaveGroupMarkAsRead), group (READNEWS_NAVIGATION)
#: knode.kcfg:192
#, fuzzy
msgid "Leaving a group marks all articles as read"
msgstr "&Merkja greinina lesna á öðrum ráðstefnum"

#. i18n: ectx: label, entry (ignoredThreshold), group (SCORING)
#: knode.kcfg:199
#, fuzzy
msgid "Default score for ignored threads"
msgstr "Sjálfgefin einkunn &hunsaðra þráða:"

#. i18n: ectx: label, entry (watchedThreshold), group (SCORING)
#: knode.kcfg:203
#, fuzzy
msgid "Default score for watched threads"
msgstr "Sjálfgefin einkunn þráða undir eftir&liti:"

#. i18n: ectx: label, entry (collCacheSize), group (CACHE)
#: knode.kcfg:210
#, fuzzy
msgid "Cache size for headers"
msgstr "Stærð &biðminnis hausa:"

#. i18n: ectx: label, entry (artCacheSize), group (CACHE)
#: knode.kcfg:214
#, fuzzy
msgid "Cache size for articles"
msgstr "Stærð bið&minnis greina:"

#. i18n: ectx: label, entry (UseOwnCharset), group (POSTNEWS)
#: knode.kcfg:222
#, fuzzy
msgid "Use own default charset when replying"
msgstr "Nota ei&gin stafatöflu þegar svarað er"

#. i18n: ectx: label, entry (hostname), group (POSTNEWS)
#: knode.kcfg:226
msgid "Host name used to generate the message ID."
msgstr ""

#. i18n: ectx: label, entry (generateMessageID), group (POSTNEWS)
#: knode.kcfg:229
#, fuzzy
msgid "Generate message-id"
msgstr "&Smíða kennistreng skeytis"

#. i18n: ectx: label, entry (noUserAgent), group (POSTNEWS)
#: knode.kcfg:233
#, fuzzy
msgid "Do not add the \"User-Agent\" identification header"
msgstr "Ekki bæta \"&User-Agent\" auðkenningarhausnum við"

#. i18n: ectx: label, entry (useExternalMailer), group (POSTNEWS)
#: knode.kcfg:237
#, fuzzy
msgid "Use external mailer"
msgstr "Nota &utanaðkomandi póstforrit"

#. i18n: ectx: label, entry (allow8BitBody), group (POSTNEWS)
#: knode.kcfg:241
#, fuzzy
msgid "Allow 8-bit encoding"
msgstr "Leyfa 8-bita"

#. i18n: ectx: label, entry (Charset), group (POSTNEWS)
#: knode.kcfg:245
msgid "Charset"
msgstr "Stafatafla"

#. i18n: ectx: label, entry (wordWrap), group (POSTNEWS)
#: knode.kcfg:249
#, fuzzy
msgid "Word wrap at column"
msgstr "Línus&kipti við dálk:"

#. i18n: ectx: label, entry (autoSpellChecking), group (POSTNEWS)
#: knode.kcfg:253
#, fuzzy
#| msgid "Spellcheck"
msgid "Automatic Spellchecking"
msgstr "Skoða stafsetningu"

#. i18n: ectx: label, entry (maxLineLength), group (POSTNEWS)
#: knode.kcfg:257
msgid "Maximum line length if word wrap is enabled"
msgstr ""

#. i18n: ectx: label, entry (appendOwnSignature), group (POSTNEWS)
#: knode.kcfg:261
#, fuzzy
msgid "Append own signature automatically"
msgstr "Bæta u&ndirskrift við sjálfkrafa"

#. i18n: ectx: label, entry (rewrap), group (POSTNEWS)
#: knode.kcfg:265
#, fuzzy
msgid "Rewrap quoted text automatically"
msgstr "Línuskipta tilvitnaðan te&xta sjálfkrafa"

#. i18n: ectx: label, entry (includeSignature), group (POSTNEWS)
#: knode.kcfg:269
#, fuzzy
msgid "Include the original author's signature in replies"
msgstr "Láta undirskrift höf&undar fylgja með"

#. i18n: ectx: label, entry (cursorOnTop), group (POSTNEWS)
#: knode.kcfg:273
#, fuzzy
msgid "Put the cursor below the introduction phrase"
msgstr "Staðsetja &bendil fyrir neðan inngangsfrasa"

#. i18n: ectx: label, entry (useExternalEditor), group (POSTNEWS)
#: knode.kcfg:277
#, fuzzy
msgid "Start external editor automatically"
msgstr "Ræsa ytri &ritil sjálfkrafa"

#. i18n: ectx: label, entry (Intro), group (POSTNEWS)
#: knode.kcfg:281
#, fuzzy
msgid "Introduction phrase"
msgstr "&Inngangsfrasi:"

#. i18n: ectx: label, entry (externalEditor), group (POSTNEWS)
#: knode.kcfg:285
#, fuzzy
msgid "Path to external editor"
msgstr "Nota &annan ritil"

#. i18n: ectx: label, entry (useCustomColors), group (VISUAL_APPEARANCE)
#: knode.kcfg:293
#, fuzzy
msgid "Use custom colors"
msgstr "Nota sé&rsniðna liti"

#. i18n: ectx: label, entry (backgroundColor), group (VISUAL_APPEARANCE)
#: knode.kcfg:297
msgid "Background"
msgstr "Bakgrunnur"

#. i18n: ectx: label, entry (alternateBackgroundColor), group (VISUAL_APPEARANCE)
#: knode.kcfg:301
msgid "Alternate Background"
msgstr "Auka bakgrunnur"

#. i18n: ectx: label, entry (textColor), group (VISUAL_APPEARANCE)
#: knode.kcfg:305
msgid "Normal Text"
msgstr "Venjulegur texti"

#. i18n: ectx: label, entry (linkColor), group (VISUAL_APPEARANCE)
#: knode.kcfg:315
msgid "Link"
msgstr "Tengill"

#. i18n: ectx: label, entry (readThreadColor), group (VISUAL_APPEARANCE)
#: knode.kcfg:319
msgid "Read Thread"
msgstr "Lesa umræðuþráð"

#. i18n: ectx: label, entry (unreadThreadColor), group (VISUAL_APPEARANCE)
#: knode.kcfg:323
msgid "Unread Thread"
msgstr "Aflesa þráð"

#. i18n: ectx: label, entry (readArticleColor), group (VISUAL_APPEARANCE)
#: knode.kcfg:327
msgid "Read Article"
msgstr "Lesa grein"

#. i18n: ectx: label, entry (unreadArticleColor), group (VISUAL_APPEARANCE)
#: knode.kcfg:331
msgid "Unread Article"
msgstr "Aflesa grein"

#. i18n: ectx: label, entry (signOkKeyOkColor), group (VISUAL_APPEARANCE)
#: knode.kcfg:335
msgid "Valid Signature with Trusted Key"
msgstr ""

#. i18n: ectx: label, entry (signOkKeyBadColor), group (VISUAL_APPEARANCE)
#: knode.kcfg:339
msgid "Valid Signature with Untrusted Key"
msgstr ""

#. i18n: ectx: label, entry (signWarnColor), group (VISUAL_APPEARANCE)
#: knode.kcfg:343
#, fuzzy
msgid "Unchecked Signature"
msgstr "Velja undirskrift"

#. i18n: ectx: label, entry (signErrColor), group (VISUAL_APPEARANCE)
#: knode.kcfg:347
#, fuzzy
msgid "Bad Signature"
msgstr "Bæta við undir&skrift"

#. i18n: ectx: label, entry (htmlWarningColor), group (VISUAL_APPEARANCE)
#: knode.kcfg:351
msgid "HTML Message Warning"
msgstr ""

#. i18n: ectx: label, entry (useCustomFonts), group (VISUAL_APPEARANCE)
#: knode.kcfg:356
#, fuzzy
msgid "Use custom fonts"
msgstr "N&ota sérsniðin letur"

#. i18n: ectx: label, entry (articleFont), group (VISUAL_APPEARANCE)
#: knode.kcfg:360
msgid "Article Body"
msgstr "Meginmál greinar"

#. i18n: ectx: label, entry (articleFixedFont), group (VISUAL_APPEARANCE)
#: knode.kcfg:363
msgid "Article Body (Fixed)"
msgstr "Meginmál greinar (fast)"

#. i18n: ectx: label, entry (groupListFont), group (VISUAL_APPEARANCE)
#: knode.kcfg:371
msgid "Group List"
msgstr "Ráðstefnur"

#. i18n: ectx: label, entry (articleListFont), group (VISUAL_APPEARANCE)
#. i18n: ectx: property (title), widget (QGroupBox, articleListBox)
#: knode.kcfg:374 readnewsgeneralwidget_base.ui:105
msgid "Article List"
msgstr "Greinar"

#: knode_options.h:25
msgid "A 'news://server/group' URL"
msgstr "Slóð á forminu 'news://miðlari/ráðstefna'."

#. i18n: ectx: Menu (view)
#: knodeui.rc:24 knreaderui.rc:16
#, fuzzy
msgid "&View"
msgstr "Skoðari"

#. i18n: ectx: Menu (go)
#: knodeui.rc:45
msgid "&Go"
msgstr "F&ara"

#. i18n: ectx: Menu (account)
#: knodeui.rc:55
msgid "A&ccount"
msgstr "Ten&ging"

#. i18n: ectx: Menu (group)
#: knodeui.rc:64
msgid "G&roup"
msgstr "&Ráðstefna"

#. i18n: ectx: Menu (folder)
#: knodeui.rc:77
msgid "Fol&der"
msgstr "Mö&ppur"

#. i18n: ectx: Menu (article)
#: knodeui.rc:91 knreaderui.rc:28
msgid "&Article"
msgstr "&Grein"

#. i18n: ectx: Menu (scoring)
#: knodeui.rc:111
msgid "Sc&oring"
msgstr "&Einkunnagjöf"

#. i18n: ectx: Menu (settings)
#: knodeui.rc:121
#, fuzzy
msgid "&Settings"
msgstr "Stillingar"

#: knsearchdialog.cpp:32
#, fuzzy
msgid "Find Articles"
msgstr "Stakar greinar"

#: knsearchdialog.cpp:39
#, fuzzy
msgid "&Search"
msgstr "L&eit:"

#: knsearchdialog.cpp:40
msgid "C&lear"
msgstr "&Hreinsa"

#: knsearchdialog.cpp:49
msgid "Sho&w complete threads"
msgstr "Sýna &heila umræðuþræði"

#: knserverinfo.cpp:92
#, kde-format
msgid ""
"KWallet is not available. It is strongly recommended to use KWallet for "
"managing your passwords.\n"
"However, KNode can store the password in its configuration file instead. The "
"password is stored in an obfuscated format, but should not be considered "
"secure from decryption efforts if access to the configuration file is "
"obtained.\n"
"Do you want to store the password for server '%1' in the configuration file?"
msgstr ""

#: knserverinfo.cpp:100
#, fuzzy
msgid "KWallet Not Available"
msgstr "KWallet er ekki í gangi."

#: knserverinfo.cpp:101
#, fuzzy
msgid "Store Password"
msgstr "&Lykilorð:"

#: knserverinfo.cpp:102
msgid "Do Not Store Password"
msgstr ""

#: knsourceviewwindow.cpp:38
msgid "Article Source"
msgstr "Meginmál greinar"

#: knstatusfilter.cpp:109
msgid "Is read:"
msgstr "Er lesin:"

#: knstatusfilter.cpp:110
msgid "Is new:"
msgstr "Er ný:"

#: knstatusfilter.cpp:111
msgid "Has unread followups:"
msgstr "Hefur ólesin svör:"

#: knstatusfilter.cpp:112
msgid "Has new followups:"
msgstr "Hefur ný svör:"

#: knstatusfilter.cpp:211
msgid "True"
msgstr "Satt"

#: knstatusfilter.cpp:212
msgid "False"
msgstr "Ósatt"

#: knstringfilter.cpp:109
msgid "Does Contain"
msgstr "Inniheldur"

#: knstringfilter.cpp:110
msgid "Does NOT Contain"
msgstr "Inniheldur ekki"

#: knstringfilter.cpp:114
msgid "Regular expression"
msgstr "Regluleg segð"

#: kscoring.cpp:87
msgid "Notify Message"
msgstr ""

#: kscoring.cpp:98
msgid "Do not show this message again"
msgstr ""

#: kscoring.cpp:122
#, kde-format
msgid ""
"Article\n"
"<b>%1</b><br /><b>%2</b><br />caused the following note to appear:<br />%3"
msgstr ""

#: kscoring.cpp:193
msgid "Adjust Score"
msgstr ""

#: kscoring.cpp:195
#, fuzzy
#| msgid "Displayed na&me:"
msgid "Display Message"
msgstr "&Birt nafn:"

#: kscoring.cpp:197
msgid "Colorize Header"
msgstr ""

#: kscoring.cpp:199
#, fuzzy
#| msgid "Mark as &Read"
msgid "Mark as Read"
msgstr "&Merkja sem lesið"

#: kscoring.cpp:394
msgid "<h1>List of collected notes</h1>"
msgstr ""

#: kscoring.cpp:418
msgid "Collected Notes"
msgstr ""

#: kscoring.cpp:491
msgid "Contains Substring"
msgstr ""

#: kscoring.cpp:493
#, fuzzy
#| msgid "Regular expression"
msgid "Matches Regular Expression"
msgstr "Regluleg segð"

#: kscoring.cpp:495
msgid "Matches Regular Expression (Case Sensitive)"
msgstr ""

#: kscoring.cpp:497
msgid "Is Exactly the Same As"
msgstr ""

#: kscoring.cpp:499
msgid "Less Than"
msgstr ""

#: kscoring.cpp:501
msgid "Greater Than"
msgstr ""

#: kscoring.cpp:1042
msgid "Choose Another Rule Name"
msgstr ""

#: kscoring.cpp:1043
#, fuzzy
#| msgid ""
#| "A filter with this name exists already.\n"
#| "Please choose a different name."
msgid "The rule name is already assigned, please choose another name:"
msgstr ""
"Sía með þessu nafni er nú þegar til.\n"
"Veldu annað nafn."

#: kscoring.cpp:1198
#, kde-format
msgid "rule %1"
msgstr ""

#: kscoringeditor.cpp:75
msgid "Not"
msgstr ""

#: kscoringeditor.cpp:76
msgid "Negate this condition"
msgstr ""

#: kscoringeditor.cpp:81
msgid "Select the header to match this condition against"
msgstr ""

#: kscoringeditor.cpp:85
msgid "Select the type of match"
msgstr ""

#: kscoringeditor.cpp:93
msgid "The condition for the match"
msgstr ""

#: kscoringeditor.cpp:97
#, fuzzy
msgid "Edit..."
msgstr "&Breyta..."

#: kscoringeditor.cpp:245
#, fuzzy
#| msgid "Select Destinations"
msgid "Select an action."
msgstr "Velja áfangastaði"

#: kscoringeditor.cpp:445
#, fuzzy
#| msgid "&Properties"
msgid "Properties"
msgstr "S&tillingar"

#: kscoringeditor.cpp:456
#, fuzzy
#| msgid "&Name:"
msgctxt "@label rule name"
msgid "&Name:"
msgstr "&Nafn:"

#: kscoringeditor.cpp:464
#, fuzzy
#| msgid "&Groups:"
msgid "&Groups:"
msgstr "&Ráðstefnur:"

#: kscoringeditor.cpp:469
#, fuzzy
#| msgid "Ne&xt Group"
msgid "A&dd Group"
msgstr "Næsta &ráðstefna"

#: kscoringeditor.cpp:480
#, fuzzy
#| msgid "&Expire old articles automatically"
msgid "&Expire rule automatically"
msgstr "&Henda gömlum greinum sjálfkrafa"

#: kscoringeditor.cpp:488
msgid "&Rule is valid for:"
msgstr ""

#: kscoringeditor.cpp:499
#, fuzzy
#| msgid "Conversion"
msgid "Conditions"
msgstr "Umbreyting"

#: kscoringeditor.cpp:509
msgid "Match a&ll conditions"
msgstr ""

#: kscoringeditor.cpp:512
msgid "Matc&h any condition"
msgstr ""

#: kscoringeditor.cpp:522
#, fuzzy
#| msgid "Optio&ns"
msgid "Actions"
msgstr "&Valkostir"

#: kscoringeditor.cpp:682
msgid "Move rule up"
msgstr ""

#: kscoringeditor.cpp:687
msgid "Move rule down"
msgstr ""

#: kscoringeditor.cpp:699
#, fuzzy
#| msgid "News Article"
msgid "New rule"
msgstr "Fréttagrein"

#: kscoringeditor.cpp:706
#, fuzzy
#| msgid "&Edit File"
msgid "Edit rule"
msgstr "&Breyta skrá"

#: kscoringeditor.cpp:712
#, fuzzy
msgid "Remove rule"
msgstr "&Fjarlægja kassa"

#: kscoringeditor.cpp:717
msgid "Copy rule"
msgstr ""

#: kscoringeditor.cpp:728 kscoringeditor.cpp:733 kscoringeditor.cpp:774
msgid "<placeholder>all groups</placeholder>"
msgstr ""

#: kscoringeditor.cpp:734
msgid "Sho&w only rules for group:"
msgstr ""

#: kscoringeditor.cpp:952
#, fuzzy
#| msgid "External Editor"
msgid "Rule Editor"
msgstr "Ytri ritill"

#: kscoringeditor.cpp:1064
#, fuzzy
#| msgid "&Edit File"
msgid "Edit Rule"
msgstr "&Breyta skrá"

#: mailsendjob.cpp:39
msgid "Could not create mail transport job."
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, mIntervalChecking)
#: nntpaccountdialog_base.ui:52
msgid "Enable &interval news checking"
msgstr "Athuga frétt&ir með reglulegu millibili"

#. i18n: ectx: property (text), widget (QLabel, mIntervalLabel)
#: nntpaccountdialog_base.ui:62
msgid "Check inter&val:"
msgstr "Athugunarmilli&bil:"

#. i18n: ectx: property (text), widget (QCheckBox, mFetchDesc)
#: nntpaccountdialog_base.ui:85
#, fuzzy
msgid "Fetch group descriptions"
msgstr "&Sækja lýsingar hópa"

#. i18n: ectx: property (text), widget (QCheckBox, mLogin)
#: nntpaccountdialog_base.ui:92
msgid "Server requires &authentication"
msgstr "Miðlari krefst &auðkenningar"

#. i18n: ectx: property (text), widget (QLabel, mPasswordLabel)
#: nntpaccountdialog_base.ui:125
msgid "Pass&word:"
msgstr "&Lykilorð:"

#. i18n: ectx: property (text), widget (QLabel, mUserLabel)
#: nntpaccountdialog_base.ui:138
msgid "&User:"
msgstr "&Notandi:"

#. i18n: ectx: property (title), widget (QGroupBox, mEncGroup)
#: nntpaccountdialog_base.ui:148
#, fuzzy
msgid "Encryption"
msgstr "Lýsing"

#. i18n: ectx: property (text), widget (QRadioButton, mEncSSL)
#: nntpaccountdialog_base.ui:170
msgid "SSL"
msgstr ""

#. i18n: ectx: property (text), widget (QRadioButton, mEncTLS)
#: nntpaccountdialog_base.ui:180
msgid "TLS"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, mServerLabel)
#: nntpaccountdialog_base.ui:203
msgid "&Server:"
msgstr "Þ&jónn:"

#. i18n: ectx: property (text), widget (QLabel, mPortLabel)
#: nntpaccountdialog_base.ui:213
msgid "&Port:"
msgstr "&Port:"

#. i18n: ectx: property (text), widget (QPushButton, mAddButton)
#: nntpaccountlistwidget_base.ui:55 postnewstechnicalwidget_base.ui:134
#, fuzzy
msgid "&Add..."
msgstr "&Bæta við..."

#. i18n: ectx: property (text), widget (QPushButton, mEditButton)
#: nntpaccountlistwidget_base.ui:62 postnewstechnicalwidget_base.ui:120
#, fuzzy
msgid "&Edit..."
msgstr "&Breyta..."

#. i18n: ectx: property (text), widget (QPushButton, mSubscribeButton)
#: nntpaccountlistwidget_base.ui:76
msgid "&Subscribe..."
msgstr "&Panta áskrift..."

#: nntpjobs.cpp:99 nntpjobs.cpp:127
#, fuzzy
msgid "Loading group list from disk..."
msgstr " Les ráðstefnulista af diski..."

#: nntpjobs.cpp:101 nntpjobs.cpp:130
msgid "Unable to read the group list file"
msgstr "Get ekki lesið ráðstefnulistann úr skrá"

#: nntpjobs.cpp:107
#, fuzzy
msgid "Writing group list to disk..."
msgstr " Skrifa ráðstefnulista út á disk..."

#: nntpjobs.cpp:110
msgid "Unable to write the group list file"
msgstr "Gat ekki skrifað ráðstefnulista út í skrá"

#: nntpjobs.cpp:181
#, fuzzy
msgid "Sorting..."
msgstr " Raða..."

#: nntpjobs.cpp:272
#, kde-format
msgid "The server %1 does not allow you to post articles to it."
msgstr ""

#: nntpjobs.cpp:275
#, kde-format
msgid ""
"The posting of this article to the server %1 failed.\n"
"Please check that you are not trying to post to a read-only group."
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_wordWrap)
#: postnewscomposerwidget_base.ui:35
msgid "Word &wrap at column:"
msgstr "Línus&kipti við dálk:"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_appendOwnSignature)
#: postnewscomposerwidget_base.ui:42
msgid "Appe&nd signature automatically"
msgstr "Bæta u&ndirskrift við sjálfkrafa"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox2)
#: postnewscomposerwidget_base.ui:55
msgid "Reply"
msgstr "Svara"

#. i18n: ectx: property (text), widget (QLabel, label1)
#: postnewscomposerwidget_base.ui:72
msgid "&Introduction phrase:"
msgstr "&Inngangsfrasi:"

#. i18n: ectx: property (text), widget (QLabel, label2)
#: postnewscomposerwidget_base.ui:87
#, fuzzy, no-c-format
msgid ""
"<qt>Placeholders: <b>%NAME</b>=sender's name, <b>%EMAIL</b>=sender's address,"
"<br><b>%DATE</b>=date, <b>%MSID</b>=message-id, <b>%MSIDX</b>=message-id "
"without angle brackets, <b>%GROUP</b>=group name, <b>%L</b>=line break</qt>"
msgstr ""
"Staðgenglar: %NAME=nafn, %EMAIL=netfang,\n"
"%DATE=dags, %MSID=kennistrengur, %GROUP=nafn ráðstefnu"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_rewrap)
#: postnewscomposerwidget_base.ui:102
msgid "Rewrap quoted te&xt automatically"
msgstr "Línuskipta tilvitnaðan te&xta sjálfkrafa"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_includeSignature)
#: postnewscomposerwidget_base.ui:109
msgid "Include the a&uthor's signature"
msgstr "Láta undirskrift höf&undar fylgja með"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_cursorOnTop)
#: postnewscomposerwidget_base.ui:116
msgid "Put the cursor &below the introduction phrase"
msgstr "Staðsetja &bendil fyrir neðan inngangsfrasa"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox3)
#: postnewscomposerwidget_base.ui:128
msgid "External Editor"
msgstr "Ytri ritill"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_useExternalEditor)
#: postnewscomposerwidget_base.ui:140
msgid "Start exte&rnal editor automatically"
msgstr "Ræsa ytri &ritil sjálfkrafa"

#. i18n: ectx: property (text), widget (QLabel, label4)
#: postnewscomposerwidget_base.ui:147
#, fuzzy, no-c-format
msgid "<qt><b>%f</b> will be replaced with the filename to edit</qt>"
msgstr "%f verður skipt út fyrir nafn skrárinnar sem skal vinna með."

#. i18n: ectx: property (text), widget (QLabel, label3)
#: postnewscomposerwidget_base.ui:161
#, fuzzy
msgid "Specify editor:"
msgstr "&Velja ritil:"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_generateMessageID)
#: postnewstechnicalwidget_base.ui:35
msgid "&Generate message-id"
msgstr "&Smíða kennistreng skeytis"

#. i18n: ectx: property (text), widget (QLabel, mHostLabel)
#: postnewstechnicalwidget_base.ui:52
msgid "Ho&st name:"
msgstr "&Vélarheiti:"

#. i18n: ectx: property (text), widget (QLabel, label)
#: postnewstechnicalwidget_base.ui:62
msgid "Enco&ding:"
msgstr "&Kóðun:"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseOwnCharset)
#: postnewstechnicalwidget_base.ui:75
msgid "Use o&wn default charset when replying"
msgstr "Nota ei&gin stafatöflu þegar svarað er"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: postnewstechnicalwidget_base.ui:85
msgid "Cha&rset:"
msgstr "&Stafatafla:"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: postnewstechnicalwidget_base.ui:98
#, fuzzy
msgid "Header"
msgstr "Hausar"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_noUserAgent)
#: postnewstechnicalwidget_base.ui:113
#, fuzzy
msgid "Do not add the \"&User-Agent\" identification header"
msgstr "Ekki bæta \"&User-Agent\" auðkenningarhausnum við"

#. i18n: ectx: property (text), widget (QPushButton, mDeleteButton)
#: postnewstechnicalwidget_base.ui:127
msgid "Dele&te"
msgstr "&Eyða"

#. i18n: ectx: property (text), widget (QLabel, label_4)
#: postnewstechnicalwidget_base.ui:141
#, fuzzy, no-c-format
msgid ""
"<qt>Placeholders for replies: <b>%NAME</b>=sender's name, <b>%EMAIL</"
"b>=sender's address</qt>"
msgstr ""
"Nota má eftirfarandi staðgengla:\n"
"%MYNAME=eigið nafn, %MYEMAIL=eigið netfang"

#. i18n: ectx: property (title), widget (QGroupBox, articleHandlingBox)
#: readnewsgeneralwidget_base.ui:23
msgid "Article Handling"
msgstr "Meðhöndlun greina"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_autoCheckGroups)
#: readnewsgeneralwidget_base.ui:44
msgid "Check for new articles a&utomatically"
msgstr "&Leita sjálfkrafa að nýjum greinum"

#. i18n: ectx: property (text), widget (QLabel, label)
#: readnewsgeneralwidget_base.ui:53
msgid "&Maximum number of articles to fetch:"
msgstr "&Hámarksfjöldi greina sem má sækja:"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_autoMark)
#: readnewsgeneralwidget_base.ui:73
msgid "Mar&k article as read after:"
msgstr "&Merkja greinar sem lesnar eftir:"

#. i18n: ectx: property (suffix), widget (KIntSpinBox, kcfg_autoMarkSeconds)
#: readnewsgeneralwidget_base.ui:83
#, fuzzy
msgid "sec"
msgstr " sek"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_markCrossposts)
#: readnewsgeneralwidget_base.ui:95
msgid "Mark c&rossposted articles as read"
msgstr "&Merkja greinina lesna á öðrum ráðstefnum"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_defaultToExpandedThreads)
#: readnewsgeneralwidget_base.ui:117
msgid "Default to e&xpanded threads"
msgstr "Sjálfgefið að &opna þræði"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_smartScrolling)
#: readnewsgeneralwidget_base.ui:124
msgid "Smart scrolli&ng"
msgstr "Snjallt skru&n"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_totalExpandThreads)
#: readnewsgeneralwidget_base.ui:131
msgid "Show &whole thread on expanding"
msgstr "Sýna allan &þráðinn við opnun"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_showScore)
#: readnewsgeneralwidget_base.ui:138
msgid "Show article &score"
msgstr "Sýn&a einkunn greinar"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_showLines)
#: readnewsgeneralwidget_base.ui:145
msgid "Show &line count"
msgstr "Sýna &línufjölda"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_showUnread)
#: readnewsgeneralwidget_base.ui:152
msgid "Show unread count in &thread"
msgstr "Sýna fjölda ólesinna í þ&ræði"

#. i18n: ectx: property (title), widget (QGroupBox, dateFormatBox)
#: readnewsgeneralwidget_base.ui:162
msgid "Date Display"
msgstr ""

#. i18n: ectx: property (text), widget (QRadioButton, mCustomDateFormat)
#: readnewsgeneralwidget_base.ui:196
msgid "Custom format (Shift+F1 for help):"
msgstr ""

#. i18n: ectx: property (title), widget (QGroupBox, markAllReadBox)
#: readnewsnavigationwidget_base.ui:23
msgid "\"Mark All as Read\" Triggers Following Actions"
msgstr "\"Merkja allt sem lesið\" hefur eftirfarandi hliðarverkanir"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_markAllReadGoNext)
#: readnewsnavigationwidget_base.ui:35
msgid "&Switch to the next group"
msgstr "&Skipt er yfir í næstu ráðstefnu"

#. i18n: ectx: property (title), widget (QGroupBox, markThreadReadBox)
#: readnewsnavigationwidget_base.ui:45
msgid "\"Mark Thread as Read\" Triggers Following Actions"
msgstr "\"Merkja þráð sem lesinn\" hefur eftirfarandi hliðarverkanir"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_markThreadReadCloseThread)
#: readnewsnavigationwidget_base.ui:57
msgid "Clos&e the current thread"
msgstr "Loka þ&essum þræði"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_markThreadReadGoNext)
#: readnewsnavigationwidget_base.ui:64
msgid "Go &to the next unread thread"
msgstr "Fara &að næsta ólesna þræði"

#. i18n: ectx: property (title), widget (QGroupBox, ignoreThreadBox)
#: readnewsnavigationwidget_base.ui:74
msgid "\"Ignore Thread\" Triggers Following Actions"
msgstr "\"Hunsa þráð\" hefur eftirfarandi hliðarverkanir"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ignoreThreadCloseThread)
#: readnewsnavigationwidget_base.ui:86
msgid "Close the cu&rrent thread"
msgstr "Lo&ka þessum þráð"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ignoreThreadGoNext)
#: readnewsnavigationwidget_base.ui:93
msgid "Go to the next &unread thread"
msgstr "Fara &að næsta ólesna þræði"

#. i18n: ectx: property (title), widget (QGroupBox, leaveGroupBox)
#: readnewsnavigationwidget_base.ui:103
#, fuzzy
msgid "Leaving Group Triggers Following Actions"
msgstr "\"Hunsa þráð\" hefur eftirfarandi hliðarverkanir"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_leaveGroupMarkAsRead)
#: readnewsnavigationwidget_base.ui:115
#, fuzzy
msgid "Mark all articles as read"
msgstr "&Merkja greinar sem lesnar eftir:"

#. i18n: ectx: property (title), widget (QGroupBox, appearanceBox)
#: readnewsviewerwidget_base.ui:23
msgid "Appearance"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label)
#: readnewsviewerwidget_base.ui:38
msgid "Recognized q&uote characters:"
msgstr "Þekktir &tilvísunarstafir:"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_removeTrailingNewlines)
#: readnewsviewerwidget_base.ui:48
msgid "Re&move trailing empty lines"
msgstr "Fjarlægja &auðar línur aftast"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_showSignature)
#: readnewsviewerwidget_base.ui:62
msgid "Show sig&nature"
msgstr "Sýna &undirskrift"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_rewrapBody)
#: readnewsviewerwidget_base.ui:69
msgid "Re&wrap text when necessary"
msgstr "Skipta milli &lína ef þörf er á því"

#. i18n: ectx: property (title), widget (QGroupBox, attachmentBox)
#: readnewsviewerwidget_base.ui:79
msgid "Attachments"
msgstr "Viðhengi"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_openAttachmentsOnClick)
#: readnewsviewerwidget_base.ui:91
msgid "Open a&ttachments on click"
msgstr "Opna viðhengi við smel&l"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_showAlternativeContents)
#: readnewsviewerwidget_base.ui:98
msgid "Show alternati&ve contents as attachments"
msgstr "Birta önnur birtingarform sem &viðhengi"

#. i18n: ectx: property (title), widget (QGroupBox, securityBox)
#: readnewsviewerwidget_base.ui:108
msgid "Security"
msgstr ""

#: scheduler.cpp:50
msgid "Internal Error: No account set for this job."
msgstr "Innri villa: Engin tenging skilgreind fyrir þetta verk."

#: scheduler.cpp:64
#, fuzzy
msgid "Waiting for KWallet..."
msgstr " Hleð inn möppu..."

#: scheduler.cpp:180
msgid ""
"You need to supply a username and a\n"
"password to access this server"
msgstr ""
"Þú þarft að gefa upp notandanafn og\n"
"lykilorð til að tengjast þessum miðlara"

#: scheduler.cpp:182
#, fuzzy
msgid "Authentication Failed"
msgstr "Auðkenningargluggi"

#: scheduler.cpp:183
msgid "Server:"
msgstr "Þjónn:"

#: settings.cpp:31
msgid "Quoted Text - First level"
msgstr "Tilvitnanir - fyrsta stig"

#: settings.cpp:32
msgid "Quoted Text - Second level"
msgstr "Tilvitnanir - annað stig"

#: settings.cpp:33
msgid "Quoted Text - Third level"
msgstr "Tilvitnanir - þriðja stig"

#: utilities.cpp:70
#, fuzzy, kde-format
#| msgid ""
#| "<qt>A file named <b>%1</b> already exists.<br>Do you want to replace it?</"
#| "qt>"
msgid ""
"<qt>A file named <b>%1</b> already exists.<br />Do you want to replace it?</"
"qt>"
msgstr ""
"<qt>Nú þegar er til skrá sem heitir <b>%1</b>.\n"
"Viltu skrifa yfir hana?</qt>"

#: utilities.cpp:71
msgid "&Replace"
msgstr "&Skrifa yfir"

#: utilities.cpp:346
msgid ""
"Unable to load/save configuration.\n"
"Wrong permissions on home folder?\n"
"You should close KNode now to avoid data loss."
msgstr ""
"Gat ekki lesið eða vistað stillingar!\n"
"Eru aðgangsheimildir heimasvæðis réttar?\n"
"Þú ættir að loka KNode strax til að forðast gagnatap."

#: utilities.cpp:352
msgid "Unable to load/save file."
msgstr "Gat ekki lesið/vistað skrá."

#: utilities.cpp:358
msgid "Unable to save remote file."
msgstr "Gat ekki vistað skrá yfir net."

#: utilities.cpp:364
msgid "Unable to create temporary file."
msgstr "Gat ekki búið til vinnuskrá."

#~ msgid "Hide T&hreads"
#~ msgstr "Fela þ&ræði"

#~ msgid "Hide Quick Search"
#~ msgstr "Fela flýtileit"

#~ msgid ""
#~ "Memory allocation failed.\n"
#~ "You should close this application now\n"
#~ "to avoid data loss."
#~ msgstr ""
#~ "Gat ekki tekið frá vinnsluminni!\n"
#~ "Þú ættir að loka þessu forriti strax til\n"
#~ "að forðast gagnatap."

#, fuzzy
#~| msgid "Organi&zation:"
#~ msgid "Organisation:"
#~ msgstr "S&tofnun:"

#~ msgid ""
#~ "ISpell could not be started.\n"
#~ "Please make sure you have ISpell properly configured and in your PATH."
#~ msgstr ""
#~ "ISpell fór ekki í gang.\n"
#~ "Athugaðu hvort PATH umhverfisbreytan vísi á möppuna sem hýsir Ispell."

#~ msgid "ISpell seems to have crashed."
#~ msgstr "ISpell virðist hafa hrunið."

#~ msgid "No misspellings encountered."
#~ msgstr "Fann engar stafsetningavillur."

#~ msgid "&Browse..."
#~ msgstr "&Flakka..."

#~ msgid "B&rowse..."
#~ msgstr "&Flakka..."

#~ msgid "Cannot open the signature file."
#~ msgstr "Gat ekki opnað undirskriftarskrána."

#~ msgid "Cannot run the signature generator."
#~ msgstr "Gat ekki keyrt undirskriftarforrit."

#~ msgid "&Use a signature from file"
#~ msgstr "Nota &undirskrift úr skrá"

#~ msgid ""
#~ "<qt><p>Mark this to let KNode read the signature from a file.</p></qt>"
#~ msgstr ""
#~ "<qt><p>Merktu hér til að láta KNode lesa undirskrift úr skrá.</p></qt>"

#~ msgid "Signature &file:"
#~ msgstr "Undirskriftar&skrá:"

#~ msgid ""
#~ "<qt><p>The file from which the signature will be read.</p><p>Ex: <b>/home/"
#~ "robt/.sig</b>.</p></qt>"
#~ msgstr ""
#~ "<qt><p>Skráin sem undirskriftin verður lesin úr.</p><p>T.d.: <b>/home/"
#~ "robt/.sig</b>.</p></qt>"

#, fuzzy
#~| msgid "Choo&se..."
#~ msgctxt ""
#~ "@action:button Choose a file that contains a signature for messages"
#~ msgid "Choo&se..."
#~ msgstr "&Velja..."

#~ msgid "&The file is a program"
#~ msgstr "Skráin er &forrit"

#~ msgid ""
#~ "<qt><p>Mark this option if the signature will be generated by a program</"
#~ "p><p>Ex: <b>/home/robt/gensig.sh</b>.</p></qt>"
#~ msgstr ""
#~ "<qt><p>Merktu við þennan valkost ef undirskriftin er búin til af forriti</"
#~ "p><p>T.d.: <b>/home/robt/gensig.sh</b>.</p></qt>"

#~ msgid "Specify signature &below"
#~ msgstr "Tilgreina undirskrift hér að &neðan"

#~ msgid "Choose Signature"
#~ msgstr "Velja undirskrift"

#~ msgid "You must specify a filename."
#~ msgstr "Þú verður að tilgreina skráarnafn."

#~ msgid "You have specified a folder."
#~ msgstr "Þú hefur tilgreint möppu."

#~ msgid "Start Conversion..."
#~ msgstr "Hefja umbreytingu..."

#, fuzzy
#~| msgid ""
#~| "<b>Congratulations, you have upgraded to KNode version %1.</"
#~| "b><br>Unfortunately this version uses a different format for some data-"
#~| "files, so in order to keep your existing data it is necessary to convert "
#~| "it first. This is now done automatically by KNode. If you want to, a "
#~| "backup of your existing data will be created before the conversion "
#~| "starts."
#~ msgid ""
#~ "<b>Congratulations, you have upgraded to KNode version %1.</b><br /"
#~ ">Unfortunately this version uses a different format for some data-files, "
#~ "so in order to keep your existing data it is necessary to convert it "
#~ "first. This is now done automatically by KNode. If you want to, a backup "
#~ "of your existing data will be created before the conversion starts."
#~ msgstr ""
#~ "<b>Til hamingju, þú hefur uppfært í útgáfu %1 af KNode.</b><br>Þessi "
#~ "útgáfa notar annað snið fyrir sumar gagnaskrár, og til að þú getir notað "
#~ "eldri gögn áfram þarf að umbreyta þeim áður.  KNode mun nú gera þetta "
#~ "sjálfkrafa. Ef þú kýst það, mun afrit vera tekið af núverandi gögnum áður "
#~ "en umbreyting hefst."

#~ msgid "Create backup of old data"
#~ msgstr "Búa til afrit af eldri gögnum"

#~ msgid "Save backup in:"
#~ msgstr "Vista afrit í:"

#~ msgid "<b>Converting, please wait...</b>"
#~ msgstr "<b>Umbreyti, hinkraðu við...</b>"

#~ msgid "Processed tasks:"
#~ msgstr "Unnin verk:"

#, fuzzy
#~| msgid ""
#~| "<b>Some errors occurred during the conversion.</b><br>You should now "
#~| "examine the log to find out what went wrong."
#~ msgid ""
#~ "<b>Some errors occurred during the conversion.</b><br />You should now "
#~ "examine the log to find out what went wrong."
#~ msgstr ""
#~ "<b>Villur komu upp við umbreytinguna!</b><br>Þú ættir að kíkja í annálinn "
#~ "og grennslast fyrir um hvað fór úrskeiðis."

#, fuzzy
#~| msgid ""
#~| "<b>The conversion was successful.</b><br>Have a lot of fun with this new "
#~| "version of KNode. ;-)"
#~ msgid ""
#~ "<b>The conversion was successful.</b><br />Have a lot of fun with this "
#~ "new version of KNode. ;-)"
#~ msgstr ""
#~ "<b>Umbreytingin gekk snuðrulaust fyrir sig.</b><br>Skemmtu þér með nýrri "
#~ "útgáfu af KNode. ;-)"

#~ msgid "Start KNode"
#~ msgstr "Ræsa KNode"

#~ msgid "Please select a valid backup path."
#~ msgstr "Vinsamlegast veldu gilda afritsslóð."

#~ msgid "<b>The backup failed</b>; do you want to continue anyway?"
#~ msgstr "<b>Afritun mistókst!</b>. Viltu samt halda áfram?"

#~ msgid "created backup of the old data-files in %1"
#~ msgstr "bjó til afrit af gömlum gagnaskrám í %1"

#~ msgid "backup failed."
#~ msgstr "afritun mistókst."

#~ msgid "conversion of folder \"Drafts\" to version 0.4 failed."
#~ msgstr "umbreyting á möppunni \"Uppköst\" í útgáfu 0.4 mistókst."

#~ msgid "converted folder \"Drafts\" to version 0.4"
#~ msgstr "umbreytti möppunni \"Uppköst\" í útgáfu 0.4"

#~ msgid "nothing to be done for folder \"Drafts\""
#~ msgstr "ekkert þarf að gera fyrir möppuna \"Uppköst\""

#~ msgid "conversion of folder \"Outbox\" to version 0.4 failed."
#~ msgstr "umbreyting á möppunni \"Út\" í útgáfu 0.4 mistókst."

#~ msgid "converted folder \"Outbox\" to version 0.4"
#~ msgstr "umbreytti möppunni \"Út\" í útgáfu 0.4"

#~ msgid "nothing to be done for folder \"Outbox\""
#~ msgstr "ekkert þarf að gera fyrir möppuna \"Út\""

#~ msgid "conversion of folder \"Sent\" to version 0.4 failed."
#~ msgstr "umbreyting á möppunni \"Sent\" í útgáfu 0.4 mistókst."

#~ msgid "converted folder \"Sent\" to version 0.4"
#~ msgstr "umbreytti möppunni \"Send\" í útgáfu 0.4"

#~ msgid "nothing to be done for folder \"Sent\""
#~ msgstr "ekkert þarf að gera fyrir möppuna \"Send\""

#~ msgid "Spell Result"
#~ msgstr "Niðurstöður stafsetningar"

#~ msgid "Chars&et"
#~ msgstr "Stafa&tafla"

#~ msgid "Automatic"
#~ msgstr "Sjálfvirk"

#~ msgid "&General"
#~ msgstr "&Almennt"