KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > compiere > apps > ALoginRes_it


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 Gabriele Vivinetto - gabriele.mailing@rvmgroup.it
22  * @version $Id: ALoginRes_it.java,v 1.1 2002/05/23 17:30:33 jjanke Exp $
23  */

24 public final class ALoginRes_it extends ListResourceBundle
25 {
26     static final Object JavaDoc[][] contents = new String JavaDoc[][]{
27     //{ "Connection", "Connection" },
28
{ "Connection", "Connessione" },
29     //{ "Defaults", "Defaults" },
30
{ "Defaults", "Defaults" }, //Need to be checked
31
//{ "Login", "Compiere Login" },
32
{ "Login", "Compiere Login" },
33     //{ "File", "File" },
34
{ "File", "File" },
35     //{ "Exit", "Exit" },
36
{ "Exit", "Esci" },
37     //{ "Help", "Help" },
38
{ "Help", "Aiuto" },
39     //{ "About", "About" },
40
{ "About", "Informazioni" },
41     //{ "Host", "Host" },
42
{ "Host", "Host" },
43     //{ "Database", "Database" },
44
{ "Database", "Database" },
45     //{ "User", "User ID" }, //Need to be checked. Leave "User ID" ?
46
{ "User", "Identificativo Utente" },
47     //{ "EnterUser", "Enter Application User ID" },
48
{ "EnterUser", "Identificativo Utente Applicazione" },
49     //{ "Password", "Password" },
50
{ "Password", "Password" },
51     //{ "EnterPassword", "Enter Application password" },
52
{ "EnterPassword", "Inserimento password Applicazione" },
53     //{ "Language", "Language" },
54
{ "Language", "Linguaggio" },
55     //{ "SelectLanguage", "Select your language" },
56
{ "SelectLanguage", "Selezionate il vostro linguaggio" },
57     //{ "Role", "Role" },
58
{ "Role", "Ruolo" },
59     //{ "Client", "Client" }, //Need to be checked. Everybody agree with the SAP translation ?
60
{ "Client", "Mandante" },
61     //{ "Organization", "Organization" },
62
{ "Organization", "Organizzazione" },
63     //{ "Date", "Date" },
64
{ "Date", "Data" },
65     //{ "Warehouse", "Warehouse" },
66
{ "Warehouse", "Magazzino" },
67     //{ "Printer", "Printer" },
68
{ "Printer", "Stampante" },
69     //{ "Connected", "Connected" },
70
{ "Connected", "Connesso" },
71     //{ "NotConnected", "Not Connected" },
72
{ "NotConnected", "Non Connesso" },
73     //{ "DatabaseNotFound", "Database not found" },
74
{ "DatabaseNotFound", "Database non trovato" },
75     //{ "UserPwdError", "User does not match password" },
76
{ "UserPwdError", "L'Utente non corrisponde alla password" },
77     //{ "RoleNotFound", "Role not found" },
78
{ "RoleNotFound", "Ruolo non trovato" },
79     //{ "Authorized", "Authorized" },
80
{ "Authorized", "Authorizzato" },
81     //{ "Ok", "Ok" },
82
{ "Ok", "Ok" },
83     //{ "Cancel", "Cancel" },
84
{ "Cancel", "Cancella" },
85     //{ "VersionConflict", "Version Conflict:" },
86
{ "VersionConflict", "Conflitto di Versione:" },
87     //{ "VersionInfo", "Server <> Client" },
88
{ "VersionInfo", "Server <> Client" },
89     //{ "PleaseUpgrade", "Please run the update program" }
90
{ "PleaseUpgrade", "Prego lanciare il programma di update" }
91     };
92     public Object JavaDoc[][] getContents()
93     {
94         return contents;
95     }
96 }
Popular Tags