query-980e6643142b434bfb09dddbf9a4e22e

rq turtle/ttl

Important properties that are missing labels in Norsk, bokmål (nb)At the time of writing this, there is about 6600 properties of about 10000 that do not have a Norwegian translation. Of these around 900 are "important", so if you are bored, please consider doing a quality translation of any one of these.

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel
WHERE {
  ?item rdf:type wikibase:Property.
  FILTER NOT EXISTS { ?item wikibase:propertyType wikibase:ExternalId. }
  FILTER NOT EXISTS { ?item rdfs:label ?nblabel. FILTER(LANG(?nblabel) = "nb") }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?nblabel") c8(["bd:serviceParam"]):::iri c6(["wikibase:Property"]):::iri c10(["en"]):::literal c4(["wikibase:ExternalId"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0f0[["?nblabel = 'nb'"]] e0f0 --> e0v1 e0v2 --"rdfs:label"--> e0v1 e0v2("?item"):::projected e0v1("?nblabel"):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> v2 f0 --> c2 f1[["?nblabel = 'nb'"]] f1 --> v1 v2 --"rdfs:label"--> v1 f2[["not "]] subgraph f2e1["Exists Clause"] e1v1 --"wikibase:propertyType"--> e1c2 e1v1("?item"):::projected e1c2(["wikibase:ExternalId"]):::iri end f2--EXISTS--> f2e1 f2 --> v2 f2 --> c3 f2 --> c4 v2 --"wikibase:propertyType"--> c4 v2 --"a"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end