KickJava   Java API By Example, From Geeks To Geeks.

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


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 Marek Mosiewicz <marek.mosiewicz@jotel.com.pl>
22  * @version $Id: SetupRes_pl.java,v 1.2 2003/05/24 02:31:01 jjanke Exp $
23  */

24 public class SetupRes_pl extends ListResourceBundle
25 {
26     /** Translation Info */
27     static final Object JavaDoc[][] contents = new String JavaDoc[][]{
28     { "CompiereServerSetup", "Konfiguracja serwera Compiere" },
29     { "Ok", "Ok" },
30     { "File", "Plik" },
31     { "Exit", "Wyjście" },
32     { "Help", "Pomoc" },
33     { "PleaseCheck", "Proszę sprawdzić" },
34     { "UnableToConnect", "Nie można połączyć się ze stroną Compiere w celu uzyskania pomocy" },
35
36     { "CompiereHomeInfo", "Folder Compiere jest folderem głównym" },
37     { "CompiereHome", "Folder Compiere" },
38     { "WebPortInfo", "Web (HTML) Port" },
39     { "WebPort", "Web Port" },
40     { "AppsServerInfo", "Nazwa serwera aplikacji" },
41     { "AppsServer", "Apps Server" },
42     { "DatabaseTypeInfo", "Typ bazy danych" },
43     { "DatabaseType", "Typ Bazy Danych" },
44     { "DatabaseNameInfo", "Nazwa bazy danych " },
45     { "DatabaseName", "Nazwa bazy danych (SID)" },
46     { "DatabasePortInfo", "Port listenera bazy danych" },
47     { "DatabasePort", "Port bazy danych" },
48     { "DatabaseUserInfo", "Użytkownik Compiere w bazie danych" },
49     { "DatabaseUser", "Użytkownik bazy" },
50     { "DatabasePasswordInfo", "Hasło użytkownika Compiere" },
51     { "DatabasePassword", "Hasło użytkownika" },
52     { "TNSNameInfo", "TNS lub Globalna Nazwa Bazy (dla Oracle)" },
53     { "TNSName", "Nazwa TNS" },
54     { "SystemPasswordInfo", "Hasło dla użytkownika System w bazie danych" },
55     { "SystemPassword", "Hasło System" },
56     { "MailServerInfo", "Serwer pocztowy" },
57     { "MailServer", "Serwer pocztowy" },
58     { "AdminEMailInfo", "Adres email administartora Compiere" },
59     { "AdminEMail", "EMail administ." },
60     { "DatabaseServerInfo", "Nazwa serwera bazy danych" },
61     { "DatabaseServer", "Serwer bazy danych" },
62     { "JavaHomeInfo", "Folder Javy" },
63     { "JavaHome", "Folder Javy" },
64     { "JNPPortInfo", "Application Server JNP Port" },
65     { "JNPPort", "JNP Port" },
66     { "MailUserInfo", "Użytkownik poczty dla Compiere" },
67     { "MailUser", "Użytkownik poczty" },
68     { "MailPasswordInfo", "Hasło dla konta pocztowego Compiere" },
69     { "MailPassword", "Hasło poczty" },
70
71     { "TestInfo", "Sprawdź ustawienia" },
72     { "Test", "Testuj" },
73     { "SaveInfo", "Zapisz ustawienia" },
74     { "Save", "Zapisz" },
75     { "HelpInfo", "Pomoc" },
76
77     { "ServerError", "Błędne ustawienia" },
78     { "ErrorJavaHome", "Niepoprawny folder Javy" },
79     { "ErrorCompiereHome", "Nie stwierdzono zainstalowanego systemu Compiere w miescu wskazanym jako Folder Compiere" },
80     { "ErrorAppsServer", "Niepoprawny serwer aplikacji (nie może być localhost)" },
81     { "ErrorWebPort", "Niepoprawny port WWW" },
82     { "ErrorJNPPort", "Niepoprawny port JNP" },
83     { "ErrorDatabaseServer", "Niepoprawny serwer bazy (nie może być localhost)" },
84     { "ErrorDatabasePort", "Niepoprawny port serwer bazy" },
85     { "ErrorJDBC", "Wystąpił błąd przy próbie połącznia się z bazą danych" },
86     { "ErrorTNS", "Wystąpił błąd przy próbie połącznia się z bazą danych poprzez TNS" },
87     { "ErrorMailServer", "Niepoprawny serwer pocztowy (nie może być localhost)" },
88     { "ErrorMail", "Error Mail" },
89     { "ErrorSave", "Błąd przy zapisywaniu konfiguracji" },
90
91     { "EnvironmentSaved", "Ustawienia zapisany\nMusisz ponownie uruchomić serwer." },
92     { "RMIoverHTTP", "Tunnel Objects via HTTP" },
93     { "RMIoverHTTPInfo", "RMI over HTTP allows to go through firewalls" }
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