package net.sourceforge.phpeclipse.wiki.actions.mediawiki.config; //Parts of this sources are copied and modified from the jEdit Wikipedia plugin: //http://www.djini.de/software/wikipedia/index.html // //The modified sources are available under the "Common Public License" //with permission from the original author: Daniel Wunsch public class WikipediaNL extends AbstractWikipedia { final private static String[] nameSpaces = new String[] { "Media", "Speciaal", "", "Overleg", "Gebruiker", "Overleg gebruiker", "Wikipedia", "Overleg Wikipedia", "Afbeelding", "Overleg afbeelding", "MediaWiki", "Overleg MediaWiki", "Sjabloon", "Overleg sjabloon", "Help", "Overleg help", "Categorie", "Overleg categorie" }; private static WikipediaNL instance = new WikipediaNL(); /** * Get the singleton instance * * @see net.sourceforge.phpeclipse.wiki.editor.WikiEditorPlugin#getWikiInstance() */ public static IWikipedia getInstance() { return instance; } // private constructor private WikipediaNL() { super(new WikiProperties("WikipediaNL")); } /** * @return Returns the nameSpaces. */ public String[] getNameSpaces() { return nameSpaces; } }