summaryrefslogtreecommitdiffstats
path: root/lib/redmine.rb
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2009-12-29 17:56:59 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2009-12-29 17:56:59 +0000
commit857c7d16ffb5d6e80859c1b5bb4dabcbaa394b20 (patch)
treeb2a861df2dd28df7f527eb6d360e78244594ef72 /lib/redmine.rb
parentac5cfe7a62288bfde7e5ee795518cdb5aa02de15 (diff)
downloadredmine-857c7d16ffb5d6e80859c1b5bb4dabcbaa394b20.tar.gz
redmine-857c7d16ffb5d6e80859c1b5bb4dabcbaa394b20.zip
Fixed the caption on the Files module. (#4406)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3261 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine.rb')
-rw-r--r--lib/redmine.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine.rb b/lib/redmine.rb
index ecf9abc1c..0cf0cc497 100644
--- a/lib/redmine.rb
+++ b/lib/redmine.rb
@@ -153,7 +153,7 @@ Redmine::MenuManager.map :project_menu do |menu|
:if => Proc.new { |p| p.wiki && !p.wiki.new_record? }
menu.push :boards, { :controller => 'boards', :action => 'index', :id => nil }, :param => :project_id,
:if => Proc.new { |p| p.boards.any? }, :caption => :label_board_plural
- menu.push :files, { :controller => 'projects', :action => 'list_files' }, :caption => :label_attachment_plural
+ menu.push :files, { :controller => 'projects', :action => 'list_files' }, :caption => :label_file_plural
menu.push :repository, { :controller => 'repositories', :action => 'show' },
:if => Proc.new { |p| p.repository && !p.repository.new_record? }
menu.push :settings, { :controller => 'projects', :action => 'settings' }, :last => true