KickJava   Java API By Example, From Geeks To Geeks.

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


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 kirinlin
22  * @version $Id: DBRes_zh.java,v 1.5 2003/09/27 01:22:18 jjanke Exp $
23  */

24 public class DBRes_zh extends ListResourceBundle
25 {
26     /** Data */
27     static final Object JavaDoc[][] contents = new String JavaDoc[][]
28     {
29     { "CConnectionDialog", "Compiere \u9023\u7dda" },
30     { "Name", "\u540d\u7a31" },
31     { "AppsHost", "\u61c9\u7528\u7a0b\u5f0f\u4e3b\u6a5f" },
32     { "AppsPort", "\u61c9\u7528\u7a0b\u5f0f\u57e0" },
33     { "TestApps", "\u6e2c\u8a66" },
34     { "DBHost", "\u8cc7\u6599\u5eab\u4e3b\u6a5f" },
35     { "DBPort", "\u8cc7\u6599\u5eab\u9023\u63a5\u57e0" },
36     { "DBName", "\u8cc7\u6599\u5eab\u540d\u7a31" },
37     { "DBUidPwd", "\u5e33\u865f / \u5bc6\u78bc" },
38     { "ViaFirewall", "\u7d93\u904e\u9632\u706b\u7246" },
39     { "FWHost", "\u9632\u706b\u7246\u4e3b\u6a5f" },
40     { "FWPort", "\u9632\u706b\u7246\u57e0" },
41     { "TestConnection", "\u6e2c\u8a66\u8cc7\u6599\u5eab" },
42     { "Type", "\u8cc7\u6599\u5eab\u7a2e\u985e" },
43     { "BequeathConnection", "\u907a\u7559\u9023\u7dda" },
44     { "Overwrite", "\u8986\u5beb" },
45     { "RMIoverHTTP", "Tunnel Objects via HTTP" },
46     { "ConnectionError", "\u9023\u7dda\u932f\u8aa4" },
47     { "ServerNotActive", "\u4f3a\u670d\u5668\u672a\u52d5\u4f5c" }
48     };
49
50     /**
51      * Get Contsnts
52      * @return contents
53      */

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