01: package com.memoire.vainstall.xui;
02:
03: import java.awt.event.*;
04:
05: import java.util.ListResourceBundle;
06: import java.io.Serializable;
07:
08: public class Language_ja_JP extends ListResourceBundle implements
09: Serializable {
10:
11: /**
12: * Method: contents
13: */
14: public static Object[][] contents = {
15:
16: // LOCALIZE THIS
17:
18: // XuiDirectoryPanel
19: { "UI_Select", "\u9078\u629e" },
20:
21: // XuiWelcomePanel
22: { "VAWelcomePanel_Welcome", "\u3088\u3046\u3053\u305d" },
23:
24: // XuiWizard
25: { "XuiWizard_About", "VAInstall\u306b\u3064\u3044\u3066" },
26: { "XuiWizard_License", "\u30e9\u30a4\u30bb\u30f3\u30b9: " },
27:
28: // END OF MATERIAL TO LOCALIZE
29: };
30:
31: /**
32: * Method: getContents()
33: */
34: public Object[][] getContents() {
35: return contents;
36: }
37:
38: } // end class
|