~mahara-lang/mahara-manual/1.9_STABLE-export

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
# Chinese (Traditional) translation for mahara-manual
# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
# This file is distributed under the same license as the mahara-manual package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: mahara-manual\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2016-05-08 16:13+1200\n"
"PO-Revision-Date: 2014-04-20 07:24+0000\n"
"Last-Translator: Eric Hsin <Unknown>\n"
"Language-Team: Chinese (Traditional) <zh_TW@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: 2016-05-09 05:18+0000\n"
"X-Generator: Launchpad (build 18025)\n"

#: ../source/groups/create_group.rst:13
msgid "Set up a group"
msgstr "設立一個群組"

#: ../source/groups/create_group.rst:15
msgid "*Groups → My groups → Create group*"
msgstr ""

#: ../source/groups/create_group.rst:17
msgid "You can create different groups depending on your role."
msgstr ""

#: ../source/groups/create_group.rst:19
msgid "All users"
msgstr ""

#: ../source/groups/create_group.rst:21
msgid ""
"**Open membership**: Any user of the site can become a member simply by "
"visiting your group page and clicking the *Join* button."
msgstr ""

#: ../source/groups/create_group.rst:22
msgid ""
"**Request membership** Any user can request to join your group. However, as "
"owner you can choose to accept or decline this request. The requesting "
"member will be notified of your decision automatically."
msgstr ""

#: ../source/groups/create_group.rst:26
msgid ""
"In addition, staff and administrators can create groups with **controlled "
"membership**:"
msgstr ""

#: ../source/groups/create_group.rst:28
msgid "You can add users directly to your group."
msgstr ""

#: ../source/groups/create_group.rst:29
msgid "The members cannot leave this group."
msgstr ""

#: ../source/groups/create_group.rst:30
msgid ""
"You can assign tutors to the group. They can give feedback on submitted "
"pages, but not administer group members."
msgstr ""

#: ../source/groups/create_group.rst:31
msgid ""
"Group members can :ref:`submit portfolio pages or collections for feedback / "
"assessment <submit_page>`. These pages are locked until released by a group "
"administrator or tutor."
msgstr ""

#: ../source/groups/create_group.rst:34
msgid ""
"The site administrator can limit the creation of groups to users with staff "
"and / or administrator rights. If you cannot create a group, you will most "
"likely not have the appropriate permission and will have to contact your "
"site administrator, e.g. via the *Contact us* form, to enquire about the "
"process of having a group set up."
msgstr ""

#: ../source/groups/create_group.rst:47
#: ../source/groups/create_group.rst:54
msgid "Create a group as a user"
msgstr ""

#: ../source/groups/create_group.rst:49
msgid ""
"If you are allowed to create a group, you see the *Create group* button on "
"the :ref:`My groups <my_groups>` overview page."
msgstr ""

#: ../source/groups/create_group.rst:56
msgid ""
"**Group name**: Provide a name for your group. This field is mandatory."
msgstr ""

#: ../source/groups/create_group.rst:59
msgid ""
"The group name that you choose does not have to be unique. Other groups can "
"have the same name. In order to distinguish them more easily, you can add a "
"group description."
msgstr ""

#: ../source/groups/create_group.rst:61
msgid "**Group description**: Briefly describe what your group is about."
msgstr ""

#: ../source/groups/create_group.rst:67
msgid ""
"**Open**: Check this box if you want to create an open membership group. "
"This allows users to join the group without approval from group "
"administrators."
msgstr ""

#: ../source/groups/create_group.rst:68
msgid ""
"**Request**: Check this box if you wish to create a request membership "
"group. Users will have to send a membership request that requires group "
"administrator approval. Open and request membership groups are mutually "
"exclusive."
msgstr ""

#: ../source/groups/create_group.rst:69
msgid ""
"**Friend invitations**: Check this box if you want to allow group members to "
"invite friends to join the group. Regardless of this setting, group "
"administrators can always send invitations to anyone. If the friends accept, "
"they will be added automatically to the group."
msgstr ""

#: ../source/groups/create_group.rst:70
msgid ""
"**Recommendations**: Check this box if you want to allow members to send a "
"recommendation for joining this group to their friends from a button on the "
"group homepage. If a request membership group has been recommended and the "
"friends are interested in it, they would still need the approval of the "
"group administrator to join. Friend invitations and recommendations are "
"mutually exclusive options."
msgstr ""

#: ../source/groups/create_group.rst:71
msgid ""
"**Create and edit pages**: Decide who shall be able to create and edit pages "
"in the group:"
msgstr ""

#: ../source/groups/create_group.rst:81
#: ../source/groups/create_group.rst:96
#: ../source/groups/create_group.rst:109
msgid "All group members"
msgstr ""

#: ../source/groups/create_group.rst:82
#: ../source/groups/create_group.rst:101
#: ../source/groups/create_group.rst:110
msgid ""
"Everyone except ordinary members, i.e. group administrators and tutors "
"depending on the group type"
msgstr ""

#: ../source/groups/create_group.rst:83
#: ../source/groups/create_group.rst:102
#: ../source/groups/create_group.rst:111
msgid "Group administrators only"
msgstr ""

#: ../source/groups/create_group.rst:77
msgid ""
"**Publicly viewable group**: Choose this option if anybody shall have access "
"to this group. You only see this setting :ref:`if the site administrator "
"allowed you to have it <group_settings>`. Anybody online can see the group "
"homepage and the discussion forum(s). Depending on the membership "
"visibility, they may also see group members. Only members of the groups can "
"see the group's pages, unless they have been made public, and the files area."
msgstr ""

#: ../source/groups/create_group.rst:78
msgid ""
"**Participation report**: Tick this checkbox if you as group administrator "
"want to view a report displaying all group pages and those that have been "
"shared with the group and see who commented on them."
msgstr ""

#: ../source/groups/create_group.rst:79
msgid ""
"**Start date**: As group administrator you can decide when regular group "
"members shall be able to create and edit content, forum discussions, pages "
"and collections in the group. Tick the checkbox *Set date* to enter a date "
"and time from when editing is allowed. Group administrators can always edit "
"content in a group."
msgstr ""

#: ../source/groups/create_group.rst:80
msgid ""
"**End date**: You can allow the editing of group content for regular members "
"up to a certain time. After that they will only be able to view forum "
"discussions, pages, collections and files, but not edit them. Tick the "
"checkbox *Set date* to enter a date and time until when editing is allowed. "
"Group administrators can always edit content in a group."
msgstr ""

#: ../source/groups/create_group.rst:81
msgid ""
"**Group category**: Choose a category if you want to associate your group to "
"one, allowing you to filter groups on the *My groups* and *Find groups* page "
"more easily. This setting is only available if :ref:`the site administrator "
"turned it on <group_settings>`."
msgstr ""

#: ../source/groups/create_group.rst:77
msgid ""
"**Shared page notification**: This checkbox has a check mark per default. "
"Whenever somebody shares a page with the group, all group members, |new in "
"Mahara 1.9| :index:`except the author of the page <single: New in Mahara "
"1.9; Exempt page owner to receive notification when sharing with group>`, "
"receive a notification. A notification will also be sent |new in Mahara 1.9| "
":index:`when <single: New in Mahara 1.9; Notify group members of the "
"creation of a new group page>` a new group page is created."
msgstr ""

#: ../source/groups/create_group.rst:80
msgid ""
"You may want to uncheck this setting in very large groups where lots of "
"pages are shared but members do not have to be notified."
msgstr ""

#: ../source/groups/create_group.rst:101
msgid ""
"Click the *Save group* button to finish creating your group, or click the "
"*Cancel* button to abort the group creation process."
msgstr ""

#: ../source/groups/create_group.rst:123
msgid "Create a group as staff member or institution administrator"
msgstr ""

#: ../source/groups/create_group.rst:125
msgid ""
"In addition to the group settings that a regular user has, institution staff "
"and administrators have a few more options."
msgstr ""

#: ../source/groups/create_group.rst:130
msgid "Additional options for staff and institution administrators"
msgstr ""

#: ../source/groups/create_group.rst:132
msgid ""
"**Controlled**: Create a controlled group if you wish to add users who "
"cannot leave the group. This is a useful setting for course groups where you "
"do not want members to leave."
msgstr ""

#: ../source/groups/create_group.rst:133
msgid ""
"**Roles**: Choose whether you have only members and administrators or also "
"tutors. The latter can provide feedback and release pages when page "
"submissions are allowed, but they cannot change group settings."
msgstr ""

#: ../source/groups/create_group.rst:122
msgid ""
"**Allow submissions**: Use this option to allow group members to "
":ref:`submit pages or collections for feedback / assessment <submit_page>`. "
"These pages and collections as well as a number of content items in them are "
"locked until released by a group administrator or tutor."
msgstr ""

