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_da_DK extends ListResourceBundle implements
09: Serializable {
10:
11: /**
12: * Method: contents
13: */
14: public static Object[][] contents = {
15: // Special Danish unicodes
16: // ae =\u00e6
17: // oe =\u00f8
18: // aa =\u00e5
19: // AE =\u00c6
20: // OE =\u00d8
21: // AA =\u00c5
22:
23: // LOCALIZE THIS
24:
25: // XuiDirectoryPanel
26: { "UI_Select", "V\u00e6lg" },
27:
28: // XuiWelcomePanel
29: { "VAWelcomePanel_Welcome", "Velkommen" },
30:
31: // XuiWizard
32: { "XuiWizard_About", "Om" },
33: { "XuiWizard_License", "Licens: " },
34:
35: // END OF MATERIAL TO LOCALIZE
36: };
37:
38: /**
39: * Method: getContents()
40: */
41: public Object[][] getContents() {
42: return contents;
43: }
44:
45: } // end class
|