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_fr_FR 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",
20: "Vous devez choisir un r\u00e9pertoire !" },
21:
22: // VAWelcomePanel
23: { "VAWelcomePanel_About", "A propos de" },
24: { "VAWelcomePanel_License", "Licence: " },
25: { "VAWelcomePanel_Copyright", "Copyright " },
26:
27: // END OF MATERIAL TO LOCALIZE
28: };
29:
30: /**
31: * Method: getContents()
32: */
33: public Object[][] getContents() {
34: return contents;
35: }
36:
37: } // end class
|