~ubuntu-installer/ubiquity/trunk

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
# Chewa; Chichewa; Nyanja translation for ubiquity
# Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015
# This file is distributed under the same license as the ubiquity package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2015.
#
msgid ""
msgstr ""
"Project-Id-Version: ubiquity\n"
"Report-Msgid-Bugs-To: ubiquity@packages.debian.org\n"
"POT-Creation-Date: 2018-03-08 17:50+0100\n"
"PO-Revision-Date: 2016-09-02 01:13+0000\n"
"Last-Translator: Herald Luwizghie <luwizghieherald@gmail.com>\n"
"Language-Team: Chewa; Chichewa; Nyanja <ny@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2017-10-11 15:09+0000\n"
"X-Generator: Launchpad (build 18474)\n"

#. Type: text
#. Description
#: ../ubiquity.templates:3001
msgid "Connecting..."
msgstr "Kulumikiza..."

#. Type: text
#. Description
#: ../ubiquity.templates:4001
msgid "Connection failed."
msgstr "Kulumikiza kwalepheleka"

#. Type: text
#. Description
#: ../ubiquity.templates:5001
msgid "Connected."
msgstr "Zalumikizana."

#. Type: text
#. Description
#: ../ubiquity.templates:6001
msgid "Restart to Continue"
msgstr "Yatsaninso kuti mupitilize"

#. Type: text
#. Description
#. This is used as a window title.
#. Type: text
#. Description
#: ../ubiquity.templates:7001 ../ubiquity.templates:184001
msgid "Install"
msgstr "Khazikitsani"

#. Type: text
#. Description
#: ../ubiquity.templates:8001
msgid "Install (OEM mode, for manufacturers only)"
msgstr "Khazikitsani (gawo la OEM , la mafakitale okha)"

#. Type: text
#. Description
#: ../ubiquity.templates:9001
msgid ""
"You are installing in system manufacturer mode. Please enter a unique name "
"for this batch of systems. This name will be saved on the installed system "
"and can be used to help with bug reports."
msgstr ""
"Mukukhazikitsa makina awa mugawo la ku fakitale. Chonde lowetsani dzina "
"lenileni la batch la makina awa. Dzinali lidza sungidwa mu sisitimu yo "
"khazikidwa yi ndipo lidza thandiza popeleka malipoti ama vuto ena."

#. Type: text
#. Description
#. RELEASE is a variable substituted into this string, and may be 'Ubuntu'
#. MEDIUM is a variable substituted into this string, and may be 'CD'
#: ../ubiquity.templates:10001
msgid ""
"You can try ${RELEASE} without making any changes to your computer, directly "
"from this ${MEDIUM}."
msgstr ""
"Mutha kuyesa ${RELEASE} popanda kusintha chilichonse muKomputa yanu podzela "
"ku ${MEDIUM}"

#. Type: text
#. Description
#. RELEASE is a variable substituted into this string, and may be 'Ubuntu'
#: ../ubiquity.templates:10001
msgid ""
"Or if you're ready, you can install ${RELEASE} alongside (or instead of) "
"your current operating system.  This shouldn't take too long."
msgstr ""
"Kapena ngati mwakhonzeka, mutha kukhazikitsa ${RELEASE} limodzi (kapena "
"m'malo  mwa) Operating system yomwe ilimo. Zimenezi sizikuyenela kutenga "
"nthawi."

#. Type: text
#. Description
#. RELEASE is a variable substituted into this string, and may be 'Ubuntu'
#: ../ubiquity.templates:11001
msgid "Try ${RELEASE}"
msgstr "Yesani ${RELEASE}"

#. Type: text
#. Description
#. RELEASE is a variable substituted into this string, and may be 'Ubuntu'
#: ../ubiquity.templates:12001
msgid "Install ${RELEASE}"
msgstr "Khazikitsani ${RELEASE}"

#. Type: text
#. Description
#: ../ubiquity.templates:13001
msgid ""
"You may wish to read the <a href=\"release-notes\">release notes</a> or <a "
"href=\"update\">update this installer</a>."
msgstr ""
"Muthakufuna kuwelenga izi <a href=\"release-notes\">release notes</a> or <a "
"href=\"update\">update this installer</a>"

#. Type: text
#. Description
#: ../ubiquity.templates:14001
msgid "You may wish to read the <a href=\"release-notes\">release notes</a>."
msgstr "Muthakufuna kuwelenga izi  <a href=\"release-notes\">release notes</a>"

#. Type: text
#. Description
#: ../ubiquity.templates:15001
msgid "You may wish to <a href=\"update\">update this installer</a>."
msgstr "Muthakufuna ku <a href=\"update\">update this installer</a>"

#. Type: text
#. Description
#: ../ubiquity.templates:16001
msgid "Where are you?"
msgstr "Mulikuti?"

#. Type: text
#. Description
#: ../ubiquity.templates:17001
msgid "Keyboard layout"
msgstr "Kayalana kwa makiyi."

