wiki: Clarify permissions language.

This commit is contained in:
Andre D
2012-12-12 13:05:44 -05:00
committed by Neil Williams
parent bb5ef967fb
commit 2bda185248
2 changed files with 3 additions and 3 deletions

View File

@@ -161,7 +161,7 @@
_("Wiki is disabled for all users except mods"),
(not thing.site or thing.site.wikimode == 'disabled'))}
${utils.radio_type('wikimode', "modonly", _("mod editing"),
_("Only mods or those on a pages edit list may edit"),
_("Only mods, approved wiki contributors, or those on a page's edit list may edit"),
(thing.site and thing.site.wikimode == 'modonly'))}
${utils.radio_type('wikimode', "anyone", _("anyone"),
_("Anyone who can submit to the subreddit may edit"),

View File

@@ -37,12 +37,12 @@
%if thing.permlevel == 0:
checked
%endif
/><label for="permlevel0">${_('anyone may edit')}</label><br/>
/><label for="permlevel0">${_('use subreddit wiki permissions')}</label><br/>
<input type="radio" name="permlevel" id="permlevel1" value="1"
%if thing.permlevel == 1:
checked
%endif
/><label for="permlevel1">${_('only approved wiki contributors may edit')}</label><br/>
/><label for="permlevel1">${_('only approved wiki contributors for this page may edit')}</label><br/>
<input type="radio" name="permlevel" id="permlevel2" value="2"
%if thing.permlevel == 2:
checked