KickJava   Java API By Example, From Geeks To Geeks.

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


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 Marko Bubalo
22  * @version $Id: SetupRes_hr.java,v 1.2 2003/10/29 21:49:09 jjanke Exp $
23  */

24 public class SetupRes_hr extends ListResourceBundle
25 {
26     /** Translation Info */
27     /** Translation Info */
28     static final Object JavaDoc[][] contents = new String JavaDoc[][]{
29     { "CompiereServerSetup", "Postavke Compiere servera" },
30     { "Ok", "U redu" },
31     { "File", "Datoteka" },
32     { "Exit", "Izlaz" },
33     { "Help", "Pomoć" },
34     { "PleaseCheck", "Molim provjeriti" },
35     { "UnableToConnect", "Greška u spajanju na Compiere web pomoć" },
36     //
37
{ "CompiereHomeInfo", "Compiere Home je glavni direktorij" },
38     { "CompiereHome", "Compiere Home" },
39     { "WebPortInfo", "Web (HTML) Port" },
40     { "WebPort", "Web Port" },
41     { "AppsServerInfo", "Naziv servera aplikacije" },
42     { "AppsServer", "Server aplikacije" },
43     { "DatabaseTypeInfo", "Tip baze podataka" },
44     { "DatabaseType", "Tip baze podataka" },
45     { "DatabaseNameInfo", "Naziv baze " },
46     { "DatabaseName", "Naziv baze (SID)" },
47     { "DatabasePortInfo", "Database Listener Port" },
48     { "DatabasePort", "Port baze" },
49     { "DatabaseUserInfo", "Database Compiere User ID" },
50     { "DatabaseUser", "Korisnik baze" },
51     { "DatabasePasswordInfo", "Lozinka korisnika baze" },
52     { "DatabasePassword", "Lozinka baze" },
53     { "TNSNameInfo", "TNS or Global Database Name" },
54     { "TNSName", "TNS Name" },
55     { "SystemPasswordInfo", "Lozinka korisnika Sytem" },
56     { "SystemPassword", "System lozinka" },
57     { "MailServerInfo", "Mail Server" },
58     { "MailServer", "Mail Server" },
59     { "AdminEMailInfo", "Compiere Administrator EMail" },
60     { "AdminEMail", "Admin EMail" },
61     { "DatabaseServerInfo", "Naziv servera baze" },
62     { "DatabaseServer", "Server baze" },
63     { "JavaHomeInfo", "Java Home Folder" },
64     { "JavaHome", "Java Home" },
65     { "JNPPortInfo", "Application Server JNP Port" },
66     { "JNPPort", "JNP Port" },
67     { "MailUserInfo", "Compiere Mail korisnik" },
68     { "MailUser", "Mail korisnik" },
69     { "MailPasswordInfo", "Compiere Mail lozinka korisnika" },
70     { "MailPassword", "Mail lozinka" },
71
72     { "TestInfo", "Test postavki" },
73     { "Test", "Test" },
74     { "SaveInfo", "Sačuvati postavke" },
75     { "Save", "Sačuvati" },
76     { "HelpInfo", "Pomoć" },
77     //
78
{ "ServerError", "Server Setup Error" },
79     { "ErrorJavaHome", "Error Java Home" },
80     { "ErrorCompiereHome", "Error Compiere Home" },
81     { "ErrorAppsServer", "Error Apps Server (do not use localhost)" },
82     { "ErrorWebPort", "Error Web Port" },
83     { "ErrorJNPPort", "Error JNP Port" },
84     { "ErrorDatabaseServer", "Error Database Server (do not use localhost)" },
85     { "ErrorDatabasePort", "Error Database Port" },
86     { "ErrorJDBC", "Error JDBC Connection" },
87     { "ErrorTNS", "Error TNS Connection" },
88     { "ErrorMailServer", "Error Mail Server (do not use localhost)" },
89     { "ErrorMail", "Error Mail" },
90     { "ErrorSave", "Error Sving File" },
91
92     { "EnvironmentSaved", "Environment saved\nYou can now start the Application Server." }
93
94     };
95
96     /**
97      * Get Contents
98      * @return contents
99      */

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

105 } // SerupRes
Popular Tags