~canonical-foundations/subiquity/translations-export

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
# English (United Kingdom) translation for subiquity
# Copyright (c) 2019 Rosetta Contributors and Canonical Ltd 2019
# This file is distributed under the same license as the subiquity package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
#
msgid ""
msgstr ""
"Project-Id-Version: subiquity\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-09-06 15:13-0600\n"
"PO-Revision-Date: 2023-09-08 19:33+0000\n"
"Last-Translator: Pavel Borecki <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2023-09-09 07:30+0000\n"
"X-Generator: Launchpad (build 32eed776db4e1fe74faaa77122cde19862d565ac)\n"
"Language: \n"

#: ../subiquity/client/client.py:58
msgid ""
"Installer shell session activated.\n"
"\n"
"This shell session is running inside the installer environment.  You\n"
"will be returned to the installer when this shell is exited, for\n"
"example by typing Control-D or 'exit'.\n"
"\n"
"Be aware that this is an ephemeral environment.  Changes to this\n"
"environment will not survive a reboot. If the install has started, the\n"
"installed system will be mounted at /target."
msgstr ""
"Installer shell session activated.\n"
"\n"
"This shell session is running inside the installer environment.  You\n"
"will be returned to the installer when this shell is exited, for\n"
"example by holding Ctrl + D or typing 'exit'.\n"
"\n"
"Be aware that this is an ephemeral environment: Changes to this\n"
"environment will not survive a reboot. If the install has started, the\n"
"installed system will be mounted at /target."

#: ../subiquity/client/client.py:214
msgid "yes"
msgstr "yes"

#: ../subiquity/client/client.py:215
msgid "no"
msgstr "no"

#: ../subiquity/client/client.py:217
msgid "Confirmation is required to continue."
msgstr "Confirmation is required to continue."

#: ../subiquity/client/client.py:218
msgid "Add 'autoinstall' to your kernel command line to avoid this"
msgstr "Add 'autoinstall' to your kernel command line to avoid this"

#: ../subiquity/client/client.py:220
msgid "Continue with autoinstall?"
msgstr "Continue with autoinstall?"

#: ../subiquity/client/controllers/ssh.py:79
msgid "Importing keys failed:"
msgstr "Importing keys failed:"

#: ../subiquity/client/controllers/ssh.py:85
msgid "ssh-keygen failed to show fingerprint of downloaded keys:"
msgstr "ssh-keygen failed to show fingerprint of downloaded keys:"

#: ../subiquity/common/filesystem/actions.py:162
#, python-brace-format
msgid "Cannot edit {selflabel} as it is part of the {cdtype} {cdname}."
msgstr "Cannot edit {selflabel} as it is part of the {cdtype} {cdname}."

#: ../subiquity/common/filesystem/actions.py:180
msgid "Cannot edit pre-existing RAIDs."
msgstr "Cannot edit pre-existing RAIDs."

#: ../subiquity/common/filesystem/actions.py:182
#, python-brace-format
msgid "Cannot edit {raidlabel} because it has partitions."
msgstr "Cannot edit {raidlabel} because it has partitions."

#: ../subiquity/common/filesystem/actions.py:192
msgid "Cannot edit pre-existing volume groups."
msgstr "Cannot edit pre-existing volume groups."

#: ../subiquity/common/filesystem/actions.py:194
#, python-brace-format
msgid "Cannot edit {vglabel} because it has logical volumes."
msgstr "Cannot edit {vglabel} because it has logical volumes."

#: ../subiquity/common/filesystem/actions.py:225
msgid "Primary partition limit reached"
msgstr "Dosažen limit počtu primárních oddílů"

#: ../subiquity/common/filesystem/actions.py:226
msgid "Unusable space"
msgstr "Nevyužitelný prostor"

#: ../subiquity/common/filesystem/actions.py:250
#, python-brace-format
msgid "Cannot remove {selflabel} from pre-existing {cdtype} {cdlabel}."
msgstr "Cannot remove {selflabel} from pre-existing {cdtype} {cdlabel}."

#: ../subiquity/common/filesystem/actions.py:262
#, python-brace-format
msgid ""
"Removing {selflabel} would leave the {cdtype} {cdlabel} with less than "
"{min_devices} devices."
msgstr ""
"Removing {selflabel} would leave the {cdtype} {cdlabel} with less than "
"{min_devices} devices."

#: ../subiquity/common/filesystem/actions.py:273
#, python-brace-format
msgid ""
"Removing {selflabel} would leave the {cdtype} {cdlabel} with no devices."
msgstr ""
"Removing {selflabel} would leave the {cdtype} {cdlabel} with no devices."

#: ../subiquity/common/filesystem/actions.py:291
#, python-brace-format
msgid "Cannot delete {selflabel} as it is part of the {cdtype} {cdname}."
msgstr "Cannot delete {selflabel} as it is part of the {cdtype} {cdname}."

#: ../subiquity/common/filesystem/actions.py:303
msgid ""
"Cannot delete a single partition from a device that already has partitions."
msgstr ""
"Cannot delete a single partition from a device that already has partitions."

#: ../subiquity/common/filesystem/actions.py:307
msgid "Cannot delete required bootloader partition"
msgstr "Cannot delete required bootloader partition"

#: ../subiquity/common/filesystem/actions.py:321
#, python-brace-format
msgid ""
"Cannot delete {devicelabel} as partition {partnum} is part of the {cdtype} "
"{cdname}."
msgstr ""
"Cannot delete {devicelabel} as partition {partnum} is part of the {cdtype} "
"{cdname}."

#: ../subiquity/common/filesystem/actions.py:331
#, python-brace-format
msgid ""
"Cannot delete {devicelabel} because it has {count} mounted partitions."
msgstr ""
"Cannot delete {devicelabel} because it has {count} mounted partitions."

#: ../subiquity/common/filesystem/actions.py:335
#, python-brace-format
msgid "Cannot delete {devicelabel} because it has 1 mounted partition."
msgstr "Cannot delete {devicelabel} because it has 1 mounted partition."

#: ../subiquity/common/filesystem/actions.py:345
msgid ""
"Cannot delete a single logical volume from a volume group that already has "
"logical volumes."
msgstr ""
"Cannot delete a single logical volume from a volume group that already has "
"logical volumes."

#. A pre-existing device such as a partition or RAID
#: ../subiquity/common/filesystem/labels.py:37
msgid "existing"
msgstr "existing"

#. A newly created device such as a partition or RAID
#: ../subiquity/common/filesystem/labels.py:40
msgid "new"
msgstr "new"

#: ../subiquity/common/filesystem/labels.py:64
msgid "PReP"
msgstr "PReP"

#. boot loader partition
#: ../subiquity/common/filesystem/labels.py:68
#: ../subiquity/common/filesystem/labels.py:82
msgid "configured"
msgstr "configured"

#. boot loader partition
#: ../subiquity/common/filesystem/labels.py:71
#: ../subiquity/common/filesystem/labels.py:84
msgid "unconfigured"
msgstr "unconfigured"

#: ../subiquity/common/filesystem/labels.py:74
msgid "primary ESP"
msgstr "primary ESP"

#: ../subiquity/common/filesystem/labels.py:76
msgid "backup ESP"
msgstr "backup ESP"

#: ../subiquity/common/filesystem/labels.py:78
msgid "unused ESP"
msgstr "unused ESP"

#: ../subiquity/common/filesystem/labels.py:85
msgid "BIOS grub spacer"
msgstr "BIOS grub spacer"

#. extended partition
#: ../subiquity/common/filesystem/labels.py:88
msgid "extended"
msgstr "extended"

#. logical partition
#: ../subiquity/common/filesystem/labels.py:92
msgid "logical"
msgstr "logical"

#. Flag for a LVM volume group
#: ../subiquity/common/filesystem/labels.py:103
msgid "encrypted"
msgstr "encrypted"

#: ../subiquity/common/filesystem/labels.py:119
msgid "multipath device"
msgstr "multipath device"

#: ../subiquity/common/filesystem/labels.py:120
msgid "local disk"
msgstr "local disk"

#: ../subiquity/common/filesystem/labels.py:125
#, python-brace-format
msgid "partition of {device}"
msgstr "partition of {device}"

#: ../subiquity/common/filesystem/labels.py:138
msgid "software"
msgstr "software"

#: ../subiquity/common/filesystem/labels.py:139
#, python-brace-format
msgid "{type} RAID {level}"
msgstr "{type} RAID {level}"

#: ../subiquity/common/filesystem/labels.py:144
msgid "LVM volume group"
msgstr "LVM volume group"

#: ../subiquity/common/filesystem/labels.py:149
msgid "LVM logical volume"
msgstr "LVM Logical Volume"

#. This is only used in text "cannot add partition {desc}"... bit hackish.
#: ../subiquity/common/filesystem/labels.py:155
msgid "to gap"
msgstr ""

#: ../subiquity/common/filesystem/labels.py:160
msgid "zpool"
msgstr "ZFS fond"

#: ../subiquity/common/filesystem/labels.py:198
#: ../subiquity/ui/views/filesystem/guided.py:112
#, python-brace-format
msgid "partition {number}"
msgstr "partition {number}"

#: ../subiquity/common/filesystem/labels.py:200
#, python-brace-format
msgid "partition {number} of {device}"
msgstr "partition {number} of {device}"

#: ../subiquity/common/filesystem/labels.py:207
msgid "free space"
msgstr "free space"

#: ../subiquity/common/filesystem/labels.py:217
#, python-brace-format
msgid "{component_name} of {desc} {name}"
msgstr "{component_name} of {desc} {name}"

#: ../subiquity/common/filesystem/labels.py:224
#, python-brace-format
msgid "already formatted as {fstype}"
msgstr "already formatted as {fstype}"

#: ../subiquity/common/filesystem/labels.py:226
#, python-brace-format
msgid "to be reformatted as {fstype}"
msgstr "to be reformatted as {fstype}"

#: ../subiquity/common/filesystem/labels.py:228
#, python-brace-format
msgid "to be formatted as {fstype}"
msgstr "to be formatted as {fstype}"

#. A filesytem
#: ../subiquity/common/filesystem/labels.py:234
#, python-brace-format
msgid "mounted at {path}"
msgstr "mounted at {path}"

#: ../subiquity/common/filesystem/labels.py:236
msgid "in use"
msgstr "používáno"

#. A filesytem
#: ../subiquity/common/filesystem/labels.py:239
msgid "not mounted"
msgstr "not mounted"

#. A filesytem that cannot be mounted (i.e. swap)
#. is used or unused
#: ../subiquity/common/filesystem/labels.py:244
#: ../subiquity/common/filesystem/labels.py:254
msgid "unused"
msgstr "unused"

#. A filesytem that cannot be mounted (i.e. swap)
#. is used or unused
#: ../subiquity/common/filesystem/labels.py:248
msgid "used"
msgstr "used"

#: ../subiquity/common/filesystem/labels.py:283
#, python-brace-format
msgid "container for {devices}"
msgstr "container for {devices}"

#: ../subiquity/common/types.py:39
msgid "Block device probe failure"
msgstr "Block device probe failure"

#: ../subiquity/common/types.py:40
msgid "Disk probe failure"
msgstr "Disk probe failure"

#: ../subiquity/common/types.py:41
msgid "Install failure"
msgstr "Install failure"

#: ../subiquity/common/types.py:42
msgid "Installer crash"
msgstr "Installer crash"

#: ../subiquity/common/types.py:43
msgid "Network error"
msgstr "Network error"

#: ../subiquity/common/types.py:44
msgid "Network client error"
msgstr "Network client error"

#: ../subiquity/common/types.py:45
msgid "Server request failure"
msgstr "Server request failure"

#: ../subiquity/common/types.py:46
msgid "Unknown error"
msgstr "Unknown error"

#: ../subiquitycore/controllers/network.py:230
msgid "autoconfiguration failed"
msgstr "autoconfiguration failed"

#: ../subiquitycore/ssh.py:63
msgid "The host key fingerprints are:\n"
msgstr "The host key fingerprints are:\n"

#: ../subiquitycore/ssh.py:72
#, python-brace-format
msgid ""
"The {keytype} host key fingerprint is:\n"
"    {fingerprint}\n"
msgstr ""
"The {keytype} host key fingerprint is:\n"
"    {fingerprint}\n"

#: ../subiquitycore/ui/form.py:270
#, python-brace-format
msgid "{desc} do not match"
msgstr "{desc} do not match"

#: ../subiquitycore/ui/form.py:379
msgid ", or "
msgstr ", or "

#: ../subiquitycore/ui/form.py:381
msgid " or "
msgstr " or "

#: ../subiquitycore/ui/form.py:385
#, python-brace-format
msgid "This field must be a {schemes} URL."
msgstr "This field must be a {schemes} URL."

#: ../subiquitycore/ui/form.py:458 ../subiquitycore/ui/views/network.py:353
#: ../subiquity/ui/views/filesystem/filesystem.py:509
#: ../subiquity/ui/views/snaplist.py:504
msgid "Done"
msgstr "Done"

#: ../subiquitycore/ui/form.py:459 ../subiquitycore/ui/utils.py:372
#: ../subiquitycore/ui/views/network_configure_wlan_interface.py:18
#: ../subiquity/ui/views/filesystem/delete.py:97
#: ../subiquity/ui/views/filesystem/delete.py:164
#: ../subiquity/ui/views/keyboard.py:91 ../subiquity/ui/views/keyboard.py:351
#: ../subiquity/ui/views/mirror.py:228 ../subiquity/ui/views/snaplist.py:289
#: ../subiquity/ui/views/ssh.py:141
msgid "Cancel"
msgstr "Cancel"

#: ../subiquitycore/ui/interactive.py:103 ../subiquity/ui/views/keyboard.py:229
#: ../subiquity/ui/views/ssh.py:168
msgid "Yes"
msgstr "Yes"

#: ../subiquitycore/ui/interactive.py:103
#: ../subiquity/ui/views/installprogress.py:247
#: ../subiquity/ui/views/keyboard.py:230 ../subiquity/ui/views/ssh.py:72
#: ../subiquity/ui/views/ssh.py:169
msgid "No"
msgstr "No"

