##// END OF EJS Templates
Merged in tenno-seremel/neboard-1/tenno-seremel/ive-got-new-email-now-1506517057122 (pull request #26)...
neko259 -
r1927:8160c8d4 merge default
parent child Browse files
Show More
@@ -1,35 +1,35 b''
1 __author__ = 'neko259'
1 __author__ = 'neko259'
2
2
3 from django.utils.translation import ugettext_lazy as _
3 from django.utils.translation import ugettext_lazy as _
4
4
5 ATTR_ROLES = 'roles'
5 ATTR_ROLES = 'roles'
6 ATTR_CONTACTS = 'contacts'
6 ATTR_CONTACTS = 'contacts'
7 ATTR_NAME = 'name'
7 ATTR_NAME = 'name'
8
8
9 ROLE_AUTHOR = _('author')
9 ROLE_AUTHOR = _('author')
10 ROLE_DEVELOPER = _('developer')
10 ROLE_DEVELOPER = _('developer')
11 ROLE_JS_DEV = _('javascript developer')
11 ROLE_JS_DEV = _('javascript developer')
12 ROLE_DESIGNER = _('designer')
12 ROLE_DESIGNER = _('designer')
13
13
14 authors = {
14 authors = {
15 'neko259': {
15 'neko259': {
16 ATTR_NAME: 'Pavel Ryapolov',
16 ATTR_NAME: 'Pavel Ryapolov',
17 ATTR_CONTACTS: ['neko259@gmail.com'],
17 ATTR_CONTACTS: ['neko259@gmail.com'],
18 ATTR_ROLES: [ROLE_AUTHOR, ROLE_DEVELOPER],
18 ATTR_ROLES: [ROLE_AUTHOR, ROLE_DEVELOPER],
19 },
19 },
20 'ilyas': {
20 'ilyas': {
21 ATTR_NAME: 'Ilyas Babayev',
21 ATTR_NAME: 'Ilyas Babayev',
22 ATTR_CONTACTS: ['zamesilyasa@gmail.com'],
22 ATTR_CONTACTS: ['zamesilyasa@gmail.com'],
23 ATTR_ROLES: [ROLE_AUTHOR, ROLE_DEVELOPER],
23 ATTR_ROLES: [ROLE_AUTHOR, ROLE_DEVELOPER],
24 },
24 },
25 'ritsufag': {
25 'ritsufag': {
26 ATTR_NAME: 'Aiko Kirino',
26 ATTR_NAME: 'Aiko Kirino',
27 ATTR_CONTACTS: ['ritsufag@gmail.com'],
27 ATTR_CONTACTS: ['ritsufag@gmail.com'],
28 ATTR_ROLES: [ROLE_JS_DEV, ROLE_DESIGNER],
28 ATTR_ROLES: [ROLE_JS_DEV, ROLE_DESIGNER],
29 },
29 },
30 'Tenno Seremel': {
30 'Tenno Seremel': {
31 ATTR_NAME: 'anonymous',
31 ATTR_NAME: 'anonymous',
32 ATTR_CONTACTS: ['html@serenareem.net'],
32 ATTR_CONTACTS: ['tenno-seremel@vivaldi.net'],
33 ATTR_ROLES: [ROLE_JS_DEV, ROLE_DESIGNER],
33 ATTR_ROLES: [ROLE_JS_DEV, ROLE_DESIGNER],
34 },
34 },
35 } No newline at end of file
35 }
General Comments 0
You need to be logged in to leave comments. Login now