#. Type: text
#. Description
#: ../ubiquity.templates:18001
msgid "Choose your keyboard layout:"
msgstr "Sankhani kuyalana kwa makiyi."

#. Type: text
#. Description
#: ../ubiquity.templates:19001
msgid "Type here to test your keyboard"
msgstr "Lembani apa kuti muyese makiyi"

#. Type: text
#. Description
#: ../ubiquity.templates:20001
msgid "Detect Keyboard Layout"
msgstr "Peza kayalidwe ka makiyi"

#. Type: text
#. Description
#: ../ubiquity.templates:21001
msgid "Detect Keyboard Layout..."
msgstr "Peza kayalidwe ka makiyi..."

#. Type: text
#. Description
#: ../ubiquity.templates:22001
msgid "Please press one of the following keys:"
msgstr "Chonde sindikizani limodzi mwa makiyi awa:"

#. Type: text
#. Description
#: ../ubiquity.templates:23001
msgid "Is the following key present on your keyboard?"
msgstr "Kodi kiyi iyi ilipipo pa keyboard panu?"

#. Type: text
#. Description
#: ../ubiquity.templates:24001
msgid "Who are you?"
msgstr "Ndiwe ndani?"

#. Type: text
#. Description
#: ../ubiquity.templates:25001
msgid "Your name:"
msgstr "Dzina lanu:"

#. Type: text
#. Description
#: ../ubiquity.templates:26001
msgid "Pick a username:"
msgstr "Sankhani dzina lomwe mudzigwilitsa ntchito"

#. Type: text
#. Description
#: ../ubiquity.templates:27001
msgid ""
"&lt;small&gt;If more than one person will use this computer, you can set up "
"multiple accounts after installation.&lt;/small&gt;"
msgstr ""
"&lt;small&gt;Ngati anthu ambili angadzagwilitse ntchito komputa iyi, mutha "
"kudzatsegula ma akaunti mukatha kukhazikitsa.&lt;/small&gt;"

#. Type: text
#. Description
#: ../ubiquity.templates:28001
msgid "Must start with a lower-case letter."
msgstr "Muyambe ndi lemba laling'ono."

#. Type: text
#. Description
#: ../ubiquity.templates:29001
msgid "May only contain lower-case letters, digits, hyphens, and underscores."
msgstr ""
"Mutha kulowetsa malemba aang'ono, manambala, chilumikizanitsa, ndi "
"chilumikizanitso cham'musi zokha."

#. Type: text
#. Description
#. Type: text
#. Description
#: ../ubiquity.templates:30001 ../ubiquity.templates:67001
msgid "Skip"
msgstr "Dumphani"

#. Type: text
#. Description
#: ../ubiquity.templates:31001
msgid "Choose a password:"
msgstr "Sankhani liwu lachinsisi"

#. Type: text
#. Description
#: ../ubiquity.templates:32001
msgid ""
"&lt;small&gt;Enter the same password twice, so that it can be checked for "
"typing errors.&lt;/small&gt;"
msgstr ""
"&lt;small&gt;Lowetsani liwu lachinsisi kachiwili, kuti liunikilidwe pa "
"mavuto ena akulemba.&lt;/small&gt;"

#. Type: text
#. Description
#: ../ubiquity.templates:33001
msgid "Password"
msgstr "Liwu la Chinsinsi"

#. Type: text
#. Description
#: ../ubiquity.templates:34001
msgid "Confirm password"
msgstr "Tsimikizani liwu lachinsinsi"

#. Type: text
#. Description
#: ../ubiquity.templates:35001
msgid "Confirm your password:"
msgstr "Tsimikizanu liwu lanu lachinsisi"

#. Type: text
#. Description
#: ../ubiquity.templates:36001
msgid "Your computer's name:"
msgstr "Dzina la kompyuta yanu"

#. Type: text
#. Description
#: ../ubiquity.templates:37001
msgid "The name it uses when it talks to other computers."
msgstr "Dzina limene idzagwilitse ntchitopoyankhula ndi zinzake."

#. Type: text
#. Description
#: ../ubiquity.templates:38001
msgid "Must be between 1 and 63 characters long."
msgstr ""
"Likuyenela kutalika palati pa lemba limodzi ndi makumi asanu ndi limodzi ndi "
"mphambu zitatu."

#. Type: text
#. Description
#: ../ubiquity.templates:39001
msgid "May only contain letters, digits, hyphens, and dots."
msgstr "Mutha kukhala malemba, manambala, chilumikizanitso ndi mipumulo."

#. Type: text
#. Description
#: ../ubiquity.templates:40001
msgid "May not start or end with a hyphen."
msgstr "Osayamba kapena kumalizila ndi chilumikazitsa."

#. Type: text
#. Description
#: ../ubiquity.templates:41001
msgid "May not start or end with a dot, or contain the sequence \"..\"."
msgstr ""
"Osayamba kapena kumalizitsa ndi mpumulo, kapena mupimulo yotsatizana \"..\"."