#: ../subiquitycore/ui/utils.py:341
#: ../subiquitycore/ui/views/network_configure_manual_interface.py:308
#: ../subiquity/ui/views/error.py:37
#: ../subiquity/ui/views/filesystem/disk_info.py:54
#: ../subiquity/ui/views/filesystem/filesystem.py:217
#: ../subiquity/ui/views/help.py:38 ../subiquity/ui/views/installprogress.py:72
#: ../subiquity/ui/views/snaplist.py:344 ../subiquity/ui/views/welcome.py:117
msgid "Close"
msgstr "Close"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:74
#: ../subiquitycore/ui/views/network_configure_manual_interface.py:144
#: ../subiquitycore/ui/views/network_configure_manual_interface.py:370
#: ../subiquitycore/ui/views/network_configure_manual_interface.py:412
#: ../subiquitycore/ui/views/network_configure_wlan_interface.py:35
#: ../subiquity/ui/views/filesystem/lvm.py:159
#: ../subiquity/ui/views/filesystem/partition.py:436
#: ../subiquity/ui/views/filesystem/raid.py:137
msgid "Save"
msgstr "Save"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:76
msgid "Subnet:"
msgstr "Subnet:"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:77
msgid "Address:"
msgstr "Address:"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:78
msgid "Gateway:"
msgstr "Gateway:"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:80
msgid "Name servers:"
msgstr "Name servers:"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:80
msgid "IP addresses, comma separated"
msgstr "IP addresses, comma separated"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:83
msgid "Search domains:"
msgstr "Search domains:"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:83
msgid "Domains, comma separated"
msgstr "Domains, comma separated"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:93
#, python-brace-format
msgid "should be in CIDR form ({example})"
msgstr "should be in CIDR form ({example})"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:105
#, python-brace-format
msgid "'{address}' is not contained in '{subnet}'"
msgstr "'{address}' is not contained in '{subnet}'"

#. A choice for how to configure a network interface
#: ../subiquitycore/ui/views/network_configure_manual_interface.py:135
msgid "Automatic (DHCP)"
msgstr "Automatic (DHCP)"

#. A choice for how to configure a network interface
#: ../subiquitycore/ui/views/network_configure_manual_interface.py:137
msgid "Manual"
msgstr "Manual"

#. A choice for how to configure a network interface
#: ../subiquitycore/ui/views/network_configure_manual_interface.py:139
msgid "Disabled"
msgstr "Disabled"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:155
#, python-brace-format
msgid "IPv{v} Method: "
msgstr "IPv{v} Method: "

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:255
#: ../subiquitycore/ui/views/network_configure_manual_interface.py:397
#: ../subiquity/ui/views/filesystem/lvm.py:144
#: ../subiquity/ui/views/filesystem/partition.py:422
#: ../subiquity/ui/views/filesystem/raid.py:121
msgid "Create"
msgstr "Create"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:262
msgid "VLAN ID:"
msgstr "VLAN ID:"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:270
msgid "VLAN ID must be between 1 and 4095"
msgstr "VLAN ID must be between 1 and 4095"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:276
#, python-brace-format
msgid "{netdev} already exists"
msgstr "{netdev} already exists"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:287
msgid "Add a VLAN tag"
msgstr "Add a VLAN tag"

#. {device} is the name of a network device
#: ../subiquitycore/ui/views/network_configure_manual_interface.py:311
#: ../subiquity/ui/views/filesystem/disk_info.py:56
#, python-brace-format
msgid "Info for {device}"
msgstr "Info for {device}"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:363
#: ../subiquity/ui/views/filesystem/lvm.py:76
#: ../subiquity/ui/views/filesystem/raid.py:83
msgid "Name:"
msgstr "Name:"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:364
msgid "Devices: "
msgstr "Devices: "

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:365
msgid "Bond mode:"
msgstr "Bond mode:"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:367
msgid "XMIT hash policy:"
msgstr "XMIT hash policy:"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:369
msgid "LACP rate:"
msgstr "LACP rate:"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:381
#, python-brace-format
msgid "There is already a network device named \"{netdev}\""
msgstr "There is already a network device named \"{netdev}\""

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:385
msgid "Name cannot be empty"
msgstr "Name cannot be empty"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:387
msgid "Name cannot be more than 16 characters long"
msgstr "Name cannot be more than 16 characters long"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:396
#: ../subiquitycore/ui/views/network.py:280
msgid "Create bond"
msgstr "Create bond"

#: ../subiquitycore/ui/views/network_configure_manual_interface.py:411
msgid "Edit bond"
msgstr "Edit bond"

#: ../subiquitycore/ui/views/network_configure_wlan_interface.py:23
msgid "Select a network"
msgstr "Select a network"

#: ../subiquitycore/ui/views/network_configure_wlan_interface.py:54
#, python-brace-format
msgid "Network interface {nic} WIFI configuration"
msgstr "Network interface {nic} WIFI configuration"

#: ../subiquitycore/ui/views/network.py:110
#, python-brace-format
msgid "VLAN {id} on interface {link}"
msgstr "VLAN {id} on interface {link}"

#: ../subiquitycore/ui/views/network.py:114
#, python-brace-format
msgid "bond master for {interfaces}"
msgstr "bond master for {interfaces}"

#: ../subiquitycore/ui/views/network.py:139
#, python-brace-format
msgid "ssid: {ssid}"
msgstr "ssid: {ssid}"

#: ../subiquitycore/ui/views/network.py:141
#: ../subiquitycore/ui/views/network.py:143
msgid "not connected"
msgstr "not connected"

#: ../subiquitycore/ui/views/network.py:146
#, python-brace-format
msgid "enslaved to {device}"
msgstr "enslaved to {device}"

#: ../subiquitycore/ui/views/network.py:171
msgid "timed out"
msgstr "timed out"

#: ../subiquitycore/ui/views/network.py:177
msgid "static"
msgstr "static"

#: ../subiquitycore/ui/views/network.py:185
msgid "disabled"
msgstr "disabled"

#: ../subiquitycore/ui/views/network.py:211
msgid ""
"A wifi device was detected but the necessary support packages were not\n"
"available.\n"
msgstr ""
"A wifi device was detected but the necessary support packages were not\n"
"available.\n"

#: ../subiquitycore/ui/views/network.py:217
msgid "Wifi support packages are being installed.\n"
msgstr "Wifi support packages are being installed.\n"

#: ../subiquitycore/ui/views/network.py:222
msgid "Wifi support packages failed to install. Please check the logs.\n"
msgstr "Wifi support packages failed to install. Please check the logs.\n"

#: ../subiquitycore/ui/views/network.py:227
msgid "Wifi support packages will be installed in the target system.\n"
msgstr "Wifi support packages will be installed in the target system.\n"

#: ../subiquitycore/ui/views/network.py:235
msgid "Network connections"
msgstr "Network connections"

#: ../subiquitycore/ui/views/network.py:237
msgid ""
"Configure at least one interface this server can use to talk to other "
"machines, and which preferably provides sufficient access for updates."
msgstr ""
"Configure at least one interface this server can use to talk to other "
"machines, and which preferably provides sufficient access for updates."

#. See _route_watcher
#: ../subiquitycore/ui/views/network.py:292
#: ../subiquity/ui/views/filesystem/filesystem.py:514
#: ../subiquity/ui/views/filesystem/guided.py:252
#: ../subiquity/ui/views/filesystem/guided.py:356
#: ../subiquity/ui/views/filesystem/guided.py:366
#: ../subiquity/ui/views/filesystem/probing.py:47
#: ../subiquity/ui/views/filesystem/probing.py:77
#: ../subiquity/ui/views/keyboard.py:369 ../subiquity/ui/views/mirror.py:69
#: ../subiquity/ui/views/proxy.py:39 ../subiquity/ui/views/refresh.py:148
#: ../subiquity/ui/views/refresh.py:176 ../subiquity/ui/views/refresh.py:208
#: ../subiquity/ui/views/refresh.py:279 ../subiquity/ui/views/snaplist.py:505
#: ../subiquity/ui/views/ssh.py:83 ../subiquity/ui/views/welcome.py:94
#: ../subiquity/ui/views/zdev.py:163
msgid "Back"
msgstr "Back"

#: ../subiquitycore/ui/views/network.py:355
msgid "Continue without network"
msgstr "Continue without network"

#: ../subiquitycore/ui/views/network.py:370
msgid "Applying changes"
msgstr "Applying changes"

#. for translators: this is a description of a RAID level
#: ../subiquity/models/filesystem.py:281
msgid "0 (striped)"
msgstr "0 (striped)"

#. for translators: this is a description of a RAID level
#: ../subiquity/models/filesystem.py:283
msgid "1 (mirrored)"
msgstr "1 (mirrored)"

#: ../subiquity/models/filesystem.py:284
msgid "5"
msgstr "5"

#: ../subiquity/models/filesystem.py:285
msgid "6"
msgstr "6"

#: ../subiquity/models/filesystem.py:286
msgid "10"
msgstr "10"

#: ../subiquity/models/filesystem.py:287
msgid "Container"
msgstr "Container"

#. Attempting to convert input to a size
#: ../subiquity/models/filesystem.py:322
msgid "input cannot be empty"
msgstr "input cannot be empty"

#. Attempting to convert input to a size
#: ../subiquity/models/filesystem.py:334 ../subiquity/models/filesystem.py:347
msgid "{input!r} is not valid input"
msgstr "{input!r} is not valid input"

#: ../subiquity/server/controllers/filesystem.py:99
#: ../subiquity/ui/views/filesystem/guided.py:149
#, python-brace-format
msgid ""
"TPM backed full-disk encryption is not available on this device (the reason "
"given was \"{reason}\")."
msgstr ""
"Šifrování celého disku, založené na TPM, není na tomto zařízení k dispozici "
"(uváděný důvod byl „{reason}“)."

#: ../subiquity/server/controllers/filesystem.py:104
msgid ""
"TPM backed full-disk encryption is not yet supported when the target spans "
"multiple volumes."
msgstr ""
"Šifrování celého disku založené na TPM zatím ještě není podporováno pokud se "
"cíl rozkládá napříč vícero svazky."

#: ../subiquity/server/controllers/filesystem.py:109
msgid ""
"TPM backed full-disk encryption is only supported with a target volume "
"partition table of GPT."
msgstr ""
"Šifrování celého disku založené na TPM je podporováno pouze v případě, že "
"cílový svazek má tabulku oddílů typu GPT."

#: ../subiquity/server/controllers/filesystem.py:353
msgid "TPM backed full-disk encryption has been disabled"
msgstr "Šifrování celého disku založené na TPM bylo vypnuto"

#: ../subiquity/ui/mount.py:60
msgid "Other"
msgstr "Other"

#: ../subiquity/ui/mount.py:62
msgid "Leave unmounted"
msgstr "Leave unmounted"

#: ../subiquity/ui/views/error.py:45 ../subiquity/ui/views/error.py:50
msgid ""
"\n"
"Sorry, there was a problem examining the storage devices on this system.\n"
msgstr ""
"\n"
"Sorry, there was a problem examining the storage devices on this system.\n"

#: ../subiquity/ui/views/error.py:55
msgid ""
"\n"
"Sorry, there was a problem completing the installation.\n"
msgstr ""
"\n"
"Sorry, there was a problem completing the installation.\n"

#: ../subiquity/ui/views/error.py:60
msgid ""
"\n"
"Sorry, there was a problem applying the network configuration.\n"
msgstr ""
"\n"
"Sorry, there was a problem applying the network configuration.\n"

#: ../subiquity/ui/views/error.py:65
msgid ""
"\n"
"Sorry, the installer has encountered an internal error.\n"
msgstr ""
"\n"
"Sorry, the installer has encountered an internal error.\n"

#: ../subiquity/ui/views/error.py:70
msgid ""
"\n"
"Sorry, the installer has restarted because of an error.\n"
msgstr ""
"\n"
"Sorry, the installer has restarted because of an error.\n"

#: ../subiquity/ui/views/error.py:75
msgid ""
"\n"
"Sorry, an unknown error occurred.\n"
msgstr ""
"\n"
"Sorry, an unknown error occurred.\n"

#: ../subiquity/ui/views/error.py:84
msgid ""
"\n"
"Information is being collected from the system that will help the\n"
"developers diagnose the report.\n"
msgstr ""
"\n"
"Information is being collected from the system that will help the\n"
"developers diagnose the report.\n"

#: ../subiquity/ui/views/error.py:93
msgid ""
"\n"
"Loading report...\n"
msgstr ""
"\n"
"Loading report...\n"

#: ../subiquity/ui/views/error.py:101
msgid ""
"\n"
"Collecting information from the system failed. See the files in\n"
"/var/log/installer for more.\n"
msgstr ""
"\n"
"Collecting information from the system failed. See the files in\n"
"/var/log/installer for more.\n"

#: ../subiquity/ui/views/error.py:110
msgid ""
"\n"
"Loading the report failed. See the files in /var/log/installer for more.\n"
msgstr ""
"\n"
"Loading the report failed. See the files in /var/log/installer for more.\n"

#: ../subiquity/ui/views/error.py:121
msgid ""
"\n"
"You can continue and the installer will just present the disks present\n"
"in the system and not other block devices, or you may be able to fix\n"
"the issue by switching to a shell and reconfiguring the system's block\n"
"devices manually.\n"
msgstr ""
"\n"
"You can continue and the installer will just present the disks present\n"
"in the system and not other block devices, or you may be able to fix\n"
"the issue by switching to a shell and reconfiguring the systems block\n"
"devices manually.\n"

#: ../subiquity/ui/views/error.py:132
msgid ""
"\n"
"You may be able to fix the issue by switching to a shell and\n"
"reconfiguring the system's block devices manually.\n"
msgstr ""
"\n"
"You may be able to fix the issue by switching to a shell and\n"
"reconfiguring the systems block devices manually.\n"

#: ../subiquity/ui/views/error.py:141
msgid ""
"\n"
"You can continue with the installation but it will be assumed the network\n"
"is not functional.\n"
msgstr ""
"\n"
"You can continue with the installation but it will be assumed the network\n"
"is not functional.\n"

