X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/963b8f43f155b19096ffc2888deea105a7ec569a..01cbc40ed62f006398bcce62fc1f449b432b59b1:/app/helpers/issues_helper.rb diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index 453886334..55bd0952f 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -28,7 +28,7 @@ module IssuesHelper def open_issues_count count = Issue.visible_to(current_user).open.limit(Settings.max_issues_count).size if count >= Settings.max_issues_count - tag.span("#{Settings.max_issues_count}+", :class => "badge count-number") + tag.span(I18n.t("count.at_least_pattern", :count => Settings.max_issues_count), :class => "badge count-number") elsif count.positive? tag.span(count, :class => "badge count-number") end