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
|
$self{texts} = {
'AP' => 'Kreditoru parādi',
'AR' => 'Debitoru parādi',
'Account' => 'Konts',
'Accounting Menu' => 'Kontēšanas izvēlne',
'Address' => 'Adrese',
'All' => 'Visi',
'Amount' => 'Summa',
'Amount Due' => 'Nesamaksātā summa',
'Cannot post Payment!' => 'Maksājumu nevar iegrāmatot!',
'Cannot post Receipt!' => 'Kvīti nevar iegrāmatot!',
'Cannot process payment for a closed period!' => 'Nevar apstrādāt maksājumu par slēgtu periodu!',
'Continue' => 'Turpināt',
'Currency' => 'Valūta',
'Customer' => 'Klients',
'Customer not on file!' => 'Nav tāda klienta!',
'Date' => 'Datums',
'Date missing!' => 'Nav norādīts datums!',
'Department' => 'Nodaļa',
'Deposit' => 'Depozīts',
'Description' => 'Apraksts',
'Exchange Rate' => 'Valūtas maiņas kurss',
'Exchange rate missing!' => 'Nav norādīts valūtas maiņas kurss!',
'Invoice' => 'Rēķins',
'Invoices' => 'Rēķini',
'Memo' => 'Memorands',
'Nothing outstanding for ' => 'Nav nesamaksāto rēķinu par ',
'Number' => 'Numurs',
'PDF' => 'PDF',
'Payment' => 'Maksājums',
'Payment posted!' => 'Maksājums iegrāmatots!',
'Post' => 'Iegrāmatot',
'Postscript' => 'Postscript',
'Prepayment' => 'Avansa maksājums',
'Print' => 'Drukāt',
'Project not on file!' => 'Nav tāda projekta!',
'Queue' => 'Rinda',
'Receipt' => 'Kvīts',
'Receipt posted!' => 'Kvītis iegrāmatotas',
'Screen' => 'Ekrāns',
'Select' => 'Atlasīt',
'Select from one of the names below' => 'Atlasīt vienu no sekojošiem nosaukumiem',
'Select from one of the projects below' => 'Atlasīt vienu no sekojošiem projektiem',
'Source' => 'Dokuments',
'Update' => 'Atjaunināt',
'Vendor' => 'Pārdevējs',
'Vendor not on file!' => 'Nav tāda pārdevēja!',
};
$self{subs} = {
'acc_menu' => 'acc_menu',
'add_transaction' => 'add_transaction',
'ap_transaction' => 'ap_transaction',
'ar_transaction' => 'ar_transaction',
'check_form' => 'check_form',
'check_name' => 'check_name',
'check_project' => 'check_project',
'continue' => 'continue',
'customer_details' => 'customer_details',
'display' => 'display',
'form_footer' => 'form_footer',
'form_header' => 'form_header',
'gl_transaction' => 'gl_transaction',
'list_invoices' => 'list_invoices',
'menubar' => 'menubar',
'name_selected' => 'name_selected',
'payment' => 'payment',
'post' => 'post',
'print' => 'print',
'project_selected' => 'project_selected',
'sales_invoice_' => 'sales_invoice_',
'section_menu' => 'section_menu',
'select_name' => 'select_name',
'select_project' => 'select_project',
'update' => 'update',
'vendor_details' => 'vendor_details',
'vendor_invoice_' => 'vendor_invoice_',
'turpināt' => 'continue',
'iegrāmatot' => 'post',
'drukāt' => 'print',
'atjaunināt' => 'update',
};
1;
|