#: ../subiquity/ui/views/error.py:150
msgid ""
"\n"
"You can continue or restart the installer.\n"
msgstr ""
"\n"
"You can continue or restart the installer.\n"

#: ../subiquity/ui/views/error.py:158
msgid ""
"\n"
"Do you want to try starting the installation again?\n"
msgstr ""
"\n"
"Do you want to try starting the installation again?\n"

#: ../subiquity/ui/views/error.py:165
msgid "Select continue to try the installation again."
msgstr "Select continue to try the installation again."

#: ../subiquity/ui/views/error.py:173
msgid ""
"\n"
"If you want to help improve the installer, you can send an error report.\n"
msgstr ""
"\n"
"If you want to help improve the installer, you can send an error report.\n"

#: ../subiquity/ui/views/error.py:179
msgid ""
"\n"
"The install media checksum verification failed.  It's possible that this "
"crash\n"
"is related to that checksum failure.  Consider verifying the install media "
"and\n"
"retrying the install.\n"
msgstr ""
"\n"
"Ověření kontrolního součtu instalačního média se nezdařilo. je možné, že\n"
"tento pád souvisí s nezdarem kontrolního součtu. Zvažte ověření "
"instalačního\n"
"média o opětovný pokus o instalaci.\n"

#: ../subiquity/ui/views/error.py:203
msgid "Cancel upload"
msgstr "Cancel upload"

#: ../subiquity/ui/views/error.py:204
msgid "Close report"
msgstr "Close report"

#: ../subiquity/ui/views/error.py:205
#: ../subiquity/ui/views/installprogress.py:55
#: ../subiquity/ui/views/installprogress.py:248
#: ../subiquity/ui/views/mirror.py:227 ../subiquity/ui/views/snaplist.py:386
#: ../subiquity/ui/views/snaplist.py:415 ../subiquity/ui/views/zdev.py:162
msgid "Continue"
msgstr "Continue"

#: ../subiquity/ui/views/error.py:206
#: ../subiquity/ui/views/installprogress.py:284
#: ../subiquity/ui/views/welcome.py:116
msgid "Switch to a shell"
msgstr "Switch to a shell"

#: ../subiquity/ui/views/error.py:207
msgid "Restart the installer"
msgstr "Restart the installer"

#: ../subiquity/ui/views/error.py:208
msgid "Send to Canonical"
msgstr "Send to Canonical"

#: ../subiquity/ui/views/error.py:209
msgid "Sent to Canonical"
msgstr "Sent to Canonical"

#: ../subiquity/ui/views/error.py:210
msgid "View full report"
msgstr "View full report"

#: ../subiquity/ui/views/error.py:280
msgid ""
"The error report has been saved to\n"
"\n"
"  {loc}\n"
"\n"
"on the filesystem with label {label!r}."
msgstr ""
"The error report has been saved to\n"
"\n"
"  {loc}\n"
"\n"
"on the filesystem with label {label!r}."

#: ../subiquity/ui/views/error.py:369
msgid "DATE"
msgstr "DATE"

#: ../subiquity/ui/views/error.py:370
msgid "KIND"
msgstr "KIND"

#: ../subiquity/ui/views/error.py:371
msgid "STATUS"
msgstr "STATUS"

#: ../subiquity/ui/views/error.py:384
msgid "Select an error report to view:"
msgstr "Select an error report to view:"

#: ../subiquity/ui/views/error.py:397
msgid "VIEWED"
msgstr "VIEWED"

#: ../subiquity/ui/views/error.py:398
msgid "UNVIEWED"
msgstr "UNVIEWED"

#: ../subiquity/ui/views/filesystem/compound.py:108
#, python-brace-format
msgid "formatted as {fstype}"
msgstr "formatted as {fstype}"

#: ../subiquity/ui/views/filesystem/compound.py:110
#, python-brace-format
msgid ", mounted at {path}"
msgstr ", mounted at {path}"

#: ../subiquity/ui/views/filesystem/compound.py:112
msgid ", not mounted"
msgstr ", not mounted"

#: ../subiquity/ui/views/filesystem/compound.py:114
#, python-brace-format
msgid "unused {device}"
msgstr "unused {device}"

#: ../subiquity/ui/views/filesystem/compound.py:197
msgid ""
"If you put all disks into RAIDs or LVM VGs, there will be nowhere to put the "
"boot partition."
msgstr ""
"If you put all disks into RAIDs or LVM VGs, there will be nowhere to put the "
"boot partition."

#: ../subiquity/ui/views/filesystem/delete.py:39
#, python-brace-format
msgid "Do you really want to delete the {desc} {label}?"
msgstr "Do you really want to delete the {desc} {label}?"

#: ../subiquity/ui/views/filesystem/delete.py:52
#: ../subiquity/ui/views/filesystem/delete.py:130
#, python-brace-format
msgid "It is formatted as {fstype} and mounted at {path}"
msgstr "It is formatted as {fstype} and mounted at {path}"

#: ../subiquity/ui/views/filesystem/delete.py:60
#: ../subiquity/ui/views/filesystem/delete.py:136
#, python-brace-format
msgid "It is formatted as {fstype} and not mounted."
msgstr "It is formatted as {fstype} and not mounted."

#: ../subiquity/ui/views/filesystem/delete.py:69
#, python-brace-format
msgid "It contains 1 logical volume"
msgid_plural "It contains {n} logical volumes"
msgstr[0] "It contains 1 logical volume"
msgstr[1] "It contains {n} logical volumes"

#: ../subiquity/ui/views/filesystem/delete.py:73
#, python-brace-format
msgid "It contains 1 partition"
msgid_plural "It contains {n} partitions"
msgstr[0] "It contains 1 partition"
msgstr[1] "It contains {n} partitions"

#: ../subiquity/ui/views/filesystem/delete.py:85
#, python-brace-format
msgid "It contains 1 volume."
msgid_plural "It contains {n} volumes."
msgstr[0] "It contains 1 volume."
msgstr[1] "It contains {n} volumes."

#: ../subiquity/ui/views/filesystem/delete.py:89
msgid "It is not formatted or mounted."
msgstr "It is not formatted or mounted."

#: ../subiquity/ui/views/filesystem/delete.py:91
msgid "Delete"
msgstr "Delete"

#: ../subiquity/ui/views/filesystem/delete.py:119
#, python-brace-format
msgid "Remove filesystem from {device}"
msgstr "Remove filesystem from {device}"

#: ../subiquity/ui/views/filesystem/delete.py:122
#, python-brace-format
msgid "Do you really want to remove the existing filesystem from {device}?"
msgstr "Do you really want to remove the existing filesystem from {device}?"

#: ../subiquity/ui/views/filesystem/delete.py:142
msgid "logical volumes"
msgstr "logical volumes"

#: ../subiquity/ui/views/filesystem/delete.py:144
msgid "partitions"
msgstr "partitions"

#. things is either "logical volumes" or "partitions"
#: ../subiquity/ui/views/filesystem/delete.py:146
#, python-brace-format
msgid "Remove all {things} from {obj}"
msgstr "Remove all {things} from {obj}"

#: ../subiquity/ui/views/filesystem/delete.py:150
#, python-brace-format
msgid "Do you really want to remove all {things} from {obj}?"
msgstr "Do you really want to remove all {things} from {obj}?"

#. XXX summarize partitions here?
#: ../subiquity/ui/views/filesystem/delete.py:157
msgid "Reformat"
msgstr "Reformat"

#: ../subiquity/ui/views/filesystem/filesystem.py:75
#, python-brace-format
msgid "existing {fstype}"
msgstr "existing {fstype}"

#: ../subiquity/ui/views/filesystem/filesystem.py:77
#, python-brace-format
msgid "new {fstype}"
msgstr "new {fstype}"

#: ../subiquity/ui/views/filesystem/filesystem.py:112
msgid "No disks or partitions mounted."
msgstr "No disks or partitions mounted."

#: ../subiquity/ui/views/filesystem/filesystem.py:141
msgid "MOUNT POINT"
msgstr "MOUNT POINT"

#: ../subiquity/ui/views/filesystem/filesystem.py:142
#: ../subiquity/ui/views/filesystem/filesystem.py:394
#: ../subiquity/ui/views/snaplist.py:175
msgid "SIZE"
msgstr "SIZE"

#: ../subiquity/ui/views/filesystem/filesystem.py:143
#: ../subiquity/ui/views/filesystem/filesystem.py:393
msgid "TYPE"
msgstr "TYPE"

#: ../subiquity/ui/views/filesystem/filesystem.py:144
msgid "DEVICE TYPE"
msgstr "DEVICE TYPE"

#: ../subiquity/ui/views/filesystem/filesystem.py:169
msgid "Unmount"
msgstr "Unmount"

#: ../subiquity/ui/views/filesystem/filesystem.py:250
msgid "No available devices"
msgstr "No available devices"

#: ../subiquity/ui/views/filesystem/filesystem.py:252
msgid "No used devices"
msgstr "No used devices"

#: ../subiquity/ui/views/filesystem/filesystem.py:317
#, python-brace-format
msgid "Remove from {device}"
msgstr "Remove from {device}"

#: ../subiquity/ui/views/filesystem/filesystem.py:324
msgid "Create Logical Volume"
msgstr "Create Logical Volume"

#: ../subiquity/ui/views/filesystem/filesystem.py:326
#, python-brace-format
msgid "Add {ptype} Partition"
msgstr "Add {ptype} Partition"

#: ../subiquity/ui/views/filesystem/filesystem.py:332
msgid "Stop Using As Boot Device"
msgstr "Stop Using As Boot Device"

#: ../subiquity/ui/views/filesystem/filesystem.py:336
msgid "Add As Another Boot Device"
msgstr "Add As Another Boot Device"

#: ../subiquity/ui/views/filesystem/filesystem.py:337
msgid "Use As Boot Device"
msgstr "Use As Boot Device"

#: ../subiquity/ui/views/filesystem/filesystem.py:392
msgid "DEVICE"
msgstr "DEVICE"

#: ../subiquity/ui/views/filesystem/filesystem.py:437
msgid "Storage configuration"
msgstr "Storage configuration"

#: ../subiquity/ui/views/filesystem/filesystem.py:448
msgid "Create software RAID (md)"
msgstr "Create software RAID (md)"

#: ../subiquity/ui/views/filesystem/filesystem.py:451
msgid "Create volume group (LVM)"
msgstr "Create volume group (LVM)"

#: ../subiquity/ui/views/filesystem/filesystem.py:458
msgid "FILE SYSTEM SUMMARY"
msgstr "FILE SYSTEM SUMMARY"

#: ../subiquity/ui/views/filesystem/filesystem.py:463
msgid "AVAILABLE DEVICES"
msgstr "AVAILABLE DEVICES"

#: ../subiquity/ui/views/filesystem/filesystem.py:470
msgid "USED DEVICES"
msgstr "USED DEVICES"

#: ../subiquity/ui/views/filesystem/filesystem.py:490
msgid "Mount a filesystem at /"
msgstr "Mount a filesystem at /"

#: ../subiquity/ui/views/filesystem/filesystem.py:492
msgid "Select a boot disk"
msgstr "Select a boot disk"

#: ../subiquity/ui/views/filesystem/filesystem.py:498
msgid "To continue you need to:"
msgstr "To continue you need to:"

#: ../subiquity/ui/views/filesystem/filesystem.py:513
msgid "Reset"
msgstr "Reset"

#: ../subiquity/ui/views/filesystem/guided.py:53
msgid "Configure a guided storage layout, or create a custom one:"
msgstr "Configure a guided storage layout, or create a custom one:"

#: ../subiquity/ui/views/filesystem/guided.py:57
#: ../subiquity/ui/views/filesystem/lvm.py:80
msgid "Passphrase:"
msgstr "Passphrase:"

#: ../subiquity/ui/views/filesystem/guided.py:58
#: ../subiquity/ui/views/filesystem/lvm.py:81
msgid "Confirm passphrase:"
msgstr "Confirm passphrase:"

#: ../subiquity/ui/views/filesystem/guided.py:62
msgid ""
"The key will be stored as ~/recovery-key.txt in the live system and will be "
"copied to /var/log/installer/ in the target system."
msgstr ""
"Klíč bude uložen jako ~/recovery-key.txt v systému, spuin the live system "
"and will be copied to /var/log/installer/ in the target system."

#: ../subiquity/ui/views/filesystem/guided.py:71
#: ../subiquity/ui/views/filesystem/lvm.py:122
msgid "Passphrase must be set"
msgstr "Passphrase must be set"

#: ../subiquity/ui/views/filesystem/guided.py:75
#: ../subiquity/ui/views/filesystem/lvm.py:129
msgid "Passphrases do not match"
msgstr "Passphrases do not match"

#: ../subiquity/ui/views/filesystem/guided.py:88
msgid "Encrypt the LVM group with LUKS"
msgstr "Encrypt the LVM group with LUKS"

#: ../subiquity/ui/views/filesystem/guided.py:139
msgid ""
"The entire disk will be encrypted and protected by the TPM. If this option "
"is deselected, the disk will be unencrypted and without any protection."
msgstr ""
"Celý disk bude šifrován a chráně prostřednictvím TPM modulu. Pokud výběr "
"této volby bude odebrán, disk bude nešifrován a bez jakékoli ochrany."

#: ../subiquity/ui/views/filesystem/guided.py:144
msgid "The entire disk will be encrypted and protected by the TPM."
msgstr "Celý disk bude zašifrován a chráněn TPM modulem."

#: ../subiquity/ui/views/filesystem/guided.py:174
msgid "Set up this disk as an LVM group"
msgstr "Set up this disk as an LVM group"

#: ../subiquity/ui/views/filesystem/guided.py:176
msgid "Full disk encryption with TPM"
msgstr "Šifrování celého disku prostřednictvím TPM"

#: ../subiquity/ui/views/filesystem/guided.py:248
msgid "Use an entire disk"
msgstr "Use an entire disk"

#: ../subiquity/ui/views/filesystem/guided.py:250
msgid "Custom storage layout"
msgstr "Custom storage layout"

