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
046package org.jfree.ui.about.resources;
047
048import java.awt.event.ActionEvent;
049import java.awt.event.KeyEvent;
050import java.util.ListResourceBundle;
051
052import 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 */
059public 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", new Character('K')},
103
104        {"system-frame.menu.edit",                "Edycja"},
105        {"system-frame.menu.edit.mnemonic",       new Character('E')},
106
107        {"system-frame.menu.edit.copy",           "Kopiuj"},
108        {"system-frame.menu.edit.copy.mnemonic",  new Character('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}