diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-03-31 15:51:44 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-03-31 15:51:44 +0000 |
commit | 2a00565bc4457375ecaf822f67a26434e08d9e93 (patch) | |
tree | ec9d47655edc14a615b5351c439e9da9028ab84f /vendor/plugins/rfpdf | |
parent | 5e0e9518675a5096b8ec1b55159b3ab16cc12f67 (diff) | |
download | redmine-2a00565bc4457375ecaf822f67a26434e08d9e93.tar.gz redmine-2a00565bc4457375ecaf822f67a26434e08d9e93.zip |
Added chinese simplified translation (Andy Wu)
Fixed rfpdf chinese.rb
git-svn-id: http://redmine.rubyforge.org/svn/trunk@393 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'vendor/plugins/rfpdf')
-rw-r--r-- | vendor/plugins/rfpdf/lib/rfpdf/chinese.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/vendor/plugins/rfpdf/lib/rfpdf/chinese.rb b/vendor/plugins/rfpdf/lib/rfpdf/chinese.rb index 731d582a2..6fe3eee8a 100644 --- a/vendor/plugins/rfpdf/lib/rfpdf/chinese.rb +++ b/vendor/plugins/rfpdf/lib/rfpdf/chinese.rb @@ -132,7 +132,7 @@ module PDF_Chinese while(i<nb) c=s[i] if(c<128) - l+=cw[c.chr] + l+=cw[c.chr] if cw[c.chr] i+=1 else l+=1000 @@ -170,13 +170,13 @@ module PDF_Chinese b2='LR' else b2='' - if(border.index('L').nil?) + if(border.to_s.index('L')) b2+='L' end - if(border.index('R').nil?) + if(border.to_s.index('R')) b2+='R' end - b=border.index('T').nil? ? b2+'T' : b2 + b=border.to_s.index('T') ? b2+'T' : b2 end end sep=-1 @@ -209,7 +209,7 @@ module PDF_Chinese sep=i ls=l end - l+=ascii ? cw[c.chr] : 1000 + l+=ascii ? (cw[c.chr] || 0) : 1000 if(l>wmax) #Automatic line break if(sep==-1 or i==j) @@ -233,7 +233,7 @@ module PDF_Chinese end end #Last chunk - if(border and not border.index('B').nil?) + if(border and not border.to_s.index('B').nil?) b+='B' end Cell(w,h,s[j,i-j],b,2,align,fill) |