#: ../source/groups/create_group.rst:128
msgid ""
"**Hide group**: Use this option to not list this group on the :ref:`Find "
"groups <find_groups>` page."
msgstr ""

#: ../source/groups/create_group.rst:129
msgid ""
"**Hide membership**: Use this option to hide the group's membership listing "
"from non-members."
msgstr ""

#: ../source/groups/create_group.rst:130
msgid ""
"**Hide membership from members**: Use this option to hide the group's "
"membership listing from members as well. Only group administrators can see "
"the members listed. Administrators are still shown on the group homepage."
msgstr ""

#: ../source/groups/create_group.rst:148
msgid "Create a group as a site administrator"
msgstr ""

#: ../source/groups/create_group.rst:135
msgid ""
"When you have site administrator rights, you have yet another setting when "
"you create a group: *Auto-add users*. When you tick this checkbox, new users "
"to the site are added to the group automatically."
msgstr ""

#: ../source/groups/create_group.rst:155
msgid "Add users to a group automatically"
msgstr ""

#: ../source/groups/create_group.rst:143
msgid ""
"This is a great setting when you want to set up a group which all users "
"should join in order to participate in forum discussions etc. On `mahara.org "
"<http://mahara.org>`_ this is used to make every user a member of the "
"\"Community\" group in which discussions around Mahara take place."
msgstr ""

#: ../source/groups/create_group.rst:166
msgid "Edit general group settings"
msgstr ""

#: ../source/groups/create_group.rst:168
msgid ""
"You can start out editing a group's settings from three places by clicking "
"the *Edit* button on:"
msgstr ""

#: ../source/groups/create_group.rst:170
msgid "the :ref:`My groups <my_groups>` page"
msgstr ""

#: ../source/groups/create_group.rst:171
msgid "the :ref:`Find groups <find_groups>` page"
msgstr ""

#: ../source/groups/create_group.rst:172
msgid "the group homepage"
msgstr ""

#: ../source/groups/create_group.rst:174
msgid ""
"You are then taken to the :ref:`same screen as if you were creating a group "
"<create_group_user>` and make the necessary changes."
msgstr ""

#: ../source/groups/create_group.rst:162
msgid ""
"You can change the group type to a different one. Please be careful if you "
"do so especially when you have allowed submissions of pages and collections "
"to the group. If users have submitted portfolio pages or collections to that "
"group, they remain locked when you untick the setting *Allow submissions*, "
"and you cannot release the pages until you enable that setting again."
msgstr ""

#: ../source/groups/create_group.rst:179
msgid ""
"If the site administrator activated :ref:`clean URLs <clean_urls>`, your "
"group (homepage) has a human-readable URL which you can change to a certain "
"extend."
msgstr ""

#: ../source/groups/create_group.rst:184
msgid "Change the URL for your group homepage"
msgstr ""

#: ../source/groups/create_group.rst:186
msgid ""
"Choose the name for your group (homepage) if you do not like the default "
"one. It must be 3-30 characters long. You can only use lowercase letters "
"from a-z, numbers and - (hyphen). Your group will then be available via a "
"URL like ``http://sitename/group/name-of-the-group``, for example: "
"``http://mahara-university.org/group/portfolio-task-force``."
msgstr ""

#: ../source/groups/create_group.rst:189
msgid ""
"Though you can change the URL to your group at any point, you should not do "
"that because people who already know the URL to your group will not be able "
"to access it anymore after you have changed it."
msgstr ""

#: ../source/groups/create_group.rst:176
msgid ""
"The original, internal Mahara URL, e.g. ``http://mahara-"
"university.org/group/view.php?id=456`` will still work."
msgstr ""

#: ../source/groups/find_friends.rst:10
msgid "Find friends"
msgstr ""

#: ../source/groups/find_friends.rst:12
msgid "*Groups → Find friends*"
msgstr ""

#: ../source/groups/find_friends.rst:14
msgid ""
"If you want to establish your social network, you can use the *Find friends* "
"page to find people to connect to. An alphabetical list of all users in your "
"institution(s) or on the entire system is provided."
msgstr ""

#: ../source/groups/find_friends.rst:19
msgid "*Find friends* page"
msgstr ""

#: ../source/groups/find_friends.rst:21
msgid ""
"Use the search box to search for a name of a user. Your search results are "
"limited to users from your institution(s). Choose the option \"Everyone\" to "
"search for any user on the system."
msgstr ""

#: ../source/groups/find_friends.rst:22
msgid ""
"All results are listed. You can click on the name to view that user's "
"profile page. You also see if a user is already a friend of yours."
msgstr ""

#: ../source/groups/find_friends.rst:23
msgid "You see more information about this user and can take more actions:"
msgstr ""

#: ../source/groups/find_friends.rst:25
msgid "View the institution(s) of which the user is a member."
msgstr ""

#: ../source/groups/find_friends.rst:26
msgid "Send this user a message without requesting friendship."
msgstr ""

#: ../source/groups/find_friends.rst:25
msgid "Send this user a friend request."
msgstr ""

#: ../source/groups/find_friends.rst:27
msgid ""
"Edit this user's group membership for a group of which you are an "
"administrator."
msgstr ""

#: ../source/groups/find_friends.rst:30
msgid ""
"You can prevent others from sending you messages or friend requests if you "
"disabled these options in :ref:`your account settings "
"<general_account_options>`."
msgstr ""

#: ../source/groups/find_friends.rst:36
msgid "Send a friend request"
msgstr ""

#: ../source/groups/find_friends.rst:38
msgid ""
"You can send a friend request from the *Find friends* page by clicking on "
"the *Send friend request* link next to the user you want to be friends with."
msgstr ""

#: ../source/groups/find_friends.rst:43
msgid "Send friend request"
msgstr ""

#: ../source/groups/find_friends.rst:46
msgid ""
"Give a reason why want to request friendship with this user. This reason can "
"be important if the other person does not know you well and thus may likely "
"reject your request."
msgstr ""

#: ../source/groups/find_friends.rst:51
msgid ""
"Click the *Request friendship* button to send off your friend request or "
"click the *Cancel* button to abort your action."
msgstr ""

#: ../source/groups/find_friends.rst:53
msgid ""
"You do not need to request the friendship of other users in order to see "
"their portfolio pages or collections. Access permissions are independent of "
"being friends on Mahara."
msgstr ""

#: ../source/groups/find_friends.rst:59
msgid "Accept a friend request"
msgstr ""

#: ../source/groups/find_friends.rst:61
msgid ""
"When another user has requested friendship, you receive a notification which "
"is shown in the login box."
msgstr ""

#: ../source/groups/find_friends.rst:66
msgid "Pending friend request"
msgstr ""

#: ../source/groups/find_friends.rst:68
msgid ""
"When you click on the friend request, you are taken to your *My friends* "
"page. All your pending friend requests are shown."
msgstr ""

#: ../source/groups/find_friends.rst:73
msgid "View all your pending friend requests"
msgstr ""

#: ../source/groups/find_friends.rst:72
msgid ""
"View the name of the person requesting friendship and a short description if "
"the user had written one in *Content → Profile → Introduction*. You can "
"click on the name and view the profile page."
msgstr ""

#: ../source/groups/find_friends.rst:77
msgid ""
"Read the reason why this user requests friendship if the user provided a "
"reason."
msgstr ""

#: ../source/groups/find_friends.rst:78
msgid ""
"Click the *Approve request* button to approve the friend request. Once you "
"approve a friend request, you appear immediately on that user's *My friends* "
"page and the user on yours."
msgstr ""

#: ../source/groups/find_friends.rst:79
msgid "Click the *Deny request* button to deny friendship."
msgstr ""

#: ../source/groups/find_friends.rst:77
msgid ""
"Click the *Send message* button to communicate with the user before making "
"your decision about this friend request."
msgstr ""

#: ../source/groups/find_friends.rst:85
#: ../source/groups/find_friends.rst:92
msgid "Deny a friend request"
msgstr ""

#: ../source/groups/find_friends.rst:88
msgid ""
"When somebody sent you a friend request, go to the *My friends* page to view "
"your pending requests."
msgstr ""

#: ../source/groups/find_friends.rst:95
msgid ""
"Next to the person whose request you wish to deny, click the *Deny request* "
"button."
msgstr ""

#: ../source/groups/find_friends.rst:94
msgid "Provide a reason for your denial if you wish to give one."
msgstr ""

#: ../source/groups/find_friends.rst:97
msgid ""
"Click the *Deny friend request* button to send your message or click the "
"*Cancel* button to abort your action."
msgstr ""

#: ../source/groups/find_friends.rst:98
msgid ""
"The user receives a notification which includes your reason for denial."
msgstr ""

#: ../source/groups/find_group.rst:10
msgid "Find groups"
msgstr ""

#: ../source/groups/find_group.rst:12
msgid "*Groups → Find groups*"
msgstr ""

