rewrote internationalization and help system

This commit is contained in:
JT Smith 2004-06-25 19:21:35 +00:00
parent e0d4792587
commit 7bb6ac31c1
57 changed files with 11072 additions and 731 deletions

View file

@ -0,0 +1,42 @@
package WebGUI::Help::Article;
our $HELP = {
'article add/edit' => {
title => 61,
body => 71,
related => [
{
tag => 'article template',
namespace => 'Article'
},
{
tag => 'forum discussion properties',
namespace => 'WebGUI'
},
{
tag => 'wobjects using',
namespace => 'WebGUI'
}
]
},
'article template' => {
title => 72,
body => 73,
related => [
{
tag => 'article add/edit',
namespace => 'Article'
},
{
tag => 'pagination template variables',
namespace => 'WebGUI'
},
{
tag => 'wobject template',
namespace => 'WebGUI'
}
]
},
};
1;