diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-01-21 16:02:02 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-04-09 18:33:03 +0100 |
commit | 1ed460e5dc13619e1d4335d3372b5587e5fdb675 (patch) | |
tree | 98402349d0eaa2a2e696ca4632d9710bade90bf8 | |
parent | 5415e74f2308cae04609c638a5d6fdcd60dccc53 (diff) |
Move closing bracket to end of string, only want to translate text.
-rw-r--r-- | app/views/public_body/list.rhtml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/public_body/list.rhtml b/app/views/public_body/list.rhtml index 096282edf..9ae9e0c5f 100644 --- a/app/views/public_body/list.rhtml +++ b/app/views/public_body/list.rhtml @@ -10,7 +10,7 @@ <% for row in PublicBodyCategories::get().with_headings() %> <% if row.instance_of?(Array) %> <li> - <%= link_to_unless (@tag == row[0]), row[1], list_public_bodies_url(:tag => row[0]) %> + <%= link_to_unless (@tag == row[0]), row[1], list_public_bodies_url(:tag => row[0]) %> </li> <% else %> <% if not first_row %> @@ -23,7 +23,7 @@ <% end %> <% end %> <% if not first_row %> - </ul> + </ul> <% end %> <%= render :partial => "list_sidebar_extra" %> </div> @@ -34,7 +34,7 @@ <% form_tag(list_public_bodies_default_url, :method => "get", :id=>"search_form") do %> <div> - <%= text_field_tag(:public_body_query, params[:public_body_query]) %> + <%= text_field_tag(:public_body_query, params[:public_body_query]) %> <%= submit_tag(_("Search")) %> </div> <% end %> @@ -43,5 +43,5 @@ <%= render :partial => 'body_listing', :locals => { :public_bodies => @public_bodies } %> <%= will_paginate(@public_bodies) %><br/> - <%= link_to _("Can't find the one you want?", help_requesting_path + '#missing_body') %> + <%= link_to _("Can't find the one you want?"), help_requesting_path + '#missing_body' %> </div> |