diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index 72de3cd..34ade9e 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -657,7 +657,7 @@ module ApplicationHelper
title = "
" + title + "
"
title += "" + _("Searched for '%s'") % options[:query] + "
" if !options[:query].blank?
title += "" + _("In category %s") % options[:category] + "
" if !options[:category].blank?
- title += "" + _("within %d from %s") % [options[:distance], options[:region]] + "
" if !options[:distance].blank? && !options[:region].blank?
+ title += "" + _("within %d km from %s") % [options[:distance], options[:region]] + "
" if !options[:distance].blank? && !options[:region].blank?
title += "" + _("%d results found") % options[:total_results] + "
" if !options[:total_results].blank?
title
end
--
libgit2 0.21.2