#. Type: text
#. Description
#: ../ubiquity.templates:42001
msgid "You are running in debugging mode. Do not use a valuable password!"
msgstr ""
"Mukugwilitsa ntchito gawo lokhonzela ndi ku chotsa mavuta. Musagwilitse "
"ntchito liwu lanu lachinsisi!"

#. Type: text
#. Description
#: ../ubiquity.templates:43001
msgid "Passwords do not match"
msgstr "Mawu achinsisi akusiyana"

#. Type: text
#. Description
#: ../ubiquity.templates:44001
msgid "Short password"
msgstr "Liwu lachinsisi lafupika"

#. Type: text
#. Description
#: ../ubiquity.templates:45001
msgid "Weak password"
msgstr "Liwu lachinsisi lofooka"

#. Type: text
#. Description
#: ../ubiquity.templates:46001
msgid "Fair password"
msgstr "Liwu lachinsisi labolako"

#. Type: text
#. Description
#: ../ubiquity.templates:47001
msgid "Good password"
msgstr "Liwu la chinsisi labwino"

#. Type: text
#. Description
#: ../ubiquity.templates:48001
msgid "Strong password"
msgstr "Liwu la chinsisi lodalilika"

#. Type: text
#. Description
#: ../ubiquity.templates:49001
msgid "Log in automatically"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:50001
msgid "Require my password to log in"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:51001
msgid "Encrypt my home folder"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:52001
msgid "Installation type"
msgstr ""

#. Type: text
#. Description
#. SIZE is a variable substituted into this string, and may be '100 GB'
#: ../ubiquity.templates:53001
msgid "Files (${SIZE})"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:54001
msgid "Where would you like to install Kubuntu?"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:55001
msgid "Prepare partitions"
msgstr ""

#. Type: text
#. Description
#. This is used as a button label, and should be translated as an action.
#. Omit the [ ... ] from the translation.
#: ../ubiquity.templates:56001
msgid "_Install Now[ action ]"
msgstr ""

#. Type: title
#. Description
#: ../ubiquity.templates:57001
msgid "Quit the installation?"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:58001
msgid "Do you really want to quit the installation now?"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:59001
msgid "Bootloader install failed"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:60001
msgid ""
"Sorry, an error occurred and it was not possible to install the bootloader "
"at the specified location."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:61001
msgid "Choose a different device to install the bootloader on:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:62001
msgid "Continue without a bootloader."
msgstr ""

#. Type: text
#. Description
#. RELEASE is a variable substituted into this string, and may be 'Ubuntu'
#: ../ubiquity.templates:63001
msgid ""
"You will need to manually install a bootloader in order to start ${RELEASE}."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:64001
msgid "Cancel the installation."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:65001
msgid "This may leave your computer unable to boot."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:66001
msgid "How would you like to proceed?"
msgstr ""

#. Type: title
#. Description
#: ../ubiquity.templates:68001
msgid "Installation Complete"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:69001
msgid "Continue Testing"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:70001
msgid "Restart Now"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:71001
msgid "Shutdown Now"
msgstr ""

#. Type: text
#. Description
#. Type: text
#. Description
#: ../ubiquity.templates:73001 ../ubiquity.templates:74001
msgid "Installer crashed"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:75001
msgid ""
"We're sorry; the installer crashed. After you close this window, we'll allow "
"you to file a bug report using the integrated bug reporting tool. This will "
"gather information about your system and your installation process. The "
"details will be sent to our bug tracker and a developer will attend to the "
"problem as soon as possible."
msgstr ""

#. Type: text
#. Description
#. An indicator menu item.  The underscore goes before an accelerator key.
#: ../ubiquity.templates:76001
msgid "_High Contrast"
msgstr ""

#. Type: text
#. Description
#. An indicator menu item.  The underscore goes before an accelerator key.
#: ../ubiquity.templates:77001
msgid "_Screen Reader"
msgstr ""

#. Type: text
#. Description
#. An indicator menu item.  The underscore goes before an accelerator key.
#: ../ubiquity.templates:78001
msgid "_Keyboard Modifiers"
msgstr ""

#. Type: text
#. Description
#. An indicator menu item.  The underscore goes before an accelerator key.
#: ../ubiquity.templates:79001
msgid "_On-screen Keyboard"
msgstr ""

#. Type: text
#. Description
#. An action, displayed on a button or as a menu item.
#: ../ubiquity.templates:80001
msgid "New Partition Table..."
msgstr ""

#. Type: text
#. Description
#. An action, displayed on a button or as a menu item.
#: ../ubiquity.templates:81001
msgid "Add..."
msgstr ""

#. Type: text
#. Description
#. An action, displayed on a button or as a menu item.
#: ../ubiquity.templates:82001
msgid "Change..."
msgstr ""

#. Type: text
#. Description
#. An action, displayed on a button or as a menu item.
#: ../ubiquity.templates:83001
msgid "Delete"
msgstr ""

#. Type: text
#. Description
#. An action, displayed on a button or as a menu item.
#. Type: text
#. Description
#: ../ubiquity.templates:84001 ../ubiquity.templates:281001
msgid "Revert"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:85001
msgid "Recalculating partitions..."
msgstr ""

