|
0
|
1 |
# i18n values (from database) to be translated |
|
|
2 |
|
|
|
3 |
from django.utils.translation import ugettext as _ |
|
|
4 |
|
|
|
5 |
# generic roles |
|
|
6 |
_(u'Observer') |
|
|
7 |
_(u'Manager') |
|
|
8 |
_(u'Editor') |
|
|
9 |
_(u'Moderator') |
|
|
10 |
_(u'Commentator') |
|
|
11 |
_(u'Observer') |
|
|
12 |
_(u'Participant') |
|
|
13 |
|
|
|
14 |
# permissions |
|
|
15 |
_(u'Can view text') |
|
|
16 |
_(u'Can edit text') |
|
|
17 |
_(u'Can create text') |
|
|
18 |
_(u'Can delete text') |
|
|
19 |
_(u'Can manage text') |
|
|
20 |
_(u'Can create comment') |
|
|
21 |
_(u'Can delete comment') |
|
|
22 |
_(u'Can delete own comment') |
|
|
23 |
_(u'Can view approved comment') |
|
|
24 |
_(u'Can view own comment') |
|
|
25 |
_(u'Can view unapproved comment') |
|
|
26 |
_(u'Can edit comment') |
|
|
27 |
_(u'Can edit own comment') |
|
|
28 |
_(u'Can manage workspace') |
|
|
29 |
_(u'Can view workspace') |
|
|
30 |
|
|
|
31 |
# school roles |
|
|
32 |
_(u'Teacher') |
|
|
33 |
_(u'Student') |
|
|
34 |
_(u'Individual student') |
|
|
35 |
|