Browse Source

Translate statuses in the version status filter (#23215).

git-svn-id: http://svn.redmine.org/redmine/trunk@15882 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/3.4.0
Jean-Philippe Lang 7 years ago
parent
commit
19934ec2db
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app/models/issue_query.rb

+ 1
- 1
app/models/issue_query.rb View File

@@ -160,7 +160,7 @@ class IssueQuery < Query
add_available_filter "fixed_version.status",
:type => :list,
:name => l(:label_attribute_of_fixed_version, :name => l(:field_status)),
:values => Version::VERSION_STATUSES.map{|t| [t, t] }
:values => Version::VERSION_STATUSES.map{|s| [l("version_status_#{s}"), s] }

add_available_filter "category_id",
:type => :list_optional,

Loading…
Cancel
Save