#: ../subiquity/ui/views/filesystem/guided.py:266
msgid ""
"\n"
"\n"
"The \"Use an entire disk\" option installs Ubuntu onto the selected disk,\n"
"replacing any partitions and data already there.\n"
"\n"
"If the platform requires it, a bootloader partition is created on the disk.\n"
"\n"
"If you choose to use LVM, two additional partitions are then created,\n"
"one for /boot and one covering the rest of the disk. An LVM volume\n"
"group is created containing the large partition. A logical volume is\n"
"created for the root filesystem, sized using some simple heuristic. It\n"
"can easily be enlarged with standard LVM command line tools (or on the\n"
"next screen).\n"
"\n"
"You can also choose to encrypt LVM volume group. This will require\n"
"setting a passphrase, that one will need to type on every boot before\n"
"the system boots.\n"
"\n"
"If you do not choose to use LVM, a single partition is created covering the\n"
"rest of the disk which is then formatted as ext4 and mounted at /.\n"
"\n"
"In either case, you will still have a chance to review and modify the "
"results.\n"
"\n"
"If you choose to use a custom storage layout, no changes are made to the "
"disks\n"
"and you will have to, at a minimum, select a boot disk and mount a "
"filesystem\n"
"at /.\n"
"\n"
msgstr ""

#: ../subiquity/ui/views/filesystem/guided.py:298
msgid ""
"\n"
"Block probing did not discover any disks big enough to support guided "
"storage\n"
"configuration. Manual configuration may still be possible.\n"
msgstr ""
"\n"
"Block probing did not discover any disks big enough to support guided "
"storage\n"
"configuration. Manual configuration may still be possible.\n"

#: ../subiquity/ui/views/filesystem/guided.py:306
msgid ""
"\n"
"Block probing did not discover any disks. Unfortunately this means that\n"
"installation will not be possible.\n"
msgstr ""
"\n"
"Block probing did not discover any disks. Unfortunately, this means that\n"
"installation will not be possible.\n"

#: ../subiquity/ui/views/filesystem/guided.py:314
msgid "Guided storage configuration"
msgstr "Guided storage configuration"

#: ../subiquity/ui/views/filesystem/guided.py:342
msgid "Choose a disk to install to:"
msgstr "Zvolte disk na který nainstalovat:"

#: ../subiquity/ui/views/filesystem/guided.py:357
msgid "Cannot install core boot classic system"
msgstr "Nepodařilo se nainstalovat klasické zavádění core systému"

#: ../subiquity/ui/views/filesystem/guided.py:365
#: ../subiquity/ui/views/filesystem/partition.py:476
#: ../subiquity/ui/views/keyboard.py:90 ../subiquity/ui/views/keyboard.py:135
#: ../subiquity/ui/views/keyboard.py:350
msgid "OK"
msgstr "OK"

#: ../subiquity/ui/views/filesystem/guided.py:374
msgid "Help on guided storage configuration"
msgstr "Help on guided storage configuration"

#: ../subiquity/ui/views/filesystem/lvm.py:47
msgid ""
"The only characters permitted in the name of a volume group are a-z, A-Z, 0-"
"9, +, _, . and -"
msgstr ""
"The only characters permitted in the name of a volume group are a-z, A-Z, 0-"
"9, +, _, . and -"

#: ../subiquity/ui/views/filesystem/lvm.py:72
msgid "Passphrases"
msgstr "Passphrases"

#: ../subiquity/ui/views/filesystem/lvm.py:77
#: ../subiquity/ui/views/filesystem/raid.py:85
msgid "Devices:"
msgstr "Devices:"

#: ../subiquity/ui/views/filesystem/lvm.py:78
#: ../subiquity/ui/views/filesystem/raid.py:86
msgid "Size:"
msgstr "Size:"

#: ../subiquity/ui/views/filesystem/lvm.py:79
msgid "Create encrypted volume"
msgstr "Create encrypted volume"

#: ../subiquity/ui/views/filesystem/lvm.py:85
msgid "Also create a recovery key:"
msgstr "Také vytvořit záchranný klíč:"

#: ../subiquity/ui/views/filesystem/lvm.py:87
#, python-brace-format
msgid ""
"The key will be stored as ~/recovery-key-{name}.txt in the live system and "
"will be copied to /var/log/installer/ in the target system."
msgstr ""
"Klíč bude uložen jako ~/recovery-key-{name}.txt v systému, spuštěném z "
"instalačního média (live) a bude zkopírován do /var/log/installer/ do "
"cílového systému."

#: ../subiquity/ui/views/filesystem/lvm.py:104
msgid "Select at least one device to be part of the volume group."
msgstr "Select at least one device to be part of the volume group."

#: ../subiquity/ui/views/filesystem/lvm.py:109
msgid "The name of a volume group cannot be empty"
msgstr "The name of a volume group cannot be empty"

#: ../subiquity/ui/views/filesystem/lvm.py:111
msgid "The name of a volume group cannot start with a hyphen"
msgstr "The name of a volume group cannot start with a hyphen"

#: ../subiquity/ui/views/filesystem/lvm.py:113
#, python-brace-format
msgid "There is already a volume group named '{name}'"
msgstr "There is already a volume group named '{name}'"

#: ../subiquity/ui/views/filesystem/lvm.py:118
#, python-brace-format
msgid "{name} is not a valid name for a volume group"
msgstr "{name} is not a valid name for a volume group"

#: ../subiquity/ui/views/filesystem/lvm.py:143
msgid "Create LVM volume group"
msgstr "Create LVM volume group"

#: ../subiquity/ui/views/filesystem/lvm.py:158
#, python-brace-format
msgid "Edit volume group \"{name}\""
msgstr "Edit volume group \"{name}\""

#: ../subiquity/ui/views/filesystem/partition.py:75
msgid "Leave unformatted"
msgstr "Leave unformatted"

#: ../subiquity/ui/views/filesystem/partition.py:78
#, python-brace-format
msgid "Leave formatted as {fstype}"
msgstr "Leave formatted as {fstype}"

#: ../subiquity/ui/views/filesystem/partition.py:114
#, python-brace-format
msgid "Capped partition size at {size}"
msgstr "Capped partition size at {size}"

#: ../subiquity/ui/views/filesystem/partition.py:130
#, python-brace-format
msgid "Rounded size up to {size}"
msgstr "Rounded size up to {size}"

#: ../subiquity/ui/views/filesystem/partition.py:145
msgid ""
"The only characters permitted in the name of a logical volume are a-z, A-Z, "
"0-9, +, _, . and -"
msgstr ""
"The only characters permitted in the name of a logical volume are a-z, A-Z, "
"0-9, +, _, . and -"

#: ../subiquity/ui/views/filesystem/partition.py:181
#, python-brace-format
msgid "Size (max {size}):"
msgstr "Size (max {size}):"

#: ../subiquity/ui/views/filesystem/partition.py:217
msgid "Name: "
msgstr "Name: "

#: ../subiquity/ui/views/filesystem/partition.py:219
msgid "Format:"
msgstr "Format:"

#: ../subiquity/ui/views/filesystem/partition.py:220
msgid "Mount:"
msgstr "Mount:"

#: ../subiquity/ui/views/filesystem/partition.py:222
msgid "Use as swap"
msgstr "Use as swap"

#: ../subiquity/ui/views/filesystem/partition.py:222
msgid "Use this swap partition in the installed system."
msgstr "Use this swap partition in the installed system."

#: ../subiquity/ui/views/filesystem/partition.py:247
msgid "The name of a logical volume cannot be empty"
msgstr "The name of a logical volume cannot be empty"

#: ../subiquity/ui/views/filesystem/partition.py:249
msgid "The name of a logical volume cannot start with a hyphen"
msgstr "The name of a logical volume cannot start with a hyphen"

#: ../subiquity/ui/views/filesystem/partition.py:251
#, python-brace-format
msgid "A logical volume may not be called {name}"
msgstr "A logical volume may not be called {name}"

#: ../subiquity/ui/views/filesystem/partition.py:267
#, python-brace-format
msgid "The name of a logical volume may not contain \"{substring}\""
msgstr "The name of a logical volume may not contain \"{substring}\""

#: ../subiquity/ui/views/filesystem/partition.py:270
#, python-brace-format
msgid "There is already a logical volume named {name}."
msgstr "There is already a logical volume named {name}."

#: ../subiquity/ui/views/filesystem/partition.py:280
msgid "Path exceeds PATH_MAX"
msgstr "Path exceeds PATH_MAX"

#: ../subiquity/ui/views/filesystem/partition.py:283
#, python-brace-format
msgid "{device} is already mounted at {path}."
msgstr "{device} is already mounted at {path}."

#: ../subiquity/ui/views/filesystem/partition.py:294
#, python-brace-format
msgid ""
"Mounting an existing filesystem at {mountpoint} is usually a bad idea, "
"proceed only with caution."
msgstr ""
"Mounting an existing filesystem at {mountpoint} is usually a bad idea, "
"proceed only with caution."

#: ../subiquity/ui/views/filesystem/partition.py:313
#, python-brace-format
msgid ""
"Bootloader partition\n"
"\n"
"{middle}\n"
"\n"
"However, on a disk with a GPT partition table, there is not enough\n"
"space after the MBR for GRUB to store its second-stage core.img, so a\n"
"small unformatted partition is needed at the start of the disk. It\n"
"will not contain a filesystem and will not be mounted, and cannot be\n"
"edited here.\n"
msgstr ""
"Bootloader partition\n"
"\n"
"{middle}\n"
"\n"
"However, on a disk with a GPT partition table, there is not enough\n"
"space after the MBR for GRUB to store its second-stage core.img, so a\n"
"small unformatted partition is needed at the start of the disk. It\n"
"will not contain a filesystem and will not be mounted, and cannot be\n"
"edited here.\n"

#: ../subiquity/ui/views/filesystem/partition.py:327
msgid ""
"If this disk is selected as a boot device, GRUB will be installed onto\n"
"the target disk's MBR."
msgstr ""
"If this disk is selected as a boot device, GRUB will be installed onto\n"
"the target disks MBR."

#: ../subiquity/ui/views/filesystem/partition.py:333
msgid ""
"As this disk has been selected as a boot device, GRUB will be\n"
"installed onto the target disk's MBR."
msgstr ""
"As this disk has been selected as a boot device, GRUB will be\n"
"installed onto the target disks MBR."

#: ../subiquity/ui/views/filesystem/partition.py:339
msgid ""
"Bootloader partition\n"
"\n"
"This is an ESP / \"EFI system partition\" as required by UEFI. If this\n"
"disk is selected as a boot device, Grub will be installed onto this\n"
"partition, which must be formatted as fat32.\n"
msgstr ""
"Bootloader partition\n"
"\n"
"This is an ESP / \"EFI system partition\" as required by UEFI. If this\n"
"disk is selected as a boot device, Grub will be installed onto this\n"
"partition, which must be formatted as fat32.\n"

#: ../subiquity/ui/views/filesystem/partition.py:349
msgid ""
"Bootloader partition\n"
"\n"
"This is an ESP / \"EFI system partition\" as required by UEFI. As this\n"
"disk has been selected as a boot device, Grub will be installed onto\n"
"this partition, which must be formatted as fat32.\n"
msgstr ""
"Bootloader partition\n"
"\n"
"This is an ESP / \"EFI system partition\" as required by UEFI. As this\n"
"disk has been selected as a boot device, Grub will be installed onto\n"
"this partition, which must be formatted as fat32.\n"

#: ../subiquity/ui/views/filesystem/partition.py:359
msgid "The only aspect of this partition that can be edited is the size.\n"
msgstr "The only aspect of this partition that can be edited is the size.\n"

#: ../subiquity/ui/views/filesystem/partition.py:365
msgid ""
"You can choose whether to use the existing filesystem on this\n"
"partition or reformat it.\n"
msgstr ""
"You can choose whether to use the existing filesystem on this\n"
"partition or reformat it.\n"

#: ../subiquity/ui/views/filesystem/partition.py:372
msgid ""
"Required bootloader partition\n"
"\n"
"This is the PReP partion which is required on POWER. If this disk is\n"
"selected as a boot device, Grub will be installed onto this partition.\n"
msgstr ""
"Required bootloader partition\n"
"\n"
"This is the PReP partion which is required on POWER. If this disk is\n"
"selected as a boot device, Grub will be installed onto this partition.\n"

#: ../subiquity/ui/views/filesystem/partition.py:381
msgid ""
"Required bootloader partition\n"
"\n"
"This is the PReP partion which is required on POWER. As this disk has\n"
"been selected as a boot device, Grub will be installed onto this\n"
"partition.\n"
msgstr ""
"Required bootloader partition\n"
"\n"
"This is the PReP partion which is required on POWER. As this disk has\n"
"been selected as a boot device, Grub will be installed onto this\n"
"partition.\n"

#: ../subiquity/ui/views/filesystem/partition.py:482
msgid "Use existing fat32 filesystem"
msgstr "Use existing fat32 filesystem"

#: ../subiquity/ui/views/filesystem/partition.py:485
msgid "Reformat as fresh fat32 filesystem"
msgstr "Reformat as fresh fat32 filesystem"

#: ../subiquity/ui/views/filesystem/partition.py:567
#, python-brace-format
msgid "Adding logical volume to {vgname}"
msgstr "Adding logical volume to {vgname}"

#: ../subiquity/ui/views/filesystem/partition.py:571
#, python-brace-format
msgid "Adding {ptype} partition to {device}"
msgstr "Adding {ptype} partition to {device}"

#: ../subiquity/ui/views/filesystem/partition.py:577
#, python-brace-format
msgid "Editing logical volume {lvname} of {vgname}"
msgstr "Editing logical volume {lvname} of {vgname}"

#: ../subiquity/ui/views/filesystem/partition.py:581
#, python-brace-format
msgid "Editing partition {number} of {device}"
msgstr "Editing partition {number} of {device}"

#: ../subiquity/ui/views/filesystem/partition.py:641
msgid ""
"Formatting and mounting a disk directly is unusual. You probably want to add "
"a partition instead."
msgstr ""
"Formatting and mounting a disk directly is unusual. You probably want to add "
"a partition instead."

#: ../subiquity/ui/views/filesystem/partition.py:655
#, python-brace-format
msgid "Format and/or mount {device}"
msgstr "Format and/or mount {device}"

