diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-07 18:42:40 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-07 18:42:40 +0000 |
commit | f58db70bdecdbfd0a0d81c0c452d58b88391f9f1 (patch) | |
tree | 85283ef6b7a4d17885045a80b421e4e8ea7bbf74 /app/views/admin | |
parent | 51adc242a31ef9af4d1857d0c6602bb39fdc6e98 (diff) | |
download | redmine-f58db70bdecdbfd0a0d81c0c452d58b88391f9f1.tar.gz redmine-f58db70bdecdbfd0a0d81c0c452d58b88391f9f1.zip |
More detailed html title on several views.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@964 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/index.rhtml | 4 | ||||
-rw-r--r-- | app/views/admin/info.rhtml | 2 | ||||
-rw-r--r-- | app/views/admin/mail_options.rhtml | 2 | ||||
-rw-r--r-- | app/views/admin/projects.rhtml | 2 |
4 files changed, 9 insertions, 1 deletions
diff --git a/app/views/admin/index.rhtml b/app/views/admin/index.rhtml index 02eb5ae89..933e288a0 100644 --- a/app/views/admin/index.rhtml +++ b/app/views/admin/index.rhtml @@ -42,4 +42,6 @@ <p class="icon22 icon22-info"> <%= link_to l(:label_information_plural), :controller => 'admin', :action => 'info' %> -</p>
\ No newline at end of file +</p> + +<% set_html_title l(:label_administration) -%> diff --git a/app/views/admin/info.rhtml b/app/views/admin/info.rhtml index 179fda1a8..4d442f5ad 100644 --- a/app/views/admin/info.rhtml +++ b/app/views/admin/info.rhtml @@ -23,3 +23,5 @@ <% end %> </table> <% end %> + +<% set_html_title(l(:label_information_plural)) -%> diff --git a/app/views/admin/mail_options.rhtml b/app/views/admin/mail_options.rhtml index 997cc3b22..a4b923873 100644 --- a/app/views/admin/mail_options.rhtml +++ b/app/views/admin/mail_options.rhtml @@ -29,3 +29,5 @@ <%= submit_tag l(:button_save) %> <% end %> + +<% set_html_title(l(:field_mail_notification)) -%> diff --git a/app/views/admin/projects.rhtml b/app/views/admin/projects.rhtml index 423d56ebe..e9d5e8537 100644 --- a/app/views/admin/projects.rhtml +++ b/app/views/admin/projects.rhtml @@ -47,3 +47,5 @@ <p><%= pagination_links_full @project_pages, :status => @status %> [ <%= @project_pages.current.first_item %> - <%= @project_pages.current.last_item %> / <%= @project_count %> ]</p> + +<% set_html_title l(:label_project_plural) -%> |