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:
parent
1701de9123
commit
22e143f0b3
|
@ -40,6 +40,11 @@ module Redmine
|
||||||
@ic = Iconv.new(pdf_encoding, 'UTF-8')
|
@ic = Iconv.new(pdf_encoding, 'UTF-8')
|
||||||
end
|
end
|
||||||
super('P', 'mm', 'A4', (pdf_encoding == 'UTF-8'), pdf_encoding)
|
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
|
case pdf_encoding
|
||||||
when 'UTF-8'
|
when 'UTF-8'
|
||||||
@font_for_content = 'FreeSans'
|
@font_for_content = 'FreeSans'
|
||||||
|
@ -68,6 +73,7 @@ module Redmine
|
||||||
@font_for_content = 'Arial'
|
@font_for_content = 'Arial'
|
||||||
@font_for_footer = 'Helvetica'
|
@font_for_footer = 'Helvetica'
|
||||||
end
|
end
|
||||||
|
end
|
||||||
SetCreator(Redmine::Info.app_name)
|
SetCreator(Redmine::Info.app_name)
|
||||||
SetFont(@font_for_content)
|
SetFont(@font_for_content)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue