1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-10 17:41:31 +00:00

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

git-svn-id: http://svn.redmine.org/redmine/trunk@15882 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2016-10-02 11:25:25 +00:00
parent b6ed06ca3c
commit 19934ec2db

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,