add skeletons for help and i18n
This commit is contained in:
parent
b77f503aec
commit
83df234e88
2 changed files with 45 additions and 0 deletions
15
lib/WebGUI/i18n/English/_i18n.pm
Normal file
15
lib/WebGUI/i18n/English/_i18n.pm
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
package WebGUI::i18n::English::_i18n; ##Be sure to change the package name to match the filename
|
||||
|
||||
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,
|
||||
},
|
||||
|
||||
'key2' => {
|
||||
message => q|Second message.|,
|
||||
lastUpdated => 1131394072,
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
Loading…
Add table
Add a link
Reference in a new issue