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
|
$self{charset} = 'UTF-8';
$self{texts} = {
'Account' => '勘定',
'Accounting Menu' => '経理メニュー',
'Apr' => '4月',
'April' => '4月',
'Aug' => '8月',
'August' => '8月',
'Balance' => '差額',
'Beginning Balance' => '開始貸借対照表',
'Continue' => '続ける',
'Credit' => '貸方',
'Current' => '現在',
'Date' => '日付',
'Debit' => '借方',
'Dec' => '12月',
'December' => '12月',
'Description' => 'テキスト',
'Deselect all' => '全部未選択する',
'Detail' => '詳細',
'Difference' => '差異',
'Done' => '処理済',
'Feb' => '2月',
'February' => '2月',
'From' => 'から',
'Include Exchange Rate Difference' => '為替差異込み',
'Jan' => '1月',
'January' => '1月',
'Jul' => '7月',
'July' => '7月',
'Jun' => '6月',
'June' => '6月',
'Mar' => '3月',
'March' => '3月',
'May' => '5月',
'May ' => '5月',
'Month' => '月',
'Nov' => '11月',
'November' => '11月',
'Oct' => '10月',
'October' => '10月',
'Out of balance!' => '勘定の不均衡',
'Period' => '期間',
'Quarter' => '四半期',
'Reconciliation' => '調整',
'Reconciliation Date' => '調整日付',
'Reconciliation Report' => '調整レポート',
'Select all' => '全選択',
'Sep' => '9月',
'September' => '9月',
'Source' => '支払元',
'Statement Balance' => '申告釣合',
'Summary' => '合計',
'To' => 'まで',
'Update' => '更新',
'Year' => '年',
};
$self{subs} = {
'acc_menu' => 'acc_menu',
'continue' => 'continue',
'deselect_all' => 'deselect_all',
'display' => 'display',
'display_form' => 'display_form',
'done' => 'done',
'get_payments' => 'get_payments',
'js_menu' => 'js_menu',
'menubar' => 'menubar',
'reconciliation' => 'reconciliation',
'section_menu' => 'section_menu',
'select_all' => 'select_all',
'update' => 'update',
'続ける' => 'continue',
'全部未選択する' => 'deselect_all',
'処理済' => 'done',
'全選択' => 'select_all',
'更新' => 'update',
};
1;
|