~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
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
# Latin translation for ubuntu-docs
# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008
# This file is distributed under the same license as the ubuntu-docs package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2008.
#
msgid ""
msgstr ""
"Project-Id-Version: ubuntu-docs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-04-03 23:04+0100\n"
"PO-Revision-Date: 2009-04-01 17:47+0000\n"
"Last-Translator: Launchpad Translations Administrators "
"<rosetta@launchpad.net>\n"
"Language-Team: Latin <la@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:48+0000\n"
"X-Generator: Launchpad (build Unknown)\n"

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

#: internet/C/internet-C.omf:8(title) internet/C/internet.xml:16(title)
msgid "Internet and Networks"
msgstr ""

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

#: internet/C/internet-C.omf:11(description)
msgid ""
"Connecting to and browsing the internet, and communicating over the internet "
"using email and instant messaging."
msgstr ""

#: internet/C/web-apps.xml:15(title)
msgid "Internet Applications"
msgstr ""

#: internet/C/web-apps.xml:16(para)
msgid ""
"This section provides information on using common Internet applications, "
"such as web browsers and email clients."
msgstr ""

#: internet/C/web-apps.xml:19(title)
msgid "Web browsing with Firefox"
msgstr ""

#: internet/C/web-apps.xml:20(para)
msgid ""
"The powerful and secure <application>Mozilla Firefox</application> web "
"browser is included in Ubuntu. <application>Firefox</application> features "
"tabbed browsing, pop-up blocking, built-in search, and live bookmarks. Also "
"supported are popular plug-ins such as Java, Flash, and RealPlayer."
msgstr ""

#: internet/C/web-apps.xml:21(para)
msgid ""
"<application>Firefox</application> can be launched by clicking "
"<menuchoice><guimenu>Applications</guimenu><guisubmenu>Internet</guisubmenu><"
"guimenuitem>Firefox Web Browser</guimenuitem></menuchoice>."
msgstr ""

#: internet/C/web-apps.xml:23(title)
msgid "Get addons for your Firefox"
msgstr ""

#: internet/C/web-apps.xml:24(para)
msgid ""
"Addons extend Firefox's capabilities, such as automatically removing adverts "
"or altering the behaviour of menus."
msgstr ""

#: internet/C/web-apps.xml:26(para)
msgid ""
"To view a list of currently-installed plugins in the <application>Firefox "
"Web Browser</application> , open "
"<menuchoice><guimenu>Applications</guimenu><guisubmenu>Internet</guisubmenu><"
"guimenuitem>Firefox Web Browser</guimenuitem></menuchoice> and click "
"<menuchoice><guimenu>Tools</guimenu><guimenuitem>Add-"
"ons</guimenuitem></menuchoice>."
msgstr ""

#: internet/C/web-apps.xml:30(title)
msgid "Quickly install common plugins"
msgstr ""

#: internet/C/web-apps.xml:31(para)
msgid ""
"It is possible to install a whole set of commonly-used restricted plugins at "
"once, by installing the <application>Ubuntu restricted extras</application> "
"package."
msgstr ""

#: internet/C/web-apps.xml:32(para)
msgid ""
"<emphasis>Restricted plugins</emphasis> are those which cannot be "
"distributed with Ubuntu because of legal issues surrounding their use in "
"some countries. Check that you are allowed to use this software before "
"installing it. See the <ulink "
"url=\"http://www.ubuntu.com/ubuntu/licensing\">Ubuntu website</ulink> for "
"more information on restricted software."
msgstr ""

#: internet/C/web-apps.xml:34(para) internet/C/web-apps.xml:58(para) internet/C/web-apps.xml:71(para) internet/C/web-apps.xml:85(para)
msgid ""
"Open "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Add/Remove...</guimen"
"uitem></menuchoice>."
msgstr ""

#: internet/C/web-apps.xml:35(para) internet/C/web-apps.xml:59(para) internet/C/web-apps.xml:72(para) internet/C/web-apps.xml:86(para)
msgid ""
"Select <guilabel>All Available Applications</guilabel> from the "
"<guilabel>Show:</guilabel> drop down."
msgstr ""

#: internet/C/web-apps.xml:36(para)
msgid "Tick <guilabel>Ubuntu Restricted Extras</guilabel>."
msgstr ""

#: internet/C/web-apps.xml:37(para) internet/C/web-apps.xml:61(para) internet/C/web-apps.xml:74(para) internet/C/web-apps.xml:88(para)
msgid ""
"A warning appears which you must agree to to install, click "
"<guibutton>Enable</guibutton> or <guibutton>Cancel</guibutton>."
msgstr ""

#: internet/C/web-apps.xml:38(para) internet/C/web-apps.xml:62(para) internet/C/web-apps.xml:75(para) internet/C/web-apps.xml:89(para)
msgid "Click <guibutton>Apply Changes</guibutton>."
msgstr ""

#: internet/C/web-apps.xml:39(para) internet/C/web-apps.xml:63(para) internet/C/web-apps.xml:76(para) internet/C/web-apps.xml:90(para)
msgid "Click <guibutton>Apply</guibutton>."
msgstr ""

#: internet/C/web-apps.xml:40(para) internet/C/web-apps.xml:64(para) internet/C/web-apps.xml:77(para) internet/C/web-apps.xml:91(para)
msgid "You are asked for a password, then the plugin is downloaded."
msgstr ""

#: internet/C/web-apps.xml:42(para)
msgid ""
"As well as plugins and multimedia codecs, <application>Java</application> "
"and a set of Windows fonts will be installed."
msgstr ""

#: internet/C/web-apps.xml:43(para)
msgid ""
"The following plugins and codecs are installed by the <application>Ubuntu "
"restricted extras</application> package:"
msgstr ""

#: internet/C/web-apps.xml:45(application)
msgid "flashplugin-nonfree"
msgstr ""

#: internet/C/web-apps.xml:46(application)
msgid "gstreamer0.10-plugins-ugly"
msgstr ""

#: internet/C/web-apps.xml:47(application)
msgid "gstreamer0.10-plugins-ugly-multiverse"
msgstr ""

#: internet/C/web-apps.xml:48(application)
msgid "msttcorefonts"
msgstr ""

#: internet/C/web-apps.xml:49(application)
msgid "sun-java6-plugin"
msgstr ""

#: internet/C/web-apps.xml:54(title)
msgid "Audio and video plugins"
msgstr ""

#: internet/C/web-apps.xml:55(para)
msgid ""
"Many different multimedia formats are used on the Internet and you may find "
"that you are unable to play some audio and video files without installing an "
"appropriate plugin."
msgstr ""

#: internet/C/web-apps.xml:56(para)
msgid "Quicktime, Real, WMV and many others are available."
msgstr ""

#: internet/C/web-apps.xml:60(para)
msgid "Tick the applications you require."
msgstr ""

#: internet/C/web-apps.xml:69(title)
msgid "Flash multimedia plugin"
msgstr ""

#: internet/C/web-apps.xml:73(para)
msgid "Tick <guilabel>Macromedia Flash Player</guilabel>."
msgstr ""

#: internet/C/web-apps.xml:82(title)
msgid "Java browser plugin"
msgstr ""

#: internet/C/web-apps.xml:83(para)
msgid ""
"Some websites use small <application>Java</application> programs, which "
"require a Java plugin to be installed in order to run."
msgstr ""

#: internet/C/web-apps.xml:87(para)
msgid "Tick <guilabel>Sun Java 6.0 Plugin</guilabel>."
msgstr ""

#: internet/C/web-apps.xml:98(title)
msgid "Changing the default font size"
msgstr ""

#: internet/C/web-apps.xml:99(para)
msgid ""
"If you find that the size of text in Firefox is too small to read "
"comfortably, you can increase the default font size."
msgstr ""

#: internet/C/web-apps.xml:101(para)
msgid ""
"Press "
"<menuchoice><guimenuitem>Edit</guimenuitem><guimenuitem>Preferences</guimenui"
"tem></menuchoice> and select the <guilabel>Content</guilabel> tab"
msgstr ""

#: internet/C/web-apps.xml:102(para)
msgid ""
"Under <guilabel>Fonts &amp; Colors</guilabel>, change the "
"<guilabel>Size</guilabel> to a larger number (around 20 tends to be quite "
"comfortable to read)"
msgstr ""

#: internet/C/web-apps.xml:103(para)
msgid ""
"Text on web pages should immediately look larger. Press "
"<guibutton>Close</guibutton>"
msgstr ""

#: internet/C/web-apps.xml:105(para)
msgid ""
"To temporarily increase the size of text on a web page, press "
"<menuchoice><guimenuitem>View</guimenuitem><guimenuitem>Text "
"Size</guimenuitem><guimenuitem>Increase</guimenuitem></menuchoice>. "
"Alternatively, hold down the <keycap>Ctrl</keycap> key and scroll down with "
"your mouse's scroll wheel, or press "
"<keycombo><keycap>Ctrl</keycap><keycap>+</keycap></keycombo>."
msgstr ""

#: internet/C/web-apps.xml:106(para)
msgid ""
"To return the text to its normal size, press "
"<menuchoice><guimenuitem>View</guimenuitem><guimenuitem>Text "
"Size</guimenuitem><guimenuitem>Normal</guimenuitem></menuchoice>."
msgstr ""

#: internet/C/web-apps.xml:112(title)
msgid "Send and receive emails"
msgstr ""

#: internet/C/web-apps.xml:113(para)
msgid ""
"Email is one of the most popular ways to communicate over the Internet. "
"Ubuntu includes all of the tools that you need to send, receive and organize "
"email messages."
msgstr ""

