KickJava   Java API By Example, From Geeks To Geeks.

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


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 Gabriele Vivinetto - gabriele.mailing@rvmgroup.it
22  * @version $Id: DBRes_it.java,v 1.4 2003/09/27 01:22:18 jjanke Exp $
23  */

24 public class DBRes_it extends ListResourceBundle
25 {
26     /** Data */
27     static final Object JavaDoc[][] contents = new String JavaDoc[][]{
28     //{ "CConnectionDialog", "Compiere Connection" },
29
{ "CConnectionDialog", "Connessione a Compiere" },
30     //{ "Name", "Name" },
31
{ "Name", "Nome" },
32     //{ "AppsHost", "Application Host" }, //Need to be checked
33
{ "AppsHost", "Host Applicativo" },
34     //{ "AppsPort", "Application Port" },
35
{ "AppsPort", "Porta Applicativo" }, //Need to be checked
36
//{ "TestApps", "Test Application" }, //Need to be checked
37
{ "TestApps", "Applicazione di Test" },
38     //{ "DBHost", "Database Host" },
39
{ "DBHost", "Host Database" },
40     //{ "DBPort", "Database Port" },
41
{ "DBPort", "Porta Database" },
42     //{ "DBName", "Database Name" },
43
{ "DBName", "Nome Database" },
44     //{ "DBUidPwd", "User / Password" },
45
{ "DBUidPwd", "Utente / Password" },
46     //{ "ViaFirewall", "via Firewall" },
47
{ "ViaFirewall", "via Firewall" },
48     //{ "FWHost", "Firewall Host" },
49
{ "FWHost", "Host Firewall" },
50     //{ "FWPort", "Firewall Port" },
51
{ "FWPort", "Porta Firewall" },
52     //{ "TestConnection", "Test Database" },
53
{ "TestConnection", "Database Test" },
54     //{ "Type", "Database Type" },
55
{ "Type", "Tipo Database" },
56     //{ "BequeathConnection", "Bequeath Connection" }, //Need to be checked. How to translate ?
57
{ "BequeathConnection", "Bequeath Connection" },
58     //{ "Overwrite", "Overwrite" },
59
{ "Overwrite", "Sovrascrittura" }, //Need to be checked
60
{ "RMIoverHTTP", "Tunnel Objects via HTTP" },
61     //{ "ConnectionError", "Connection Error" },
62
{ "ConnectionError", "Errore di Connessione" },
63     //{ "ServerNotActive", "Server Not Active" }};
64
{ "ServerNotActive", "Server non Attivo" }};
65
66     /**
67      * Get Contsnts
68      * @return contents
69      */

70     public Object JavaDoc[][] getContents()
71     {
72         return contents;
73     }
74 } // Res
75
Popular Tags