webgui/lib/WebGUI/i18n/English/Template_TemplateToolkit.pm
Colin Kuskie 0b1e077f69 Changed the Help so that chapters with only 1 page are directly linked, saving a click.
Added pluggable template parser docs.
From the dev list, changed HTMLTemplateExpr to translate all dots in template
variables to underscores, since EXPR's don't do dots, just like TemplateToolkit.
2006-10-29 23:36:18 +00:00

25 lines
949 B
Perl

package WebGUI::i18n::English::Template_TemplateToolkit;
our $I18N = {
'template toolkit title' => {
message => q|Template Toolkit|,
lastUpdated => 1162085513,
context => q|Name of the Template::Toolkit module|
},
'template toolkit body' => {
message => q|<p>Template Toolkit is is a collection of modules which implement a fast, flexible, powerful and extensible template processing system. <a href="http://search.cpan.org/perldoc?Template%3A%3ATooolkit">Documentation for Template Toolkit</a> is available online.</p>
<p>The syntax of template variables in Template Toolkit is slightly different from HTML Template. Any WebGUI template variables that contains a dot '.', should be chanaged to use an underscore instead '_'.</p>
|,
lastUpdated => 1162085513,
context => q|Explanation of Template Toolkit usage in WebGUI.|
},
'templateParserName' => {
message => q|Template Toolkit|,
lastUpdated => 1162086264,
},
};
1;