001: /* ========================================================================
002: * JCommon : a free general purpose class library for the Java(tm) platform
003: * ========================================================================
004: *
005: * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors.
006: *
007: * Project Info: http://www.jfree.org/jcommon/index.html
008: *
009: * This library is free software; you can redistribute it and/or modify it
010: * under the terms of the GNU Lesser General Public License as published by
011: * the Free Software Foundation; either version 2.1 of the License, or
012: * (at your option) any later version.
013: *
014: * This library is distributed in the hope that it will be useful, but
015: * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
016: * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
017: * License for more details.
018: *
019: * You should have received a copy of the GNU Lesser General Public
020: * License along with this library; if not, write to the Free Software
021: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
022: * USA.
023: *
024: * [Java is a trademark or registered trademark of Sun Microsystems, Inc.
025: * in the United States and other countries.]
026: *
027: * ----------------------
028: * AboutResources_pl.java
029: * ----------------------
030: * (C) Copyright 2002-2004, by Object Refinery Limited.
031: *
032: * Original Author: David Gilbert (for Object Refinery Limited);
033: * Polish translation: Krzysztof Paz (kpaz@samorzad.pw.edu.pl);
034: * Fixed char-encoding Piotr Bzdyl (piotr@geek.krakow.pl)
035: *
036: * $Id: AboutResources_pl.java,v 1.4 2006/01/25 23:11:46 taqua Exp $
037: *
038: * Changes
039: * -------
040: * 15-Mar-2002 : Version 1 (DG);
041: * 14-Oct-2002 : Fixed errors reported by Checkstyle (DG);
042: * 31-Jan-2003 : Fixed character encoding (PB);
043: *
044: */
045:
046: package org.jfree.ui.about.resources;
047:
048: import java.awt.event.ActionEvent;
049: import java.awt.event.KeyEvent;
050: import java.util.ListResourceBundle;
051:
052: import javax.swing.KeyStroke;
053:
054: /**
055: * A resource bundle that stores all the user interface items that might need localisation.
056: *
057: * @author KP
058: */
059: public class AboutResources_pl extends ListResourceBundle {
060:
061: /**
062: * Default constructor.
063: */
064: public AboutResources_pl() {
065: }
066:
067: /**
068: * Returns the array of strings in the resource bundle.
069: *
070: * @return the resources.
071: */
072: public Object[][] getContents() {
073: return CONTENTS;
074: }
075:
076: /** The resources to be localised. */
077: private static final Object[][] CONTENTS = {
078:
079: { "about-frame.tab.about", "Informacja o" },
080: { "about-frame.tab.system", "System" },
081: { "about-frame.tab.contributors", "Tw\u00f3rcy" },
082: { "about-frame.tab.licence", "Licencja" },
083: { "about-frame.tab.libraries", "Biblioteki" },
084:
085: { "contributors-table.column.name", "Nazwa:" },
086: { "contributors-table.column.contact", "Kontakt:" },
087:
088: { "libraries-table.column.name", "Nazwa:" },
089: { "libraries-table.column.version", "Wersja:" },
090: { "libraries-table.column.licence", "Licencja:" },
091: { "libraries-table.column.info", "Inne informacje:" },
092:
093: { "system-frame.title", "W?a\u015bciwo\u015bci systemowe" },
094:
095: { "system-frame.button.close", "Zamknij" },
096: { "system-frame.button.close.mnemonic", new Character('Z') },
097:
098: { "system-frame.menu.file", "Plik" },
099: { "system-frame.menu.file.mnemonic", new Character('P') },
100:
101: { "system-frame.menu.file.close", "Zamknij" },
102: { "system-frame.menu.file.close.mnemonic",
103: new Character('K') },
104:
105: { "system-frame.menu.edit", "Edycja" },
106: { "system-frame.menu.edit.mnemonic", new Character('E') },
107:
108: { "system-frame.menu.edit.copy", "Kopiuj" },
109: { "system-frame.menu.edit.copy.mnemonic",
110: new Character('C') },
111:
112: { "system-properties-table.column.name",
113: "Nazwa w?a\u015bciwo\u015bci:" },
114: { "system-properties-table.column.value",
115: "Warto\u015b\u0107:" },
116:
117: { "system-properties-panel.popup-menu.copy", "Kopiuj" },
118: {
119: "system-properties-panel.popup-menu.copy.accelerator",
120: KeyStroke.getKeyStroke(KeyEvent.VK_C,
121: ActionEvent.CTRL_MASK) },
122:
123: };
124:
125: }
|