webgui/lib/WebGUI/i18n/English/_i18n.skeleton
Colin Kuskie 9e1cc24271 Since the topical view of the Help has gone away, the TOC labels
are no longer required in the i18n files.  Remove the test and
subroutine from Operation/Help.pm.
2008-05-30 07:22:26 +00:00

20 lines
728 B
Text

package WebGUI::i18n::English::_i18n; ##Be sure to change the package name to match the filename
use strict; ##Required for all good Perl::Critic compliant code
our $I18N = { ##hashref of hashes
'key1' => { ##key that will be used to reference this entry. Do not translate this.
message => q|Internationalized message. WebGUI Macros work in here. Please use XHTML format for markup|,
lastUpdated => 1131394070, #seconds from the epoch
context => q|Provide some context to let the translator know what this message is used for.|
},
'key2' => {
message => q|Second message.|,
lastUpdated => 1131394072,
context => q|Provide some context to let the translator know what this message is used for.|
},
};
1;