#: internet/C/web-apps.xml:114(para)
msgid ""
"The <application>Evolution</application> groupware suite is the default "
"email client, and can handle all of your <ulink type=\"help\" "
"url=\"ghelp:evolution#usage-mail\">email</ulink>, <ulink type=\"help\" "
"url=\"ghelp:evolution#usage-contact\">contact lists</ulink>, <ulink "
"type=\"help\" url=\"ghelp:evolution#usage-calendar-todo\">tasks</ulink> and "
"<ulink type=\"help\" url=\"ghelp:evolution#usage-calendar\">calendar</ulink> "
"needs. It also integrates with the <ulink type=\"help\" "
"url=\"ghelp:clock#clock-usage-calendar\">panel clock</ulink>, giving you one-"
"click access to your task list."
msgstr ""

#: internet/C/web-apps.xml:115(para)
msgid ""
"<application>Evolution</application> can be launched by pressing "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Internet</guimenuitem"
"><guimenuitem>Evolution Mail</guimenuitem></menuchoice>."
msgstr ""

#: internet/C/web-apps.xml:116(para)
msgid ""
"See the <ulink type=\"help\" url=\"ghelp:evolution\">Evolution "
"manual</ulink> for help on how to use Evolution."
msgstr ""

#: internet/C/web-apps.xml:119(title)
msgid "Junk mail filtering"
msgstr ""

#: internet/C/web-apps.xml:120(para)
msgid ""
"Bogofilter classifies mail as junk mail (also known as "
"<emphasis>spam</emphasis>) by analysing the message statistically, and can "
"learn from selections made by the user. The technique is known as Bayesian "
"filtering; you can find more details on this here:"
msgstr ""

#: internet/C/web-apps.xml:122(ulink)
msgid "http://www.paulgraham.com/spam.html"
msgstr ""

#: internet/C/web-apps.xml:123(ulink)
msgid "http://www.paulgraham.com/better.html"
msgstr ""

#: internet/C/web-apps.xml:125(para)
msgid "Evolution can be automatically configured to use Bogofilter."
msgstr ""

#: internet/C/web-apps.xml:127(para)
msgid ""
"<ulink url=\"apt:bogofilter\">Install the "
"<application>Bogofilter</application> package</ulink>."
msgstr ""

#: internet/C/web-apps.xml:128(para)
msgid ""
"Open "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Internet</guimenuitem"
"><guimenuitem>Evolution Mail</guimenuitem></menuchoice>."
msgstr ""

#: internet/C/web-apps.xml:129(para)
msgid ""
"Enable the junk mail filter by selecting "
"<menuchoice><guimenu>Edit</guimenu><guimenu>Preferences</guimenu><guimenu>Mai"
"l Preferences</guimenu><guimenu>Junk</guimenu><guimenu>Check incoming mail "
"for junk</guimenu></menuchoice>."
msgstr ""

#: internet/C/web-apps.xml:130(para)
msgid ""
"Turn on the Bogofilter plugin by selecting "
"<menuchoice><guimenu>Edit</guimenu><guimenu>Plugins</guimenu></menuchoice>"
msgstr ""

#: internet/C/web-apps.xml:132(para)
msgid ""
"Bogofilter will now start to learn what is spam, based on the messages you "
"mark. To mark a message as spam, select "
"<menuchoice><guimenu>Message</guimenu><guimenu>Mark "
"As</guimenu><guimenu>Junk</guimenu></menuchoice>."
msgstr ""

#: internet/C/web-apps.xml:136(title)
msgid "Alternative email applications"
msgstr ""

#: internet/C/web-apps.xml:137(para)
msgid ""
"You can also use <application>Mozilla Thunderbird</application> for email. "
"To install it, <ulink url=\"apt:thunderbird\">install the "
"<application>thunderbird</application> package</ulink>."
msgstr ""

#: internet/C/web-apps.xml:138(para)
msgid ""
"To start <application>Thunderbird</application>, choose "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Internet</guimenuitem"
"><guimenuitem>Mozilla Thunderbird Mail/News</guimenuitem></menuchoice>."
msgstr ""

#: internet/C/web-apps.xml:139(para)
msgid ""
"To change your preferred email client to <application>Mozilla "
"Thunderbird</application>:"
msgstr ""

#: internet/C/web-apps.xml:142(para)
msgid ""
"Choose "
"<menuchoice><guimenu>System</guimenu><guimenuitem>Preferences</guimenuitem><g"
"uimenuitem>Preferred Applications</guimenuitem></menuchoice>"
msgstr ""

#: internet/C/web-apps.xml:145(para)
msgid ""
"Click on the <guibutton>Mail Reader</guibutton> drop down menu, and select "
"the <guilabel>Custom</guilabel> option."
msgstr ""

#: internet/C/web-apps.xml:148(para)
msgid ""
"In the <guilabel>Command</guilabel> text box, type "
"<userinput><command>thunderbird %s</command></userinput>, then close the "
"dialog."
msgstr ""

#: internet/C/web-apps.xml:156(title)
msgid "Instant Messaging"
msgstr ""

#: internet/C/web-apps.xml:157(para)
msgid ""
"Instant messaging (IM) is a way of communicating with friends and family by "
"sending messages to one another over the Internet. Instant messaging happens "
"in real-time, and there is no delay between you typing a message and the "
"other person receiving it."
msgstr ""

#: internet/C/web-apps.xml:160(title)
msgid "Pidgin Internet Messenger"
msgstr ""

#: internet/C/web-apps.xml:161(para)
msgid ""
"<application>Pidgin</application> is the default instant messenger client in "
"Ubuntu, and was formerly known as <application>Gaim</application>. With "
"Pidgin you can talk to people who use AIM/ICQ, Gadu-Gadu, GroupWise, IRC, "
"Jabber, MSN, Napster, Bonjour and Yahoo, and list all your buddies in a "
"single window."
msgstr ""

#: internet/C/web-apps.xml:162(para)
msgid ""
"To start <application>Pidgin</application>, choose "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Internet</guimenuitem"
"><guimenuitem>Pidgin Internet Messenger</guimenuitem></menuchoice>."
msgstr ""

#: internet/C/web-apps.xml:163(para)
msgid ""
"There are several extra packages available for "
"<application>Pidgin</application>, which add extra features and allow you to "
"change the way Pidgin looks. You can find these in the Synaptic Package "
"Manager."
msgstr ""

#: internet/C/web-apps.xml:167(title)
msgid "Ekiga Softphone"
msgstr ""

#: internet/C/web-apps.xml:168(para)
msgid ""
"<application>Ekiga</application> is the default Internet telephony (VoIP) "
"application in Ubuntu. It lets you make audio and video calls over the "
"Internet to people who have hardware or software that follows the SIP or "
"H.323 standards and also features basic instant messaging. It is compatible "
"with Windows Messenger and most VoIP applications. However, Ekiga cannot "
"communicate with Skype because the latter uses proprietary technology. If "
"you have the right SIP provider, you can also use Ekiga to place calls to "
"any normal phone line."
msgstr ""

#: internet/C/web-apps.xml:169(para)
msgid ""
"To start <application>Ekiga</application>, choose "
"<menuchoice><guimenuitem>Applications</guimenuitem><guimenuitem>Internet</gui"
"menuitem><guimenuitem>Ekiga Softphone</guimenuitem></menuchoice>."
msgstr ""

#: internet/C/web-apps.xml:170(para)
msgid ""
"See the <ulink type=\"help\" url=\"ghelp:ekiga\">Ekiga Manual</ulink> for "
"help on using Ekiga."
msgstr ""

#: internet/C/web-apps.xml:174(title)
msgid "IRC instant messaging"
msgstr ""

#: internet/C/web-apps.xml:175(para)
msgid ""
"For users of IRC instant messaging services, an alternative to "
"<application>Pidgin</application> is <application>XChat-GNOME</application>. "
"Its features include advanced scripting support (perl and python) and a "
"clean, easy to use interface."
msgstr ""

#: internet/C/web-apps.xml:178(para)
msgid ""
"<ulink url=\"xchat-gnome\">Install the <application>xchat-"
"gnome</application> package</ulink>."
msgstr ""

#: internet/C/web-apps.xml:181(para)
msgid ""
"To start <application>XChat-GNOME</application>, choose "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Internet</guimenuitem"
"><guimenuitem>Xchat-GNOME IRC Chat</guimenuitem></menuchoice>."
msgstr ""

#: internet/C/web-apps.xml:187(title)
msgid "Getting help using IRC instant messaging"
msgstr ""

#: internet/C/web-apps.xml:188(para)
msgid ""
"One excellent way to get help with Ubuntu or to introduce yourself to IRC is "
"to join Ubuntu's official support channel on Freenode."
msgstr ""

#: internet/C/web-apps.xml:191(para)
msgid "Start <application>XChat-Gnome</application> as above."
msgstr ""

#: internet/C/web-apps.xml:194(para)
msgid ""
"When you start <application>XChat-Gnome</application> for the first time, it "
"will ask you for an IRC Nickname &amp; your real name. Pick anything you "
"want for your nick (first initial &amp; your last name is good, or be more "
"creative), put your real name or part of it, and press "
"<guibutton>OK</guibutton>."
msgstr ""

#: internet/C/web-apps.xml:197(para)
msgid ""
"In the Server Window that opens next, select <emphasis>Ubuntu "
"Servers</emphasis>, and press <guibutton>Connect</guibutton>."
msgstr ""

#: internet/C/web-apps.xml:205(title)
msgid "Other Internet applications"
msgstr ""

#: internet/C/web-apps.xml:206(para)
msgid ""
"The Internet has much more to offer besides web browsing, email and instant "
"messaging. Ubuntu provides a selection of other applications to help you get "
"the most out of the Internet."
msgstr ""

#: internet/C/web-apps.xml:209(title)
msgid "Peer-to-Peer networks"
msgstr ""

