blob: 5dba5e02c498dbcb406e7c5ab8fa2dfc6adbff55 [file] [log] [blame]
Akroncddd1642015-06-10 21:31:53 +02001# Based on Mojolicious::Plugin::Number::Commify
2my $THOUSAND_SEP_RE = qr/(
3 ^[-+]? # beginning of number.
4 \d+? # first digits before first comma
5 (?= # followed by, (but not included in the match) :
6 (?>(?:\d{3})+) # some positive multiple of three digits.
7 (?!\d) # an *exact* multiple, not x * 3 + 1 or whatever.
8 )| # or:
9 \G\d{3} # after the last group, get three digits
10 (?=\d) # but they have to have more digits after them.
11)/x;
12
13{
14 _ => sub { $_->locale },
15 de => {
16 numf => sub {
17 shift;
18 my %val = @_;
19 my $num = $val{number} or return 0;
20 $num =~ s/$THOUSAND_SEP_RE/$1\./g;
21 return $num;
22 },
23 about => 'Über KorAP',
24 login => 'Anmelden',
Akrone5ef4e02017-04-19 17:07:52 +020025 logout => 'Abmelden',
Akrone8235be2016-06-27 11:02:18 +020026 register => 'Registrieren',
27 pwdforgotten => 'Password vergessen?',
Akron4823ab52017-04-27 17:10:12 +020028 searchjob => '»<%== $q %>« <% if (param("collection-name")) { %>in »<%== param("collection-name") %>« <% } elsif (param("collection")) { %>im definierten Korpus <% } %>mit <%== loc("QL_" . $ql, "unbekannter Anfragesprache") %>',
Akron656c5d92015-11-13 21:17:03 +010029 searchtitle => 'KorAP: Finde <%== loc("searchjob") %>',
Akroncddd1642015-06-10 21:31:53 +020030 searchplaceholder => 'Finde ...',
31 go => 'Los!',
32 in => 'in',
33 by => 'von',
Akron189b3592016-01-04 20:56:46 +010034 pwd => 'Passwort',
35 email => 'Email',
Akroncddd1642015-06-10 21:31:53 +020036 with => 'mit',
37 glimpse => {
38 -short => 'Stichprobe',
39 desc => 'Zeige nur die ersten Treffer in beliebiger Reihenfolge'
40 },
41 faq => 'Häufige Fragen',
42 tutorial => 'Einführung',
43 pubOn => 'veröffentlicht am',
44 matchCount => 'Treffer',
Akron656c5d92015-11-13 21:17:03 +010045 noMatches => 'Es wurden keine Treffer für <%== loc("searchjob") %> gefunden.',
Akroncddd1642015-06-10 21:31:53 +020046 notFound => '404 - Seite nicht gefunden',
47 jsFile => 'kalamar-<%= $Kalamar::VERSION %>-de.js',
48 underConstruction => 'In Vorbereitung!',
49 korap => {
50 -short => 'KorAP',
51 desc => 'KorAP - Korpusanalyseplattform der nächsten Generation',
52 overview => 'KorAP - Übersicht',
53 },
54 template => {
55 intro => 'de/intro'
Akrone5ef4e02017-04-19 17:07:52 +020056 },
57 Auth => {
58 loginSuccess => 'Anmeldung erfolgreich',
59 loginFail => 'Anmeldung fehlgeschlagen',
Akronbc213c02017-04-20 16:45:55 +020060 logoutSuccess => 'Abmeldung erfolgreich',
61 logoutFail => 'Abmeldung fehlgeschlagen'
Akroncddd1642015-06-10 21:31:53 +020062 }
63 },
64 -en => {
Akron43a73092016-02-11 21:52:27 +010065 jsFile => 'kalamar-<%= $Kalamar::VERSION %>-en.js',
Akroncddd1642015-06-10 21:31:53 +020066 numf => sub {
67 shift;
68 my %val = @_;
69 my $num = $val{number} or return 0;
70 $num =~ s/$THOUSAND_SEP_RE/$1\,/g;
71 return $num;
72 },
73 about => 'About KorAP',
74 login => 'Login',
Akrone5ef4e02017-04-19 17:07:52 +020075 logout => 'Abmelden',
Akrone8235be2016-06-27 11:02:18 +020076 register => 'Register',
77 pwdforgotten => 'Password forgotten?',
Akroncddd1642015-06-10 21:31:53 +020078 go => 'Go!',
Akron4823ab52017-04-27 17:10:12 +020079 searchjob => '»<%== $q %>« <% if (param("collection-name")) { %>in »<%== param("collection-name") %>« <% } elsif (param("collection")) { %>in the defined corpus <% } %>with <%== loc("QL_". $ql, "unknown query language") %>',
Akron656c5d92015-11-13 21:17:03 +010080 searchtitle => 'KorAP: Find <%== loc("searchjob") %>',
Akroncddd1642015-06-10 21:31:53 +020081 searchplaceholder => 'Find ...',
82 in => 'in',
83 by => 'by',
Akron189b3592016-01-04 20:56:46 +010084 pwd => 'Password',
85 email => 'Email',
Akroncddd1642015-06-10 21:31:53 +020086 with => 'with',
87 pubOn => 'published on',
Akroncf29b222016-10-12 16:53:32 +020088 matchCount => '<%= quant($found, "match", "matches") %>',
Akron656c5d92015-11-13 21:17:03 +010089 noMatches => 'There were no matches found for <%== loc("searchjob") %>.',
Akroncddd1642015-06-10 21:31:53 +020090 notFound => '404 - Page not found',
91 glimpse => {
92 -short => 'Sample',
93 desc => 'Just show the first matches in arbitrary order'
94 },
95 faq => 'F.A.Q.',
96 underConstruction => 'Under Construction!',
97 tutorial => 'Tutorial',
98 korap => {
99 -short => 'KorAP',
100 desc => 'KorAP - Corpus Analysis Platform',
101 overview => 'KorAP - Overview'
Akron7716f012015-07-01 20:38:32 +0200102 },
103 QL => {
104 poliqarp => 'Poliqarp',
105 cosmas2 => 'Cosmas II',
106 annis => 'Annis QL',
107 cql => 'CQL v1.2'
Akrone5ef4e02017-04-19 17:07:52 +0200108 },
109 Auth => {
110 loginSuccess => 'Login successful',
111 loginFail => 'Access denied',
Akronbc213c02017-04-20 16:45:55 +0200112 logoutSuccess => 'Logout successful',
113 logoutFail => 'Logout failed'
Akroncddd1642015-06-10 21:31:53 +0200114 }
115 }
116};