#: ../source/groups/find_group.rst:14
msgid ""
"You see groups and get basic information about them. If a group "
"administrator decided to hide a group, you will not be able to see it unless "
"you have been invited to it."
msgstr ""

#: ../source/groups/find_group.rst:19
msgid "A list of groups and certain actions you can perform"
msgstr ""

#: ../source/groups/find_group.rst:21
msgid ""
"Search for a certain group using a word / words from its title or "
"description. You can limit your search results to a certain group category "
"if :ref:`group categories <group_categories>` exist. You can search for"
msgstr ""

#: ../source/groups/find_group.rst:23
msgid ""
"groups you can join. This is the default value and only shows those groups "
"that you are not a member of **and** that you can join. Thus, it does not "
"show any groups that have :ref:`controlled membership <group_controlled>`."
msgstr ""

#: ../source/groups/find_group.rst:24
msgid "groups you are not in."
msgstr ""

#: ../source/groups/find_group.rst:25
msgid "groups you belong to."
msgstr ""

#: ../source/groups/find_group.rst:26
msgid "all groups."
msgstr ""

#: ../source/groups/find_group.rst:30
msgid "You can find out more about a group by"
msgstr ""

#: ../source/groups/find_group.rst:32
msgid "clicking on the group name to see the group homepage."
msgstr ""

#: ../source/groups/find_group.rst:33
msgid ""
"clicking on the name of the group administrator to get to their profile page."
msgstr ""

#: ../source/groups/find_group.rst:34
msgid ""
"clicking on the member link to see who is already a member of this group if "
"the administrator discloses this."
msgstr ""

#: ../source/groups/find_group.rst:37
msgid ""
"Users who are staff or administrators in Mahara can hide groups. Thus, you "
"may not be able to see all groups that exist in the system."
msgstr ""

#: ../source/groups/find_group.rst:39
msgid ""
"If you want to become a member of an open group, click the *Join this group* "
"button, and you will be a member immediately."
msgstr ""

#: ../source/groups/find_group.rst:41
msgid ""
"If you want to join a group that needs the approval of the group "
"administrator, click the *Request to join this group* button next to the "
"group. The administrator will receive a notification and decide about "
"admitting you to the group."
msgstr ""

#: ../source/groups/find_group.rst:39
msgid ""
"If you have been invited to a group, either *Accept* or *Decline* the "
"membership invitation."
msgstr ""

#: ../source/groups/find_group.rst:46
msgid ""
"Usually, you do not see forums, group pages, group collections and group "
"files unless you are a member of a group. If a group is publicly available, "
"you do see the forum discussions."
msgstr ""

#: ../source/groups/groups.rst:8
msgid "Groups"
msgstr ""

#: ../source/groups/groups.rst:21
msgid ""
"Groups can be used for collaboration among users as they offer the "
"possibilities to:"
msgstr ""

#: ../source/groups/groups.rst:23
msgid "discuss topics in forums"
msgstr ""

#: ../source/groups/groups.rst:24
msgid "create and edit pages and collections together"
msgstr ""

#: ../source/groups/groups.rst:25
msgid "share files"
msgstr ""

#: ../source/groups/groups.rst:26
msgid "share pages"
msgstr ""

#: ../source/groups/groups.rst:27
msgid "submit pages for assessment / feedback"
msgstr ""

#: ../source/groups/groups.rst:30
msgid ""
"Groups can be created by every user, staff or administrators only. The site "
"administrator decides that in *Administration → Configure site → Group "
"settings*."
msgstr ""

#: ../source/groups/groups.rst:32
msgid "The *Groups* menu has a number of sub menus:"
msgstr ""

#: ../source/groups/groups.rst:34
msgid ""
":ref:`My groups <my_groups>`: Displays the groups that you administer or in "
"which you are a member. You can create new groups from here if you have the "
"appropriate rights."
msgstr ""

#: ../source/groups/groups.rst:35
msgid ""
":ref:`Find groups <find_groups>`: Lists all groups in the system that you "
"can view and allows you to join or request membership in them if groups "
"allow that."
msgstr ""

#: ../source/groups/groups.rst:36
msgid ""
":ref:`My friends <my_friends>`: Displays your friends and gives you easy "
"access to their profile pages."
msgstr ""

#: ../source/groups/groups.rst:37
msgid ""
":ref:`Find friends <find_friends>`: Search for users in Mahara that you may "
"wish to add to your friends list."
msgstr ""

#: ../source/groups/groups.rst:38
msgid ""
":ref:`Shared pages <shared_pages>`: Lists the pages that you have permission "
"to view."
msgstr ""

#: ../source/groups/groups.rst:39
msgid ""
":ref:`Topics <topics>`: Shows the latest discussion topics in your groups."
msgstr ""

#: ../source/groups/inside_group.rst:7
msgid "Inside a group"
msgstr ""

#: ../source/groups/inside_group.rst:10
msgid ""
"It depends on your role in the group whether you can access / change certain "
"functionalities that you see in the screenshots and that are described in "
"the text."
msgstr ""

#: ../source/groups/inside_group.rst:21
#: ../source/groups/inside_group.rst:548
msgid "Group homepage"
msgstr ""

#: ../source/groups/inside_group.rst:23
msgid "*Groups → Name of the group → About*"
msgstr ""

#: ../source/groups/inside_group.rst:25
msgid ""
"The *group homepage* is the central space for a group. There you can get a "
"quick overview of the group and reach all the places that you wish to take a "
"look at in a group. You see a few things per default on the group homepage. "
"The items displayed on the group homepage do not only depend on the default "
"settings but also the options chosen when :ref:`the group was created "
"<create_group_user>`."
msgstr ""

#: ../source/groups/inside_group.rst:30
msgid "Sample group homepage"
msgstr ""

#: ../source/groups/inside_group.rst:35
msgid "Group name"
msgstr ""

#: ../source/groups/inside_group.rst:33
msgid ""
"When you are a member in the group, you see your status and whether you can "
"leave the group or not. When you are an administrator of the group, you see "
"the *Edit* and *Delete* buttons."
msgstr ""

#: ../source/groups/inside_group.rst:43
msgid ""
"If the group administrator allowed group members to recommend the group to "
"friends, you see the *Recommend to friends* button. If the group "
"administrator allowed users to invite friends, you see the *Invite friends* "
"button."
msgstr ""

#: ../source/groups/inside_group.rst:38
msgid ""
"Group navigation: You see all the areas that you have access to in the "
"group. If you are not allowed to edit pages, you will not see the \"Share\" "
"tab, for example."
msgstr ""

#: ../source/groups/inside_group.rst:39
msgid "Basic information about this group:"
msgstr ""

#: ../source/groups/inside_group.rst:41
msgid ""
"**Group characteristics**: Important group attributes, e.g. open or request "
"group, possibility of having submissions etc."
msgstr ""

#: ../source/groups/inside_group.rst:54
msgid ""
"**Group administrators**: Click on their names to view their profile pages."
msgstr ""

#: ../source/groups/inside_group.rst:47
msgid ""
"**Group category**: Category to which this group belongs; great for "
"filtering groups on :ref:`My groups <my_groups>` or :ref:`Find groups "
"<find_groups>`."
msgstr ""

#: ../source/groups/inside_group.rst:45
msgid "**Created**: Creation date of the group."
msgstr ""

#: ../source/groups/inside_group.rst:52
msgid ""
"**Editable**: If the group administrator defined a time frame within which "
"group content is only editable for group members, it is displayed here. If "
"the group administrator did not set a start and / or end date, this setting "
"will not be shown."
msgstr ""

#: ../source/groups/inside_group.rst:53
msgid ""
"Statistics on the number of group members, pages, files, folders, forums, "
"forum topics and posts."
msgstr ""

#: ../source/groups/inside_group.rst:48
msgid ""
"**Latest forum posts**: A list of the most recent forum posts and a link to "
"the forums."
msgstr ""

#: ../source/groups/inside_group.rst:49
msgid ""
"**Group pages**: A list of group pages that have been created in the group."
msgstr ""

#: ../source/groups/inside_group.rst:50
msgid ""
"If you are allowed to copy a group page into your own portfolio, you will "
"see the *Copy page* button next to that group page."
msgstr ""

#: ../source/groups/inside_group.rst:48
msgid ""
"**Pages shared with this group by others**: View pages that members have "
"shared with the group."
msgstr ""

#: ../source/groups/inside_group.rst:57
msgid ""
"**Submit a page or collection to this group**: If the group allows page or "
"collection submissions, :ref:`select the page or collection <submit_page>` "
"that you want to submit for assessment / feedback. You do not have to share "
"the page or collection with the group. The administrator (and tutor) can "
"view the page or collection once it has been submitted."
msgstr ""

#: ../source/groups/inside_group.rst:62
msgid ""
"**Members**: A list of select group members and a link to the full list if "
"the group administrator did not hide the group membership."
msgstr ""

