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
|
# translation of da.po to
# Danisk translation of virt-manager.
# Copyright (C) 2006 THE virt-manager'S COPYRIGHT HOLDER
# This file is distributed under the same license as the virt-manager package.
# Keld Simonsen <keld@dkuug.dk> 2006
# Keld Simonsen <keld@rap.dk>, 2007.
#
#
msgid ""
msgstr ""
"Project-Id-Version: da\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-09-27 20:10-0400\n"
"PO-Revision-Date: 2007-05-10 20:24+0200\n"
"Last-Translator: Keld Simonsen <keld@rap.dk>\n"
"Language-Team: <da@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10.2\n"
#: ../src/virt-manager.desktop.in.in.h:1
#, fuzzy
msgid "Manage virtual machines"
msgstr "Gemmer virtuel maskine"
#: ../src/virt-manager.desktop.in.in.h:2 ../src/vmm-about.glade.h:3
#: ../../po/../src/vmm-manager.glade:8
msgid "Virtual Machine Manager"
msgstr "Administration for virtuel maskine"
#: ../src/vmm-about.glade.h:1
msgid "Copyright (C) 2006 Red Hat Inc."
msgstr "Copyright (C) 2006 Red Hat Inc."
#: ../src/vmm-about.glade.h:2
msgid "Powered by libvirt"
msgstr "Køres med libvirt"
#: ../src/vmm-about.glade.h:4
msgid "http://virt-manager.et.redhat.com/"
msgstr "http://virt-manager.et.redhat.com/"
#. TRANSLATORS: Replace this string with your names, one name per line.
#: ../src/vmm-about.glade.h:6
msgid "translator-credits"
msgstr "Keld Simonsen <keld@dkuug.dk> 2006"
#: ../src/vmm-console.glade.h:1
msgid "<b>The console is currently unavailable</b>"
msgstr "<b>Konsollen er i øjeblikket ikke tilgængelig</b>"
#: ../src/vmm-console.glade.h:2
msgid "Auth"
msgstr "Auth"
#: ../src/vmm-console.glade.h:3
msgid "Login"
msgstr "Log ind"
#: ../src/vmm-console.glade.h:4
#, fuzzy
msgid "Password Field"
msgstr "Adgangskode:"
#: ../src/vmm-console.glade.h:5 ../src/vmm-add-hardware.glade.h:60
#: ../src/vmm-details.glade.h:47
msgid "Password:"
msgstr "Adgangskode:"
#: ../src/vmm-console.glade.h:6 ../src/vmm-details.glade.h:48
msgid "Pause"
msgstr "Stop"
#: ../src/vmm-console.glade.h:7 ../src/vmm-details.glade.h:51
msgid "Run"
msgstr "Kør"
#: ../src/vmm-console.glade.h:8 ../src/vmm-details.glade.h:52
msgid "S_hutdown"
msgstr "_Luk ned"
#: ../src/vmm-console.glade.h:9
msgid "Save this password in your keyring"
msgstr "Gem denne adgangskode i din nøglering"
#: ../src/vmm-console.glade.h:10
msgid "Screenshot"
msgstr "Skærmdump"
#: ../src/vmm-console.glade.h:11 ../src/vmm-details.glade.h:54
#: ../../po/../src/virtManager/domain.py:407
msgid "Shutdown"
msgstr "Lukket ned"
#: ../src/vmm-console.glade.h:12 ../src/vmm-details.glade.h:61
msgid "Toolbar"
msgstr "Værktøjslinje"
#: ../src/vmm-console.glade.h:13
msgid "Unavailable"
msgstr "Ikke tilgængelig"
#: ../src/vmm-console.glade.h:14 ../src/vmm-add-hardware.glade.h:72
msgid "VNC"
msgstr "VNC"
#: ../src/vmm-console.glade.h:15
msgid "Virtual Machine Console"
msgstr "Konsol for virtuel maskine"
#: ../src/vmm-console.glade.h:16 ../src/vmm-details.glade.h:69
msgid "Virtual _Machine"
msgstr "Virtuel _maskine"
#: ../src/vmm-console.glade.h:17 ../src/vmm-details.glade.h:70
#: ../../po/../src/vmm-manager.glade:298
msgid "_Contents"
msgstr ""
#: ../src/vmm-console.glade.h:18 ../src/vmm-details.glade.h:71
msgid "_Destroy"
msgstr "_Ødelæg"
#: ../src/vmm-console.glade.h:19
msgid "_Details"
msgstr "_Detaljer"
#: ../src/vmm-console.glade.h:20
msgid "_FullScreen"
msgstr "_Fuldskærm"
#: ../src/vmm-console.glade.h:21 ../src/vmm-host.glade.h:44
#: ../src/vmm-details.glade.h:73 ../../po/../src/vmm-manager.glade:289
msgid "_Help"
msgstr "_Hjælp"
#: ../src/vmm-console.glade.h:22 ../src/vmm-details.glade.h:74
msgid "_Pause"
msgstr "_Stop"
#: ../src/vmm-console.glade.h:23 ../src/vmm-details.glade.h:75
msgid "_Run"
msgstr "_Kør"
#: ../src/vmm-console.glade.h:24 ../src/vmm-details.glade.h:76
msgid "_Save"
msgstr "_Gem"
#: ../src/vmm-console.glade.h:25 ../src/vmm-details.glade.h:77
msgid "_Serial Console"
msgstr "_Seriel konsol"
#: ../src/vmm-console.glade.h:26
msgid "_Take Screenshot"
msgstr "_Tag skærmdump"
#: ../src/vmm-console.glade.h:27 ../src/vmm-details.glade.h:78
#: ../../po/../src/vmm-manager.glade:206
msgid "_View"
msgstr "_Vis"
#: ../src/vmm-create-net.glade.h:1 ../src/vmm-create.glade.h:1
#, fuzzy
msgid "\t"
msgstr "5\t"
#: ../src/vmm-create-net.glade.h:2 ../src/vmm-add-hardware.glade.h:2
#: ../src/vmm-create.glade.h:4
msgid "/xen/demo.img"
msgstr "/xen/demo.img"
#: ../src/vmm-create-net.glade.h:3
msgid "192.168.1.1"
msgstr ""
#: ../src/vmm-create-net.glade.h:4
msgid "192.168.1.255"
msgstr ""
#: ../src/vmm-create-net.glade.h:5
msgid "192.168.10.0/24"
msgstr ""
#: ../src/vmm-create-net.glade.h:6
msgid "192.168.10.254"
msgstr ""
#: ../src/vmm-create-net.glade.h:7
msgid "255.255.255.0"
msgstr ""
#: ../src/vmm-create-net.glade.h:8
#, fuzzy
msgid "256"
msgstr "256\t"
#: ../src/vmm-create-net.glade.h:9 ../src/vmm-add-hardware.glade.h:4
#: ../src/vmm-create.glade.h:9
msgid "5 GB"
msgstr "5 GB"
#: ../src/vmm-create-net.glade.h:10
#, fuzzy
msgid "<b>DHCP</b>"
msgstr "<b>CPU'er</b>"
#: ../src/vmm-create-net.glade.h:11
#, fuzzy
msgid "<b>Example:</b> network1"
msgstr "<b>Eksempel:</b> system1"
#: ../src/vmm-create-net.glade.h:12
#, fuzzy
msgid "<b>Forwarding</b>"
msgstr "<b>Lagring</b>"
#: ../src/vmm-create-net.glade.h:13
msgid ""
"<b>Hint:</b> The network should be choosen from one of the IPv4 private "
"address ranges. eg 10.0.0.0/8, 172.16.0.0/12, or 192.168.0.0/16"
msgstr ""
#: ../src/vmm-create-net.glade.h:14
#, fuzzy
msgid "<b>IPv4 network</b>"
msgstr "<b>Netværk</b>"
#: ../src/vmm-create-net.glade.h:15 ../src/vmm-create.glade.h:19
#, fuzzy
msgid "<b>Summary</b>"
msgstr "<b>Oversigt:</b>"
#: ../src/vmm-create-net.glade.h:16
msgid ""
"<b>Tip:</b> Unless you wish to reserve some addresses to allow static "
"network configuration in virtual machines, these parameters can be left with "
"their default values."
msgstr ""
#: ../src/vmm-create-net.glade.h:17
#, fuzzy
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Choosing an "
"IPv4 address space</span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Tilldeler "
"lagerplads</span>"
#: ../src/vmm-create-net.glade.h:18
#, fuzzy
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Connecting to "
"physical network</span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Tilldeler "
"lagerplads</span>"
#: ../src/vmm-create-net.glade.h:19
#, fuzzy
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Creating a new "
"virtual network </span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Opretter et nyt "
"virtuelt system </span>"
#: ../src/vmm-create-net.glade.h:20
#, fuzzy
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Naming your "
"virtual network </span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Navngiv dit "
"virtuelle system </span>"
#: ../src/vmm-create-net.glade.h:21
#, fuzzy
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Ready to create "
"network</span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Klar til at "
"begynde installationen</span>"
#: ../src/vmm-create-net.glade.h:22
#, fuzzy
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Selecting the "
"DHCP range</span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Tilldeler "
"lagerplads</span>"
#: ../src/vmm-create-net.glade.h:23
#, fuzzy
msgid "A <b>name</b> for your new virtual network"
msgstr "Et <b>navn</b> for dit nye virtuelle system"
#: ../src/vmm-create-net.glade.h:24
msgid "Broadcast:"
msgstr ""
#: ../src/vmm-create-net.glade.h:25 ../src/vmm-add-hardware.glade.h:32
#: ../src/vmm-create.glade.h:45
msgid "Complete"
msgstr "Færdig"
#: ../src/vmm-create-net.glade.h:26
#, fuzzy
msgid "Connectivity:"
msgstr "_Tilslut"
#: ../src/vmm-create-net.glade.h:27
#, fuzzy
msgid "Create a new virtual network"
msgstr "Opret et nyt virtuelt system"
#: ../src/vmm-create-net.glade.h:28
msgid "DHCP"
msgstr ""
#: ../src/vmm-create-net.glade.h:29
#, fuzzy
msgid "Desination:"
msgstr "Mål"
#: ../src/vmm-create-net.glade.h:30 ../src/vmm-host.glade.h:16
#, fuzzy
msgid "End Address"
msgstr "MAC-adresse"
#: ../src/vmm-create-net.glade.h:31
#, fuzzy
msgid "End address:"
msgstr "MAC-adresse"
#: ../src/vmm-create-net.glade.h:32
msgid "End:"
msgstr ""
#: ../src/vmm-create-net.glade.h:33
msgid "Forwarding"
msgstr ""
#: ../src/vmm-create-net.glade.h:34
msgid "Forwarding to physical network"
msgstr ""
#: ../src/vmm-create-net.glade.h:35
msgid "Gateway:"
msgstr ""
#: ../src/vmm-create-net.glade.h:36
msgid "IPv4"
msgstr ""
#: ../src/vmm-create-net.glade.h:37 ../src/vmm-add-hardware.glade.h:48
#: ../src/vmm-create.glade.h:64
msgid "Intro"
msgstr "Intro"
#: ../src/vmm-create-net.glade.h:38
#: ../../po/../src/virtManager/createnet.py:259
#: ../../po/../src/virtManager/host.py:237
msgid "Isolated virtual network"
msgstr ""
#: ../src/vmm-create-net.glade.h:39 ../src/vmm-host.glade.h:25
#: ../../po/../src/virtManager/createnet.py:94
#: ../../po/../src/virtManager/createnet.py:257
#: ../../po/../src/virtManager/host.py:234
msgid "NAT to any physical device"
msgstr ""
#: ../src/vmm-create-net.glade.h:40 ../src/vmm-create.glade.h:79
#: ../../po/../src/virtManager/manager.py:738
msgid "Name"
msgstr "Navn"
#: ../src/vmm-create-net.glade.h:41
msgid "Net Name Field"
msgstr ""
#: ../src/vmm-create-net.glade.h:42
msgid "Netmask:"
msgstr ""
#: ../src/vmm-create-net.glade.h:43 ../src/vmm-host.glade.h:30
#, fuzzy
msgid "Network Range"
msgstr "Netværksforbrug:"
#: ../src/vmm-create-net.glade.h:44
#, fuzzy
msgid "Network _Name:"
msgstr "Netværksforbrug:"
#: ../src/vmm-create-net.glade.h:45
#, fuzzy
msgid "Network name:"
msgstr "Netværksforbrug:"
#: ../src/vmm-create-net.glade.h:46 ../src/vmm-host.glade.h:31
#, fuzzy
msgid "Network:"
msgstr "Netværk"
#: ../src/vmm-create-net.glade.h:47
#, fuzzy
msgid "Physical Network"
msgstr "Virtuelle CPU'er"
#: ../src/vmm-create-net.glade.h:48
#, fuzzy
msgid "Please choose a name for your virtual network:"
msgstr "Angiv et navn for dit virtuelle system:"
#: ../src/vmm-create-net.glade.h:49
msgid ""
"Please choose the range of addresses the DHCP server can use to allocate to "
"guests attached to the virtual network"
msgstr ""
#: ../src/vmm-create-net.glade.h:50
msgid ""
"Please indicate whether this virtual network should be connected to the "
"physical network."
msgstr ""
#: ../src/vmm-create-net.glade.h:51
#: ../../po/../src/virtManager/createnet.py:156
msgid "Private"
msgstr ""
#: ../src/vmm-create-net.glade.h:52
#, fuzzy
msgid "Size:"
msgstr "_Størrelse:"
#: ../src/vmm-create-net.glade.h:53 ../src/vmm-host.glade.h:35
#, fuzzy
msgid "Start Address"
msgstr "MAC-adresse"
#: ../src/vmm-create-net.glade.h:54
#, fuzzy
msgid "Start address:"
msgstr "MAC-adresse"
#: ../src/vmm-create-net.glade.h:55
#, fuzzy
msgid "Start:"
msgstr "Status:"
#: ../src/vmm-create-net.glade.h:56
msgid ""
"The <b>address range</b> from which the <b>DHCP</b> server will allocate "
"addresses for virtual machines"
msgstr ""
#: ../src/vmm-create-net.glade.h:57
msgid "The IPv4 <b>address</b> and <b>netmask</b> to assign"
msgstr ""
#: ../src/vmm-create-net.glade.h:58
#, fuzzy
msgid ""
"This assistant will guide you through creating a new virtual network. You "
"will be asked for some information about the virtual network you'd like to "
"create, such as:"
msgstr ""
"Denne assistent viser dig hvordan du opretter et nyt virtuelt system. Den "
"vil spørge dig om information om det virtuelle system du vil oprette, såsom:"
#: ../src/vmm-create-net.glade.h:59 ../src/vmm-add-hardware.glade.h:71
#: ../src/vmm-details.glade.h:64
#, fuzzy
msgid "Type:"
msgstr "Type"
#: ../src/vmm-create-net.glade.h:60
msgid "Whether to <b>forward</b> traffic to the physical network"
msgstr ""
#: ../src/vmm-create-net.glade.h:61
msgid "You will need to choose an IPv4 address space for the virtual network:"
msgstr ""
#: ../src/vmm-create-net.glade.h:62 ../src/vmm-add-hardware.glade.h:75
#: ../src/vmm-create.glade.h:122
msgid "_Finish"
msgstr "_Afslut"
#: ../src/vmm-create-net.glade.h:63 ../src/vmm-create.glade.h:133
msgid "demo"
msgstr "demo"
#: ../src/vmm-host.glade.h:1
#, fuzzy
msgid "1.59 GB of 2.2 GB"
msgstr "80 MB af 1 GB"
#: ../src/vmm-host.glade.h:2
#, fuzzy
msgid "2000 MB"
msgstr "200 MB"
#: ../src/vmm-host.glade.h:3
msgid "4"
msgstr ""
#: ../src/vmm-host.glade.h:5
#, no-c-format
msgid "60%"
msgstr ""
#: ../src/vmm-host.glade.h:6 ../src/vmm-details.glade.h:10
msgid "<b>Basic details</b>"
msgstr "<b>Basale detaljer</b>"
#: ../src/vmm-host.glade.h:7
msgid "<b>IPv4 configuration</b>"
msgstr ""
#: ../src/vmm-host.glade.h:8 ../src/vmm-details.glade.h:13
msgid "<b>Performance</b>"
msgstr "<b>Ydelse</b>"
#: ../src/vmm-host.glade.h:9
#, fuzzy
msgid "Architecture:"
msgstr "CPU-arkitektur:"
#: ../src/vmm-host.glade.h:10
msgid "Autostart:"
msgstr ""
#: ../src/vmm-host.glade.h:11 ../src/vmm-details.glade.h:24
msgid "CPU usage:"
msgstr "CPU-brug:"
#: ../src/vmm-host.glade.h:12 ../src/vmm-open-connection.glade.h:3
#, fuzzy
msgid "Connection:"
msgstr "_Tilslut"
#: ../src/vmm-host.glade.h:13
msgid "DHCP end:"
msgstr ""
#: ../src/vmm-host.glade.h:14
msgid "DHCP start:"
msgstr ""
#: ../src/vmm-host.glade.h:15
msgid "Device:"
msgstr ""
#: ../src/vmm-host.glade.h:17
msgid "Forwarding:"
msgstr ""
#: ../src/vmm-host.glade.h:18
#, fuzzy
msgid "Host Details"
msgstr "De_taljer"
#: ../src/vmm-host.glade.h:19 ../src/vmm-open-connection.glade.h:5
#, fuzzy
msgid "Hostname:"
msgstr "_Vært:"
#: ../src/vmm-host.glade.h:20 ../src/vmm-open-connection.glade.h:7
msgid "Hypervisor:"
msgstr "Hypervisor:"
#: ../src/vmm-host.glade.h:21
#, fuzzy
msgid "Location:"
msgstr "ISO-_sted:"
#: ../src/vmm-host.glade.h:22
#, fuzzy
msgid "Logical CPUs:"
msgstr "Fysisk værts CPU-er:"
#: ../src/vmm-host.glade.h:23 ../src/vmm-details.glade.h:40
msgid "Memory usage:"
msgstr "Hukommelsesforbrug:"
#: ../src/vmm-host.glade.h:24
#, fuzzy
msgid "Memory:"
msgstr "Hukommelse"
#: ../src/vmm-host.glade.h:26 ../src/vmm-details.glade.h:43
msgid "Name:"
msgstr "Navn:"
#: ../src/vmm-host.glade.h:27
msgid "Net Device"
msgstr ""
#: ../src/vmm-host.glade.h:28
#, fuzzy
msgid "Net Name"
msgstr "Netværksforbrug:"
#: ../src/vmm-host.glade.h:29
#, fuzzy
msgid "Net UUID"
msgstr "UUID:"
#: ../src/vmm-host.glade.h:32 ../src/vmm-details.glade.h:46
msgid "Overview"
msgstr "Oversigt"
#: ../src/vmm-host.glade.h:33 ../../po/../src/virtManager/domain.py:403
msgid "Running"
msgstr "Kører"
#: ../src/vmm-host.glade.h:34
#, fuzzy
msgid "Start"
msgstr "Status"
#: ../src/vmm-host.glade.h:36
#, fuzzy
msgid "State:"
msgstr "Status:"
#: ../src/vmm-host.glade.h:37
#, fuzzy
msgid "Storage Location"
msgstr "Sted for _ISO-aftryk:"
#: ../src/vmm-host.glade.h:38
#, fuzzy
msgid "Storage Name"
msgstr "System_navn:"
#: ../src/vmm-host.glade.h:39
msgid "Storage Pools"
msgstr ""
#: ../src/vmm-host.glade.h:40 ../src/vmm-details.glade.h:66
msgid "UUID:"
msgstr "UUID:"
#: ../src/vmm-host.glade.h:41
#, fuzzy
msgid "Virtual Networks"
msgstr "Virtuelle CPU'er"
#: ../src/vmm-host.glade.h:42
msgid "Xen"
msgstr ""
#: ../src/vmm-host.glade.h:43 ../../po/../src/vmm-manager.glade:40
msgid "_File"
msgstr "_Fil"
#: ../src/vmm-host.glade.h:45
msgid "example.com"
msgstr ""
#: ../src/vmm-host.glade.h:46
msgid "x86_64"
msgstr ""
#: ../src/vmm-modify-file-storage.glade.h:1
msgid " free"
msgstr " fri"
#: ../src/vmm-modify-file-storage.glade.h:2
msgid " of "
msgstr " af "
#: ../src/vmm-modify-file-storage.glade.h:3
msgid "/tmp"
msgstr "/tmp"
#: ../src/vmm-modify-file-storage.glade.h:4
msgid "10 TB"
msgstr "10 TB"
#: ../src/vmm-modify-file-storage.glade.h:5
msgid ""
"<b>Tip:</b> You may only increase the size of file-based storage; you can't "
"decrease its size."
msgstr ""
"<b>Tips:</b> Du kan kun øge størrelsen på filbaseret lagring, du kan ikke "
"formindske dets størrelse."
#: ../src/vmm-modify-file-storage.glade.h:6
msgid ""
"MB\n"
"GB\n"
"TB"
msgstr ""
"MB\n"
"GB\n"
"TB"
#: ../src/vmm-modify-file-storage.glade.h:9
msgid "Modify File Storage"
msgstr "Ændr fil-lagring"
#: ../src/vmm-modify-file-storage.glade.h:10
#, fuzzy
msgid "Size Type"
msgstr "OS-_type:"
#: ../src/vmm-modify-file-storage.glade.h:11
msgid "Storage Size Select"
msgstr ""
#: ../src/vmm-modify-file-storage.glade.h:12
msgid "_Mount Point (on virtual system):"
msgstr "_Monteringspunkt (på virtuelt system):"
#: ../src/vmm-modify-file-storage.glade.h:13
msgid "_Size:"
msgstr "_Størrelse:"
#: ../src/vmm-preferences.glade.h:1
msgid "<b>Consoles</b>"
msgstr "<b>Konsoller</b>"
#: ../src/vmm-preferences.glade.h:2
msgid "<b>Status monitoring</b>"
msgstr "<b>Statusovervågning</b>"
#: ../src/vmm-preferences.glade.h:3
msgid "Auto Console"
msgstr ""
#: ../src/vmm-preferences.glade.h:4
msgid "Automatically open consoles:"
msgstr "Åbn konsoller automatisk:"
#: ../src/vmm-preferences.glade.h:5
#, fuzzy
msgid "Grab Keyboard"
msgstr "Fang inddata fra tastatur:"
#: ../src/vmm-preferences.glade.h:6
msgid "Grab keyboard input:"
msgstr "Fang inddata fra tastatur:"
#: ../src/vmm-preferences.glade.h:7
#, fuzzy
msgid "History Samples"
msgstr "prøver"
#: ../src/vmm-preferences.glade.h:8
msgid "Maintain history of"
msgstr "Behold historik for"
#: ../src/vmm-preferences.glade.h:9
msgid ""
"Never\n"
"For new domains\n"
"For all domains"
msgstr ""
"Aldrig\n"
"For nye domæner\n"
"For alle domæner"
#: ../src/vmm-preferences.glade.h:12
msgid ""
"Never\n"
"When fullscreen\n"
"On mouse over"
msgstr ""
"Aldrig\n"
"Ved fuldskærm\n"
"Ved mus hen over"
#: ../src/vmm-preferences.glade.h:15
msgid "Preferences"
msgstr "Præferencer"
#: ../src/vmm-preferences.glade.h:16
msgid "Status Interval"
msgstr ""
#: ../src/vmm-preferences.glade.h:17
msgid "Update status every"
msgstr "Opdatér status hvert"
#: ../src/vmm-preferences.glade.h:18
msgid "samples"
msgstr "prøver"
#: ../src/vmm-preferences.glade.h:19
msgid "seconds"
msgstr "sekunder"
#: ../src/vmm-add-hardware.glade.h:1 ../src/vmm-create.glade.h:3
msgid "-"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:3
msgid "127.0.0.1"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:5
#, fuzzy
msgid "<b>Display</b>"
msgstr "<b>Oversigt:</b>"
#: ../src/vmm-add-hardware.glade.h:6 ../src/vmm-create.glade.h:16
msgid "<b>Network</b>"
msgstr "<b>Netværk</b>"
#: ../src/vmm-add-hardware.glade.h:7
#, fuzzy
msgid "<b>Pointer</b>"
msgstr "<b>Konsoller</b>"
#: ../src/vmm-add-hardware.glade.h:8
#, fuzzy
msgid "<b>Source:</b>"
msgstr "<b>Lagring</b>"
#: ../src/vmm-add-hardware.glade.h:9 ../src/vmm-create.glade.h:17
msgid "<b>Storage</b>"
msgstr "<b>Lagring</b>"
#: ../src/vmm-add-hardware.glade.h:10
#, fuzzy
msgid "<b>Target:</b>"
msgstr "<b>Lagring</b>"
#: ../src/vmm-add-hardware.glade.h:11
#, fuzzy
msgid "<b>Virtual display</b>"
msgstr "<b>Virtuelle CPUer:</b>"
#: ../src/vmm-add-hardware.glade.h:12
#, fuzzy
msgid "<b>Virtual pointer</b>"
msgstr "<b>Virtuelle CPUer:</b>"
#: ../src/vmm-add-hardware.glade.h:13 ../src/vmm-create.glade.h:20
msgid "<small><b>Example:</b> /dev/hdc2</small>"
msgstr "<small><b>Eksempel:</b> /dev/hdc2</small>"
#: ../src/vmm-add-hardware.glade.h:14
msgid ""
"<small><b>Tip:</b> Adding a graphics tablet and configuring it as the "
"default pointer in the guest OS will ensure the virtual cursor moves in sync "
"with the local desktop cursor .</small>"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:15
msgid ""
"<small><b>Tip:</b> Automatically allocated the port ensures that every "
"virtual machine uses a different port. If two machines try to use the same "
"port one of them will fail to start.</small>"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:16 ../src/vmm-create.glade.h:26
msgid ""
"<small><b>Tip:</b> Choose this option if your host is disconnected, "
"connected via wireless, or dynamically configured with NetworkManager.</"
"small>"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:17 ../src/vmm-create.glade.h:27
msgid ""
"<small><b>Tip:</b> Choose this option if your host is statically connected "
"to wired ethernet, to gain the ability to migrate the virtual system.</small>"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:18
msgid ""
"<small><b>Tip:</b> The VNC server is strongly recommended because it allows "
"the guest console window to be embedded inside this application. It may also "
"be used to allow access to the guest console from a remote host</small>"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:19 ../src/vmm-create.glade.h:30
msgid ""
"<small><b>Warning:</b> If you do not allocate the entire disk at VM "
"creation, space will be allocated as needed while the guest is running. If "
"sufficient free space is not available on the host, this may result in data "
"corruption on the guest.</small>"
msgstr ""
"<small><b>Advarsel:</b> Hvis du ikke tildeler hele disken ved oprettelsen af "
"VM, vil plads blive tildelt efter behov mens gæsten kører. Hvis den "
"nødvendige fri plads ikke er til stede på værten, kan dette bevirke "
"ødelæggelse af data på gæsten.</small>"
#: ../src/vmm-add-hardware.glade.h:20
#, fuzzy
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Access the "
"guest display</span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Tilldeler "
"lagerplads</span>"
#: ../src/vmm-add-hardware.glade.h:21
#, fuzzy
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Adding new "
"virtual hardware </span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Opretter et nyt "
"virtuelt system </span>"
#: ../src/vmm-add-hardware.glade.h:22 ../src/vmm-create.glade.h:32
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Assigning "
"storage space</span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Tilldeler "
"lagerplads</span>"
#: ../src/vmm-add-hardware.glade.h:23 ../src/vmm-create.glade.h:34
#, fuzzy
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Connect to host "
"network</span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Tilldeler "
"lagerplads</span>"
#: ../src/vmm-add-hardware.glade.h:24
#, fuzzy
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Interacting "
"with the guest</span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Tilldeler "
"lagerplads</span>"
#: ../src/vmm-add-hardware.glade.h:25
#, fuzzy
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Ready to add "
"hardware</span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Klar til at "
"begynde installationen</span>"
#: ../src/vmm-add-hardware.glade.h:26
msgid "Absolute"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:27
msgid "Add new virtual hardware"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:28 ../src/vmm-details.glade.h:22
#, fuzzy
msgid "Address:"
msgstr "MAC-adresse"
#: ../src/vmm-add-hardware.glade.h:29 ../src/vmm-create.glade.h:40
msgid "Allocate entire virtual disk now?"
msgstr "Skal hele den virtuelle disk tildeles nu?"
#: ../src/vmm-add-hardware.glade.h:30
#: ../../po/../src/virtManager/addhardware.py:371
#: ../../po/../src/virtManager/details.py:502
#, fuzzy
msgid "Automatically allocated"
msgstr "Åbn konsoller automatisk:"
#: ../src/vmm-add-hardware.glade.h:31 ../src/vmm-create.glade.h:42
msgid "Browse..."
msgstr "Bladr..."
#: ../src/vmm-add-hardware.glade.h:33 ../src/vmm-create.glade.h:46
msgid "Connection type:"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:34
msgid "Device Type Field"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:35
msgid "Device type:"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:36 ../src/vmm-create.glade.h:48
#: ../src/vmm-details.glade.h:27
msgid "Disk"
msgstr "Disk"
#: ../src/vmm-add-hardware.glade.h:37 ../src/vmm-create.glade.h:49
#, fuzzy
msgid "Disk image:"
msgstr "Diskforbrug:"
#: ../src/vmm-add-hardware.glade.h:38 ../src/vmm-create.glade.h:50
#, fuzzy
msgid "Disk size:"
msgstr "Diskforbrug:"
#: ../src/vmm-add-hardware.glade.h:39
#: ../../po/../src/virtManager/details.py:718
msgid "Display"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:40
msgid "EvTouch Tablet"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:41 ../src/vmm-create.glade.h:54
#, fuzzy
msgid "File Location Field"
msgstr "Fil_sted:"
#: ../src/vmm-add-hardware.glade.h:42
#, fuzzy
msgid "File Size Field"
msgstr "Fil_størrelse:"
#: ../src/vmm-add-hardware.glade.h:43 ../src/vmm-create.glade.h:56
msgid "File _Location:"
msgstr "Fil_sted:"
#: ../src/vmm-add-hardware.glade.h:44 ../src/vmm-create.glade.h:57
msgid "File _Size:"
msgstr "Fil_størrelse:"
#: ../src/vmm-add-hardware.glade.h:45
#, fuzzy
msgid "Hardware Type Select"
msgstr "Maskinel-understøttelse kræves"
#: ../src/vmm-add-hardware.glade.h:46
#, fuzzy
msgid "Hardware type:"
msgstr "Maskinel"
#: ../src/vmm-add-hardware.glade.h:47 ../src/vmm-details.glade.h:32
#: ../../po/../src/virtManager/details.py:700
#, fuzzy
msgid "Input"
msgstr "Intro"
#: ../src/vmm-add-hardware.glade.h:49
msgid "Listen on all public network interfaces "
msgstr ""
#: ../src/vmm-add-hardware.glade.h:50 ../src/vmm-details.glade.h:33
#, fuzzy
msgid "MAC Address Field"
msgstr "MAC-adresse"
#: ../src/vmm-add-hardware.glade.h:51 ../src/vmm-create.glade.h:73
#: ../src/vmm-details.glade.h:34
#, fuzzy
msgid "MAC address:"
msgstr "MAC-adresse"
#: ../src/vmm-add-hardware.glade.h:52 ../src/vmm-create.glade.h:74
#: ../src/vmm-details.glade.h:35
msgid "MB"
msgstr "MB"
#: ../src/vmm-add-hardware.glade.h:53 ../src/vmm-details.glade.h:41
msgid "Mode:"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:54 ../src/vmm-create.glade.h:81
#: ../src/vmm-details.glade.h:44
msgid "Network"
msgstr "Netværk"
#: ../src/vmm-add-hardware.glade.h:55 ../src/vmm-create.glade.h:82
msgid "Network Device Select"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:56
msgid "No"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:57 ../src/vmm-create.glade.h:84
msgid "Normal Disk _Partition:"
msgstr "Normal disk_partitionering:"
#: ../src/vmm-add-hardware.glade.h:58 ../src/vmm-create.glade.h:91
msgid "P_artition:"
msgstr "P_artition:"
#: ../src/vmm-add-hardware.glade.h:59
msgid "Partition Location Field"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:61
msgid "Please indicate how you would like to view the guest display."
msgstr ""
#: ../src/vmm-add-hardware.glade.h:62
#, fuzzy
msgid ""
"Please indicate how you'd like to assign space on this physical host system "
"for your new virtual storage device."
msgstr ""
"Indikér hvordan du vil tildele plads på det fysiske værtssystem for dit nye "
"virtuelle system. Denne plads vil blive brugt til at installere det "
"virtuelle systems operativsystem."
#: ../src/vmm-add-hardware.glade.h:63
msgid ""
"Please indicate how you'd like to connect your new virtual network device to "
"the host network."
msgstr ""
#: ../src/vmm-add-hardware.glade.h:64
msgid "Please indicate what kind of pointer device to connect to the guest."
msgstr ""
#: ../src/vmm-add-hardware.glade.h:65 ../src/vmm-details.glade.h:49
#, fuzzy
msgid "Port:"
msgstr "_Port:"
#: ../src/vmm-add-hardware.glade.h:66
msgid "Set _fixed MAC address for this NIC?"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:67 ../src/vmm-create.glade.h:102
msgid "Shared Physical Device"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:68 ../src/vmm-create.glade.h:103
msgid "Simple F_ile:"
msgstr "Simpel _fil:"
#: ../src/vmm-add-hardware.glade.h:69 ../src/vmm-create.glade.h:106
msgid "Target:"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:70
#, fuzzy
msgid ""
"This assistant will guide you through adding a new piece of virtual "
"hardware. First select what type of hardware you wish to add:"
msgstr ""
"Denne assistent viser dig hvordan du opretter et nyt virtuelt system. Den "
"vil spørge dig om information om det virtuelle system du vil oprette, såsom:"
#: ../src/vmm-add-hardware.glade.h:73
#, fuzzy
msgid "Virtual Network Select"
msgstr "Virtuelle CPU'er"
#: ../src/vmm-add-hardware.glade.h:74 ../src/vmm-create.glade.h:121
msgid "_Device:"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:76 ../src/vmm-create.glade.h:125
#, fuzzy
msgid "_MAC address:"
msgstr "MAC-adresse"
#: ../src/vmm-add-hardware.glade.h:77 ../src/vmm-create.glade.h:127
#, fuzzy
msgid "_Network:"
msgstr "Netværk"
#: ../src/vmm-add-hardware.glade.h:78 ../src/vmm-create.glade.h:130
msgid "_Shared physical device"
msgstr ""
#: ../src/vmm-add-hardware.glade.h:79 ../src/vmm-create.glade.h:132
#, fuzzy
msgid "_Virtual network"
msgstr "Virtuel _maskine"
#: ../src/vmm-add-hardware.glade.h:80 ../src/vmm-create.glade.h:134
msgid "eth0"
msgstr ""
#: ../src/vmm-create.glade.h:2
msgid " "
msgstr " "
#: ../src/vmm-create.glade.h:5 ../src/vmm-details.glade.h:4
msgid "2 GB"
msgstr "2 GB"
#: ../src/vmm-create.glade.h:6
msgid "256\t"
msgstr "256\t"
#: ../src/vmm-create.glade.h:7
msgid "400 MB"
msgstr "400 MB"
#: ../src/vmm-create.glade.h:8
msgid "5\t"
msgstr "5\t"
#: ../src/vmm-create.glade.h:10
msgid "500 MB"
msgstr "500 MB"
#: ../src/vmm-create.glade.h:11
msgid "<b>CPUs:</b>"
msgstr "<b>CPU'er:</b>"
#: ../src/vmm-create.glade.h:12
msgid "<b>Example:</b> system1"
msgstr "<b>Eksempel:</b> system1"
#: ../src/vmm-create.glade.h:13
#, fuzzy
msgid "<b>Install media</b>"
msgstr "<b>Initiel hukommelse:</b>"
#: ../src/vmm-create.glade.h:14
msgid "<b>Memory:</b>"
msgstr "<b>Hukommelse:</b>"
#: ../src/vmm-create.glade.h:15
msgid "<b>Memory</b> and <b>CPU</b> allocation"
msgstr "<b>Hukommelse</b> og <b>CPU</b>-allokering"
#: ../src/vmm-create.glade.h:18
msgid ""
"<b>Storage</b> details - which disk partitions or files the system should use"
msgstr ""
"<b>Lagrings</b> detaljer - hvilke diskpartitioner eller filer systemet skal "
"bruge"
#: ../src/vmm-create.glade.h:21
msgid "<small><b>Example:</b> ftp://hostname.example.com/ks/ks.cfg</small>"
msgstr "<small><b>Eksempel:</b> ftp://værtsnavn.eksempel.dk/ks/ks.cfg</small>"
#: ../src/vmm-create.glade.h:22
msgid ""
"<small><b>Example:</b> http://servername.example.com/distro/i386/tree</small>"
msgstr ""
"<small><b>Eksempel:</b> http://servernavn.eksempel.dk/distro/i386/træ</small>"
#: ../src/vmm-create.glade.h:23
#, fuzzy
msgid ""
"<small><b>Example:</b> updates=http://hostname.example.com/updates.img</"
"small>"
msgstr "<small><b>Eksempel:</b> ftp://værtsnavn.eksempel.dk/ks/ks.cfg</small>"
#: ../src/vmm-create.glade.h:24
msgid ""
"<small><b>Note:</b> The host CPU(s) in this machine do not have support for "
"full virtualization.</small>"
msgstr ""
"<small><b>bemærk:</b> Værts-CPU-erne på denne maskine har ikke støtte for "
"fuld virtualisering.</small>"
#: ../src/vmm-create.glade.h:25
msgid ""
"<small><b>Note:</b> The host CPU(s) in this machine support full "
"virtualization, but it is not enabled by the BIOS.</small>"
msgstr ""
"<small><b>bemærk:</b> Værts-CPU-erne på denne maskine har støtte for fuld "
"virtualisering, men det er ikke aktiveret i BIOS'en.</small>"
#: ../src/vmm-create.glade.h:28
msgid ""
"<small><b>Tip:</b> For best performance, the number of virtual CPUs should "
"be less than (or equal to) the number of logical CPUs on the host system.</"
"small>"
msgstr ""
"<small><b>Tip:</b> For bedste ydelse bør antal virtuelle CPU'er være færre "
"(eller lig med) antal fysiske CPU'er på værtssystemet.</small>"
#: ../src/vmm-create.glade.h:29
msgid ""
"<small><b>Tip:</b> You may add additional storage, including network-mounted "
"storage, to your virtual system after it has been created using the same "
"tools you would on a physical system.</small>"
msgstr ""
"<small><b>Tips:</b> Du kan tilføje mere lagerplads, inklusive "
"netværksmonteret plads, til dit virtuelle system efter det er oprettet ved "
"at bruge samme værktøjer som du skulle på et fysisk system.</small>"
#: ../src/vmm-create.glade.h:31
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Allocate memory "
"and CPU</span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Allokér "
"hukommelse og CPU</span>"
#: ../src/vmm-create.glade.h:33
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Choosing a "
"virtualization method</span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Vælg "
"virtualiseringsmetode</span>"
#: ../src/vmm-create.glade.h:35
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Creating a new "
"virtual system </span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Opretter et nyt "
"virtuelt system </span>"
#: ../src/vmm-create.glade.h:36
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Locating "
"installation media</span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Lokaliserer "
"installationsmedie</span>"
#: ../src/vmm-create.glade.h:37
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Naming your "
"virtual system </span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Navngiv dit "
"virtuelle system </span>"
#: ../src/vmm-create.glade.h:38
msgid ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Ready to begin "
"installation</span>"
msgstr ""
"<span weight=\"heavy\" size=\"xx-large\" foreground=\"#FFF\">Klar til at "
"begynde installationen</span>"
#: ../src/vmm-create.glade.h:39
msgid "A <b>name</b> for your new virtual system"
msgstr "Et <b>navn</b> for dit nye virtuelle system"
#: ../src/vmm-create.glade.h:41
#, fuzzy
msgid "Architecture Select"
msgstr "CPU-arkitektur:"
#: ../src/vmm-create.glade.h:43
msgid "CPU architecture:"
msgstr "CPU-arkitektur:"
#: ../src/vmm-create.glade.h:44
msgid "CPU/memory"
msgstr "CPU/hukommelse"
#: ../src/vmm-create.glade.h:47
msgid "Create a new virtual system"
msgstr "Opret et nyt virtuelt system"
#: ../src/vmm-create.glade.h:51
msgid "Enable kernel / hardware acceleration"
msgstr "Aktivér kerne/maskinel-acceleration"
#: ../src/vmm-create.glade.h:52
msgid "FV install"
msgstr "FV-installation"
#: ../src/vmm-create.glade.h:53
msgid "F_ully Virtualized:"
msgstr "_Fuldt virtualiseret:"
#: ../src/vmm-create.glade.h:55
#, fuzzy
msgid "File Size Select"
msgstr "Fil_størrelse:"
#: ../src/vmm-create.glade.h:58
#, fuzzy
msgid "ISO Location Field"
msgstr "ISO-_sted:"
#: ../src/vmm-create.glade.h:59
msgid "ISO _Location:"
msgstr "ISO-_sted:"
#: ../src/vmm-create.glade.h:60
#, fuzzy
msgid "Initial memory:"
msgstr "<b>Initiel hukommelse:</b>"
#: ../src/vmm-create.glade.h:61
msgid "Install Media _URL:"
msgstr "Installationsmedie-_URL:"
#: ../src/vmm-create.glade.h:62
#, fuzzy
msgid "Install URL Field"
msgstr "Installationsmedia kræves"
#: ../src/vmm-create.glade.h:63
#, fuzzy
msgid "Installation source:"
msgstr "<b>Installationskilde:</b>"
#: ../src/vmm-create.glade.h:65
msgid ""
"Involves hardware simulation, allowing for a greater range of operating "
"systems (does not require OS modification). Slower than paravirtualized "
"systems."
msgstr ""
"Involverer maskinel-simulation, som tillader en større mængde "
"operativsystemer (kræver ikke OS-ændringer). Langsommere end "
"paravirtualiserede systemer."
#: ../src/vmm-create.glade.h:66
msgid "Kernel arguments:"
msgstr ""
#: ../src/vmm-create.glade.h:67
#, fuzzy
msgid "Kickstart Field"
msgstr "<b>Kickstart-kilde:</b>"
#: ../src/vmm-create.glade.h:68
msgid "Kickstart U_RL:"
msgstr "Kickstart-U_RL:"
#: ../src/vmm-create.glade.h:69
#, fuzzy
msgid "Kickstart source:"
msgstr "<b>Kickstart-kilde:</b>"
#: ../src/vmm-create.glade.h:70
msgid ""
"Lightweight method of virtualizing machines. Limits operating system choices "
"because the OS must be specially modified to support paravirtualization. "
"Better performance than fully virtualized systems."
msgstr ""
"Letvægts-metode for virtualiseringsmaskiner. Begrænser valg af "
"operativsystemer men OS'et skal specifikt tilrettes for at støtte "
"paravirtualisering. Bedre ydelse end fuldt virtualiserede systemer."
#: ../src/vmm-create.glade.h:71
msgid "Logical host CPUs:"
msgstr "Fysisk værts CPU-er:"
#: ../src/vmm-create.glade.h:72
msgid "MAC Field"
msgstr ""
#: ../src/vmm-create.glade.h:75
#, fuzzy
msgid "Machine name:"
msgstr "<b>Maskinnavn:</b>"
#: ../src/vmm-create.glade.h:76
msgid "Max Mem Select"
msgstr ""
#: ../src/vmm-create.glade.h:77
#, fuzzy
msgid "Maximum memory:"
msgstr "<b>Maximal hukommelse:</b>"
#: ../src/vmm-create.glade.h:78
msgid "Media Path Select"
msgstr ""
#: ../src/vmm-create.glade.h:80 ../src/vmm-details.glade.h:42
msgid "Name Field"
msgstr ""
#: ../src/vmm-create.glade.h:83
#, fuzzy
msgid "Network Select"
msgstr "Netværk"
#: ../src/vmm-create.glade.h:85
#, fuzzy
msgid "OS Type Select"
msgstr "OS-_type:"
#: ../src/vmm-create.glade.h:86
#, fuzzy
msgid "OS Variant Select"
msgstr "OS-_variant:"
#: ../src/vmm-create.glade.h:87
msgid "OS _Type:"
msgstr "OS-_type:"
#: ../src/vmm-create.glade.h:88
msgid "OS _Variant:"
msgstr "OS-_variant:"
#: ../src/vmm-create.glade.h:89
#, fuzzy
msgid "Operating System:"
msgstr "<b>Operativsystem:</b>"
#: ../src/vmm-create.glade.h:90
msgid "PVinstall"
msgstr "PVinstall"
#: ../src/vmm-create.glade.h:92
#, fuzzy
msgid "Partition Field"
msgstr "P_artition:"
#: ../src/vmm-create.glade.h:93
msgid "Please choose a name for your virtual system:"
msgstr "Angiv et navn for dit virtuelle system:"
#: ../src/vmm-create.glade.h:94
msgid ""
"Please choose the type of guest operating system you will be installing:"
msgstr "Vælg venligst typen af gæsteoperativsystem, som du vil installere:"
#: ../src/vmm-create.glade.h:95
msgid ""
"Please enter the memory configuration for this VM. You can specify the "
"maximum amount of memory the VM should be able to use, and optionally a "
"lower amount to grab on startup. Warning: setting VM memory too high will "
"cause out-of-memory errors in your host domain!"
msgstr ""
"Indtast venligst hukommelseskonfigurationen for denne VM. Du kan angive den "
"største mængde hukommelse som denne VM skal kunne bruge, og eventuelt en "
"mindre mængde som bruges ved opstart. Advarsel: At sætte VM-hukommelse for "
"højt vil give fejl med manglende hukommelse på dit værtsdomæne!"
#: ../src/vmm-create.glade.h:96
msgid "Please enter the number of virtual CPUs this VM should start up with."
msgstr "Indtast antal virtuelle CPU-er som denne VM bør starte op med."
#: ../src/vmm-create.glade.h:97
msgid ""
"Please indicate how you'd like to assign space on this physical host system "
"for your new virtual system. This space will be used to install the virtual "
"system's operating system."
msgstr ""
"Indikér hvordan du vil tildele plads på det fysiske værtssystem for dit nye "
"virtuelle system. Denne plads vil blive brugt til at installere det "
"virtuelle systems operativsystem."
#: ../src/vmm-create.glade.h:98
msgid ""
"Please indicate how you'd like to connect your new virtual system to the "
"host network."
msgstr ""
#: ../src/vmm-create.glade.h:99
msgid ""
"Please indicate where installation media is available for the operating "
"system you would like to install on this <b>fully virtualized</b> virtual "
"system:"
msgstr ""
"Indikér hvor installationsmedie findes for det operativsystem du vil "
"installere på dette <b>fuldt virtualiserede</b> virtuelle system:"
#: ../src/vmm-create.glade.h:100
msgid ""
"Please indicate where installation media is available for the operating "
"system you would like to install on this <b>paravirtualized</b> virtual "
"system. Optionally you can provide the URL for a kickstart file that "
"describes your system:"
msgstr ""
"Indikér hvor installationsmedie findes for det operativsystem du vil "
"installere på dette <b>paravirtualiserede</b> virtuelle system. Hvis du vil "
"kan du angive URL'en for en kickstart-fil som beskriver dit system:"
#: ../src/vmm-create.glade.h:101
#, fuzzy
msgid "Set _fixed MAC address for your virtual system?"
msgstr "Angiv et navn for dit virtuelle system:"
#: ../src/vmm-create.glade.h:104
msgid "Startup Mem Select"
msgstr ""
#: ../src/vmm-create.glade.h:105
msgid "System _Name:"
msgstr "System_navn:"
#: ../src/vmm-create.glade.h:107
msgid ""
"The <b>location</b> of the files necessary for installing an operating "
"system on the virtual system"
msgstr ""
"<b>Stedet</b> for filerne som behøves for installere et operativsystem på "
"det virtuelle system"
#: ../src/vmm-create.glade.h:108
msgid ""
"This assistant will guide you through creating a new virtual system. You "
"will be asked for some information about the virtual system you'd like to "
"create, such as:"
msgstr ""
"Denne assistent viser dig hvordan du opretter et nyt virtuelt system. Den "
"vil spørge dig om information om det virtuelle system du vil oprette, såsom:"
#: ../src/vmm-create.glade.h:109 ../src/vmm-details.glade.h:63
msgid "Total memory on host machine:"
msgstr "Total hukommelse på værtsmaskine:"
#: ../src/vmm-create.glade.h:110
msgid "Type"
msgstr "Type"
#: ../src/vmm-create.glade.h:111 ../src/vmm-details.glade.h:67
msgid "VCPU Select"
msgstr ""
#: ../src/vmm-create.glade.h:112
msgid "VM _Max Memory (MB):"
msgstr "VM _max hukommelse (MB):"
#: ../src/vmm-create.glade.h:113
msgid "VM _Startup Memory (MB):"
msgstr "VM _opstarts-hukommelse (MB):"
#: ../src/vmm-create.glade.h:114
msgid "VMS"
msgstr "VMS"
#: ../src/vmm-create.glade.h:115
#, fuzzy
msgid "Virtual CPUs:"
msgstr "Virtuelle CPU'er"
#: ../src/vmm-create.glade.h:116
#, fuzzy
msgid "Virtualization method:"
msgstr "<b>Virtualiseringsmetode:</b>"
#: ../src/vmm-create.glade.h:117
msgid ""
"Whether the system will be <b>fully virtualized</b> or <b>para-virtualized</"
"b>"
msgstr ""
"Om systemet bliver <b>fuldt virtualiseret</b> eller <b>para-virtualiseret</b>"
#: ../src/vmm-create.glade.h:118
msgid "You will need to choose a virtualization method for your new system:"
msgstr "Du skal vælge en virtualiseringsmetode for dit nye system:"
#: ../src/vmm-create.glade.h:119
msgid "_Browse..."
msgstr "_Bladr..."
#: ../src/vmm-create.glade.h:120
msgid "_CD-ROM or DVD:"
msgstr "_CD-ROM eller DVD:"
#: ../src/vmm-create.glade.h:123
msgid "_ISO Image Location:"
msgstr "Sted for _ISO-aftryk:"
#: ../src/vmm-create.glade.h:124
msgid "_Kernel parameters:"
msgstr ""
#: ../src/vmm-create.glade.h:126
#, fuzzy
msgid "_Network PXE boot"
msgstr "Netværk"
#: ../src/vmm-create.glade.h:128
msgid "_Paravirtualized:"
msgstr "_Paravirtualiseret:"
#: ../src/vmm-create.glade.h:129
msgid "_Path to install media:"
msgstr "_Søgesti til installationsmedie:"
#: ../src/vmm-create.glade.h:131
msgid "_VCPUs:"
msgstr "_VCPU'er:"
#: ../src/vmm-create.glade.h:135
msgid "http://"
msgstr "http://"
#: ../src/vmm-create.glade.h:136
msgid ""
"i686\n"
"x86_64\n"
"ppc\n"
"sparc\n"
"mips\n"
"mipsel"
msgstr ""
"i686\n"
"x86_64\n"
"ppc\n"
"sparc\n"
"mips\n"
"mipsel"
#: ../src/vmm-create.glade.h:142
msgid "ip=192.168.1.1"
msgstr ""
#: ../src/vmm-create.glade.h:143
msgid "kernel-params"
msgstr ""
#: ../src/vmm-create.glade.h:144
msgid "para"
msgstr "para"
#: ../src/vmm-details.glade.h:2
#, no-c-format
msgid "18%"
msgstr "18%"
#: ../src/vmm-details.glade.h:3
msgid "2"
msgstr "2"
#: ../src/vmm-details.glade.h:5
msgid "20 bits/sec"
msgstr "20 bit/sek"
#: ../src/vmm-details.glade.h:6
msgid "200 MB"
msgstr "200 MB"
#: ../src/vmm-details.glade.h:7
msgid "30 MB of 128 MB"
msgstr "30 MB af 128 MB"
#: ../src/vmm-details.glade.h:8
msgid "8"
msgstr "8"
#: ../src/vmm-details.glade.h:9
msgid "80 MB of 1 GB"
msgstr "80 MB af 1 GB"
#: ../src/vmm-details.glade.h:11
msgid "<b>CPUs</b>"
msgstr "<b>CPU'er</b>"
#: ../src/vmm-details.glade.h:12
msgid "<b>Memory</b>"
msgstr "<b>Hukommelse</b>"
#: ../src/vmm-details.glade.h:14
msgid ""
"<b>Tip:</b> 'Source device' refers to the name of the device as seen from "
"the host OS."
msgstr ""
#: ../src/vmm-details.glade.h:15
msgid ""
"<b>Tip:</b> 'source' refers to information seen from the host OS, while "
"'target' refers to information seen from the guest OS"
msgstr ""
#: ../src/vmm-details.glade.h:16
msgid ""
"<b>Tip:</b> A graphics tablet configured as the default pointer in the guest "
"OS will ensure that the virtual cursor moves in sync with the local desktop "
"cursor."
msgstr ""
#: ../src/vmm-details.glade.h:17
msgid ""
"<b>Tip:</b> For best performance, the number of virtual CPUs should be less "
"than (or equal to) the number of physical CPUs on the host system."
msgstr ""
"<b>Tip:</b> For bedste ydelse skal antal virtuelle CPU'er være mindre (eller "
"lig med) antal fysiske CPU'er på værtssystemet."
#: ../src/vmm-details.glade.h:18
#, fuzzy
msgid "<b>Virtual Disk</b>"
msgstr "<b>Virtuelle CPUer:</b>"
#: ../src/vmm-details.glade.h:19
#, fuzzy
msgid "<b>Virtual Display</b>"
msgstr "<b>Virtuelle CPUer:</b>"
#: ../src/vmm-details.glade.h:20
#, fuzzy
msgid "<b>Virtual Network Interface</b>"
msgstr "<b>Netværk</b>"
#: ../src/vmm-details.glade.h:21
#, fuzzy
msgid "<b>Virtual Pointer</b>"
msgstr "<b>Virtuelle CPUer:</b>"
#: ../src/vmm-details.glade.h:23
msgid "Block"
msgstr ""
#: ../src/vmm-details.glade.h:25
msgid "Change allocation:"
msgstr "Ændr allokering:"
#: ../src/vmm-details.glade.h:26
msgid "Current allocation:"
msgstr "Nuværende allokering:"
#: ../src/vmm-details.glade.h:28
msgid "Disk usage:"
msgstr "Diskforbrug:"
#: ../src/vmm-details.glade.h:29
msgid "Hardware"
msgstr "Maskinel"
#: ../src/vmm-details.glade.h:30
#, fuzzy
msgid "How many virtual CPUs should be allocated for this machine?"
msgstr "Hvor mange virtuelle CPU'er skal denne maskine allokere?"
#: ../src/vmm-details.glade.h:31
#, fuzzy
msgid "How much memory should be allocated for this machine?"
msgstr "Hvor meget hukommelse skal denne maskine allokere?"
#: ../src/vmm-details.glade.h:36
msgid "Max Memory Select"
msgstr ""
#: ../src/vmm-details.glade.h:37
msgid "Maximum allocation:"
msgstr "Maksimal allokering:"
#: ../src/vmm-details.glade.h:38
msgid "Memory"
msgstr "Hukommelse"
#: ../src/vmm-details.glade.h:39
#, fuzzy
msgid "Memory Select"
msgstr "Hukommelsesbrug"
#: ../src/vmm-details.glade.h:45
msgid "Network usage:"
msgstr "Netværksforbrug:"
#: ../src/vmm-details.glade.h:50
msgid "Processor"
msgstr "Processor"
#: ../src/vmm-details.glade.h:53
msgid "Shut down"
msgstr "Luk ned"
#: ../src/vmm-details.glade.h:55
msgid "Source device:"
msgstr ""
#: ../src/vmm-details.glade.h:56
msgid "Source path:"
msgstr ""
#: ../src/vmm-details.glade.h:57
msgid "Source type:"
msgstr ""
#: ../src/vmm-details.glade.h:58
msgid "Status:"
msgstr "Status:"
#: ../src/vmm-details.glade.h:59
msgid "Target device:"
msgstr ""
#: ../src/vmm-details.glade.h:60
msgid "Target type:"
msgstr ""
#: ../src/vmm-details.glade.h:62
msgid "Total CPUs on host machine:"
msgstr "Totalt antal CPU'er på værtsmaskine:"
#: ../src/vmm-details.glade.h:65
msgid "UUID Field"
msgstr ""
#: ../src/vmm-details.glade.h:68
msgid "Virtual Machine Details"
msgstr "Detaljer for virtuel maskine"
#: ../src/vmm-details.glade.h:72
msgid "_Graphical Console"
msgstr "_Grafisk konsol"
#: ../src/vmm-details.glade.h:79
#, fuzzy
msgid "disk\t"
msgstr "Disk"
#: ../../po/../src/vmm-manager.glade:49
msgid "Restore a saved machine from a filesystem image"
msgstr "Genetablér en gemt maskine fra et filsystemsaftryk"
#: ../../po/../src/vmm-manager.glade:50
msgid "Restore saved machine..."
msgstr "Genetablér gemt maskine..."
#: ../../po/../src/vmm-manager.glade:78
msgid "Open connection..."
msgstr "Åbn forbindelse..."
#: ../../po/../src/vmm-manager.glade:127
msgid "_Edit"
msgstr "_Redigér"
#: ../../po/../src/vmm-manager.glade:136
#, fuzzy
msgid "Host details..."
msgstr "Maskindetaljer..."
#: ../../po/../src/vmm-manager.glade:145
msgid "Machine details..."
msgstr "Maskindetaljer..."
#: ../../po/../src/vmm-manager.glade:166
msgid "Delete machine"
msgstr "Fjern maskine"
#: ../../po/../src/vmm-manager.glade:215
msgid "Domain ID"
msgstr "Domæne-ID"
#: ../../po/../src/vmm-manager.glade:225
#: ../../po/../src/virtManager/manager.py:740
msgid "Status"
msgstr "Status"
#: ../../po/../src/vmm-manager.glade:235
#: ../../po/../src/virtManager/manager.py:741
msgid "CPU usage"
msgstr "CPU-brug"
#: ../../po/../src/vmm-manager.glade:245
msgid "Virtual CPUs"
msgstr "Virtuelle CPU'er"
#: ../../po/../src/vmm-manager.glade:255
#: ../../po/../src/virtManager/manager.py:743
msgid "Memory usage"
msgstr "Hukommelsesbrug"
#: ../../po/../src/vmm-manager.glade:265
#: ../../po/../src/virtManager/manager.py:744
msgid "Disk usage"
msgstr "Diskbrug"
#: ../../po/../src/vmm-manager.glade:275
#: ../../po/../src/virtManager/manager.py:745
msgid "Network traffic"
msgstr "Netværkstrafik"
#: ../../po/../src/vmm-manager.glade:353
msgid "_View:"
msgstr "_Vis:"
#: ../../po/../src/vmm-manager.glade:378
msgid ""
"All virtual machines\n"
"Active virtual machines\n"
"Inactive virtual machines"
msgstr ""
"Alle virtuelle maskiner\n"
"Aktive virtuelle maskiner\n"
"Inaktive virtuelle maskiner"
#: ../../po/../src/vmm-manager.glade:487
msgid "De_tails"
msgstr "De_taljer"
#: ../src/vmm-open-connection.glade.h:1
msgid "Co_nnect"
msgstr "_Tilslut"
#: ../src/vmm-open-connection.glade.h:2
#, fuzzy
msgid "Connection Select"
msgstr "_Tilslut"
#: ../src/vmm-open-connection.glade.h:4
#, fuzzy
msgid "Hostname Field"
msgstr "_Vært:"
#: ../src/vmm-open-connection.glade.h:6
#, fuzzy
msgid "Hypervisor Select"
msgstr "Hypervisor:"
#: ../src/vmm-open-connection.glade.h:8
msgid ""
"Local\n"
"Remote SSL/TLS with x509 certificate\n"
"Remote tunnel over SSH"
msgstr ""
#: ../src/vmm-open-connection.glade.h:11
msgid "Open connection"
msgstr "Åbn forbindelse"
#: ../src/vmm-open-connection.glade.h:12
msgid ""
"Xen\n"
"QEMU"
msgstr ""
"Xen\n"
"QEMU"
#: ../src/vmm-progress.glade.h:1 ../../po/../src/virtManager/asyncjob.py:38
msgid "Operation in progress"
msgstr "Handling udføres"
#: ../src/vmm-progress.glade.h:2 ../../po/../src/virtManager/asyncjob.py:38
msgid "Please wait a few moments..."
msgstr "Vent venligst nogen øjeblikke..."
#: ../src/vmm-progress.glade.h:3 ../../po/../src/virtManager/asyncjob.py:74
#: ../../po/../src/virtManager/asyncjob.py:87
msgid "Processing..."
msgstr "Udfører..."
#. ...the risk is we catch too much though
#. Damned if we do, damned if we dont :-)(
#: ../../po/../src/virt-manager.py.in:219
msgid "Unable to initialize GTK: "
msgstr "Kan ikke initiere GTK:"
#: ../src/virt-manager.schemas.in.h:1
msgid "Show VCPU count in summary"
msgstr ""
#: ../src/virt-manager.schemas.in.h:2
msgid "Show cpu usage in summary"
msgstr ""
#: ../src/virt-manager.schemas.in.h:3
msgid "Show disk usage in summary"
msgstr ""
#: ../src/virt-manager.schemas.in.h:4
msgid "Show domain id in summary"
msgstr ""
#: ../src/virt-manager.schemas.in.h:5
msgid "Show memory usage in summary"
msgstr ""
#: ../src/virt-manager.schemas.in.h:6
#, fuzzy
msgid "Show network traffic in summary"
msgstr "Netværkstrafik"
#: ../src/virt-manager.schemas.in.h:7
msgid "Show run state in summary"
msgstr ""
#: ../src/virt-manager.schemas.in.h:8
msgid "Show the cpu usage field in the domain list summary view"
msgstr ""
#: ../src/virt-manager.schemas.in.h:9
msgid "Show the disk usage field in the domain list summary view"
msgstr ""
#: ../src/virt-manager.schemas.in.h:10
msgid "Show the domain id field in the domain list summary view"
msgstr ""
#: ../src/virt-manager.schemas.in.h:11
msgid "Show the memory usage field in the domain list summary view"
msgstr ""
#: ../src/virt-manager.schemas.in.h:12
msgid "Show the network traffic field in the domain list summary view"
msgstr ""
#: ../src/virt-manager.schemas.in.h:13
msgid "Show the run state field in the domain list summary view"
msgstr ""
#: ../src/virt-manager.schemas.in.h:14
msgid "Show the virtual CPU count field in the domain list summary view"
msgstr ""
#: ../src/virt-manager.schemas.in.h:15
msgid "The length of the list of URLs"
msgstr ""
#: ../src/virt-manager.schemas.in.h:16
msgid "The number of samples to keep in the statistics history"
msgstr ""
#: ../src/virt-manager.schemas.in.h:17
msgid ""
"The number of urls to keep in the history for the install media address page."
msgstr ""
#: ../src/virt-manager.schemas.in.h:18
msgid "The statistics history length"
msgstr ""
#: ../src/virt-manager.schemas.in.h:19
msgid "The statistics update interval"
msgstr ""
#: ../src/virt-manager.schemas.in.h:20
msgid "The statistics update interval in seconds"
msgstr ""
#: ../src/virt-manager.schemas.in.h:21
msgid "When to grab keyboard input for the console"
msgstr ""
#: ../src/virt-manager.schemas.in.h:22
msgid "When to pop up a console for a guest"
msgstr ""
#: ../src/virt-manager.schemas.in.h:23
msgid ""
"Whether to grab keyboard input for a guest console. 0 = never, 1 = only when "
"in full screen mode, 2 = when mouse is over console"
msgstr ""
#: ../src/virt-manager.schemas.in.h:24
msgid ""
"Whether to pop up a console for a guest. 0 = never, 1 = only on creation of "
"a new guest, 2 = On creation of any guest"
msgstr ""
#: ../src/virt-manager.schemas.in.h:25
msgid "Whether to show notification when grabbing mouse"
msgstr ""
#: ../src/virt-manager.schemas.in.h:26
msgid ""
"Whether to show the notification hint when grabbing the mouse in the console"
msgstr ""
#: ../../po/../src/virtManager/connection.py:764
#, fuzzy
msgid "Disconnected"
msgstr "_Tilslut"
#: ../../po/../src/virtManager/connection.py:766
#, fuzzy
msgid "Connecting"
msgstr "_Tilslut"
#: ../../po/../src/virtManager/connection.py:768
#: ../../po/../src/virtManager/host.py:194
msgid "Active"
msgstr ""
#: ../../po/../src/virtManager/connection.py:770
#: ../../po/../src/virtManager/host.py:202
msgid "Inactive"
msgstr ""
#: ../../po/../src/virtManager/connection.py:772
msgid "Unknown"
msgstr ""
#: ../../po/../src/virtManager/createnet.py:97
#: ../../po/../src/virtManager/createnet.py:255
#: ../../po/../src/virtManager/host.py:232
#, python-format
msgid "NAT to physical device %s"
msgstr ""
#: ../../po/../src/virtManager/createnet.py:152
#, python-format
msgid "%d addresses"
msgstr "%d-adresser"
#: ../../po/../src/virtManager/createnet.py:154
msgid "Public"
msgstr ""
#: ../../po/../src/virtManager/createnet.py:158
msgid "Reserved"
msgstr ""
#: ../../po/../src/virtManager/createnet.py:160
msgid "Other"
msgstr ""
#: ../../po/../src/virtManager/createnet.py:304
#: ../../po/../src/virtManager/createnet.py:308
msgid "Invalid Network Name"
msgstr "Ugyldigt netværksnavn"
#: ../../po/../src/virtManager/createnet.py:305
msgid "Network name must be non-blank and less than 50 characters"
msgstr "Netværksnavnet skal være ikke-blankt og kortere end 50 tegn"
#: ../../po/../src/virtManager/createnet.py:309
msgid "Network name may contain alphanumeric and '_' characters only"
msgstr "Netværksnavn må kun indeholde alfanumeriske og '_' tegn"
#: ../../po/../src/virtManager/createnet.py:316
#: ../../po/../src/virtManager/createnet.py:321
#: ../../po/../src/virtManager/createnet.py:326
msgid "Invalid Network Address"
msgstr "Ugyldig netværksadresse"
#: ../../po/../src/virtManager/createnet.py:317
msgid "The network address could not be understood"
msgstr ""
#: ../../po/../src/virtManager/createnet.py:322
msgid "The network must be an IPv4 address"
msgstr ""
#: ../../po/../src/virtManager/createnet.py:327
msgid "The network prefix must be at least /4 (16 addresses)"
msgstr ""
#: ../../po/../src/virtManager/createnet.py:331
#, fuzzy
msgid "Check Network Address"
msgstr "Ugyldig netværksadresse"
#: ../../po/../src/virtManager/createnet.py:332
msgid ""
"The network should normally use a private IPv4 address. Use this non-private "
"address anyway?"
msgstr ""
#: ../../po/../src/virtManager/createnet.py:341
#: ../../po/../src/virtManager/createnet.py:345
#: ../../po/../src/virtManager/createnet.py:350
#: ../../po/../src/virtManager/createnet.py:354
msgid "Invalid DHCP Address"
msgstr "Ugyldig DHCP-adresse"
#: ../../po/../src/virtManager/createnet.py:342
msgid "The DHCP start address could not be understood"
msgstr ""
#: ../../po/../src/virtManager/createnet.py:346
msgid "The DHCP end address could not be understood"
msgstr ""
#: ../../po/../src/virtManager/createnet.py:351
#, python-format
msgid "The DHCP start address is not with the network %s"
msgstr ""
#: ../../po/../src/virtManager/createnet.py:355
#, python-format
msgid "The DHCP end address is not with the network %s"
msgstr ""
#: ../../po/../src/virtManager/createnet.py:361
#, fuzzy
msgid "Invalid forwarding mode"
msgstr "Ugyldig lagringsadresse"
#: ../../po/../src/virtManager/createnet.py:362
msgid "Please select where the traffic should be forwarded"
msgstr ""
#: ../../po/../src/virtManager/createnet.py:422
msgid "No media present"
msgstr "Intet medie til stede"
#: ../../po/../src/virtManager/engine.py:344
msgid "Save Virtual Machine"
msgstr "Gem virtuel maskine"
#: ../../po/../src/virtManager/engine.py:358
msgid "Saving Virtual Machine"
msgstr "Gemmer virtuel maskine"
#: ../../po/../src/virtManager/engine.py:374
#, python-format
msgid "About to destroy virtual machine %s"
msgstr "Skal til at ødelægge virtuel maskine %s"
#: ../../po/../src/virtManager/engine.py:375
msgid ""
"This will immediately destroy the VM and may corrupt its disk image. Are you "
"sure?"
msgstr ""
"Dette vil øjeblikkeligt ødelægge den virtuelle maskine og kan ødelægge dens "
"diskaftryk. Er du sikker?"
#: ../../po/../src/virtManager/addhardware.py:338
#: ../../po/../src/virtManager/create.py:482
msgid "Shared physical device"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:341
#: ../../po/../src/virtManager/create.py:485
msgid "Virtual network"
msgstr "Virtuelt netværk"
#: ../../po/../src/virtManager/addhardware.py:344
#: ../../po/../src/virtManager/create.py:488
msgid "Usermode networking"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:358
msgid "Absolute movement"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:360
msgid "Relative movement"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:375
#: ../../po/../src/virtManager/addhardware.py:377
msgid "Yes"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:379
#: ../../po/../src/virtManager/addhardware.py:380
#: ../../po/../src/virtManager/addhardware.py:381
#: ../../po/../src/virtManager/details.py:507
#: ../../po/../src/virtManager/details.py:508
msgid "N/A"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:481
msgid "Invalid storage address"
msgstr "Ugyldig lagringsadresse"
#: ../../po/../src/virtManager/addhardware.py:509
msgid "Too many virtual disks"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:510
msgid "There are no more available virtual disk device nodes"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:514
msgid "Creating Storage File"
msgstr "Opretter lagringsfil"
#: ../../po/../src/virtManager/addhardware.py:515
#, fuzzy
msgid "Allocation of disk storage may take a few minutes "
msgstr "Tildeling af diskplads og hentning af"
#: ../../po/../src/virtManager/addhardware.py:516
#: ../../po/../src/virtManager/create.py:580
msgid "to complete."
msgstr "at blive færdig."
#: ../../po/../src/virtManager/addhardware.py:535
#: ../../po/../src/virtManager/addhardware.py:554
#: ../../po/../src/virtManager/create.py:632
#, python-format
msgid "Unable to complete install: '%s'"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:559
#: ../../po/../src/virtManager/create.py:666
msgid "Locate Storage Partition"
msgstr "Lokalisér lagringspartition"
#: ../../po/../src/virtManager/addhardware.py:566
#: ../../po/../src/virtManager/create.py:672
msgid "Locate or Create New Storage File"
msgstr "Lokalisér eller opret ny lagringsfil"
#: ../../po/../src/virtManager/addhardware.py:665
#, fuzzy
msgid "Hardware Type Required"
msgstr "Maskinel-understøttelse kræves"
#: ../../po/../src/virtManager/addhardware.py:666
msgid "You must specify what type of hardware to add"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:671
#: ../../po/../src/virtManager/create.py:860
msgid "Storage Address Required"
msgstr "Lager-adresse kræves"
#: ../../po/../src/virtManager/addhardware.py:672
#: ../../po/../src/virtManager/create.py:861
msgid ""
"You must specify a partition or a file for storage for the guest install"
msgstr ""
"Du skal angive en partition eller en fil som lagring for gæstinstallationen"
#: ../../po/../src/virtManager/addhardware.py:677
msgid "Storage Address Is Directory"
msgstr "Lager-adresse er katalog"
#: ../../po/../src/virtManager/addhardware.py:678
msgid ""
"You chose 'Simple File' storage for your storage method, but chose a "
"directory instead of a file. Please enter a new filename or choose an "
"existing file."
msgstr ""
"Du valgte 'Simpel fil'-lager som lagringsmetode, men valgte et katalog i "
"stedet for en fil. Indtast venligst et nyt filnavn eller vælg en "
"eksisterende fil."
#: ../../po/../src/virtManager/addhardware.py:682
#, fuzzy
msgid "Target Device Required"
msgstr "Installationsmedia kræves"
#: ../../po/../src/virtManager/addhardware.py:683
msgid "You must select a target device for the disk"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:692
#: ../../po/../src/virtManager/create.py:870
msgid "Storage Path Does not exist"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:693
#: ../../po/../src/virtManager/create.py:871
#, python-format
msgid "The directory %s containing the disk image does not exist"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:701
#: ../../po/../src/virtManager/addhardware.py:706
#: ../../po/../src/virtManager/create.py:879
#: ../../po/../src/virtManager/create.py:884
msgid "Not Enough Free Space"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:702
#: ../../po/../src/virtManager/create.py:880
msgid ""
"The filesystem will not have enough free space to fully allocate the sparse "
"file when the guest is running. Use this path anyway?"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:707
#: ../../po/../src/virtManager/create.py:885
msgid "There is not enough free space to create the disk"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:722
#: ../../po/../src/virtManager/create.py:920
#, python-format
msgid "Disk \"%s\" is already in use by another guest!"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:723
#: ../../po/../src/virtManager/create.py:920
msgid "Do you really want to use the disk ?"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:728
#: ../../po/../src/virtManager/create.py:927
msgid "Virtual Network Required"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:729
#: ../../po/../src/virtManager/create.py:928
msgid "You must select one of the virtual networks"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:733
#: ../../po/../src/virtManager/create.py:932
#, fuzzy
msgid "Physical Device Required"
msgstr "Installationsmedia kræves"
#: ../../po/../src/virtManager/addhardware.py:734
#: ../../po/../src/virtManager/create.py:933
msgid "You must select one of the physical devices"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:740
#: ../../po/../src/virtManager/addhardware.py:744
#: ../../po/../src/virtManager/create.py:941
#, fuzzy
msgid "Invalid MAC address"
msgstr "Ugyldig DHCP-adresse"
#: ../../po/../src/virtManager/addhardware.py:741
msgid "MAC adrress must be 17 characters"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:745
msgid ""
"MAC address must be a form such as AA:BB:CC:DD:EE:FF, and MAC adrress may "
"contain numeric and alphabet of A-F(a-f) and ':' characters only"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:750
#: ../../po/../src/virtManager/create.py:954
#, python-format
msgid "MAC address \"%s\" is already in use by the host"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:751
#: ../../po/../src/virtManager/addhardware.py:766
#: ../../po/../src/virtManager/create.py:955
#: ../../po/../src/virtManager/create.py:988
msgid "Please enter a different MAC address or select no fixed MAC address"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:765
#, python-format
msgid "MAC address \"%s\" is already in use by an active guest"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:768
#: ../../po/../src/virtManager/create.py:990
#, python-format
msgid "MAC address \"%s\" is already in use by another inactive guest!"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:769
#: ../../po/../src/virtManager/create.py:991
msgid "Do you really want to use the MAC address ?"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:812
#: ../../po/../src/virtManager/create.py:1085
msgid "Bridge"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:814
#: ../../po/../src/virtManager/create.py:1087
msgid "Not bridged"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:833
#: ../../po/../src/virtManager/details.py:462
msgid "EvTouch USB Graphics Tablet"
msgstr ""
#. XXX libvirt needs to support 'model' for input devices to distinguish
#. wacom from evtouch tablets
#. model.append([_("Wacom Graphics Tablet"), "tablet", "usb", True])
#: ../../po/../src/virtManager/addhardware.py:837
#: ../../po/../src/virtManager/details.py:464
msgid "Generic USB Mouse"
msgstr ""
#: ../../po/../src/virtManager/addhardware.py:841
#: ../../po/../src/virtManager/details.py:490
msgid "VNC server"
msgstr ""
#. XXX inclined to just not give this choice at all
#: ../../po/../src/virtManager/addhardware.py:843
#: ../../po/../src/virtManager/details.py:492
msgid "Local SDL window"
msgstr ""
#: ../../po/../src/virtManager/create.py:454
msgid "Paravirtualized"
msgstr "Paravirtualiseret"
#: ../../po/../src/virtManager/create.py:458
msgid "Fully virtualized"
msgstr "Fuldt virtualiseret"
#: ../../po/../src/virtManager/create.py:521
msgid "UUID Error"
msgstr ""
#: ../../po/../src/virtManager/create.py:526
msgid "Error Setting up Disk"
msgstr ""
#: ../../po/../src/virtManager/create.py:531
msgid "Error Setting up Network"
msgstr ""
#: ../../po/../src/virtManager/create.py:576
msgid "Creating Virtual Machine"
msgstr "Opretter virtuel maskine"
#: ../../po/../src/virtManager/create.py:577
msgid "The virtual machine is now being created. "
msgstr "Den virtuelle maskine bliver oprettet nu. "
#: ../../po/../src/virtManager/create.py:578
msgid "Allocation of disk storage and retrieval of "
msgstr "Tildeling af diskplads og hentning af"
#: ../../po/../src/virtManager/create.py:579
#, fuzzy
msgid "the installation images may take a few minutes "
msgstr "Installation-afbildningerne kan tage nogen få minutter "
#: ../../po/../src/virtManager/create.py:618
msgid "Guest installation failed to complete"
msgstr ""
#: ../../po/../src/virtManager/create.py:637
msgid "Locate ISO Image"
msgstr "Lokalisér ISO-aftryk"
#: ../../po/../src/virtManager/create.py:775
msgid "Invalid System Name"
msgstr "Ugyldigt systemnavn"
#: ../../po/../src/virtManager/create.py:800
msgid "ISO Path Not Found"
msgstr "ISO-søgesti ikke fundet"
#: ../../po/../src/virtManager/create.py:808
msgid "CD-ROM Path Error"
msgstr ""
#: ../../po/../src/virtManager/create.py:819
msgid "Invalid FV OS Type"
msgstr "Ugyldig FV-OS-type"
#: ../../po/../src/virtManager/create.py:827
msgid "Invalid FV OS Variant"
msgstr "Ugyldig FV-OS-variant"
#: ../../po/../src/virtManager/create.py:835
msgid "Invalid Install URL"
msgstr ""
#: ../../po/../src/virtManager/create.py:842
#, fuzzy
msgid "Kickstart URL Error"
msgstr "Kickstart-U_RL:"
#: ../../po/../src/virtManager/create.py:843
msgid "Kickstart location must be an NFS, HTTP or FTP source"
msgstr ""
#: ../../po/../src/virtManager/create.py:915
#, fuzzy
msgid "Invalid Storage Address"
msgstr "Ugyldig lagringsadresse"
#: ../../po/../src/virtManager/create.py:942
msgid "No MAC address was entered. Please enter a valid MAC address."
msgstr ""
#: ../../po/../src/virtManager/create.py:947
#, fuzzy
msgid "Invalid Mac address"
msgstr "Ugyldig lagringsadresse"
#: ../../po/../src/virtManager/create.py:971
#, fuzzy
msgid "Network Parameter Error"
msgstr "Netværksforbrug:"
#: ../../po/../src/virtManager/create.py:987
#, python-format
msgid "MAC address \"%s\" is already in use by a active guest"
msgstr ""
#: ../../po/../src/virtManager/create.py:999
msgid "VCPU Count Error"
msgstr ""
#: ../../po/../src/virtManager/create.py:1006
msgid "Memory Amount Error"
msgstr ""
#: ../../po/../src/virtManager/create.py:1013
msgid "Max Memory Amount Error"
msgstr ""
#. Expander section with details.
#: ../../po/../src/virtManager/error.py:33
#, fuzzy
msgid "Details"
msgstr "_Detaljer"
#: ../../po/../src/virtManager/serialcon.py:35
msgid "serial console"
msgstr "seriel konsol"
#: ../../po/../src/virtManager/asyncjob.py:102
msgid "Completed"
msgstr "Færdig"
#: ../../po/../src/virtManager/console.py:206
msgid "Press Ctrl+Alt to release pointer."
msgstr "Tryk Ctrl+Alt for at frigive pegeren."
#: ../../po/../src/virtManager/console.py:214
msgid "Pointer grabbed"
msgstr "Peger fanget"
#: ../../po/../src/virtManager/console.py:215
msgid ""
"The mouse pointer has been restricted to the virtual console window. To "
"release the pointer press the key pair Ctrl+Alt"
msgstr ""
"Musepegeren er blevet begrænset til det virtuelle konsolvindue. For at "
"frigive pegeren kan du trykke taste-parret Ctrl+Alt"
#: ../../po/../src/virtManager/console.py:218
msgid "Do not show this notification in the future"
msgstr ""
#: ../../po/../src/virtManager/console.py:299
#: ../../po/../src/virtManager/console.py:384
msgid "Guest not running"
msgstr ""
#: ../../po/../src/virtManager/console.py:302
msgid "Guest has crashed"
msgstr ""
#: ../../po/../src/virtManager/console.py:313
msgid ""
"TCP/IP error: VNC connection to hypervisor host got refused or disconnected!"
msgstr ""
#: ../../po/../src/virtManager/console.py:394
msgid "Console not configured for guest"
msgstr ""
#: ../../po/../src/virtManager/console.py:402
msgid "Console not supported for guest"
msgstr ""
#: ../../po/../src/virtManager/console.py:406
msgid "Console is not yet active for guest"
msgstr ""
#: ../../po/../src/virtManager/console.py:410
msgid "Connecting to console for guest"
msgstr ""
#: ../../po/../src/virtManager/console.py:443
msgid "Unsupported console authentication type"
msgstr ""
#. If someone feels kind they could extend this code to allow
#. user to choose what image format they'd like to save in....
#: ../../po/../src/virtManager/console.py:477
msgid "Save Virtual Machine Screenshot"
msgstr "Gem skærmdumper for virtuel maskine"
#: ../../po/../src/virtManager/console.py:506
#, python-format
msgid ""
"The screenshot has been saved to:\n"
"%s"
msgstr ""
"Skærmdumpet er gemt i:\n"
"%s"
#: ../../po/../src/virtManager/console.py:507
msgid "Screenshot saved"
msgstr "Skærmdump gemt"
#: ../../po/../src/virtManager/console.py:647
msgid "paused"
msgstr "stoppet"
#: ../../po/../src/virtManager/console.py:658
msgid "Console not available while paused"
msgstr ""
#: ../../po/../src/virtManager/details.py:466
msgid "Xen Mouse"
msgstr ""
#: ../../po/../src/virtManager/details.py:468
msgid "PS/2 Mouse"
msgstr ""
#: ../../po/../src/virtManager/details.py:473
msgid "Absolute Movement"
msgstr ""
#: ../../po/../src/virtManager/details.py:475
msgid "Relative Movement"
msgstr ""
#: ../../po/../src/virtManager/details.py:696
msgid "Tablet"
msgstr ""
#: ../../po/../src/virtManager/details.py:698
#, fuzzy
msgid "Mouse"
msgstr "Stop"
#: ../../po/../src/virtManager/host.py:132
msgid "Creating new networks on remote connections is not yet supported"
msgstr ""
#: ../../po/../src/virtManager/host.py:215
msgid "On boot"
msgstr ""
#: ../../po/../src/virtManager/host.py:218
msgid "Never"
msgstr ""
#: ../../po/../src/virtManager/domain.py:405
msgid "Paused"
msgstr "Stoppet"
#: ../../po/../src/virtManager/domain.py:409
msgid "Shutoff"
msgstr "Lukker ned"
#: ../../po/../src/virtManager/domain.py:411
msgid "Crashed"
msgstr "Gået ned"
#: ../../po/../src/virtManager/domain.py:413
msgid "Unknown status code"
msgstr "Ukendt statuskode"
#. get filename
#: ../../po/../src/virtManager/manager.py:276
msgid "Restore Virtual Machine"
msgstr "Genetablér virtuel maskine"
#: ../../po/../src/virtManager/manager.py:292
msgid "Restoring Virtual Machine"
msgstr "Genetablerer virtuel maskine"
#: ../../po/../src/virtManager/manager.py:299
#, python-format
msgid "The file '%s' does not appear to be a valid saved machine image"
msgstr "Filen '%s' ser ikke ud til at være et gyldigt gemt maskinaftryk"
#: ../../po/../src/virtManager/manager.py:327
#, python-format
msgid "Error restoring domain '%s'. Is the domain already running?"
msgstr "Fejl ved genetablering af domæne '%s'. Kører domænet allerede?"
#: ../../po/../src/virtManager/manager.py:680
msgid "Creating new guests on remote connections is not yet supported"
msgstr ""
#: ../../po/../src/virtManager/manager.py:690
#, fuzzy, python-format
msgid "This will permanently delete the connection \"%s\", are you sure?"
msgstr ""
"Dette vil øjeblikkeligt ødelægge den virtuelle maskine og kan ødelægge dens "
"diskaftryk. Er du sikker?"
#: ../../po/../src/virtManager/manager.py:708
#, python-format
msgid "This will permanently delete the vm \"%s,\" are you sure?"
msgstr ""
#: ../../po/../src/virtManager/manager.py:739
msgid "ID"
msgstr "ID"
#: ../../po/../src/virtManager/manager.py:742
msgid "VCPUs"
msgstr "VCPU'er"
#: ../../po/../src/virtManager/manager.py:986
msgid ""
"Unable to open a connection to the Xen hypervisor/daemon.\n"
"\n"
msgstr ""
"Kunne ikke åbne en forbindelse til Xen hypervisor/dæmon.\n"
"\n"
#: ../../po/../src/virtManager/manager.py:987
#: ../../po/../src/virtManager/manager.py:995
msgid "Verify that:\n"
msgstr "Efterprøv at:\n"
#: ../../po/../src/virtManager/manager.py:988
msgid " - A Xen host kernel was booted\n"
msgstr " - En Xen-værtskerne blev startet op\n"
#: ../../po/../src/virtManager/manager.py:989
msgid " - The Xen service has been started\n"
msgstr " - Xen-tjenesten er startet\n"
#: ../../po/../src/virtManager/manager.py:994
#, fuzzy
msgid ""
"Unable to open a connection to the libvirt management daemon.\n"
"\n"
msgstr ""
"Kunne ikke åbne en forbindelse til Xen hypervisor/dæmon.\n"
"\n"
#: ../../po/../src/virtManager/manager.py:996
#, fuzzy
msgid " - The 'libvirtd' daemon has been started\n"
msgstr " - Xen-tjenesten er startet\n"
#: ../../po/../src/virtManager/manager.py:998
msgid "Virtual Machine Manager Connection Failure"
msgstr "Fejl ved forbindelse til virtuel maskinhåndtering"
#~ msgid "Unable to open connection to hypervisor '%s'"
#~ msgstr "Kan ikke åbne forbindelse til hypervisor '%s'"
#, fuzzy
#~ msgid "Connected"
#~ msgstr "_Tilslut"
#~ msgid "New machine..."
#~ msgstr "Ny maskine..."
#~ msgid "_Host:"
#~ msgstr "_Vært:"
#~ msgid "_Local host"
#~ msgstr "_Lokal vært"
#~ msgid "_Remote host"
#~ msgstr "Xen _fjernvært"
#~ msgid "Invalid FV media address"
#~ msgstr "Ugyldig FV-media-adresse"
#~ msgid "Invalid PV media address"
#~ msgstr "Ugyldig PV-media-adresse"
#~ msgid "Invalid system name"
#~ msgstr "Ugyldigt systemnavn"
#~ msgid "Invalid memory setting"
#~ msgstr "Ugyldig hukommelsesindstilling"
#~ msgid "System name must be non-blank and less than 50 characters"
#~ msgstr "Systemnavnet skal være ikke-blankt og kortere end 50 tegn"
#~ msgid "System name may contain alphanumeric and '_' characters only"
#~ msgstr "Systemnavn må kun indeholde alfanumeriske og '_' tegn"
#~ msgid "Hardware Support Required"
#~ msgstr "Maskinel-understøttelse kræves"
#~ msgid ""
#~ "Your hardware does not appear to support full virtualization. Only "
#~ "paravirtualized guests will be available on this hardware."
#~ msgstr ""
#~ "Dit maskinel synes ikke at støtte fuld virtualisering. Kun "
#~ "paravirtualiserede gæster vil være tilgængelige for dette udstyr."
#~ msgid "ISO Path Required"
#~ msgstr "ISO-søgesti kræves"
#~ msgid "You must specify an ISO location for the guest installation"
#~ msgstr "Du skal angive et ISO-sted for gæsteinstallationen"
#~ msgid ""
#~ "You must specify a valid path to the ISO image for guest installation"
#~ msgstr ""
#~ "Du skal angive en gyldig søgesti til ISO-aftrykket for gæsteinstallationen"
#~ msgid "You must select the CDROM install media for guest installation"
#~ msgstr "Du skal vælge CDROM-installationsmedia for installation af gæst"
#~ msgid "URL Required"
#~ msgstr "URL kræves"
#~ msgid "You must specify a URL for the install image for the guest install"
#~ msgstr ""
#~ "Du skal angive en URL for installationsaftrykket for gæsteinstallationen"
#~ msgid "_Read only connection"
#~ msgstr "Kun _læsbar forbindelse"
|