diff options
author | Martin Wortschack <mwortschack@gitlab.com> | 2019-04-04 17:05:25 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2019-04-04 17:05:25 +0000 |
commit | 2e756052720a68302231eba83339235b8983b6de (patch) | |
tree | a98b75ff2b47ceecc3cb488bcb786e57d4b7bbeb /app/helpers/button_helper.rb | |
parent | d0b9ab1910024c13ec5df55632ffafa1d18add39 (diff) | |
download | gitlab-ce-2e756052720a68302231eba83339235b8983b6de.tar.gz |
Externalize strings in helpers
- Update qa selector
- Update PO file
Diffstat (limited to 'app/helpers/button_helper.rb')
-rw-r--r-- | app/helpers/button_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/button_helper.rb b/app/helpers/button_helper.rb index 494c754e7d5..03adbfa204f 100644 --- a/app/helpers/button_helper.rb +++ b/app/helpers/button_helper.rb @@ -21,7 +21,7 @@ module ButtonHelper # See http://clipboardjs.com/#usage def clipboard_button(data = {}) css_class = data[:class] || 'btn-clipboard btn-transparent' - title = data[:title] || 'Copy to clipboard' + title = data[:title] || _('Copy to clipboard') button_text = data[:button_text] || '' hide_tooltip = data[:hide_tooltip] || false hide_button_icon = data[:hide_button_icon] || false |