#: ../source/groups/inside_group.rst:66
msgid ""
"If you are a group administrator, you can put other blocks on the group "
"homepage. Check the :ref:`blocks in pages context <blocks_in_context>` for a "
"list of them."
msgstr ""

#: ../source/groups/inside_group.rst:86
msgid "Members"
msgstr ""

#: ../source/groups/inside_group.rst:88
msgid "*Groups → Name of the group → Members*"
msgstr ""

#: ../source/groups/inside_group.rst:91
msgid "Members page"
msgstr ""

#: ../source/groups/inside_group.rst:96
msgid "Group members page as seen by a group administrator"
msgstr ""

#: ../source/groups/inside_group.rst:72
msgid "On the group members page, a **group admin** can:"
msgstr ""

#: ../source/groups/inside_group.rst:102
msgid ""
"Invite multiple users to the group at once or add multiple users in bulk if "
"it is a controlled membership group."
msgstr ""

#: ../source/groups/inside_group.rst:103
msgid ""
"Search for group members by putting their name in the search box and then "
"clicking the *Search* button. You can combine the name search with the "
"sorting options that follow."
msgstr ""

#: ../source/groups/inside_group.rst:104
msgid ""
"Sort group members by selecting one of the following options and then "
"clicking the *Search* button:"
msgstr ""

#: ../source/groups/inside_group.rst:106
msgid "display administrators first"
msgstr ""

#: ../source/groups/inside_group.rst:111
msgid "sort everyone alphabetically from A to Z"
msgstr ""

#: ../source/groups/inside_group.rst:112
msgid "sort everyone alphabetically from Z to A"
msgstr ""

#: ../source/groups/inside_group.rst:113
msgid "sort everyone chronologically starting with those who joined first"
msgstr ""

#: ../source/groups/inside_group.rst:114
msgid "sort everyone chronologically starting with those who joined last"
msgstr ""

#: ../source/groups/inside_group.rst:121
msgid "View basic information about group members:"
msgstr ""

#: ../source/groups/inside_group.rst:123
msgid "their name"
msgstr ""

#: ../source/groups/inside_group.rst:124
msgid "their role"
msgstr ""

#: ../source/groups/inside_group.rst:125
msgid "their profile introduction text"
msgstr ""

#: ../source/groups/inside_group.rst:126
msgid "their group joining date"
msgstr ""

#: ../source/groups/inside_group.rst:128
msgid "Change the role of a user."
msgstr ""

#: ../source/groups/inside_group.rst:129
msgid ""
"Remove a user from the group by clicking the *Remove from group* button."
msgstr ""

#: ../source/groups/inside_group.rst:130
msgid "Decide how many members you want to display per page."
msgstr ""

#: ../source/groups/inside_group.rst:133
msgid ""
"If you are **a regular group member**, you are not able to invite or add "
"people from the members page, and you cannot change the role or remove a "
"user from the group."
msgstr ""

#: ../source/groups/inside_group.rst:134
msgid "New member invitation"
msgstr ""

#: ../source/groups/inside_group.rst:136
msgid ""
"A group administrator can always invite any user to a group from the "
"*Members* tab by clicking on the link *send multiple invitations at once*. "
"If the group administrator allowed users to invite friends, they can do so "
"via the *Invite friends* button on the group homepage."
msgstr ""

#: ../source/groups/inside_group.rst:167
msgid "Invite other users to a group"
msgstr ""

#: ../source/groups/inside_group.rst:170
msgid ""
"**Potential members**: Select the users you want to invite to the group."
msgstr ""

#: ../source/groups/inside_group.rst:172
msgid "If you are a group administrator, you see all users on the site."
msgstr ""

#: ../source/groups/inside_group.rst:173
msgid "If you are a regular group member, you only see your friends."
msgstr ""

#: ../source/groups/inside_group.rst:148
msgid ""
"**Search**: You can also search for users in the *search* box if there are "
"too many names listed. Then select the users you want to invite."
msgstr ""

#: ../source/groups/inside_group.rst:175
msgid ""
"Add the users to the list **Users to be invited** by clicking the *right-"
"arrow* button |right-arrow|."
msgstr ""

#: ../source/groups/inside_group.rst:176
msgid ""
"If you put a person into the box for users to be invited by accident, you "
"can remove them from that list by clicking on them."
msgstr ""

#: ../source/groups/inside_group.rst:177
msgid ""
"Then click on the *left-arrow* button |left-arrow|, and they are removed "
"from the list."
msgstr ""

#: ../source/groups/inside_group.rst:178
msgid ""
"When you have all the users you wish to invite to this group, click the "
"*Submit* button."
msgstr ""

#: ../source/groups/inside_group.rst:179
msgid ""
"The invited users will receive a notification. The group will also be listed "
"on the users' *My groups* page where they can accept or decline group "
"membership."
msgstr ""

#: ../source/groups/inside_group.rst:182
#: ../source/groups/inside_group.rst:206
msgid ""
"You can also double-click a name to move it from one side to the other."
msgstr ""

#: ../source/groups/inside_group.rst:162
msgid "Group membership recommendation"
msgstr ""

#: ../source/groups/inside_group.rst:190
msgid ""
"If the group administrator allowed membership recommendations when "
":ref:`creating or editing a group <create_group_user>`, group members can "
"recommend the group to their friends by clicking the *Recommend to friends* "
"button on the group homepage."
msgstr ""

#: ../source/groups/inside_group.rst:195
msgid "Recommend a group to friends"
msgstr ""

#: ../source/groups/inside_group.rst:198
msgid ""
"**Potential members**: Select the friends to whom you want to recommend this "
"group."
msgstr ""

#: ../source/groups/inside_group.rst:172
msgid ""
"**Search**: You can also search for your friends in the *search* box if "
"there are too many names listed."
msgstr ""

#: ../source/groups/inside_group.rst:199
msgid ""
"Add the users to the list **Users who will be sent a recommendation** by "
"clicking the *right-arrow* button |right-arrow|."
msgstr ""

#: ../source/groups/inside_group.rst:200
msgid ""
"If you put a person into the box for recommendations by accident, you can "
"remove them from that list by clicking on them."
msgstr ""

#: ../source/groups/inside_group.rst:201
msgid ""
"Then click the *left-arrow* button |left-arrow|, and they are removed from "
"the list."
msgstr ""

#: ../source/groups/inside_group.rst:202
msgid ""
"When you have all the users to whom you want to send a recommendation, click "
"the *Submit* button."
msgstr ""

#: ../source/groups/inside_group.rst:177
msgid ""
"The users will receive a notification and can then decide to join the group."
msgstr ""

#: ../source/groups/inside_group.rst:212
msgid "Forums"
msgstr ""

#: ../source/groups/inside_group.rst:214
msgid "*Groups → Name of the group → Forums*"
msgstr ""

#: ../source/groups/inside_group.rst:216
msgid ""
"The forums are visible to all group members. If you create a :ref:`public "
"group <public_group>`, anybody online will be able to see the forum "
"discussions. However, they would need to log in to participate. Forums in "
"public groups receive an RSS feed to enable users to subscribe to the "
"discussion forum, e.g. the `mahara.org community forums "
"<http://mahara.org/interaction/forum/index.php?group=1>`_."
msgstr ""

#: ../source/groups/inside_group.rst:221
msgid "Group forum overview page"
msgstr ""

#: ../source/groups/inside_group.rst:197
msgid ""
"If you have appropriate rights, you can create a new forum by clicking on "
"the *New forum* button."
msgstr ""

#: ../source/groups/inside_group.rst:224
msgid "**Forum**: Name and brief description of the forum."
msgstr ""

#: ../source/groups/inside_group.rst:225
msgid "**Moderators**: View the forum moderators (if appointed)."
msgstr ""

#: ../source/groups/inside_group.rst:230
msgid "**Group administrators**: View the group administrators."
msgstr ""

#: ../source/groups/inside_group.rst:226
msgid "**Topics**: Number of forum topics in each forum."
msgstr ""

#: ../source/groups/inside_group.rst:227
msgid ""
"If you want to receive notifications about new forum posts, you can "
"subscribe to a forum via the *Subscribe* button. If you already receive "
"notifications, you will see the *Unsubscribe* button to have the option to "
"not receive updates anymore."
msgstr ""

#: ../source/groups/inside_group.rst:228
msgid ""
"If you are a group administrator, you see the *Edit* button |edit| for "
"making changes to the forum settings."
msgstr ""

#: ../source/groups/inside_group.rst:204
msgid ""
"If you are a group administrator, you see the *Delete* button |delete| for "
"deleting the forum and all its topics."
msgstr ""

#: ../source/groups/inside_group.rst:238
msgid "Set up a new forum"
msgstr ""

