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 | }, |
Akron | 459bf58 | 2023-11-03 10:17:11 +0100 | [diff] [blame] | 23 | numo => sub { |
| 24 | shift; |
| 25 | my %val = @_; |
| 26 | my $day = $val{day} or return ''; |
| 27 | return $day . '.'; |
| 28 | }, |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 29 | about => 'Über KorAP', |
| 30 | login => 'Anmelden', |
Akron | e5ef4e0 | 2017-04-19 17:07:52 +0200 | [diff] [blame] | 31 | logout => 'Abmelden', |
Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 32 | register => 'Registrieren', |
| 33 | pwdforgotten => 'Password vergessen?', |
Akron | 1f0521b | 2018-08-28 13:01:24 +0200 | [diff] [blame] | 34 | # TODO: use document.write() refering to vc.getName()! |
| 35 | searchjob => '»<%== $q %>« <% if (param("collection")) { %>im definierten Korpus <% } %>mit <%== loc("QL_" . $ql, "unbekannter Anfragesprache") %>', |
Akron | c417749 | 2023-11-29 08:35:37 +0100 | [diff] [blame] | 36 | searchtitle => '<%= loc("en_korap_label") %>: Finde <%== loc("searchjob") %>', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 37 | searchplaceholder => 'Finde ...', |
| 38 | go => 'Los!', |
Akron | 9dda34e | 2020-07-06 11:38:27 +0200 | [diff] [blame] | 39 | news => 'Neuigkeiten & Ankündigungen', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 40 | in => 'in', |
| 41 | by => 'von', |
Akron | 189b359 | 2016-01-04 20:56:46 +0100 | [diff] [blame] | 42 | pwd => 'Passwort', |
| 43 | email => 'Email', |
Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 44 | username => 'Benutzername', |
Akron | 9f2ad34 | 2022-05-04 16:16:40 +0200 | [diff] [blame] | 45 | upload => 'Hochladen', |
Akron | 9fa7cc5 | 2022-05-12 11:17:20 +0200 | [diff] [blame] | 46 | userormail => 'Benutzername oder Email', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 47 | with => 'mit', |
| 48 | glimpse => { |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 49 | desc => 'Zeige nur die ersten Treffer in beliebiger Reihenfolge' |
| 50 | }, |
Akron | d1741ae | 2017-11-29 09:58:53 +0100 | [diff] [blame] | 51 | activateJS => 'Für den vollen Funktionsumfang aktivieren Sie bitte JavaScript!', |
Marc Kupietz | b82939b | 2021-09-07 22:45:38 +0200 | [diff] [blame] | 52 | faq => 'FAQ', |
Helge | 2e434be | 2023-02-01 16:47:16 +0100 | [diff] [blame] | 53 | tutorial => 'Hilfe und Dokumentation', |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame] | 54 | notAvailInCorpus => 'Im vorliegenden Korpus nicht verfügbar', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 55 | pubOn => 'veröffentlicht am', |
| 56 | matchCount => 'Treffer', |
Akron | 656c5d9 | 2015-11-13 21:17:03 +0100 | [diff] [blame] | 57 | noMatches => 'Es wurden keine Treffer für <%== loc("searchjob") %> gefunden.', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 58 | notFound => '404 - Seite nicht gefunden', |
Akron | 3c390c4 | 2020-03-30 09:06:21 +0200 | [diff] [blame] | 59 | notIssued => 'Die Aktion konnte nicht durchgeführt werden.', |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 60 | backendNotAvailable => 'Das Backend ist nicht verfügbar unter <code><%= app->korap->api =></code>!', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 61 | jsFile => 'kalamar-<%= $Kalamar::VERSION %>-de.js', |
| 62 | underConstruction => 'In Vorbereitung!', |
| 63 | korap => { |
| 64 | -short => 'KorAP', |
Akron | c417749 | 2023-11-29 08:35:37 +0100 | [diff] [blame] | 65 | desc => '<%= loc "en_korap_label" %> - Korpusanalyseplattform der nächsten Generation', |
| 66 | overview => '<%= loc "en_korap_label" %> - Übersicht', |
Akron | a2d92de | 2019-02-27 15:51:07 +0100 | [diff] [blame] | 67 | keywords => 'KorAP, DeReKo, Korpussuche, IDS Mannheim, Leibniz-Institut für Deutsche Sprache', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 68 | }, |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 69 | privacy => 'Datenschutz', |
| 70 | imprint => 'Impressum', |
Akron | f7ec444 | 2019-10-27 20:01:05 +0100 | [diff] [blame] | 71 | settings => 'Einstellungen', |
Akron | 459bf58 | 2023-11-03 10:17:11 +0100 | [diff] [blame] | 72 | 'oclock' => 'Uhr', |
| 73 | maintenanceWork => { |
| 74 | time => 'Wartungsfenster', |
| 75 | desc => 'Aufgrund von Wartungsarbeiten wird es zu Unterbrechungen des Dienstes kommen.', |
| 76 | }, |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 77 | Template => { |
Akron | bd39a43 | 2017-09-20 13:57:13 +0200 | [diff] [blame] | 78 | intro => 'de/intro', |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 79 | doc => { |
| 80 | ql => { |
Akron | b9ca92b | 2024-03-14 10:20:18 +0100 | [diff] [blame] | 81 | '.' => 'de/doc/ql', |
Helge | b4c098c | 2022-10-04 16:26:38 +0200 | [diff] [blame] | 82 | 'poliqarp-plus' => 'de/doc/ql/poliqarp-plus', |
| 83 | 'cosmas-2' => 'de/doc/ql/cosmas-2' |
Akron | 4856781 | 2017-09-01 16:49:04 +0200 | [diff] [blame] | 84 | }, |
| 85 | api => { |
| 86 | 'koralquery' => 'de/doc/api/koralquery' |
| 87 | }, |
| 88 | data => { |
| 89 | 'annotation' => 'de/doc/data/annotation' |
| 90 | }, |
Marc Kupietz | fcadda6 | 2021-09-08 09:06:25 +0200 | [diff] [blame] | 91 | development => { |
| 92 | 'kalamar' => 'de/doc/development/kalamar', |
| 93 | 'karang' => 'de/doc/development/karang', |
| 94 | 'koral' => 'de/doc/development/koral', |
| 95 | 'krill' => 'de/doc/development/krill', |
| 96 | 'kustvakt' => 'de/doc/development/kustvakt' |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 97 | } |
| 98 | } |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 99 | }, |
| 100 | Nav => { |
| 101 | 'ql' => 'Anfragesprachen', |
Helge | b4c098c | 2022-10-04 16:26:38 +0200 | [diff] [blame] | 102 | '#queryterms' => 'Suchbegriffe', |
| 103 | '#logical-operators' => 'Logische Operatoren', |
| 104 | '#distance-operators' => 'Abstandsoperatoren', |
| 105 | '#annotation-operators' => 'Annotationsoperatoren', |
| 106 | '#combination-operators'=> 'Kombinationsoperatoren', |
| 107 | '#area-operators' => 'Textbereich-Operatoren', |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 108 | '#segments' => 'Einfache Segmente', |
| 109 | '#complex' => 'Komplexe Segmente', |
Akron | ae24e16 | 2018-02-13 18:48:44 +0100 | [diff] [blame] | 110 | '#spans' => 'Span-Segmente', |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 111 | '#paradigmatic-operators' => 'Paradigmatische Operatoren', |
| 112 | '#syntagmatic-operators' => 'Syntagmatische Operatoren', |
Akron | ae24e16 | 2018-02-13 18:48:44 +0100 | [diff] [blame] | 113 | '#class-operators' => 'Klassen-Operatoren', |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 114 | 'regexp' => 'Reguläre Ausdrücke', |
Marc Kupietz | 4689e79 | 2021-09-07 23:29:51 +0200 | [diff] [blame] | 115 | 'data' => 'Korpusdaten', |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 116 | 'corpus' => 'Korpora', |
| 117 | 'annotation' => 'Annotationen', |
| 118 | '#default-foundries' => 'Standard Foundries', |
Marc Kupietz | fcadda6 | 2021-09-08 09:06:25 +0200 | [diff] [blame] | 119 | 'development' => 'Entwicklung', |
Akron | 459bf58 | 2023-11-03 10:17:11 +0100 | [diff] [blame] | 120 | 'faq' => 'FAQ', |
Akron | 397552c | 2023-09-18 12:13:33 +0200 | [diff] [blame] | 121 | }, |
| 122 | QL => { |
| 123 | cqp => 'CQP (neu)' |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 124 | } |
| 125 | }, |
| 126 | -en => { |
Akron | 43a7309 | 2016-02-11 21:52:27 +0100 | [diff] [blame] | 127 | jsFile => 'kalamar-<%= $Kalamar::VERSION %>-en.js', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 128 | numf => sub { |
| 129 | shift; |
| 130 | my %val = @_; |
| 131 | my $num = $val{number} or return 0; |
| 132 | $num =~ s/$THOUSAND_SEP_RE/$1\,/g; |
| 133 | return $num; |
| 134 | }, |
Akron | 459bf58 | 2023-11-03 10:17:11 +0100 | [diff] [blame] | 135 | numo => sub { |
| 136 | shift; |
| 137 | my %val = @_; |
| 138 | my $day = $val{day} or return ''; |
| 139 | if ($day > 3) { |
| 140 | return $day . 'th'; |
| 141 | } elsif ($day == 3) { |
| 142 | return '3rd'; |
| 143 | } elsif ($day == 2) { |
| 144 | return '2nd'; |
| 145 | }; |
| 146 | return '1st'; |
| 147 | }, |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 148 | about => 'About KorAP', |
| 149 | login => 'Login', |
Akron | a8f56b2 | 2017-09-06 16:01:28 +0200 | [diff] [blame] | 150 | logout => 'Logout', |
Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 151 | register => 'Register', |
| 152 | pwdforgotten => 'Password forgotten?', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 153 | go => 'Go!', |
Akron | 9dda34e | 2020-07-06 11:38:27 +0200 | [diff] [blame] | 154 | news => 'News & Announcements', |
Akron | 1f0521b | 2018-08-28 13:01:24 +0200 | [diff] [blame] | 155 | # TODO: use document.write() refering to vc.getName()! |
| 156 | searchjob => '»<%== $q %>« <% if (param("collection")) { %>in the defined corpus <% } %>with <%== loc("QL_". $ql, "unknown query language") %>', |
Akron | c417749 | 2023-11-29 08:35:37 +0100 | [diff] [blame] | 157 | searchtitle => '<%= loc("korap_label") %>: Find <%== loc("searchjob") %>', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 158 | searchplaceholder => 'Find ...', |
| 159 | in => 'in', |
| 160 | by => 'by', |
Akron | 189b359 | 2016-01-04 20:56:46 +0100 | [diff] [blame] | 161 | pwd => 'Password', |
| 162 | email => 'Email', |
Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 163 | username => 'Username', |
Akron | 9f2ad34 | 2022-05-04 16:16:40 +0200 | [diff] [blame] | 164 | upload => 'Upload', |
Akron | 9fa7cc5 | 2022-05-12 11:17:20 +0200 | [diff] [blame] | 165 | userormail => 'Username or Email', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 166 | with => 'with', |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame] | 167 | notAvailInCorpus => 'Not available in the current corpus', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 168 | pubOn => 'published on', |
Akron | cf29b22 | 2016-10-12 16:53:32 +0200 | [diff] [blame] | 169 | matchCount => '<%= quant($found, "match", "matches") %>', |
Akron | 656c5d9 | 2015-11-13 21:17:03 +0100 | [diff] [blame] | 170 | noMatches => 'There were no matches found for <%== loc("searchjob") %>.', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 171 | notFound => '404 - Page not found', |
Akron | 3c390c4 | 2020-03-30 09:06:21 +0200 | [diff] [blame] | 172 | notIssued => 'Unable to perform the action.', |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 173 | backendNotAvailable => 'The backend is not available at <code><%= app->korap->api %></code>!', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 174 | glimpse => { |
Akron | a18ee1a | 2017-07-06 16:40:26 +0200 | [diff] [blame] | 175 | -short => 'Glimpse', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 176 | desc => 'Just show the first matches in arbitrary order' |
| 177 | }, |
Akron | d1741ae | 2017-11-29 09:58:53 +0100 | [diff] [blame] | 178 | activateJS => 'To make use of all features, please activate JavaScript!', |
Marc Kupietz | b82939b | 2021-09-07 22:45:38 +0200 | [diff] [blame] | 179 | faq => 'FAQ', |
Akron | 459bf58 | 2023-11-03 10:17:11 +0100 | [diff] [blame] | 180 | 'oclock' => 'o\'clock', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 181 | underConstruction => 'Under Construction!', |
Helge | 2e434be | 2023-02-01 16:47:16 +0100 | [diff] [blame] | 182 | tutorial => 'Help and Documentation', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 183 | korap => { |
| 184 | -short => 'KorAP', |
Akron | c417749 | 2023-11-29 08:35:37 +0100 | [diff] [blame] | 185 | label => '<%= loc "korap_short" %><% if (loc("title_addon")) { %>-<%= loc("title_addon") %><% } %>', |
| 186 | desc => '<%= loc "korap_label" %> - Corpus Analysis Platform', |
| 187 | overview => '<%= loc "korap_label" %> - Overview', |
Akron | a17bc5b | 2018-10-05 13:35:01 +0200 | [diff] [blame] | 188 | region => 'DE-BW', |
| 189 | placename => 'Mannheim', |
Akron | a2d92de | 2019-02-27 15:51:07 +0100 | [diff] [blame] | 190 | keywords => 'KorAP, DeReKo, Corpus Query Platform, IDS Mannheim, Leibniz Institute for the German Language' |
Akron | 7716f01 | 2015-07-01 20:38:32 +0200 | [diff] [blame] | 191 | }, |
| 192 | QL => { |
| 193 | poliqarp => 'Poliqarp', |
| 194 | cosmas2 => 'Cosmas II', |
| 195 | annis => 'Annis QL', |
Akron | 397552c | 2023-09-18 12:13:33 +0200 | [diff] [blame] | 196 | cqp => 'CQP (new)', |
Akron | ef351fa | 2017-11-22 19:44:50 +0100 | [diff] [blame] | 197 | cql => 'CQL v1.2', |
| 198 | fcsql => 'FCSQL' |
Akron | e5ef4e0 | 2017-04-19 17:07:52 +0200 | [diff] [blame] | 199 | }, |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 200 | privacy => 'Privacy', |
| 201 | imprint => 'Imprint', |
Akron | f7ec444 | 2019-10-27 20:01:05 +0100 | [diff] [blame] | 202 | settings => 'Settings', |
Akron | 459bf58 | 2023-11-03 10:17:11 +0100 | [diff] [blame] | 203 | maintenanceWork => { |
| 204 | time => 'Maintenance', |
| 205 | desc => 'Due to maintenance work the service will be interrupted.', |
| 206 | }, |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 207 | Template => { |
Akron | bd39a43 | 2017-09-20 13:57:13 +0200 | [diff] [blame] | 208 | intro => 'intro', |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 209 | doc => { |
| 210 | ql => { |
Akron | b9ca92b | 2024-03-14 10:20:18 +0100 | [diff] [blame] | 211 | '.' => 'doc/ql', |
Helge | b4c098c | 2022-10-04 16:26:38 +0200 | [diff] [blame] | 212 | 'poliqarp-plus' => 'doc/ql/poliqarp-plus', |
| 213 | 'cosmas-2' => 'doc/ql/cosmas-2' |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 214 | }, |
| 215 | api => { |
| 216 | 'koralquery' => 'doc/api/koralquery' |
| 217 | }, |
| 218 | data => { |
| 219 | 'annotation' => 'doc/data/annotation' |
| 220 | }, |
Akron | dd5ab89 | 2021-09-08 12:46:08 +0200 | [diff] [blame] | 221 | development => { |
Marc Kupietz | fcadda6 | 2021-09-08 09:06:25 +0200 | [diff] [blame] | 222 | 'kalamar' => 'doc/development/kalamar', |
| 223 | 'karang' => 'doc/development/karang', |
| 224 | 'koral' => 'doc/development/koral', |
| 225 | 'krill' => 'doc/development/krill', |
| 226 | 'kustvakt' => 'doc/development/kustvakt' |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 227 | } |
| 228 | } |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 229 | }, |
| 230 | Nav => { |
| 231 | 'ql' => 'Query Languages', |
Helge | b4c098c | 2022-10-04 16:26:38 +0200 | [diff] [blame] | 232 | '#queryterms' => 'Query Terms', |
| 233 | '#logical-operators' => 'Logical Operators', |
| 234 | '#distance-operators' => 'Distance Operators', |
| 235 | '#annotation-operators' => 'Annotation Operators', |
| 236 | '#combination-operators'=> 'Combination Operators', |
| 237 | '#area-operators' => 'Area Operators', |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 238 | '#segments' => 'Simple Segments', |
| 239 | '#complex' => 'Complex Segments', |
| 240 | '#spans' => 'Span Segments', |
| 241 | '#paradigmatic-operators' => 'Paradigmatic Operators', |
| 242 | '#syntagmatic-operators' => 'Syntagmatic Operators', |
| 243 | '#class-operators' => 'Class Operators', |
| 244 | 'regexp' => 'Regular Expressions', |
Marc Kupietz | 4689e79 | 2021-09-07 23:29:51 +0200 | [diff] [blame] | 245 | 'data' => 'Corpus Data', |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 246 | 'corpus' => 'Corpora', |
| 247 | 'annotation' => 'Annotations', |
| 248 | '#default-foundries' => 'Default Foundries', |
Marc Kupietz | fcadda6 | 2021-09-08 09:06:25 +0200 | [diff] [blame] | 249 | 'development' => 'Development', |
Marc Kupietz | b82939b | 2021-09-07 22:45:38 +0200 | [diff] [blame] | 250 | 'faq' => 'FAQ' |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 251 | } |
Akron | 4c33c62 | 2018-11-12 13:43:27 +0100 | [diff] [blame] | 252 | }, |
| 253 | Piwik => { |
| 254 | en => { |
| 255 | 'HowToOptOut' => 'How to opt-out from Piwik/Matomo tracking?' |
| 256 | }, |
| 257 | de => { |
| 258 | 'HowToOptOut' => 'Wie kann ich die Weitergabe meiner Daten per Matomo/Piwik unterbinden?' |
| 259 | } |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 260 | } |
| 261 | }; |