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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
$self{texts} = {
'AP Transaction' => 'Kredit verifikat',
'AR Transaction' => 'Debet verifikat',
'Account' => 'Konto',
'Accounting Menu' => 'Konto-meny',
'Add General Ledger Transaction' => 'Ny post i huvudbok',
'Address' => 'Adress',
'All' => 'Alla',
'Amount' => 'Belopp',
'Apr' => 'apr',
'April' => 'april',
'Are you sure you want to delete Transaction' => 'Är du säker på att du vill radera Transaktionen',
'Asset' => 'Tillgång',
'Aug' => 'aug',
'August' => 'augusti',
'Balance' => 'Balans',
'Cannot delete transaction!' => 'Kan inte radera händelse',
'Cannot post transaction for a closed period!' => 'Kan inte bokföra för en stängd period',
'Cannot post transaction!' => 'Kan inte lägga till händelsen',
'Confirm!' => 'Bekräfta',
'Continue' => 'Fortsätt',
'Credit' => 'Kredit',
'Current' => 'Nuvarande',
'Customer not on file!' => 'Kund finns ej',
'Date' => 'Datum',
'Debit' => 'Debet',
'Dec' => 'dec',
'December' => 'december',
'Delete' => 'Radera',
'Description' => 'Beskrivning',
'Edit General Ledger Transaction' => 'Redigera en post i Huvudboken',
'Equity' => 'Eget kapital',
'Expense' => 'Utgift',
'Feb' => 'Feb',
'February' => 'Februari',
'From' => 'Från',
'GIFI' => 'GIFI',
'GL Transaction' => 'GL händelse',
'General Ledger' => 'Huvudbok',
'ID' => 'ID',
'Include in Report' => 'Inkludera i rapport',
'Jan' => 'Jan',
'January' => 'Januari',
'Jul' => 'Jul',
'July' => 'Juli',
'Jun' => 'Jun',
'June' => 'Juni',
'Liability' => 'Skulder',
'Mar' => 'Mar',
'March' => 'Mars',
'May' => 'Maj',
'May ' => 'Maj',
'Notes' => 'Anmärkningar',
'Nov' => 'Nov',
'November' => 'November',
'Number' => 'Nummer',
'Oct' => 'Okt',
'October' => 'Oktober',
'Post' => 'Lägg till',
'Post as new' => 'Lägg till som ny',
'Project' => 'Projekt',
'Project not on file!' => 'Projekt finns ej',
'Reference' => 'Referens',
'Reference missing!' => 'Referens saknas',
'Reports' => 'Rapporter',
'Select from one of the names below' => 'Välj ett av namnen nedan',
'Select from one of the projects below' => 'Välj ett av projekten nedan',
'Sep' => 'Sep',
'September' => 'September',
'Source' => 'Källa',
'Subtotal' => 'Subtotal',
'To' => 'Till',
'Transaction Date missing!' => 'Transaktionsdatum saknas',
'Transaction deleted!' => 'Transaktion raderad',
'Transaction posted!' => 'Transaktion sparad',
'Update' => 'Uppdatera',
'Vendor not on file!' => 'Leverantör finns ej',
'Yes' => 'Ja',
};
$self{subs} = {
'acc_menu' => 'acc_menu',
'add' => 'add',
'add_transaction' => 'add_transaction',
'ap_transaction' => 'ap_transaction',
'ar_transaction' => 'ar_transaction',
'check_name' => 'check_name',
'check_project' => 'check_project',
'continue' => 'continue',
'delete' => 'delete',
'display' => 'display',
'display_form' => 'display_form',
'display_rows' => 'display_rows',
'edit' => 'edit',
'form_footer' => 'form_footer',
'form_header' => 'form_header',
'generate_report' => 'generate_report',
'gl_subtotal' => 'gl_subtotal',
'gl_transaction' => 'gl_transaction',
'menubar' => 'menubar',
'name_selected' => 'name_selected',
'post' => 'post',
'post_adjustment' => 'post_adjustment',
'post_as_new' => 'post_as_new',
'project_selected' => 'project_selected',
'sales_invoice_' => 'sales_invoice_',
'search' => 'search',
'section_menu' => 'section_menu',
'select_name' => 'select_name',
'select_project' => 'select_project',
'update' => 'update',
'vendor_invoice_' => 'vendor_invoice_',
'yes' => 'yes',
'kredit_verifikat' => 'ap_transaction',
'debet_verifikat' => 'ar_transaction',
'fortsätt' => 'continue',
'radera' => 'delete',
'gl_händelse' => 'gl_transaction',
'lägg_till' => 'post',
'lägg_till_som_ny' => 'post_as_new',
'sales_invoice_' => 'sales_invoice_',
'uppdatera' => 'update',
'vendor_invoice_' => 'vendor_invoice_',
'ja' => 'yes',
};
1;
|