01: package com.memoire.vainstall.xui;
02:
03: import java.util.ListResourceBundle;
04: import java.io.Serializable;
05:
06: public class Language_de_DE extends ListResourceBundle implements
07: Serializable {
08:
09: /**
10: * Method: contents
11: */
12: public static Object[][] contents = {
13:
14: // LOCALIZE THIS
15:
16: // XuiDirectoryPanel
17: { "UI_Select", "Ausw\u00e4hlen" },
18:
19: // XuiWelcomePanel
20: { "VAWelcomePanel_Welcome", "Willkommen" },
21:
22: // XuiWizard
23: { "XuiWizard_About", "\u00dcber" },
24: { "XuiWizard_License", "Lizenz: " },
25:
26: // END OF MATERIAL TO LOCALIZE
27: };
28:
29: /**
30: * Method: getContents()
31: */
32: public Object[][] getContents() {
33: return contents;
34: }
35:
36: } // end class
|