mirror of
https://github.com/znc/znc.git
synced 2026-08-07 17:33:34 +02:00
Translateable webadmin to Russian.
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
<? I18N znc-webadmin ?>
|
||||
<? AddRow JSLoop HREF=/modfiles/global/webadmin/webadmin.js ?>
|
||||
<? AddRow CSSLoop HREF=/modfiles/global/webadmin/webadmin.css ?>
|
||||
<? INC Header.tmpl ?>
|
||||
@@ -11,11 +12,11 @@
|
||||
<input name="userdummy" type="text" style="display: none"/>
|
||||
<input name="passworddummy" type="password" style="display: none"/>
|
||||
|
||||
<h3>Authentication</h3>
|
||||
<h3><? FORMAT "Authentication" ?></h3>
|
||||
<div class="sectionbg">
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Username:</div>
|
||||
<div class="inputlabel"><? FORMAT "Username:" ?></div>
|
||||
|
||||
<? IF Clone ?>
|
||||
<input type="hidden" name="clone" value="<? VAR CloneUsername ?>" />
|
||||
@@ -25,27 +26,26 @@
|
||||
<input type="text" name="newuser" value="<? VAR Username ?>" class="half" maxlength="128" disabled="disabled" />
|
||||
<? ELSE ?>
|
||||
<input type="text" name="user" value="<? VAR Username ?>" class="half" maxlength="128"
|
||||
title="Please enter a username." />
|
||||
title="<? FORMAT "Please enter a username." ?>"/>
|
||||
<? ENDIF ?>
|
||||
|
||||
</div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Password:</div>
|
||||
<div class="inputlabel"><? FORMAT "Password:" ?></div>
|
||||
<input type="password" name="password" class="half"
|
||||
title="Please enter a password." autocomplete="off" />
|
||||
title="<? FORMAT "Please enter a password." ?>" autocomplete="off" />
|
||||
</div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Confirm password:</div>
|
||||
<div class="inputlabel"><? FORMAT "Confirm password:" ?></div>
|
||||
<input type="password" name="password2" class="half"
|
||||
title="Please re-type the above password." />
|
||||
title="<? FORMAT "Please re-type the above password." ?>"/>
|
||||
</div>
|
||||
<div class="subsection half">
|
||||
<div class="inputlabel">Allowed IPs:</div>
|
||||
<div class="inputlabel"><? FORMAT "Allowed IPs:" ?></div>
|
||||
<textarea name="allowedips" cols="70" rows="5"><? LOOP AllowedHostLoop ?><? VAR Host ?>
|
||||
<? ENDLOOP ?>
|
||||
</textarea>
|
||||
<br /><span class="info">Leave empty to allow connections from all IPs.<br />
|
||||
Otherwise, one entry per line, wildcards * and ? are available.</span>
|
||||
<br /><span class="info"><? FORMAT "Leave empty to allow connections from all IPs.<br/>Otherwise, one entry per line, wildcards * and ? are available." ?></span>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
</div>
|
||||
@@ -53,59 +53,59 @@
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<h3>IRC Information</h3>
|
||||
<h3><? FORMAT "IRC Information" ?></h3>
|
||||
<? IF !Edit ?>
|
||||
<span class="info">Nick, AltNick, Ident, RealName and QuitMsg can be left empty to use default values.</span>
|
||||
<span class="info"><? FORMAT "Nick, AltNick, Ident, RealName and QuitMsg can be left empty to use default values." ?></span>
|
||||
<? ENDIF ?>
|
||||
<div class="sectionbg">
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Nickname:</div>
|
||||
<div class="inputlabel"><? FORMAT "Nickname:" ?></div>
|
||||
<input type="text" name="nick" value="<? VAR Nick ?>" class="half" maxlength="128"
|
||||
title="This will be your nickname on IRC." />
|
||||
title="<? FORMAT "Your nickname on IRC." ?>"/>
|
||||
</div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Alt. Nickname:</div>
|
||||
<div class="inputlabel"><? FORMAT "Alt. Nickname:" ?></div>
|
||||
<input type="text" name="altnick" value="<? VAR AltNick ?>" class="half" maxlength="128"
|
||||
title="If the nickname above is not available anymore, then this will be your nickname on IRC." />
|
||||
title="<? FORMAT "Your secondary nickname, if the first is not available on IRC." ?>"/>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Ident:</div>
|
||||
<div class="inputlabel"><? FORMAT "Ident:" ?></div>
|
||||
<input type="text" name="ident" value="<? VAR Ident ?>" class="half" maxlength="128"
|
||||
title="The Ident identifies you as one specific user of your host." />
|
||||
title="<? FORMAT "The Ident is sent to server as username." ?>"/>
|
||||
</div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">StatusPrefix:</div>
|
||||
<div class="inputlabel"><? FORMAT "Status Prefix:" ?></div>
|
||||
<input type="text" name="statusprefix" value="<? VAR StatusPrefix ?>" class="half" maxlength="5"
|
||||
title="This defines the prefix for the status and module queries." />
|
||||
title="<? FORMAT "The prefix for the status and module queries." ?>"/>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Realname:</div>
|
||||
<div class="inputlabel"><? FORMAT "Realname:" ?></div>
|
||||
<input type="text" name="realname" value="<? VAR RealName ?>" class="full" maxlength="256"
|
||||
title="The real name of the user." />
|
||||
title="<? FORMAT "Your real name." ?>"/>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
<? IF BindHostEdit ?>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">BindHost:</div>
|
||||
<div class="inputlabel"><? FORMAT "BindHost:" ?></div>
|
||||
<input type="text" name="bindhost" value="<? VAR BindHost ?>"/>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">DCCBindHost:</div>
|
||||
<div class="inputlabel"><? FORMAT "DCCBindHost:" ?></div>
|
||||
<input type="text" name="dccbindhost" value="<? VAR DCCBindHost ?>"/>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
<? ENDIF ?>
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Quit Message:</div>
|
||||
<div class="inputlabel"><? FORMAT "Quit Message:" ?></div>
|
||||
<input type="text" name="quitmsg" value="<? VAR QuitMsg ?>" class="full" maxlength="256"
|
||||
title="You may define a Message shown, when you quit IRC." />
|
||||
title="<? FORMAT "You may define a Message shown, when you quit IRC." ?>"/>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
</div>
|
||||
@@ -113,21 +113,21 @@
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<h3>Networks</h3>
|
||||
<h3><? FORMAT "Networks" ?></h3>
|
||||
<? IF Edit ?>
|
||||
<div class="sectionbg">
|
||||
<div class="sectionbody">
|
||||
<table class="sortable">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="ignore-sort">[<a href="<? VAR URIPrefix TOP ?><? VAR ModPath TOP ?>addnetwork?user=<? VAR Username ESC=URL ?>">Add</a>]</td>
|
||||
<td class="ignore-sort">[<a href="<? VAR URIPrefix TOP ?><? VAR ModPath TOP ?>addnetwork?user=<? VAR Username ESC=URL ?>"><? FORMAT "Add" ?></a>]</td>
|
||||
<? IF NetworkLoop ?>
|
||||
<td>Name</td>
|
||||
<td>Clients</td>
|
||||
<td>Current Server</td>
|
||||
<td>IRC Nick</td>
|
||||
<td><? FORMAT "Name" ?></td>
|
||||
<td><? FORMAT "Clients" ?></td>
|
||||
<td><? FORMAT "Current Server" ?></td>
|
||||
<td><? FORMAT "Nick" ?></td>
|
||||
<? ELSE ?>
|
||||
<td><- Add a network (opens in same page)</td>
|
||||
<td><? FORMAT "← Add a network (opens in same page)" ?></td>
|
||||
<? ENDIF ?>
|
||||
</tr>
|
||||
</thead>
|
||||
@@ -137,7 +137,7 @@
|
||||
<tr class="<? IF __EVEN__ ?>evenrow<? ELSE ?>oddrow<? ENDIF ?>">
|
||||
<td>
|
||||
<input type="hidden" name="network" value="<? VAR Name ?>" />
|
||||
[<a href="<? VAR URIPrefix TOP ?><? VAR ModPath TOP ?>editnetwork?user=<? VAR Username ESC=URL ?>&network=<? VAR Name ESC=URL ?>">Edit</a>] [<a href="<? VAR URIPrefix TOP ?><? VAR ModPath TOP ?>delnetwork?user=<? VAR Username ESC=URL ?>&name=<? VAR Name ESC=URL ?>">Del</a>]
|
||||
[<a href="<? VAR URIPrefix TOP ?><? VAR ModPath TOP ?>editnetwork?user=<? VAR Username ESC=URL ?>&network=<? VAR Name ESC=URL ?>"><? FORMAT "Edit" ?></a>] [<a href="<? VAR URIPrefix TOP ?><? VAR ModPath TOP ?>delnetwork?user=<? VAR Username ESC=URL ?>&name=<? VAR Name ESC=URL ?>"><? FORMAT "Del" ?></a>]
|
||||
</td>
|
||||
<td><? VAR Name ?></td>
|
||||
<td><? VAR Clients ?></td>
|
||||
@@ -150,22 +150,26 @@
|
||||
</div>
|
||||
</div>
|
||||
<? ELSE ?>
|
||||
<span class="info">You will be able to add + modify networks here after you <? IF Clone ?>have cloned<? ELSE ?>created<? ENDIF ?> the user.</span><br />
|
||||
<? IF Clone ?>
|
||||
<span class="info"><? FORMAT "You will be able to add + modify networks here after you have cloned the user." ?></span><br />
|
||||
<? ELSE ?>
|
||||
<span class="info"><? FORMAT "You will be able to add + modify networks here after you have created the user." ?></span><br />
|
||||
<? ENDIF ?>
|
||||
<? ENDIF ?>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<h3>Modules</h3>
|
||||
<h3><? FORMAT "Modules" ?></h3>
|
||||
<div class="sectionbg">
|
||||
<div class="sectionbody">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Name</td>
|
||||
<td>Arguments</td>
|
||||
<td>Description</td>
|
||||
<td>Loaded globally</td>
|
||||
<td>Loaded by networks</td>
|
||||
<td><? FORMAT "Name" ?></td>
|
||||
<td><? FORMAT "Arguments" ?></td>
|
||||
<td><? FORMAT "Description" ?></td>
|
||||
<td><? FORMAT "Loaded globally" ?></td>
|
||||
<td><? FORMAT "Loaded by networks" ?></td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -218,46 +222,46 @@
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<h3>Channels</h3>
|
||||
<h3><? FORMAT "Channels" ?></h3>
|
||||
<div class="sectionbg">
|
||||
<div class="sectionbody">
|
||||
<div class="subsection third">
|
||||
<div class="inputlabel">Default Modes:</div>
|
||||
<div class="inputlabel"><? FORMAT "Default Modes:" ?></div>
|
||||
<input type="text" name="chanmodes" value="<? VAR DefaultChanModes ?>" maxlength="32"
|
||||
title="These are the default modes ZNC will set when you join an empty channel." />
|
||||
<br /><span class="info">Empty = use standard value</span>
|
||||
title="<? FORMAT "These are the default modes ZNC will set when you join an empty channel." ?>"/>
|
||||
<br /><span class="info"><? FORMAT "Empty = use standard value" ?></span>
|
||||
</div>
|
||||
<div class="subsection third">
|
||||
<div class="inputlabel">Buffer Size:</div>
|
||||
<div class="inputlabel"><? FORMAT "Buffer Size:" ?></div>
|
||||
<input type="number" name="chanbufsize" value="<? VAR ChanBufferSize ?>" min="0"
|
||||
title="This is the amount of lines that the playback buffer will store for channels before dropping off the oldest line. The buffers are stored in the memory by default." />
|
||||
<br /><span class="info">Empty = use standard value</span>
|
||||
title="<? FORMAT "This is the amount of lines that the playback buffer will store for channels before dropping off the oldest line. The buffers are stored in the memory by default." ?>"/>
|
||||
<br /><span class="info"><? FORMAT "Empty = use standard value" ?></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<h3>Queries</h3>
|
||||
<h3><? FORMAT "Queries" ?></h3>
|
||||
<div class="sectionbg">
|
||||
<div class="sectionbody">
|
||||
<div class="subsection third">
|
||||
<div class="inputlabel">Max Buffers:</div>
|
||||
<div class="inputlabel"><? FORMAT "Max Buffers:" ?></div>
|
||||
<input type="number" name="maxquerybuffers" value="<? VAR MaxQueryBuffers ?>" class="third" min="0"
|
||||
title="Maximum number of query buffers. 0 is unlimited."/>
|
||||
title="<? FORMAT "Maximum number of query buffers. 0 is unlimited." ?>"/>
|
||||
</div>
|
||||
<div class="subsection third">
|
||||
<div class="inputlabel">Buffer Size:</div>
|
||||
<div class="inputlabel"><? FORMAT "Buffer Size:" ?></div>
|
||||
<input type="number" name="querybufsize" value="<? VAR QueryBufferSize ?>" min="0"
|
||||
title="This is the amount of lines that the playback buffer will store for queries before dropping off the oldest line. The buffers are stored in the memory by default." />
|
||||
<br /><span class="info">Empty = use standard value</span>
|
||||
title="<? FORMAT "This is the amount of lines that the playback buffer will store for queries before dropping off the oldest line. The buffers are stored in the memory by default." ?>"/>
|
||||
<br /><span class="info"><? FORMAT "Empty = use standard value" ?></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<h3>Flags</h3>
|
||||
<h3><? FORMAT "Flags" ?></h3>
|
||||
<div class="sectionbg">
|
||||
<div class="sectionbody lotsofcheckboxes">
|
||||
<? LOOP OptionLoop ?>
|
||||
@@ -272,20 +276,20 @@
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<h3>ZNC Behavior</h3>
|
||||
<span class="info">Any of the following text boxes can be left empty to use their default value.</span>
|
||||
<h3><? FORMAT "ZNC Behavior" ?></h3>
|
||||
<span class="info"><? FORMAT "Any of the following text boxes can be left empty to use their default value." ?></span>
|
||||
<div class="sectionbg">
|
||||
<div class="sectionbody">
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Timestamp Format:</div>
|
||||
<div class="inputlabel"><? FORMAT "Timestamp Format:" ?></div>
|
||||
<input type="text" name="timestampformat" value="<? VAR TimestampFormat ?>" class="full"
|
||||
title="The format for the timestamps used in buffers, for example [%H:%M:%S]. This setting is ignored in new IRC clients, which use server-time. If your client supports server-time, change timestamp format in client settings instead." />
|
||||
title="<? FORMAT "The format for the timestamps used in buffers, for example [%H:%M:%S]. This setting is ignored in new IRC clients, which use server-time. If your client supports server-time, change timestamp format in client settings instead." ?>"/>
|
||||
</div>
|
||||
<div class="subsection half">
|
||||
<div class="inputlabel">Timezone:</div>
|
||||
<div class="inputlabel"><? FORMAT "Timezone:" ?></div>
|
||||
<input type="text" name="timezone" value="<? VAR Timezone ?>" list="timezone_list"
|
||||
title="Select your timezone." />
|
||||
<br /><span class="info">E.g. <code>Europe/Berlin</code>, or <code>GMT-6</code></span>
|
||||
<br /><span class="info"><? FORMAT "E.g. <code>Europe/Berlin</code>, or <code>GMT-6</code>" ?></span>
|
||||
<datalist id="timezone_list">
|
||||
<? LOOP TZLoop ?>
|
||||
<option value="<? VAR TZ ?>"/>
|
||||
@@ -293,50 +297,51 @@
|
||||
</datalist>
|
||||
</div>
|
||||
<div style="clear:both;"></div>
|
||||
<div class="subsection" title="Character encoding used between IRC client and ZNC.">
|
||||
<div class="inputlabel">Client encoding:</div>
|
||||
<div class="subsection" title="<? FORMAT "Character encoding used between IRC client and ZNC." ?>">
|
||||
<div class="inputlabel"><? FORMAT "Client encoding:" ?></div>
|
||||
<? INC encoding_settings.tmpl ?>
|
||||
</div>
|
||||
<div style="clear:both;"></div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Join Tries:</div>
|
||||
<div class="inputlabel"><? FORMAT "Join Tries:" ?></div>
|
||||
<input type="number" name="jointries" value="<? VAR JoinTries ?>" class="third" min="0"
|
||||
title="This defines how often ZNC tries to join, if the first join failed, e.g. due to channel mode +i/+k or if you're banned." />
|
||||
title="<? FORMAT "This defines how many times ZNC tries to join a channel, if the first join failed, e.g. due to channel mode +i/+k or if you are banned." ?>"/>
|
||||
</div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Max Joins:</div>
|
||||
<div class="inputlabel"><? FORMAT "Join speed:" ?></div>
|
||||
<input type="number" name="maxjoins" value="<? VAR MaxJoins ?>" class="third" min="0"
|
||||
title="How many channels are joined in one JOIN command. 0 is unlimited (default). Set to small positive value if you get disconnected with `Max SendQ Exceeded'"/>
|
||||
title="<? FORMAT "How many channels are joined in one JOIN command. 0 is unlimited (default). Set to small positive value if you get disconnected with “Max SendQ Exceeded”" ?>"/>
|
||||
</div>
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Max IRC Networks Number:</div>
|
||||
<div class="inputlabel"><? FORMAT "Max IRC Networks Number:" ?></div>
|
||||
<input type="number" name="maxnetworks" value="<? VAR MaxNetworks ?>" class="third" min="0"
|
||||
title="Maximum number of IRC networks allowed for this user." <? IF !ImAdmin ?>disabled="disabled"<? ENDIF ?> />
|
||||
title="<? FORMAT "Maximum number of IRC networks allowed for this user." ?>" <? IF !ImAdmin ?>disabled="disabled"<? ENDIF ?> />
|
||||
</div>
|
||||
|
||||
<? SETBLOCK Substitutions_Link ?><a href="http://wiki.znc.in/ExpandString" target="_blank" class="external"><? FORMAT "Substitutions" ?></a><? ENDSETBLOCK ?>
|
||||
<div class="subsection half" id="ctcpreplies_plain">
|
||||
<div class="inputlabel">CTCP Replies:</div>
|
||||
<div class="inputlabel"><? FORMAT "CTCP Replies:" ?></div>
|
||||
<div><textarea name="ctcpreplies" cols="70" rows="3" id="ctcpreplies_text"><? LOOP CTCPLoop ?><? VAR CTCP ?>
|
||||
<? ENDLOOP ?>
|
||||
</textarea></div>
|
||||
<br /><span class="info">One reply per line. Example: TIME Buy a watch!</span>
|
||||
<br /><span class="info"><a href="http://wiki.znc.in/ExpandString" target="_blank" class="external">Substitutions</a> are available</span>
|
||||
<br /><span class="info"><? FORMAT "One reply per line. Example: <code>TIME Buy a watch!</code>" ?></span>
|
||||
<br /><span class="info"><? FORMAT "{1} are available" "Substitutions_Link ESC=" ?></span>
|
||||
</div>
|
||||
<div class="subsection" id="ctcpreplies_js" style="display:none">
|
||||
<div class="inputlabel">CTCP Replies:</div>
|
||||
<div class="inputlabel"><? FORMAT "CTCP Replies:" ?></div>
|
||||
<div>
|
||||
<table style="width:100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Request</th>
|
||||
<th>Response</th>
|
||||
<th><? FORMAT "Request" ?></th>
|
||||
<th><? FORMAT "Response" ?></th>
|
||||
<th/>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="ctcpreplies_tbody"/>
|
||||
</table>
|
||||
<input type="button" value="Add" id="ctcpreplies_add"/>
|
||||
<span class="info"><a href="http://wiki.znc.in/ExpandString" target="_blank" class="external">Substitutions</a> are available</span>
|
||||
<span class="info"><? FORMAT "{1} are available" "Substitutions_Link ESC=" ?></span>
|
||||
<datalist id="ctcpreplies_list">
|
||||
<option value="PING"/>
|
||||
<option value="FINGER"/>
|
||||
@@ -354,23 +359,23 @@
|
||||
<script type="text/javascript">ctcpreplies_init(jQuery);</script>
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Skin:</div>
|
||||
<div class="inputlabel"><? FORMAT "Skin:" ?></div>
|
||||
|
||||
<? IF SkinLoop ROWS > 1 ?>
|
||||
<select name="skin">
|
||||
<option value="">- Global -</option>
|
||||
<option value=""><? FORMAT "- Global -" ?></option>
|
||||
<? LOOP SkinLoop ?>
|
||||
<option value="<? VAR Name ?>"<? IF Checked ?> selected="selected"<? ENDIF ?>><? IF Name == "_default_" ?>Default<? ELSE ?><? VAR Name ?><? ENDIF ?></option>
|
||||
<option value="<? VAR Name ?>"<? IF Checked ?> selected="selected"<? ENDIF ?>><? IF Name == "_default_" ?><? FORMAT "Default" ?><? ELSE ?><? VAR Name ?><? ENDIF ?></option>
|
||||
<? ENDLOOP ?>
|
||||
</select>
|
||||
<? ELSE ?>
|
||||
No other skins found
|
||||
<? FORMAT "No other skins found" ?>
|
||||
<? ENDIF ?>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="subsection">
|
||||
<div class="inputlabel">Language:</div>
|
||||
<div class="inputlabel"><? FORMAT "Language:" ?></div>
|
||||
|
||||
<? IF HaveI18N ?>
|
||||
<select name="language">
|
||||
@@ -391,7 +396,7 @@
|
||||
<? LOOP EmbeddedModuleLoop ?>
|
||||
<? IF Embed ?>
|
||||
<div class="section">
|
||||
<h3>Module <? VAR ModName ?></h3>
|
||||
<h3><? FORMAT "Module {1}" ModName ?></h3>
|
||||
<? INC *Embed ?>
|
||||
</div>
|
||||
<? ENDIF ?>
|
||||
@@ -399,10 +404,24 @@
|
||||
|
||||
<div class="submitline">
|
||||
<? IF ImAdmin ?>
|
||||
<input type="submit" name="submit_return" value="<? IF Edit ?>Save<? ELSE ?><? IF Clone ?>Clone<? ELSE ?>Create<? ENDIF ?><? ENDIF ?> and return" />
|
||||
<input type="submit" name="submit_continue" value="<? IF Edit ?>Save<? ELSE ?><? IF Clone ?>Clone<? ELSE ?>Create<? ENDIF ?><? ENDIF ?> and continue" />
|
||||
<? IF Edit ?>
|
||||
<input type="submit" name="submit_return" value="<? FORMAT "Save and return" ?>"/>
|
||||
<input type="submit" name="submit_continue" value="<? FORMAT "Save and continue" ?>"/>
|
||||
<? ELSE IF Clone ?>
|
||||
<input type="submit" name="submit_return" value="<? FORMAT "Clone and return" ?>"/>
|
||||
<input type="submit" name="submit_continue" value="<? FORMAT "Clone and continue" ?>"/>
|
||||
<? ELSE ?>
|
||||
<input type="submit" name="submit_return" value="<? FORMAT "Create and return" ?>"/>
|
||||
<input type="submit" name="submit_continue" value="<? FORMAT "Create and continue" ?>"/>
|
||||
<? ENDIF ?>
|
||||
<? ELSE ?>
|
||||
<input type="submit" value="<? IF Edit ?>Save<? ELSE ?><? IF Clone ?>Clone<? ELSE ?>Create<? ENDIF ?><? ENDIF ?>" />
|
||||
<? IF Edit ?>
|
||||
<input type="submit" value="<? FORMAT "Save" ?>"/>
|
||||
<? ELSE IF Clone ?>
|
||||
<input type="submit" value="<? FORMAT "Clone" ?>"/>
|
||||
<? ELSE ?>
|
||||
<input type="submit" value="<? FORMAT "Create" ?>"/>
|
||||
<? ENDIF ?>
|
||||
<? ENDIF ?>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user