diff options
author | Faton Selishta <fatonselishta@gmail.com> | 2011-04-26 14:34:02 +0000 |
---|---|---|
committer | Faton Selishta <fatonselishta@gmail.com> | 2011-04-26 14:34:02 +0000 |
commit | d0a0fa8ee8009be149ca75345b2849ab924bf73a (patch) | |
tree | b592a486d1305b84600755aac33af85cb7d5a69a /app/controllers/public_body_controller.rb | |
parent | c91b6efa75f16a5afb98af13b7cdc071e47c089f (diff) |
added i18n strings in controller's template
Diffstat (limited to 'app/controllers/public_body_controller.rb')
-rw-r--r-- | app/controllers/public_body_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/public_body_controller.rb b/app/controllers/public_body_controller.rb index cf64046ea..e790b042f 100644 --- a/app/controllers/public_body_controller.rb +++ b/app/controllers/public_body_controller.rb @@ -107,7 +107,7 @@ class PublicBodyController < ApplicationController ) end if @tag.size == 1 - @description = "beginning with '" + @tag + "'" + @description = _("beginning with") + " '" + @tag + "'" else @description = PublicBodyCategories::CATEGORIES_BY_TAG[@tag] if @description.nil? |