KickJava   Java API By Example, From Geeks To Geeks.

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


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
20  *
21  * @author Jesse Jr
22  * @version $Id: PlafRes_pt.java,v 1.3 2003/10/29 06:11:08 jjanke Exp $
23  */

24 public class PlafRes_pt extends ListResourceBundle JavaDoc
25 {
26     /** The data */
27     static final Object JavaDoc[][] contents = new String JavaDoc[][]
28     {
29     { "BackColType", "Tipo da Cor de Fundo" },
30     { "BackColType_Flat", "Plano" },
31     { "BackColType_Gradient", "Dégradé" },
32     { "BackColType_Lines", "Linhas" },
33     { "BackColType_Texture", "Textura" },
34     //
35
{ "LookAndFeelEditor", "Editor: Look & Feel" },
36     { "LookAndFeel", "Look & Feel" },
37     { "Theme", "Tema" },
38     { "EditCompiereTheme", "Editar Tema Compiere" },
39     { "SetDefault", "Fundo Padrão" },
40     { "SetDefaultColor", "Cor de Fundo" },
41     { "ColorBlind", "Deficiência de Cor" },
42     { "Example", "Exemplo" },
43     { "Reset", "Reinicializar" },
44     { "OK", "OK" },
45     { "Cancel", "Cancelar" },
46     //
47
{ "CompiereThemeEditor", "Compiere: Editor de Temas" },
48     { "MetalColors", "Cores Metal" },
49     { "CompiereColors", "Cores Compiere" },
50     { "CompiereFonts", "Fontes Compiere" },
51     { "Primary1Info", "Sombra, Separador" },
52     { "Primary1", "Primário 1" },
53     { "Primary2Info", "Linha de Foco, Menu Selecionado" },
54     { "Primary2", "Primário 2" },
55     { "Primary3Info", "Linha da Tabele Selecionada, Texto Selecionado, Fundo Dicas" },
56     { "Primary3", "Primário 3" },
57     { "Secondary1Info", "Bordas de Linhas" },
58     { "Secondary1", "Secundário 1" },
59     { "Secondary2Info", "Tabs Inativas, Campos Pressed, Borda Inativa + Texto" },
60     { "Secondary2", "Secundário 2" },
61     { "Secondary3Info", "Área de Fundo" },
62     { "Secondary3", "Secundário 3" },
63     //
64
{ "ControlFontInfo", "Controle de Fonte" },
65     { "ControlFont", "Rótulo da Fonte" },
66     { "SystemFontInfo", "Tool Tip, Tree nodes" },
67     { "SystemFont", "System Font" },
68     { "UserFontInfo", "Entrada de Dados pelo Usuário" },
69     { "UserFont", "Fonte dos Campos" },
70 // { "SmallFontInfo", "Relatórios" },
71
{ "SmallFont", "Fonte pequena" },
72     { "WindowTitleFont", "Fonte do Título" },
73     { "MenuFont", "Fonte do Menu" },
74     //
75
{ "MandatoryInfo", "Fundo de Campos Obrigatórios" },
76     { "Mandatory", "Obrigatório" },
77     { "ErrorInfo", "Fundo de Campo de Erro" },
78     { "Error", "Erro" },
79     { "InfoInfo", "Fundo de Campos Informativos" },
80     { "Info", "Info" },
81     { "WhiteInfo", "Linhas" },
82     { "White", "Branco" },
83     { "BlackInfo", "Linhas, Texto" },
84     { "Black", "Preto" },
85     { "InactiveInfo", "Fundo de Campo Inativo" },
86     { "Inactive", "Inativo" },
87     { "TextOKInfo", "OK Fundo do Texto" },
88     { "TextOK", "Texto - OK" },
89     { "TextIssueInfo", "Fundo do Texto de Erro" },
90     { "TextIssue", "Texto - Erro" },
91     //
92
{ "FontChooser", "Selecionar Fonte" },
93     { "Fonts", "Fontes" },
94     { "Plain", "Plano" },
95     { "Italic", "Itálico" },
96     { "Bold", "Negrito" },
97     { "BoldItalic", "Negrito & Itálico" },
98     { "Name", "Nome" },
99     { "Size", "Tamanho" },
100     { "Style", "Estilo" },
101     { "TestString", "Somente teste! The quick brown Fox is doing something. 12,3456.78 LetterLOne = l1 LetterOZero = O0" },
102     { "FontString", "Fonte" },
103     //
104
{ "CompiereColorEditor", "Compiere: Editor de Cores" },
105     { "CompiereType", "Tipo de Cor" },
106     { "GradientUpperColor", "Cor Dégradé Superior" },
107     { "GradientLowerColor", "Cor Dégradé Inferior" },
108     { "GradientStart", "Início do Dégradé" },
109     { "GradientDistance", "Distância do Dégradé" },
110     { "TextureURL", "URL Textura" },
111     { "TextureAlpha", "Alfa Textura" },
112     { "TextureTaintColor", "Coloração da Textura" },
113     { "LineColor", "Cor da Linha" },
114     { "LineBackColor", "Cores de Fundo" },
115     { "LineWidth", "Largura da Linha" },
116     { "LineDistance", "Distância das linhas" },
117     { "FlatColor", "Cores Planas" }
118     };
119
120     /**
121      * Get Contents
122      * @return contents
123      */

124     public Object JavaDoc[][] getContents()
125     {
126         return contents;
127     }
128 } // Res
129
Popular Tags