blob: 87b99d4e0388559b77dcf6f83cdd1fd1db42f0ad [file] [log] [blame]
hebasta5df796f2019-05-21 15:27:12 +02001/**
Helge2be5af02024-02-27 15:49:24 +01002 * Corpus specific localization, here for DeReKo (http://www.ids-mannheim.de/kl/projekte/korpora.html)
hebasta5df796f2019-05-21 15:27:12 +02003 *
4 * @author Helge Stallkamp
5 */
6
Akrone51eaa32020-11-10 09:35:53 +01007"use strict";
8
Akronbf6527f2023-01-27 10:00:02 +01009define(function () {
hebasta5df796f2019-05-21 15:27:12 +020010 const loc = KorAP.Locale;
Marc Kupietzbe90c942024-10-01 17:25:30 +020011
hebasta94e47cb2019-07-24 22:24:27 +020012 //Query example for guided tour
Akron56f9d102023-01-27 16:52:24 +010013 if (loc.TOUR_Qexample == undefined)
14 loc.TOUR_Qexample = "laufen";
hebasta94e47cb2019-07-24 22:24:27 +020015
16 /* To define vc for guided tour */
Akron56f9d102023-01-27 16:52:24 +010017 if (loc.TOUR_vcQuery == undefined)
18 loc.TOUR_vcQuery = {
hebasta94e47cb2019-07-24 22:24:27 +020019 '@type' : 'koral:doc',
Marc Kupietzbe90c942024-10-01 17:25:30 +020020 'key' : 'pubDate',
hebasta94e47cb2019-07-24 22:24:27 +020021 'match': 'match:eq',
Marc Kupietzbe90c942024-10-01 17:25:30 +020022 'value' : '2018',
hebasta94e47cb2019-07-24 22:24:27 +020023 };
Marc Kupietzbe90c942024-10-01 17:25:30 +020024
Akron56f9d102023-01-27 16:52:24 +010025 if (loc.TOUR_Relations == undefined)
Marc Kupietz1c20a312024-10-01 18:21:40 +020026 loc.TOUR_Relations = "malt/d";
hebasta7fa6f082019-11-17 19:00:52 +010027
Marc Kupietzbe90c942024-10-01 17:25:30 +020028 if (loc.TOUR_pubDate == undefined)
29 loc.TOUR_pubDate = "2018";
hebasta94e47cb2019-07-24 22:24:27 +020030});