KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jfree > ui > about > resources > AboutResources_pl


1 /* ========================================================================
2  * JCommon : a free general purpose class library for the Java(tm) platform
3  * ========================================================================
4  *
5  * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors.
6  *
7  * Project Info: http://www.jfree.org/jcommon/index.html
8  *
9  * This library is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 of the License, or
12  * (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
17  * License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
22  * USA.
23  *
24  * [Java is a trademark or registered trademark of Sun Microsystems, Inc.
25  * in the United States and other countries.]
26  *
27  * ----------------------
28  * AboutResources_pl.java
29  * ----------------------
30  * (C) Copyright 2002-2004, by Object Refinery Limited.
31  *
32  * Original Author: David Gilbert (for Object Refinery Limited);
33  * Polish translation: Krzysztof Paz (kpaz@samorzad.pw.edu.pl);
34  * Fixed char-encoding Piotr Bzdyl (piotr@geek.krakow.pl)
35  *
36  * $Id: AboutResources_pl.java,v 1.4 2006/01/25 23:11:46 taqua Exp $
37  *
38  * Changes
39  * -------
40  * 15-Mar-2002 : Version 1 (DG);
41  * 14-Oct-2002 : Fixed errors reported by Checkstyle (DG);
42  * 31-Jan-2003 : Fixed character encoding (PB);
43  *
44  */

45
46 package org.jfree.ui.about.resources;
47
48 import java.awt.event.ActionEvent JavaDoc;
49 import java.awt.event.KeyEvent JavaDoc;
50 import java.util.ListResourceBundle JavaDoc;
51
52 import javax.swing.KeyStroke JavaDoc;
53
54 /**
55  * A resource bundle that stores all the user interface items that might need localisation.
56  *
57  * @author KP
58  */

59 public class AboutResources_pl extends ListResourceBundle JavaDoc {
60
61     /**
62      * Default constructor.
63      */

64     public AboutResources_pl() {
65     }
66
67     /**
68      * Returns the array of strings in the resource bundle.
69      *
70      * @return the resources.
71      */

72     public Object JavaDoc[][] getContents() {
73         return CONTENTS;
74     }
75
76     /** The resources to be localised. */
77     private static final Object JavaDoc[][] CONTENTS = {
78
79         {"about-frame.tab.about", "Informacja o"},
80         {"about-frame.tab.system", "System"},
81         {"about-frame.tab.contributors", "Tw\u00f3rcy"},
82         {"about-frame.tab.licence", "Licencja"},
83         {"about-frame.tab.libraries", "Biblioteki"},
84
85         {"contributors-table.column.name", "Nazwa:"},
86         {"contributors-table.column.contact", "Kontakt:"},
87
88         {"libraries-table.column.name", "Nazwa:"},
89         {"libraries-table.column.version", "Wersja:"},
90         {"libraries-table.column.licence", "Licencja:"},
91         {"libraries-table.column.info", "Inne informacje:"},
92
93         {"system-frame.title", "W?a\u015bciwo\u015bci systemowe"},
94
95         {"system-frame.button.close", "Zamknij"},
96         {"system-frame.button.close.mnemonic", new Character JavaDoc('Z')},
97
98         {"system-frame.menu.file", "Plik"},
99         {"system-frame.menu.file.mnemonic", new Character JavaDoc('P')},
100
101         {"system-frame.menu.file.close", "Zamknij"},
102         {"system-frame.menu.file.close.mnemonic", new Character JavaDoc('K')},
103
104         {"system-frame.menu.edit", "Edycja"},
105         {"system-frame.menu.edit.mnemonic", new Character JavaDoc('E')},
106
107         {"system-frame.menu.edit.copy", "Kopiuj"},
108         {"system-frame.menu.edit.copy.mnemonic", new Character JavaDoc('C')},
109
110         {"system-properties-table.column.name", "Nazwa w?a\u015bciwo\u015bci:"},
111         {"system-properties-table.column.value", "Warto\u015b\u0107:"},
112
113         {"system-properties-panel.popup-menu.copy", "Kopiuj" },
114         {"system-properties-panel.popup-menu.copy.accelerator",
115                             KeyStroke.getKeyStroke(KeyEvent.VK_C, ActionEvent.CTRL_MASK) },
116
117     };
118
119 }
120
Popular Tags