diff options
| author | Marc Florisson | 2012-09-10 18:59:44 +0200 |
|---|---|---|
| committer | Marc Florisson | 2012-09-10 18:59:44 +0200 |
| commit | abcb13a2e4dff2b155ff25f20b5ba6e7b1f2d5f7 (patch) | |
| tree | f5f19bd53fc156ea6b73d3b332258c763a1df63a | |
| parent | 3dbe700c50929b5430a2e95d1d43f3d0aa4a6862 (diff) | |
| download | chouette-core-abcb13a2e4dff2b155ff25f20b5ba6e7b1f2d5f7.tar.bz2 | |
typo fix
| -rw-r--r-- | app/views/layouts/application.html.erb | 2 | ||||
| -rw-r--r-- | app/views/referentials/show.html.erb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 604e34e23..b5fb169d5 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -43,7 +43,7 @@ <li class="admin"><%= tab_link_to Organisation.model_name.human, organisation_path %></li> <% end %> <% else %> - <li><%= link_to t("layouts.tabs.dashboard"), referential_path(@referential), :class => ("current" if current_page?(referential_path(@referential))) %></li> + <li><%= link_to t("layouts.tabs.dashboard").capitalize, referential_path(@referential), :class => ("current" if current_page?(referential_path(@referential))) %></li> <li><%= tab_link_to Chouette::Network, referential_networks_path(@referential) %></li> <li><%= tab_link_to Chouette::Company, referential_companies_path(@referential) %></li> <li><%= tab_link_to Chouette::Line, referential_lines_path(@referential) %></li> diff --git a/app/views/referentials/show.html.erb b/app/views/referentials/show.html.erb index 3a45e51fe..951c299af 100644 --- a/app/views/referentials/show.html.erb +++ b/app/views/referentials/show.html.erb @@ -14,7 +14,7 @@ <%= @referential.projection_type %> </p> <p> - <label><%= Referential.human_attribute_name("time_zone") %>: </label> + <label><%= Referential.human_attribute_name("time_zone").capitalize %>: </label> <%= @referential.time_zone %> </p> <p> |
