01: package com.memoire.vainstall.gui;
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: // VADirectoryPanel
19: { "UI_MustChoose", "You must choose a directory !" },
20:
21: // VAWelcomePanel
22: { "VAWelcomePanel_About", "About" },
23: { "VAWelcomePanel_License", "License: " },
24: { "VAWelcomePanel_Copyright", "Copyright " },
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
|