File: ca

package info (click to toggle)
sql-ledger 3.2.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 33,080 kB
  • sloc: perl: 73,172; sql: 36,530; sh: 34; makefile: 21
file content (63 lines) | stat: -rw-r--r-- 2,523 bytes parent folder | download | duplicates (5)
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
$self{charset} = 'UTF-8';

$self{texts} = {
  'AR/AP'                       => '売掛/買掛',
  'Account'                     => '勘定',
  'Apr'                         => '4月',
  'April'                       => '4月',
  'Aug'                         => '8月',
  'August'                      => '8月',
  'Balance'                     => '差額',
  'Chart of Accounts'           => '勘定表',
  'Credit'                      => '貸方',
  'Current'                     => '現在',
  'Date'                        => '日付',
  'Debit'                       => '借方',
  'Dec'                         => '12月',
  'December'                    => '12月',
  'Department'                  => '部門',
  'Description'                 => 'テキスト',
  'Feb'                         => '2月',
  'February'                    => '2月',
  'From'                        => 'から',
  'GIFI'                        => 'GIFI',
  'Include in Report'           => 'レポートに入れる',
  'Jan'                         => '1月',
  'January'                     => '1月',
  'Jul'                         => '7月',
  'July'                        => '7月',
  'Jun'                         => '6月',
  'June'                        => '6月',
  'List Transactions'           => 'トランザクション一覧',
  'Mar'                         => '3月',
  'March'                       => '3月',
  'May'                         => '5月',
  'May '                        => '5月',
  'Month'                       => '月',
  'Nov'                         => '11月',
  'November'                    => '11月',
  'Oct'                         => '10月',
  'October'                     => '10月',
  'Period'                      => '期間',
  'Project Number'              => 'プロジェクト番号',
  'Quarter'                     => '四半期',
  'R'                           => 'R',
  'Reference'                   => '参照',
  'Sep'                         => '9月',
  'September'                   => '9月',
  'Source'                      => '支払元',
  'Subtotal'                    => '小計',
  'To'                          => 'まで',
  'Year'                        => '年',
};

$self{subs} = {
  'ca_subtotal'                 => 'ca_subtotal',
  'chart_of_accounts'           => 'chart_of_accounts',
  'list'                        => 'list',
  'list_transactions'           => 'list_transactions',
  'トランザクション一覧' => 'list_transactions',
};

1;