File: im

package info (click to toggle)
sql-ledger 3.2.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 33,080 kB
  • sloc: perl: 73,172; sql: 36,530; sh: 34; makefile: 21
file content (72 lines) | stat: -rw-r--r-- 3,323 bytes parent folder | download | duplicates (4)
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
$self{charset} = 'UTF-8';

$self{texts} = {
  'Account'                     => 'Účet',
  'Amount'                      => 'Čiastka',
  'CSV'                         => 'CSV',
  'City'                        => 'Mesto',
  'Company'                     => 'Firma',
  'Company Name'                => 'Názov firmy',
  'Company Number'              => 'Číslo firmy',
  'Continue'                    => 'Pokračovanie',
  'Curr'                        => 'Mena',
  'Currency'                    => 'Typ meny',
  'Customer'                    => 'Kupujúci',
  'Customer Number'             => 'Číslo odberateľa',
  'DCN'                         => 'DCN',
  'Date Paid'                   => 'Dátum platby',
  'Delimiter'                   => 'Oddelovač',
  'Description'                 => 'Popis',
  'Due Date'                    => 'Dátum splatnosti',
  'Exch'                        => 'Kurz',
  'Export Payments'             => 'Export platieb',
  'File to Import'              => 'Súbor pre import',
  'Filename'                    => 'Meno súboru',
  'Import File missing!'        => 'Chýba import súbor !',
  'Import Payments'             => 'Import platieb',
  'Import Sales Invoices'       => 'Import odberatelských faktúr',
  'Include Header'              => 'S hlavičkou',
  'Include in Report'           => 'Zahrnúť do prehľadu',
  'Invoice'                     => 'Faktúra',
  'Invoice Date'                => 'Dátum faktúry',
  'Invoice Number'              => 'Číslo faktúry',
  'Mapfile'                     => 'Mapsúbor',
  'Memo'                        => 'Memo',
  'No'                          => 'Nie',
  'Paid'                        => 'Zaplatené',
  'Payment Method'              => 'Metoda platby',
  'Posting Invoice ...'         => 'Uloženie faktúr ...',
  'Posting Payment ...'         => 'Uloženie platby',
  'Posting failed!'             => 'Uloženie neúspešné!',
  'Qty'                         => 'Množstvo',
  'Salesperson'                 => 'Predávajúca osoba',
  'Source'                      => 'Doklad',
  'Tab delimited file'          => 'Súbor s oddelovačom Tab',
  'The following parts could not be found:' => 'Nasledujúce položky neboli nájdené:',
  'Total'                       => 'Celkom',
  'Total:'                      => 'Celkom:',
  'Type of File'                => 'Typ súboru',
  'Unit'                        => 'Jednotka',
  'Yes'                         => 'Ano',
  'ok'                          => 'ok',
};

$self{subs} = {
  'continue'                    => 'continue',
  'ex_payment'                  => 'ex_payment',
  'export'                      => 'export',
  'export_payments'             => 'export_payments',
  'im_payment'                  => 'im_payment',
  'im_sales_invoice'            => 'im_sales_invoice',
  'import'                      => 'import',
  'import_payments'             => 'import_payments',
  'import_sales_invoices'       => 'import_sales_invoices',
  'xrefhdr'                     => 'xrefhdr',
  'pokračovanie'               => 'continue',
  'export_platieb'              => 'export_payments',
  'import_platieb'              => 'import_payments',
  'import_odberatelských_faktúr' => 'import_sales_invoices',
};

1;