Skip to content

Commit

Permalink
Merge pull request #296 from KesharwaniArpita/EmojiKeywordsContriItalian
Browse files Browse the repository at this point in the history
Added Adverbs, Prepositions and Adjective for Italian
  • Loading branch information
andrewtavis authored Oct 9, 2024
2 parents 0129ce0 + 8a55943 commit cae38ec
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# tool: scribe-data
# All Italian (Q652) adjectives.
# Enter this query at https://query.wikidata.org/.

SELECT
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
?adjective

WHERE {
?lexeme dct:language wd:Q652 ;
wikibase:lexicalCategory wd:Q34698 ;
wikibase:lemma ?adjective .
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# tool: scribe-data
# All Italian (Q652) adverbs.
# Enter this query at https://query.wikidata.org/.

SELECT
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
?adverb

WHERE {
?lexeme dct:language wd:Q652 ;
wikibase:lexicalCategory wd:Q380057 ;
wikibase:lemma ?adverb .
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# tool: scribe-data
# All Italian (Q652) prepositions.
# Enter this query at https://query.wikidata.org/.

SELECT
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
?preposition

WHERE {
?lexeme dct:language wd:Q652 ;
wikibase:lexicalCategory wd:Q4833830 ;
wikibase:lemma ?preposition .
}

0 comments on commit cae38ec

Please sign in to comment.