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
|
$self{texts} = {
'AP' => 'Kohustused',
'Above' => 'Ülal',
'Accounting Menu' => 'Raamatupidamise Menüü',
'Add Deduction' => 'Lisa mahaarvamine',
'Add Employee' => 'Lisa töötaja',
'Address' => 'Aadress',
'Administrator' => 'Administraator',
'After Deduction' => 'Peale mahaarvamist',
'All' => 'Kõik',
'Amount' => 'Summa',
'Amount missing!' => 'Summa puudub!',
'BIC' => 'BIC (Rahvusvaheline pangakood - S.W.I.F.T)',
'Before Deduction' => 'Enne mahaarvamisi',
'Below' => 'All',
'City' => 'Linn',
'Continue' => 'Edasi',
'Country' => 'Riik',
'Delete' => 'Kustuta',
'Description' => 'Selgitus',
'Description missing!' => 'Selgitus puudub!',
'E-mail' => 'E-mail',
'Edit Deduction' => 'Muuda Mahaarvamine',
'Edit Employee' => 'Muuda Töötaja andmed',
'Employee' => 'Töötaja',
'Employee Name' => 'Töötaja nimi',
'Employee deleted!' => 'Töötaja kustutatud',
'Employee pays' => 'Töötaja tasub',
'Employee saved!' => 'Töötaja salvestatud',
'Employees' => 'Töötajad',
'Employer' => 'Tööandja',
'Employer pays' => 'Tööandja tasub',
'Enddate' => 'Lõppkuupäev',
'Expense' => 'Kulu',
'Home Phone' => 'Kodune telefoninumber',
'IBAN' => 'IBAN - Rahvusvaheline Pangakonto Number',
'ID' => 'ID',
'Include in Report' => 'Kaasa aruandesse',
'Login' => 'Login',
'Maximum' => 'Maksimum',
'Name' => 'Nimi',
'Name missing!' => 'Nimi puudub!',
'Notes' => 'Märkused',
'Number' => 'Kood',
'Orphaned' => 'Seosteta',
'Payroll Deduction' => 'Palgamahaarvamine',
'Rate' => 'Määr',
'Rate missing!' => 'Määr puudub!',
'SSN' => 'IK',
'Sales' => 'Müük',
'Save' => 'Salvesta',
'Save as new' => 'Salvesta uuena',
'Startdate' => 'Algus Kuupäev',
'State/Province' => 'Maakond',
'Update' => 'Uuendus',
'User' => 'Kasutaja',
'Work Phone' => 'Töötelefon',
};
$self{subs} = {
'acc_menu' => 'acc_menu',
'add' => 'add',
'add_deduction' => 'add_deduction',
'add_employee' => 'add_employee',
'continue' => 'continue',
'deduction_footer' => 'deduction_footer',
'deduction_header' => 'deduction_header',
'deduction_links' => 'deduction_links',
'delete' => 'delete',
'delete_deduction' => 'delete_deduction',
'delete_employee' => 'delete_employee',
'display' => 'display',
'edit' => 'edit',
'employee_footer' => 'employee_footer',
'employee_header' => 'employee_header',
'employee_links' => 'employee_links',
'list_employees' => 'list_employees',
'menubar' => 'menubar',
'save' => 'save',
'save_as_new' => 'save_as_new',
'save_deduction' => 'save_deduction',
'save_employee' => 'save_employee',
'search' => 'search',
'search_deduction' => 'search_deduction',
'search_employee' => 'search_employee',
'section_menu' => 'section_menu',
'update' => 'update',
'update_deduction' => 'update_deduction',
'update_employee' => 'update_employee',
'lisa_mahaarvamine' => 'add_deduction',
'lisa_töötaja' => 'add_employee',
'edasi' => 'continue',
'kustuta' => 'delete',
'salvesta' => 'save',
'salvesta_uuena' => 'save_as_new',
'uuendus' => 'update',
};
1;
|