From 0e7f81fd4a6ea5cb372667831a92bf9d48c64aa1 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Thu, 22 Jun 2006 22:46:49 +0000 Subject: [PATCH] help for Time Tracker add/edit screen --- lib/WebGUI/Help/Asset_TimeTracking.pm | 40 +++++++++++++++++++ lib/WebGUI/i18n/English/Asset_TimeTracking.pm | 13 +++++- 2 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 lib/WebGUI/Help/Asset_TimeTracking.pm diff --git a/lib/WebGUI/Help/Asset_TimeTracking.pm b/lib/WebGUI/Help/Asset_TimeTracking.pm new file mode 100644 index 000000000..2aa454d52 --- /dev/null +++ b/lib/WebGUI/Help/Asset_TimeTracking.pm @@ -0,0 +1,40 @@ +package WebGUI::Help::Asset_TimeTracking; + +our $HELP = { + 'time tracking add/edit' => { + title => 'timetracking add/edit title', + body => 'timetracking add/edit body', + fields => [ + { + title => 'userViewTemplate label', + description => 'userViewTemplate hoverhelp', + namespace => 'Asset_TimeTracking', + }, + { + title => 'managerViewTemplate label', + description => 'managerViewTemplate hoverhelp', + namespace => 'Asset_TimeTracking', + }, + { + title => 'timeRowTemplateId label', + description => 'timeRowTemplateId hoverhelp', + namespace => 'Asset_TimeTracking', + }, + { + title => 'groupToManage label', + description => 'groupToManage hoverhelp', + namespace => 'Asset_TimeTracking', + }, + { + title => 'Project Management Integration', + description => 'Choose yes to pull projects and task information from the various project management assets on your site', + namespace => 'Asset_TimeTracking', + }, + ], + related => [ + ], + }, + +}; + +1; ##All perl modules must return true diff --git a/lib/WebGUI/i18n/English/Asset_TimeTracking.pm b/lib/WebGUI/i18n/English/Asset_TimeTracking.pm index 7c61ab414..0225ff990 100644 --- a/lib/WebGUI/i18n/English/Asset_TimeTracking.pm +++ b/lib/WebGUI/i18n/English/Asset_TimeTracking.pm @@ -244,7 +244,18 @@ our $I18N = { 'edit project resource label' => { lastUpdated => 0, message => 'Project Resource' - } + }, + + 'timetracking add/edit title' => { + lastUpdated => 0, + message => 'Add/Edit Time Tracking' + }, + + 'timetracking add/edit body' => { + lastUpdated => 0, + message => 'The Time Tracking Asset lets you define a set of tasks and then to track how well they are accomplished against an original estimate for the task.' + }, + };