utterance
stringlengths 10
893
| template_name
stringclasses 191
values | template
stringlengths 74
1.45k
|
---|---|---|
discover the lemma form of cargolades in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'cargolades'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize estimas into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'estimas'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for corrigeront in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'corrigeront'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of achetant in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'achetant'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for ਲੈਂਦੋਂ in Punjabi
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Punjabi'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ਲੈਂਦੋਂ'@pa } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for remplacées in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'remplacées'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize conçue in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'conçue'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for پِیندی in Punjabi
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Punjabi'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'پِیندی'@pnb } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of abrogerait in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'abrogerait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of engendrerait in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'engendrerait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize Franciszek in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Franciszek'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of Nin in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Nin'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of broskvičkách in Czech
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Czech'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'broskvičkách'@cs } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize traverses in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'traverses'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of éduquerai in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'éduquerai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of പ്ലാവിനോട് in Malayalam
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Malayalam'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'പ്ലാവിനോട്'@ml } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for sérigraphe in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'sérigraphe'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of ostegunik in Basque
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Basque'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ostegunik'@eu } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of ressentiez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ressentiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of cellulās in Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'cellulās'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of budgétaires in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'budgétaires'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of ഴ in Malayalam
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Malayalam'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ഴ'@ml } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize partages in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'partages'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of économiserai in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'économiserai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of tornaretis in Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'tornaretis'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of avancera in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'avancera'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize intégreras into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'intégreras'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for torturent in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'torturent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of pétrole in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'pétrole'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of étalâmes in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'étalâmes'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of causé in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'causé'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of respectées in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'respectées'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for kuiksi in Finnish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Finnish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'kuiksi'@fi } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of Ninach in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Ninach'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize lever in Nynorsk
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'lever'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of fog in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'fog'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of resterons in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'resterons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of choisisses in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'choisisses'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize comique in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'comique'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize souciera in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'souciera'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize procurasses in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'procurasses'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for fallvindane in Nynorsk
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'fallvindane'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for rôtirions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'rôtirions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize parleresti in Italian
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Italian'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'parleresti'@it } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize compliquais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'compliquais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of daterons in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'daterons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of décerneras in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'décerneras'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of accordas in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'accordas'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize imminente into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'imminente'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize brilleront in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'brilleront'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize aimai in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'aimai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize blanchirai in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'blanchirai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for envolerons in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'envolerons'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize batailleriez into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'batailleriez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of adoptés in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'adoptés'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of digs in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'digs'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of massât in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'massât'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for plaçasses in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'plaçasses'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
retrieve the lemma of Macieje in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Macieje'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of vérifiai in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'vérifiai'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of interrompre in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'interrompre'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of mourût in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'mourût'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of louerez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'louerez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for représentera in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'représentera'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of décourageassiez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'décourageassiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of évaluasses in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'évaluasses'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize amasseraient in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'amasseraient'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the canonical form of façonnais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'façonnais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize acheminer in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'acheminer'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of broskvový in Czech
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Czech'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'broskvový'@cs } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of Gabrielo in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Gabrielo'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize transmettrais in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'transmettrais'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of respireras in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'respireras'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize rétrécirions in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'rétrécirions'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize bennoù in Breton
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Breton'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'bennoù'@br } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for rétrécît in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'rétrécît'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize すぎ into Japanese
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Japanese'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'すぎ'@ja-hira } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize demine in Kurmanji
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Kurmanji'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'demine'@ku } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of adore in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'adore'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of votait in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'votait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of derivaverint in Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'derivaverint'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of rare in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'rare'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize crearetis into Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'crearetis'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize brillent into French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'brillent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
identify the root word for aimèrent in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'aimèrent'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of chiamai in Italian
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Italian'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'chiamai'@it } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of confierait in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'confierait'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of formulassiez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'formulassiez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of ouvrira in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'ouvrira'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of dysprozy in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'dysprozy'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of うつくしかっ in Japanese
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Japanese'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'うつくしかっ'@ja-hira } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
determine the lemma for skunda in Nynorsk
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Nynorsk'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'skunda'@nn } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
obtain the lemma representation of kuny in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'kuny'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
find the lemma of New Mexican in English
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'English'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'New Mexican'@en } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of Mario in Polish
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Polish'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'Mario'@pl } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of aquis in Latin
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Latin'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'aquis'@la } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of familier in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'familier'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
lemmatize remplacerez in French
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'French'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'remplacerez'@fr } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
get the base form of её in Russian
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Russian'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'её'@ru } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
discover the lemma form of پِیوے in Punjabi
|
a5
|
SELECT DISTINCT ?word ?lemma
WHERE
{
VALUES ?lang { 'Punjabi'@en } .
?qitemLang rdfs:label ?lang .
VALUES ?word { 'پِیوے'@pnb } .
?l a ontolex:LexicalEntry ;
dct:language ?qitemLang ;
wikibase:lemma ?lemma ;
ontolex:lexicalForm ?form .
?form ontolex:representation ?word .
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.