query-f3938151f2bfedab8fc1e9431a2cb261
Film descriptions improving/fixing needed ]reply[22:00, 5 June 2017 (UTC), XXN that project members have found some types of descriptions which needs to be improved, especially English description "film" and Italian description "film del diretto da" (this seems to be completely wrong). AFAIK for the task related to film items currently your bot does not overwrite descriptions. Could you add the function to overwrite 'en' & 'it' descriptions (temporary, for this task) and to run one-time the bot through the results returned by those queries? At the time of writing this message, there was 1281 (en) + 762 (it) items returned by queries. Wikidata:WikiProject_Movies/Tools#Improve_descriptions@Emijrp, I just saw in ") can be safely overwritten with a better description (the pattern you are using):film, ~YEAR~" and "filmIf you plan to modify the code for the case mentioned above, I've found also some Romanian descriptions to overwrite. Most of the items from the result of the following query (those very short, like " I've provided Romanian description patterns for bot code, check git.
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?itemDescription
{
?item wdt:P31 wd:Q11424 .
FILTER EXISTS { ?item schema:description ?itemDescription filter (lang(?itemDescription) = "ro") . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "ro,en,fr"}
}
LIMIT 2000