#: internet/C/web-apps.xml:210(para)
msgid ""
"Peer-to-peer (P2P) networks are a way of sharing files, music and videos "
"between people from all around the world."
msgstr ""

#: internet/C/web-apps.xml:211(para)
msgid ""
"A popular P2P service is <emphasis>BitTorrent</emphasis>, and BitTorrent "
"capability is included in Ubuntu by default. To use BitTorrent, find a "
"<emphasis>.torrent</emphasis> file online, click on it in the "
"<application>Firefox Web Browser</application>, and the <application>Gnome "
"BitTorrent</application> client should start automatically."
msgstr ""

#: internet/C/web-apps.xml:212(para)
msgid ""
"To restart a download from a <filename>.torrent</filename> file that is "
"already on your computer, double-click on it."
msgstr ""

#: internet/C/web-apps.xml:213(para)
msgid ""
"An alternative P2P application is the <application>aMule File Sharing "
"Client</application>."
msgstr ""

#: internet/C/web-apps.xml:216(para)
msgid ""
"<ulink url=\"apt:amule\">Install the <application>amule</application> "
"package</ulink>."
msgstr ""

#: internet/C/web-apps.xml:219(para)
msgid ""
"To open <application>aMule</application>, choose "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Internet</guimenuitem"
"><guimenuitem>aMule</guimenuitem></menuchoice>."
msgstr ""

#: internet/C/web-apps.xml:225(title)
msgid "News Readers"
msgstr ""

#: internet/C/web-apps.xml:226(para)
msgid ""
"You can automatically receive news updates from the Internet. There are "
"several different types of news service to choose from:"
msgstr ""

#: internet/C/web-apps.xml:229(para)
msgid ""
"<emphasis>Usenet</emphasis> is one of the oldest and allows you to discuss "
"news and other topics with people from all around the world. "
"<application>Pan Newsreader</application> is a news reader which works with "
"Usenet."
msgstr ""

#: internet/C/web-apps.xml:230(para)
msgid ""
"<ulink url=\"apt:pan\">Install the <application>pan</application> "
"package</ulink> and then choose "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Internet</guimenuitem"
"><guimenuitem>Pan Newsreader</guimenuitem></menuchoice> to start using "
"<application>Pan</application>."
msgstr ""

#: internet/C/web-apps.xml:234(para)
msgid ""
"<emphasis>RSS feeds</emphasis> are a popular way of automatically receiving "
"regular news updates and articles. <application>Liferea Feed "
"Reader</application> is an RSS feed reader with many useful features."
msgstr ""

#: internet/C/web-apps.xml:235(para)
msgid ""
"<ulink url=\"apt:liferea\">Install the <application>liferea</application> "
"package</ulink> and then choose "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Internet</guimenuitem"
"><guimenuitem>Liferea Feed Reader</guimenuitem></menuchoice> to start using "
"<application>Liferea</application>."
msgstr ""

#: internet/C/web-apps.xml:240(title)
msgid "Create News Feeds with Liferea"
msgstr ""

#: internet/C/web-apps.xml:241(para)
msgid ""
"This section will cover a basic procedure to add news feeds to "
"<application>Liferea</application>. Start <application>Liferea</application> "
"by selecting "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Internet</guimenuitem"
"><guimenuitem>Liferea Feed Reader</guimenuitem></menuchoice>"
msgstr ""

#: internet/C/web-apps.xml:244(para)
msgid ""
"If you're behind a proxy, select "
"<menuchoice><guimenuitem>Tools</guimenuitem><guimenuitem>Preferences</guimenu"
"item><guimenuitem>Proxy</guimenuitem></menuchoice> and fill in your proxy "
"details and click on the <guibutton>Close</guibutton> button,"
msgstr ""

#: internet/C/web-apps.xml:245(para)
msgid "Press <guibutton>New Subscription</guibutton> on the Liferea toolbar,"
msgstr ""

#: internet/C/web-apps.xml:246(para)
msgid "Press the <guibutton>Advanced</guibutton> button,"
msgstr ""

#: internet/C/web-apps.xml:247(para)
msgid ""
"Enter the address of the RSS feed in the <guilabel>Source</guilabel> box,"
msgstr ""

#: internet/C/web-apps.xml:248(para)
msgid ""
"Select the <guibutton>OK</guibutton> button to complete the procedure."
msgstr ""

#: internet/C/web-apps.xml:249(para)
msgid ""
"Once you have create the news feed, click on the <guibutton>Update "
"All</guibutton> toolbar button to update all your news feeds."
msgstr ""

#: internet/C/web-apps.xml:256(title)
msgid "Design web pages"
msgstr ""

#: internet/C/web-apps.xml:257(para)
msgid ""
"Ubuntu includes a wide selection of tools to help you design and develop web "
"pages."
msgstr ""

#: internet/C/web-apps.xml:260(para)
msgid ""
"<emphasis role=\"strong\"><application>Bluefish</application></emphasis> is "
"a powerful editor for web designers and programmers."
msgstr ""

#: internet/C/web-apps.xml:261(para)
msgid ""
"<application>Bluefish</application> supports many programming and markup "
"languages, and includes many utilities for designers and programmers."
msgstr ""

#: internet/C/web-apps.xml:263(para)
msgid ""
"For more information, see the <ulink "
"url=\"http://bluefish.openoffice.nl/\">Bluefish website</ulink>."
msgstr ""

#: internet/C/web-apps.xml:264(para)
msgid ""
"<ulink url=\"apt:bluefish\">Install the <application>bluefish</application> "
"package</ulink>."
msgstr ""

#: internet/C/web-apps.xml:265(para)
msgid ""
"To start Bluefish, press "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Programming</guimenui"
"tem><guimenuitem>Bluefish Editor</guimenuitem></menuchoice>."
msgstr ""

#: internet/C/troubleshooting.xml:15(title)
msgid "Troubleshooting"
msgstr ""

#: internet/C/troubleshooting.xml:16(para)
msgid ""
"Since the introduction of NetworkManager, connections can be enabled and "
"disabled from the NetworkManager icon in the <guilabel>System Notification "
"Area</guilabel>."
msgstr ""

#: internet/C/troubleshooting.xml:19(para)
msgid ""
"Before attempting any troubleshooting, ensure that the connection is enabled:"
msgstr ""

#: internet/C/troubleshooting.xml:21(para) internet/C/information.xml:18(para) internet/C/disconnecting.xml:22(para) internet/C/disconnecting.xml:30(para)
msgid ""
"Right click the <guiicon>NetworkManager</guiicon> icon in the notification "
"area."
msgstr ""

#: internet/C/troubleshooting.xml:22(para)
msgid "Check <guilabel>Enable Networking</guilabel>."
msgstr ""

#: internet/C/troubleshooting.xml:23(para)
msgid "Check <guilabel>Enable Wireless</guilabel>."
msgstr ""

#: internet/C/troubleshooting.xml:27(title)
msgid "Wired troubleshooting"
msgstr ""

#: internet/C/troubleshooting.xml:28(para)
msgid ""
"If you have a network connection which is not working properly, you can use "
"a few tools to help diagnose what the problem is."
msgstr ""

#: internet/C/troubleshooting.xml:30(para)
msgid ""
"Most of the tools in this section require use of the Terminal, which you can "
"open by pressing "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenui"
"tem><guimenuitem>Terminal</guimenuitem></menuchoice>."
msgstr ""

#: internet/C/troubleshooting.xml:34(title)
msgid "Get information about the current connection"
msgstr ""

#: internet/C/troubleshooting.xml:35(para)
msgid ""
"<application>ifconfig</application> is intended to allow you to change the "
"settings of your network connections, but it can also be used to list "
"information about the current connection."
msgstr ""

#: internet/C/troubleshooting.xml:38(para)
msgid ""
"Press "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenui"
"tem><guimenuitem>Terminal</guimenuitem></menuchoice> to open a Terminal"
msgstr ""

#: internet/C/troubleshooting.xml:40(para)
msgid ""
"Type <userinput>ifconfig eth1</userinput> in the Terminal and press "
"<keycap>Enter</keycap>, replacing <emphasis>eth1</emphasis> with the name of "
"your network interface if it is different."
msgstr ""

#: internet/C/troubleshooting.xml:42(para)
msgid ""
"<emphasis>inet addr</emphasis> gives the current <emphasis>IP "
"address</emphasis> of the connection"
msgstr ""

#: internet/C/troubleshooting.xml:43(para)
msgid ""
"<emphasis>HWaddr</emphasis> gives the <emphasis>MAC address</emphasis> of "
"your network device"
msgstr ""

#: internet/C/troubleshooting.xml:50(title)
msgid "Check if a connection is working properly"
msgstr ""

#: internet/C/troubleshooting.xml:51(para)
msgid ""
"A good way of checking if a connection is working properly is to "
"<emphasis>ping</emphasis> another computer on the network or the Internet."
msgstr ""

#: internet/C/troubleshooting.xml:52(para)
msgid "To check if you are connected to the Internet:"
msgstr ""

#: internet/C/troubleshooting.xml:54(para)
msgid ""
"Press "
"<menuchoice><guimenu>System</guimenu><guimenuitem>Administration</guimenuitem"
"><guimenuitem>Network Tools</guimenuitem></menuchoice>"
msgstr ""

#: internet/C/troubleshooting.xml:55(para)
msgid "Select the <guilabel>Ping</guilabel> tab"
msgstr ""

#: internet/C/troubleshooting.xml:56(para)
msgid ""
"Type <userinput>ubuntu.com</userinput> into the <guilabel>Network "
"address</guilabel> box and then press <guibutton>Ping</guibutton>"
msgstr ""

#: internet/C/troubleshooting.xml:58(para)
msgid ""
"After a while, a graph should appear. Look at the number for "
"<guilabel>Successful packets</guilabel> under <guilabel>Transmission "
"Statistics</guilabel>"
msgstr ""