#: ../source/groups/inside_group.rst:240
msgid "A group administrator can set up forums in a group."
msgstr ""

#: ../source/groups/inside_group.rst:245
msgid "Add a forum to a group"
msgstr ""

#: ../source/groups/inside_group.rst:247
msgid "Click the *New forum* button to set up a new forum."
msgstr ""

#: ../source/groups/inside_group.rst:248
msgid "**Title**: Give your new forum a title."
msgstr ""

#: ../source/groups/inside_group.rst:223
msgid ""
"**Description**: Write a brief description of your forum. This will appear "
"when the forum is listed under the *Forum* tab making it easier for users to "
"decide whether they want to look at it or not."
msgstr ""

#: ../source/groups/inside_group.rst:250
msgid ""
"**Forum indent mode**: Specify how the topics in this forum should be "
"indented."
msgstr ""

#: ../source/groups/inside_group.rst:252
msgid ""
"**Fully expand**: Indentation is used to indicate the replies to individual "
"posts. There is no limit to the level of indentation."
msgstr ""

#: ../source/groups/inside_group.rst:227
msgid ""
"**Expand to maximum**: Indentation to indicate the replies to individual "
"post specifying the maximum level of indentation (pops up once this option "
"is chosen). All replies beyond the chosen level are not indented further."
msgstr ""

#: ../source/groups/inside_group.rst:228
msgid ""
"**No indents**: There is no indentation of replies to individual posts, but "
"the forum structure is flat."
msgstr ""

#: ../source/groups/inside_group.rst:230
msgid "**Settings**: Choose advanced settings for your forum."
msgstr ""

#: ../source/groups/inside_group.rst:231
msgid "Click the *Save* button to make these changes."
msgstr ""

#: ../source/groups/inside_group.rst:233
msgid ""
"Besides these basic settings, there are additional ones that the "
"administrator can decide on."
msgstr ""

#: ../source/groups/inside_group.rst:264
msgid "Choose further settings in the forum"
msgstr ""

#: ../source/groups/inside_group.rst:266
msgid ""
"**Automatically subscribe users**: Choose whether group users will be "
"subscribed to this forum automatically. When subscribed, users will receive "
"notifications when new posts and replies are made in the forum. Users will "
"have the option to unsubscribe if they do not want to be notified."
msgstr ""

#: ../source/groups/inside_group.rst:267
msgid ""
"**Order**: A default position for your forum is chosen upon its creation - "
"after the last existing forum. Here you may position it elsewhere in the "
"list of forums. Click the radio button above or below a certain forum to "
"position it before or after it."
msgstr ""

#: ../source/groups/inside_group.rst:242
msgid ""
"**Moderators**: Choose one or more moderators for your forum. They can edit "
"and delete topics and posts as well as open, close, set and unset topics as "
"sticky. Thus, they can perform some administrative functions without having "
"to receive full group administrator rights."
msgstr ""

#: ../source/groups/inside_group.rst:244
msgid ""
"Select one or more users from the list of *Potential moderators* on the left "
"or search for a person."
msgstr ""

#: ../source/groups/inside_group.rst:245
msgid ""
"Click the *right-arrow* button |right-arrow| to  add the user(s) to the "
"*Current moderators*."
msgstr ""

#: ../source/groups/inside_group.rst:246
msgid ""
"To remove a moderator, select the user in the *Current moderators* list on "
"the right and click the *left-arrow* button |left-arrow| to remove this user."
msgstr ""

#: ../source/groups/inside_group.rst:248
msgid ""
"**Who can create topics**: Decide who in your group is allowed to create "
"topics within a forum. If set to \"All group members\", any group member can "
"create new topics and reply to existing topics. If set to \"Moderators and "
"group administrators\", only moderators and group administrators can start "
"new topics, but once topics exist, all users can post replies to them."
msgstr ""

#: ../source/groups/inside_group.rst:249
msgid ""
"**Close new topics**: If checked, all new topics in this forum will be "
"closed by default. Only moderators and group administrators can reply to "
"closed topics. This is a setting that may be useful for a forum that is "
"solely used for announcements."
msgstr ""

#: ../source/groups/inside_group.rst:250
msgid ""
"Click the *Save* button to save the settings for the forum or click the "
"*Cancel* button to retain the previous settings."
msgstr ""

#: ../source/groups/inside_group.rst:283
msgid "Add a forum topic"
msgstr ""

#: ../source/groups/inside_group.rst:285
msgid ""
"When you have the right to add a forum topic, you see the *New topic* button "
"when you click on a forum."
msgstr ""

#: ../source/groups/inside_group.rst:290
msgid "Add a new topic to a forum"
msgstr ""

#: ../source/groups/inside_group.rst:293
msgid ""
"An administrator also always has the buttons *Edit forum* and *Delete forum* "
"available to make changes to the forum set up."
msgstr ""

#: ../source/groups/inside_group.rst:298
msgid "Add a new forum topic"
msgstr ""

#: ../source/groups/inside_group.rst:300
msgid ""
"**Subject**: Type a concise description of what you wish to discuss in this "
"forum thread. This field is mandatory."
msgstr ""

#: ../source/groups/inside_group.rst:301
msgid "**Message**: Elaborate on the topic. This field is mandatory."
msgstr ""

#: ../source/groups/inside_group.rst:302
msgid ""
"**Sticky**: Administrator-only setting to keep the topic at the top of the "
"list of forum topics in the current forum."
msgstr ""

#: ../source/groups/inside_group.rst:303
msgid ""
"**Closed**: Administrator-only setting to prevent others from responding to "
"this post. Moderators and administrators can still post replies."
msgstr ""

#: ../source/groups/inside_group.rst:247
#: ../source/groups/inside_group.rst:298
msgid ""
"|new in Mahara 1.9| **Send message now**: If checked, the notification about "
":index:`your forum post is sent immediately <single: New in Mahara 1.9; Send "
"forum post notification immediately>` instead of waiting for the :ref:`forum "
"post delay time <plugin_forum>` to pass. You can still edit your message "
"normally."
msgstr ""

#: ../source/groups/inside_group.rst:305
msgid ""
"Click the *Post* button to send off your discussion topic, or click *Cancel* "
"to abort your action."
msgstr ""

#: ../source/groups/inside_group.rst:283
msgid ""
"When you write your forum topic, i.e. your first post, and any other "
"subsequent post, you have formatting options at your hands in the visual "
"editor (when it is enabled). It also allows you to insert images into your "
"post. **However**, you should not copy the URL of one of your images from "
"your *Files* area. This image is only displayed to you unless it is also "
"included in a page that you made available to this group, logged-in users or "
"the public. Permissions on artefacts are governed by the permissions set on "
"the page(s) in which they are included."
msgstr ""

#: ../source/groups/inside_group.rst:285
msgid ""
"In some groups you may be able to upload files into the group thus allowing "
"every group member to see the file. You could link it then in your forum "
"post but must be aware that any group member could delete the image."
msgstr ""

#: ../source/groups/inside_group.rst:315
msgid ""
"Once you have finished writing your forum topic, it is displayed in the list "
"of forum topics. Others can see it immediately. The administrator and "
"moderator of the forum can edit or delete a topic at any time. Regular "
"members can edit their topics up to a certain number of minutes after "
"writing the post. The site administrator defines that time in the "
":ref:`forum post delay <plugin_forum>`."
msgstr ""

#: ../source/groups/inside_group.rst:320
msgid "Posts in a forum topic"
msgstr ""

#: ../source/groups/inside_group.rst:322
msgid "The title of the forum."
msgstr ""

#: ../source/groups/inside_group.rst:323
msgid "The title of the forum topic."
msgstr ""

#: ../source/groups/inside_group.rst:326
msgid ""
"The profile picture and name of the person who wrote the post. The name is "
"linked to the profile page."
msgstr ""

#: ../source/groups/inside_group.rst:327
msgid "The number of posts of this person in all groups."
msgstr ""

#: ../source/groups/inside_group.rst:328
msgid "The date and time of the forum post."
msgstr ""

#: ../source/groups/inside_group.rst:329
msgid "The post itself."
msgstr ""

#: ../source/groups/inside_group.rst:271
msgid "The *Reply* button to comment on the post."
msgstr ""

#: ../source/groups/inside_group.rst:303
msgid ""
"The titles of subsequent posts are clickable and give you the link to this "
"post. That allows you to jump to this post directly and view it at the top "
"of the page."
msgstr ""

#: ../source/groups/inside_group.rst:306
msgid ""
"If you are the author of a forum post, you see the *Edit* button and can "
"make changes to your post at any time. Group administrators and forum "
"moderators can always edit and delete any forum post besides replying to it."
msgstr ""

#: ../source/groups/inside_group.rst:324
msgid ""
"The person starting the forum topic and the group administrator as well as "
"forum moderator have the *Edit topic* button to make changes to the initial "
"post."
msgstr ""

