KickJava   Java API By Example, From Geeks To Geeks.

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


1 /******************************************************************************
2
3  * The contents of this file are subject to the Compiere License Version 1.1
4
5  * ("License"); You may not use this file except in compliance with the License
6
7  * You may obtain a copy of the License at http://www.compiere.org/license.html
8
9  * Software distributed under the License is distributed on an "AS IS" basis,
10
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
12
13  * the specific language governing rights and limitations under the License.
14
15  * The Original Code is Compiere ERP & CRM Business Solution
16
17  * The Initial Developer of the Original Code is Jorg Janke and ComPiere, Inc.
18
19  * Portions created by Jorg Janke are Copyright (C) 1999-2001 Jorg Janke, parts
20
21  * created by ComPiere are Copyright (C) ComPiere, Inc.; All Rights Reserved.
22
23  * Contributor(s): ______________________________________.
24
25  *****************************************************************************/

26
27 package org.compiere.apps;
28
29
30
31 import java.util.*;
32
33
34
35 /**
36
37  * Resource Bundle for Finnish language
38
39  *
40
41  * @author Petteri Soininen (petteri.soininen@netorek.fi)
42
43  * @version $Id: ALoginRes_fi.java,v 1.1 2003/08/26 17:31:06 jjanke Exp $
44
45  */

46
47 public final class ALoginRes_fi extends ListResourceBundle
48
49 {
50
51
52     /** Translation Content */
53
54     static final Object JavaDoc[][] contents = new String JavaDoc[][]
55
56     {
57
58     { "Connection", "Yhteys" },
59
60     { "Defaults", "Oletusarvot" },
61
62     { "Login", "Compiere Login" },
63
64     { "File", "Tiedosto" },
65
66     { "Exit", "Poistu" },
67
68     { "Help", "Ohje" },
69
70     { "About", "About" },
71
72     { "Host", "Host" },
73
74     { "Database", "Tietokanta" },
75
76     { "User", "Käyttäjätunnus" },
77
78     { "EnterUser", "Anna sovelluksen käyttäjätunnus" },
79
80     { "Password", "Salasana" },
81
82     { "EnterPassword", "Anna sovelluksen salasana" },
83
84     { "Language", "Kieli" },
85
86     { "SelectLanguage", "Valitse kieli" },
87
88     { "Role", "Rooli" },
89
90     { "Client", "Client" },
91
92     { "Organization", "Organisaatio" },
93
94     { "Date", "Päivämäärä" },
95
96     { "Warehouse", "Tietovarasto" },
97
98     { "Printer", "Tulostin" },
99
100     { "Connected", "Yhdistetty" },
101
102     { "NotConnected", "Ei yhteyttä" },
103
104     { "DatabaseNotFound", "Tietokantaa ei löydy" },
105
106     { "UserPwdError", "Käyttäjätunnus ja salasana eivät vastaa toisiaan" },
107
108     { "RoleNotFound", "Roolia ei löydy tai se ei ole täydellinen" },
109
110     { "Authorized", "Valtuutettu" },
111
112     { "Ok", "Hyväksy" },
113
114     { "Cancel", "Peruuta" },
115
116     { "VersionConflict", "Versioristiriita:" },
117
118     { "VersionInfo", "Server <> Client" },
119
120     { "PleaseUpgrade", "Ole hyvä ja aja päivitysohjelma" }
121
122     };
123
124
125
126     /**
127
128      * Get Contents
129
130      * @return context
131
132      */

133
134     public Object JavaDoc[][] getContents()
135
136     {
137
138         return contents;
139
140     } // getContents
141

142 } // ALoginRes
143

144
145
146
Popular Tags