#: internet/C/troubleshooting.xml:60(para)
msgid ""
"<emphasis>100% successful packets</emphasis> - Your computer should have a "
"good connection to the Internet"
msgstr ""

#: internet/C/troubleshooting.xml:61(para)
msgid ""
"<emphasis>Less than 100% successful</emphasis> - Your computer probably has "
"a poor connection to the Internet or a poor wireless signal"
msgstr ""

#: internet/C/troubleshooting.xml:62(para)
msgid ""
"<emphasis>0% successful packets</emphasis> - Your computer has a very bad "
"connection, or is connected to an access point or router which is not "
"connected to the Internet"
msgstr ""

#: internet/C/troubleshooting.xml:66(para)
msgid ""
"If you get an error message which says <emphasis>The address 'ubuntu.com' "
"cannot be found</emphasis>, then your computer is probably not connected to "
"the Internet or cannot reach a <emphasis>DNS server</emphasis>."
msgstr ""

#: internet/C/troubleshooting.xml:71(title)
msgid "Wireless troubleshooting"
msgstr ""

#: internet/C/troubleshooting.xml:72(para)
msgid ""
"While not exhaustive, this section covers some common problems faced with "
"wireless support."
msgstr ""

#: internet/C/troubleshooting.xml:73(para)
msgid ""
"There is much more information available from the <ulink "
"url=\"https://help.ubuntu.com/community/WifiDocs\">Community "
"Documentation</ulink>."
msgstr ""

#: internet/C/troubleshooting.xml:74(para)
msgid ""
"This troubleshooting guide is designed to be carried out in order. If you "
"reach the end of a section and are not directed to another - then try <xref "
"linkend=\"connecting-wireless\"/> and should it fail begin at the start "
"again."
msgstr ""

#: internet/C/troubleshooting.xml:77(title)
msgid "Check that the device is on"
msgstr ""

#: internet/C/troubleshooting.xml:79(para)
msgid ""
"Many wireless network devices can be turned on or off. Check to see if there "
"is a hardware switch, some devices can be switched off from Windows and may "
"need to be turned back on from Windows."
msgstr ""

#: internet/C/troubleshooting.xml:80(para)
msgid ""
"If it is turned on then see <xref linkend=\"troubleshooting-wireless-"
"device\"/>."
msgstr ""

#: internet/C/troubleshooting.xml:84(title)
msgid "Check for device recognition"
msgstr ""

#: internet/C/troubleshooting.xml:86(para)
msgid ""
"Open a <application>Terminal</application> "
"(<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenu"
"item><guimenuitem>Terminal</guimenuitem></menuchoice>) and type the command: "
"<code>sudo lshw -C network</code>"
msgstr ""

#: internet/C/troubleshooting.xml:88(para)
msgid ""
"You should see an output, along with the words \"CLAIMED, UNCLAIMED, ENABLED "
"or DISABLED\""
msgstr ""

#: internet/C/troubleshooting.xml:90(para)
msgid ""
"Claimed - this indicates a driver is loaded but not functioning, see <xref "
"linkend=\"troubleshooting-wireless-ndiswrapper\"/>"
msgstr ""

#: internet/C/troubleshooting.xml:91(para)
msgid ""
"Unclaimed - there is no driver loaded, see <xref linkend=\"troubleshooting-"
"wireless-ndiswrapper\"/>."
msgstr ""

#: internet/C/troubleshooting.xml:92(para)
msgid ""
"Enabled - there is a driver loaded, see <xref linkend=\"troubleshooting-"
"wireless-connection\"/>."
msgstr ""

#: internet/C/troubleshooting.xml:93(para)
msgid "Disabled - see <xref linkend=\"troubleshooting-wireless-disabled\"/>."
msgstr ""

#: internet/C/troubleshooting.xml:97(title)
msgid "Using Windows Wireless Drivers"
msgstr ""

#: internet/C/troubleshooting.xml:98(para)
msgid ""
"Ubuntu supports a system known as NDISWrapper. This allows you to use a "
"Windows wireless device driver under Ubuntu."
msgstr ""

#: internet/C/troubleshooting.xml:100(para)
msgid ""
"Obtain the Windows Driver for your system and locate the file that ends with "
"<code>.inf</code>."
msgstr ""

#: internet/C/troubleshooting.xml:101(para)
msgid ""
"<ulink url=\"apt:ndisgtk\">Install the <application>ndisgtk</application> "
"package</ulink>."
msgstr ""

#: internet/C/troubleshooting.xml:102(para)
msgid ""
"Open <application>ndisgtk</application> "
"(<menuchoice><guimenu>System</guimenu><guimenuitem>Administration</guimenuite"
"m><guimenuitem>Windows Wireless Drivers</guimenuitem></menuchoice>)."
msgstr ""

#: internet/C/troubleshooting.xml:103(para)
msgid "Select <guilabel>Install new driver</guilabel>."
msgstr ""

#: internet/C/troubleshooting.xml:104(para)
msgid ""
"Choose the location of your Windows .inf file and click "
"<guibutton>Install</guibutton>."
msgstr ""

#: internet/C/troubleshooting.xml:105(para) internet/C/modem.xml:61(para)
msgid "Click <guibutton>OK</guibutton>."
msgstr ""

#: internet/C/troubleshooting.xml:109(title)
msgid "Check for a connection to the router"
msgstr ""

#: internet/C/troubleshooting.xml:111(para)
msgid ""
"Open a <application>Terminal</application> "
"(<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenu"
"item><guimenuitem>Terminal</guimenuitem></menuchoice>) and type the command: "
"<code>iwconfig</code>."
msgstr ""

#: internet/C/troubleshooting.xml:112(para)
msgid ""
"If the ESSID for our router is shown there may be a problem with ACPI "
"support. Boot the kernel with the <code>pci=noacpi</code> option."
msgstr ""

#: internet/C/troubleshooting.xml:116(title)
msgid "Check IP assignment"
msgstr ""

#: internet/C/troubleshooting.xml:118(para)
msgid ""
"Open a <application>Terminal</application> "
"(<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenu"
"item><guimenuitem>Terminal</guimenuitem></menuchoice>) and type the command: "
"<code>ifconfig</code>."
msgstr ""

#: internet/C/troubleshooting.xml:119(para)
msgid ""
"If there is an IP address shown see <xref linkend=\"troubleshooting-wireless-"
"dns\"/>."
msgstr ""

#: internet/C/troubleshooting.xml:120(para)
msgid ""
"From the <application>Terminal</application> enter the command: <code>sudo "
"dhclient if_name</code> where if_name is the connection listed earlier."
msgstr ""

#: internet/C/troubleshooting.xml:121(para)
msgid ""
"If you receive a message that says <code>bound to xxx.xxx.xxx.xxx</code> "
"then see <xref linkend=\"troubleshooting-wireless-dns\"/>"
msgstr ""

#: internet/C/troubleshooting.xml:122(para)
msgid "If not then reboot the system."
msgstr ""

#: internet/C/troubleshooting.xml:126(title)
msgid "Check DNS"
msgstr ""

#: internet/C/troubleshooting.xml:128(para)
msgid ""
"Open a <application>Terminal</application> "
"(<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenu"
"item><guimenuitem>Terminal</guimenuitem></menuchoice>) and type the command: "
"<code>ping -c3 85.190.27.2</code>."
msgstr ""

#: internet/C/troubleshooting.xml:129(para)
msgid ""
"Now type the command: <code>ping www.ubuntu.com</code>. If you get a "
"response from the both then see <xref linkend=\"troubleshooting-wireless-"
"ipv6\"/>."
msgstr ""

#: internet/C/troubleshooting.xml:130(para)
msgid ""
"Type the command: <code>cat /etc/resolv.conf</code>. If there is no "
"nameserver listed then contact your ISP and find out your primary and "
"secondary domain name servers. Once you have this information see <xref "
"linkend=\"connecting-wireless\"/>."
msgstr ""

#: internet/C/troubleshooting.xml:134(title)
msgid "IPv6 Not Supported"
msgstr ""

#: internet/C/troubleshooting.xml:136(para)
msgid ""
"IPv6 is supported by default in Ubuntu and can sometimes cause problems."
msgstr ""

#: internet/C/troubleshooting.xml:137(para)
msgid ""
"To disable it, open a <application>Terminal</application> "
"(<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenu"
"item><guimenuitem>Terminal</guimenuitem></menuchoice>) and type the command: "
"<code>gksudo gedit /etc/modprobe.d/aliases</code>."
msgstr ""

#: internet/C/troubleshooting.xml:138(para)
msgid ""
"Find the line <code>alias net-pf-10 ipv6</code> and change it to read "
"<code>alias net-pf-10 off</code>."
msgstr ""

#: internet/C/troubleshooting.xml:139(para)
msgid "Reboot Ubuntu."
msgstr ""

#: internet/C/nm.xml:16(title)
msgid "NetworkManager"
msgstr ""

#: internet/C/nm.xml:17(para)
msgid ""
"Ubuntu now uses NetworkManager to manage network connections. NetworkManager "
"attempts to make the process of connecting invisible, whilst allowing finer "
"manual control where necessary."
msgstr ""

#: internet/C/nm.xml:19(para)
msgid ""
"Many security protocols are supported: WEP, WPA/WPA2, WPA-Enerprise/WPA2-"
"Enerprise, 802.1x, VPN"
msgstr ""

#: internet/C/nm.xml:20(para)
msgid ""
"NetworkManager also keeps passwords secure by utilising the user's keyring "
"to store passphrases."
msgstr ""

#: internet/C/nm.xml:23(para)
msgid ""
"Network Manager is the little icon in the system notification area in the "
"top right of your screen. It looks like two over-lapping computer screens or "
"four blue or grey stepped bars (when connected wirelessly)."
msgstr ""

