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_en_UK extends ListResourceBundle implements
09: Serializable {
10:
11: /**
12: * Method: contents
13: */
14: public static Object[][] contents = {
15:
16: // LOCALIZE THIS
17:
18: // XuiLanguagePanel
19: { "UI_Language", "Language Selection" },
20:
21: // XuiDirectoryPanel
22: { "UI_Select", "Select" },
23:
24: // XuiWelcomePanel
25: { "VAWelcomePanel_Welcome", "Welcome" },
26:
27: // XuiWizard
28: { "XuiWizard_About", "About" },
29: { "XuiWizard_License", "License: " },
30:
31: // END OF MATERIAL TO LOCALIZE
32: };
33:
34: /**
35: * Method: getContents()
36: */
37: public Object[][] getContents() {
38: return contents;
39: }
40:
41: } // end class
|