<?PHP

/***
Changes to text in the user interface to convert Mantis Bug Tracker for use with business issues.

***/

/*
Severity levels 
We reduced them to 3 in the config files.
Nore that the severity level constants for 50, 60, 70 are still MINOR, MAJOR and CRASH 
throughout the config files, but appear as the strings below in the user interface.
We omit FEATURE, TRIVIAL, TEXT, TWEAK, BLOCK.
*/

$s_severity_enum_string = '50:no effect now,60:may stop production,70:stops production';

/*
Resolutions
We reduced them to 6. 
The first 3 are automatically set according to the status of the issue. 
The last 3 are different types of 'not fixed' resolution.
We have redefined the level 80 and 90 constants as DEFERRED and REJECTED.
They used to be SUSPENDED and WON'T FIX.
We omit UNABLE TO DUPLICATE, NOT FIXABLE and NOT A BUG. 
*/

$s_resolution_enum_string = '10:open,20:fixed,30:reopened,60:duplicate,80:deferred,90:rejected';

/*
Change 'Feedback' status to 'Reopened' status
Note that the status level 20 constant is still FEEDBACK throughout the config files, 
but appears as 'Reopened' in the user interface.
*/

$s_status_enum_string = '10:new,20:reopened,50:assigned,80:resolved,90:closed';
$s_email_notification_title_for_status_bug_feedback = 'The following issue has been REOPENED.';
$s_email_on_feedback = 'E-mail on Reopened';
$s_feedback_bug_title = 'Reopen Issue';
$s_feedback_bug_button = 'Reopen Issue';
$s_reopened_bug_title = 'Reopen Issue';
$s_reopened_bug_button = 'Reopen Issue';
$s_reopened_button = 'Reopen Issue';
$s_reminder_explain = 'This note will be sent to the recipients listed stating that issue has been reopened.';
$s_my_view_title_feedback = 'Reopened, previously Assigned to me';

/*
Change 'Developer' to 'Problem Solver' and reduce number of displayed user levels.
Note that the role level 55 constant is still DEVELOPER throughout the config files,
but appears as 'Problem Solver' in the user interface.
*/

$s_by_developer = 'By Problem Solver';
$s_developer_by_resolution = 'Problem Solver By Resolution';
$s_developer_stats = 'Problem Solver Stats';
$s_access_levels_enum_string = '25:reporter,55:problem solver,70:manager,90:administrator';


?>




