1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
$self{charset} = 'UTF-8';
$self{texts} = {
'Accounting Menu' => '會計選單',
'Amount' => '金額',
'Are you sure you want to remove the marked entries from the queue?' => '您是否確定要消除有記號的條目?',
'Bin Lists' => '箱的明細表',
'Cannot remove files!' => '不能移除檔案!',
'City' => '城市',
'Closed' => '已關閉',
'Confirm!' => '入帳成功!',
'Continue' => '繼續',
'Copies' => '副本',
'Current' => '現有',
'Customer' => '客戶',
'Customer Number' => '客戶編號',
'Date' => '日期',
'Description' => '說明',
'E-mail' => '電子郵件',
'E-mailed' => '已電郵',
'Employee' => '職員',
'Employee Number' => '職員編號',
'From' => '從',
'ID' => '識別編號',
'Invoice' => '發票',
'Invoice Number' => '發票編號',
'Invoices' => '發票',
'Job Number' => '工作編號',
'Month' => '月',
'Name' => '名稱',
'Nothing selected!' => '沒有選擇任何東西!',
'Number' => '編號',
'Open' => '開啟',
'Order' => '訂單',
'Order Number' => '訂單編號',
'PDF' => 'PDF',
'Packing Lists' => '出貨單',
'Period' => '期間',
'Pick Lists' => '揀貨清單',
'Postscript' => 'Postscript',
'Print' => '列印',
'Printed' => '已列印',
'Printing' => '正列印',
'Project Number' => '項目號碼',
'Purchase Orders' => '採購單',
'Quarter' => '季',
'Quotation' => '報價單',
'Quotation Number' => '報價單號碼',
'Quotations' => '報價單',
'RFQs' => '報價請求',
'Remove' => '移除',
'Removed spoolfiles!' => '移除列印暫存檔案',
'Removing marked entries from queue ...' => '正從隊列中移除有記號的會計項目',
'Sales Orders' => '銷貨單',
'Select all' => '全選',
'Spoolfile' => '列印暫存(spool)檔案',
'To' => '至',
'Total' => '總計',
'Vendor' => '供應商',
'Vendor Number' => '供應商號碼',
'Work Orders' => '工作單',
'Year' => '年',
'Yes' => '是',
};
$self{subs} = {
'acc_menu' => 'acc_menu',
'continue' => 'continue',
'deselect_all' => 'deselect_all',
'display' => 'display',
'e_mail' => 'e_mail',
'js_menu' => 'js_menu',
'list_spool' => 'list_spool',
'menubar' => 'menubar',
'print' => 'print',
'remove' => 'remove',
'search' => 'search',
'section_menu' => 'section_menu',
'select_all' => 'select_all',
'yes' => 'yes',
'繼續' => 'continue',
'電子郵件' => 'e_mail',
'列印' => 'print',
'移除' => 'remove',
'全選' => 'select_all',
'是' => 'yes',
};
1;
|