diff --git a/app/views/shared/_profile_search_form.html.erb b/app/views/shared/_profile_search_form.html.erb index 443ac1b..feec29e 100644 --- a/app/views/shared/_profile_search_form.html.erb +++ b/app/views/shared/_profile_search_form.html.erb @@ -1,7 +1,8 @@ +<% search_label = _("Find in %s's content") % profile.short_name %> <%= form_tag( { :controller => 'profile_search', :profile => profile.identifier}, :method => 'get', :class => 'search_form' ) do %>
- <%= search_input_with_suggestions 'q', :articles, @q, :title => _("Find in %s's content") % profile.short_name %> + <%= search_input_with_suggestions 'q', :articles, @q, :title => search_label, :placeholder => search_label %> <%= submit_button(:search, _('Search')) %>
-- libgit2 0.21.2