KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > compiere > apps > ALoginRes_ca


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.apps;
15
16 import java.util.*;
17
18 /**
19  * Base Resource Bundle
20  *
21  * @translator Jaume Teixi
22  * @version $Id: ALoginRes_ca.java,v 1.1 2003/02/09 21:53:30 jjanke Exp $
23  */

24 public final class ALoginRes_ca extends ListResourceBundle
25 {
26     /** Translation Content */
27     static final Object JavaDoc[][] contents = new String JavaDoc[][]
28     {
29     { "Connection", "Connexió" },
30     { "Defaults", "Predeterminats" },
31     { "Login", "Accés Compiere" },
32     { "File", "Fitxer" },
33     { "Exit", "Sortir" },
34     { "Help", "Ajuda" },
35     { "About", "Referent" },
36     { "Host", "Servidor" },
37     { "Database", "Base de Dades" },
38     { "User", "ID Usuari" },
39     { "EnterUser", "Entrar ID Usuari Aplicació" },
40     { "Password", "Contrasenya" },
41     { "EnterPassword", "Entrar Contrasenya Usuari Aplicació" },
42     { "Language", "Idioma" },
43     { "SelectLanguage", "Seleccioneu el Vostre Idioma" },
44     { "Role", "Rol" },
45     { "Client", "Client" },
46     { "Organization", "Organització" },
47     { "Date", "Data" },
48     { "Warehouse", "Magatzem" },
49     { "Printer", "Impressora" },
50     { "Connected", "Connectat" },
51     { "NotConnected", "No Connectat" },
52     { "DatabaseNotFound", "No s'ha trobat la Base de Dades" },
53     { "UserPwdError", "No coincidèix l'Usuari i la Contrasenya" },
54     { "RoleNotFound", "Rol no trobat/completat" },
55     { "Authorized", "Autoritzat" },
56     { "Ok", "D'Acord" },
57     { "Cancel", "Cancel.lar" },
58     { "VersionConflict", "Conflicte Versions:" },
59     { "VersionInfo", "Servidor <> Client" },
60     { "PleaseUpgrade", "Sisplau Actualitzeu el Programa" }
61     };
62
63     /**
64      * Get Contents
65      * @return context
66      */

67     public Object JavaDoc[][] getContents()
68     {
69         return contents;
70     } // getContents
71
} // ALoginRes
72
Popular Tags