#. Type: text
#. Description
#. A column heading in the partitioner.
#: ../ubiquity.templates:86001
msgid "Device"
msgstr ""

#. Type: text
#. Description
#. A column heading in the partitioner. Indicates how the partition is to be
#. used (ext2, swap, etc.).
#: ../ubiquity.templates:87001
msgid "Type"
msgstr ""

#. Type: text
#. Description
#. A column heading in the partitioner.
#: ../ubiquity.templates:88001
msgid "Mount point"
msgstr ""

#. Type: text
#. Description
#. A column heading in the partitioner.
#: ../ubiquity.templates:89001
msgid "Format?"
msgstr ""

#. Type: text
#. Description
#. A column heading in the partitioner.
#: ../ubiquity.templates:90001
msgid "Size"
msgstr ""

#. Type: text
#. Description
#. A column heading in the partitioner. Indicates how much of the space on
#. this partition is used by data.
#: ../ubiquity.templates:91001
msgid "Used"
msgstr ""

#. Type: text
#. Description
#. A column heading in the partitioner.
#: ../ubiquity.templates:92001
msgid "System"
msgstr ""

#. Type: text
#. Description
#. Indicates unpartitioned free space on a disk.
#: ../ubiquity.templates:93001
msgid "free space"
msgstr ""

#. Type: text
#. Description
#. Indicates that we do not know how much space is used on this partition.
#: ../ubiquity.templates:94001
msgid "unknown"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:95001
msgid "Create partition"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:96001
msgid "Size:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:97001
msgid "Beginning of this space"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:98001
msgid "End of this space"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:99001
msgid "Primary"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:100001
msgid "Logical"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:101001
msgid "Edit partition"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:102001
msgid "Edit a partition"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:103001
msgid "Boot loader"
msgstr "Kukhonzekela Kuyatsa"

#. Type: text
#. Description
#. RELEASE is a variable substituted into this string, and may be 'Ubuntu'
#: ../ubiquity.templates:104001
msgid ""
"Installation has finished.  You can continue testing ${RELEASE} now, but "
"until you restart the computer, any changes you make or documents you save "
"will not be preserved."
msgstr ""

#. Type: text
#. Description
#. Translators, this text will appear on a button, so KEEP IT SHORT
#: ../ubiquity.templates:105001
msgid "Go Back"
msgstr ""

#. Type: text
#. Description
#. Translators, this text will appear on a button, so KEEP IT SHORT
#. Type: text
#. Description
#. Translators, this text will appear on a button, so KEEP IT SHORT
#: ../ubiquity.templates:106001 ../ubiquity.templates:109001
msgid "Continue"
msgstr "Pitiriza"

#. Type: text
#. Description
#. Translators, this text will appear on a button, so KEEP IT SHORT
#: ../ubiquity.templates:107001
msgid "Connect"
msgstr ""

#. Type: text
#. Description
#. Translators, this text will appear on a button, so KEEP IT SHORT
#: ../ubiquity.templates:108001
msgid "Stop"
msgstr ""

#. Type: text
#. Description
#. Translators, this text will appear on a button, so KEEP IT SHORT
#: ../ubiquity.templates:110001
msgid "Continue in UEFI mode"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:111001
msgid ""
"Installation is complete. You need to restart the computer in order to use "
"the new installation."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:112001
msgid "Verifying the installation configuration..."
msgstr ""

#. Type: title
#. Description
#: ../ubiquity.templates:113001
msgid "Installing system"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:114001
msgid "Finding the distribution to copy..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:116001
msgid "Copying files..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:117001
msgid "Almost finished copying files..."
msgstr ""

#. Type: error
#. Description
#. Type: error
#. Description
#. Type: error
#. Description
#. Type: error
#. Description
#. Type: select
#. Description
#: ../ubiquity.templates:118001 ../ubiquity.templates:119001
#: ../ubiquity.templates:120001 ../ubiquity.templates:121001
#: ../ubiquity.templates:122001
msgid "Installation Failed"
msgstr ""

#. Type: error
#. Description
#. Type: error
#. Description
#. Type: error
#. Description
#. Type: error
#. Description
#: ../ubiquity.templates:118001 ../ubiquity.templates:119001
#: ../ubiquity.templates:120001 ../ubiquity.templates:121001
msgid "The installer encountered an error copying files to the hard disk:"
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:118001
msgid ""
"This is due to there being insufficient disk space for the install to "
"complete on the target partition.  Please run the installer again and select "
"a larger partition to install into."
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:119001
msgid ""
"This is often due to a faulty CD/DVD disk or drive. It may help to clean the "
"CD/DVD, to burn the CD/DVD at a lower speed, or to clean the CD/DVD drive "
"lens (cleaning kits are often available from electronics suppliers)."
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:120001
msgid ""
"This is often due to a faulty hard disk. It may help to check whether the "
"hard disk is old and in need of replacement, or to move the system to a "
"cooler environment."
msgstr ""

