Prevent blank menu caption.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1663 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2008-07-13 13:25:37 +00:00
parent ad497bdcba
commit 937cee7269
1 changed files with 3 additions and 1 deletions

View File

@ -167,7 +167,9 @@ module Redmine
def caption(project=nil)
if @caption.is_a?(Proc)
@caption.call(project)
c = @caption.call(project).to_s
c = @name.to_s.humanize if c.blank?
c
else
# check if localized string exists on first render (after GLoc strings are loaded)
@caption_key ||= (@caption || (l_has_string?("label_#{@name}".to_sym) ? "label_#{@name}".to_sym : @name.to_s.humanize))