1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
__section__
default
__description__
Repository for random data elements.
* value = the name of the data element to retrieve
Each data element may have any number of other variables.
__title__
__page__
misc
__lang__
en_US
__name__
data
__template__
[% SWITCH value %]
[% CASE 'tablebegin' %]
<TABLE>
[% CASE 'tableend' %]
</TABLE>
[% CASE 'cagebegin' %]
<TR><TD>
[% CASE 'cageend' %]
</TD></TR>
[% CASE 'commentbegin' %]
<LI>
[% CASE 'commentend' %]
</LI>
[% CASE 'indentbegin' %]
<UL>
[% CASE 'indentend' %]
</UL>
[% CASE 'cagebigbegin' %]
<TR><TD BGCOLOR="[% user.bg.2 %]">
[% CASE 'cagebigend' %]
</TD></TR>
[% CASE 'displayThreadLink' %]
[% foo = hidden == 1 ? 'y' : 'ies'; hidden %] repl[% foo %]
[% CASE 'atonish' %]
around
[% CASE 'aton' %]
on
[% CASE 'hour' %]
hour
[% CASE 'hours' %]
hours
[% CASE 'minute' %]
minute
[% CASE 'minutes' %]
minutes
[% CASE 'second' %]
second
[% CASE 'seconds' %]
seconds
[% CASE 'noformkey' %]
<P><B>We can't find your formkey.</B></P>
<P>You must fill out a form and submit from that
form as required.</P>
[% CASE 'submitalready' %]
<P>This comment has been submitted already, [% interval_string %] ago.
No need to try again.</P>
[% CASE 'speedlimit' %]
<P>[% constants.sitename %] requires you to wait [% limit_string %] between
each submission of [% env.script_name %] in order to allow everyone to have a fair chance to post.</P>
<P>It's been [% interval_string %] since your last submission.</P>
[% CASE 'invalidformkey' %]
<P><B>Invalid form key.</B> Please go back to the beginning and try again.</P>
[% CASE 'maxposts' %]
<P><B>You've reached you limit of maximum submissions to [% env.script_name %] :
[% max %] submissions over [% timeframe %].</B></P>
[% CASE 'moderatord_log_header' %]
--------------- BEGIN MODERATORD EXECUTION ---------------
[% CASE 'moderatord_tokenmsg' %]
[% new_comments %] comments becomes [% new_comments * constants.tokenspercomment %] tokens.
[% IF stirredpoints %]Stirred out [% stirredpoints %] points, so
[%- ELSE %]So[% END %] the total token pool=[% tokenpool %]t
First [% last_user * constants.m1_eligible_percentage %] accounts available.
Eligible: [% eligible %] / Start at [% st %] end at [% fi %] / First score is [% constants.m1_eligible_hitcount %].
Incremented token-count on [% num_updated %] users.
[% CASE 'moderatord_tokengrantmsg' %]
[% points = constants.maxtokens / constants.tokensperpoint -%]
Giving [% points %] points ([% constants.maxtokens %]t/[% constants.tokensperpoint %]) to [% uid %].
[% CASE 'moderatord_tokennotgrantmsg' %]
[% points = constants.maxtokens / constants.tokensperpoint -%]
Not giving [% points %] points ([% constants.maxtokens %]t/[% constants.tokensperpoint %]) to [% uid %].
[% CASE 'moderatord_log_footer' %]
---------------- END MODERATORD EXECUTION ----------------
[% CASE 'rereg_email_subject' %]
You're [% constants.sitename %] account has expired.
[% CASE DEFAULT %]
---- MISSING MISCELLANEOUS DATA SEGMENT --- [[% value %]] block not found.
[% END %]
__seclev__
10000
|