File: login

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 (30 lines) | stat: -rw-r--r-- 1,213 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
$self{charset} = 'UTF8';

$self{texts} = {
  'Company'                     => 'Фирма',
  'Continue'                    => 'Продължение',
  'Dataset is newer than version!' => 'Базата-данни е нова версия!',
  'Incorrect Dataset version!'  => 'Коригирай версията на базата-данни!',
  'Login'                       => 'Влизане',
  'Name'                        => 'Име',
  'No email address for'        => 'Липсва ел.адрес за',
  'Password'                    => 'Парола',
  'Upgrading to Version'        => 'Обнови версията',
  'Version'                     => 'Версия',
  'You did not enter a name!'   => 'Не сте въвели име!',
};

$self{subs} = {
  'continue'                    => 'continue',
  'email_tan'                   => 'email_tan',
  'login'                       => 'login',
  'login_screen'                => 'login_screen',
  'logout'                      => 'logout',
  'selectdataset'               => 'selectdataset',
  'tan_login'                   => 'tan_login',
  'Продължение'      => 'continue',
  'Влизане'              => 'login',
};

1;