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,70 @@
package WebGUI::Help::DataForm;
our $HELP = {
'data form add/edit' => {
title => 61,
body => 71,
related => [
{
tag => 'data form fields add/edit',
namespace => 'DataForm'
},
{
tag => 'data form list template',
namespace => 'DataForm'
},
{
tag => 'data form template',
namespace => 'DataForm'
},
{
tag => 'wobjects using',
namespace => 'WebGUI'
}
]
},
'data form fields add/edit' => {
title => 62,
body => 72,
related => [
{
tag => 'data form template',
namespace => 'DataForm'
},
{
tag => 'data form add/edit',
namespace => 'DataForm'
}
]
},
'data form template' => {
title => 82,
body => 83,
related => [
{
tag => 'data form fields add/edit',
namespace => 'DataForm'
},
{
tag => 'data form add/edit',
namespace => 'DataForm'
},
{
tag => 'wobject template',
namespace => 'WebGUI'
}
]
},
'data form list template' => {
title => 88,
body => 89,
related => [
{
tag => 'data form add/edit',
namespace => 'DataForm'
}
]
},
};
1;