~ubuntu-core-doc/ubuntu-docs/ubuntu-jaunty

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
# Urdu translation for ubuntu-docs
# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006
# This file is distributed under the same license as the ubuntu-docs package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: ubuntu-docs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-04-03 23:06+0100\n"
"PO-Revision-Date: 2007-03-21 21:11+0000\n"
"Last-Translator: Hameed محمد حمید <hameeduddin517@yahoo.com>\n"
"Language-Team: Urdu <urd@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-04-09 18:37+0000\n"
"X-Generator: Launchpad (build Unknown)\n"

#: windows/C/windows-C.omf:6(creator) windows/C/windows-C.omf:7(maintainer)
msgid "ubuntu-doc@lists.ubuntu.com (Ubuntu Documentation Project)"
msgstr ""

#: windows/C/windows-C.omf:8(title) windows/C/windows.xml:15(title)
msgid "If you have been using Windows"
msgstr ""

#: windows/C/windows-C.omf:9(date)
msgid "2006-09-07"
msgstr ""

#: windows/C/windows-C.omf:11(description)
msgid "Placeholder."
msgstr ""

#: windows/C/windows.xml:3(title)
msgid "Credits and License"
msgstr ""

#: windows/C/windows.xml:4(para)
msgid ""
"This document is maintained by the Ubuntu documentation team "
"(https://wiki.ubuntu.com/DocumentationTeam). For a list of contributors, see "
"the <ulink url=\"../../libs/C/contributors.xml\">contributors page</ulink>"
msgstr ""

#: windows/C/windows.xml:5(para)
msgid ""
"This document is made available under the Creative Commons ShareAlike 2.5 "
"License (CC-BY-SA)."
msgstr ""

#: windows/C/windows.xml:6(para)
msgid ""
"You are free to modify, extend, and improve the Ubuntu documentation source "
"code under the terms of this license. All derivative works must be released "
"under this license."
msgstr ""

#: windows/C/windows.xml:8(para)
msgid ""
"This documentation is distributed in the hope that it will be useful, but "
"WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY "
"or FITNESS FOR A PARTICULAR PURPOSE AS DESCRIBED IN THE DISCLAIMER."
msgstr ""

#: windows/C/windows.xml:11(para)
msgid ""
"A copy of the license is available here: <ulink url=\"/usr/share/ubuntu-"
"docs/libs/C/ccbysa.xml\">Creative Commons ShareAlike License</ulink>."
msgstr ""

#: windows/C/windows.xml:14(year)
msgid "2008"
msgstr ""

#: windows/C/windows.xml:15(ulink)
msgid "Ubuntu Documentation Project"
msgstr ""

#: windows/C/windows.xml:15(holder)
msgid "Canonical Ltd. and members of the <placeholder-1/>"
msgstr ""

#: windows/C/windows.xml:18(publishername)
msgid "The Ubuntu Documentation Project"
msgstr ""

#: windows/C/preparing.xml:15(title)
msgid "Preparing to switch"
msgstr ""

#: windows/C/preparing.xml:16(para)
msgid ""
"While using Windows you will have probably stored a great deal of data, "
"including documents, emails, photographs and music. The chances are that you "
"will want to keep most of this information for use with Ubuntu. This section "
"provides instructions on moving your data to Ubuntu."
msgstr ""

#: windows/C/preparing.xml:19(title)
msgid "Converting unsupported file types"
msgstr ""

#: windows/C/preparing.xml:20(para)
msgid ""
"While applications available for Ubuntu support most common file types, "
"there are still many file types which are not supported. If you have files "
"in an unsupported format, it is recommended that you try to convert them to "
"a supported format before switching. This section covers some common, "
"unsupported or only partially-supported file types and lists possible "
"alternatives and methods of conversion."
msgstr ""

#: windows/C/preparing.xml:22(emphasis)
msgid "Some types of file cannot be used in Ubuntu"
msgstr ""

#: windows/C/preparing.xml:23(emphasis)
msgid "Check to see whether the file types you use are supported"
msgstr ""

#: windows/C/preparing.xml:24(emphasis)
msgid "Convert the files which are of an unsupported type"
msgstr ""

#: windows/C/preparing.xml:27(title)
msgid "Converting unsupported audio formats"
msgstr ""

#: windows/C/preparing.xml:29(emphasis)
msgid ""
"Many common audio formats cannot be played on Ubuntu without the "
"installation of additional software. This is due to legal restrictions."
msgstr ""

#: windows/C/preparing.xml:31(para)
msgid ""
"Unfortunately, due to legal restrictions and technical issues with some "
"common audio formats, Ubuntu cannot play certain audio formats out-of-the-"
"box. While support for certain restricted formats can be added after you "
"have installed Ubuntu, it can be advantageous to convert audio files to a "
"well-supported format. This is especially important if the files have been "
"encoded using some form of <emphasis>Digital Rights Management "
"(DRM)</emphasis> software, as DRM restrictions can render files unplayable "
"in all applications but the one in which they were applied."
msgstr ""

#: windows/C/preparing.xml:32(para)
msgid ""
"The following major audio formats are proprietary and so are not supported "
"by default in Ubuntu:"
msgstr ""

#: windows/C/preparing.xml:34(para)
msgid "MP3"
msgstr ""

#: windows/C/preparing.xml:35(para)
msgid "WMA"
msgstr ""

#: windows/C/preparing.xml:36(para)
msgid "AAC"
msgstr ""

#: windows/C/preparing.xml:37(para)
msgid "RealAudio"
msgstr ""

#: windows/C/preparing.xml:39(para)
msgid ""
"For a well-supported audio format to replace MP3 and WMA, consider the "
"<emphasis>Ogg Vorbis</emphasis> format. For a well-supported lossless (very "
"high quality) format to replace AAC Lossless and WMA-VBR, consider the "
"<emphasis>FLAC</emphasis> format. Both of these formats are open, and can be "
"played in Ubuntu without the installation of any additional software."
msgstr ""

#: windows/C/preparing.xml:40(para)
msgid ""
"There are many audio conversion applications for Windows available for "
"download, and some of these can be obtained free of charge. These "
"applications are also sometimes referred to as <emphasis>audio "
"(re)encoders</emphasis>. Your choice of application depends on the formats "
"which you wish to convert from and to. See websites such as <ulink "
"url=\"http://www.download.com/Rippers-Encoders/3150-2140_4-"
"0.html?tag=dir\">Download.com</ulink> for a list of potentially useful "
"applications."
msgstr ""

#: windows/C/preparing.xml:41(para) windows/C/preparing.xml:57(para)
msgid ""
"It is still possible to add support for many restricted formats (such as "
"those listed above) to Ubuntu after installation. See the <ulink "
"url=\"https://help.ubuntu.com/community/RestrictedFormats\">Restricted "
"Formats</ulink> document on the Ubuntu community support website for more "
"information."
msgstr ""

#: windows/C/preparing.xml:44(title)
msgid "Converting unsupported video formats"
msgstr ""

#: windows/C/preparing.xml:46(emphasis)
msgid ""
"Many common video formats cannot be played on Ubuntu without the "
"installation of additional software. This is due to legal restrictions."
msgstr ""

#: windows/C/preparing.xml:48(para)
msgid ""
"As with audio formats, due to legal and technical issues, many video formats "
"are not supported by the default Ubuntu install. While support for some "
"formats can be added at a later date, it is recommended that you convert "
"important video files in unsupported formats to a format which is well "
"supported in Ubuntu."
msgstr ""

#: windows/C/preparing.xml:49(para)
msgid ""
"As with the audio formats, there are many video converter applications "
"available as free-of-charge downloads for Windows. Consider converting your "
"video files to a format which is well-supported by Ubuntu, such as "
"<emphasis>Ogg Theora</emphasis>."
msgstr ""

#: windows/C/preparing.xml:50(para)
msgid ""
"The following major video formats are not supported by default in Ubuntu:"
msgstr ""

#: windows/C/preparing.xml:52(para)
msgid "WMV"
msgstr ""

#: windows/C/preparing.xml:53(para)
msgid "RealVideo"
msgstr ""

#: windows/C/preparing.xml:54(para)
msgid "DivX"
msgstr ""

#: windows/C/preparing.xml:55(para)
msgid "QuickTime"
msgstr ""

#: windows/C/preparing.xml:60(title)
msgid "Converting unsupported office document formats"
msgstr ""

#: windows/C/preparing.xml:62(emphasis)
msgid ""
"Ubuntu office applications can read most common office document formats "
"without the need for conversion"
msgstr ""

#: windows/C/preparing.xml:64(para)
msgid ""
"The default office suite of Ubuntu, "
"<application>OpenOffice.org</application>, supports very many office "
"document formats right out of the box. These include many of the Microsoft "
"Office, Corel and Lotus formats. If you find that you do have files in "
"formats which are unsupported, it is likely that your existing office suite "
"or application will have the ability to save the files to a better-supported "
"format."
msgstr ""

#: windows/C/preparing.xml:65(para)
msgid ""
"The OpenDocument file formats are gaining popularity and are expected to "
"become the de facto supported office formats for Ubuntu. While many older "
"applications cannot save to the OpenDocument format, other formats such as "
".doc and RTF are also well supported."
msgstr ""

#: windows/C/preparing.xml:68(title)
msgid "Converting from application-specific formats"
msgstr ""

#: windows/C/preparing.xml:70(emphasis)
msgid ""
"Some file formats are specific to particular Windows-only applications, and "
"so cannot be used with Ubuntu software"
msgstr ""

#: windows/C/preparing.xml:72(para)
msgid ""
"Many applications use file formats specific to them. A good example is the "
"<application>Adobe Photoshop</application> file format. Formats such as "
"these are generally able to store additional data compared to widely-used "
"standard formats and so are still useful. You may find that applications "
"exist on Ubuntu to convert or use application specific formats. The "
"<application>GIMP Image Editor</application> is able to use Adobe PSD files, "
"for example."
msgstr ""

#: windows/C/preparing.xml:73(para)
msgid ""
"If you are uncertain whether a format is application-specific or has a "
"usable alternative, seek help from an <ulink "
"url=\"http://www.ubuntu.com/support\">Ubuntu support channel</ulink>."
msgstr ""

#: windows/C/preparing.xml:77(title)
msgid "Internet connection settings"
msgstr ""

#: windows/C/preparing.xml:78(para)
msgid ""
"The Internet connection settings which are relevant to you will depend on "
"the type and supplier of your Internet connection. Your supplier will "
"generally be able to advise you of the relevant settings if you encounter "
"difficulties in finding them yourself."
msgstr ""

#: windows/C/preparing.xml:80(para)
msgid ""
"If you connect to the Internet using a network or router, see <xref "
"linkend=\"preparing-settings-network\"/> for instructions."
msgstr ""

#: windows/C/preparing.xml:83(title)
msgid "Dial-up Internet connection"
msgstr ""

#: windows/C/preparing.xml:84(para) windows/C/preparing.xml:99(para)
msgid "Below is a list of common settings which you are likely to need:"
msgstr ""

#: windows/C/preparing.xml:86(para) windows/C/preparing.xml:101(para) windows/C/preparing.xml:185(para)
msgid "User name"
msgstr ""

#: windows/C/preparing.xml:87(para) windows/C/preparing.xml:102(para) windows/C/preparing.xml:186(para) windows/C/preparing.xml:234(para)
msgid "Password"
msgstr ""

#: windows/C/preparing.xml:88(para)
msgid "Dial-up telephone number"
msgstr ""

#: windows/C/preparing.xml:90(para)
msgid "You may also require the following information:"
msgstr ""

#: windows/C/preparing.xml:92(para)
msgid "Dial-out number"
msgstr ""

#: windows/C/preparing.xml:93(para)
msgid "Dialling type (tone or pulse)"
msgstr ""

#: windows/C/preparing.xml:94(para)
msgid "Authentication type"
msgstr ""

#: windows/C/preparing.xml:98(title)
msgid "Broadband Internet connection"
msgstr ""

#: windows/C/preparing.xml:103(para)
msgid "Dialling telephone number"
msgstr ""

#: windows/C/preparing.xml:104(para)
msgid "Connection type (usually PPPoE or PPPoA)"
msgstr ""

#: windows/C/preparing.xml:106(para)
msgid ""
"It is possible that you may also require the following technical "
"information, which should be available from your Internet service provider:"
msgstr ""

#: windows/C/preparing.xml:108(para)
msgid "IP address and subnet mask"
msgstr ""

#: windows/C/preparing.xml:109(para)
msgid "DNS server, gateway IP address or DHCP server"
msgstr ""

#: windows/C/preparing.xml:110(para)
msgid "VPI/VCI"
msgstr ""

#: windows/C/preparing.xml:111(para)
msgid "MTU"
msgstr ""

#: windows/C/preparing.xml:112(para)
msgid "Encapsulation type"
msgstr ""

#: windows/C/preparing.xml:113(para)
msgid "DHCP settings"
msgstr ""

#: windows/C/preparing.xml:117(title)
msgid "Proxy server settings"
msgstr ""

#: windows/C/preparing.xml:118(para)
msgid ""
"If you connect to the Internet through a proxy server, you will need to make "
"a note of some details of the proxy server in order to allow Ubuntu to "
"connect to the Internet."
msgstr ""

#: windows/C/preparing.xml:125(para)
msgid ""
"If the <guilabel>Control Panel</guilabel> has a purple background, press "
"<menuchoice><guimenuitem>Network and Internet "
"Connections</guimenuitem><guimenuitem>Internet "
"Options</guimenuitem></menuchoice>."
msgstr ""

#: windows/C/preparing.xml:130(para)
msgid ""
"If the <guilabel>Control Panel</guilabel> has a white background, press "
"<guilabel>Internet Options</guilabel>."
msgstr ""

#: windows/C/preparing.xml:121(para)
msgid ""
"Press <menuchoice><guimenuitem>Start</guimenuitem><guimenuitem>Control "
"Panel</guimenuitem></menuchoice>. <placeholder-1/>"
msgstr ""

#: windows/C/preparing.xml:137(para)
msgid ""
"On the <guilabel>Connections</guilabel> tab, press <guibutton>LAN "
"Settings...</guibutton>."
msgstr ""

#: windows/C/preparing.xml:138(para)
msgid ""
"If the <guilabel>Use a proxy server for your LAN</guilabel> option is "
"ticked, this means that you are connecting to the Internet through a proxy "
"server."
msgstr ""

#: windows/C/preparing.xml:139(para)
msgid ""
"Press <guibutton>Advanced...</guibutton> and make a note of the contents of "
"the boxes on the screen which appears. These are your proxy settings."
msgstr ""

#: windows/C/preparing.xml:144(title)
msgid "Network settings"
msgstr ""

#: windows/C/preparing.xml:145(para)
msgid ""
"While Ubuntu is usually able to automatically detect the settings for your "
"network, it is wise to make a note of relevant network settings in case the "
"network you are trying to connect to cannot be handled automatically."
msgstr ""

#: windows/C/preparing.xml:147(title)
msgid "Home networks"
msgstr ""

#: windows/C/preparing.xml:148(para)
msgid ""
"If you have a home network, perhaps connected using a router or switch, "
"there are a few settings which you may need in order to connect to the "
"network successfully. While most networks will be able to assign correct "
"settings to Ubuntu automatically, some networks cannot."
msgstr ""

#: windows/C/preparing.xml:149(para)
msgid ""
"Follow the instructions below to obtain a copy of the network settings which "
"you may need:"
msgstr ""

#: windows/C/preparing.xml:151(para)
msgid ""
"Press "
"<menuchoice><guimenuitem>Start</guimenuitem><guimenuitem>Run</guimenuitem></m"
"enuchoice>. Type <emphasis>cmd.exe</emphasis> into the box labelled "
"<guilabel>Open:</guilabel> and press <guibutton>OK</guibutton>."
msgstr ""

#: windows/C/preparing.xml:152(para)
msgid ""
"A black screen called <application>Command Prompt</application> will appear. "
"Into the screen, type <screen>ipconfig /all</screen> and press "
"<keycap>Enter</keycap>. This will list a set of network settings for each of "
"the networking devices you have installed. You may have one or several "
"networking devices."
msgstr ""

#: windows/C/preparing.xml:153(para)
msgid ""
"Now, type <screen>ipconfig /all &gt; C:\\network_settings.txt</screen> and "
"then press <keycap>Enter</keycap>. This will store the settings you have "
"just seen in the file <filename>C:\\network_settings.txt</filename>."
msgstr ""

