summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorVictor Wu <wu.victor@gmail.com>2019-04-25 15:27:02 +0000
committerSean McGivern <sean@gitlab.com>2019-04-25 15:27:02 +0000
commit7c1511c79d316e35fff401c475a6f12f5196bd65 (patch)
treebc11c3f0702f51148e17172860497a082d9fbc92 /app/views
parentc92d2071d5a9c31b332cb33fb4a43e0ed111a4ba (diff)
downloadgitlab-ce-7c1511c79d316e35fff401c475a6f12f5196bd65.tar.gz
Externalize left sidebar strings
Diffstat (limited to 'app/views')
-rw-r--r--app/views/shared/_sidebar_toggle_button.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/shared/_sidebar_toggle_button.html.haml b/app/views/shared/_sidebar_toggle_button.html.haml
index 2530db986e0..d90a6d43761 100644
--- a/app/views/shared/_sidebar_toggle_button.html.haml
+++ b/app/views/shared/_sidebar_toggle_button.html.haml
@@ -1,8 +1,8 @@
%a.toggle-sidebar-button.js-toggle-sidebar{ role: "button", type: "button", title: "Toggle sidebar" }
= sprite_icon('angle-double-left', css_class: 'icon-angle-double-left')
= sprite_icon('angle-double-right', css_class: 'icon-angle-double-right')
- %span.collapse-text Collapse sidebar
+ %span.collapse-text= _("Collapse sidebar")
= button_tag class: 'close-nav-button', type: 'button' do
= sprite_icon('close', size: 16)
- %span.collapse-text Close sidebar
+ %span.collapse-text= _("Close sidebar")