diff options
author | mia <miadia@users.noreply.github.com> | 2018-01-01 16:55:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-01 16:55:59 +0000 |
commit | c83771ed6234285d05f776218ad53a47df09510c (patch) | |
tree | d501124d0b0722619bc2f914a711a792396a379a | |
parent | 73ed2308c1f68ec080ff06afb4312a001e4f39e2 (diff) |
Fixes #401
Display "shift started" instead of "shift starts" when shift has already started.
-rw-r--r-- | includes/view/User_view.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/view/User_view.php b/includes/view/User_view.php index 745bc6d5..2f53e641 100644 --- a/includes/view/User_view.php +++ b/includes/view/User_view.php @@ -299,7 +299,7 @@ function User_shift_state_render($user) if (time() < $halfway) { return '<span class="text-danger moment-countdown" data-timestamp="' . $nextShift['start'] . '">' - . _('Shift starts %c') + . _('Shift started %c') . '</span>'; } |