#: ../source/groups/inside_group.rst:275
msgid ""
"Group administrators and forum moderators can also click the *Delete topic* "
"button to delete this forum thread."
msgstr ""

#: ../source/groups/inside_group.rst:335
msgid ""
"If your forum topic has more than 10 posts, the posts are paginated and 10 "
"posts per page are shown. You can jump to other posts in the topic by "
"clicking on a page number."
msgstr ""

#: ../source/groups/inside_group.rst:339
msgid ""
"There are no notifications sent when you edit or delete a forum post. If you "
"wish others to know about your changes, you should write a new post instead "
"of editing an existing one."
msgstr ""

#: ../source/groups/inside_group.rst:345
msgid "Reply to a topic or subsequent post"
msgstr ""

#: ../source/groups/inside_group.rst:347
msgid ""
"Everybody can reply to a forum topic or other posts therein unless the "
"moderator or administrator had closed the topic. The replies are intended to "
"make it easier to see to which comment you reply except in forum topics that "
"do not use indentation."
msgstr ""

#: ../source/groups/inside_group.rst:352
msgid "Reply to a forum post"
msgstr ""

#: ../source/groups/inside_group.rst:328
msgid ""
"Click the *Reply* button below the forum post to which you wish to reply."
msgstr ""

#: ../source/groups/inside_group.rst:355
msgid ""
"The forum post that you are replying to is displayed beneath your reply "
"window making it easier for you to refer to it if necessary."
msgstr ""

#: ../source/groups/inside_group.rst:330
msgid ""
"**Subject** Set a different subject if you want to by clicking the link "
"*Click to set a subject*. This is most often not necessary and usually only "
"used if the topic evolves into a different discussion. However, in such "
"cases, usually it is good to open a new forum topic instead."
msgstr ""

#: ../source/groups/inside_group.rst:357
msgid "**Message**: Write your reply."
msgstr ""

#: ../source/groups/inside_group.rst:333
msgid ""
"Click the *Post* button to save your response or the *Cancel* button to "
"abort your forum post."
msgstr ""

#: ../source/groups/inside_group.rst:336
msgid ""
"Once you have saved your post, you may have time to edit it before it is "
"sent to the forum subscribers. That depends on the site settings for the "
":ref:`forum post delay <plugin_forum>`. If you can edit your post, you see "
"the *Edit* button. In the edit window, you also see how much time you have "
"left until your post is sent."
msgstr ""

#: ../source/groups/inside_group.rst:338
msgid "|edit-post|"
msgstr ""

#: ../source/groups/inside_group.rst:366
msgid ""
"When you, but also a moderator or an administrator, edit your forum post "
"after this time, it is stated when and by whom the editing was done under "
"\"Edits to this post\"."
msgstr ""

#: ../source/groups/inside_group.rst:372
msgid "Delete a post, topic or forum"
msgstr ""

#: ../source/groups/inside_group.rst:348
msgid ""
"A moderator or administrator can always edit or delete a single forum post, "
"a topic or an entire forum."
msgstr ""

#: ../source/groups/inside_group.rst:377
msgid ""
"Once a forum post, topic or forum is deleted, this action cannot be reversed "
"and the content is gone forever."
msgstr ""

#: ../source/groups/inside_group.rst:404
msgid "Administrative forum bulk actions"
msgstr ""

#: ../source/groups/inside_group.rst:406
msgid ""
"Group administrators and forum moderators can perform bulk actions on forums "
"in a group."
msgstr ""

#: ../source/groups/inside_group.rst:330
msgid "Forum bulk actions by administrators and moderators"
msgstr ""

#: ../source/groups/inside_group.rst:416
msgid "Select the topics for which you want to perform the same action."
msgstr ""

#: ../source/groups/inside_group.rst:418
msgid ""
"Choose the action that you wish to perform from the drop-down menu. You can "
"set all selected topics to"
msgstr ""

#: ../source/groups/inside_group.rst:420
msgid "**Sticky**: They will sit at the beginning of all other forum topics."
msgstr ""

#: ../source/groups/inside_group.rst:421
msgid ""
"**Unsticky**: They will be placed into the correct chronological order of "
"their last post."
msgstr ""

#: ../source/groups/inside_group.rst:422
msgid ""
"**Close**: Only the group administrator and forum moderator can add posts to "
"these topics."
msgstr ""

#: ../source/groups/inside_group.rst:423
msgid "**Open**: Everyone can post to these topics again."
msgstr ""

#: ../source/groups/inside_group.rst:376
msgid ""
"If you are not subscribed to or unsubscribed from an entire forum, you find "
"two more options in the drop-down menu to subscribe to and unsubscribe from "
"individual forum topics. See :ref:`user forum bulk actions "
"<user_forum_bulk_actions>`."
msgstr ""

#: ../source/groups/inside_group.rst:429
#: ../source/groups/inside_group.rst:456
msgid "Click the *Update selected topics* button to save your changes."
msgstr ""

#: ../source/groups/inside_group.rst:386
msgid "User forum bulk actions"
msgstr ""

#: ../source/groups/inside_group.rst:388
msgid ""
"You can subscribe to or unsubscribe from individual forum topics if you do "
"not wish to get updates for all forum topics. In order to **subscribe** to "
"individual forum topics, follow the next steps."
msgstr ""

#: ../source/groups/inside_group.rst:442
msgid ""
"The possibility to subscribe to and unsubscribe from individual forum topics "
"is useful in community groups for example, where there are a lot of "
"discussions in one forum, but you are only interested in a select few."
msgstr ""

#: ../source/groups/inside_group.rst:437
#: ../source/groups/inside_group.rst:447
#: ../source/groups/inside_group.rst:465
msgid "Subscribe to individual forum topics"
msgstr ""

#: ../source/groups/inside_group.rst:449
msgid ""
"Make sure that you are not subscribed to the entire forum. You should see "
"the *Subscribe to forum* button. Click the *Unsubscribe from forum* button "
"if necessary. Otherwise, you will not be able to complete the following "
"steps."
msgstr ""

#: ../source/groups/inside_group.rst:399
msgid "Select the individual forum topic(s) to which you wish to subscribe."
msgstr ""

#: ../source/groups/inside_group.rst:455
msgid ""
"Choose the option *Subscribe* from the *Choose an action* drop-down menu."
msgstr ""

#: ../source/groups/inside_group.rst:457
msgid ""
"The forum topics to which you are subscribed, get the *Subscribed star* icon "
"|subscribed|."
msgstr ""

#: ../source/groups/inside_group.rst:404
msgid ""
"In order to **unsubscribe** from individual forum topics, follow the next "
"steps."
msgstr ""

#: ../source/groups/inside_group.rst:472
msgid "Unsubscribe from individual forum topics"
msgstr ""

#: ../source/groups/inside_group.rst:411
msgid ""
"To complete the next steps, you cannot be subscribed to an entire forum, and "
"you will have to have been subscribed to at least one forum topic. You can "
"identify the subscribed topics easily because they have the *Subscribed "
"star* icon |subscribed| next to their topic titles."
msgstr ""

#: ../source/groups/inside_group.rst:474
msgid ""
"Select the individual forum topic(s) from which you wish to unsubscribe."
msgstr ""

#: ../source/groups/inside_group.rst:475
msgid ""
"Choose the option *Unsubscribe* from the *Choose an action* drop-down menu."
msgstr ""

#: ../source/groups/inside_group.rst:476
msgid ""
"Click the *Update selected topics* button to save your changes. You are no "
"longer subscribed to the topics that you had selected."
msgstr ""

#: ../source/groups/inside_group.rst:531
msgid "Pages"
msgstr ""

#: ../source/groups/inside_group.rst:533
msgid "*Groups → Name of the group → Pages*"
msgstr ""

#: ../source/groups/inside_group.rst:535
msgid "Members of a group have access to certain pages. These can be:"
msgstr ""

#: ../source/groups/inside_group.rst:537
msgid "pages that are created in the group"
msgstr ""

#: ../source/groups/inside_group.rst:538
msgid "pages that are shared with the group"
msgstr ""

#: ../source/groups/inside_group.rst:540
msgid ""
"The latter are pages that users make accessible to the group from their "
"personal pages by :ref:`sharing them with the group <share>`. Members of the "
"group cannot edit these pages."
msgstr ""

#: ../source/groups/inside_group.rst:542
msgid ""
"Depending on the :ref:`group settings <create_group_user>`, either only "
"administrators (and tutors if it is a controlled group) or also regular "
"group members can create and edit group pages."
msgstr ""

#: ../source/groups/inside_group.rst:545
msgid ""
"Everybody who can edit a group page can add or delete blocks on that page. "
"There is no version tracking that shows who has edited what. Users should "
"trust each other when collaborating on pages together. Otherwise, it may be "
"better if they only shared pages with a group."
msgstr ""

