summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-04-30 14:17:20 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-04-30 14:17:20 +0000
commit5288b8550bc278bbdc7e00a0550ef4e6fafb751a (patch)
tree679c920ab3cac7d0b43c62c75772e483bc9abc14 /app/views
parent66d789229d09eacb14e8305ae8056e909da5a0e4 (diff)
downloadredmine-5288b8550bc278bbdc7e00a0550ef4e6fafb751a.tar.gz
redmine-5288b8550bc278bbdc7e00a0550ef4e6fafb751a.zip
Removed hard coded 'Search' string in base layout.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@492 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r--app/views/layouts/base.rhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/layouts/base.rhtml b/app/views/layouts/base.rhtml
index 9d4a196d8..5cd88aaf9 100644
--- a/app/views/layouts/base.rhtml
+++ b/app/views/layouts/base.rhtml
@@ -28,7 +28,7 @@
</div>
<div style="float: right; padding-right: 1em; padding-top: 0.2em;">
<% if loggedin? %><small><%=l(:label_logged_as)%> <strong><%= @logged_in_user.login %></strong> -</small><% end %>
- <small><%= toggle_link 'Search', 'quick-search-form', :focus => 'quick-search-input' %></small>
+ <small><%= toggle_link l(:label_search), 'quick-search-form', :focus => 'quick-search-input' %></small>
<% form_tag({:controller => 'search', :action => 'index', :id => @project}, :method => :get, :id => 'quick-search-form', :style => "display:none;" ) do %>
<%= text_field_tag 'q', @question, :size => 15, :class => 'small', :id => 'quick-search-input' %>
<% end %>