KickJava   Java API By Example, From Geeks To Geeks.

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


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

24 public class DBRes_zh_CN extends ListResourceBundle
25 {
26     /** Data */
27     static final Object JavaDoc[][] contents = new String JavaDoc[][]
28     {
29     { "CConnectionDialog", "Compiere \u8fde\u673a" },
30     { "Name", "\u540d\u79f0" },
31     { "AppsHost", "\u5e94\u7528\u670d\u52a1\u5668\u4e3b\u673a" },
32     { "AppsPort", "\u5e94\u7528\u670d\u52a1\u5668\u7aef\u53e3" },
33     { "TestApps", "\u6d4b\u8bd5\u5e94\u7528\u670d\u52a1\u5668" },
34     { "DBHost", "\u6570\u636e\u5e93\u4e3b\u673a" },
35     { "DBPort", "\u6570\u636e\u5e93\u7aef\u53e3" },
36     { "DBName", "\u6570\u636e\u5e93\u540d" },
37     { "DBUidPwd", "\u7528\u6237\u53f7 / \u53e3\u4ee4" },
38     { "ViaFirewall", "\u901a\u8fc7\u9632\u706b\u5899" },
39     { "FWHost", "\u9632\u706b\u5899\u4e3b\u673a" },
40     { "FWPort", "\u9632\u706b\u5899\u7aef\u53e3" },
41     { "TestConnection", "\u6d4b\u8bd5\u6570\u636e\u5e93" },
42     { "Type", "\u6570\u636e\u5e93\u7c7b\u578b" },
43     { "BequeathConnection", "\u9057\u7559\u8fde\u7ebf" },
44     { "Overwrite", "\u8986\u5199" },
45     { "RMIoverHTTP", "Tunnel Objects via HTTP" },
46     { "ConnectionError", "\u8fde\u673a\u9519\u8bef" },
47     { "ServerNotActive", "\u670d\u52a1\u5668\u6ca1\u53cd\u5e94" }
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