#: ../source/groups/inside_group.rst:550
msgid ""
"The :ref:`group homepage <group_homepage>` can only be edited by the group "
"administrator. It contains a number of default blocks. You can add more "
"blocks to it to customize the page for the group. Please refer to the "
":ref:`overview of blocks <blocks_in_context>` for a list of all the blocks "
"that you can use on the group homepage."
msgstr ""

#: ../source/groups/inside_group.rst:557
msgid "Regular group pages"
msgstr ""

#: ../source/groups/inside_group.rst:559
msgid ""
"Creating, editing and sharing a group page is very similar to :ref:`creating "
"<create_page>`, :ref:`editing <page_editor>` and :ref:`sharing a portfolio "
"page <share>`. Not all blocks are available when editing a group page in the "
":ref:`page editor <page_editor>` though due to the different context. Please "
"refer to the :ref:`overview of blocks <blocks_in_context>` for a list of all "
"the blocks that you can use in a group page."
msgstr ""

#: ../source/groups/inside_group.rst:561
msgid ""
"When you leave a comment on a group page, only group administrators (and "
"tutors if it is a controlled group) can delete feedback on pages."
msgstr ""

#: ../source/groups/inside_group.rst:564
msgid ""
"For submitting a page to a group to receive instructor feedback, please "
"refer to :ref:`the feedback section <instructor_feedback>`."
msgstr ""

#: ../source/groups/inside_group.rst:566
msgid ""
"Similarly to :ref:`group homepages <custom_group_url>` and :ref:`users' "
"portfolio pages <custom_page_url>`, group pages can also have human-readable "
"URLs if the site administrator activated :ref:`clean URLs <clean_urls>`."
msgstr ""

#: ../source/groups/inside_group.rst:497
msgid ""
"When you create or edit a group page, you can decide whether only the "
"administrator shall have the right to edit the page. With this setting you "
"can allow the general editing of pages in the group, but still be able to "
"lock down certain pages."
msgstr ""

#: ../source/groups/inside_group.rst:573
msgid "Lock a group page for editing by the administrator only"
msgstr ""

#: ../source/groups/inside_group.rst:429
msgid ""
"|new in Mahara 1.9| :index:`When a group page is created <single: New in "
"Mahara 1.9; Notification to group members when new group page is created>`, "
"group members (except the page creator) receive a notification."
msgstr ""

#: ../source/groups/inside_group.rst:582
msgid "Collections"
msgstr ""

#: ../source/groups/inside_group.rst:584
msgid "*Groups → Name of the group → Collections*"
msgstr ""

#: ../source/groups/inside_group.rst:586
msgid ""
"Depending on the :ref:`group settings <create_group_user>`, either only "
"administrators (and tutors) or also regular group members can create and "
"edit group collections."
msgstr ""

#: ../source/groups/inside_group.rst:589
msgid ""
"Everybody who can edit a group collection can add or delete pages and "
"content in them. There is no version tracking that shows who has edited "
"what. Users should trust each other when collaborating on pages and "
"collections together. Otherwise, it may be better if they only shared pages "
"and collections with a group."
msgstr ""

#: ../source/groups/inside_group.rst:592
msgid ""
"The adding, editing and managing of group collections work like in your "
":ref:`personal porfolio collections <collections>`."
msgstr ""

#: ../source/groups/inside_group.rst:632
msgid "Share"
msgstr ""

#: ../source/groups/inside_group.rst:634
msgid "*Groups → Name of the group → Share*"
msgstr ""

#: ../source/groups/inside_group.rst:636
msgid ""
"If you are allowed to edit pages and collections in a group, you can see the "
"*Share* tab."
msgstr ""

#: ../source/groups/inside_group.rst:639
msgid ""
"The sharing of pages and collections work like in your :ref:`personal "
"porfolio <share>`. The group in which the page or collection was created is "
"added automatically to the access permissions."
msgstr ""

#: ../source/groups/inside_group.rst:649
msgid "Files"
msgstr ""

#: ../source/groups/inside_group.rst:651
msgid "*Groups → Name of the group → Files*"
msgstr ""

#: ../source/groups/inside_group.rst:653
msgid ""
"The *Files* area in a group holds all files that are uploaded by group "
"members who have the permission to do so. The uploading process works like "
"the one in :ref:`the personal files <files_area>`."
msgstr ""

#: ../source/groups/inside_group.rst:655
msgid ""
"The :ref:`site administrator can set a group file quota <plugin_file>` to "
"restrict unlimited uploading of files. The group quota is displayed in the "
"sidebar when you are in the *Files* area."
msgstr ""

#: ../source/groups/inside_group.rst:657
msgid ""
"In contrast to the files in your personal files area, there is an additional "
"permissions setting:"
msgstr ""

#: ../source/groups/inside_group.rst:662
msgid "Setting permissions on a group file"
msgstr ""

#: ../source/groups/inside_group.rst:664
msgid ""
"When you have the permission to upload a file, you can also determine "
"additional permissions of who can view the file and edit its metadata. An "
"administrator has all rights, but you can restrict them to regular group "
"members or tutors."
msgstr ""

#: ../source/groups/inside_group.rst:666
msgid ""
"**View**: You can see the file in the group files area and add it to a page."
msgstr ""

#: ../source/groups/inside_group.rst:667
msgid ""
"**Edit**: You can edit the file name, description, tags and permissions."
msgstr ""

#: ../source/groups/inside_group.rst:668
msgid ""
"**Publish**: You can include a group file in your personal portfolio pages."
msgstr ""

#: ../source/groups/inside_group.rst:671
msgid ""
"The owner of / group member uploading a file retains access to the file even "
"if other group members are not able to use the file."
msgstr ""

#: ../source/groups/inside_group.rst:679
msgid "Report"
msgstr ""

#: ../source/groups/inside_group.rst:681
msgid "*Groups → Name of the group → Report*"
msgstr ""

#: ../source/groups/inside_group.rst:683
msgid ""
"When you are an administrator of a group, you can :ref:`switch on the "
"participation report in the group settings <set_participation_report>`. The "
"report provides you with information on who commented on what pages that "
"were created in or shared with the group."
msgstr ""

#: ../source/groups/inside_group.rst:688
msgid "Participation report for a group"
msgstr ""

#: ../source/groups/inside_group.rst:690
msgid ""
"**Pages shared with this group**: List of all the pages that people have "
"shared with this group."
msgstr ""

#: ../source/groups/inside_group.rst:691
msgid "**Shared by**: Displays the author of the page."
msgstr ""

#: ../source/groups/inside_group.rst:692
msgid ""
"**Members involved**: Shows the group members who have commented on the "
"pages **publicly**."
msgstr ""

#: ../source/groups/inside_group.rst:693
msgid ""
"**Non-members involved**: Schows the users who have commented on the pages "
"**publicly** but are not members of the group."
msgstr ""

#: ../source/groups/inside_group.rst:694
msgid ""
"Next to each person who commented on a page is the count for the number of "
"comments they have left on that page."
msgstr ""

#: ../source/groups/inside_group.rst:590
msgid ""
"The total count for the comments by members and non-members is displayed."
msgstr ""

#: ../source/groups/inside_group.rst:696
msgid ""
"**Pages owned by this group**: List of all the pages that were created "
"within the group."
msgstr ""

#: ../source/groups/inside_group.rst:699
msgid ""
"You can sort each of the columns. The column that is currently sorted, has a "
"little ascending triangle |sort-ascend| or descending triangle |sort-"
"descend| next to it."
msgstr ""

#: ../source/groups/institution_membership.rst:10
msgid "Institution membership"
msgstr ""

#: ../source/groups/institution_membership.rst:12
msgid "*Groups → Institution membership*"
msgstr ""

#: ../source/groups/institution_membership.rst:14
msgid ""
"You can see in which institution(s) you are a member when you go to *Groups "
"→ Institution membership*. You may be able to leave your current institution "
"and join other institutions if they allow self-registration. If you cannot "
"leave your institution, you must ask your institution administrator to "
"remove you."
msgstr ""

#: ../source/groups/institution_membership.rst:17
msgid ""
"Leaving an institution does not mean that your account is deleted. You keep "
"your content and portfolio pages when you move from one institution to "
"another as long as you have your account. Institution administrators should "
"not delete your account when they want to remove you from their institution."
msgstr ""

#: ../source/groups/institution_membership.rst:22
msgid "Check on your institution membership"
msgstr ""

#: ../source/groups/institution_membership.rst:24
msgid ""
"**Memberships**: Here you see to which institution(s) you belong. Click the "
"*Leave institution* button to remove yourself from an institution. If you do "
"not see this button next to an institution, you cannot remove yourself but "
"must ask an institution administrator to do so."
msgstr ""

