PDF: set enable to use TCPDF UTF-8 on Windows except CJK and Thai (#61).
Contributed by Jun NAITOH. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5291 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
6485f15bb9
commit
7f0a29f7c2
|
@ -179,8 +179,7 @@ module Redmine
|
|||
|
||||
# Returns a PDF string of a list of issues
|
||||
def issues_to_pdf(issues, project, query)
|
||||
if Redmine::Platform.mswin? ||
|
||||
( current_language.to_s.downcase == 'ko' ||
|
||||
if ( current_language.to_s.downcase == 'ko' ||
|
||||
current_language.to_s.downcase == 'ja' ||
|
||||
current_language.to_s.downcase == 'zh' ||
|
||||
current_language.to_s.downcase == 'zh-tw' ||
|
||||
|
@ -259,8 +258,7 @@ module Redmine
|
|||
|
||||
# Returns a PDF string of a single issue
|
||||
def issue_to_pdf(issue)
|
||||
if Redmine::Platform.mswin? ||
|
||||
( current_language.to_s.downcase == 'ko' ||
|
||||
if ( current_language.to_s.downcase == 'ko' ||
|
||||
current_language.to_s.downcase == 'ja' ||
|
||||
current_language.to_s.downcase == 'zh' ||
|
||||
current_language.to_s.downcase == 'zh-tw' ||
|
||||
|
|
|
@ -511,8 +511,7 @@ module Redmine
|
|||
end if Object.const_defined?(:Magick)
|
||||
|
||||
def to_pdf
|
||||
if Redmine::Platform.mswin? ||
|
||||
( current_language.to_s.downcase == 'ko' ||
|
||||
if ( current_language.to_s.downcase == 'ko' ||
|
||||
current_language.to_s.downcase == 'ja' ||
|
||||
current_language.to_s.downcase == 'zh' ||
|
||||
current_language.to_s.downcase == 'zh-tw' ||
|
||||
|
|
Loading…
Reference in New Issue