#: windows/C/preparing.xml:154(para)
msgid ""
"Locate and open <filename>C:\\network_settings</filename> in a text editing "
"program, such as <application>Notepad</application>. Print out a copy of the "
"file if possible."
msgstr ""

#: windows/C/preparing.xml:158(title)
msgid "Windows networks"
msgstr ""

#: windows/C/preparing.xml:159(para)
msgid ""
"If you connect to a Windows network, you may need some additional "
"information in order to be able to see documents placed in network shares. "
"If you connect to a network administered by another person, ask that person "
"for the relevant information on connecting to the network. Otherwise, ensure "
"that you have access to the information listed below:"
msgstr ""

#: windows/C/preparing.xml:161(para)
msgid "Domain or workgroup name"
msgstr ""

#: windows/C/preparing.xml:162(para)
msgid "Your username and password on the network"
msgstr ""

#: windows/C/preparing.xml:163(para)
msgid "Active Directory master IP address (if applicable)"
msgstr ""

#: windows/C/preparing.xml:167(title)
msgid "Wireless networks"
msgstr ""

#: windows/C/preparing.xml:168(para)
msgid ""
"There are several important pieces of information which you should have to "
"hand if you would like to connect to a wireless network. These are listed "
"below:"
msgstr ""

#: windows/C/preparing.xml:170(para)
msgid "Network name (SSID)"
msgstr ""

#: windows/C/preparing.xml:171(para)
msgid "WEP encryption key or WPA passkey"
msgstr ""

#: windows/C/preparing.xml:173(para)
msgid ""
"There are numerous ways of discovering this information. If your wireless "
"network is provided by a <emphasis>wireless router</emphasis>, you should be "
"able to find this information from the configuration pages of the router. "
"Consult the router manual for more information on where to find the relevant "
"information."
msgstr ""

#: windows/C/preparing.xml:176(title)
msgid "VPNs"
msgstr ""

#: windows/C/preparing.xml:177(para)
msgid ""
"<emphasis>Virtual Private Networks</emphasis> are a type of network which "
"allow you to connect to a remote private network using a public network such "
"as the Internet. There are many different types of VPN, which have varying "
"degrees of support under Ubuntu. If you must connect to a VPN, first "
"identify the type of VPN which you are connecting to. If the VPN is "
"supported under Ubuntu, it is possible that a document will be available "
"from the VPN vendor's website which can help you to connect to the network."
msgstr ""

#: windows/C/preparing.xml:178(para)
msgid ""
"Ensure that you have all of the VPN connection information that you think "
"you may require."
msgstr ""

#: windows/C/preparing.xml:182(title)
msgid "Instant messaging settings"
msgstr ""

#: windows/C/preparing.xml:183(para)
msgid ""
"If you use instant messaging (chat) software, you will have set up a user "
"account on an instant messaging network. Ubuntu has excellent support for "
"many instant messaging networks by default, so you should still be able to "
"use your existing account after you have switched. Please ensure that you "
"make a note of the following information about your instant messaging "
"account:"
msgstr ""

#: windows/C/preparing.xml:187(para)
msgid "Screen name or alias"
msgstr ""

#: windows/C/preparing.xml:189(para)
msgid "If possible, also make a copy of your buddy- or contact-list."
msgstr ""

#: windows/C/preparing.xml:192(title)
msgid "Web browser bookmarks"
msgstr ""

#: windows/C/preparing.xml:193(para)
msgid ""
"It is likely that you have many bookmarked websites in your web browser. "
"This section helps you back them up."
msgstr ""

#: windows/C/preparing.xml:195(title) windows/C/glossary.xml:58(glossterm)
msgid "Internet Explorer"
msgstr ""

#: windows/C/preparing.xml:196(para)
msgid ""
"To backup your <application>Microsoft Internet Explorer 6</application> web "
"browser:"
msgstr ""

#: windows/C/preparing.xml:198(para)
msgid "Start <application>Internet Explorer</application>."
msgstr ""

#: windows/C/preparing.xml:199(para)
msgid ""
"Press <menuchoice><guimenuitem>File</guimenuitem><guimenuitem>Import and "
"Export...</guimenuitem></menuchoice>."
msgstr ""

#: windows/C/preparing.xml:200(para)
msgid ""
"The <application>Import/Export Wizard</application> will start. Press "
"<guibutton>Next</guibutton>."
msgstr ""

#: windows/C/preparing.xml:201(para)
msgid ""
"Select <guilabel>Export Favorites</guilabel> and press "
"<guibutton>Next</guibutton>."
msgstr ""

#: windows/C/preparing.xml:202(para)
msgid ""
"Select the folder from which you want to export your favorites. Selecting "
"the <guilabel>Favorites</guilabel> folder will will export all of them. "
"Press <guibutton>Next</guibutton>."
msgstr ""

#: windows/C/preparing.xml:203(para)
msgid ""
"Select <guilabel>Export to a File or Address</guilabel> and choose a "
"filename. Press <guibutton>Next</guibutton>."
msgstr ""

#: windows/C/preparing.xml:204(para)
msgid ""
"<guilabel>Completing the Import/Export Wizard</guilabel> will be displayed. "
"Press <guibutton>Finish</guibutton>."
msgstr ""

#: windows/C/preparing.xml:205(para)
msgid ""
"Your bookmarks will have been saved to the filename you specified previously."
msgstr ""

#: windows/C/preparing.xml:209(title)
msgid "Mozilla Firefox"
msgstr ""

#: windows/C/preparing.xml:210(para)
msgid ""
"To backup your <application>Mozilla Firefox</application> web browser:"
msgstr ""

#: windows/C/preparing.xml:212(para)
msgid "Start <application>Mozilla Firefox</application>."
msgstr ""

#: windows/C/preparing.xml:213(para)
msgid ""
"Press <menuchoice><guimenuitem>Bookmarks</guimenuitem><guimenuitem>Manage "
"Bookmarks</guimenuitem></menuchoice>."
msgstr ""

#: windows/C/preparing.xml:214(para) windows/C/preparing.xml:224(para)
msgid ""
"Press "
"<menuchoice><guimenuitem>File</guimenuitem><guimenuitem>Export...</guimenuite"
"m></menuchoice>."
msgstr ""

#: windows/C/preparing.xml:215(para) windows/C/preparing.xml:225(para)
msgid "Choose a filename. Press <guibutton>Save</guibutton>."
msgstr ""

#: windows/C/preparing.xml:219(title)
msgid "Opera"
msgstr ""

#: windows/C/preparing.xml:220(para)
msgid "To backup your <application>Opera</application> web browser:"
msgstr ""

#: windows/C/preparing.xml:222(para)
msgid "Start <application>Opera</application>."
msgstr ""

#: windows/C/preparing.xml:223(para)
msgid ""
"Press <menuchoice><guimenuitem>File</guimenuitem><guimenuitem>Import and "
"Export</guimenuitem><guimenuitem>Export Bookmarks as "
"HTML</guimenuitem></menuchoice>."
msgstr ""

#: windows/C/preparing.xml:230(title)
msgid "Emails and mail account settings"
msgstr ""

#: windows/C/preparing.xml:231(para)
msgid ""
"You can use the same email account in Ubuntu as you have done in Windows. If "
"you have a web-based email account you should simply be able to access it "
"using a web browser as you would have done in Windows. Otherwise, please "
"note down the following information so that you can re-create your account "
"settings on Ubuntu:"
msgstr ""

#: windows/C/preparing.xml:233(para)
msgid "Email address"
msgstr ""

#: windows/C/preparing.xml:235(para)
msgid "POP3 or IMAP server"
msgstr ""

#: windows/C/preparing.xml:236(para)
msgid "SMTP server"
msgstr ""

#: windows/C/preparing.xml:237(para)
msgid "Authentication method"
msgstr ""

#: windows/C/preparing.xml:239(para)
msgid ""
"The instructions on exporting emails and email account settings are specific "
"to particular applications. Instructions for some popular email clients are "
"given in the following sections; users of other applications may find "
"instructions relevant to their mail application from the Ubuntu <ulink "
"url=\"https://help.ubuntu.com/community\">Ubuntu community support "
"website</ulink>."
msgstr ""