#: internet/C/nm.xml:26(para)
msgid ""
"<guibutton>Left click</guibutton> for automatic functions, such as "
"connecting to a network."
msgstr ""

#: internet/C/nm.xml:27(para)
msgid ""
"<guibutton>Right click</guibutton> for manual control and to disable or "
"enable connections."
msgstr ""

#: internet/C/networking.xml:16(title)
msgid "Home Networks"
msgstr ""

#: internet/C/networking.xml:17(para)
msgid ""
"This section provides instructions on how to communicate with other "
"computers using a Local Area Network."
msgstr ""

#: internet/C/networking.xml:19(title)
msgid "View other computers on the network"
msgstr ""

#: internet/C/networking.xml:20(para)
msgid ""
"To view computers on the network, open "
"<menuchoice><guimenu>Places</guimenu><guimenuitem>Network</guimenuitem></menu"
"choice>."
msgstr ""

#: internet/C/networking.xml:21(para)
msgid ""
"You may need to enter a username, password, and domain. You should obtain "
"these from your network administrator where necessary. The username and "
"password will normally be the username and password for a user of the "
"computer on which you are trying to connect."
msgstr ""

#: internet/C/networking.xml:24(para)
msgid "The domain can often be left blank."
msgstr ""

#: internet/C/networking.xml:25(para)
msgid ""
"See <ulink type=\"help\" url=\"ghelp:user-guide#nautilus-"
"accessnetwork\">Navigating Remote Servers</ulink> for more information."
msgstr ""

#: internet/C/networking.xml:50(title)
msgid "Share files and folders with other computers"
msgstr ""

#: internet/C/networking.xml:51(para)
msgid ""
"You can share files and folders with other people on your network through "
"<application>Shared Folders</application> or "
"<application>Nautilus</application>."
msgstr ""

#: internet/C/networking.xml:53(title)
msgid "Sharing folders via the Shared Folders application"
msgstr ""

#: internet/C/networking.xml:54(para)
msgid ""
"To share folders using the <application>Shared Folders</application> "
"application:"
msgstr ""

#: internet/C/networking.xml:57(para) internet/C/networking.xml:133(para)
msgid ""
"Press "
"<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenui"
"tem><guimenuitem>Terminal</guimenuitem></menuchoice> to open a Terminal."
msgstr ""

#: internet/C/networking.xml:60(para)
msgid ""
"Type <command>shares-admin</command> and press <keycap>Enter</keycap> to "
"open <application>Shared Folders</application>."
msgstr ""

#: internet/C/networking.xml:63(para)
msgid ""
"Press the <guibutton>Unlock</guibutton> button and enter your password in "
"the <guilabel>Password for (username): </guilabel> field."
msgstr ""

#: internet/C/networking.xml:66(para)
msgid "Press the <guibutton>Authenticate</guibutton> button."
msgstr ""

#: internet/C/networking.xml:69(para) internet/C/networking.xml:106(para)
msgid ""
"You may receive a message which says <guilabel>Sharing services are not "
"installed</guilabel>. If this happens, ensure that the two checkboxes in the "
"message box are checked and press <guibutton>Install services</guibutton>. "
"Sharing service support will then be downloaded and installed; this may take "
"a while."
msgstr ""

#: internet/C/networking.xml:72(para)
msgid ""
"Select the <guilabel>Shared Folders</guilabel> tab and press "
"<guibutton>Add</guibutton>."
msgstr ""

#: internet/C/networking.xml:75(para)
msgid ""
"Select the location of the folder you wish to share by changing the "
"<guilabel>Path</guilabel> option."
msgstr ""

#: internet/C/networking.xml:78(para)
msgid ""
"Choose <guilabel>Windows networks (SMB)</guilabel> from the <guilabel>Share "
"through</guilabel> option."
msgstr ""

#: internet/C/networking.xml:81(para)
msgid "Enter a name and comment for the shared folder."
msgstr ""

#: internet/C/networking.xml:84(para)
msgid ""
"If you would like people accessing the shared folder to be able to add, "
"change and remove files in the folder, uncheck <guilabel>Read "
"only</guilabel>. If you leave <guilabel>Read only</guilabel> checked, people "
"will only be able to view files in the folder."
msgstr ""

#: internet/C/networking.xml:87(para)
msgid ""
"Press <guibutton>OK</guibutton> to make the shared folder available. Other "
"people on the same network (LAN) as you should now be able to access the "
"folder."
msgstr ""

#: internet/C/networking.xml:90(para) internet/C/networking.xml:125(para)
msgid ""
"See the <ulink type=\"help\" url=\"ghelp:shares-admin\">Shared Folders "
"Administration Tool manual</ulink> for more information on managing network "
"shares."
msgstr ""

#: internet/C/networking.xml:93(title)
msgid "Sharing folders via Nautilus"
msgstr ""

#: internet/C/networking.xml:94(para)
msgid "To share folders using <application>Nautilus</application>:"
msgstr ""

#: internet/C/networking.xml:97(para)
msgid ""
"Press "
"<menuchoice><guimenu>Places</guimenu><guimenuitem>Computer</guimenuitem></men"
"uchoice> to open a <application>File Browser</application> window."
msgstr ""

#: internet/C/networking.xml:100(para)
msgid ""
"Right click the folder you wish to share and select <guimenuitem>Sharing "
"Options</guimenuitem> on the popup menu."
msgstr ""

#: internet/C/networking.xml:103(para)
msgid ""
"Select <guilabel>Share this folder</guilabel> from the popup menu. You may "
"change the <guilabel> Share name</guilabel> field if you want to use a "
"different share name."
msgstr ""

#: internet/C/networking.xml:109(para)
msgid ""
"Select <guilabel>Allow other people to write in this folder</guilabel> if "
"you wish to allow others to add, change, and remove files in this folder. If "
"you leave this box unchecked, other people will only be able to view files "
"in this folder. You may also fill in the <guilabel>Comment</guilabel> field."
msgstr ""

#: internet/C/networking.xml:112(para)
msgid ""
"Select <guilabel>Guest access (for people without a user account)</guilabel> "
"if you wish to allow guest users to access your files."
msgstr ""

#: internet/C/networking.xml:115(para)
msgid ""
"Press <guibutton>Create share</guibutton> to make the shared folder "
"available."
msgstr ""

#: internet/C/networking.xml:118(para)
msgid ""
"You may receive a message stating that Nautilus needs to add some "
"permissions to the folder in order to share it. If this happens, press "
"<guibutton>Add the permissions automatically</guibutton>."
msgstr ""

#: internet/C/networking.xml:121(para)
msgid ""
"Other people on the same network (LAN) as you should now be able to access "
"the folder."
msgstr ""

#: internet/C/networking.xml:124(para)
msgid ""
"You may receive a message which says <guilabel>You do not have permission to "
"create a usershare</guilabel>. If this happens, contact your system "
"administrator or configure the <application>Folder sharing service "
"(samba)</application>."
msgstr ""

#: internet/C/networking.xml:129(title)
msgid "Accessing shared folders via Windows"
msgstr ""

#: internet/C/networking.xml:130(para)
msgid ""
"If you would like to access a shared folder hosted on an Ubuntu computer by "
"using computers running Windows, you may have to perform some additional "
"steps:"
msgstr ""

#: internet/C/networking.xml:136(para)
msgid ""
"Type <command>sudo smbpasswd -a username</command>, replacing "
"<quote>username</quote> with your own username. Press <keycap>Enter</keycap> "
"to run the command."
msgstr ""

#: internet/C/networking.xml:138(para)
msgid ""
"You can find out what your username is by typing <command>whoami</command> "
"into the Terminal and then pressing <keycap>Enter</keycap>."
msgstr ""

#: internet/C/networking.xml:142(para)
msgid ""
"Enter your password when prompted with <quote>[sudo] password for "
"username:</quote> and press <keycap>Enter</keycap> again."
msgstr ""

#: internet/C/networking.xml:145(para)
msgid ""
"When prompted with <quote>New SMB password:</quote>, enter the password that "
"you would like to use to access the shared folder and then press "
"<keycap>Enter</keycap>. You can leave the password blank, which will allow "
"anyone to access the shared folder."
msgstr ""

#: internet/C/networking.xml:148(para)
msgid ""
"When prompted with <quote>Retype new SMB password:</quote>, enter the "
"password that you just entered and then press <keycap>Enter</keycap>."
msgstr ""

#: internet/C/networking.xml:151(para)
msgid ""
"You should now be able to connect to the shared folders on the Ubuntu "
"computer."
msgstr ""

#: internet/C/networking.xml:157(title)
msgid "Problems connecting to shared folders in Windows"
msgstr ""

#: internet/C/networking.xml:158(para)
msgid ""
"If you are unable to connect to a shared folder using Windows, try using the "
"<emphasis>IP address</emphasis> of the Ubuntu computer rather than its "
"<emphasis>host name</emphasis> to access the share:"
msgstr ""

#: internet/C/networking.xml:162(para)
msgid ""
"Press "
"<menuchoice><guimenu>System</guimenu><guimenuitem>Administration</guimenuitem"
"><guimenuitem>Network Tools</guimenuitem></menuchoice> and select the "
"<guilabel>Devices</guilabel> tab."
msgstr ""

#: internet/C/networking.xml:165(para)
msgid ""
"Select the name of your network connection from the <guilabel>Network "
"device</guilabel> option list (for example, <quote>eth0</quote>). If you "
"have several network connections, you may have to try this several times."
msgstr ""

#: internet/C/networking.xml:168(para)
msgid ""
"Make a note of the number in the <guilabel>IP address</guilabel> column. It "
"should consist of four numbers separated by dots (for example, "
"<quote>192.168.2.10</quote>)"
msgstr ""

