KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > compiere > install > SetupRes_ml


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-2002 Jorg Janke, parts
11  * created by ComPiere are Copyright (C) ComPiere, Inc.; All Rights Reserved.
12  * Contributor(s): ______________________________________.
13  *****************************************************************************/

14 package org.compiere.install;
15
16 import java.util.*;
17
18 /**
19  * Setup Resources
20  *
21  * @author Jorg Janke
22  * @version $Id: SetupRes_ml.java,v 1.1 2003/08/25 02:33:53 jjanke Exp $
23  */

24 public class SetupRes_ml extends ListResourceBundle
25 {
26     /** Translation Info */
27     static final Object JavaDoc[][] contents = new String JavaDoc[][]{
28     { "CompiereServerSetup", "Compiere Server Setup" },
29     { "Ok", "Ok" },
30     { "File", "File" },
31     { "Exit", "Exit" },
32     { "Help", "Help" },
33     { "PleaseCheck", "Please Check" },
34     { "UnableToConnect", "Unable get help from Compiere Web Site" },
35
36     { "CompiereHomeInfo", "Compiere Home is the main Folder" },
37     { "CompiereHome", "Compiere Home" },
38     { "WebPortInfo", "Web (HTML) Port" },
39     { "WebPort", "Web Port" },
40     { "AppsServerInfo", "Application Server Name" },
41     { "AppsServer", "Apps Server" },
42     { "DatabaseTypeInfo", "Database Type" },
43     { "DatabaseType", "Database Type" },
44     { "DatabaseNameInfo", "Database Name " },
45     { "DatabaseName", "Database Name (SID)" },
46     { "DatabasePortInfo", "Database Listener Port" },
47     { "DatabasePort", "Database Port" },
48     { "DatabaseUserInfo", "Database Compiere User ID" },
49     { "DatabaseUser", "Database User" },
50     { "DatabasePasswordInfo", "Database Compiere User Password" },
51     { "DatabasePassword", "Database Password" },
52     { "TNSNameInfo", "TNS or Global Database Name" },
53     { "TNSName", "TNS Name" },
54     { "SystemPasswordInfo", "System User Password" },
55     { "SystemPassword", "System Password" },
56     { "MailServerInfo", "Mail Server" },
57     { "MailServer", "Mail Server" },
58     { "AdminEMailInfo", "Compiere Administrator EMail" },
59     { "AdminEMail", "Admin EMail" },
60     { "DatabaseServerInfo", "Database Server Name" },
61     { "DatabaseServer", "Database Server" },
62     { "JavaHomeInfo", "Java Home Folder" },
63     { "JavaHome", "Java Home" },
64     { "JNPPortInfo", "Application Server JNP Port" },
65     { "JNPPort", "JNP Port" },
66     { "MailUserInfo", "Compiere Mail User" },
67     { "MailUser", "Mail User" },
68     { "MailPasswordInfo", "Compiere Mail User Password" },
69     { "MailPassword", "Mail Password" },
70
71     { "TestInfo", "Test the Setup" },
72     { "Test", "Test" },
73     { "SaveInfo", "Save the Setup" },
74     { "Save", "Save" },
75     { "HelpInfo", "Get Help" },
76
77     { "ServerError", "Server Setup Error" },
78     { "ErrorJavaHome", "Error Java Home" },
79     { "ErrorCompiereHome", "Error Compiere Home" },
80     { "ErrorAppsServer", "Error Apps Server (do not use localhost)" },
81     { "ErrorWebPort", "Error Web Port" },
82     { "ErrorJNPPort", "Error JNP Port" },
83     { "ErrorDatabaseServer", "Error Database Server (do not use localhost)" },
84     { "ErrorDatabasePort", "Error Database Port" },
85     { "ErrorJDBC", "Error JDBC Connection" },
86     { "ErrorTNS", "Error TNS Connection" },
87     { "ErrorMailServer", "Error Mail Server (do not use localhost)" },
88     { "ErrorMail", "Error Mail" },
89     { "ErrorSave", "Error Sving File" },
90
91     { "EnvironmentSaved", "Environment saved\nYou need to re-start the server." }
92     };
93
94     /**
95      * Get Contents
96      * @return contents
97      */

98     public Object JavaDoc[][] getContents()
99     {
100         return contents;
101     } // getContents
102

103 } // SerupRes
Popular Tags