#: windows/C/preparing.xml:242(title)
msgid "Microsoft Outlook Express"
msgstr ""

#: windows/C/preparing.xml:243(para)
msgid ""
"These instructions are intended for users of <application>Microsoft Outlook "
"Express 6</application>. If you are a user of a different version of "
"<application>Outlook Express</application>, you may find instructions "
"specific to that version from the Ubuntu <ulink "
"url=\"https://help.ubuntu.com/community\">Ubuntu community support "
"website</ulink>."
msgstr ""

#: windows/C/preparing.xml:245(title)
msgid "Exporting the address book"
msgstr ""

#: windows/C/preparing.xml:247(para)
msgid ""
"Open <application>Outlook Express</application> and press "
"<menuchoice><guimenuitem>File</guimenuitem><guimenuitem>Export</guimenuitem><"
"guimenuitem>Address Book...</guimenuitem></menuchoice>"
msgstr ""

#: windows/C/preparing.xml:248(para)
msgid ""
"The <application>Address Book Export Tool</application> will start. Select "
"the option <guilabel>Text File (Comma Separated Values)</guilabel> and then "
"press <guibutton>Export</guibutton>."
msgstr ""

#: windows/C/preparing.xml:249(para)
msgid ""
"Save the file in a memorable location. Give the file a descriptive name, "
"such as <filename>mail_address_book.csv</filename>, and press "
"<guibutton>Next</guibutton>."
msgstr ""

#: windows/C/preparing.xml:250(para)
msgid ""
"Select the details from the address book which you would like to export. If "
"you are unsure, tick all of the options. Then, press "
"<guibutton>Finish</guibutton>."
msgstr ""

#: windows/C/preparing.xml:251(para)
msgid ""
"You should receive a message stating that the <guilabel>Address book export "
"process has completed</guilabel>. Press <guibutton>OK</guibutton> and then "
"<guibutton>Close</guibutton>. Your address book should now have been "
"exported successfully."
msgstr ""

#: windows/C/preparing.xml:255(title)
msgid "Exporting mail messages from Outlook Express"
msgstr ""

#: windows/C/preparing.xml:256(para)
msgid ""
"Because <application>Microsoft Outlook Express</application> is unable to "
"export its mail messages to an intermediate format, you must install another "
"piece of software in order to export your email."
msgstr ""

#: windows/C/preparing.xml:257(para) windows/C/preparing.xml:300(para)
msgid ""
"Please see <xref linkend=\"preparing-email-import\"/> for instructions on "
"importing your email into the <application>Mozilla Thunderbird</application> "
"application, which will allow the exporting of your messages."
msgstr ""

#: windows/C/preparing.xml:261(title)
msgid "Microsoft Office Outlook"
msgstr ""

#: windows/C/preparing.xml:262(para)
msgid ""
"These instructions are intended for users of <application>Microsoft Office "
"Outlook 2003</application>. If you are a user of a different version of "
"<application>Outlook</application>, you may find instructions specific to "
"that version on the wiki."
msgstr ""

#: windows/C/preparing.xml:264(title)
msgid "Exporting all Outlook data"
msgstr ""

#: windows/C/preparing.xml:266(para)
msgid ""
"This method may be unreliable and should be used for backup purposes only."
msgstr ""

#: windows/C/preparing.xml:269(para)
msgid ""
"Open <application>Outlook</application> and press "
"<menuchoice><guimenuitem>Tools</guimenuitem><guimenuitem>Options...</guimenui"
"tem></menuchoice>"
msgstr ""

#: windows/C/preparing.xml:270(para)
msgid ""
"Select the <guilabel>Mail Setup</guilabel> tab and press <guibutton>Data "
"Files...</guibutton>"
msgstr ""

#: windows/C/preparing.xml:271(para)
msgid ""
"A screen called <guilabel>Outlook Data Files</guilabel> will be displayed. "
"Select the first file in the list, make a note of its name, and press "
"<guibutton>Open Folder...</guibutton>"
msgstr ""

#: windows/C/preparing.xml:272(para)
msgid ""
"A folder will open. Find the file you just selected. If you have difficultly "
"finding the file, it should be of type <emphasis>Office Data File</emphasis> "
"or have the file extension <filename>.pst</filename>."
msgstr ""

#: windows/C/preparing.xml:273(para)
msgid ""
"Copy the file into the location you are using to store your exported "
"settings."
msgstr ""

#: windows/C/preparing.xml:274(para)
msgid ""
"Repeat this process for all of the files which were listed on the "
"<guilabel>Outlook Data Files</guilabel> screen."
msgstr ""

#: windows/C/preparing.xml:278(title)
msgid "Exporting your contacts"
msgstr ""

#: windows/C/preparing.xml:280(para) windows/C/preparing.xml:290(para)
msgid ""
"Open <application>Outlook</application> and press "
"<menuchoice><guimenuitem>File</guimenuitem><guimenuitem>Import and "
"Export...</guimenuitem></menuchoice>"
msgstr ""

#: windows/C/preparing.xml:281(para) windows/C/preparing.xml:291(para)
msgid ""
"The <application>Import and Export Wizard</application> will start. Select "
"the option <guilabel>Export to a file</guilabel> and then press "
"<guibutton>Next</guibutton>."
msgstr ""

#: windows/C/preparing.xml:282(para) windows/C/preparing.xml:292(para)
msgid ""
"Select <guilabel>Comma Separated Values (DOS)</guilabel> and press "
"<guibutton>Next</guibutton>"
msgstr ""

#: windows/C/preparing.xml:283(para)
msgid ""
"Select the <guilabel>Contacts</guilabel> folder and press "
"<guibutton>Next</guibutton>. Then, choose where to save the file and press "
"<guibutton>Next</guibutton>."
msgstr ""

#: windows/C/preparing.xml:284(para) windows/C/preparing.xml:294(para)
msgid ""
"A screen listing <guilabel>Actions to be performed</guilabel> will be shown. "
"Press <guibutton>Finish</guibutton> to export your contacts to the location "
"you selected in the previous step."
msgstr ""

#: windows/C/preparing.xml:288(title)
msgid "Exporting your calendar"
msgstr ""

#: windows/C/preparing.xml:293(para)
msgid ""
"Select the <guilabel>Calendars</guilabel> folder and press "
"<guibutton>Next</guibutton>. Then, choose where to save the file and press "
"<guibutton>Next</guibutton>."
msgstr ""

#: windows/C/preparing.xml:298(title)
msgid "Exporting mail messages"
msgstr ""

#: windows/C/preparing.xml:299(para)
msgid ""
"Because <application>Microsoft Outlook</application> is unable to fully "
"export its mail messages to a usable intermediate format, you must install "
"another piece of software in order to export your email."
msgstr ""

#: windows/C/preparing.xml:304(title)
msgid "Preparing email for export using Mozilla Thunderbird"
msgstr ""

#: windows/C/preparing.xml:305(para)
msgid ""
"Because some mail clients (such as <application>Microsoft "
"Outlook</application> and <application>Microsoft Outlook "
"Express</application>) do not store their mail messages in a standard "
"format, an additional piece of software must be used to convert the mail "
"before export. <application>Mozilla Thunderbird</application> is a free, "
"open-source application which is able to do this."
msgstr ""

#: windows/C/preparing.xml:306(para)
msgid ""
"The following instructions explain how to obtain Thunderbird and then use it "
"to prepare mail messages for export:"
msgstr ""

#: windows/C/preparing.xml:308(para)
msgid ""
"Open a web browser and navigate to the <ulink "
"url=\"http://www.mozilla.com/thunderbird/\">Mozilla Thunderbird "
"website</ulink>. Follow the link to download <application>Mozilla "
"Thunderbird</application>."
msgstr ""

#: windows/C/preparing.xml:309(para)
msgid ""
"Once the download has completed, run the installer package. Follow the "
"instructions to install Thunderbird."
msgstr ""

#: windows/C/preparing.xml:310(para)
msgid ""
"Once the installer has completed, start <application>Mozilla "
"Thunderbird</application>. You should be greeted with the "
"<application>Import Wizard</application>. Follow the instructions to import "
"all settings - this should import your mail and some other data."
msgstr ""