#: internet/C/networking.xml:171(para)
msgid ""
"On the Windows computer, select "
"<menuchoice><guimenuitem>Start</guimenuitem><guimenuitem>Run</guimenuitem></m"
"enuchoice> and type <userinput>\\\\ipaddress</userinput> in the text box, "
"replacing <quote>ipaddress</quote> with the IP address of the Ubuntu computer"
msgstr ""

#: internet/C/networking.xml:174(para)
msgid "Press <guibutton>OK</guibutton> to connect to the shared folder."
msgstr ""

#: internet/C/networking.xml:178(para)
msgid ""
"If you are still unable to access the shared folder, check that the folder "
"sharing service is running on the Ubuntu computer:"
msgstr ""

#: internet/C/networking.xml:181(para)
msgid ""
"Press "
"<menuchoice><guimenu>System</guimenu><guimenuitem>Administration</guimenuitem"
"><guimenuitem>Services</guimenuitem></menuchoice>"
msgstr ""

#: internet/C/networking.xml:184(para)
msgid ""
"Find the <guilabel>Folder sharing service (samba)</guilabel> and ensure that "
"the checkbox next to it is checked. If it is not checked, press "
"<guibutton>Unlock</guibutton> and enter your administrative password. Press "
"<guibutton>Authenticate</guibutton>, then enable the Folder sharing service."
msgstr ""

#: internet/C/networking.xml:187(para)
msgid "Press <guibutton>Close</guibutton>"
msgstr ""

#: internet/C/networking.xml:190(para)
msgid ""
"More information can be found on the Ubuntu <ulink "
"url=\"https://help.ubuntu.com/community/SettingUpSamba\">community help "
"pages</ulink>."
msgstr ""

#: internet/C/modem.xml:16(title)
msgid "Modems"
msgstr ""

#: internet/C/modem.xml:18(title)
msgid "Identifying your modem"
msgstr ""

#: internet/C/modem.xml:19(para)
msgid ""
"Most dialup modems are not supported by Ubuntu, but drivers can be found "
"that will enable the use of some such modems. First you need to identify "
"what chipset your dialup modem is:"
msgstr ""

#: internet/C/modem.xml:22(para)
msgid ""
"Download <application>scanmodem</application> (<ulink "
"url=\"http://linmodems.technion.ac.il/packages/scanModem.gz\">http://linmodem"
"s.technion.ac.il/packages/scanModem.gz</ulink>) using a computer with an "
"Internet connection."
msgstr ""

#: internet/C/modem.xml:25(para)
msgid ""
"Copy the downloaded file to the Home folder of the computer with the dialup "
"modem you wish to use."
msgstr ""

#: internet/C/modem.xml:28(para)
msgid ""
"Open a Terminal "
"(<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenu"
"item><guimenuitem>Terminal</guimenuitem></menuchoice>) and type the "
"following commands, pressing <keycap>Enter</keycap> after each line:"
msgstr ""

#: internet/C/modem.xml:29(screen)
#, no-wrap
msgid ""
"\n"
"gunzip -c scanModem.gz &gt; scanModem \n"
"chmod +x scanModem\n"
"sudo ./scanModem \n"
"gedit Modem/ModemData.txt\n"
"\t\t"
msgstr ""

#: internet/C/modem.xml:37(para)
msgid ""
"A file containing information on the chipsets used by any detected modems "
"should open. Print or save the information."
msgstr ""

#: internet/C/modem.xml:40(para)
msgid ""
"Much more detailed information is available <ulink "
"url=\"https://help.ubuntu.com/community/DialupModemHowto\"> on the community "
"wiki.</ulink>"
msgstr ""

#: internet/C/modem.xml:43(title)
msgid "Connecting with a modem"
msgstr ""

#: internet/C/modem.xml:44(para)
msgid ""
"NetworkManager doesn't currently support modem connections, so you will need "
"to <ulink url=\"apt:gnome-network-admin\">install the gnome-network-admin "
"package</ulink>. If you have no working Internet connection, then you will "
"need to obtain this package and install it, see <ulink url=\"ghelp:add-"
"applications#installing-deb\">Downloading and installing a .deb "
"package</ulink> for more information."
msgstr ""

#: internet/C/modem.xml:47(para)
msgid "You will need to know the following information:"
msgstr ""

#: internet/C/modem.xml:48(para)
msgid ""
"ISP Phone Number; Username; Password; Domain Name Server (DNS) addresses."
msgstr ""

#: internet/C/modem.xml:51(para)
msgid ""
"Open "
"<menuchoice><guimenu>System</guimenu><guimenuitem>Administration</guimenuitem"
"><guimenuitem>Network</guimenuitem></menuchoice>"
msgstr ""

#: internet/C/modem.xml:52(para)
msgid ""
"Press <guibutton>Unlock</guibutton> and type your password to unlock the "
"settings"
msgstr ""

#: internet/C/modem.xml:53(para)
msgid "Select the <guilabel>Connections</guilabel> tab."
msgstr ""

#: internet/C/modem.xml:54(para)
msgid ""
"Select <guilabel>Point to point connection</guilabel> and press "
"<guibutton>Properties</guibutton>."
msgstr ""

#: internet/C/modem.xml:55(para)
msgid "Tick <guilabel>Enable this connection</guilabel>"
msgstr ""

#: internet/C/modem.xml:56(para)
msgid ""
"Choose <guilabel>Serial Modem</guilabel> from the <guilabel>Connection "
"Type</guilabel> drop down."
msgstr ""

#: internet/C/modem.xml:57(para)
msgid ""
"Under Internet Service Provider data, enter the phone number and dial prefix."
msgstr ""

#: internet/C/modem.xml:58(para)
msgid "Under Account Data enter your password and username."
msgstr ""

#: internet/C/modem.xml:59(para)
msgid "Click the <guilabel>Modem tab</guilabel>."
msgstr ""

#: internet/C/modem.xml:60(para)
msgid "Choose the modem settings you require."
msgstr ""

#: internet/C/modem.xml:62(para)
msgid ""
"Select the <guilabel>DNS</guilabel> tab and enter the DNS addresses of your "
"ISP."
msgstr ""

#: internet/C/modem.xml:63(para)
msgid "click <guibutton>Close</guibutton>."
msgstr ""

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

#: internet/C/internet.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 ""

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

#: internet/C/internet.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 ""

#: internet/C/internet.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 ""

#: internet/C/internet.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 ""

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

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

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

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

#: internet/C/information.xml:16(title) internet/C/basics.xml:64(title)
msgid "Information"
msgstr ""

#: internet/C/information.xml:19(para)
msgid "Click <guilabel>Connection Information</guilabel>."
msgstr ""

#: internet/C/information.xml:20(para)
msgid "Click <guibutton>Close</guibutton> when finished."
msgstr ""

#: internet/C/disconnecting.xml:16(title) internet/C/basics.xml:49(title)
msgid "Disconnecting"
msgstr ""

#: internet/C/disconnecting.xml:17(para)
msgid "NetworkManager is used to disconnect connections."
msgstr ""

#: internet/C/disconnecting.xml:20(title)
msgid "Wired"
msgstr ""

#: internet/C/disconnecting.xml:23(para)
msgid "Uncheck <guilabel>Enable Networking</guilabel>."
msgstr ""

#: internet/C/disconnecting.xml:28(title) internet/C/connecting.xml:50(title) internet/C/basics.xml:28(title) internet/C/basics.xml:58(title)
msgid "Wireless"
msgstr ""

#: internet/C/disconnecting.xml:31(para)
msgid "Uncheck <guilabel>Enable Wireless</guilabel>."
msgstr ""

#: internet/C/connecttoserver.xml:16(title)
msgid "Connect to a server"
msgstr ""

#: internet/C/connecttoserver.xml:17(para)
msgid ""
"Ubuntu can connect to a variety of servers using "
"<menuchoice><guimenu>Places</guimenu><guimenuitem>Connect to "
"Server...</guimenuitem></menuchoice>"
msgstr ""

#: internet/C/connecttoserver.xml:20(title)
msgid "FTP"
msgstr ""

#: internet/C/connecttoserver.xml:22(para) internet/C/connecttoserver.xml:37(para) internet/C/connecttoserver.xml:51(para) internet/C/connecttoserver.xml:65(para) internet/C/connecttoserver.xml:78(para)
msgid ""
"Click <menuchoice><guimenu>Places</guimenu><guimenuitem>Connect to "
"Server...</guimenuitem></menuchoice>."
msgstr ""

#: internet/C/connecttoserver.xml:23(para)
msgid ""
"From <guilabel>Service Type</guilabel> choose <guilabel>Public "
"FTP</guilabel> for an anonymous connection or <guilabel>FTP (With "
"Login)</guilabel> if you have a username."
msgstr ""

#: internet/C/connecttoserver.xml:25(para)
msgid ""
"Enter the server address in <guilabel>Server</guilabel>, for example "
"ftp.ubuntu.com."
msgstr ""

#: internet/C/connecttoserver.xml:26(para) internet/C/connecttoserver.xml:40(para)
msgid ""
"Enter <guilabel>Port</guilabel> and <guilabel>Folder</guilabel> if you need "
"to, this is optional."
msgstr ""

#: internet/C/connecttoserver.xml:27(para)
msgid ""
"If you chose <guilabel>FTP (With Login)</guilabel> you will also need to "
"enter a username."
msgstr ""

#: internet/C/connecttoserver.xml:28(para) internet/C/connecttoserver.xml:42(para) internet/C/connecttoserver.xml:56(para) internet/C/connecttoserver.xml:69(para) internet/C/connecttoserver.xml:81(para)
msgid "If you want a bookmark, click the checkbox and enter a bookmark name."
msgstr ""

