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
|
$self{texts} = {
'Account' => '帐户',
'Accounting Menu' => '会计选单',
'Apr' => '四月',
'April' => '四月',
'Aug' => '八月',
'August' => '八月',
'Balance' => '余额',
'Beginning Balance' => '起始余额',
'Cleared' => '已清除',
'Continue' => '继续',
'Current' => '现有',
'Date' => '日期',
'Dec' => '十二月',
'December' => '十二月',
'Decrease' => '减少',
'Deposit' => '存款',
'Description' => '说明',
'Detail' => '详情',
'Difference' => '差异',
'Done' => '巳完成',
'Feb' => '二月',
'February' => '二月',
'From' => '从',
'Include Exchange Rate Difference' => '包含外汇差距',
'Increase' => '增加',
'Jan' => '一月',
'January' => '一月',
'Jul' => '七月',
'July' => '七月',
'Jun' => '六月',
'June' => '六月',
'Mar' => '三月',
'March' => '三月',
'May' => '五月',
'May ' => '五月',
'Nov' => '十一月',
'November' => '十一月',
'Oct' => '十月',
'October' => '十月',
'Out of balance!' => '不协调',
'Outstanding' => '未付',
'Payment' => '付款',
'Reconciliation' => '调和',
'Reconciliation Report' => '调和报告',
'Select all' => '全选',
'Sep' => '九月',
'September' => '九月',
'Source' => '来源',
'Statement Balance' => '会计帐余额',
'Summary' => '摘要',
'To' => '至',
'Update' => '更新',
};
$self{subs} = {
'acc_menu' => 'acc_menu',
'continue' => 'continue',
'display' => 'display',
'display_form' => 'display_form',
'done' => 'done',
'get_payments' => 'get_payments',
'menubar' => 'menubar',
'reconciliation' => 'reconciliation',
'section_menu' => 'section_menu',
'select_all' => 'select_all',
'update' => 'update',
'继续' => 'continue',
'巳完成' => 'done',
'全选' => 'select_all',
'更新' => 'update',
};
1;
|