#: windows/C/preparing.xml:311(para)
msgid ""
"If the <application>Import Wizard</application> does not appear, press "
"<menuchoice><guimenuitem>Tools</guimenuitem><guimenuitem>Import...</guimenuit"
"em></menuchoice> and choose the <guilabel>Mail</guilabel> option. Follow the "
"instructions to import your mail."
msgstr ""

#: windows/C/preparing.xml:313(para)
msgid ""
"Once all of your mail has been imported, you must now make a copy of it for "
"exporting. Please see <xref linkend=\"preparing-email-thunderbird\"/> for "
"instructions on how to do this."
msgstr ""

#: windows/C/preparing.xml:316(title)
msgid "Exporting email messages from Mozilla Thunderbird"
msgstr ""

#: windows/C/preparing.xml:317(para)
msgid ""
"These instructions are intended for users of <application>Mozilla "
"Thunderbird</application> and users of <application>Outlook</application> "
"and <application>Outlook Express</application> who imported their mail into "
"Thunderbird (see <xref linkend=\"preparing-email-import\"/>)."
msgstr ""

#: windows/C/preparing.xml:319(para)
msgid ""
"Press "
"<menuchoice><guimenuitem>Start</guimenuitem><guimenuitem>Run</guimenuitem></m"
"enuchoice>, type <emphasis>%AppData%\\Thunderbird\\Profiles\\</emphasis> "
"into the box provided, and then press <guibutton>OK</guibutton>. A folder "
"will open."
msgstr ""

#: windows/C/preparing.xml:320(para)
msgid ""
"In the newly-opened folder, you should find another folder with a name made "
"up mostly of random characters, for example "
"<emphasis>fyhsxlr3.default</emphasis>. Open this folder."
msgstr ""

#: windows/C/preparing.xml:321(para)
msgid ""
"In this folder, locate a folder named <filename>Mail</filename> or "
"<filename>ImapMail</filename>. Select this folder and copy it to a safe "
"location."
msgstr ""

#: windows/C/preparing.xml:322(para)
msgid ""
"When you switch to Ubuntu, make a back-up copy of the folder you just made a "
"copy of. This folder contains all of your mail folders from Thunderbird, in "
"the <emphasis>mbox</emphasis> format."
msgstr ""

#: windows/C/preparing.xml:327(title)
msgid "Transferring your data safely"
msgstr ""

#: windows/C/preparing.xml:328(para)
msgid ""
"Once you have collected together all of the files and settings you might "
"need, you must create a copy of them which can be stored safely while you "
"initially install Ubuntu. There are many ways of storing a copy of this "
"data, and which method you choose will depend on your particular "
"circumstances."
msgstr ""

#: windows/C/preparing.xml:330(para)
msgid ""
"After you have made a copy of your files, it is very important to <emphasis "
"role=\"strong\">test the files</emphasis> to ensure that they have been "
"copied successfully. If you have many files, at least check the most "
"important files and randomly check other files where possible. This will "
"help to protect you from data loss."
msgstr ""

#: windows/C/preparing.xml:333(title)
msgid "Direct transfer"
msgstr ""

#: windows/C/preparing.xml:334(para)
msgid ""
"If you are installing Ubuntu onto a different computer than the one on which "
"your data is stored, you can leave the data you collected on that computer "
"and can safely transfer the data across once Ubuntu has been installed onto "
"the other computer."
msgstr ""

#: windows/C/preparing.xml:335(para)
msgid ""
"When ready, you can transfer the data between the computers using a network "
"connection."
msgstr ""

#: windows/C/preparing.xml:338(title)
msgid "CD or DVD disc"
msgstr ""

#: windows/C/preparing.xml:339(para)
msgid ""
"A common and reliable way of backing-up data is by using a recordable CD or "
"DVD disc. CDs and DVDs can be used by almost all computers and are "
"relatively cheap. However, your computer must have a CD or DVD recorder "
"drive installed and you may have to use several CDs or DVDs if the data you "
"have collected is larger than the capacity of a single disc."
msgstr ""

#: windows/C/preparing.xml:340(para)
msgid ""
"If possible, use DVD discs as these have a larger capacity and so you will "
"require fewer discs to store all of your data. CDs typically have a capacity "
"of 650-700MB while DVDs can normally hold up to 4.5GB of data (roughly "
"equivalent to 7 CDs)."
msgstr ""

#: windows/C/preparing.xml:341(para)
msgid ""
"In order to store data on a blank CD or DVD, you must use a <emphasis>CD "
"writing</emphasis> application. Microsoft Windows XP includes such an "
"application by default, although other such applications are capable of "
"storing your data just as well."
msgstr ""

#: windows/C/preparing.xml:343(para)
msgid ""
"Ensure that your CD- or DVD-writing drive contains no discs. Eject any discs "
"currently in the drive."
msgstr ""

#: windows/C/preparing.xml:344(para)
msgid ""
"Press <menuchoice><guimenuitem>Start</guimenuitem><guimenuitem>My "
"Computer</guimenuitem></menuchoice>. Locate your CD or DVD writing drive - "
"it will likely have a name such as <guilabel>CD-RW drive</guilabel>."
msgstr ""

#: windows/C/preparing.xml:345(para)
msgid ""
"Double-click on the icon of the drive. A blank folder should open, with a "
"heading called <guilabel>CD Writing Tasks</guilabel> shown in the blue panel "
"to the left of the screen."
msgstr ""

#: windows/C/preparing.xml:346(para)
msgid ""
"Leave this folder open and then open the folder containing the files which "
"you have collected together."
msgstr ""

#: windows/C/preparing.xml:347(para)
msgid ""
"Select as many files as you are able to fit onto the disc which you will be "
"using. You can check the size of the current selection by right-clicking any "
"selected file and choosing <guilabel>Properties</guilabel> from the menu "
"which appears. The <guilabel>Size</guilabel> field on the "
"<guilabel>General</guilabel> tab gives the size of the current selection."
msgstr ""

#: windows/C/preparing.xml:348(para)
msgid ""
"Copy the selected files into the CD- or DVD-drive folder which you opened "
"earlier."
msgstr ""

#: windows/C/preparing.xml:349(para)
msgid ""
"Press <guibutton>Write these files to CD</guibutton>, which can be found in "
"the blue panel. The <application>CD Writing Wizard</application> will start."
msgstr ""

#: windows/C/preparing.xml:350(para)
msgid ""
"Follow the instructions given on-screen by the <application>CD Writing "
"Wizard</application>. This will write the selected files to a blank CD or "
"DVD."
msgstr ""

#: windows/C/preparing.xml:351(para)
msgid ""
"Once the disc has been written, eject it and then re-insert it into the "
"drive. In <filename>My Computer</filename>, open the drive and check that "
"the files you just copied to the CD are visible there. Try opening a few of "
"them just to make sure."
msgstr ""

#: windows/C/preparing.xml:352(para)
msgid ""
"Repeat this procedure until all of the files you collected together are "
"safely stored onto CDs or DVDs."
msgstr ""

#: windows/C/preparing.xml:354(para)
msgid ""
"Once you have stored your data onto discs, ensure that the discs are well "
"protected and labelled correctly. If you scratch or otherwise damage a disc, "
"you may lose some of the data stored on it. Labelling discs also helps to "
"avoid confusion and will allow you to quickly find data when the time comes "
"to transfer it back onto a computer."
msgstr ""

#: windows/C/preparing.xml:357(title)
msgid "External hard-disk drive or other removable device"
msgstr ""

#: windows/C/preparing.xml:358(para)
msgid ""
"If you have access to an external hard-disk drive or some other removable "
"storage device of a great enough capacity, then you can simply copy the "
"files you have collected onto this device. When ready to transfer the files "
"onto your Ubuntu installation, you may simply connect the drive and copy the "
"files from it again."
msgstr ""

#: windows/C/preparing.xml:359(para)
msgid ""
"Removable storage devices such as external hard disks will have a certain "
"type of <emphasis>file system</emphasis>. For use on removable devices, the "
"best supported filesystem for Ubuntu is <emphasis>FAT</emphasis> (also "
"called <emphasis>FAT32</emphasis> or <emphasis>vfat</emphasis>). While other "
"file systems (such as NTFS and HFS+) are usable, they may require additional "
"steps to allow you to use them with Ubuntu. If possible, try to use the FAT "
"format for your removable disk."
msgstr ""

