blob: 2cdae7dd046c3529fbaf83db97549fb0c8ec8731 [file] [log] [blame]
hebasta5df796f2019-05-21 15:27:12 +02001/**
2 * Corpus specific localization, here for DeReKo (http://www1.ids-mannheim.de/kl/projekte/korpora.html)
3 *
4 * @author Helge Stallkamp
5 */
6
Akrone51eaa32020-11-10 09:35:53 +01007"use strict";
8
hebasta94e47cb2019-07-24 22:24:27 +02009define(['vc', 'vc/doc'], function (vcClass, docClass) {
hebasta5df796f2019-05-21 15:27:12 +020010 const loc = KorAP.Locale;
hebasta94e47cb2019-07-24 22:24:27 +020011
12 //Query example for guided tour
13 loc.TOUR_Qexample = "laufen";
14
15 /* To define vc for guided tour */
16 loc.TOUR_vcQuery = {
17 '@type' : 'koral:doc',
18 'key' : 'docSigle',
19 'match': 'match:eq',
Akron1a7f73a2020-02-03 16:22:56 +010020 'value' : 'WPD17/D01',
hebasta94e47cb2019-07-24 22:24:27 +020021 };
22
hebasta7fa6f082019-11-17 19:00:52 +010023 loc.TOUR_Relations = "corenlp/c";
24
hebasta94e47cb2019-07-24 22:24:27 +020025});