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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
$self{texts} = {
'Accounting Menu' => '会计选单',
'Address' => '地址',
'Amount' => '总计',
'April' => '四月',
'August' => '八月',
'Business' => '业务',
'Cannot post transaction!' => '不能加入交易',
'Change' => '更改',
'Continue' => '继续',
'Credit Limit' => '信用额度',
'Currency' => '币别',
'Current' => '现有',
'Customer' => '客户',
'Customer Number' => '客户编号',
'Customer missing!' => '未指明客户',
'December' => '十二月',
'Delete' => '删除',
'Department' => '部门',
'Description' => '说明',
'Exchange Rate' => '汇率',
'Exchange rate missing!' => '未指明汇率',
'Extended' => '巳扩大',
'February' => '二月',
'From' => '从',
'Invoice Date' => '发票日期',
'Invoice Number' => '发票编号',
'January' => '一月',
'July' => '七月',
'June' => '六月',
'Language' => '语言',
'March' => '三月',
'May' => '五月',
'Memo' => '备忘录',
'Month' => '月份',
'November' => '十一月',
'Number' => '编号',
'October' => '十月',
'Open' => '开启',
'Outstanding' => '未付',
'Period' => '时期',
'Post' => '加入',
'Posted!' => '巳加入',
'Price' => '价格',
'Pricegroup' => '价格组',
'Print' => '列印',
'Print and Post' => '列印及过帐',
'Printed' => '巳列印',
'Qty' => '数量',
'Quarter' => '季度',
'Receipts' => '收据',
'Record in' => '记录【◎Fix:◎于;◎於】',
'Remaining' => '尚【◎Fix:◎余;◎馀】',
'Salesperson' => '销售人员',
'Screen' => '萤幕',
'September' => '九月',
'Source' => '来源',
'Subtotal' => '小计',
'Tax Included' => '巳含税金',
'To' => '至',
'Total' => '总计',
'Trade Discount' => '贸易折扣',
'Unit' => '单位',
'Update' => '更新',
'Warehouse' => '仓库',
'Year' => '年份',
};
$self{subs} = {
'acc_menu' => 'acc_menu',
'add' => 'add',
'assign_number' => 'assign_number',
'calendar' => 'calendar',
'change_report' => 'change_report',
'check_all' => 'check_all',
'clock' => 'clock',
'display' => 'display',
'display_row' => 'display_row',
'edit' => 'edit',
'form_footer' => 'form_footer',
'form_header' => 'form_header',
'js_calendar' => 'js_calendar',
'jsmenu' => 'jsmenu',
'jsmenu_frame' => 'jsmenu_frame',
'lookup_partsgroup' => 'lookup_partsgroup',
'main_groups' => 'main_groups',
'menubar' => 'menubar',
'open_drawer' => 'open_drawer',
'openinvoices' => 'openinvoices',
'pickvalue' => 'pickvalue',
'poledisplay' => 'poledisplay',
'post' => 'post',
'preview' => 'preview',
'print' => 'print',
'print_and_post' => 'print_and_post',
'print_form' => 'print_form',
'print_options' => 'print_options',
'receipts' => 'receipts',
'resize' => 'resize',
'section_menu' => 'section_menu',
'继续' => 'continue',
'删除' => 'delete',
'加入' => 'post',
'列印' => 'print',
'列印及过帐' => 'print_and_post',
'更新' => 'update',
};
1;
|