[dw-free] /community/create missing translation strings
[commit: http://hg.dwscoalition.org/dw-free/rev/5e1058897fcf]
http://bugs.dwscoalition.org/show_bug.cgi?id=1617
Add missing translation strings.
Patch by
kareila.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=1617
Add missing translation strings.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- htdocs/community/create.bml
- htdocs/community/create.bml.text
-------------------------------------------------------------------------------- diff -r 655264a6b777 -r 5e1058897fcf htdocs/community/create.bml --- a/htdocs/community/create.bml Tue Aug 18 15:07:58 2009 +0000 +++ b/htdocs/community/create.bml Tue Aug 18 15:19:45 2009 +0000 @@ -179,36 +179,36 @@ SUBMIT: }); # nonmember posting options - $ret .= "<li><div class='formitem'><div class='formitemName'>$ML{'/community/settings.bml.label.nmheader'}" . + $ret .= "<li><div class='formitem'><div class='formitemName'>$ML{'.label.nmheader'}" . "</div><div class='formitemDesc'>$ML{'/community/settings.bml.label.nmtext'}</div><div><p>"; $ret .= LJ::html_check({ type => 'radio', name => 'nonmember_posting', id => 'nonopen', value => '0', selected => ($POST{nonmember_posting} eq '0' ? 1 : 0)}); - $ret .= "<label for='nonopen'> $ML{'/community/settings.bml.label.nmcant'}</label></p><p>"; + $ret .= "<label for='nonopen'> $ML{'.label.nmcant'}</label></p><p>"; $ret .= LJ::html_check({ type => 'radio', name => 'nonmember_posting', id => 'nonclosed', value => '1', selected => ($POST{nonmember_posting} eq '1' ? 1 : 0)}); - $ret .= "<label for='nonclosed'> $ML{'/community/settings.bml.label.nmcan'}</label></p>"; + $ret .= "<label for='nonclosed'> $ML{'.label.nmcan'}</label></p>"; $ret .= "</div></div></li>"; # posting access options - $ret .= "<li><div class='formitem'><div class='formitemName'>$ML{'/community/settings.bml.label.postaccess'}" . - "</div><div class='formitemDesc'>$ML{'/community/settings.bml.label.whocanpost'}</div><div><p>"; + $ret .= "<li><div class='formitem'><div class='formitemName'>$ML{'.label.postaccess'}" . + "</div><div class='formitemDesc'>$ML{'.label.whocanpost'}</div><div><p>"; $ret .= LJ::html_check({ type => 'radio', name => 'postlevel', id => 'postopen', value => 'members', selected => ($POST{postlevel} eq 'members' ? 1 : 0)}); - $ret .= "<label for='postopen'> $ML{'/community/settings.bml.label.anybodycan'}</label></p><p>"; + $ret .= "<label for='postopen'> $ML{'.label.anybodycan'}</label></p><p>"; $ret .= LJ::html_check({ type => 'radio', name => 'postlevel', id => 'postclosed', value => 'select', selected => ($POST{postlevel} eq 'select' ? 1 : 0)}); - $ret .= "<label for='postclosed'> $ML{'/community/settings.bml.label.selcan'}</label></p>"; + $ret .= "<label for='postclosed'> $ML{'.label.selcan'}</label></p>"; $ret .= "</div></div></li>"; # moderated options - $ret .= "<li><div class='formitem'><div class='formitemName'>$ML{'/community/settings.bml.label.modheader'}" . - "</div><div class='formitemDesc'>$ML{'/community/settings.bml.label.modtext'}</div><div><p>"; + $ret .= "<li><div class='formitem'><div class='formitemName'>$ML{'.label.modheader'}" . + "</div><div class='formitemDesc'>$ML{'.label.modtext'}</div><div><p>"; $ret .= LJ::html_check({ type => 'radio', name => 'moderated', id => 'radunmod', value => '0', selected => ($POST{moderated} eq '0' ? 1 : 0)}); - $ret .= "<label for='radunmod'> $ML{'/community/settings.bml.label.modisnt'}</label></p><p>"; + $ret .= "<label for='radunmod'> $ML{'.label.modisnt'}</label></p><p>"; $ret .= LJ::html_check({ type => 'radio', name => 'moderated', id => 'radmod', value => '1', selected => ($POST{moderated} eq '1' ? 1 : 0)}); - $ret .= "<label for='radmod'> $ML{'/community/settings.bml.label.modis'}</label></p>"; + $ret .= "<label for='radmod'> $ML{'.label.modis'}</label></p>"; $ret .= "</div></div></li>"; # adult content options diff -r 655264a6b777 -r 5e1058897fcf htdocs/community/create.bml.text --- a/htdocs/community/create.bml.text Tue Aug 18 15:07:58 2009 +0000 +++ b/htdocs/community/create.bml.text Tue Aug 18 15:19:45 2009 +0000 @@ -23,6 +23,28 @@ .errors.label=Please note the following problems and resubmit: +.label.anybodycan=<b>All Members</b><br />Anybody can post immediately once a member. + +.label.modheader=Entry Moderation + +.label.modis=<b>Moderated</b><br />New entries must be approved by a moderator. + +.label.modisnt=<b>Unmoderated</b><br />New entries appear immediately. + +.label.modtext=Are submissions to this community moderated? + +.label.nmcan=<b>Non-Members Can Post</b><br />Users can post to this community without having to join it. + +.label.nmcant=<b>Non-Members Cannot Post</b><br />Users have to join this community in order to post in it. + +.label.nmheader=Non-Member Posting Restrictions + +.label.postaccess=Member Posting Restrictions + +.label.selcan=<b>Select Members</b><br />Only some members are able to post, once a maintainer gives them access. + +.label.whocanpost=Do you want to allow only certain members the ability to post? + .name.head=Community Name .name.text=What's the name of this community? This will appear at the top of the community, and in the user directory should you choose to list the community in it. --------------------------------------------------------------------------------