2022-08-11 02:45:58 +00:00
|
|
|
<?php
|
|
|
|
switch( $g_active_language ) {
|
|
|
|
default: # english
|
2022-08-11 02:52:26 +00:00
|
|
|
$s_status_enum_string = '10:new,20:feedback,25:needinfo,30:acknowledged,40:confirmed,50:assigned,80:resolved,90:closed';
|
2022-08-11 02:45:58 +00:00
|
|
|
|
2022-08-11 02:52:26 +00:00
|
|
|
$s_needinfo_bug_title = 'Mark issue as Need Information';
|
|
|
|
$s_needinfo_bug_button = 'Need Information';
|
2022-08-11 02:45:58 +00:00
|
|
|
|
2022-08-11 02:52:26 +00:00
|
|
|
$s_email_notification_title_for_status_bug_needinfo = 'The following issue has been set to NEEDINFO';
|
2022-08-11 02:45:58 +00:00
|
|
|
break;
|
|
|
|
}
|