Curation Tasks

From Kurdî Wikibase
Revision as of 21:24, 24 March 2023 by DavidL (talk | contribs) (Created page with "This page describes issues to be fixed in the lexical data, and proposed practices. = Kurmanji = ==Superlative used as lexical category== "Superlative" describes an adjective form, not a lexical category. These lexemes should be integrated into the entry of the corresponding adjective, which should use its positive form as lemma (and not the superlative). <sparql tryit="1"> PREFIX kwb: <https://kurdi.wikibase.cloud/entity/> select ?language ?languageLabe...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This page describes issues to be fixed in the lexical data, and proposed practices.

Kurmanji

Superlative used as lexical category

"Superlative" describes an adjective form, not a lexical category. These lexemes should be integrated into the entry of the corresponding adjective, which should use its positive form as lemma (and not the superlative).

PREFIX kwb: <https://kurdi.wikibase.cloud/entity/>
select ?language ?languageLabel ?lemma where {
  ?lexeme a ontolex:LexicalEntry;
          dct:language ?language;
          wikibase:lemma ?lemma;
          wikibase:lexicalCategory kwb:Q30. # superlative used as POS
  ?language rdfs:label ?languageLabel. filter(lang(?languageLabel)="en")
}

Try it!