KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > compiere > db > DBRes_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.db;
28
29
30
31 import java.util.*;
32
33
34
35 /**
36
37  * Connection Resource Strings for Finnish language
38
39  *
40
41  * @author Petteri Soininen (petteri.soininen@netorek.fi)
42
43  * @version $Id: DBRes_fi.java,v 1.2 2003/09/27 01:22:18 jjanke Exp $
44
45  */

46
47 public class DBRes_fi extends ListResourceBundle
48
49 {
50
51     /**
52
53     * Data
54
55     */

56
57     static final Object JavaDoc[][] contents = new String JavaDoc[][]{
58
59     { "CConnectionDialog", "Compiere-yhteys" },
60
61     { "Name", "Nimi" },
62
63     { "AppsHost", "Sovellusverkkoasema" },
64
65     { "AppsPort", "Sovellusportti" },
66
67     { "TestApps", "Testisovelluspalvelin" },
68
69     { "DBHost", "Tietokantaverkkoasema" },
70
71     { "DBPort", "Tietokantaportti" },
72
73     { "DBName", "Tietokannan nimi" },
74
75     { "DBUidPwd", "Käyttäjätunnus / Salasana" },
76
77     { "ViaFirewall", "Palomuurin läpi" },
78
79     { "FWHost", "Palomuuriverkkoasema" },
80
81     { "FWPort", "Palomuuriportti" },
82
83     { "TestConnection", "Testitietokanta" },
84
85     { "Type", "Tietokantatyyppi" },
86
87     { "BequeathConnection", "Periytyvä yhteys" },
88
89     { "Overwrite", "Korvaa" },
90
91     { "RMIoverHTTP", "Tunneloi Objekteja HTTP kautta" },
92
93     { "ConnectionError", "Yhteysvirhe" },
94
95     { "ServerNotActive", "Palvelin ei aktiivinen" }
96
97     };
98
99
100
101     /**
102
103      * Get Contsnts
104
105      * @return contents
106
107      */

108
109     public Object JavaDoc[][] getContents()
110
111     {
112
113         return contents;
114
115     } // getContent
116

117 } // Res
118

119
120
121
Popular Tags