Naar inhoud springen

Gebruiker:MauritsBot/noreferences.py

Uit Wikipedia, de vrije encyclopedie
Mededeling
Klik even op "bewerk" om het script juist weer te geven

# Summary messages in different languages msg = { 'nl':u'Robot: Toevoeging ontbrekende <references /> tag', } # References sections are usually placed before further reading / external # link sections. This dictionary defines these sections, sorted by priority. # For example, on an English wiki, the script would place the "References" # section in front of the "Further reading" section, if that existed. # Otherwise, it would try to put it in front of the "External links" section, # or if that fails, the "See also" section, etc. placeBeforeSections = { 'nl': [ # no explicit policy on where to put the references u'Literatuur', u'Zie ook', u'Externe links', u'Externe link', ], } # Titles of sections where a reference tag would fit into. # The first title should be the preferred one: It's the one that # will be used when a new section has to be created. referencesSections = { 'nl': [ # not sure about which ones are preferred. u'Voetnoten', u'Voetnoot', u'Referenties', u'Noten', u'Bronvermelding', ], } # Templates which include a <references /> tag. If there is no such template # on your wiki, you don't have to enter anything here. referencesTemplates = { 'wikipedia': { 'nl': [u'Reflist',u'Refs',u'FootnotesSmall',u'Reference', u'Ref-list',u'Reference list',u'References-small',u'Reflink',u'Referenties',u'Bron',u'Bronnen/noten/referenties',u'Bron2',u'Bron3',u'ref', u'Noot',u'FootnotesSmall'], }, }