#. Type: error
#. Description
#. This is used when we don't know whether the CD/DVD or the hard disk is at
#. fault.
#. Type: select
#. Description
#. This is used when there was an md5 mismatch during copying, meaning that
#. the source file and destination file are not equal.
#: ../ubiquity.templates:121001 ../ubiquity.templates:122001
msgid ""
"This is often due to a faulty CD/DVD disk or drive, or a faulty hard disk. "
"It may help to clean the CD/DVD, to burn the CD/DVD at a lower speed, to "
"clean the CD/DVD drive lens (cleaning kits are often available from "
"electronics suppliers), to check whether the hard disk is old and in need of "
"replacement, or to move the system to a cooler environment."
msgstr ""

#. Type: select
#. Description
#: ../ubiquity.templates:122001
msgid "The following file did not match its source copy on the CD/DVD:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:123001
msgid "Copying installation logs..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:124001
msgid "Configuring target system..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:125001
msgid "Configuring system locales..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:126001
msgid "Configuring apt..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:127001
msgid "Configuring time zone..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:128001
msgid "Configuring keyboard..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:129001
msgid "Creating user..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:130001
msgid "Configuring hardware..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:131001
msgid "Installing third-party software..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:132001
msgid "Configuring network..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:133001
msgid "Configuring boot loader..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:134001
msgid "Saving installed packages..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:135001
msgid "Restoring previously installed packages..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:136001
msgid "Installing additional packages..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:137001
msgid "Checking for packages to install..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:138001
msgid "Removing extra packages..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:139001
msgid "Checking for packages to remove..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:140001
msgid "Downloading packages (${TIME} remaining)..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:141001
msgid "Downloading package lists..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:142001
msgid "Downloading package lists (${TIME} remaining)..."
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:144001
msgid "Error installing ${PACKAGE}"
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:145001
msgid "Error removing ${PACKAGE}"
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:146001
msgid "Error while installing packages"
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:146001
msgid "An error occurred while installing packages:"
msgstr ""

#. Type: error
#. Description
#. Type: error
#. Description
#: ../ubiquity.templates:146001 ../ubiquity.templates:147001
msgid "The following packages are in a broken state:"
msgstr ""

#. Type: error
#. Description
#. Type: error
#. Description
#: ../ubiquity.templates:146001 ../ubiquity.templates:147001
msgid ""
"This may be due to using an old installer image, or it may be due to a bug "
"in some of the packages listed above. More details may be found in /var/log/"
"syslog. The installer will try to continue anyway, but may fail at a later "
"point, and will not be able to install or remove other packages (possibly "
"including itself) from the installed system. You should first look for newer "
"versions of your installer image, or failing that report the problem to your "
"distributor."
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:147001
msgid "Error while removing packages"
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:147001
msgid "An error occurred while removing packages:"
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:148001
msgid "Error copying network configuration"
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:148001
msgid ""
"An error occurred while copying the network settings.  The installation will "
"continue, but the network configuration will have to be set up again in the "
"installed system."
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:149001
msgid "Error copying bluetooth configuration"
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:149001
msgid ""
"An error occurred while copying the bluetooth settings.  The installation "
"will continue, but the bluetooth configuration will have to be set up again "
"in the installed system."
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:150001
msgid "Error restoring installed applications"
msgstr ""

#. Type: error
#. Description
#: ../ubiquity.templates:150001
msgid ""
"An error occurred while restoring previously-installed applications.  The "
"installation will continue, but you may have to manually reinstall some "
"applications after the computer reboots."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:154001
msgid "Calculating files to skip copying..."
msgstr ""

#. Type: title
#. Description
#: ../ubiquity.templates:155001
msgid "Installing language packs"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:156001
msgid "Downloading language packs (${TIME} remaining)..."
msgstr ""

#. Type: boolean
#. Description
#: ../ubiquity.templates:165001
msgid "Failed to unmount partitions"
msgstr ""

#. Type: boolean
#. Description
#: ../ubiquity.templates:165001
msgid ""
"The installer needs to commit changes to partition tables, but cannot do so "
"because partitions on the following mount points could not be unmounted:"
msgstr ""

#. Type: boolean
#. Description
#: ../ubiquity.templates:165001
msgid "Please close any applications using these mount points."
msgstr ""

#. Type: boolean
#. Description
#: ../ubiquity.templates:165001
msgid "Would you like the installer to try to unmount these partitions again?"
msgstr ""

#. Type: boolean
#. Description
#: ../ubiquity.templates:171001
msgid "Do you want to return to the partitioner?"
msgstr ""

#. Type: boolean
#. Description
#: ../ubiquity.templates:171001
msgid ""
"Some of the partitions you created are too small.  Please make the following "
"partitions at least this large:"
msgstr ""

#. Type: boolean
#. Description
#: ../ubiquity.templates:171001
msgid ""
"If you do not go back to the partitioner and increase the size of these "
"partitions, the installation may fail."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:173001
msgid "System Configuration"
msgstr ""