#: internet/C/connecttoserver.xml:29(para) internet/C/connecttoserver.xml:43(para) internet/C/connecttoserver.xml:57(para) internet/C/connecttoserver.xml:70(para) internet/C/connecttoserver.xml:82(para) internet/C/connecting.xml:63(para)
msgid "Click <guibutton>Connect</guibutton>."
msgstr ""

#: internet/C/connecttoserver.xml:30(para)
msgid ""
"If you chose <guilabel>FTP (With Login)</guilabel> you will be prompted for "
"a password."
msgstr ""

#: internet/C/connecttoserver.xml:35(title)
msgid "SSH"
msgstr ""

#: internet/C/connecttoserver.xml:38(para)
msgid ""
"From <guilabel>Service Type</guilabel> choose <guilabel>SSH</guilabel>."
msgstr ""

#: internet/C/connecttoserver.xml:39(para) internet/C/connecttoserver.xml:53(para) internet/C/connecttoserver.xml:67(para)
msgid "Enter the server address in <guilabel>Server</guilabel>."
msgstr ""

#: internet/C/connecttoserver.xml:41(para)
msgid "Enter <guilabel>Username</guilabel>."
msgstr ""

#: internet/C/connecttoserver.xml:44(para)
msgid "You will be prompted for a password."
msgstr ""

#: internet/C/connecttoserver.xml:49(title)
msgid "Windows Share"
msgstr ""

#: internet/C/connecttoserver.xml:52(para)
msgid ""
"From <guilabel>Service Type</guilabel> choose <guilabel>Windows "
"Share</guilabel>."
msgstr ""

#: internet/C/connecttoserver.xml:54(para)
msgid ""
"Enter <guilabel>Port</guilabel> and <guilabel>Folder</guilabel> and "
"<guilabel>Domain</guilabel> if you need to, this is optional."
msgstr ""

#: internet/C/connecttoserver.xml:55(para)
msgid ""
"Enter <guilabel>Username</guilabel>. You can enter a domain and username in "
"the format DOMAIN\\username."
msgstr ""

#: internet/C/connecttoserver.xml:58(para) internet/C/connecttoserver.xml:71(para)
msgid "You will be prompted for a password if necessary."
msgstr ""

#: internet/C/connecttoserver.xml:63(title)
msgid "WebDAV (HTTP)"
msgstr ""

#: internet/C/connecttoserver.xml:66(para)
msgid ""
"From <guilabel>Service Type</guilabel> choose <guilabel>WebDAV "
"(HTTP)</guilabel>."
msgstr ""

#: internet/C/connecttoserver.xml:68(para)
msgid ""
"Enter <guilabel>Port</guilabel> and <guilabel>Folder</guilabel> and "
"<guilabel>Username</guilabel> if you need to, this is optional."
msgstr ""

#: internet/C/connecttoserver.xml:76(title)
msgid "Custom"
msgstr ""

#: internet/C/connecttoserver.xml:79(para)
msgid ""
"From <guilabel>Service Type</guilabel> choose <guilabel>Custom</guilabel>."
msgstr ""

#: internet/C/connecttoserver.xml:80(para)
msgid "Enter the server address in <guilabel>Location (URI)</guilabel>."
msgstr ""

#: internet/C/connecting.xml:16(title) internet/C/basics.xml:19(title)
msgid "Connecting"
msgstr ""

#: internet/C/connecting.xml:17(para)
msgid ""
"NetworkManager manages wired, wireless, mobile broadband, vpn and dsl "
"connections. It does not currently support dialup modem connections but "
"there is help available in <xref linkend=\"modem\"/>."
msgstr ""

#: internet/C/connecting.xml:21(title) internet/C/basics.xml:23(title)
msgid "Wired (LAN)"
msgstr ""

#: internet/C/connecting.xml:22(para)
msgid ""
"DHCP connections (where settings are concfigured by your router) are "
"automatically configured. Wired network connections are selected as default "
"when connected."
msgstr ""

#: internet/C/connecting.xml:25(title)
msgid "DHCP Connections"
msgstr ""

#: internet/C/connecting.xml:26(para)
msgid "Most routers use DHCP to allocate IP addresses."
msgstr ""

#: internet/C/connecting.xml:28(para)
msgid "Click the NetworkManager icon in the system notification area."
msgstr ""

#: internet/C/connecting.xml:29(para)
msgid ""
"Under <guilabel>Wired Network</guilabel> click the <guilabel>Radio "
"Button</guilabel> next to the network you want to connect to."
msgstr ""

#: internet/C/connecting.xml:34(title)
msgid "Static Connections"
msgstr ""

#: internet/C/connecting.xml:35(para)
msgid "If you don't use DHCP then you can configure a static connection."
msgstr ""

#: internet/C/connecting.xml:37(para)
msgid "Right click the NetworkManager icon in the system notification area."
msgstr ""

#: internet/C/connecting.xml:38(para)
msgid "Click <guilabel>Edit Connections</guilabel>."
msgstr ""

#: internet/C/connecting.xml:39(para)
msgid "Click the <guilabel>Wired</guilabel> tab."
msgstr ""

#: internet/C/connecting.xml:40(para)
msgid "Select the connection and click <guibutton>Edit</guibutton>."
msgstr ""

#: internet/C/connecting.xml:41(para)
msgid "Click the <guilabel>IPv4</guilabel> tab."
msgstr ""

#: internet/C/connecting.xml:42(para)
msgid ""
"Choose <guilabel>Manual</guilabel> from the <guilabel>Method</guilabel> drop "
"down."
msgstr ""

#: internet/C/connecting.xml:43(para)
msgid "Enter your details and click <guibutton>OK</guibutton>."
msgstr ""

#: internet/C/connecting.xml:44(para)
msgid "Click <guibutton>Close</guibutton>."
msgstr ""

#: internet/C/connecting.xml:51(para)
msgid "To connect to a wireless network:"
msgstr ""

#: internet/C/connecting.xml:53(para)
msgid "Ensure that your wireless device is turned on."
msgstr ""

#: internet/C/connecting.xml:54(para)
msgid ""
"Click the <guiicon>NetworkManager</guiicon> icon in the system notification "
"area."
msgstr ""

#: internet/C/connecting.xml:55(para)
msgid ""
"Under <guilabel>Wireless Network</guilabel> click the radio button next to "
"the network you want to connect to."
msgstr ""

#: internet/C/connecting.xml:58(para)
msgid ""
"If you have connected to the network previously, Ubuntu will automatically "
"connect to the network where it is available."
msgstr ""

#: internet/C/connecting.xml:59(para)
msgid ""
"If you are connecting to a network for the first time, security details may "
"be needed. If so, a dialog box will open. Enter your security details as "
"follows."
msgstr ""

#: internet/C/connecting.xml:61(para)
msgid ""
"In most cases the security type will be detected automatically. If not, "
"select the security type from the <guilabel>Wireless Security</guilabel> "
"drop-down box. This will depend on how the wireless network is set up. "
"Examples of security types are WEP, WPA and LEAP."
msgstr ""

#: internet/C/connecting.xml:62(para)
msgid ""
"Enter the password, key or other authentication details as appropriate."
msgstr ""

#: internet/C/connecting.xml:66(para)
msgid ""
"If you have a wired network connection as well as an wireless connection, "
"the wired connection will be used by default."
msgstr ""

#: internet/C/connecting.xml:72(title) internet/C/basics.xml:33(title)
msgid "Mobile Broadband"
msgstr ""

#: internet/C/connecting.xml:73(para)
msgid ""
"<emphasis>Mobile Broadband</emphasis> means any kind of high speed internet "
"connection which is provided by an external device such as a 3G usb stick or "
"mobile phone with built-in HSPA/UMTS/GPRS data connection. Some laptops have "
"recently been produced with mobile broadband devices already inside them."
msgstr ""

#: internet/C/connecting.xml:74(para)
msgid ""
"Most Mobile Broadband devices should be recognised automatically when you "
"connect them to your computer. Ubuntu will prompt you to configure the "
"device."
msgstr ""

#: internet/C/connecting.xml:76(para)
msgid ""
"The <guilabel>New Mobile Broadband Connection</guilabel> Wizard will open "
"automatically when you connect the device."
msgstr ""

#: internet/C/connecting.xml:77(para)
msgid ""
"Click <guibutton>Forward</guibutton> and insert your details, including the "
"country where your Mobile Broadband device was issued, the network provider "
"and type of connection (for example, <emphasis>Contract</emphasis> or "
"<emphasis>pre-pay</emphasis>)."
msgstr ""

#: internet/C/connecting.xml:78(para)
msgid ""
"Give your connection a name (it is up to you what name you choose) and click "
"<guibutton>Apply</guibutton>."
msgstr ""

#: internet/C/connecting.xml:79(para)
msgid ""
"Your connection is now ready to use. To connect, left click the "
"<guiicon>NetworkManager</guiicon> icon in the top right of the panel and "
"select your new connection."
msgstr ""

#: internet/C/connecting.xml:80(para)
msgid ""
"To disconnect, left click the <guiicon>NetworkManager</guiicon> icon in the "
"top right of the panel and click <guibutton>Disconnect</guibutton>."
msgstr ""

#: internet/C/connecting.xml:82(para)
msgid ""
"If you are not prompted to configure the device when you connect it, it may "
"still be recognised by Ubuntu. In such cases you can add the connection "
"manually."
msgstr ""

#: internet/C/connecting.xml:84(para)
msgid ""
"Right click the <guiicon>NetworkManager</guiicon> icon in the top right of "
"the panel and click <guilabel>Edit Connections...</guilabel>"
msgstr ""

#: internet/C/connecting.xml:85(para)
msgid "Select the <guilabel>Mobile Broadband</guilabel> tab."
msgstr ""