#: ../subiquity/ui/views/filesystem/probing.py:29
msgid "Waiting for storage probing to complete"
msgstr "Waiting for storage probing to complete"

#: ../subiquity/ui/views/filesystem/probing.py:40
msgid ""
"The installer is probing for block devices to install to. Please wait until "
"it completes."
msgstr ""
"The installer is probing for block devices to install to. Please wait until "
"it completes."

#: ../subiquity/ui/views/filesystem/probing.py:56
msgid ""
"Unfortunately probing for devices to install to failed. Please report a bug "
"on Launchpad, and if possible include the contents of the /var/log/installer "
"directory."
msgstr ""
"Unfortunately probing for devices to install to failed. Please report a bug "
"on Launchpad, and if possible include the contents of the /var/log/installer "
"directory."

#: ../subiquity/ui/views/filesystem/probing.py:63
msgid "Probing for devices to install to failed"
msgstr "Probing for devices to install to failed"

#: ../subiquity/ui/views/filesystem/probing.py:74
msgid "Show Error Report"
msgstr "Show Error Report"

#: ../subiquity/ui/views/filesystem/raid.py:58
msgid "/ is not permitted in the name of a RAID device"
msgstr "/ is not permitted in the name of a RAID device"

#: ../subiquity/ui/views/filesystem/raid.py:66
msgid "Whitespace is not permitted in the name of a RAID device"
msgstr "Whitespace is not permitted in the name of a RAID device"

#: ../subiquity/ui/views/filesystem/raid.py:84
msgid "RAID Level:"
msgstr "RAID Level:"

#: ../subiquity/ui/views/filesystem/raid.py:97
#, python-brace-format
msgid "There is already a RAID named '{name}'"
msgstr "There is already a RAID named '{name}'"

#: ../subiquity/ui/views/filesystem/raid.py:101
msgid ". and .. are not valid names for RAID devices"
msgstr ". and .. are not valid names for RAID devices"

#: ../subiquity/ui/views/filesystem/raid.py:107
#, python-brace-format
msgid "RAID Level \"{level}\" requires at least {min_active} active devices"
msgstr "RAID Level \"{level}\" requires at least {min_active} active devices"

#: ../subiquity/ui/views/filesystem/raid.py:120
msgid "Create software RAID (\"MD\") disk"
msgstr "Create software RAID (\"MD\") disk"

#: ../subiquity/ui/views/filesystem/raid.py:136
#, python-brace-format
msgid "Edit software RAID disk \"{name}\""
msgstr "Edit software RAID disk \"{name}\""

#: ../subiquity/ui/views/help.py:43
#, python-brace-format
msgid ""
"\n"
"Welcome to the Ubuntu Server Installer!\n"
"\n"
"The most popular server Linux in the cloud and data centre, this\n"
"release of Ubuntu will receive updates for 9 months from release.\n"
"\n"
"The installer will guide you through installing Ubuntu Server\n"
"{release}.\n"
"\n"
"The installer only requires the up and down arrow keys, space (or\n"
"return) and the occasional bit of typing.\n"
"\n"
"This is version {snap_version} of the installer.\n"
msgstr ""
"\n"
"Welcome to the Ubuntu Server Installer!\n"
"\n"
"The most popular server Linux in the cloud and data centre, this\n"
"release of Ubuntu will receive updates for 9 months from release.\n"
"\n"
"The installer will guide you through installing Ubuntu Server\n"
"{release}.\n"
"\n"
"The installer only requires the up and down arrow keys, space (or\n"
"return) and the occasional bit of typing.\n"
"\n"
"This is version {snap_version} of the installer.\n"

#: ../subiquity/ui/views/help.py:61
#, python-brace-format
msgid ""
"\n"
"Welcome to the Ubuntu Server Installer!\n"
"\n"
"The most popular server Linux in the cloud and data centre, you can\n"
"rely on Ubuntu Server and its five years of guaranteed free upgrades.\n"
"\n"
"The installer will guide you through installing Ubuntu Server\n"
"{release} LTS.\n"
"\n"
"The installer only requires the up and down arrow keys, space (or\n"
"return) and the occasional bit of typing.\n"
"\n"
"This is version {snap_version} of the installer.\n"
msgstr ""
"\n"
"Welcome to the Ubuntu Server Installer!\n"
"\n"
"The most popular server Linux in the cloud and data centre, you can\n"
"rely on Ubuntu Server and its five years of guaranteed free upgrades.\n"
"\n"
"The installer will guide you through installing Ubuntu Server\n"
"{release} LTS.\n"
"\n"
"The installer only requires the up and down arrow keys, space (or\n"
"return) and the occasional bit of typing.\n"
"\n"
"This is version {snap_version} of the installer.\n"

#: ../subiquity/ui/views/help.py:79
msgid ""
"\n"
"It is possible to connect to the installer over the network, which\n"
"might allow the use of a more capable terminal and can offer more languages\n"
"than can be rendered in the Linux console."
msgstr ""
"\n"
"It is possible to connect to the installer over the network, which\n"
"might allow the use of a more capable terminal and can offer more languages\n"
"than can be rendered in the Linux console."

#: ../subiquity/ui/views/help.py:86
msgid ""
"\n"
"To connect, SSH to any of these addresses:\n"
msgstr ""
"\n"
"To connect, SSH to any of these addresses:\n"

#: ../subiquity/ui/views/help.py:92
#, python-brace-format
msgid ""
"\n"
"To connect, SSH to {username}@{ip}."
msgstr ""
"\n"
"To connect, SSH to {username}@{ip}."

#: ../subiquity/ui/views/help.py:97
#, python-brace-format
msgid "The password you should use is \"{password}\"."
msgstr "The password you should use is \"{password}\"."

#: ../subiquity/ui/views/help.py:102
msgid "You should use the preconfigured password passed to cloud-init."
msgstr "You should use the preconfigured password passed to cloud-init."

#: ../subiquity/ui/views/help.py:107
#, python-brace-format
msgid ""
"You can log in with the {keytype} key with fingerprint:\n"
"\n"
"    {fingerprint}\n"
msgstr ""
"You can log in with the {keytype} key with fingerprint:\n"
"\n"
"    {fingerprint}\n"

#: ../subiquity/ui/views/help.py:115
msgid "You can log in with one of the following keys:\n"
msgstr "You can log in with one of the following keys:\n"

#: ../subiquity/ui/views/help.py:121
#, python-brace-format
msgid ""
"\n"
"Or you can use the password \"{password}\"."
msgstr ""
"\n"
"Or you can use the password \"{password}\"."

#: ../subiquity/ui/views/help.py:126
msgid ""
"\n"
"Or you can use the preconfigured password passed to cloud-init."
msgstr ""
"\n"
"Or you can use the preconfigured password passed to cloud-init."

#: ../subiquity/ui/views/help.py:131
msgid ""
"\n"
"Unfortunately this system seems to have no global IP addresses at this\n"
"time.\n"
msgstr ""
"\n"
"Unfortunately, this system seems to have no global IP addresses at this\n"
"time.\n"

#: ../subiquity/ui/views/help.py:138
msgid ""
"\n"
"Unfortunately the installer was unable to detect the password that has\n"
"been set.\n"
msgstr ""
"\n"
"Unfortunately, the installer was unable to detect the password that has\n"
"been set.\n"

#: ../subiquity/ui/views/help.py:234
msgid "The following keys can be used at any time:"
msgstr "The following keys can be used at any time:"

#: ../subiquity/ui/views/help.py:239
msgid "ESC"
msgstr "ESC"

#: ../subiquity/ui/views/help.py:239
msgid "go back"
msgstr "go back"

#: ../subiquity/ui/views/help.py:240
msgid "F1"
msgstr "F1"

#: ../subiquity/ui/views/help.py:240
msgid "open help menu"
msgstr "open help menu"

#: ../subiquity/ui/views/help.py:241
msgid "Control-Z, F2"
msgstr "Control-Z, F2"

#: ../subiquity/ui/views/help.py:241
msgid "switch to shell"
msgstr "switch to shell"

#: ../subiquity/ui/views/help.py:242
msgid "Control-L, F3"
msgstr "Control-L, F3"

#: ../subiquity/ui/views/help.py:242
msgid "redraw screen"
msgstr "redraw screen"

#: ../subiquity/ui/views/help.py:246
msgid "Control-T, F4"
msgstr "Control-T, F4"

#: ../subiquity/ui/views/help.py:246
msgid "toggle rich mode (colour, unicode) on and off"
msgstr "toggle rich mode (colour, unicode) on and off"

#: ../subiquity/ui/views/help.py:250
msgid "Control-X"
msgstr "Control-X"

#: ../subiquity/ui/views/help.py:250
msgid "quit"
msgstr "quit"

#: ../subiquity/ui/views/help.py:251
msgid "Control-E"
msgstr "Control-E"

#: ../subiquity/ui/views/help.py:251
msgid "generate noisy error report"
msgstr "generate noisy error report"

#: ../subiquity/ui/views/help.py:252
msgid "Control-R"
msgstr "Control-R"

#: ../subiquity/ui/views/help.py:252
msgid "generate quiet error report"
msgstr "generate quiet error report"

#: ../subiquity/ui/views/help.py:253
msgid "Control-G"
msgstr "Control-G"

#: ../subiquity/ui/views/help.py:253
msgid "pretend to run an install"
msgstr "pretend to run an install"

#: ../subiquity/ui/views/help.py:254
msgid "Control-U"
msgstr "Control-U"

#: ../subiquity/ui/views/help.py:254
msgid "crash the ui"
msgstr "crash the ui"

#: ../subiquity/ui/views/help.py:267
msgid "(dry-run only)"
msgstr "(dry-run only)"

#: ../subiquity/ui/views/help.py:282
msgid "Shortcut Keys"
msgstr "Shortcut Keys"

#: ../subiquity/ui/views/help.py:306
msgid "About this installer"
msgstr "About this installer"

#: ../subiquity/ui/views/help.py:307
msgid "Keyboard shortcuts"
msgstr "Keyboard shortcuts"

#: ../subiquity/ui/views/help.py:308
msgid "Enter shell"
msgstr "Enter shell"

#: ../subiquity/ui/views/help.py:316 ../subiquity/ui/views/help.py:493
msgid "Help on SSH access"
msgstr "Help on SSH access"

#: ../subiquity/ui/views/help.py:319
msgid "Toggle rich mode"
msgstr "Toggle rich mode"

#: ../subiquity/ui/views/help.py:330
msgid "Help on this screen"
msgstr "Help on this screen"

#: ../subiquity/ui/views/help.py:335 ../subiquity/ui/views/help.py:341
msgid "View error reports"
msgstr "View error reports"

#: ../subiquity/ui/views/help.py:420
msgid "Help"
msgstr "Help"

#: ../subiquity/ui/views/help.py:484
msgid "About the installer"
msgstr "About the installer"

#: ../subiquity/ui/views/identity.py:48
msgid "The characters : , and = are not permitted in this field"
msgstr "The characters : , and = are not permitted in this field"

#: ../subiquity/ui/views/identity.py:94
msgid "The only characters permitted in this field are a-z, 0-9, _ and -"
msgstr "The only characters permitted in this field are a-z, 0-9, _ and -"

#: ../subiquity/ui/views/identity.py:120
msgid "Your name:"
msgstr "Your name:"

#: ../subiquity/ui/views/identity.py:122
msgid "Your server's name:"
msgstr "Your servers name:"

#: ../subiquity/ui/views/identity.py:123
msgid "The name it uses when it talks to other computers."
msgstr "The name it uses when it talks to other computers."

#: ../subiquity/ui/views/identity.py:125
msgid "Pick a username:"
msgstr "Pick a username:"

#: ../subiquity/ui/views/identity.py:126
msgid "Choose a password:"
msgstr "Choose a password:"

#: ../subiquity/ui/views/identity.py:127
msgid "Confirm your password:"
msgstr "Confirm your password:"

#: ../subiquity/ui/views/identity.py:131
#, python-brace-format
msgid "Name too long, must be less than {limit}"
msgstr "Name too long, must be less than {limit}"

#: ../subiquity/ui/views/identity.py:137
msgid "Server name must not be empty"
msgstr "Server name must not be empty"

#: ../subiquity/ui/views/identity.py:140
#, python-brace-format
msgid "Server name too long, must be less than {limit}"
msgstr "Server name too long, must be less than {limit}"

#: ../subiquity/ui/views/identity.py:145
msgid "Hostname must match HOSTNAME_REGEX: "
msgstr "Hostname must match HOSTNAME_REGEX: "

#: ../subiquity/ui/views/identity.py:150
msgid "Username missing"
msgstr "Username missing"

#: ../subiquity/ui/views/identity.py:153
#, python-brace-format
msgid "Username too long, must be less than {limit}"
msgstr "Username too long, must be less than {limit}"

#: ../subiquity/ui/views/identity.py:158
msgid "Username must match USERNAME_REGEX: "
msgstr "Username must match USERNAME_REGEX: "

#: ../subiquity/ui/views/identity.py:163
#, python-brace-format
msgid "The username \"{username}\" is reserved for use by the system."
msgstr "The username \"{username}\" is reserved for use by the system."

#: ../subiquity/ui/views/identity.py:167
#, python-brace-format
msgid "The username \"{username}\" is already in use."
msgstr "Uživatelské jméno „{username}“ už je používáno."

#: ../subiquity/ui/views/identity.py:173
msgid "Password must be set"
msgstr "Password must be set"

#: ../subiquity/ui/views/identity.py:177
msgid "Passwords do not match"
msgstr "Passwords do not match"

#: ../subiquity/ui/views/identity.py:181
msgid "Profile setup"
msgstr "Profile setup"

#: ../subiquity/ui/views/identity.py:183
msgid ""
"Enter the username and password you will use to log in to the system. You "
"can configure SSH access on the next screen but a password is still needed "
"for sudo."
msgstr ""
"Enter the username and password you will use to log in to the system. You "
"can configure SSH access on the next screen but a password is still needed "
"for sudo."

#: ../subiquity/ui/views/identity.py:212
msgid "Passwords"
msgstr "Hesla"

