blob: 8136fe16a0a1eed5b0d4156063ae390c1bde85fc [file] [log] [blame]
Marc Kupietz95104512019-12-05 10:13:05 +01001# Dictionary template generated Wed, 04 Dec 2019 13:37:00 GMT
2# Based on Mojolicious::Plugin::Number::Commify
3my $THOUSAND_SEP_RE = qr/(
4 ^[-+]? # beginning of number.
5 \d+? # first digits before first comma
6 (?= # followed by, (but not included in the match) :
7 (?>(?:\d{3})+) # some positive multiple of three digits.
8 (?!\d) # an *exact* multiple, not x * 3 + 1 or whatever.
9 )| # or:
10 \G\d{3} # after the last group, get three digits
11 (?=\d) # but they have to have more digits after them.
12)/x;
13
14{
15 _ => sub { $_->locale },
16 de => {
17 numf => sub {
18 shift;
19 my %val = @_;
20 my $num = $val{number} or return 0;
21 $num =~ s/$THOUSAND_SEP_RE/$1\./g;
22 return $num;
23 },
24 Cancel => 'Abbrechen',
25 Apply => 'Anwenden',
26 Options => 'Optionen',
27 SEARCH => 'SUCHE',
28 words_to_be_searched => 'Zu suchende Wortform(en)',
29 search_description => 'Wenn sie mehrere Wortformen kontrastieren wollen, trennen Sie diese mit Leerzeichen, um um den Mittelpunkt der Alternativen herum nach ähnlichen Wörtern zu suchen und mit "|", um die Nachbarn zu allen angegebenen Wortformen zur erhalten.',
30 paradigmatic_tsne => 'Paradigmatisch (t-SNE)',
31 paradigmatic_som => 'Paradigmatisch (SOM)',
32 syntagmatic => 'Syntagmatisch',
33 collocate_w2v => "Kollokat (W2V)",
34 collocate_ca => "Kollokat (KA)",
Marc Kupietzd6dfdf02019-12-06 09:53:34 +010035 af_window => "AF-Fenster",
36 info => <<INFOENDD,
37 <p>
38 DeReKoVecs ist das neue gläserne Labor der des Programmbereichs Korpuslinguistik am IDS zur Untersuchung von Maßen und Visualisierungen, die der Erforschung paradigmatischer und syntagmatischer Beziehungen dienen.
39 </p>
40
41INFOENDD
42 about => "Über DeReKoVecs",
43 training_parameters => "Training-Parameter",
44 references => "Literatur",
45 abouttext => "de/about",
46 footer => "de/footer"
Marc Kupietz95104512019-12-05 10:13:05 +010047 },
48 -en => {
49 numf => sub {
50 shift;
51 my %val = @_;
52 my $num = $val{number} or return 0;
53 $num =~ s/$THOUSAND_SEP_RE/$1\,/g;
54 return $num;
55 },
56 Cancel => 'Cancel',
57 Apply => 'Apply',
58 Options => 'Options',
59 SEARCH => 'SEARCH',
60 words_to_be_searched => 'Word(s) to be searched',
61 search_description => 'When looking for multiple words use spaces as separators to search around the average vector and | as separator to get the neighbours for each word.',
62 paradigmatic_tsne => 'Paradigmatic (t-SNE)',
63 paradigmatic_som => 'Paradigmatic (SOM)',
64 syntagmatic => 'Syntagmatic',
65 collocate_w2v => "Collocate (W2V)",
66 collocate_ca => "Collocate (CA)",
Marc Kupietzd6dfdf02019-12-06 09:53:34 +010067 af_window => "AF window",
68 info => <<INFOEND,
69 <p>
70 DeReKoVecs is the new open lab of the IDS Corpus Linguistics Group for investigating measures and visualizations that serve to explore paradigmatic and syntagmatic relations.
71 </p>
72INFOEND
73 about => "About DeReKoVecs",
74 training_parameters => "Training Parameters",
75 references => "Literature",
76 abouttext => "en/about",
77 footer => "en/footer"
Marc Kupietz95104512019-12-05 10:13:05 +010078 }
79};