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 (70 lines) | stat: -rw-r--r-- 3,223 bytes parent folder | download
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
$self{texts} = {
  'Account'                     => 'Konto',
  'Amount'                      => 'Belopp',
  'CSV'                         => 'Komma separerad lista',
  'City'                        => 'Stad',
  'Company'                     => 'Företag',
  'Company Name'                => 'Företags namn',
  'Company Number'              => 'Företagsnr',
  'Continue'                    => 'Fortsätt',
  'Curr'                        => 'Valuta',
  'Currency'                    => 'Valuta',
  'Customer'                    => 'Kund',
  'Customer Number'             => 'Kund nr',
  'DCN'                         => 'Momsredovisningsnr',
  'Date Paid'                   => 'Betalningsdatum',
  'Delimiter'                   => 'Avgränsare',
  'Description'                 => 'Beskrivning',
  'Due Date'                    => 'Förfallodatum',
  'Exch'                        => 'Vxl',
  'Export Payments'             => 'Exportera betalningar',
  'File to Import'              => 'Fil att importera',
  'Filename'                    => 'Filnamn',
  'Import File missing!'        => 'Importerad fil saknas',
  'Import Payments'             => 'Importera betalningar',
  'Import Sales Invoices'       => 'Importera försäljningsorder',
  'Include Header'              => 'Inkludera överskrift',
  'Include in Report'           => 'Inkludera i rapport',
  'Invoice'                     => 'Faktura',
  'Invoice Date'                => 'Fakturadatum',
  'Invoice Number'              => 'Fakturanummer',
  'Mapfile'                     => 'Kopplingsfil',
  'Memo'                        => 'Anteckning',
  'No'                          => 'Inga',
  'Paid'                        => 'Betalt',
  'Payment Method'              => 'Betalningsmetod',
  'Posting Invoice ...'         => 'Bokför faktura...',
  'Posting Payment ...'         => 'Bokför betalning...',
  'Posting failed!'             => 'Bokföring misslyckats!',
  'Qty'                         => 'Antal',
  'Salesperson'                 => 'Försäljare',
  'Source'                      => 'Källa',
  'Tab delimited file'          => 'Tab-avgränsad fil',
  'The following parts could not be found:' => 'Följande delar kunde ej hittas:',
  'Total'                       => 'Total',
  'Total:'                      => 'Totalt',
  'Type of File'                => 'Typ av fil',
  'Unit'                        => 'Enhet',
  'Yes'                         => 'Ja',
  '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',
  'fortsätt'                    => 'continue',
  'exportera_betalningar'       => 'export_payments',
  'importera_betalningar'       => 'import_payments',
  'importera_försäljningsorder' => 'import_sales_invoices',
};

1;