macro help moved into individual files

This commit is contained in:
Colin Kuskie 2005-04-03 07:39:56 +00:00
parent bfaf66f854
commit 13dee87a18
86 changed files with 1978 additions and 0 deletions

View file

@ -0,0 +1,27 @@
package WebGUI::i18n::English::LoginToggle;
our $I18N = {
'login toggle title' => {
message => q|Login Toggle Macro|,
lastUpdated => 1112466408,
},
'login toggle body' => {
message => q|
<b>&#94;LoginToggle; or &#94;LoginToggle();</b><br>
Displays a "Login" or "Logout" message depending upon whether the user is logged in or not. You can optionally specify other labels like this: &#94;LoginToggle("Click here to log in.","Click here to log out.");. You can also use the special case &#94;LoginToggle(linkonly); to return only the URL with no label.
<p>
<b>toggle.url</b><br/>
The URL to login or logout.
<p/>
<b>toggle.text</b><br/>
The Internationalized label for logging in or logging out (depending on the state of the macro), or the text that you supply to the macro.
<p>
|,
lastUpdated => 1112466919,
},
};
1;