summaryrefslogtreecommitdiff
path: root/app/views/projects
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2017-07-24 13:50:14 +0000
committerFilipa Lacerda <filipa@gitlab.com>2017-07-24 13:50:14 +0000
commit87521660e89872b568ff6227077381bf2c5bad7e (patch)
treebb9431c43047fbdf5eddc1184ea572ee73aa1d82 /app/views/projects
parentc76804071e121b96a8e97209273bed7a6da750ec (diff)
parent53c5b6717ccfb4c9bc1f4faf008d084dd4f0cd96 (diff)
downloadgitlab-ce-87521660e89872b568ff6227077381bf2c5bad7e.tar.gz
Merge branch '35391-fix-star-i18n-in-js' into 'master'
Fix translations for Star/Unstar in JS file Closes #35391 See merge request !13013
Diffstat (limited to 'app/views/projects')
-rw-r--r--app/views/projects/buttons/_star.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/buttons/_star.html.haml b/app/views/projects/buttons/_star.html.haml
index e248676be0d..c82ae35a685 100644
--- a/app/views/projects/buttons/_star.html.haml
+++ b/app/views/projects/buttons/_star.html.haml
@@ -2,7 +2,7 @@
= link_to toggle_star_project_path(@project), { class: 'btn star-btn toggle-star', method: :post, remote: true } do
- if current_user.starred?(@project)
= icon('star')
- %span.starred= _('Unstar')
+ %span.starred= _('Unstar')
- else
= icon('star-o')
%span= s_('StarProject|Star')