diff --git a/lib/WebGUI/Asset/Wobject/ProjectManager.pm b/lib/WebGUI/Asset/Wobject/ProjectManager.pm index 1bd5f87d1..1d174d44a 100644 --- a/lib/WebGUI/Asset/Wobject/ProjectManager.pm +++ b/lib/WebGUI/Asset/Wobject/ProjectManager.pm @@ -288,8 +288,9 @@ sub www_editProject { -value=>$projectId ); $f->readOnly( - -label=>$i18n->get("project id"), - -value=>$projectId + -label=>$i18n->get("project id"), + -hoverHelp => $i18n->get('project name hoverhelp'), + -value=>$projectId ); $f->text( -name => "name", diff --git a/lib/WebGUI/Help/Asset_ProjectManager.pm b/lib/WebGUI/Help/Asset_ProjectManager.pm index 858b50894..c3af6e04c 100644 --- a/lib/WebGUI/Help/Asset_ProjectManager.pm +++ b/lib/WebGUI/Help/Asset_ProjectManager.pm @@ -34,6 +34,58 @@ our $HELP = { }, ], related => [ + { + tag => 'project add/edit', + namespace => 'Asset_ProjectManager', + }, + ], + }, + + 'project add/edit' => { + title => 'edit project', + body => 'project edit body', + fields => [ + { + title => 'project id', + description => 'project id', + namespace => 'Asset_ProjectManager', + }, + { + title => 'project name label', + description => 'project name hoverhelp', + namespace => 'Asset_ProjectManager', + }, + { + title => 'project description label', + description => 'project description hoverhelp', + namespace => 'Asset_ProjectManager', + }, + { + title => 'project manager label', + description => 'project manager hoverhelp', + namespace => 'Asset_ProjectManager', + }, + { + title => 'duration units label', + description => 'duration units hoverhelp', + namespace => 'Asset_ProjectManager', + }, + { + title => 'hours per day label', + description => 'hours per day hoverhelp', + namespace => 'Asset_ProjectManager', + }, + { + title => 'target budget label', + description => 'target budget hoverhelp', + namespace => 'Asset_ProjectManager', + }, + ], + related => [ + { + tag => 'project manager add/edit', + namespace => 'Asset_ProjectManager', + }, ], }, diff --git a/lib/WebGUI/i18n/English/Asset_ProjectManager.pm b/lib/WebGUI/i18n/English/Asset_ProjectManager.pm index 97e942715..0db395c22 100644 --- a/lib/WebGUI/i18n/English/Asset_ProjectManager.pm +++ b/lib/WebGUI/i18n/English/Asset_ProjectManager.pm @@ -70,6 +70,11 @@ our $I18N = { message => q|Project Id|, lastUpdated => 0 }, + + 'project id hoverhelp' => { + message => q|A unique identifier used internally by WebGUI to reference this project.|, + lastUpdated => 0 + }, 'project name hoverhelp' => { message => q|Enter the name of the project|, @@ -112,7 +117,7 @@ our $I18N = { }, 'duration units hoverhelp' => { - message => q|Choose the unit by which you wish to track a project. This will determine how you will enter the time each task takes.|, + message => q|Choose the unit of time by which you wish to track a project. This will determine how you will enter the time each task takes.|, lastUpdated => 0 }, @@ -346,8 +351,8 @@ our $I18N = { lastUpdated => 0 }, - '' => { - message => q||, + 'project edit body' => { + message => q|

In the Edit Project screen, you will define a new project or edit an existing project by giving general information about the project, including a name, a description, the group of users who are allowed to manage the project and the target budget.

|, lastUpdated => 0 },