Skip to content

Commit

Permalink
Fix #7952: Add a label next to time spent in bug notes
Browse files Browse the repository at this point in the history
Also reduced the font size back to normal, because with the added label the
large font put too much emphasis on the time spent vs the bugnote text.
  • Loading branch information
dregad committed Jul 14, 2011
1 parent d39017a commit 0c6d013
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bugnote_view_inc.php
Expand Up @@ -186,7 +186,7 @@
break;
case TIME_TRACKING:
if ( access_has_bug_level( config_get( 'time_tracking_view_threshold' ), $f_bug_id ) ) {
echo '<b><big>', $t_time_tracking_hhmm, '</big></b><br /><br />';
echo '<b>', lang_get( 'time_tracking_time_spent' ) . ' ' . $t_time_tracking_hhmm, '</b><br /><br />';
}
break;
}
Expand Down
1 change: 1 addition & 0 deletions lang/strings_english.txt
Expand Up @@ -1505,6 +1505,7 @@ $s_show_all_tags = 'All';
# Time Tracking
$s_time_tracking_billing_link = 'Time Tracking';
$s_time_tracking = 'Time tracking';
$s_time_tracking_time_spent = 'Time spent:';
$s_time_tracking_get_info_button = 'Get Time Tracking Information';
$s_time_tracking_cost_per_hour = 'Cost / Hour';
$s_time_tracking_cost = 'Cost';
Expand Down

0 comments on commit 0c6d013

Please sign in to comment.