#: internet/C/connecting.xml:86(para) internet/C/connecting.xml:98(para) internet/C/connecting.xml:107(para)
msgid "Click <guibutton>Add</guibutton>."
msgstr ""

#: internet/C/connecting.xml:87(para)
msgid ""
"This should open the <guilabel>New Mobile Broadband Connection</guilabel> "
"Wizard. Enter your details as described above."
msgstr ""

#: internet/C/connecting.xml:92(title) internet/C/basics.xml:38(title)
msgid "Virtual Private Networks"
msgstr ""

#: internet/C/connecting.xml:93(para)
msgid ""
"There are three types of Virtual Private Networks (VPNs) that are currently "
"supported by NetworkManager (NM). It is important to know which type of VPN "
"network you are attempting to connect to."
msgstr ""

#: internet/C/connecting.xml:96(para)
msgid ""
"Begin by installing <ulink url=\"apt:network-manager-openvpn\">network-"
"manager-openvpn</ulink>, <ulink url=\"apt:network-manager-pptp\">network-"
"manager-pptp</ulink> and/or <ulink url=\"apt:network-manager-vpnc\">network-"
"manager-vpnc</ulink>."
msgstr ""

#: internet/C/connecting.xml:97(para)
msgid ""
"Left click the <guiicon>NetworkManager</guiicon> icon and click "
"<guilabel>Configure VPN...</guilabel> from the <guilabel>VPN "
"Connections</guilabel> option."
msgstr ""

#: internet/C/connecting.xml:103(title) internet/C/basics.xml:43(title)
msgid "DSL"
msgstr ""

#: internet/C/connecting.xml:105(para)
msgid ""
"Right click the <guiicon>NetworkManager</guiicon> icon and click "
"<guilabel>Edit connections...</guilabel>"
msgstr ""

#: internet/C/connecting.xml:106(para)
msgid "Click <guilabel>DSL</guilabel>."
msgstr ""

#: internet/C/basics.xml:16(title)
msgid "Networking Basics"
msgstr ""

#: internet/C/basics.xml:20(para) internet/C/basics.xml:50(para) internet/C/basics.xml:65(para)
msgid "INTRO"
msgstr ""

#: internet/C/basics.xml:24(para) internet/C/basics.xml:29(para) internet/C/basics.xml:34(para) internet/C/basics.xml:39(para) internet/C/basics.xml:44(para) internet/C/basics.xml:54(para) internet/C/basics.xml:59(para)
msgid "HOWTO"
msgstr ""

#: internet/C/basics.xml:53(title)
msgid "Networking"
msgstr ""

#: internet/C/adsl.xml:16(title)
msgid "ADSL Modems"
msgstr ""

#: internet/C/adsl.xml:18(title)
msgid "USB ADSL Modems"
msgstr ""

#: internet/C/adsl.xml:19(para)
msgid ""
"Often parts of ADSL USB modem drivers are proprietary, closed source "
"software and so cannot be supplied with Ubuntu. To get a modem to work with "
"these drivers, you will need to download files from Internet with a computer "
"having a working connection, then transfer the downloaded files to your "
"Ubuntu installation."
msgstr ""

#: internet/C/adsl.xml:20(para)
msgid ""
"If you have a modem that can connect both via USB and ethernet, or an "
"ethernet router, you should use the ethernet connection."
msgstr ""

#: internet/C/adsl.xml:21(para)
msgid ""
"USB modem installation will require Internet access to download the "
"necessary proprietary drivers. Configuration is beyond the scope of this "
"guide; please see the links to the relevant installation instructions on the "
"Ubuntu community help site, below."
msgstr ""

#: internet/C/adsl.xml:22(para)
msgid ""
"To identify model of your modem, note the name and number on the front. You "
"may have to look for a label to discover the exact model. Consult the list "
"below to see which driver your modem requires, and note the link."
msgstr ""

#: internet/C/adsl.xml:23(para)
msgid ""
"When you go online to download the necessary drivers, you can download the "
"relevant drivers using the links provided."
msgstr ""

#: internet/C/adsl.xml:26(para)
msgid "Speedtouch modems:"
msgstr ""

#: internet/C/adsl.xml:27(ulink)
msgid "https://help.ubuntu.com/community/UsbAdslModem/SpeedTouch"
msgstr ""

#: internet/C/adsl.xml:29(para)
msgid ""
"Modems using the Analog Devices Inc. eagle-usb I, II or III chipset (such as "
"Sagem Fast 800, Comtrend ct 350 etc.):"
msgstr ""

#: internet/C/adsl.xml:30(ulink)
msgid "https://help.ubuntu.com/community/UsbAdslModem/ueagle-atm"
msgstr ""

#: internet/C/adsl.xml:31(ulink)
msgid "https://help.ubuntu.com/community/UsbAdslModem/EagleUsb"
msgstr ""

#: internet/C/adsl.xml:34(para)
msgid "Connexant AccessRunner based modems:"
msgstr ""

#: internet/C/adsl.xml:35(ulink)
msgid "https://help.ubuntu.com/community/UsbAdslModem/EciAdsl"
msgstr ""

#: internet/C/adsl.xml:36(ulink)
msgid "https://help.ubuntu.com/community/UsbAdslModem/AccessRunner"
msgstr ""

#: internet/C/adsl.xml:37(ulink)
msgid "https://help.ubuntu.com/community/UsbAdslModem/e-techV2"
msgstr ""

#: internet/C/adsl.xml:42(title)
msgid "PPPoE Modems"
msgstr ""

#: internet/C/adsl.xml:43(para)
msgid ""
"This section is about setting up an ADSL Internet connection using an "
"ethernet PPPoE modem."
msgstr ""

#: internet/C/adsl.xml:44(para)
msgid ""
"You will require a subscription with an <emphasis>Internet Service "
"Provider</emphasis>, and an installed, functional Internet connection. Most "
"modems have a light which will be lit if it is currently connected to the "
"Internet. You will also need your username and password for the Internet "
"account."
msgstr ""

#: internet/C/adsl.xml:47(title)
msgid "Setting up PPPoE"
msgstr ""

#: internet/C/adsl.xml:48(para)
msgid "To set up the modem:"
msgstr ""

#: internet/C/adsl.xml:50(para)
msgid ""
"Open a terminal "
"(<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenu"
"item><guimenuitem>Terminal</guimenuitem></menuchoice>)"
msgstr ""

#: internet/C/adsl.xml:51(para)
msgid "In the terminal, type <screen>sudo pppoeconf</screen>"
msgstr ""

#: internet/C/adsl.xml:54(para)
msgid "Confirm that your Ethernet card is detected."
msgstr ""

#: internet/C/adsl.xml:55(para)
msgid "Enter your username."
msgstr ""

#: internet/C/adsl.xml:56(para)
msgid "Enter your password."
msgstr ""

#: internet/C/adsl.xml:57(para)
msgid ""
"If you already have a PPPoE Connection configured, you will be asked if it "
"may be modified."
msgstr ""

#: internet/C/adsl.xml:58(para)
msgid ""
"Popular options: you are asked if you want the <quote>noauth</quote> and "
"<quote>defaultroute</quote> options and to remove <quote>nodetach</quote>. "
"Choose <guibutton>Yes</guibutton>."
msgstr ""

#: internet/C/adsl.xml:59(para)
msgid "Use peer DNS - choose <guibutton>Yes</guibutton>."
msgstr ""

#: internet/C/adsl.xml:60(para)
msgid "Limited MSS problem - choose <guibutton>Yes</guibutton>."
msgstr ""

#: internet/C/adsl.xml:61(para)
msgid ""
"When you are asked if you want to connect at start up, you will probably "
"want to say yes."
msgstr ""

#: internet/C/adsl.xml:62(para)
msgid ""
"Finally you are asked if you want to establish the connection immediately."
msgstr ""

#: internet/C/adsl.xml:52(para)
msgid ""
"A text-based menu program will guide you through the following steps: "
"<placeholder-1/>"
msgstr ""

#: internet/C/adsl.xml:65(para)
msgid ""
"Once you have finished these steps, your connection should be working."
msgstr ""

#: internet/C/adsl.xml:69(title)
msgid "Starting the connection"
msgstr ""

#: internet/C/adsl.xml:70(para)
msgid ""
"To start your ADSL connection on demand, in a terminal "
"(<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenu"
"item><guimenuitem>Terminal</guimenuitem></menuchoice>) type:"
msgstr ""

#: internet/C/adsl.xml:71(screen)
#, no-wrap
msgid "sudo pon dsl-provider"
msgstr ""

#: internet/C/adsl.xml:74(title)
msgid "Stopping the connection"
msgstr ""

#: internet/C/adsl.xml:75(para)
msgid ""
"To stop your ADSL connection, in a terminal "
"(<menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenu"
"item><guimenuitem>Terminal</guimenuitem></menuchoice>) type:"
msgstr ""

#: internet/C/adsl.xml:76(screen)
#, no-wrap
msgid "sudo poff dsl-provider"
msgstr ""

#. Put one translator per line, in the form of NAME <EMAIL>, YEAR1, YEAR2.
#: internet/C/adsl.xml:0(None)
msgid "translator-credits"
msgstr ""
"Launchpad Contributions:\n"
"  Robert Collins https://launchpad.net/~lifeless\n"
"\n"
"Launchpad Contributions:\n"
"  Launchpad Translations Administrators https://launchpad.net/~rosetta-"
"admins\n"
"  Robert Collins https://launchpad.net/~lifeless\n"
"\n"
"Launchpad Contributions:\n"
"  Launchpad Translations Administrators https://launchpad.net/~rosetta-"
"admins\n"
"  Robert Collins https://launchpad.net/~lifeless"

#~ msgid "Internet"
#~ msgstr "Interrete"