utterance
stringlengths
10
893
template_name
stringclasses
191 values
template
stringlengths
74
1.45k
get the base form of qualifias in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'qualifias'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the canonical form of étiras in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'étiras'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the base form of reposerez in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'reposerez'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
obtain the lemma representation of exiverim in Latin
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Latin'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'exiverim'@la } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
identify the root word for remplace in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'remplace'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
obtain the lemma representation of Olimpij in Polish
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Polish'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'Olimpij'@pl } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
determine the lemma for euskaretarantz in Basque
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Basque'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'euskaretarantz'@eu } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
determine the lemma for accuserons in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'accuserons'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
obtain the lemma representation of jugeras in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'jugeras'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
obtain the lemma representation of liikenteenä in Finnish
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Finnish'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'liikenteenä'@fi } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize partikkelfysikk in Nynorsk
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Nynorsk'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'partikkelfysikk'@nn } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the canonical form of szczygła in Polish
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Polish'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'szczygła'@pl } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize contacterais in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'contacterais'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
retrieve the lemma of stupidest in English
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'English'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'stupidest'@en } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the canonical form of barbed in English
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'English'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'barbed'@en } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
retrieve the lemma of scones in English
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'English'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'scones'@en } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
discover the lemma form of évitée in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'évitée'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
discover the lemma form of arrives in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'arrives'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
find the lemma of persuadâmes in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'persuadâmes'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
retrieve the lemma of reste in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'reste'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
obtain the lemma representation of creaveram in Latin
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Latin'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'creaveram'@la } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
find the lemma of travaillée in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'travaillée'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the base form of perfectionnèrent in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'perfectionnèrent'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize pâlissent in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'pâlissent'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the base form of syksyillä in Finnish
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Finnish'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'syksyillä'@fi } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
discover the lemma form of chargées in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'chargées'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the canonical form of fonderont in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'fonderont'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
identify the root word for chasseraient in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'chasseraient'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
discover the lemma form of vinterhagane in Nynorsk
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Nynorsk'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'vinterhagane'@nn } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the canonical form of renferme in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'renferme'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
find the lemma of dispersé in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'dispersé'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
find the lemma of éclairai in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'éclairai'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
obtain the lemma representation of appliquas in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'appliquas'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
retrieve the lemma of survécusse in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'survécusse'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize devenons into French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'devenons'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
obtain the lemma representation of waranem in Polish
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Polish'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'waranem'@pl } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
find the lemma of afternoon in English
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'English'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'afternoon'@en } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
discover the lemma form of intellekta in Nynorsk
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Nynorsk'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'intellekta'@nn } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the canonical form of intégraient in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'intégraient'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize chargerais into French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'chargerais'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
retrieve the lemma of ਮੋਰਾਂ 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 . }
lemmatize αγελάδας in Modern Greek
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Modern Greek'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'αγελάδας'@el } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the canonical form of gon in Breton
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Breton'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'gon'@br } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the base form of rêvai in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'rêvai'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize crachâtes into French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'crachâtes'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
identify the root word for crearemini in Latin
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Latin'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'crearemini'@la } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize prolongeriez in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'prolongeriez'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
discover the lemma form of Dawidów in Polish
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Polish'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'Dawidów'@pl } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize emprunte in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'emprunte'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize suspectons in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'suspectons'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize falsifiaient in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'falsifiaient'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
determine the lemma for juicens in Swedish
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Swedish'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'juicens'@sv } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
retrieve the lemma of ožujke in Croatian
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Croatian'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'ožujke'@hr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize votâmes in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'votâmes'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
discover the lemma form of grouperont in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'grouperont'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
obtain the lemma representation of versera in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'versera'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
identify the root word for arrêterais in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'arrêterais'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize arrêterions in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'arrêterions'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize Eligiuszowie in Polish
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Polish'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'Eligiuszowie'@pl } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
determine the lemma for haïriez in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'haïriez'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize cuiraient in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'cuiraient'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize derivabis into Latin
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Latin'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'derivabis'@la } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the base form of rejoignés in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'rejoignés'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
discover the lemma form of augustojn in Esperanto
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Esperanto'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'augustojn'@eo-hsistemo } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
discover the lemma form of dominait in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'dominait'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
retrieve the lemma of spy in English
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'English'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'spy'@en } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
identify the root word for sécherais in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'sécherais'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
retrieve the lemma of Łukaszu in Polish
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Polish'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'Łukaszu'@pl } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
find the lemma of kirjastolta in Finnish
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Finnish'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'kirjastolta'@fi } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize print into English
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'English'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'print'@en } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the base form of semblerai in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'semblerai'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
discover the lemma form of repoussai in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'repoussai'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
discover the lemma form of dériverait in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'dériverait'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
retrieve the lemma of incombassions in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'incombassions'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
discover the lemma form of approchée in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'approchée'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize *màjíjɪ̀ in Proto-Bantu
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Proto-Bantu'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { '*màjíjɪ̀'@mis-x-q3408025 } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the canonical form of ਪੀਂਦੀਆਂ 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 . }
get the base form of excellence in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'excellence'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the canonical form of concrétisai in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'concrétisai'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the base form of prolongerai in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'prolongerai'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
discover the lemma form of restée in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'restée'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the canonical form of commencerais in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'commencerais'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
find the lemma of auditoires in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'auditoires'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
identify the root word for confirmât in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'confirmât'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the base form of devinait in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'devinait'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the base form of vu in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'vu'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
discover the lemma form of høgste in Nynorsk
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Nynorsk'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'høgste'@nn } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
retrieve the lemma of stimulasses in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'stimulasses'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize لَیندیاں into 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 . }
lemmatize casse-têtes in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'casse-têtes'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
find the lemma of découvrîtes in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'découvrîtes'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
obtain the lemma representation of pleurerez in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'pleurerez'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
find the lemma of accessed in English
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'English'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'accessed'@en } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the canonical form of utgjevinga in Nynorsk
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'Nynorsk'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'utgjevinga'@nn } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
obtain the lemma representation of traduisissions in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'traduisissions'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the base form of montons in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'montons'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
get the canonical form of yours in English
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'English'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'yours'@en } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
obtain the lemma representation of combinerais in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'combinerais'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
lemmatize indemnisés into French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'indemnisés'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }
determine the lemma for substitua in French
a5
SELECT DISTINCT ?word ?lemma WHERE { VALUES ?lang { 'French'@en } . ?qitemLang rdfs:label ?lang . VALUES ?word { 'substitua'@fr } . ?l a ontolex:LexicalEntry ; dct:language ?qitemLang ; wikibase:lemma ?lemma ; ontolex:lexicalForm ?form . ?form ontolex:representation ?word . }