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
|
$self{texts} = {
'Account' => 'Рахунок',
'Accounting Menu' => 'Меню Обл╕ку',
'Confirm!' => 'П╕дтверд╕ть!',
'Continue' => 'Продовжити',
'Current' => 'Поточний',
'Customer' => 'Кл╕╓нт',
'Date' => 'Дата',
'From' => 'В╕д/З',
'Invoice' => 'Рахунок-фактура',
'Invoice Number' => 'Номер рахунка-фактури',
'Order' => 'Замовлення',
'Order Number' => 'Номер Замовлення',
'Print' => 'Надрукувати',
'Purchase Orders' => 'Куп╕вельн╕ Замовлення',
'Receipts' => 'Квитанц╕╖',
'Reference' => 'Зсилка',
'Sales Orders' => 'Продажн╕ Накладн╕',
'Select all' => 'Вибрати все',
'To' => 'До',
'Vendor' => 'Постачальник',
'Yes' => 'Tak',
};
$self{subs} = {
'acc_menu' => 'acc_menu',
'continue' => 'continue',
'display' => 'display',
'list_spool' => 'list_spool',
'menubar' => 'menubar',
'print' => 'print',
'remove' => 'remove',
'search' => 'search',
'section_menu' => 'section_menu',
'select_all' => 'select_all',
'yes' => 'yes',
'Продовжити' => 'continue',
'Надрукувати' => 'print',
'remove' => 'remove',
'Вибрати_все' => 'select_all',
'tak' => 'yes',
};
1;
|