#: windows/C/preparing.xml:360(para)
msgid ""
"You can discover the format of an external disk by right-clicking it in "
"<filename>My Computer</filename> and selecting "
"<guilabel>Properties</guilabel>. The format of the disk is shown in the "
"<guilabel>General</guilabel> tab under <guilabel>File system</guilabel>."
msgstr ""

#: windows/C/preparing.xml:363(title)
msgid "Network share"
msgstr ""

#: windows/C/preparing.xml:364(para)
msgid ""
"If your computer is connected to a network, you may be able to temporarily "
"store the files which you collected together on another computer on the "
"network."
msgstr ""

#: windows/C/preparing.xml:366(para)
msgid ""
"Ensure that a computer on the network has sufficient disk space to allow you "
"to copy your files onto it."
msgstr ""

#: windows/C/preparing.xml:367(para)
msgid ""
"Ensure that you are able to copy files onto the other computer from your "
"computer. To be able to do this, the computer must have at least one "
"<emphasis>network share/shared folder</emphasis> and you must have "
"<emphasis>write privileges</emphasis> for that network share."
msgstr ""

#: windows/C/preparing.xml:368(para)
msgid ""
"Open the network share on your computer. This can normally be accessed by "
"pressing <menuchoice><guimenuitem>Start</guimenuitem><guimenuitem>My "
"Computer</guimenuitem><guimenuitem>My Network "
"Places</guimenuitem></menuchoice> and then finding the network share or the "
"computer which provides the network share."
msgstr ""

#: windows/C/preparing.xml:369(para)
msgid ""
"Copy the files you collected into the network share. This may take some time "
"depending on the size of your files and the speed of your network connection."
msgstr ""

#: windows/C/preparing.xml:373(title)
msgid "Secondary hard-disk partition"
msgstr ""

#: windows/C/preparing.xml:374(para)
msgid ""
"If you have a second partition available on your hard disk, or have two hard-"
"disks, then it is possible to copy the files you have collected onto this "
"second drive."
msgstr ""

#: windows/C/preparing.xml:376(para)
msgid ""
"You must be very careful not to over-write the partition on which you have "
"stored your data. It is recommended to make additional back-up copies of "
"your files onto CDs or DVDs in case of this."
msgstr ""

#: windows/C/preparing.xml:378(para)
msgid ""
"Simply copy the files you have collected onto the second drive as it appears "
"in <filename>My Computer</filename>. Ensure that this drive (or partition) "
"is <emphasis role=\"strong\">not</emphasis> the one which you intend to "
"install Ubuntu on to."
msgstr ""

#: windows/C/migratingdata.xml:15(title)
msgid "Migrating your data into Ubuntu"
msgstr ""

#: windows/C/migratingdata.xml:16(para)
msgid ""
"This chapter provides instructions on importing your data from Windows "
"applications to the corresponding Ubuntu applications. The instructions "
"assume that you will use the default collection of applications installed "
"with Ubuntu and have followed the instructions in the <xref "
"linkend=\"preparing\"/> chapter."
msgstr ""

#: windows/C/migratingdata.xml:18(title)
msgid "Files"
msgstr ""

#: windows/C/migratingdata.xml:19(para)
msgid ""
"You will probably want to move your files into your <emphasis>Home "
"folder</emphasis>. It is considered good practice to store "
"<emphasis>all</emphasis> of your personal files (such as documents, "
"pictures, music and the like) in your Home folder. Then, they are all in one "
"easily-accessed location."
msgstr ""

#: windows/C/migratingdata.xml:20(para)
msgid ""
"To access your Home folder, press "
"<menuchoice><guimenu>Places</guimenu><guimenuitem>Home "
"Folder</guimenuitem></menuchoice>. You can create new folders inside your "
"Home folder by pressing "
"<menuchoice><guimenuitem>File</guimenuitem><guimenuitem>Create "
"Folder</guimenuitem></menuchoice>. You may find it useful to create folders "
"for different types of files, such as music and photos. This will help to "
"keep things organized and you will be able to find your files more quickly "
"and easily if they are categorized in this manner."
msgstr ""

#: windows/C/migratingdata.xml:21(para)
msgid ""
"How you copy your files from Windows into your Home folder will depend on "
"how you decided to store your files from Windows. See <xref "
"linkend=\"preparing-storage\"/> for more information on this. However you "
"decided to store your files, the procedure for transferring them across is "
"very simple. For a CD or DVD for example, you would use the following "
"procedure:"
msgstr ""

#: windows/C/migratingdata.xml:23(para)
msgid ""
"Insert the disc into the disc drive of your computer. After a short while, a "
"disc icon should appear on your <filename>desktop</filename>."
msgstr ""

#: windows/C/migratingdata.xml:24(para)
msgid "Double-click the icon to view the contents of the disc."
msgstr ""

#: windows/C/migratingdata.xml:25(para)
msgid ""
"Ensure that your Home folder is open in another window. You can open your "
"Home folder by clicking "
"<menuchoice><guimenuitem>File</guimenuitem><guimenuitem>New "
"Window</guimenuitem></menuchoice>."
msgstr ""

#: windows/C/migratingdata.xml:26(para)
msgid ""
"In the window corresponding to the disc you inserted, press "
"<menuchoice><guimenuitem>Edit</guimenuitem><guimenuitem>Select "
"All</guimenuitem></menuchoice>. This will select all of the contents of the "
"disc."
msgstr ""

#: windows/C/migratingdata.xml:27(para)
msgid ""
"Press "
"<menuchoice><guimenuitem>Edit</guimenuitem><guimenuitem>Copy</guimenuitem></m"
"enuchoice> to make a copy of all of the selected files."
msgstr ""

#: windows/C/migratingdata.xml:28(para)
msgid ""
"In the window corresponding to your Home folder, press "
"<menuchoice><guimenuitem>Edit</guimenuitem><guimenuitem>Paste</guimenuitem></"
"menuchoice> to copy all of the files to your Home folder. If you have many "
"files, this may take a long time."
msgstr ""

#: windows/C/migratingdata.xml:29(para)
msgid ""
"Once the copying process has finished, your files will be available to use "
"as normal."
msgstr ""

#: windows/C/migratingdata.xml:32(title)
msgid "Importing Photos"
msgstr ""

#: windows/C/migratingdata.xml:33(para)
msgid ""
"Ubuntu includes the <application>F-Spot Photo Manager</application>, which "
"you can use to organize all of your photos."
msgstr ""

#: windows/C/migratingdata.xml:35(para)
msgid ""
"Open your Home folder and create a new folder called "
"<emphasis>Photos</emphasis>. You can do this by pressing "
"<menuchoice><guimenuitem>File</guimenuitem><guimenuitem>Create "
"Folder</guimenuitem></menuchoice>."
msgstr ""

#: windows/C/migratingdata.xml:36(para)
msgid "Copy any photos you have into the folder you just created."
msgstr ""

#: windows/C/migratingdata.xml:37(para)
msgid ""
"Press "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Graphics</guimenuitem"
"><guimenuitem>F-Spot Photo Manager</guimenuitem></menuchoice> to start "
"<application>F-Spot</application>."
msgstr ""

#: windows/C/migratingdata.xml:38(para)
msgid ""
"The <application>Import</application> screen should be shown. If it is not, "
"press "
"<menuchoice><guimenuitem>File</guimenuitem><guimenuitem>Import...</guimenuite"
"m></menuchoice> to show it."
msgstr ""

#: windows/C/migratingdata.xml:39(para)
msgid ""
"To prevent two copies of your photos from being stored, un-check the "
"<guilabel>Copy file to the Photos folder</guilabel>."
msgstr ""

#: windows/C/migratingdata.xml:40(para)
msgid ""
"From <guilabel>Import source</guilabel> select the option <guilabel>Select "
"Folder</guilabel>. Select the <filename>Photos</filename> folder in your "
"Home folder by clicking it once."
msgstr ""

#: windows/C/migratingdata.xml:41(para)
msgid ""
"Press <guibutton>Import</guibutton> to start the import process. Depending "
"on how many photos you have, this may take a while."
msgstr ""

#: windows/C/migratingdata.xml:45(title)
msgid "Importing Music"
msgstr ""