#: ../subiquity/ui/views/installprogress.py:44
msgid "Install progress"
msgstr "Install progress"

#. context_id -> line containing a spinner
#: ../subiquity/ui/views/installprogress.py:50
#: ../subiquity/ui/views/installprogress.py:168
#: ../subiquity/ui/views/installprogress.py:175
msgid "Reboot Now"
msgstr "Reboot Now"

#: ../subiquity/ui/views/installprogress.py:52
msgid "View error report"
msgstr "View error report"

#: ../subiquity/ui/views/installprogress.py:54
msgid "View full log"
msgstr "View full log"

#: ../subiquity/ui/views/installprogress.py:69
msgid "Full installer output"
msgstr "Full installer output"

#: ../subiquity/ui/views/installprogress.py:134
#: ../subiquity/ui/views/installprogress.py:146
#: ../subiquity/ui/views/installprogress.py:149
msgid "Installing system"
msgstr "Installing system"

#: ../subiquity/ui/views/installprogress.py:137
msgid "Starting installer"
msgstr "Starting installer"

#: ../subiquity/ui/views/installprogress.py:140
msgid "Waiting on cloud-init"
msgstr "Waiting on cloud-init"

#: ../subiquity/ui/views/installprogress.py:143
msgid "Running early-commands"
msgstr "Running early-commands"

#: ../subiquity/ui/views/installprogress.py:152
#: ../subiquity/ui/views/installprogress.py:159
#: ../subiquity/ui/views/installprogress.py:167
msgid "Install complete!"
msgstr "Install complete!"

#: ../subiquity/ui/views/installprogress.py:153
msgid "Cancel update and reboot"
msgstr "Cancel update and reboot"

#: ../subiquity/ui/views/installprogress.py:160
#: ../subiquity/ui/views/installprogress.py:211
msgid "Rebooting..."
msgstr "Rebooting..."

#: ../subiquity/ui/views/installprogress.py:174
msgid "An error occurred during installation"
msgstr "An error occurred during installation"

#: ../subiquity/ui/views/installprogress.py:183
msgid "Subiquity server process has exited"
msgstr "Subiquity server process has exited"

#: ../subiquity/ui/views/installprogress.py:228
msgid ""
"Selecting Continue below will begin the installation process and\n"
"result in the loss of data on the disks selected to be formatted.\n"
"\n"
"You will not be able to return to this or a previous screen once\n"
"the installation has started.\n"
"\n"
"Are you sure you want to continue?"
msgstr ""
"Selecting Continue below will begin the installation process and\n"
"result in the loss of data on the disks selected to be formatted.\n"
"\n"
"You will not be able to return to this or a previous screen once\n"
"the installation has started.\n"
"\n"
"Are you sure you want to continue?"

#: ../subiquity/ui/views/installprogress.py:253
msgid "Confirm destructive action"
msgstr "Confirm destructive action"

#: ../subiquity/ui/views/installprogress.py:272
#, python-brace-format
msgid ""
"The installer running on {tty} is currently installing the system.\n"
"\n"
"You can wait for this to complete or switch to a shell.\n"
msgstr ""
"The installer running on {tty} is currently installing the system.\n"
"\n"
"You can wait for this to complete or switch to a shell.\n"

#: ../subiquity/ui/views/keyboard.py:53
msgid "Keyboard auto-detection"
msgstr "Keyboard auto-detection"

#: ../subiquity/ui/views/keyboard.py:82
msgid ""
"Keyboard detection starting. You will be asked a series of questions about "
"your keyboard. Press escape at any time to go back to the previous screen."
msgstr ""
"Keyboard detection starting. You will be asked a series of questions about "
"your keyboard. Press escape at any time to go back to the previous screen."

#: ../subiquity/ui/views/keyboard.py:100
msgid ""
"Keyboard auto detection completed.\n"
"\n"
"Your keyboard was detected as:\n"
msgstr ""
"Keyboard auto detection completed.\n"
"\n"
"Your keyboard was detected as:\n"

#: ../subiquity/ui/views/keyboard.py:107
msgid ""
"\n"
"If this is correct, select Done on the next screen. If not you can select "
"another layout or run the automated detection again.\n"
"\n"
msgstr ""
"\n"
"If this is correct, select Done on the next screen. If not you can select "
"another layout or run the automated detection again.\n"
"\n"

#: ../subiquity/ui/views/keyboard.py:126
msgid "Layout"
msgstr "Layout"

#: ../subiquity/ui/views/keyboard.py:127
msgid "Variant"
msgstr "Variant"

#: ../subiquity/ui/views/keyboard.py:153
msgid "Please press one of the following keys:"
msgstr "Please press one of the following keys:"

#: ../subiquity/ui/views/keyboard.py:197 ../subiquity/ui/views/keyboard.py:205
msgid "Input was not recognized, try again"
msgstr "Input was not recognised, please try again"

#: ../subiquity/ui/views/keyboard.py:223
msgid "Is the following key present on your keyboard?"
msgstr "Is the following key present on your keyboard?"

#: ../subiquity/ui/views/keyboard.py:290
msgid ""
"You will need a way to toggle the keyboard between the national layout and "
"the standard Latin layout.\n"
"\n"
"Right Alt or Caps Lock keys are often chosen for ergonomic reasons (in the "
"latter case, use the combination Shift+Caps Lock for normal Caps toggle). "
"Alt+Shift is also a popular combination; it will however lose its usual "
"behavior in Emacs and other programs that use it for specific needs.\n"
"\n"
"Not all listed keys are present on all keyboards. "
msgstr ""
"You will need a way to toggle the keyboard between the national layout and "
"the standard Latin layout.\n"
"\n"
"Right Alt or Caps Lock keys are often chosen for ergonomic reasons (in the "
"latter case, use the combination Shift+Caps Lock for normal Caps toggle). "
"Alt+Shift is also a popular combination; it will however lose its usual "
"behavior in Emacs and other programs that use it for specific needs.\n"
"\n"
"Not all listed keys are present on all keyboards. "

#: ../subiquity/ui/views/keyboard.py:304
msgid "Caps Lock"
msgstr "Caps Lock"

#: ../subiquity/ui/views/keyboard.py:305
msgid "Right Alt (AltGr)"
msgstr "Right Alt (AltGr)"

#: ../subiquity/ui/views/keyboard.py:306
msgid "Right Control"
msgstr "Right Control"

#: ../subiquity/ui/views/keyboard.py:307
msgid "Right Shift"
msgstr "Right Shift"

#: ../subiquity/ui/views/keyboard.py:308
msgid "Right Logo key"
msgstr "Right Logo key"

#: ../subiquity/ui/views/keyboard.py:309
msgid "Menu key"
msgstr "Menu key"

#: ../subiquity/ui/views/keyboard.py:310
msgid "Alt+Shift"
msgstr "Alt+Shift"

#: ../subiquity/ui/views/keyboard.py:311
msgid "Control+Shift"
msgstr "Control+Shift"

#: ../subiquity/ui/views/keyboard.py:312
msgid "Control+Alt"
msgstr "Control+Alt"

#: ../subiquity/ui/views/keyboard.py:313
msgid "Alt+Caps Lock"
msgstr "Alt+Caps Lock"

#: ../subiquity/ui/views/keyboard.py:314
msgid "Left Control+Left Shift"
msgstr "Left Control+Left Shift"

#: ../subiquity/ui/views/keyboard.py:315
msgid "Left Alt"
msgstr "Left Alt"

#: ../subiquity/ui/views/keyboard.py:316
msgid "Left Control"
msgstr "Left Control"

#: ../subiquity/ui/views/keyboard.py:317
msgid "Left Shift"
msgstr "Left Shift"

#: ../subiquity/ui/views/keyboard.py:318
msgid "Left Logo key"
msgstr "Left Logo key"

#: ../subiquity/ui/views/keyboard.py:319
msgid "Scroll Lock key"
msgstr "Scroll Lock key"

#: ../subiquity/ui/views/keyboard.py:320
msgid "No toggling"
msgstr "No toggling"

#: ../subiquity/ui/views/keyboard.py:342
msgid "Shortcut: "
msgstr "Shortcut: "

#: ../subiquity/ui/views/keyboard.py:356
msgid "Select layout toggle"
msgstr "Select layout toggle"

#: ../subiquity/ui/views/keyboard.py:371
msgid "Layout:"
msgstr "Layout:"

#: ../subiquity/ui/views/keyboard.py:372
msgid "Variant:"
msgstr "Variant:"

#: ../subiquity/ui/views/keyboard.py:376
msgid "Keyboard configuration"
msgstr "Keyboard configuration"

#: ../subiquity/ui/views/keyboard.py:397
msgid ""
"Please select the layout of the keyboard directly attached to the system, if "
"any."
msgstr ""
"Please select the layout of the keyboard directly attached to the system, if "
"any."

#: ../subiquity/ui/views/keyboard.py:402
msgid ""
"Please select your keyboard layout below, or select \"Identify keyboard\" to "
"detect your layout automatically."
msgstr ""
"Please select your keyboard layout below, or select \"Identify keyboard\" to "
"detect your layout automatically."

#: ../subiquity/ui/views/keyboard.py:413
msgid "Identify keyboard"
msgstr "Identify keyboard"

#: ../subiquity/ui/views/keyboard.py:448
msgid "Applying config"
msgstr "Applying config"

#: ../subiquity/ui/views/mirror.py:38
msgid ""
"You may provide an archive mirror that will be used instead of the default."
msgstr ""
"You may provide an archive mirror that will be used instead of the default."

#: ../subiquity/ui/views/mirror.py:43
msgid "Mirror check still running"
msgstr "Stále ještě probíhá kontrola instalačního zrcadla"

#: ../subiquity/ui/views/mirror.py:45
msgid ""
"The check of the mirror URL is still running. You can continue but there is "
"a chance that the installation will fail."
msgstr ""
"Kontrola URL instalačního zrcadla pořád ještě běží. Je možné pokračovat, ale "
"je možné, že instalace se nezdaří."

#: ../subiquity/ui/views/mirror.py:50
msgid "Mirror check failed"
msgstr "Kontrola instalačního zrcadla se nezdaříla"

#: ../subiquity/ui/views/mirror.py:52
msgid ""
"The check of the mirror URL failed. You can continue but it is very likely "
"that the installation will fail."
msgstr ""
"Kontrola URL instalačního zrcadla se nezdařila. Je možné pokračovat, ale "
"velmi pravděpodobně se instalace nezdaří."

#: ../subiquity/ui/views/mirror.py:57
msgid "Mirror check has not run"
msgstr "Kontrola zrcadla nebyla spouštěna"

#: ../subiquity/ui/views/mirror.py:59
msgid ""
"The check of the mirror has not yet started. You can continue but there is a "
"chance that the installation will fail."
msgstr ""
"Kontrola instalačního zrcadla ještě nebyla spouštěna. Je možné pokračovat, "
"ale je možné, že se instalace nezdaří."

#: ../subiquity/ui/views/mirror.py:71
msgid "Mirror address:"
msgstr "Mirror address:"

#: ../subiquity/ui/views/mirror.py:83
msgid ""
"The mirror location cannot be checked because no network has been configured."
msgstr ""
"Umístění instalačního zrcadla není možné zkontrolovat, protože nebyla "
"nastavena síť."

#: ../subiquity/ui/views/mirror.py:85
msgid "The mirror location has not yet started."
msgstr "Hledání umístění zrcadla ještě nezačalo."

#: ../subiquity/ui/views/mirror.py:86
msgid "The mirror location is being tested."
msgstr "Umístění zrcadla je testováno."

#: ../subiquity/ui/views/mirror.py:87
msgid "This mirror location passed tests."
msgstr "Toto umístění zrcadla prošlo testy."

#: ../subiquity/ui/views/mirror.py:89
msgid ""
"This mirror location does not seem to work. The output below may help\n"
"explain the problem. You can try again once the issue has been fixed\n"
"(common problems are network issues or the system clock being wrong).\n"
msgstr ""
"Zdá se, že toto umístění zrcadla nefunguje. Níže uvedený výstup může\n"
"pomoci tento problém vysvětlit. Jakmile bude problém vyřešen, je možné\n"
"to zkusit znovu (běžné problémy jsou ty se sítí nebo nesprávným systémovým "
"časem).\n"

#: ../subiquity/ui/views/mirror.py:99
msgid "Configure Ubuntu archive mirror"
msgstr "Configure Ubuntu archive mirror"

#: ../subiquity/ui/views/mirror.py:100
msgid "If you use an alternative mirror for Ubuntu, enter its details here."
msgstr "If you use an alternative mirror for Ubuntu, enter its details here."

#: ../subiquity/ui/views/mirror.py:125
msgid "Try again now"
msgstr "Zkusit znovu nyní"

#: ../subiquity/ui/views/proxy.py:31
msgid ""
"If you need to use a HTTP proxy to access the outside world, enter the proxy "
"information here. Otherwise, leave this blank.\n"
"\n"
"The proxy information should be given in the standard form of "
"\"http://[[user][:pass]@]host[:port]/\"."
msgstr ""
"If you need to use a HTTP proxy to access the outside world, enter the proxy "
"information here. Otherwise, leave this blank.\n"
"\n"
"The proxy information should be given in the standard form of "
"\"http://[[user][:pass]@]host[:port]/\"."

#: ../subiquity/ui/views/proxy.py:41
msgid "Proxy address:"
msgstr "Proxy address:"

#: ../subiquity/ui/views/proxy.py:45
msgid "Configure proxy"
msgstr "Configure proxy"

#: ../subiquity/ui/views/proxy.py:47
msgid ""
"If this system requires a proxy to connect to the internet, enter its "
"details here."
msgstr ""
"If this system requires a proxy to connect to the internet, enter its "
"details here."

#: ../subiquity/ui/views/refresh.py:105
msgid "Checking for installer update..."
msgstr "Checking for installer update..."

#: ../subiquity/ui/views/refresh.py:107
msgid ""
"Contacting the snap store to check if a new version of the installer is "
"available."
msgstr ""
"Contacting the snap store to check if a new version of the installer is "
"available."