#. Type: text
#. Description
#. Type: text
#. Description
#: ../ubiquity.templates:174001 ../ubiquity.templates:245001
msgid "Welcome"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:175001
msgid "Network configuration"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:176001
msgid "Software selection"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:177001
msgid "Language"
msgstr ""

#. Type: text
#. Description
#. Type: text
#. Description
#: ../ubiquity.templates:178001 ../ubiquity.templates:202001
msgid "Wireless"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:179001
msgid "Prepare"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:180001
msgid "Timezone"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:181001
msgid "Keyboard"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:182001
msgid "Disk Setup"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:183001
msgid "User Info"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:185001
msgid "installation process"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:187001
msgid "Checking for installer updates"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:188001
msgid "Reading package information"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:189001
msgid "Updating package information"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:190001
msgid "File ${INDEX} of ${TOTAL} at ${SPEED}/s"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:191001
msgid "File ${INDEX} of ${TOTAL}"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:192001
msgid "Installing update"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:193001
msgid "Error updating installer"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:193001
msgid "The installer encountered an error while trying to update itself:"
msgstr ""

#. Type: text
#. Description
#. Translated acronym for Universal Serial Bus.
#: ../ubiquity.templates:194001
msgid "USB disk"
msgstr ""

#. Type: text
#. Description
#. Translated acronym for Compact Disc.
#: ../ubiquity.templates:195001
msgid "CD"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:196001
msgid ""
"Please choose the language to use for the install process. This language "
"will be the default language for this computer."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:197001
msgid ""
"Please choose the language used for the configuration process. This language "
"will be the default language for this computer."
msgstr ""

#. Type: text
#. Description
#. Type: text
#. Description
#: ../ubiquity.templates:198001 ../ubiquity.templates:199001
msgid "Installation failed"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:198001
msgid ""
"The installer encountered an unrecoverable error.  A desktop session will "
"now be run so that you may investigate the problem or try installing again."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:199001
msgid "The installer encountered an unrecoverable error and will now reboot."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:201001
msgid "Updates and other software"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:203001
msgid ""
"Connecting this computer to a wi-fi network allows you to install third-"
"party software, download updates, automatically detect your timezone, and "
"install full support for your language."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:204001
msgid "Password:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:205001
msgid "Display password"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:206001
msgid "I don't want to connect to a wi-fi network right now"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:207001
msgid "Connect to this network"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:212001
msgid "Select drive:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:213001
msgid "Allocate drive space by dragging the divider below:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:214001
msgid "The entire disk will be used:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:215001
#, no-c-format
msgid ""
"<small>%d smaller partitions are hidden, use the <a href=\"\">advanced "
"partitioning tool</a> for more control</small>"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:216001
msgid ""
"<small>1 smaller partition is hidden, use the <a href=\"\">advanced "
"partitioning tool</a> for more control</small>"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:217001
#, no-c-format
msgid ""
"%d partitions will be deleted, use the <a href=\"\">advanced partitioning "
"tool</a> for more control"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:218001
msgid ""
"1 partition will be deleted, use the <a href=\"\">advanced partitioning "
"tool</a> for more control"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:219001
msgid "Split Largest Partition"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:221001
msgid "For best results, please ensure that this computer:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:222001
msgid "Sorry"
msgstr ""

#. Type: text
#. Description
#. SIZE is a variable substituted into this string, and may be '3.7 GB'
#. RELEASE is a variable substituted into this string, the Ubuntu flavor'
#: ../ubiquity.templates:223001
msgid "You need at least ${SIZE} disk space to install ${RELEASE}."
msgstr ""

#. Type: text
#. Description
#. SIZE is a variable substituted into this string, and may be '3.7 GB'
#: ../ubiquity.templates:224001
msgid "This computer has only ${SIZE}."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:225001
msgid "is plugged in to a power source"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:226001
msgid "is connected to the Internet"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:227001
msgid ""
"This software is subject to license terms included with its documentation. "
"Some is proprietary."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:228001
msgid ""
"Install software for graphics, Wi-Fi hardware, and additional media playback"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:229001
msgid "Download updates while installing ${RELEASE}"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:230001
msgid "This saves time after installation."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:231001
msgid "Not available because there is no Internet connection."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:232001
msgid "Minimal installation"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:233001
msgid ""
"This will only install a minimal desktop environment with a browser and "
"utilities."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:234001
msgid ""
"Installing third-party drivers requires turning off Secure Boot. To do this, "
"you need to choose a security key now, and enter it when the system restarts."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:238001
msgid "Layout:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:239001
msgid "Variant:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:240001
msgid "Below is an image of your current layout:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:241001
msgid ""
"Select your location, so that the system can use appropriate display "
"conventions for your country, fetch updates from sites close to you, and set "
"the clock to the correct local time."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:242001
msgid "Time Zone:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:243001
msgid "Region:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:244001
msgid "[type here to change]"
msgstr ""

