Added more Wikipedia configurations
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.wiki / src / net / sourceforge / phpeclipse / wiki / actions / mediawiki / config / WikipediaFR.java
1 package net.sourceforge.phpeclipse.wiki.actions.mediawiki.config;
2 //Parts of this sources are copied and modified from the jEdit Wikipedia plugin:
3 //http://www.djini.de/software/wikipedia/index.html
4 //
5 //The modified sources are available under the "Common Public License"
6 //with permission from the original author: Daniel Wunsch
7
8 public class WikipediaFR extends AbstractWikipedia {
9
10   final private static String[] nameSpaces      = new String[] {
11         "Media",
12         "Special",
13         "",
14         "Discuter",
15         "Utilisateur",
16         "Discussion Utilisateur",
17         "Wikipédia",
18         "Discussion Wikipedia",
19         "Image",
20         "Discussion Image",
21         "MediaWiki",
22         "Discussion MediaWiki",
23         "Modèle",
24         "Discussion Modèle",
25         "Aide",
26         "Discussion Aide",
27         "Catégorie",
28         "Discussion Catégorie"
29 };
30
31   private static WikipediaFR instance = new WikipediaFR();
32
33   /**
34    * Get the singleton instance
35    * 
36    * @see net.sourceforge.phpeclipse.wiki.editor.WikiEditorPlugin#getWikiInstance()
37    */
38   public static IWikipedia getInstance() {
39     return instance;
40   }
41
42   // private constructor
43   private WikipediaFR() {
44     super(new WikiProperties("WikipediaFR"));
45   }
46
47   /**
48    * @return Returns the nameSpaces.
49    */
50   public String[] getNameSpaces() {
51     return nameSpaces;
52   }
53
54 }