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 | 1f0521b | 2018-08-28 13:01:24 +0200 | [diff] [blame] | 28 | # TODO: use document.write() refering to vc.getName()! |
| 29 | searchjob => '»<%== $q %>« <% if (param("collection")) { %>im definierten Korpus <% } %>mit <%== loc("QL_" . $ql, "unbekannter Anfragesprache") %>', |
Akron | 656c5d9 | 2015-11-13 21:17:03 +0100 | [diff] [blame] | 30 | searchtitle => 'KorAP: Finde <%== loc("searchjob") %>', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 31 | searchplaceholder => 'Finde ...', |
| 32 | go => 'Los!', |
Akron | 9dda34e | 2020-07-06 11:38:27 +0200 | [diff] [blame] | 33 | news => 'Neuigkeiten & Ankündigungen', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 34 | in => 'in', |
| 35 | by => 'von', |
Akron | 189b359 | 2016-01-04 20:56:46 +0100 | [diff] [blame] | 36 | pwd => 'Passwort', |
| 37 | email => 'Email', |
Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 38 | username => 'Benutzername', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 39 | with => 'mit', |
| 40 | glimpse => { |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 41 | desc => 'Zeige nur die ersten Treffer in beliebiger Reihenfolge' |
| 42 | }, |
Akron | d1741ae | 2017-11-29 09:58:53 +0100 | [diff] [blame] | 43 | activateJS => 'Für den vollen Funktionsumfang aktivieren Sie bitte JavaScript!', |
Marc Kupietz | b82939b | 2021-09-07 22:45:38 +0200 | [diff] [blame] | 44 | faq => 'FAQ', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 45 | tutorial => 'Einführung', |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame] | 46 | notAvailInCorpus => 'Im vorliegenden Korpus nicht verfügbar', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 47 | pubOn => 'veröffentlicht am', |
| 48 | matchCount => 'Treffer', |
Akron | 656c5d9 | 2015-11-13 21:17:03 +0100 | [diff] [blame] | 49 | noMatches => 'Es wurden keine Treffer für <%== loc("searchjob") %> gefunden.', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 50 | notFound => '404 - Seite nicht gefunden', |
Akron | 3c390c4 | 2020-03-30 09:06:21 +0200 | [diff] [blame] | 51 | notIssued => 'Die Aktion konnte nicht durchgeführt werden.', |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 52 | backendNotAvailable => 'Das Backend ist nicht verfügbar unter <code><%= app->korap->api =></code>!', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 53 | jsFile => 'kalamar-<%= $Kalamar::VERSION %>-de.js', |
| 54 | underConstruction => 'In Vorbereitung!', |
| 55 | korap => { |
| 56 | -short => 'KorAP', |
| 57 | desc => 'KorAP - Korpusanalyseplattform der nächsten Generation', |
| 58 | overview => 'KorAP - Übersicht', |
Akron | a2d92de | 2019-02-27 15:51:07 +0100 | [diff] [blame] | 59 | keywords => 'KorAP, DeReKo, Korpussuche, IDS Mannheim, Leibniz-Institut für Deutsche Sprache', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 60 | }, |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 61 | privacy => 'Datenschutz', |
| 62 | imprint => 'Impressum', |
Akron | f7ec444 | 2019-10-27 20:01:05 +0100 | [diff] [blame] | 63 | settings => 'Einstellungen', |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 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 | }, |
Marc Kupietz | fcadda6 | 2021-09-08 09:06:25 +0200 | [diff] [blame] | 76 | development => { |
| 77 | 'kalamar' => 'de/doc/development/kalamar', |
| 78 | 'karang' => 'de/doc/development/karang', |
| 79 | 'koral' => 'de/doc/development/koral', |
| 80 | 'krill' => 'de/doc/development/krill', |
| 81 | 'kustvakt' => 'de/doc/development/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', |
Marc Kupietz | 4689e79 | 2021-09-07 23:29:51 +0200 | [diff] [blame] | 94 | 'data' => 'Korpusdaten', |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 95 | 'corpus' => 'Korpora', |
| 96 | 'annotation' => 'Annotationen', |
| 97 | '#default-foundries' => 'Standard Foundries', |
Marc Kupietz | fcadda6 | 2021-09-08 09:06:25 +0200 | [diff] [blame] | 98 | 'development' => 'Entwicklung', |
Marc Kupietz | b82939b | 2021-09-07 22:45:38 +0200 | [diff] [blame] | 99 | 'faq' => 'FAQ' |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 100 | } |
| 101 | }, |
| 102 | -en => { |
Akron | 43a7309 | 2016-02-11 21:52:27 +0100 | [diff] [blame] | 103 | jsFile => 'kalamar-<%= $Kalamar::VERSION %>-en.js', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 104 | numf => sub { |
| 105 | shift; |
| 106 | my %val = @_; |
| 107 | my $num = $val{number} or return 0; |
| 108 | $num =~ s/$THOUSAND_SEP_RE/$1\,/g; |
| 109 | return $num; |
| 110 | }, |
| 111 | about => 'About KorAP', |
| 112 | login => 'Login', |
Akron | a8f56b2 | 2017-09-06 16:01:28 +0200 | [diff] [blame] | 113 | logout => 'Logout', |
Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 114 | register => 'Register', |
| 115 | pwdforgotten => 'Password forgotten?', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 116 | go => 'Go!', |
Akron | 9dda34e | 2020-07-06 11:38:27 +0200 | [diff] [blame] | 117 | news => 'News & Announcements', |
Akron | 1f0521b | 2018-08-28 13:01:24 +0200 | [diff] [blame] | 118 | # TODO: use document.write() refering to vc.getName()! |
| 119 | searchjob => '»<%== $q %>« <% if (param("collection")) { %>in the defined corpus <% } %>with <%== loc("QL_". $ql, "unknown query language") %>', |
Akron | 656c5d9 | 2015-11-13 21:17:03 +0100 | [diff] [blame] | 120 | searchtitle => 'KorAP: Find <%== loc("searchjob") %>', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 121 | searchplaceholder => 'Find ...', |
| 122 | in => 'in', |
| 123 | by => 'by', |
Akron | 189b359 | 2016-01-04 20:56:46 +0100 | [diff] [blame] | 124 | pwd => 'Password', |
| 125 | email => 'Email', |
Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 126 | username => 'Username', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 127 | with => 'with', |
Akron | f4a7cf4 | 2018-01-09 15:58:45 +0100 | [diff] [blame] | 128 | notAvailInCorpus => 'Not available in the current corpus', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 129 | pubOn => 'published on', |
Akron | cf29b22 | 2016-10-12 16:53:32 +0200 | [diff] [blame] | 130 | matchCount => '<%= quant($found, "match", "matches") %>', |
Akron | 656c5d9 | 2015-11-13 21:17:03 +0100 | [diff] [blame] | 131 | noMatches => 'There were no matches found for <%== loc("searchjob") %>.', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 132 | notFound => '404 - Page not found', |
Akron | 3c390c4 | 2020-03-30 09:06:21 +0200 | [diff] [blame] | 133 | notIssued => 'Unable to perform the action.', |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 134 | backendNotAvailable => 'The backend is not available at <code><%= app->korap->api %></code>!', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 135 | glimpse => { |
Akron | a18ee1a | 2017-07-06 16:40:26 +0200 | [diff] [blame] | 136 | -short => 'Glimpse', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 137 | desc => 'Just show the first matches in arbitrary order' |
| 138 | }, |
Akron | d1741ae | 2017-11-29 09:58:53 +0100 | [diff] [blame] | 139 | activateJS => 'To make use of all features, please activate JavaScript!', |
Marc Kupietz | b82939b | 2021-09-07 22:45:38 +0200 | [diff] [blame] | 140 | faq => 'FAQ', |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 141 | underConstruction => 'Under Construction!', |
| 142 | tutorial => 'Tutorial', |
| 143 | korap => { |
| 144 | -short => 'KorAP', |
| 145 | desc => 'KorAP - Corpus Analysis Platform', |
Akron | a17bc5b | 2018-10-05 13:35:01 +0200 | [diff] [blame] | 146 | overview => 'KorAP - Overview', |
| 147 | region => 'DE-BW', |
| 148 | placename => 'Mannheim', |
Akron | a2d92de | 2019-02-27 15:51:07 +0100 | [diff] [blame] | 149 | 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] | 150 | }, |
| 151 | QL => { |
| 152 | poliqarp => 'Poliqarp', |
| 153 | cosmas2 => 'Cosmas II', |
| 154 | annis => 'Annis QL', |
Akron | ef351fa | 2017-11-22 19:44:50 +0100 | [diff] [blame] | 155 | cql => 'CQL v1.2', |
| 156 | fcsql => 'FCSQL' |
Akron | e5ef4e0 | 2017-04-19 17:07:52 +0200 | [diff] [blame] | 157 | }, |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 158 | privacy => 'Privacy', |
| 159 | imprint => 'Imprint', |
Akron | f7ec444 | 2019-10-27 20:01:05 +0100 | [diff] [blame] | 160 | settings => 'Settings', |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 161 | Template => { |
Akron | bd39a43 | 2017-09-20 13:57:13 +0200 | [diff] [blame] | 162 | intro => 'intro', |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 163 | doc => { |
| 164 | ql => { |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 165 | 'poliqarp-plus' => 'doc/ql/poliqarp-plus' |
| 166 | }, |
| 167 | api => { |
| 168 | 'koralquery' => 'doc/api/koralquery' |
| 169 | }, |
| 170 | data => { |
| 171 | 'annotation' => 'doc/data/annotation' |
| 172 | }, |
Akron | dd5ab89 | 2021-09-08 12:46:08 +0200 | [diff] [blame] | 173 | development => { |
Marc Kupietz | fcadda6 | 2021-09-08 09:06:25 +0200 | [diff] [blame] | 174 | 'kalamar' => 'doc/development/kalamar', |
| 175 | 'karang' => 'doc/development/karang', |
| 176 | 'koral' => 'doc/development/koral', |
| 177 | 'krill' => 'doc/development/krill', |
| 178 | 'kustvakt' => 'doc/development/kustvakt' |
Akron | ccd71a4 | 2017-06-30 18:09:19 +0200 | [diff] [blame] | 179 | } |
| 180 | } |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 181 | }, |
| 182 | Nav => { |
| 183 | 'ql' => 'Query Languages', |
| 184 | '#segments' => 'Simple Segments', |
| 185 | '#complex' => 'Complex Segments', |
| 186 | '#spans' => 'Span Segments', |
| 187 | '#paradigmatic-operators' => 'Paradigmatic Operators', |
| 188 | '#syntagmatic-operators' => 'Syntagmatic Operators', |
| 189 | '#class-operators' => 'Class Operators', |
| 190 | 'regexp' => 'Regular Expressions', |
Marc Kupietz | 4689e79 | 2021-09-07 23:29:51 +0200 | [diff] [blame] | 191 | 'data' => 'Corpus Data', |
Akron | 0dc1090 | 2017-09-01 18:00:16 +0200 | [diff] [blame] | 192 | 'corpus' => 'Corpora', |
| 193 | 'annotation' => 'Annotations', |
| 194 | '#default-foundries' => 'Default Foundries', |
Marc Kupietz | fcadda6 | 2021-09-08 09:06:25 +0200 | [diff] [blame] | 195 | 'development' => 'Development', |
Marc Kupietz | b82939b | 2021-09-07 22:45:38 +0200 | [diff] [blame] | 196 | 'faq' => 'FAQ' |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 197 | } |
Akron | 4c33c62 | 2018-11-12 13:43:27 +0100 | [diff] [blame] | 198 | }, |
| 199 | Piwik => { |
| 200 | en => { |
| 201 | 'HowToOptOut' => 'How to opt-out from Piwik/Matomo tracking?' |
| 202 | }, |
| 203 | de => { |
| 204 | 'HowToOptOut' => 'Wie kann ich die Weitergabe meiner Daten per Matomo/Piwik unterbinden?' |
| 205 | } |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 206 | } |
| 207 | }; |