Merged r6035 from trunk.

PDF: use DejaVuSans fonts in Vietnamese.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.2-stable@6037 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-06-10 02:15:47 +00:00
parent 1701de9123
commit 22e143f0b3
1 changed files with 32 additions and 26 deletions

View File

@ -40,6 +40,11 @@ module Redmine
@ic = Iconv.new(pdf_encoding, 'UTF-8')
end
super('P', 'mm', 'A4', (pdf_encoding == 'UTF-8'), pdf_encoding)
case current_language.to_s.downcase
when 'vi'
@font_for_content = 'DejaVuSans'
@font_for_footer = 'DejaVuSans'
else
case pdf_encoding
when 'UTF-8'
@font_for_content = 'FreeSans'
@ -68,6 +73,7 @@ module Redmine
@font_for_content = 'Arial'
@font_for_footer = 'Helvetica'
end
end
SetCreator(Redmine::Info.app_name)
SetFont(@font_for_content)
end