#. Type: text
#. Description
#. OS is a variable substituted into this string, and may be 'Windows 7'
#. DISTRO is a variable substituted into this string, and may be 'Ubuntu'
#: ../ubiquity.templates:247001
msgid "Replace ${OS} with ${DISTRO}"
msgstr ""

#. Type: text
#. Description
#. OS is a variable substituted into this string, and may be 'Windows 7'
#: ../ubiquity.templates:247001
msgid ""
"<span foreground=\"darkred\">Warning:</span> This will delete all of your "
"${OS} programs, documents, photos, music, and any other files."
msgstr ""

#. Type: text
#. Description
#. DISTRO is a variable substituted into this string, and may be 'Ubuntu'
#. OS is a variable substituted into this string, and may be 'Windows 7'
#: ../ubiquity.templates:248001
msgid "Install ${DISTRO} alongside ${OS}"
msgstr ""

#. Type: text
#. Description
#. Type: text
#. Description
#. Type: text
#. Description
#. Type: text
#. Description
#: ../ubiquity.templates:248001 ../ubiquity.templates:249001
#: ../ubiquity.templates:253001 ../ubiquity.templates:258001
msgid ""
"Documents, music, and other personal files will be kept. You can choose "
"which operating system you want each time the computer starts up."
msgstr ""

#. Type: text
#. Description
#. DISTRO is a variable substituted into this string, and may be 'Ubuntu'
#. OS is a variable substituted into this string, and may be 'Windows 7'
#: ../ubiquity.templates:249001
msgid "Install ${DISTRO} inside ${OS}"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:250001
msgid "Something else"
msgstr ""

#. Type: text
#. Description
#. DISTRO is a variable substituted into this string, and may be 'Ubuntu'
#: ../ubiquity.templates:250001
msgid ""
"You can create or resize partitions yourself, or choose multiple partitions "
"for ${DISTRO}."
msgstr ""

#. Type: text
#. Description
#. CURDISTRO is a variable substituted into this string, and may be 'Ubuntu 10.10'
#: ../ubiquity.templates:251001
msgid "Erase ${CURDISTRO} and reinstall"
msgstr ""

#. Type: text
#. Description
#. CURDISTRO is a variable substituted into this string, and may be 'Ubuntu 10.10'
#: ../ubiquity.templates:251001
msgid ""
"<span foreground=\"darkred\">Warning:</span> This will delete all your "
"${CURDISTRO} programs, documents, photos, music, and any other files."
msgstr ""

#. Type: text
#. Description
#. CURDISTRO is a variable substituted into this string, and may be 'Ubuntu 10.10'
#. VER is a variable substituted into this string, and may be '11.04'
#: ../ubiquity.templates:252001
msgid "Upgrade ${CURDISTRO} to ${VER}"
msgstr ""

#. Type: text
#. Description
#. Type: text
#. Description
#: ../ubiquity.templates:252001 ../ubiquity.templates:256001
msgid ""
"Documents, music, and other personal files will be kept. Installed software "
"will be kept where possible. System-wide settings will be cleared."
msgstr ""

#. Type: text
#. Description
#. DISTRO is a variable substituted into this string, and may be 'Ubuntu'
#. VER is a variable substituted into this string, and may be '11.04'
#. CURDISTRO is a variable substituted into this string, and may be 'Ubuntu 10.10'
#: ../ubiquity.templates:253001
msgid "Install ${DISTRO} ${VER} alongside ${CURDISTRO}"
msgstr ""

#. Type: text
#. Description
#. DISTRO is a variable substituted into this string, and may be 'Ubuntu'
#. Type: text
#. Description
#. DISTRO is a variable substituted into this string, and may be 'Ubuntu'
#: ../ubiquity.templates:254001 ../ubiquity.templates:257001
msgid "Erase disk and install ${DISTRO}"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:254001
msgid ""
"<span foreground=\"darkred\">Warning:</span> This will delete any files on "
"the disk."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:255001
msgid "Erase everything and reinstall"
msgstr ""

#. Type: text
#. Description
#. OS is a variable substituted into this string, and may be 'Windows 7'
#. CURDISTRO is a variable substituted into this string, and may be 'Ubuntu 10.10'
#: ../ubiquity.templates:255001
msgid ""
"<span foreground=\"darkred\">Warning:</span> This will delete all your "
"programs, documents, photos, music, and other files in both ${OS} and "
"${CURDISTRO}."
msgstr ""

#. Type: text
#. Description
#. CURDISTRO is a variable substituted into this string, and may be 'Ubuntu 10.10'
#: ../ubiquity.templates:256001
msgid "Reinstall ${CURDISTRO}"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:257001
msgid ""
"<span foreground=\"darkred\">Warning:</span> This will delete all your "
"programs, documents, photos, music, and any other files in all operating "
"systems."
msgstr ""

#. Type: text
#. Description
#. DISTRO is a variable substituted into this string, and may be 'Ubuntu'
#: ../ubiquity.templates:258001
msgid "Install ${DISTRO} alongside them"
msgstr ""