#: ../subiquity/ui/views/refresh.py:111
msgid "Contacting the snap store failed"
msgstr "Contacting the snap store failed"

#: ../subiquity/ui/views/refresh.py:112
msgid "Contacting the snap store failed:"
msgstr "Contacting the snap store failed:"

#: ../subiquity/ui/views/refresh.py:114
msgid "Installer update available"
msgstr "Installer update available"

#: ../subiquity/ui/views/refresh.py:116
#, python-brace-format
msgid ""
"Version {new} of the installer is now available ({current} is currently "
"running)."
msgstr ""
"Version {new} of the installer is now available ({current} is currently "
"running)."

#: ../subiquity/ui/views/refresh.py:120
msgid "Downloading update..."
msgstr "Downloading update..."

#: ../subiquity/ui/views/refresh.py:122
msgid ""
"Please wait while the updated installer is being downloaded. The installer "
"will restart automatically when the download is complete."
msgstr ""
"Please wait while the updated installer is being downloaded. The installer "
"will restart automatically when the download is complete."

#: ../subiquity/ui/views/refresh.py:126
msgid "Update failed"
msgstr "Update failed"

#: ../subiquity/ui/views/refresh.py:127
msgid "Downloading and applying the update:"
msgstr "Downloading and applying the update:"

#: ../subiquity/ui/views/refresh.py:147 ../subiquity/ui/views/refresh.py:175
#: ../subiquity/ui/views/refresh.py:207 ../subiquity/ui/views/refresh.py:278
msgid "Continue without updating"
msgstr "Continue without updating"

#: ../subiquity/ui/views/refresh.py:174 ../subiquity/ui/views/refresh.py:277
#: ../subiquity/ui/views/snaplist.py:288 ../subiquity/ui/views/snaplist.py:414
msgid "Try again"
msgstr "Try again"

#: ../subiquity/ui/views/refresh.py:192
msgid "You can read the release notes for each version at:"
msgstr "You can read the release notes for each version at:"

#: ../subiquity/ui/views/refresh.py:198
msgid ""
"If you choose to update, the update will be downloaded and the installation "
"will continue from here."
msgstr ""
"If you choose to update, the update will be downloaded and the installation "
"will continue from here."

#: ../subiquity/ui/views/refresh.py:206
msgid "Update to the new installer"
msgstr "Update to the new installer"

#: ../subiquity/ui/views/snaplist.py:61
msgid "just now"
msgstr "just now"

#: ../subiquity/ui/views/snaplist.py:65
msgid "minute"
msgstr "minute"

#: ../subiquity/ui/views/snaplist.py:67
msgid "minutes"
msgstr "minutes"

#: ../subiquity/ui/views/snaplist.py:71
msgid "hour"
msgstr "hour"

#: ../subiquity/ui/views/snaplist.py:73
msgid "hours"
msgstr "hours"

#: ../subiquity/ui/views/snaplist.py:77
msgid "day"
msgstr "day"

#: ../subiquity/ui/views/snaplist.py:79
msgid "days"
msgstr "days"

#: ../subiquity/ui/views/snaplist.py:82
#, python-brace-format
msgid "{amount:2} {unit} ago"
msgstr "{amount:2} {unit} ago"

#: ../subiquity/ui/views/snaplist.py:153
msgid "LICENSE: "
msgstr "LICENCE: "

#: ../subiquity/ui/views/snaplist.py:163
msgid "LAST UPDATED: "
msgstr "LAST UPDATED: "

#: ../subiquity/ui/views/snaplist.py:173
msgid "CHANNEL"
msgstr "CHANNEL"

#: ../subiquity/ui/views/snaplist.py:174
msgid "VERSION"
msgstr "VERSION"

#: ../subiquity/ui/views/snaplist.py:176
msgid "PUBLISHED"
msgstr "PUBLISHED"

#: ../subiquity/ui/views/snaplist.py:177
msgid "CONFINEMENT"
msgstr "CONFINEMENT"

#: ../subiquity/ui/views/snaplist.py:199
msgid "by: "
msgstr "by: "

#: ../subiquity/ui/views/snaplist.py:284
#, python-brace-format
msgid "Fetching info for {snap} failed"
msgstr "Fetching info for {snap} failed"

#: ../subiquity/ui/views/snaplist.py:327
#, python-brace-format
msgid "Fetching info for {snap}"
msgstr "Fetching info for {snap}"

#: ../subiquity/ui/views/snaplist.py:371
msgid "Featured Server Snaps"
msgstr "Featured Server Snaps"

#: ../subiquity/ui/views/snaplist.py:387
msgid "Loading server snaps from store, please wait..."
msgstr "Loading server snaps from store, please wait..."

#: ../subiquity/ui/views/snaplist.py:412
msgid "Sorry, loading snaps from the store failed."
msgstr "Sorry, loading snaps from the store failed."

#: ../subiquity/ui/views/snaplist.py:511
msgid ""
"These are popular snaps in server environments. Select or deselect with "
"SPACE, press ENTER to see more details of the package, publisher and "
"versions available."
msgstr ""
"These are popular snaps in server environments. Select or deselect with "
"SPACE, press ENTER to see more details of the package, publisher and "
"versions available."

#: ../subiquity/ui/views/ssh.py:39
msgid "Import Username:"
msgstr "Import Username:"

#: ../subiquity/ui/views/ssh.py:46
msgid "GitHub Username:"
msgstr "GitHub Username:"

#: ../subiquity/ui/views/ssh.py:47
msgid "Enter your GitHub username."
msgstr "Enter your GitHub username."

#: ../subiquity/ui/views/ssh.py:50
msgid ""
"A GitHub username may only contain alphanumeric characters or hyphens."
msgstr ""
"A GitHub username may only contain alphanumeric characters or hyphens."

#: ../subiquity/ui/views/ssh.py:54
msgid "Launchpad Username:"
msgstr "Launchpad Username:"

#: ../subiquity/ui/views/ssh.py:58
msgid ""
"A Launchpad username may only contain lower-case alphanumeric characters, "
"hyphens, plus, or periods."
msgstr ""
"A Launchpad username may only contain lower-case alphanumeric characters, "
"hyphens, plus, or periods."

#: ../subiquity/ui/views/ssh.py:67
msgid "Install OpenSSH server"
msgstr "Install OpenSSH server"

#: ../subiquity/ui/views/ssh.py:70
msgid "Import SSH identity:"
msgstr "Import SSH identity:"

#: ../subiquity/ui/views/ssh.py:73
msgid "from GitHub"
msgstr "from GitHub"

#: ../subiquity/ui/views/ssh.py:74
msgid "from Launchpad"
msgstr "from Launchpad"

#: ../subiquity/ui/views/ssh.py:76
msgid "You can import your SSH keys from GitHub or Launchpad."
msgstr "You can import your SSH keys from GitHub or Launchpad."

#: ../subiquity/ui/views/ssh.py:81
msgid "Allow password authentication over SSH"
msgstr "Allow password authentication over SSH"

#: ../subiquity/ui/views/ssh.py:113
msgid "This field must not be blank."
msgstr "This field must not be blank."

#: ../subiquity/ui/views/ssh.py:115
msgid "SSH id too long, must be < "
msgstr "SSH id too long, must be < "

#: ../subiquity/ui/views/ssh.py:120
msgid ""
"A Launchpad username must start with a letter or number. All letters must be "
"lower-case. The characters +, - and . are also allowed after the first "
"character."
msgstr ""
"A Launchpad username must start with a letter or number. All letters must be "
"lower-case. The characters +, - and . are also allowed after the first "
"character."

#: ../subiquity/ui/views/ssh.py:129
msgid ""
"A GitHub username may only contain alphanumeric characters or single "
"hyphens, and cannot begin or end with a hyphen."
msgstr ""
"A GitHub username may only contain alphanumeric characters or single "
"hyphens, and cannot begin or end with a hyphen."

#: ../subiquity/ui/views/ssh.py:140
msgid "Fetching SSH keys..."
msgstr "Fetching SSH keys..."

#: ../subiquity/ui/views/ssh.py:172
msgid "Confirm SSH keys"
msgstr "Confirm SSH keys"

#: ../subiquity/ui/views/ssh.py:174
msgid ""
"Keys with the following fingerprints were fetched. Do you want to use them?"
msgstr ""
"Keys with the following fingerprints were fetched. Do you want to use them?"

#: ../subiquity/ui/views/ssh.py:178
msgid "Confirm SSH key"
msgstr "Confirm SSH key"

#: ../subiquity/ui/views/ssh.py:180
msgid ""
"A key with the following fingerprint was fetched. Do you want to use it?"
msgstr ""
"A key with the following fingerprint was fetched. Do you want to use it?"

#: ../subiquity/ui/views/ssh.py:210
msgid "SSH Setup"
msgstr "SSH Setup"

#: ../subiquity/ui/views/ssh.py:212
msgid ""
"You can choose to install the OpenSSH server package to enable secure remote "
"access to your server."
msgstr ""
"You can choose to install the OpenSSH server package to enable secure remote "
"access to your server."

#: ../subiquity/ui/views/welcome.py:37
msgid ""
"\n"
"Select the language to use for the installer and to be configured in the\n"
"installed system.\n"
msgstr ""
"\n"
"Select the language to use for the installer and to be configured in the\n"
"installed system.\n"

#: ../subiquity/ui/views/welcome.py:102
msgid "Use UP, DOWN and ENTER keys to select your language."
msgstr "Use UP, DOWN and ENTER keys to select your language."

#: ../subiquity/ui/views/welcome.py:110
msgid "Help choosing a language"
msgstr "Help choosing a language"

#. for translator: failed is a zdev device status
#: ../subiquity/ui/views/zdev.py:39
msgid "failed"
msgstr "failed"

#. for translator: auto is a zdev device status
#: ../subiquity/ui/views/zdev.py:42
msgid "auto"
msgstr "auto"

#. for translator: online is a zdev device status
#: ../subiquity/ui/views/zdev.py:45
msgid "online"
msgstr "online"

#: ../subiquity/ui/views/zdev.py:62
msgid "No zdev devices found."
msgstr "No zdev devices found."

#: ../subiquity/ui/views/zdev.py:80
msgid "ID"
msgstr "ID"

#: ../subiquity/ui/views/zdev.py:81
msgid "ONLINE"
msgstr "ONLINE"

#: ../subiquity/ui/views/zdev.py:82
msgid "NAMES"
msgstr "NAMES"

#: ../subiquity/ui/views/zdev.py:118
msgid "Enable"
msgstr "Enable"

#: ../subiquity/ui/views/zdev.py:119
msgid "Disable"
msgstr "Disable"

#: ../subiquity/ui/views/zdev.py:146
msgid "Zdev setup"
msgstr "Zdev setup"

#~ msgid "Filesystem setup"
#~ msgstr "Filesystem setup"

#~ msgid "Choose guided or manual partitioning"
#~ msgstr "Choose guided or manual partitioning"

#~ msgid "Select available disks to format and mount"
#~ msgstr "Select available disks to format and mount"

#~ msgid "Choose the installation target"
#~ msgstr "Choose the installation target"

#~ msgid "Format and/or mount {}"
#~ msgstr "Format and/or mount {}"

#~ msgid "An error has occurred"
#~ msgstr "An error has occurred"

#~ msgid "starting..."
#~ msgstr "starting..."

#~ msgid "Install in progress:"
#~ msgstr "Install in progress:"

#~ msgid "Install complete"
#~ msgstr "Install complete"

#~ msgid "Installation complete!"
#~ msgstr "Installation complete!"

#~ msgid "Finished install!"
#~ msgstr "Finished install!"

#~ msgid "Thank you for using Ubuntu!"
#~ msgstr "Thank you for using Ubuntu!"

#~ msgid "Please report this error in Launchpad"
#~ msgstr "Please report this error in Launchpad"

#~ msgid "Use UP, DOWN and ENTER keys to select your keyboard."
#~ msgstr "Use UP, DOWN and ENTER keys to select your keyboard."

#~ msgid "Select an interface to configure it or select Done to continue"
#~ msgstr "Select an interface to configure it or select Done to continue"

#~ msgid "Network interface {} WIFI configuration"
#~ msgstr "Network interface {} WIFI configuration"

#, python-format
#~ msgid "This field must be a %s URL."
#~ msgstr "This field must be a %s URL."

#, python-format
#~ msgid "'%s' is not contained in '%s'"
#~ msgstr "'%s' is not contained in '%s'"

#~ msgid "{!r} is not valid input"
#~ msgstr "{!r} is not valid input"

#~ msgid "partition of {}"
#~ msgstr "partition of {}"

#~ msgid ""
#~ "Selecting Continue below will begin the installation process and result in "
#~ "the loss of data on the disks selected to be formatted.\n"
#~ "\n"
#~ "You will not be able to return to this or a previous screen once the "
#~ "installation has started.\n"
#~ "\n"
#~ "Are you sure you want to continue?"
#~ msgstr ""
#~ "Selecting Continue below will begin the installation process and result in "
#~ "the loss of data on the disks selected to be formatted.\n"
#~ "\n"
#~ "You will not be able to return to this or a previous screen once the "
#~ "installation has started.\n"
#~ "\n"
#~ "Are you sure you want to continue?"

#~ msgid "Use An Entire Disk"
#~ msgstr "Use An Entire Disk"

#~ msgid "Choose the disk to install to:"
#~ msgstr "Choose the disk to install to:"

#~ msgid ""
#~ "Required bootloader partition\n"
#~ "\n"
#~ "GRUB will be installed onto the target disk's MBR.\n"
#~ "\n"
#~ "However, on a disk with a GPT partition table, there is not enough space "
#~ "after the MBR for GRUB to store its second-stage core.img, so a small "
#~ "unformatted partition is needed at the start of the disk. It will not "
#~ "contain a filesystem and will not be mounted, and cannot be edited here."
#~ msgstr ""
#~ "Required bootloader partition\n"
#~ "\n"
#~ "GRUB will be installed onto the target disk's MBR.\n"
#~ "\n"
#~ "However, on a disk with a GPT partition table, there is not enough space "
#~ "after the MBR for GRUB to store its second-stage core.img, so a small "
#~ "unformatted partition is needed at the start of the disk. It will not "
#~ "contain a filesystem and will not be mounted, and cannot be edited here."