#: ../source/groups/institution_membership.rst:29
msgid ""
"**Requests**: If you have already requested membership in an institution, it "
"will be listed here. You must wait for an institution administrator to "
"approve your request. If you wish to cancel a request, click the *Cancel "
"request* button."
msgstr ""

#: ../source/groups/institution_membership.rst:30
msgid ""
"**Request membership of an institution**: Choose the institution from the "
"drop-down menu that you wish to join."
msgstr ""

#: ../source/groups/institution_membership.rst:35
msgid ""
"You can provide an ID if you have one for this institution, but that is "
"optional."
msgstr ""

#: ../source/groups/institution_membership.rst:36
msgid ""
"Click the *Send request* button, and the institution administrator is "
"notified of your request and will deal with it."
msgstr ""

#: ../source/groups/my_friends.rst:11
msgid "My friends"
msgstr ""

#: ../source/groups/my_friends.rst:13
msgid "*Groups → My friends*"
msgstr ""

#: ../source/groups/my_friends.rst:15
msgid ""
"Your friends are a special group of users. You can share your portfolio "
"pages or collections easily with them and get in touch with them quickly by "
"going to this page. They differ from a regular group in that they do not "
"have discussion forums, pages or shared files. If you do wish to have access "
"to those with your friends, you have to create a regular group for them."
msgstr ""

#: ../source/groups/my_friends.rst:17
msgid "You can request other users' friendship in a couple of ways:"
msgstr ""

#: ../source/groups/my_friends.rst:19
msgid "Go to their profile page and click the *Request friendship* link."
msgstr ""

#: ../source/groups/my_friends.rst:20
msgid ""
"Go to the *Find friends* page and :ref:`search for potential friends "
"<find_friends>` there."
msgstr ""

#: ../source/groups/my_friends.rst:30
msgid "*My friends* page"
msgstr ""

#: ../source/groups/my_friends.rst:32
msgid ""
"If you have a lot of friends and pending friend requests, you can filter "
"them by showing only the category of friends you wish to view:"
msgstr ""

#: ../source/groups/my_friends.rst:34
msgid "**All friends**: Shows you all current and pending friends."
msgstr ""

#: ../source/groups/my_friends.rst:35
msgid ""
"**Current friends**: Shows you all users whose friendship request you have "
"approved."
msgstr ""

#: ../source/groups/my_friends.rst:36
msgid ""
"**Pending friends**: Shows you all users who wish to be your friend, but "
"whom you have not yet approved."
msgstr ""

#: ../source/groups/my_friends.rst:41
msgid "You see more information about this friend:"
msgstr ""

#: ../source/groups/my_friends.rst:43
msgid "View the profile picture."
msgstr ""

#: ../source/groups/my_friends.rst:44
msgid "Click on the name of your friend to reach their profile page."
msgstr ""

#: ../source/groups/my_friends.rst:47
msgid "The pages of this user to which you have access are listed."
msgstr ""

#: ../source/groups/my_friends.rst:46
msgid ""
"Read the introduction that this user has provided under *Content → Profile → "
"Introduction*."
msgstr ""

#: ../source/groups/my_friends.rst:40
msgid "Display of the institution membership of this user."
msgstr ""

#: ../source/groups/my_friends.rst:41
msgid ""
"For users whose friendship request you have not yet approved, you still see "
"their profile picture and the reason why they want to become your friend. "
"They have the word *pending* next to their name."
msgstr ""

#: ../source/groups/my_friends.rst:42
msgid ""
"If a user is in the pending state, approve or deny the friendship request."
msgstr ""

#: ../source/groups/my_friends.rst:49
msgid ""
"Send a message to the user if you wish to do so. This is only possible if "
"the user allowed that. You can change your personal settings for messages "
"from other users in your :ref:`account settings <general_account_options>`."
msgstr ""

#: ../source/groups/my_friends.rst:51
msgid ""
"If you no longer want to have a user on your friend list, you can remove "
"them by clicking the *Remove from friends* button."
msgstr ""

#: ../source/groups/my_friends.rst:50
msgid ""
"If you are a group administrator in a group that one of your friends or "
"potential friends belongs to, you can edit their group membership directly "
"here."
msgstr ""

#: ../source/groups/my_friends.rst:48
msgid ""
"When you click on the institution name that is listed for a friend, you see "
"a list of institution staff and administrators. You can contact "
"administrators directly from this page by clicking on the *Send message* "
"link."
msgstr ""

#: ../source/groups/my_friends.rst:56
msgid "|institution_homepage|"
msgstr ""

#: ../source/groups/my_friends.rst:58
msgid ""
"The institution membership is only visible if your site administrator set up "
"multiple institutions on Mahara. Users on a site with multiple institutions "
"who do not have one displayed do not belong to any institution."
msgstr ""

#: ../source/groups/my_groups.rst:10
msgid "My groups"
msgstr ""

#: ../source/groups/my_groups.rst:12
msgid "*Groups → My groups*"
msgstr ""

#: ../source/groups/my_groups.rst:14
msgid "This page lists all your groups. You can see the groups"
msgstr ""

#: ../source/groups/my_groups.rst:16
msgid "you own."
msgstr ""

#: ../source/groups/my_groups.rst:17
msgid "you are a member of."
msgstr ""

#: ../source/groups/my_groups.rst:18
msgid "you have been invited to."
msgstr ""

#: ../source/groups/my_groups.rst:20
msgid ""
"If your site administrator allowed you to create groups yourself, you see "
"the *Create group* button."
msgstr ""

#: ../source/groups/my_groups.rst:25
msgid "The *My groups* page lists all your groups"
msgstr ""

#: ../source/groups/my_groups.rst:27
msgid ""
"Search for a specific group by its title or description and / or choose the "
"filters you wish to apply to view only a subset of your groups and then "
"click the *Filter* button. You can filter for:"
msgstr ""

#: ../source/groups/my_groups.rst:29
msgid "All your groups"
msgstr ""

#: ../source/groups/my_groups.rst:30
msgid "Groups you own"
msgstr ""

#: ../source/groups/my_groups.rst:31
msgid "Groups you are a member of"
msgstr ""

#: ../source/groups/my_groups.rst:32
msgid "Groups you are invited to"
msgstr ""

#: ../source/groups/my_groups.rst:33
msgid ""
"Groups by a specific category if :ref:`group categories <group_categories>` "
"exist."
msgstr ""

#: ../source/groups/my_groups.rst:37
msgid ""
"All the groups that you have access to are listed with group title, "
"administrator, description, group type and number of members if the "
"administrator discloses this."
msgstr ""

#: ../source/groups/my_groups.rst:36
msgid ""
"If you are a member of a controlled membership group, you cannot leave the "
"group."
msgstr ""

#: ../source/groups/my_groups.rst:44
msgid ""
"If you are a member of any other group but controlled membership, you can "
"leave it at any time."
msgstr ""

#: ../source/groups/my_groups.rst:38
msgid ""
"Click the *Accept* button to join a group to which you have been invited or "
"the *Decline* button to decline membership in that group."
msgstr ""

#: ../source/groups/my_groups.rst:39
msgid ""
"Click the *Edit* button when you want to update the details for a group in "
"which you are administrator."
msgstr ""

#: ../source/groups/my_groups.rst:39
msgid ""
"Click the *Delete* button only when you want to delete your group "
"permanently. Group members receive a notification that the group has been "
"deleted."
msgstr ""

#: ../source/groups/my_groups.rst:42
msgid ""
"When you delete a group, all its content and contributions from users are "
"deleted permanently and cannot be retrieved again."
msgstr ""

#: ../source/groups/my_groups.rst:27
msgid ""
"Click the *Create group* button when you want to set up a new group. You "
"only see this button if the :ref:`site administrator allows you to create "
"groups <group_settings>`."
msgstr ""

#: ../source/groups/topics.rst:7
msgid "Topics"
msgstr ""

#: ../source/groups/topics.rst:9
msgid ""
"*Topics* is a list of the discussion topics from all the groups in which you "
"are a member. The topics are sorted in reverse chronological order starting "
"with the latest comment."
msgstr ""

#: ../source/groups/topics.rst:14
msgid "The latest posts in discussion forums"
msgstr ""

#: ../source/groups/topics.rst:16
msgid ""
"The title of the forum topic as well as the group and the forum in which "
"this topic is discussed are shown. They are all linked so that you can "
"easily go to them."
msgstr ""

#: ../source/groups/topics.rst:18
msgid "The number of posts in this discussion topic is displayed."
msgstr ""

#: ../source/groups/topics.rst:17
msgid ""
"The beginning of the latest comment in the topic is displayed as well as the "
"name of the author (linked to the author's profile page) and the date and "
"time when the forum post was made."
msgstr ""

#: ../source/groups/topics.rst:19
msgid ""
"The total number of forum topics is displayed. When there are many forum "
"topics, 10 are displayed per page and the rest can be reached via a "
"navigation bar."
msgstr ""