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

74
lib/WebGUI/Help/USS.pm Normal file
View file

@ -0,0 +1,74 @@
package WebGUI::Help::USS;
our $HELP = {
'user submission system add/edit' => {
title => 61,
body => 71,
related => [
{
tag => 'forum discussion properties',
namespace => 'WebGUI'
},
{
tag => 'submission form template',
namespace => 'USS'
},
{
tag => 'submission template',
namespace => 'USS'
},
{
tag => 'user submission system template',
namespace => 'USS'
},
{
tag => 'wobjects using',
namespace => 'WebGUI'
}
]
},
'submission form template' => {
title => 93,
body => 94,
related => [
{
tag => 'user submission system add/edit',
namespace => 'USS'
}
]
},
'user submission system template' => {
title => 74,
body => 75,
related => [
{
tag => 'pagination template variables',
namespace => 'WebGUI'
},
{
tag => 'user submission system add/edit',
namespace => 'USS'
},
{
tag => 'wobject template',
namespace => 'WebGUI'
}
]
},
'submission template' => {
title => 76,
body => 77,
related => [
{
tag => 'user submission system add/edit',
namespace => 'USS'
},
{
tag => 'wobject template',
namespace => 'WebGUI'
}
]
},
};
1;