Upload/Download of multiple files now possible
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.wiki / src / net / sourceforge / phpeclipse / wiki / actions / mediawiki / config / WikipediaJA.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 WikipediaJA extends AbstractWikipedia {
9
10   final private static String[] nameSpaces      = new String[] {
11         "Media",
12         "ç\89¹å\88¥",
13         "",
14         "ã\83\8eã\83¼ã\83\88",
15         "å\88©ç\94¨è\80\85",
16         "å\88©ç\94¨è\80\85â\80\90ä¼\9a話",
17         "Wikipedia",
18         "Wikipediaâ\80\90ã\83\8eã\83¼ã\83\88",
19         "ç\94»å\83\8f",
20         "ç\94»å\83\8fâ\80\90ã\83\8eã\83¼ã\83\88",
21         "MediaWiki",
22         "MediaWikiâ\80\90ã\83\8eã\83¼ã\83\88",
23         "Template",
24         "Templateâ\80\90ã\83\8eã\83¼ã\83\88",
25         "ã\83\98ã\83«ã\83\97",
26         "ã\83\98ã\83«ã\83\97â\80\90ã\83\8eã\83¼ã\83\88",
27         "Category",
28         "Categoryâ\80\90ã\83\8eã\83¼ã\83\88"
29 };
30
31   private static WikipediaJA instance = new WikipediaJA();
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 WikipediaJA() {
44     super(new WikiProperties("WikipediaJA"));
45   }
46
47   /**
48    * @return Returns the nameSpaces.
49    */
50   public String[] getNameSpaces() {
51     return nameSpaces;
52   }
53
54 }