KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > compiere > db > DBRes_es


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.db;
15
16 import java.util.*;
17
18 /**
19  * Connection Resource Strings
20  *
21  * @author Erwin Cortes
22  * @version $Id: DBRes_es.java,v 1.4 2003/09/27 01:22:18 jjanke Exp $
23  */

24 public class DBRes_es extends ListResourceBundle
25 {
26     /** Data */
27     static final Object JavaDoc[][] contents = new String JavaDoc[][]{
28     { "CConnectionDialog", "Conneccion Compiere" },
29     { "Name", "Nombre" },
30     { "AppsHost", "Host de Aplicacion" },
31     { "AppsPort", "Puerto de Aplicacion" },
32     { "TestApps", "Test de Aplicacion" },
33     { "DBHost", "Host de Base de Datos" },
34     { "DBPort", "Puerto de Base de Datos" },
35     { "DBName", "Nombre de Base de datos" },
36     { "DBUidPwd", "Usuario / Password" },
37     { "ViaFirewall", "via Firewall" },
38     { "FWHost", "Firewall Host" },
39     { "FWPort", "Firewall Port" },
40     { "TestConnection", "Test de Base de datos" },
41     { "Type", "Tipo de Base de Datos" },
42     { "BequeathConnection", "Conneccion" },
43     { "Overwrite", "Sobreescribir" },
44     { "RMIoverHTTP", "Tunnel Objects via HTTP" },
45     { "ConnectionError", "Error en coneccion" },
46     { "ServerNotActive", "Servidor inactivo" }};
47
48     /**
49      * Get Contsnts
50      * @return contents
51      */

52     public Object JavaDoc[][] getContents()
53     {
54         return contents;
55     }
56 } // Res
57
Popular Tags