#: windows/C/migratingdata.xml:46(para)
msgid ""
"Another useful application installed by default in Ubuntu is the "
"<application>Rhythmbox Music Player</application>. This allows you to "
"organize and play all of your music."
msgstr ""

#: windows/C/migratingdata.xml:48(para)
msgid ""
"Open your Home folder and create a new folder called "
"<emphasis>Music</emphasis>. You can do this by pressing "
"<menuchoice><guimenuitem>File</guimenuitem><guimenuitem>Create "
"Folder</guimenuitem></menuchoice>."
msgstr ""

#: windows/C/migratingdata.xml:49(para)
msgid "Copy any music files you have into the folder you just created."
msgstr ""

#: windows/C/migratingdata.xml:50(para)
msgid ""
"Press <menuchoice><guimenu>Applications</guimenu><guimenuitem>Sound &amp; "
"Video</guimenuitem><guimenuitem>Rhythmbox Music "
"Player</guimenuitem></menuchoice> to start "
"<application>Rhythmbox</application>."
msgstr ""

#: windows/C/migratingdata.xml:51(para)
msgid ""
"Press <menuchoice><guimenuitem>Music</guimenuitem><guimenuitem>Import "
"Folder...</guimenuitem></menuchoice> to begin importing your music. The "
"<application>Import Folder into Library</application> screen will appear."
msgstr ""

#: windows/C/migratingdata.xml:52(para)
msgid ""
"Click the <filename>Music</filename> folder in your Home folder in order to "
"select it, and then press <guibutton>Open</guibutton> to import all playable "
"music in that folder into <application>Rhythmbox</application>."
msgstr ""

#: windows/C/migratingdata.xml:53(para)
msgid ""
"The import process may take a while depending on how many music files you "
"have. Once finished, you can organize and play your music using "
"<application>Rhythmbox</application>."
msgstr ""

#: windows/C/migratingdata.xml:55(para)
msgid ""
"<application>Rhythmbox</application> will alert you if it encounters a file "
"it cannot play. In this case, it is likely that the file cannot be played "
"because support for the audio format it uses is not currently installed. See "
"<xref linkend=\"preparing-converting-audio\"/> for more information on this."
msgstr ""

#: windows/C/migratingdata.xml:59(title)
msgid "Emails"
msgstr ""

#: windows/C/migratingdata.xml:60(para)
msgid ""
"If you saved your emails from Windows, you may now want to import them into "
"the <application>Evolution</application> mail client. The following "
"instructions assume that you are importing emails exported using "
"<application>Mozilla Thunderbird</application>, as described in <xref "
"linkend=\"preparing-email-import\"/>:"
msgstr ""

#: windows/C/migratingdata.xml:62(para) windows/C/migratingdata.xml:76(para) windows/C/migratingdata.xml:89(para)
msgid ""
"Start <application>Evolution</application> by pressing "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Internet</guimenuitem"
"><guimenuitem>Evolution Mail</guimenuitem></menuchoice>."
msgstr ""

#: windows/C/migratingdata.xml:63(para) windows/C/migratingdata.xml:77(para) windows/C/migratingdata.xml:90(para)
msgid ""
"Press "
"<menuchoice><guimenuitem>File</guimenuitem><guimenuitem>Import...</guimenuite"
"m></menuchoice> to start the <application>Evolution Import "
"Assistant</application>. Then, press <guibutton>Forward</guibutton>."
msgstr ""

#: windows/C/migratingdata.xml:64(para) windows/C/migratingdata.xml:78(para) windows/C/migratingdata.xml:91(para)
msgid ""
"Select <guilabel>Import a single file</guilabel> and then press "
"<guibutton>Forward</guibutton>."
msgstr ""

#: windows/C/migratingdata.xml:65(para)
msgid ""
"Press <guibutton>Browse...</guibutton>, locate the folder which you saved "
"your emails into and open it."
msgstr ""

#: windows/C/migratingdata.xml:66(para)
msgid ""
"Open the folder <filename>Local Folders</filename> and look for files with "
"names such as <filename>Inbox</filename>. Select a file and press "
"<guibutton>Open</guibutton>. If you have many email messages, you may have "
"to wait a while for the file to be checked before you can continue."
msgstr ""

#: windows/C/migratingdata.xml:67(para)
msgid ""
"In <guilabel>File type</guilabel>, <guilabel>Berkeley mailbox "
"(mbox)</guilabel> should be selected. Press <guibutton>Forward</guibutton>."
msgstr ""

#: windows/C/migratingdata.xml:68(para)
msgid ""
"Select the location you would like to copy the saved emails into by pressing "
"the button labelled <guilabel>Destination folder</guilabel>. By default this "
"will be the <filename>Inbox</filename> folder, which is the recommended "
"destination for your emails. Then, press <guibutton>Forward</guibutton>."
msgstr ""

#: windows/C/migratingdata.xml:69(para)
msgid ""
"Press <guibutton>Import</guibutton> to import your email messages. If you "
"have a large number of emails, then the import process may take a while. "
"Once importing has finished, your emails should be available for viewing "
"immediately."
msgstr ""

#: windows/C/migratingdata.xml:73(title)
msgid "Contacts/Address Book"
msgstr ""

#: windows/C/migratingdata.xml:74(para)
msgid ""
"If you saved your address book from Windows, you can now import your "
"contacts into <application>Evolution</application>. The following "
"instructions assume that you are importing the address book from "
"<application>Microsoft Outlook Express 6</application> or "
"<application>Microsoft Outlook 2002</application>:"
msgstr ""

#: windows/C/migratingdata.xml:79(para)
msgid ""
"Press <guibutton>Browse...</guibutton>, locate the file which you saved your "
"address book into and select it. Press <guibutton>Open</guibutton>."
msgstr ""

#: windows/C/migratingdata.xml:80(para)
msgid ""
"From <guilabel>File type</guilabel>, select <guilabel>VCard (.vcf, "
".gcrd)</guilabel> or <guilabel>Outlook CSV or Tab (.csv, .tab)</guilabel>, "
"depending on which format you saved your address book into. Press "
"<guibutton>Forward</guibutton>."
msgstr ""

#: windows/C/migratingdata.xml:81(para)
msgid ""
"Choose a location in which to save the contacts, such as "
"<menuchoice><guimenuitem>On This "
"Computer</guimenuitem><guimenuitem>Personal</guimenuitem></menuchoice>.Press "
"<guibutton>Forward</guibutton>."
msgstr ""

#: windows/C/migratingdata.xml:82(para)
msgid ""
"Press <guibutton>Import</guibutton> to import the contacts into "
"<application>Evolution</application>. Once importing has completed, the "
"imported contacts should be immediately available."
msgstr ""

#: windows/C/migratingdata.xml:86(title)
msgid "Calendar"
msgstr ""

#: windows/C/migratingdata.xml:87(para)
msgid ""
"If you saved a calendar from Windows, you can now import it into "
"<application>Evolution</application>, the default calendar application."
msgstr ""

#: windows/C/migratingdata.xml:92(para)
msgid ""
"Press <guibutton>Browse...</guibutton>, locate the file which you saved your "
"calendar into and select it. Press <guibutton>Open</guibutton>."
msgstr ""

#: windows/C/migratingdata.xml:93(para)
msgid ""
"From <guilabel>File type</guilabel>, select <guilabel>vCalendar files "
"(.vcf)</guilabel>, <guilabel>iCalendar files (.ics)</guilabel> or "
"<guilabel>Outlook CSV or Tab (.csv, .tab)</guilabel>, depending on which "
"format you saved your calendar into. Press <guibutton>Forward</guibutton>."
msgstr ""

#: windows/C/migratingdata.xml:94(para)
msgid ""
"Choose a location in which to save the calendar, such as "
"<menuchoice><guimenuitem>On This "
"Computer</guimenuitem><guimenuitem>Personal</guimenuitem></menuchoice>. "
"Ensure that <guilabel>Appointments and Meetings</guilabel> is selected and "
"then press <guibutton>Forward</guibutton>."
msgstr ""

#: windows/C/migratingdata.xml:95(para)
msgid ""
"Press <guibutton>Import</guibutton> to import the calendar into "
"<application>Evolution</application>. Once importing has completed, the new "
"calendar should be immediately available."
msgstr ""

#: windows/C/migratingdata.xml:99(title)
msgid "Browser Bookmarks/Favorites"
msgstr ""

