query-80410ae786b61f24a05389d4e6a4e29e
Labels for Wiktionary categories 13:22, 30 May 2018 (UTC)) talk (Infovarius:? --ValterVB! @parentheses expressions in don't omitI am running into a multitude of Wiktionary categories which has sitelink in language A but not label in A. Can anyone please add labels automatically? And please : Can you please run along ru-pages without ru-label? 3750 now:ValterVB@ 17:25, 30 May 2018 (UTC)) talk (ValterVB will be available, probably I restart my periodical task. Alternatively, I can do it with a SPARQL query (if I find a suitable one) --differential dump: The dumps have become too big (too much time to download and unzip), so I stopped to download them and update label description, or do other weekly task that using dump. If Infovarius@ 13:35, 30 May 2018 (UTC)) talk (InfovariusAnd labelless items are created by PetScan (can it be changed?) so their number is constantly increasing and there is need in a regular work. -- 13:31, 30 May 2018 (UTC)) talk (InfovariusEven AutoEdit doesn't work for Wiktionary sitelinks... --
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?sitelink ?itemLabel ?title WHERE {
?sitelink schema:isPartOf <https://ru.wiktionary.org/>;
schema:about ?item; schema:name ?title
SERVICE wikibase:label { bd:serviceParam wikibase:language "ru,[AUTO_LANGUAGE],en" } .
FILTER(NOT EXISTS {
?item rdfs:label ?lang_label.
FILTER(LANG(?lang_label) = "ru") #with missing Russian label
})
} ORDER BY ?itemLabel