comparison rhodecode/controllers/admin/permissions.py @ 3654:ec6354949623 beta

Fix a lot of casings - use standard casing in most places
author Mads Kiilerich <madski@unity3d.com>
date Wed, 03 Apr 2013 17:19:47 +0200
parents a8f2d78d14ea
children 3563bb7b4b82 08cf7741e5e1
comparison
equal deleted inserted replaced
3653:4c78a0855a17 3654:ec6354949623
65 ('group.read', _('Read'),), 65 ('group.read', _('Read'),),
66 ('group.write', _('Write'),), 66 ('group.write', _('Write'),),
67 ('group.admin', _('Admin'),)] 67 ('group.admin', _('Admin'),)]
68 self.register_choices = [ 68 self.register_choices = [
69 ('hg.register.none', 69 ('hg.register.none',
70 _('disabled')), 70 _('Disabled')),
71 ('hg.register.manual_activate', 71 ('hg.register.manual_activate',
72 _('allowed with manual account activation')), 72 _('Allowed with manual account activation')),
73 ('hg.register.auto_activate', 73 ('hg.register.auto_activate',
74 _('allowed with automatic account activation')), ] 74 _('Allowed with automatic account activation')), ]
75 75
76 self.create_choices = [('hg.create.none', _('Disabled')), 76 self.create_choices = [('hg.create.none', _('Disabled')),
77 ('hg.create.repository', _('Enabled'))] 77 ('hg.create.repository', _('Enabled'))]
78 78
79 self.fork_choices = [('hg.fork.none', _('Disabled')), 79 self.fork_choices = [('hg.fork.none', _('Disabled')),