#: windows/C/migratingdata.xml:100(para)
msgid ""
"If you saved the list of favorite web pages from the browser you used on "
"Windows, you can now import them into the web browser available with Ubuntu. "
"The following instructions are intended for users of the default "
"<application>Firefox Web Browser</application> who are importing their "
"favorites from <application>Microsoft Internet Explorer 6</application>. "
"Please see <xref linkend=\"preparing-bookmarks\"/> for more information."
msgstr ""

#: windows/C/migratingdata.xml:102(para)
msgid ""
"Press "
"<menuchoice><guimenu>Applications</guimenu><guisubmenu>Internet</guisubmenu><"
"guimenuitem>Firefox Web Browser</guimenuitem></menuchoice> to start the "
"<application>Firefox Web Browser</application>."
msgstr ""

#: windows/C/migratingdata.xml:103(para)
msgid ""
"Press <menuchoice><guimenuitem>Bookmarks</guimenuitem><guimenuitem>Manage "
"Bookmarks...</guimenuitem></menuchoice> to launch the <application>Bookmark "
"Manager</application>."
msgstr ""

#: windows/C/migratingdata.xml:104(para)
msgid ""
"Press "
"<menuchoice><guimenuitem>File</guimenuitem><guimenuitem>Import...</guimenuite"
"m></menuchoice> and choose the <guilabel>From File</guilabel> option, then "
"press <guibutton>Next</guibutton>."
msgstr ""

#: windows/C/migratingdata.xml:105(para)
msgid ""
"Find and select the file which you originally exported from "
"<application>Internet Explorer</application> (see <xref linkend=\"preparing-"
"bookmarks\"/>) and press <guibutton>OK</guibutton>."
msgstr ""

#: windows/C/migratingdata.xml:106(para)
msgid ""
"Your list of favorite web pages should be imported into "
"<application>Firefox</application>."
msgstr ""

#: windows/C/glossary.xml:14(title)
msgid "Glossary of Windows Terms"
msgstr ""

#: windows/C/glossary.xml:17(glossterm)
msgid "Add/Remove Programs"
msgstr ""

#: windows/C/glossary.xml:19(para)
msgid ""
"Use "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Add/Remove...</guimen"
"uitem></menuchoice> to install applications from Ubuntu&rsquo;s software "
"library, or to remove existing applications from your computer. Use "
"<menuchoice><guimenu>System</guimenu><guimenuitem>Administration</guimenuitem"
"><guimenuitem>Synaptic Package Manager</guimenuitem></menuchoice> for more "
"advanced tasks."
msgstr ""

#: windows/C/glossary.xml:28(glossterm)
msgid "Control Panel"
msgstr ""

#: windows/C/glossary.xml:30(para)
msgid ""
"Settings that affect everyone who uses Ubuntu on this computer are found in "
"<menuchoice><guimenu>System</guimenu><guimenuitem>Administration</guimenuitem"
"></menuchoice>. Settings that just affect you are accessed from "
"<menuchoice><guimenu>System</guimenu><guisubmenu>Preferences</guisubmenu></me"
"nuchoice>."
msgstr ""

#: windows/C/glossary.xml:38(glossterm)
msgid "Explorer"
msgstr ""

#: windows/C/glossary.xml:40(para)
msgid ""
"To manage the files and folders on your computer, start by choosing an item "
"from the <guimenu>Places</guimenu> menu."
msgstr ""

#: windows/C/glossary.xml:47(glossterm)
msgid "Favorites"
msgstr ""

#: windows/C/glossary.xml:49(para)
msgid ""
"Use <guimenu>Places</guimenu> for easy access to commonly-used folders. "
"Firefox has <guimenu>Bookmarks</guimenu>, which are equivalent to Favorites "
"in Internet Explorer."
msgstr ""

#: windows/C/glossary.xml:60(para)
msgid ""
"You can use <application>Firefox</application> to search the Web and visit "
"Web sites: "
"<menuchoice><guimenu>Applications</guimenu><guisubmenu>Internet</guisubmenu><"
"guimenuitem>Firefox Web Browser</guimenuitem></menuchoice>."
msgstr ""

#: windows/C/glossary.xml:67(glossterm)
msgid "Log Off"
msgstr ""

#: windows/C/glossary.xml:69(para)
msgid ""
"To close all your programs and leave the computer ready for someone else to "
"log in, click the <application>User Switcher</application> in the top right "
"hand corner of the screen and then press <guibutton>Log out</guibutton>."
msgstr ""

#: windows/C/glossary.xml:78(glossterm)
msgid "My Computer"
msgstr ""

#: windows/C/glossary.xml:80(para)
msgid ""
"Equivalent items to those in the <quote>My Computer</quote> window are found "
"in various places in Ubuntu."
msgstr ""

#: windows/C/glossary.xml:86(para)
msgid ""
"To see the disks and storage devices connected to the computer, choose "
"<menuchoice><guimenu>Places</guimenu><guimenuitem>Computer</guimenuitem></men"
"uchoice>."
msgstr ""

#: windows/C/glossary.xml:101(glossterm)
msgid "My Documents"
msgstr ""

#: windows/C/glossary.xml:103(para)
msgid ""
"Inside your home folder "
"(<menuchoice><guimenu>Places</guimenu><guimenuitem>Home "
"Folder</guimenuitem></menuchoice>), you can arrange documents and other "
"files in whatever folders you wish."
msgstr ""

#: windows/C/glossary.xml:111(glossterm)
msgid "Printers &amp; Faxes"
msgstr ""

#: windows/C/glossary.xml:113(para)
msgid ""
"Open "
"<menuchoice><guimenu>System</guimenu><guimenuitem>Administration</guimenuitem"
"><guimenuitem>Printing</guimenuitem></menuchoice> to set up printers. Ubuntu "
"does not support faxing."
msgstr ""

#: windows/C/glossary.xml:119(glossterm)
msgid "Recycle Bin"
msgstr ""

#: windows/C/glossary.xml:121(para)
msgid ""
"The <guilabel>Trash</guilabel> works much the same way as the Recycle Bin. "
"The Trash is almost always at the bottom right corner of the screen."
msgstr ""

#: windows/C/glossary.xml:129(glossterm)
msgid "Standby"
msgstr ""

#: windows/C/glossary.xml:131(para)
msgid ""
"To put your computer into a power-saving mode until you resume using it, "
"click the <application>User Switcher</application> in the top right hand "
"corner of the screen, then <guilabel>Suspend</guilabel> or "
"<guilabel>Hibernate</guilabel>. (<guilabel>Hibernate</guilabel> requires no "
"power at all, but is slower, and is not available on some types of computer.)"
msgstr ""

#: windows/C/glossary.xml:142(glossterm)
msgid "Start button"
msgstr ""

#: windows/C/glossary.xml:144(para)
msgid ""
"The three menus at the top left of the screen "
"&mdash;<guimenu>Applications</guimenu>, <guimenu>Places</guimenu>, and "
"<guimenu>System</guimenu>&mdash; contain most of the same things as the "
"Start menu in Windows."
msgstr ""

#: windows/C/glossary.xml:153(glossterm)
msgid "Task Manager"
msgstr ""

#: windows/C/glossary.xml:155(para)
msgid ""
"To see or halt currently running programs, or to track processor and memory "
"usage, choose "
"<menuchoice><guimenu>System</guimenu><guisubmenu>Administration</guisubmenu><"
"guimenuitem>System Monitor</guimenuitem></menuchoice>."
msgstr ""

#: windows/C/glossary.xml:162(glossterm)
msgid "Windows Media Player"
msgstr ""

#: windows/C/glossary.xml:164(para)
msgid ""
"Programs that play music and movies, and rip music CDs, are available from "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Sound &amp; "
"Video</guimenuitem></menuchoice>."
msgstr ""

#: windows/C/glossary.xml:171(glossterm)
msgid "Windows Update"
msgstr ""

#: windows/C/glossary.xml:173(para)
msgid ""
"To check for updates to Ubuntu, open "
"<menuchoice><guimenu>System</guimenu><guimenuitem>Administration</guimenuitem"
"><guimenuitem>Ubuntu Update Manager</guimenuitem></menuchoice>."
msgstr ""

#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2.
#: windows/C/glossary.xml:0(None)
msgid "translator-credits"
msgstr ""