KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > compiere > apps > ALoginRes_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.apps;
15
16 import java.util.*;
17
18 /**
19  * Base Resource Bundle
20  *
21  * @author ZhaoXing Meng
22  * @version $Id: ALoginRes_zh_CN.java,v 1.2 2002/11/05 06:16:59 jjanke Exp $
23  */

24 public final class ALoginRes_zh_CN extends ListResourceBundle
25 {
26     /** Translation Content */
27     static final Object JavaDoc[][] contents = new String JavaDoc[][]
28     {
29     { "Connection", "\u8fde\u673a" },
30     { "Defaults", "\u9ed8\u8ba4\u8bbe\u7f6e" },
31     { "Login", "Compiere \u767b\u5f55" },
32     { "File", "\u6587\u4ef6" },
33     { "Exit", "\u9000\u51fa" },
34     { "Help", "\u5e2e\u52a9" },
35     { "About", "\u5173\u4e8e" },
36     { "Host", "\u4e3b\u673a" },
37     { "Database", "\u6570\u636e\u5e93" },
38     { "User", "\u7528\u6237\u53f7" },
39     { "EnterUser", "\u8bf7\u8f93\u5165\u7528\u6237\u53f7" },
40     { "Password", "\u53e3\u4ee4" },
41     { "EnterPassword", "\u8bf7\u8f93\u5165\u53e3\u4ee4" },
42     { "Language", "\u8bed\u8a00" },
43     { "SelectLanguage", "\u9009\u62e9\u8bed\u8a00" },
44     { "Role", "\u89d2\u8272" },
45     { "Client", "\u5b9e\u4f53" },
46     { "Organization", "\u673a\u6784" },
47     { "Date", "\u65e5\u671f" },
48     { "Warehouse", "\u4ed3\u5e93" },
49     { "Printer", "\u6253\u5370\u673a" },
50     { "Connected", "\u5df2\u5728\u7ebf" },
51     { "NotConnected", "\u672a\u5728\u7ebf" },
52     { "DatabaseNotFound", "\u672a\u627e\u5230\u6570\u636e\u5e93" },
53     { "UserPwdError", "\u7528\u6237\u53f7\u53e3\u4ee4\u4e0d\u6b63\u786e" },
54     { "RoleNotFound", "\u6ca1\u6709\u6b64\u89d2\u8272" },
55     { "Authorized", "\u5df2\u6388\u6743" },
56     { "Ok", "\u786e\u5b9a" },
57     { "Cancel", "\u64a4\u6d88" },
58     { "VersionConflict", "\u7248\u672c\u51b2\u7a81\uff1a" },
59     { "VersionInfo", "\u670d\u52a1\u5668\u7aef <> \u5ba2\u6237\u7aef" },
60     { "PleaseUpgrade", "\u8bf7\u5347\u7ea7\u7a0b\u5e8f" }
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