KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > compiere > apps > ALoginRes_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.apps;
15
16 import java.util.*;
17
18 /**
19  * Base Resource Bundle
20  *
21  * @author kirinlin
22  * @version $Id: ALoginRes_zh.java,v 1.3 2003/01/25 01:33:45 jjanke Exp $
23  */

24 public final class ALoginRes_zh extends ListResourceBundle
25 {
26     /** Translation Content */
27     static final Object JavaDoc[][] contents = new String JavaDoc[][]
28     {
29     { "Connection", "\u9023\u7dda" },
30     { "Defaults", "\u9810\u8a2d\u503c" },
31     { "Login", "Compiere \u767b\u5165" },
32     { "File", "\u6a94\u6848" },
33     { "Exit", "\u96e2\u958b" },
34     { "Help", "\u8aaa\u660e" },
35     { "About", "\u95dc\u65bc" },
36     { "Host", "\u4e3b\u6a5f" },
37     { "Database", "\u8cc7\u6599\u5eab" },
38     { "User", "\u5e33\u865f" },
39     { "EnterUser", "\u8acb\u9375\u5165\u5e33\u865f" },
40     { "Password", "\u5bc6\u78bc" },
41     { "EnterPassword", "\u8acb\u9375\u5165\u5bc6\u78bc" },
42     { "Language", "\u8a9e\u8a00" },
43     { "SelectLanguage", "\u9078\u64c7\u8a9e\u8a00" },
44     { "Role", "\u89d2\u8272" },
45     { "Client", "\u5ba2\u6236\u7aef" },
46     { "Organization", "\u7d44\u7e54" },
47     { "Date", "\u65e5\u671f" },
48     { "Warehouse", "\u5009\u5eab" },
49     { "Printer", "\u5370\u8868\u6a5f" },
50     { "Connected", "\u5df2\u9023\u7dda" },
51     { "NotConnected", "\u672a\u9023\u7dda" },
52     { "DatabaseNotFound", "\u627e\u4e0d\u5230\u8cc7\u6599\u5eab" },
53     { "UserPwdError", "\u5e33\u865f\u5bc6\u78bc\u4e0d\u6b63\u78ba" },
54     { "RoleNotFound", "\u6c92\u6709\u9019\u89d2\u8272" },
55     { "Authorized", "\u5df2\u6388\u6b0a" },
56     { "Ok", "\u78ba\u5b9a" },
57     { "Cancel", "\u53d6\u6d88" },
58     { "VersionConflict", "\u7248\u672c\u885d\u7a81:" },
59     { "VersionInfo", "\u4f3a\u670d\u7aef <> \u5ba2\u6236\u7aef" },
60     { "PleaseUpgrade", "\u8acb\u57f7\u884c\u5347\u7d1a\u7a0b\u5f0f" }
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