Curation Tasks: Difference between revisions

From Kurdî Wikibase
Line 7: Line 7:
STATUS: '''TO DO'''
STATUS: '''TO DO'''


[[Item:Q30|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).
[[Item:Q30|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). As an example, see how the English adjective [https://www.wikidata.org/wiki/Lexeme:L3201 ''good''] is modeled on Wikidata.


<sparql tryit="1">
<sparql tryit="1">

Revision as of 21:34, 24 March 2023

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

Kurmanji

Superlative used as lexical category

STATUS: TO DO

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). As an example, see how the English adjective good is modeled on Wikidata.

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!