KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > compiere > plaf > PlafRes_fr


1 /******************************************************************************
2  * The contents of this file are subject to the Compiere License Version 1.1
3  * ("License"); You may not use this file except in compliance with the License
4  * You may obtain a copy of the License at http://www.compiere.org/license.html
5  * Software distributed under the License is distributed on an "AS IS" basis,
6  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
7  * the specific language governing rights and limitations under the License.
8  * The Original Code is Compiere ERP & CRM Business Solution
9  * The Initial Developer of the Original Code is Jorg Janke and ComPiere, Inc.
10  * Portions created by Jorg Janke are Copyright (C) 1999-2001 Jorg Janke, parts
11  * created by ComPiere are Copyright (C) ComPiere, Inc.; All Rights Reserved.
12  * Contributor(s): ______________________________________.
13  *****************************************************************************/

14 package org.compiere.plaf;
15
16 import java.util.ListResourceBundle JavaDoc;
17
18 /**
19  * Translation Texts for Look & Feel (French)
20  *
21  * @author Jean-Luc SCHEIDEGGER
22  * @version $Id: PlafRes_fr.java,v 1.4 2003/10/29 06:11:08 jjanke Exp $
23  */

24 public class PlafRes_fr extends ListResourceBundle JavaDoc
25 {
26     /** Translation Content */
27     static final Object JavaDoc[][] contents = new String JavaDoc[][]
28     {
29     { "BackColType", "Type de Couleur de Fond" },
30     { "BackColType_Flat", "Flat" },
31     { "BackColType_Gradient", "Gradient" },
32     { "BackColType_Lines", "Lignes" },
33     { "BackColType_Texture", "Texture" },
34     { "LookAndFeelEditor", "Look & Feel Editor" },
35     { "LookAndFeel", "Look & Feel" },
36     { "Theme", "Th\350me" },
37     { "EditCompiereTheme", "Editer Th\350me Compiere" },
38     { "SetDefault", "Couleur de Fond par D\351faut" },
39     { "SetDefaultColor", "Couleur de Fond" },
40     { "ColorBlind", "Couleur Deficiency" },
41     { "Example", "Exemple" },
42     { "Reset", "Remettre" },
43     { "OK", "OK" },
44     { "Cancel", "Annuler" },
45     { "CompiereThemeEditor", "Editeur de Th\350me Compiere" },
46     { "MetalColors", "Couleurs M\351tal" },
47     { "CompiereColors", "Couleurs Compiere" },
48     { "CompiereFonts", "Polices Compiere" },
49     { "Primary1Info", "Label Text" },
50     { "Primary1", "Primary 1" },
51     { "Primary2Info", "Focus Line, Selected CheckBox" },
52     { "Primary2", "Primary 2" },
53     { "Primary3Info", "Table Selected Row, Selected Text, ToolTip Background" },
54     { "Primary3", "Primary 3" },
55     { "Secondary1Info", "Border Lines" },
56     { "Secondary1", "Secondary 1" },
57     { "Secondary2Info", "Inactive Tabs, Pressed Fields, Inactive Border + Text" },
58     { "Secondary2", "Secondary 2" },
59     { "Secondary3Info", "Background" },
60     { "Secondary3", "Secondary 3" },
61     { "ControlFontInfo", "Control Font" },
62     { "ControlFont", "Label Font" },
63     { "SystemFontInfo", "Tool Tip, Tree nodes" },
64     { "SystemFont", "System Font" },
65     { "UserFontInfo", "User Entered Data" },
66     { "UserFont", "Field Font" },
67     { "SmallFont", "Small Font" },
68     { "WindowTitleFont", "Title Font" },
69     { "MenuFont", "Menu Font" },
70     { "MandatoryInfo", "Mandatory Field Background" },
71     { "Mandatory", "Mandatory" },
72     { "ErrorInfo", "Error Field Background" },
73     { "Error", "Error" },
74     { "InfoInfo", "Info Field Background" },
75     { "Info", "Info" },
76     { "WhiteInfo", "Lines" },
77     { "White", "White" },
78     { "BlackInfo", "Lines, Text" },
79     { "Black", "Black" },
80     { "InactiveInfo", "Inactive Field Background" },
81     { "Inactive", "Inactive" },
82     { "TextOKInfo", "OK Text Foreground" },
83     { "TextOK", "Text - OK" },
84     { "TextIssueInfo", "Error Text Foreground" },
85     { "TextIssue", "Text - Error" },
86     { "FontChooser", "Font Chooser" },
87     { "Fonts", "Fonts" },
88     { "Plain", "Plain" },
89     { "Italic", "Italic" },
90     { "Bold", "Bold" },
91     { "BoldItalic", "Bold & Italic" },
92     { "Name", "Name" },
93     { "Size", "Size" },
94     { "Style", "Style" },
95     { "TestString", "This is just a Test! The quick brown Fox is doing something. 12,3456.78 LetterLOne = l1 LetterOZero = O0" },
96     { "FontString", "Font" },
97     { "CompiereColorEditor", "Compiere Couleur Editor" },
98     { "CompiereType", "Couleur Type" },
99     { "GradientUpperColor", "Gradient Upper Couleur" },
100     { "GradientLowerColor", "Gradient Lower Couleur" },
101     { "GradientStart", "Gradient Start" },
102     { "GradientDistance", "Gradient Distance" },
103     { "TextureURL", "Texture URL" },
104     { "TextureAlpha", "Texture Alpha" },
105     { "TextureTaintColor", "Texture Taint Couleur" },
106     { "LineColor", "Line Couleur" },
107     { "LineBackColor", "Background Couleur" },
108     { "LineWidth", "Line Width" },
109     { "LineDistance", "Line Distance" },
110     { "FlatColor", "Flat Couleur" }
111     };
112
113     /**
114      * Get Contents
115      * @return contents
116      */

117     public Object JavaDoc[][] getContents()
118     {
119         return contents;
120     } // fetContents
121
} // PlafRes_fr
122
Popular Tags