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
|
$self{texts} = {
'Account' => '帐户',
'Add POS Invoice' => '新增POS发票',
'Cannot post transaction!' => '不能加入交易',
'Change' => '更改',
'Continue' => '继续',
'Credit Limit' => '信用额度',
'Currency' => '币别',
'Current' => '现有',
'Customer' => '客户',
'Customer missing!' => '未指明客户',
'Delete' => '删除',
'Department' => '部门',
'Description' => '说明',
'Edit POS Invoice' => '编辑POS',
'Exchange Rate' => '汇率',
'Exchange rate missing!' => '未指明汇率',
'Extended' => '巳扩大',
'From' => '从',
'Language' => '语言',
'Memo' => '备忘录',
'Number' => '编号',
'Open' => '开启',
'Paid' => '已付',
'Post' => '加入',
'Posted!' => '巳加入',
'Price' => '价格',
'Print' => '列印',
'Printed' => '巳列印',
'Qty' => '数量',
'Receipts' => '收据',
'Record in' => '记录【◎Fix:◎于;◎於】',
'Remaining' => '尚【◎Fix:◎余;◎馀】',
'Salesperson' => '销售人员',
'Screen' => '萤幕',
'Source' => '来源',
'Subtotal' => '小计',
'To' => '至',
'Total' => '总计',
'Unit' => '单位',
'Update' => '更新',
};
$self{subs} = {
'add' => 'add',
'display_row' => 'display_row',
'edit' => 'edit',
'form_footer' => 'form_footer',
'form_header' => 'form_header',
'lookup_partsgroup' => 'lookup_partsgroup',
'openinvoices' => 'openinvoices',
'post' => 'post',
'print' => 'print',
'print_form' => 'print_form',
'print_options' => 'print_options',
'receipts' => 'receipts',
'继续' => 'continue',
'删除' => 'delete',
'加入' => 'post',
'列印' => 'print',
'更新' => 'update',
};
1;
|