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
|
$self{texts} = {
'Account' => 'Konto',
'Balance' => 'Bilanz',
'Cleared Balance' => 'Abgeschlossen',
'Continue' => 'Weiter',
'Date' => 'Datum',
'Deposit' => 'Gutschrift',
'Description' => 'Beschreibung',
'Difference' => 'Differenz',
'Done' => 'Fertig',
'Exchangerate Difference' => 'Wechselkursunterschied',
'From' => 'Von',
'Out of balance!' => 'Summen stimmen nicht überein!',
'Payment' => 'Zahlung',
'Reconciliation' => 'Abgleichung',
'Select all' => 'Alle auswählen',
'Source' => 'Beleg',
'Statement Balance' => 'Sammelrechnungsbilanz',
'Update' => 'Erneuern',
'to' => 'bis',
};
$self{subs} = {
'continue' => 'continue',
'display_form' => 'display_form',
'done' => 'done',
'get_payments' => 'get_payments',
'reconciliation' => 'reconciliation',
'select_all' => 'select_all',
'update' => 'update',
'weiter' => 'continue',
'fertig' => 'done',
'alle_auswählen' => 'select_all',
'erneuern' => 'update',
};
1;
|