diff options
author | Andreas Kämmerle <akaemmerle@gitlab.com> | 2018-05-16 12:14:55 +0000 |
---|---|---|
committer | Andreas Kämmerle <akaemmerle@gitlab.com> | 2018-05-16 12:14:55 +0000 |
commit | 62a2a50871ff386444f8dc6dbde6a03c00015d13 (patch) | |
tree | 13512bd295b664c5e6abcdf93f81d747a5d557fe /app/views/admin/broadcast_messages | |
parent | 51df79f891c262c7bdba61ad6931cb08cc37d7fb (diff) | |
download | gitlab-ce-62a2a50871ff386444f8dc6dbde6a03c00015d13.tar.gz |
Add timezone information to the date time select labels
Diffstat (limited to 'app/views/admin/broadcast_messages')
-rw-r--r-- | app/views/admin/broadcast_messages/_form.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin/broadcast_messages/_form.html.haml b/app/views/admin/broadcast_messages/_form.html.haml index 5a4ed1c3a2a..813ad451b44 100644 --- a/app/views/admin/broadcast_messages/_form.html.haml +++ b/app/views/admin/broadcast_messages/_form.html.haml @@ -27,11 +27,11 @@ .col-sm-10 = f.color_field :font, class: "form-control" .form-group - = f.label :starts_at, class: 'control-label' + = f.label :starts_at, _("Starts at (UTC)"), class: 'control-label' .col-sm-10.datetime-controls = f.datetime_select :starts_at, {}, class: 'form-control form-control-inline' .form-group - = f.label :ends_at, class: 'control-label' + = f.label :ends_at, _("Ends at (UTC)"), class: 'control-label' .col-sm-10.datetime-controls = f.datetime_select :ends_at, {}, class: 'form-control form-control-inline' .form-actions |