#. Type: text
#. Description
#. OS is a variable substituted into this string, and may be 'Windows 7'
#: ../ubiquity.templates:259001
msgid "This computer currently has ${OS} on it. What would you like to do?"
msgstr ""

#. Type: text
#. Description
#. OS1 is a variable substituted into this string, and may be 'Windows 7'
#. OS2 is a variable substituted into this string, and may be 'Mac OS X'
#: ../ubiquity.templates:260001
msgid ""
"This computer currently has ${OS1} and ${OS2} on it. What would you like to "
"do?"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:261001
msgid ""
"This computer currently has multiple operating systems on it. What would you "
"like to do?"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:262001
msgid ""
"This computer currently has no detected operating systems. What would you "
"like to do?"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:263001
msgid "Before:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:264001
msgid "After:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:265001
msgid "Encrypt the new ${RELEASE} installation for security"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:266001
msgid "You will choose a security key in the next step."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:267001
msgid "Use LVM with the new ${RELEASE} installation"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:268001
msgid ""
"This will set up Logical Volume Management. It allows taking snapshots and "
"easier partition resizing."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:269001
msgid "Confirm the security key:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:270001
msgid "Choose a security key:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:271001
msgid ""
"Disk encryption protects your files in case you lose your computer. It "
"requires you to enter a security key each time the computer starts up."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:272001
msgid "Any files outside of ${RELEASE} will not be encrypted."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:273001
msgid ""
"<span foreground=\"darkred\">Warning:</span> If you lose this security key, "
"all data will be lost. If you need to, write down your key and keep it in a "
"safe place elsewhere."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:274001
msgid "For more security:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:275001
msgid "Overwrite empty disk space"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:276001
msgid "The installation may take much longer."
msgstr ""

#. Type: text
#. description
#: ../ubiquity.templates:277001
msgid "LVM..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:278001
msgid "Volume groups:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:279001
msgid "Encryption Options"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:280001
msgid "Physical volumes:"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:282001
msgid "Encrypt this partition (LUKS)"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:283001
msgid "MB"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:284001
msgid ""
"Logical Volume Management (LVM) lets ${RELEASE} treat multiple physical "
"volumes as a single volume."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:285001
msgid "Logical Volume Management"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:286001
msgid "Encryption options..."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:287001
msgid "UEFI Secure Boot"
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:288001
msgid ""
"You have chosen to enable third-party software as part of your install, "
"which for this system includes hardware drivers for graphics and/or wi-fi "
"hardware. Your system also has UEFI Secure Boot enabled. UEFI Secure Boot is "
"not compatible with the use of these third-party drivers."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:288001
msgid ""
"After installation completes, Ubuntu will assist you in disabling UEFI "
"Secure Boot. To ensure that this change is being made by you as an "
"authorized user, and not by an attacker, you must choose a password now and "
"then use the same password after reboot to confirm the change."
msgstr ""

#. Type: text
#. Description
#: ../ubiquity.templates:288001
msgid ""
"<span foreground=\"darkred\">Warning</span>: If you choose not to install "
"these drivers, or if you proceed but do not confirm the password upon "
"reboot, Ubuntu will still be able to boot on your system but these third-"
"party drivers will not be available for your hardware."
msgstr ""

#. Type: password
#. Description
#: ../ubiquity.templates:289001
msgid "SecureBoot key for MokPW"
msgstr ""

#. Type: title
#. Description
#. Info message displayed when running in OEM mode
#: ../oem-config-check.templates:2001
msgid "OEM mode (for manufacturers only)"
msgstr ""

#. Type: text
#. Description
#. Translators: OEM stands for "Original Equipment Manufacturer", used in
#. this case to describe an organisation that pre-installs the operating
#. system on hardware and then sells the result to end users. These strings
#. will typically only be displayed to OEMs themselves, so you don't have to
#. worry too much about clarity.
#: ../oem-config-udeb.templates:1001
msgid "Prepare for OEM configuration"
msgstr ""

#. Type: text
#. Description
#. finish-install progress bar item
#: ../oem-config-udeb.templates:2001
msgid "Preparing for OEM configuration..."
msgstr ""

#. Type: text
#. Description
#: ../oem-config-udeb.templates:3001
msgid "Ready for OEM configuration"
msgstr ""

#. Type: text
#. Description
#: ../oem-config-udeb.templates:3001
msgid ""
"When you boot into the new system, you will be able to log in as the 'oem' "
"user with the password you selected earlier; this user also has "
"administrative privileges using 'sudo'. You will then be able to make any "
"additional modifications you require to the system."
msgstr ""

#. Type: text
#. Description
#: ../oem-config-udeb.templates:3001
msgid ""
"Once the system is configured to your satisfaction, run 'oem-config-"
"prepare'. This will cause the system to delete the temporary 'oem' user and "
"ask the end user various configuration questions the next time it boots."
msgstr ""

#. Type: text
#. Description
#: ../oem-config.templates:2001
msgid "Removing packages"
msgstr ""