#~ msgid "Github Username:"
#~ msgstr "Github Username:"

#~ msgid "from Github"
#~ msgstr "from Github"

#~ msgid "You can import your SSH keys from Github or Launchpad."
#~ msgstr "You can import your SSH keys from Github or Launchpad."

#~ msgid "Realname too long, must be < "
#~ msgstr "Realname too long, must be < "

#~ msgid "Server name too long, must be < "
#~ msgstr "Server name too long, must be < "

#~ msgid "Hostname must match NAME_REGEX, i.e. [a-z_][a-z0-9_-]*"
#~ msgstr "Hostname must match NAME_REGEX, i.e. [a-z_][a-z0-9_-]*"

#~ msgid "Username too long, must be < "
#~ msgstr "Username too long, must be < "

#~ msgid "Username must match NAME_REGEX, i.e. [a-z_][a-z0-9_-]*"
#~ msgstr "Username must match NAME_REGEX, i.e. [a-z_][a-z0-9_-]*"

#~ msgid ""
#~ "A Github username may only contain alphanumeric characters or single "
#~ "hyphens, and cannot begin or end with a hyphen."
#~ msgstr ""
#~ "A Github username may only contain alphanumeric characters or single "
#~ "hyphens, and cannot begin or end with a hyphen."

#~ msgid "Exit To Shell"
#~ msgstr "Exit To Shell"

#~ msgid "Keyboard auto detection failed, sorry"
#~ msgstr "Keyboard auto detection failed, sorry"

#~ msgid "Edit IPv6"
#~ msgstr "Edit IPv6"

#~ msgid "Edit IPv4"
#~ msgstr "Edit IPv4"

#~ msgid "Edit Wifi"
#~ msgstr "Edit Wifi"

#~ msgid "Info"
#~ msgstr "Info"

#~ msgid "should be in CIDR form ({})"
#~ msgstr "should be in CIDR form ({})"

#, python-format
#~ msgid "%s already exists"
#~ msgstr "%s already exists"

#~ msgid "Info for {}"
#~ msgstr "Info for {}"

#~ msgid "There is already a network device named \"{}\""
#~ msgstr "There is already a network device named \"{}\""

#~ msgid "enslaved to {}"
#~ msgstr "enslaved to {}"

#, python-brace-format
#~ msgid "DHCPv{v}"
#~ msgstr "DHCPv{v}"

#~ msgid "bond master for {}"
#~ msgstr "bond master for {}"

#~ msgid "-"
#~ msgstr "-"

#~ msgid "unknown state {}"
#~ msgstr "unknown state {}"

#~ msgid "Make Boot Device"
#~ msgstr "Make Boot Device"

#~ msgid "Edit"
#~ msgstr "Edit"

#~ msgid "Remove from RAID/LVM"
#~ msgstr "Remove from RAID/LVM"

#~ msgid "Format"
#~ msgstr "Format"

#~ msgid "Add Partition"
#~ msgstr "Add Partition"

#, python-brace-format
#~ msgid ""
#~ "Cannot delete {selflabel} as partition {partnum} is part of the {cdtype} "
#~ "{cdname}."
#~ msgstr ""
#~ "Cannot delete {selflabel} as partition {partnum} is part of the {cdtype} "
#~ "{cdname}."

#, python-brace-format
#~ msgid "Cannot delete {selflabel} because it has {count} mounted partitions."
#~ msgstr "Cannot delete {selflabel} because it has {count} mounted partitions."

#~ msgid "partition {} of {}"
#~ msgstr "partition {} of {}"

#, python-brace-format
#~ msgid "Cannot delete {selflabel} because it has 1 mounted partition."
#~ msgstr "Cannot delete {selflabel} because it has 1 mounted partition."

#~ msgid "software RAID {}"
#~ msgstr "software RAID {}"

#~ msgid "partition {}"
#~ msgstr "partition {}"

#~ msgid "unused {}"
#~ msgstr "unused {}"

#, python-brace-format
#~ msgid "Cannot edit {selflabel} because it has logical volumes."
#~ msgstr "Cannot edit {selflabel} because it has logical volumes."

#, python-brace-format
#~ msgid "Cannot edit {selflabel} because it has partitions."
#~ msgstr "Cannot edit {selflabel} because it has partitions."

#~ msgid "formatted as {}"
#~ msgstr "formatted as {}"

#~ msgid "logical volume"
#~ msgstr "logical volume"

#~ msgid "partition"
#~ msgstr "partition"

#, python-brace-format
#~ msgid "It contains {n} {things}:"
#~ msgstr "It contains {n} {things}:"

#~ msgid ""
#~ "The installer can guide you through partitioning an entire disk either "
#~ "directly or using LVM, or, if you prefer, you can do it manually.\n"
#~ "\n"
#~ "If you choose to partition an entire disk you will still have a chance to "
#~ "review and modify the results."
#~ msgstr ""
#~ "The installer can guide you through partitioning an entire disk either "
#~ "directly or using LVM, or, if you prefer, you can do it manually.\n"
#~ "\n"
#~ "If you choose to partition an entire disk you will still have a chance to "
#~ "review and modify the results."

#~ msgid "You need to mount a device at / to continue."
#~ msgstr "You need to mount a device at / to continue."

#~ msgid "Select Done to begin the installation."
#~ msgstr "Select Done to begin the installation."

#~ msgid "Remove from {}"
#~ msgstr "Remove from {}"

#~ msgid "Use An Entire Disk And Set Up LVM"
#~ msgstr "Use An Entire Disk And Set Up LVM"

#~ msgid ""
#~ "The selected guided partitioning scheme creates the required bootloader "
#~ "partition on the chosen disk and then creates a single partition covering "
#~ "the rest of the disk, formatted as ext4 and mounted at '/'."
#~ msgstr ""
#~ "The selected guided partitioning scheme creates the required bootloader "
#~ "partition on the chosen disk and then creates a single partition covering "
#~ "the rest of the disk, formatted as ext4 and mounted at >>/<<."

#~ msgid ""
#~ "The LVM guided partitioning scheme creates three partitions on the selected "
#~ "disk: one as required by the bootloader, one for '/boot', and one covering "
#~ "the rest of the disk.\n"
#~ "\n"
#~ "A LVM volume group is created containing the large partition. A 4 gigabyte "
#~ "logical volume is created for the root filesystem. It can easily be enlarged "
#~ "with standard LVM command line tools."
#~ msgstr ""
#~ "The LVM guided partitioning scheme creates three partitions on the selected "
#~ "disk: one as required by the bootloader, one for >>/boot<<, and one covering "
#~ "the rest of the disk.\n"
#~ "\n"
#~ "A LVM volume group is created containing the large partition. A 4 gigabyte "
#~ "logical volume is created for the root filesystem. It can easily be enlarged "
#~ "with standard LVM command line tools."

#~ msgid "Rounded size up to {}"
#~ msgstr "Rounded size up to {}"

#~ msgid "{} is not a valid name for a volume group"
#~ msgstr "{} is not a valid name for a volume group"

#~ msgid "There is already a volume group named '{}'"
#~ msgstr "There is already a volume group named >>{}<<"

#~ msgid "Edit volume group \"{}\""
#~ msgstr "Edit volume group \"{}\""

#~ msgid "Capped partition size at {}"
#~ msgstr "Capped partition size at {}"

#~ msgid "There is already a logical volume named {}."
#~ msgstr "There is already a logical volume named {}."

#~ msgid "Size (max {}):"
#~ msgstr "Size (max {}):"

#~ msgid "The name of a logical volume may not contain \"{}\""
#~ msgstr "The name of a logical volume may not contain \"{}\""

#~ msgid "A logical volume may not be called {}"
#~ msgstr "A logical volume may not be called {}"

#~ msgid ""
#~ "Required bootloader partition\n"
#~ "\n"
#~ "This is the PReP partion which is required on POWER. Grub will be installed "
#~ "onto this partition."
#~ msgstr ""
#~ "Required bootloader partition\n"
#~ "\n"
#~ "This is the PReP partion which is required on POWER. Grub will be installed "
#~ "onto this partition."

#~ msgid "Editing {} of {}"
#~ msgstr "Editing {} of {}"

#~ msgid "Adding {} to {}"
#~ msgstr "Adding {} to {}"

#~ msgid "logical volume {}"
#~ msgstr "logical volume {}"

#~ msgid "{} is already mounted at {}."
#~ msgstr "{} is already mounted at {}."

#~ msgid "There is already a RAID named '{}'"
#~ msgstr "There is already a RAID named >>{}<<"

#~ msgid "RAID Level \"{}\" requires at least {} active devices"
#~ msgstr "RAID Level \"{}\" requires at least {} active devices"

#~ msgid "Edit software RAID disk \"{}\""
#~ msgstr "Edit software RAID disk \"{}\""

#~ msgid "Reboot"
#~ msgstr "Reboot"

#~ msgid "passwords"
#~ msgstr "passwords"

#~ msgid "Cancel update"
#~ msgstr "Cancel update"

#~ msgid "Fetching info for {} failed"
#~ msgstr "Fetching info for {} failed"

#~ msgid "Fetching info for {}"
#~ msgstr "Fetching info for {}"

#~ msgid "Please choose your preferred language."
#~ msgstr "Please choose your preferred language."

#~ msgid ", mounted at {}"
#~ msgstr ", mounted at {}"

#, python-brace-format
#~ msgid "Cannot remove selflabel from pre-exsting {cdtype} {cdlabel}"
#~ msgstr "Cannot remove selflabel from pre-exsting {cdtype} {cdlabel}"

#~ msgid "Leave formatted as {}"
#~ msgstr "Leave formatted as {}"

#~ msgid "Do you really want to remove the existing filesystem from {}?"
#~ msgstr "Do you really want to remove the existing filesystem from {}?"

#~ msgid "Remove filesystem from {}"
#~ msgstr "Remove filesystem from {}"

#~ msgid ""
#~ "Mounting an existing filesystem at {} is usually a bad idea, proceed only "
#~ "with caution."
#~ msgstr ""
#~ "Mounting an existing filesystem at {} is usually a bad idea, proceed only "
#~ "with caution."

#~ msgid ""
#~ "Required bootloader partition\n"
#~ "\n"
#~ "This is the ESP / \"EFI system partition\" required by UEFI. Grub will be "
#~ "installed onto this partition, which must be formatted as fat32."
#~ msgstr ""
#~ "Required bootloader partition\n"
#~ "\n"
#~ "This is the ESP / \"EFI system partition\" required by UEFI. Grub will be "
#~ "installed onto this partition, which must be formatted as fat32."

#~ msgid ""
#~ " You can choose whether to use the existing filesystem on this partition or "
#~ "reformat it."
#~ msgstr ""
#~ " You can choose whether to use the existing filesystem on this partition or "
#~ "reformat it."

#~ msgid " The only aspect of this partition that can be edited is the size."
#~ msgstr " The only aspect of this partition that can be edited is the size."

#, python-brace-format
#~ msgid "software RAID {level}"
#~ msgstr "software RAID {level}"

#~ msgid ""
#~ "\n"
#~ "\n"
#~ "The \"Use an entire disk\" option installs Ubuntu onto the selected disk,\n"
#~ "replacing any partitions and data already there.\n"
#~ "\n"
#~ "If the platform requires it, a bootloader partition is created on the disk.\n"
#~ "\n"
#~ "If you choose to use LVM, two additional partitions are then created,\n"
#~ "one for /boot and one covering the rest of the disk. An LVM volume\n"
#~ "group is created containing the large partition. A logical volume is\n"
#~ "created for the root filesystem, sized using some simple heuristic. It\n"
#~ "can easily be enlarged with standard LVM command line tools (or on the\n"
#~ "next screen).\n"
#~ "\n"
#~ "You can also choose to encrypt LVM volume group. This will require\n"
#~ "setting a password, that one will need to type on every boot before\n"
#~ "the system boots.\n"
#~ "\n"
#~ "If you do not choose to use LVM, a single partition is created covering the\n"
#~ "rest of the disk which is then formatted as ext4 and mounted at /.\n"
#~ "\n"
#~ "In either case, you will still have a chance to review and modify the "
#~ "results.\n"
#~ "\n"
#~ "If you choose to use a custom storage layout, no changes are made to the "
#~ "disks\n"
#~ "and you will have to, at a minimum, select a boot disk and mount a "
#~ "filesystem\n"
#~ "at /.\n"
#~ "\n"
#~ msgstr ""
#~ "\n"
#~ "\n"
#~ "The \"Use an entire disk\" option installs Ubuntu onto the selected disk,\n"
#~ "replacing any partitions and data already there.\n"
#~ "\n"
#~ "If the platform requires it, a bootloader partition is created on the disk.\n"
#~ "\n"
#~ "If you choose to use LVM, two additional partitions are then created,\n"
#~ "one for /boot and one covering the rest of the disk. An LVM volume\n"
#~ "group is created containing the large partition. A logical volume is\n"
#~ "created for the root filesystem, sized using some simple heuristic. It\n"
#~ "can easily be enlarged with standard LVM command line tools (or on the\n"
#~ "next screen).\n"
#~ "\n"
#~ "You can also choose to encrypt LVM volume group. This will require\n"
#~ "setting a password, that one will need to type on every boot before\n"
#~ "the system boots.\n"
#~ "\n"
#~ "If you do not choose to use LVM, a single partition is created covering the\n"
#~ "rest of the disk which is then formatted as ext4 and mounted at /.\n"
#~ "\n"
#~ "In either case, you will still have a chance to review and modify the "
#~ "results.\n"
#~ "\n"
#~ "If you choose to use a custom storage layout, no changes are made to the "
#~ "disks\n"
#~ "and you will have to, at a minimum, select a boot disk and mount a "
#~ "filesystem\n"
#~ "at /.\n"
#~ "\n"

#~ msgid "Enter your Github username."
#~ msgstr "Enter your Github username."

#~ msgid ""
#~ "A Github username may only contain alphanumeric characters or hyphens."
#~ msgstr ""
#~ "A Github username may only contain alphanumeric characters or hyphens."