Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 1 | # Based on Mojolicious::Plugin::Number::Commify |
| 2 | my $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', |
Akron | e5ef4e0 | 2017-04-19 17:07:52 +0200 | [diff] [blame] | 25 | logout => 'Abmelden', |
Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 26 | register => 'Registrieren', |
| 27 | pwdforgotten => 'Password vergessen?', |
Akron | 4823ab5 | 2017-04-27 17:10:12 +0200 | [diff] [blame] | 28 | searchjob => '»<%== $q %>« <% if (param("collection-name")) { %>in »<%== param("collection-name") %>« <% } elsif (param("collection")) { %>im definierten Korpus <% } %>mit <%== loc("QL_" . $ql, "unbekannter Anfragesprache") %>', |
Akron | 656c5d9 | 2015-11-13 21:17:03 +0100 | [diff] [blame] | 29 | searchtitle => 'KorAP: Finde <%== loc("searchjob") %>', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 30 | searchplaceholder => 'Finde ...', |
| 31 | go => 'Los!', |
| 32 | in => 'in', |
| 33 | by => 'von', |
Akron | 189b359 | 2016-01-04 20:56:46 +0100 | [diff] [blame] | 34 | pwd => 'Passwort', |
| 35 | email => 'Email', |
Akron | 2670f5b | 2017-05-31 17:54:07 +0200 | [diff] [blame] | 36 | userormail => 'Benutzername oder Email', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 37 | with => 'mit', |
| 38 | glimpse => { |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 39 | desc => 'Zeige nur die ersten Treffer in beliebiger Reihenfolge' |
| 40 | }, |
Akron | d1741ae | 2017-11-29 09:58:53 +0100 | [diff] [blame] | 41 | activateJS => 'Für den vollen Funktionsumfang aktivieren Sie bitte JavaScript!', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 42 | faq => 'Häufige Fragen', |
| 43 | tutorial => 'Einführung', |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame] | 44 | notAvailInCorpus => 'Im vorliegenden Korpus nicht verfügbar', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 45 | pubOn => 'veröffentlicht am', |
| 46 | matchCount => 'Treffer', |
Akron | 656c5d9 | 2015-11-13 21:17:03 +0100 | [diff] [blame] | 47 | noMatches => 'Es wurden keine Treffer für <%== loc("searchjob") %> gefunden.', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 48 | notFound => '404 - Seite nicht gefunden', |
| 49 | jsFile => 'kalamar-<%= $Kalamar::VERSION %>-de.js', |
| 50 | underConstruction => 'In Vorbereitung!', |
Akron | 2670f5b | 2017-05-31 17:54:07 +0200 | [diff] [blame] | 51 | loginExplanation => 'Anmeldung mit einem registrierten Cosmas-II-Konto', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 52 | korap => { |
| 53 | -short => 'KorAP', |
| 54 | desc => 'KorAP - Korpusanalyseplattform der nächsten Generation', |
| 55 | overview => 'KorAP - Übersicht', |
| 56 | }, |
Akron | e5ef4e0 | 2017-04-19 17:07:52 +0200 | [diff] [blame] | 57 | Auth => { |
| 58 | loginSuccess => 'Anmeldung erfolgreich', |
| 59 | loginFail => 'Anmeldung fehlgeschlagen', |
Akron | bc213c0 | 2017-04-20 16:45:55 +0200 | [diff] [blame] | 60 | logoutSuccess => 'Abmeldung erfolgreich', |
Akron | 15158e0 | 2018-03-19 12:42:46 +0100 | [diff] [blame^] | 61 | logoutFail => 'Abmeldung fehlgeschlagen', |
| 62 | csrfFail => 'Fehlerhafter CSRF Token' |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 63 | }, |
| 64 | Template => { |
Akron | bd39a43 | 2017-09-20 13:57:13 +0200 | [diff] [blame] | 65 | intro => 'de/intro', |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 66 | doc => { |
| 67 | ql => { |
| 68 | 'poliqarp-plus' => 'de/doc/ql/poliqarp-plus' |
Akron | 4856781 | 2017-09-01 16:49:04 +0200 | [diff] [blame] | 69 | }, |
| 70 | api => { |
| 71 | 'koralquery' => 'de/doc/api/koralquery' |
| 72 | }, |
| 73 | data => { |
| 74 | 'annotation' => 'de/doc/data/annotation' |
| 75 | }, |
| 76 | korap => { |
| 77 | 'kalamar' => 'de/doc/korap/kalamar', |
| 78 | 'karang' => 'de/doc/korap/karang', |
| 79 | 'koral' => 'de/doc/korap/koral', |
| 80 | 'krill' => 'de/doc/korap/krill', |
| 81 | 'kustvakt' => 'de/doc/korap/kustvakt' |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 82 | } |
| 83 | } |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 84 | }, |
| 85 | Nav => { |
| 86 | 'ql' => 'Anfragesprachen', |
| 87 | '#segments' => 'Einfache Segmente', |
| 88 | '#complex' => 'Komplexe Segmente', |
Akron | ae24e16 | 2018-02-13 18:48:44 +0100 | [diff] [blame] | 89 | '#spans' => 'Span-Segmente', |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 90 | '#paradigmatic-operators' => 'Paradigmatische Operatoren', |
| 91 | '#syntagmatic-operators' => 'Syntagmatische Operatoren', |
Akron | ae24e16 | 2018-02-13 18:48:44 +0100 | [diff] [blame] | 92 | '#class-operators' => 'Klassen-Operatoren', |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 93 | 'regexp' => 'Reguläre Ausdrücke', |
| 94 | 'data' => 'Daten', |
| 95 | 'corpus' => 'Korpora', |
| 96 | 'annotation' => 'Annotationen', |
| 97 | '#default-foundries' => 'Standard Foundries', |
| 98 | 'faq' => 'Häufig gestellte Fragen' |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 99 | } |
| 100 | }, |
| 101 | -en => { |
Akron | 43a7309 | 2016-02-11 21:52:27 +0100 | [diff] [blame] | 102 | jsFile => 'kalamar-<%= $Kalamar::VERSION %>-en.js', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 103 | numf => sub { |
| 104 | shift; |
| 105 | my %val = @_; |
| 106 | my $num = $val{number} or return 0; |
| 107 | $num =~ s/$THOUSAND_SEP_RE/$1\,/g; |
| 108 | return $num; |
| 109 | }, |
| 110 | about => 'About KorAP', |
| 111 | login => 'Login', |
Akron | a8f56b2 | 2017-09-06 16:01:28 +0200 | [diff] [blame] | 112 | logout => 'Logout', |
Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 113 | register => 'Register', |
| 114 | pwdforgotten => 'Password forgotten?', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 115 | go => 'Go!', |
Akron | 4823ab5 | 2017-04-27 17:10:12 +0200 | [diff] [blame] | 116 | searchjob => '»<%== $q %>« <% if (param("collection-name")) { %>in »<%== param("collection-name") %>« <% } elsif (param("collection")) { %>in the defined corpus <% } %>with <%== loc("QL_". $ql, "unknown query language") %>', |
Akron | 656c5d9 | 2015-11-13 21:17:03 +0100 | [diff] [blame] | 117 | searchtitle => 'KorAP: Find <%== loc("searchjob") %>', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 118 | searchplaceholder => 'Find ...', |
| 119 | in => 'in', |
| 120 | by => 'by', |
Akron | 189b359 | 2016-01-04 20:56:46 +0100 | [diff] [blame] | 121 | pwd => 'Password', |
| 122 | email => 'Email', |
Akron | 2670f5b | 2017-05-31 17:54:07 +0200 | [diff] [blame] | 123 | userormail => 'Username or Email', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 124 | with => 'with', |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame] | 125 | notAvailInCorpus => 'Not available in the current corpus', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 126 | pubOn => 'published on', |
Akron | cf29b22 | 2016-10-12 16:53:32 +0200 | [diff] [blame] | 127 | matchCount => '<%= quant($found, "match", "matches") %>', |
Akron | 656c5d9 | 2015-11-13 21:17:03 +0100 | [diff] [blame] | 128 | noMatches => 'There were no matches found for <%== loc("searchjob") %>.', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 129 | notFound => '404 - Page not found', |
| 130 | glimpse => { |
Akron | a18ee1a | 2017-07-06 16:40:26 +0200 | [diff] [blame] | 131 | -short => 'Glimpse', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 132 | desc => 'Just show the first matches in arbitrary order' |
| 133 | }, |
Akron | d1741ae | 2017-11-29 09:58:53 +0100 | [diff] [blame] | 134 | activateJS => 'To make use of all features, please activate JavaScript!', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 135 | faq => 'F.A.Q.', |
| 136 | underConstruction => 'Under Construction!', |
Akron | 2670f5b | 2017-05-31 17:54:07 +0200 | [diff] [blame] | 137 | loginExplanation => 'Login with a registered Cosmas-II account', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 138 | tutorial => 'Tutorial', |
| 139 | korap => { |
| 140 | -short => 'KorAP', |
| 141 | desc => 'KorAP - Corpus Analysis Platform', |
| 142 | overview => 'KorAP - Overview' |
Akron | 7716f01 | 2015-07-01 20:38:32 +0200 | [diff] [blame] | 143 | }, |
| 144 | QL => { |
| 145 | poliqarp => 'Poliqarp', |
| 146 | cosmas2 => 'Cosmas II', |
| 147 | annis => 'Annis QL', |
Akron | ef351fa | 2017-11-22 19:44:50 +0100 | [diff] [blame] | 148 | cql => 'CQL v1.2', |
| 149 | fcsql => 'FCSQL' |
Akron | e5ef4e0 | 2017-04-19 17:07:52 +0200 | [diff] [blame] | 150 | }, |
| 151 | Auth => { |
| 152 | loginSuccess => 'Login successful', |
| 153 | loginFail => 'Access denied', |
Akron | bc213c0 | 2017-04-20 16:45:55 +0200 | [diff] [blame] | 154 | logoutSuccess => 'Logout successful', |
Akron | 15158e0 | 2018-03-19 12:42:46 +0100 | [diff] [blame^] | 155 | logoutFail => 'Logout failed', |
| 156 | csrfFail => 'Bad CSRF token' |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 157 | }, |
| 158 | Template => { |
Akron | bd39a43 | 2017-09-20 13:57:13 +0200 | [diff] [blame] | 159 | intro => 'intro', |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 160 | doc => { |
| 161 | ql => { |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 162 | 'poliqarp-plus' => 'doc/ql/poliqarp-plus' |
| 163 | }, |
| 164 | api => { |
| 165 | 'koralquery' => 'doc/api/koralquery' |
| 166 | }, |
| 167 | data => { |
| 168 | 'annotation' => 'doc/data/annotation' |
| 169 | }, |
| 170 | korap => { |
| 171 | 'kalamar' => 'doc/korap/kalamar', |
| 172 | 'karang' => 'doc/korap/karang', |
| 173 | 'koral' => 'doc/korap/koral', |
| 174 | 'krill' => 'doc/korap/krill', |
| 175 | 'kustvakt' => 'doc/korap/kustvakt' |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 176 | } |
| 177 | } |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 178 | }, |
| 179 | Nav => { |
| 180 | 'ql' => 'Query Languages', |
| 181 | '#segments' => 'Simple Segments', |
| 182 | '#complex' => 'Complex Segments', |
| 183 | '#spans' => 'Span Segments', |
| 184 | '#paradigmatic-operators' => 'Paradigmatic Operators', |
| 185 | '#syntagmatic-operators' => 'Syntagmatic Operators', |
| 186 | '#class-operators' => 'Class Operators', |
| 187 | 'regexp' => 'Regular Expressions', |
| 188 | 'data' => 'Data', |
| 189 | 'corpus' => 'Corpora', |
| 190 | 'annotation' => 'Annotations', |
| 191 | '#default-foundries' => 'Default Foundries', |
| 192 | 'faq' => 'F.A.Q.' |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 193 | } |
| 194 | } |
| 195 | }; |