:conditions => @query.statement,\r
:limit => Setting.issues_export_limit\r
\r
- ic = Iconv.new('ISO-8859-1', 'UTF-8') \r
+ ic = Iconv.new(l(:general_csv_encoding), 'UTF-8') \r
export = StringIO.new\r
CSV::Writer.generate(export, l(:general_csv_separator)) do |csv|\r
# csv header fields\r
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\r
\r
require 'iconv'\r
+require 'rfpdf/chinese'\r
\r
-module IfpdfHelper\r
-\r
+module IfpdfHelper \r
+ \r
class IFPDF < FPDF\r
-\r
+ include GLoc\r
attr_accessor :footer_date\r
\r
- def initialize\r
- super\r
+ def initialize(lang)\r
+ super()\r
+ set_language_if_valid lang\r
+ case current_language\r
+ when :ja\r
+ extend(PDF_Japanese)\r
+ AddSJISFont()\r
+ @font_for_content = 'SJIS'\r
+ @font_for_footer = 'SJIS'\r
+ else\r
+ @font_for_content = 'Arial'\r
+ @font_for_footer = 'Helvetica' \r
+ end\r
SetCreator("redMine #{Redmine::VERSION}")\r
+ SetFont(@font_for_content)\r
+ end\r
+ \r
+ def SetFontStyle(style, size)\r
+ SetFont(@font_for_content, style, size)\r
end\r
\r
def Cell(w,h=0,txt='',border=0,ln=0,align='',fill=0,link='')\r
- @ic ||= Iconv.new('ISO-8859-1', 'UTF-8')\r
+ @ic ||= Iconv.new(l(:general_pdf_encoding), 'UTF-8')\r
txt = begin\r
@ic.iconv(txt)\r
rescue\r
end\r
\r
def Footer\r
- SetFont('Helvetica', 'I', 8)\r
+ SetFont(@font_for_footer, 'I', 8)\r
SetY(-15)\r
SetX(15)\r
Cell(0, 5, @footer_date, 0, 0, 'L')\r
-<% pdf.SetFont('Arial','B',11) \r
+<% pdf.SetFontStyle('B',11) \r
pdf.Cell(190,10, "#{issue.project.name} - #{issue.tracker.name} # #{issue.long_id} - #{issue.subject}")\r
pdf.Ln\r
\r
y0 = pdf.GetY\r
\r
- pdf.SetFont('Arial','B',9)\r
+ pdf.SetFontStyle('B',9)\r
pdf.Cell(35,5, l(:field_status) + ":","LT")\r
- pdf.SetFont('Arial','',9)\r
+ pdf.SetFontStyle('',9)\r
pdf.Cell(60,5, issue.status.name,"RT")\r
- pdf.SetFont('Arial','B',9)\r
+ pdf.SetFontStyle('B',9)\r
pdf.Cell(35,5, l(:field_priority) + ":","LT")\r
- pdf.SetFont('Arial','',9)\r
+ pdf.SetFontStyle('',9)\r
pdf.Cell(60,5, issue.priority.name,"RT") \r
pdf.Ln\r
\r
- pdf.SetFont('Arial','B',9)\r
+ pdf.SetFontStyle('B',9)\r
pdf.Cell(35,5, l(:field_author) + ":","L")\r
- pdf.SetFont('Arial','',9)\r
+ pdf.SetFontStyle('',9)\r
pdf.Cell(60,5, issue.author.name,"R")\r
- pdf.SetFont('Arial','B',9)\r
+ pdf.SetFontStyle('B',9)\r
pdf.Cell(35,5, l(:field_category) + ":","L")\r
- pdf.SetFont('Arial','',9)\r
+ pdf.SetFontStyle('',9)\r
pdf.Cell(60,5, (issue.category ? issue.category.name : "-"),"R")\r
pdf.Ln \r
\r
- pdf.SetFont('Arial','B',9)\r
+ pdf.SetFontStyle('B',9)\r
pdf.Cell(35,5, l(:field_created_on) + ":","L")\r
- pdf.SetFont('Arial','',9)\r
+ pdf.SetFontStyle('',9)\r
pdf.Cell(60,5, format_date(issue.created_on),"R")\r
- pdf.SetFont('Arial','B',9)\r
+ pdf.SetFontStyle('B',9)\r
pdf.Cell(35,5, l(:field_assigned_to) + ":","L")\r
- pdf.SetFont('Arial','',9)\r
+ pdf.SetFontStyle('',9)\r
pdf.Cell(60,5, (issue.assigned_to ? issue.assigned_to.name : "-"),"R")\r
pdf.Ln\r
\r
- pdf.SetFont('Arial','B',9)\r
+ pdf.SetFontStyle('B',9)\r
pdf.Cell(35,5, l(:field_updated_on) + ":","LB")\r
- pdf.SetFont('Arial','',9)\r
+ pdf.SetFontStyle('',9)\r
pdf.Cell(60,5, format_date(issue.updated_on),"RB")\r
- pdf.SetFont('Arial','B',9)\r
+ pdf.SetFontStyle('B',9)\r
pdf.Cell(35,5, l(:field_due_date) + ":","LB")\r
- pdf.SetFont('Arial','',9)\r
+ pdf.SetFontStyle('',9)\r
pdf.Cell(60,5, format_date(issue.due_date),"RB")\r
pdf.Ln\r
\r
for custom_value in issue.custom_values\r
- pdf.SetFont('Arial','B',9)\r
+ pdf.SetFontStyle('B',9)\r
pdf.Cell(35,5, custom_value.custom_field.name + ":","L")\r
- pdf.SetFont('Arial','',9)\r
+ pdf.SetFontStyle('',9)\r
pdf.MultiCell(155,5, (show_value custom_value),"R")\r
end\r
\r
- pdf.SetFont('Arial','B',9)\r
+ pdf.SetFontStyle('B',9)\r
pdf.Cell(35,5, l(:field_subject) + ":","LTB")\r
- pdf.SetFont('Arial','',9)\r
+ pdf.SetFontStyle('',9)\r
pdf.Cell(155,5, issue.subject,"RTB")\r
pdf.Ln \r
\r
- pdf.SetFont('Arial','B',9)\r
+ pdf.SetFontStyle('B',9)\r
pdf.Cell(35,5, l(:field_description) + ":")\r
- pdf.SetFont('Arial','',9)\r
+ pdf.SetFontStyle('',9)\r
pdf.MultiCell(155,5, issue.description,"BR")\r
\r
pdf.Line(pdf.GetX, y0, pdf.GetX, pdf.GetY)\r
\r
pdf.Ln\r
\r
- pdf.SetFont('Arial','B',9)\r
+ pdf.SetFontStyle('B',9)\r
pdf.Cell(190,5, l(:label_history), "B")\r
pdf.Ln \r
for journal in issue.journals.find(:all, :include => :user, :order => "journals.created_on desc")\r
- pdf.SetFont('Arial','B',8)\r
+ pdf.SetFontStyle('B',8)\r
pdf.Cell(190,5, format_time(journal.created_on) + " - " + journal.user.name)\r
pdf.Ln\r
- pdf.SetFont('Arial','I',8)\r
+ pdf.SetFontStyle('I',8)\r
for detail in journal.details\r
pdf.Cell(190,5, "- " + show_detail(detail, true))\r
pdf.Ln\r
end\r
if journal.notes?\r
- pdf.SetFont('Arial','',8)\r
+ pdf.SetFontStyle('',8)\r
pdf.MultiCell(190,5, journal.notes)\r
end \r
pdf.Ln\r
end\r
\r
- pdf.SetFont('Arial','B',9)\r
+ pdf.SetFontStyle('B',9)\r
pdf.Cell(190,5, l(:label_attachment_plural), "B")\r
pdf.Ln\r
for attachment in issue.attachments\r
- pdf.SetFont('Arial','',8)\r
+ pdf.SetFontStyle('',8)\r
pdf.Cell(80,5, attachment.filename)\r
pdf.Cell(20,5, number_to_human_size(attachment.filesize),0,0,"R")\r
pdf.Cell(20,5, format_date(attachment.created_on),0,0,"R")\r
-<% pdf=IfpdfHelper::IFPDF.new\r
+<% pdf=IfpdfHelper::IFPDF.new(current_language)\r
pdf.SetTitle("#{@project.name} - ##{@issue.tracker.name} #{@issue.id}")\r
pdf.AliasNbPages\r
pdf.footer_date = format_date(Date.today)\r
-<% pdf=IfpdfHelper::IFPDF.new\r
+<% pdf=IfpdfHelper::IFPDF.new(current_language)\r
pdf.SetTitle("#{@project.name} - #{l(:label_issue_plural)}")\r
pdf.AliasNbPages\r
pdf.footer_date = format_date(Date.today)\r
#\r
# title\r
#\r
- pdf.SetFont('Arial','B',11) \r
+ pdf.SetFontStyle('B',11) \r
pdf.Cell(190,10, "#{@project.name} - #{l(:label_issue_plural)}")\r
pdf.Ln\r
\r
#\r
# headers\r
# \r
- pdf.SetFont('Arial','B',10)\r
+ pdf.SetFontStyle('B',10)\r
pdf.SetFillColor(230, 230, 230)\r
pdf.Cell(15, row_height, "#", 0, 0, 'L', 1)\r
pdf.Cell(30, row_height, l(:field_tracker), 0, 0, 'L', 1)\r
#\r
# rows\r
#\r
- pdf.SetFont('Arial','',9)\r
+ pdf.SetFontStyle('',9)\r
pdf.SetFillColor(255, 255, 255)\r
@issues.each do |issue| \r
pdf.Cell(15, row_height, issue.id.to_s, 0, 0, 'L', 1)\r
<%\r
-pdf=IfpdfHelper::IFPDF.new\r
+pdf=IfpdfHelper::IFPDF.new(current_language)\r
pdf.SetTitle("#{@project.name} - #{l(:label_gantt)}")\r
pdf.AliasNbPages\r
pdf.footer_date = format_date(Date.today)\r
pdf.AddPage("L")\r
-pdf.SetFont('Arial','B',12)\r
+pdf.SetFontStyle('B',12)\r
pdf.SetX(15)\r
pdf.Cell(70, 20, @project.name)\r
pdf.Ln\r
-pdf.SetFont('Arial','B',9)\r
+pdf.SetFontStyle('B',9)\r
\r
subject_width = 70\r
header_heigth = 5\r
left = subject_width\r
height = header_heigth\r
wday = @date_from.cwday\r
- pdf.SetFont('Arial','B',7)\r
+ pdf.SetFontStyle('B',7)\r
(@date_to - @date_from + 1).to_i.times do \r
width = zoom\r
pdf.SetY(y_start + 2 * header_heigth)\r
# Tasks\r
#\r
top = headers_heigth + y_start\r
-pdf.SetFont('Arial','B',7)\r
+pdf.SetFontStyle('B',7)\r
@issues.each do |i|\r
pdf.SetY(top)\r
pdf.SetX(15)\r
general_text_yes: 'ja'\r
general_lang_de: 'Deutsch'\r
general_csv_separator: ';'\r
+general_csv_encoding: ISO-8859-1\r
+general_pdf_encoding: ISO-8859-1\r
general_day_names: Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag\r
\r
notice_account_updated: Konto wurde erfolgreich aktualisiert.\r
general_text_yes: 'yes'\r
general_lang_en: 'English'\r
general_csv_separator: ','\r
+general_csv_encoding: ISO-8859-1\r
+general_pdf_encoding: ISO-8859-1\r
general_day_names: Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday\r
\r
notice_account_updated: Account was successfully updated.\r
general_text_yes: 'sí'\r
general_lang_es: 'Español'\r
general_csv_separator: ';'\r
+general_csv_encoding: ISO-8859-1\r
+general_pdf_encoding: ISO-8859-1\r
general_day_names: Lunes,Martes,Miércoles,Jueves,Viernes,Sábado,Domingo\r
\r
notice_account_updated: Account was successfully updated.\r
general_text_yes: 'oui'\r
general_lang_fr: 'Français'\r
general_csv_separator: ';'\r
+general_csv_encoding: ISO-8859-1\r
+general_pdf_encoding: ISO-8859-1\r
general_day_names: Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche\r
\r
notice_account_updated: Le compte a été mis à jour avec succès.\r
general_fmt_age: %d歳\r
general_fmt_age_plural: %d歳\r
general_fmt_date: %%Y年%%m月%%d日\r
-general_fmt_datetime: %%Y年%%月%%d日 %%H:%%M %%p\r
+general_fmt_datetime: %%Y年%%m月%%d日 %%H:%%M %%p\r
general_fmt_datetime_short: %%b %%d, %%H:%%M %%p\r
general_fmt_time: %%H:%%M %%p\r
general_text_No: 'いいえ'\r
general_text_yes: 'はい'\r
general_lang_ja: 'Japanese (日本語)'\r
general_csv_separator: ','\r
+general_csv_encoding: SJIS\r
+general_pdf_encoding: SJIS\r
general_day_names: 日曜日, 月曜日, 火曜日, 水曜日, 木曜日, 金曜日, 土曜日\r
\r
notice_account_updated: アカウントが更新されました。\r
field_is_required: 必須\r
field_firstname: 名前\r
field_lastname: 苗字\r
-field_mail: Email\r
+field_mail: メールアドレス\r
field_filename: ファイル\r
field_filesize: サイズ\r
field_downloads: ダウンロード\r
field_login: ログイン\r
field_mail_notification: メール通知\r
field_admin: 管理者\r
-field_locked: Locked\r
+field_locked: ロック済\r
field_last_login_on: 最終接続日\r
field_language: 言語\r
-field_effective_date: Date\r
+field_effective_date: 日付\r
field_password: パスワード\r
field_new_password: 新しいパスワード\r
field_password_confirmation: パスワードの確認\r
field_version: バージョン\r
-field_type: Type\r
+field_type: タイプ\r
field_host: ホスト\r
field_port: ポート\r
field_account: アカウント\r
field_attr_firstname: 名前属性\r
field_attr_lastname: 苗字属性\r
field_attr_mail: メール属性\r
-field_onthefly: On-the-fly user creation\r
+field_onthefly: あわせてユーザを作成\r
field_start_date: 開始日\r
field_done_ratio: 進捗 %%\r
field_auth_source: 認証モード\r
label_day_plural: 日\r
label_repository: SVNリポジトリ\r
label_browse: ブラウズ\r
-label_modification: %d点の変更\r
-label_modification_plural: %d点の変更\r
+label_modification: %d 点の変更\r
+label_modification_plural: %d 点の変更\r
label_revision: リビジョン\r
label_revision_plural: リビジョン\r
label_added: 追加された\r
label_sort_lower: 下へ\r
label_sort_lowest: 一番下へ\r
label_roadmap: ロードマップ\r
-label_search: Search\r
-label_result: %d result\r
-label_result_plural: %d results\r
+label_search: 検索\r
+label_result: %d 件の結果\r
+label_result_plural: %d 件の結果\r
\r
button_login: ログイン\r
button_submit: 変更\r
button_activate: 有効にする\r
button_sort: ソート\r
\r
-text_select_mail_notifications: どのメール通知を送信するかアクションを選択してください。\r
+text_select_mail_notifications: ã\81©ã\81®ã\83¡ã\83¼ã\83«é\80\9aç\9f¥ã\82\92é\80\81ä¿¡ã\81\99ã\82\8bã\81\8bã\80\81ã\82¢ã\82¯ã\82·ã\83§ã\83³ã\82\92é\81¸æ\8a\9eã\81\97ã\81¦ã\81\8fã\81 ã\81\95ã\81\84ã\80\82\r
text_regexp_info: 例) ^[A-Z0-9]+$\r
text_min_max_length_info: 0だと無制限になります\r
text_project_destroy_confirmation: 本当にこのプロジェクトと関連データを削除したいのですか?\r
-text_workflow_edit: ワークフローを編集するロールとtrackerを選んでください\r
+text_workflow_edit: ワークフローを編集するロールとトラッカーを選んでください\r
text_are_you_sure: 本当に?\r
text_journal_changed: %s から %s への変更\r
text_journal_set_to: %s にセット\r
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
while(i<nb)
#Get next character
c=s[i]
- o=ord(c)
+ o=c #o=ord(c)
if(o==10)
#Explicit line break
Cell(w,h,s[j,i-j],b,2,align,fill)
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)