-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create prepositions.sparql * Put Danish prepositions query into a directory * Change path and pkg_config_path for macOS CI build * Set path for macOS ci build * Set path and path_config_path as done in PyICU docs * Try overwriting pkgconf in macOS CI build * Trying overwriting pkgconf before installing new one * Try just installing icu4u with assumption that pkg-conf is set --------- Co-authored-by: Andrew Tavis McAllister <[email protected]>
- Loading branch information
1 parent
210bc6b
commit 2808ae0
Showing
2 changed files
with
18 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/scribe_data/wikidata/language_data_extraction/danish/prepositions/prepositions.sparql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# tool: scribe-data | ||
# All Danish (Q9035) prepositions (Q4833830) and the given forms. | ||
# Enter this query at https://query.wikidata.org/. | ||
|
||
SELECT | ||
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID) | ||
?preposition | ||
?case | ||
|
||
WHERE { | ||
?lexeme dct:language wd:Q9035 ; | ||
wikibase:lexicalCategory wd:Q4833830 ; | ||
wikibase:lemma ?preposition . | ||
} |