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.2 2005/10/18 13:19:26 mungady 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         * Returns the array of strings in the resource bundle.
063         *
064         * @return the resources.
065         */
066        public Object[][] getContents() {
067            return CONTENTS;
068        }
069    
070        /** The resources to be localised. */
071        static final Object[][] CONTENTS = {
072    
073            {"about-frame.tab.about",             "Informacja o"},
074            {"about-frame.tab.system",            "System"},
075            {"about-frame.tab.contributors",      "Tw\u00f3rcy"},
076            {"about-frame.tab.licence",           "Licencja"},
077            {"about-frame.tab.libraries",         "Biblioteki"},
078    
079            {"contributors-table.column.name",    "Nazwa:"},
080            {"contributors-table.column.contact", "Kontakt:"},
081    
082            {"libraries-table.column.name",       "Nazwa:"},
083            {"libraries-table.column.version",    "Wersja:"},
084            {"libraries-table.column.licence",    "Licencja:"},
085            {"libraries-table.column.info",       "Inne informacje:"},
086    
087            {"system-frame.title",                "W?a\u015bciwo\u015bci systemowe"},
088    
089            {"system-frame.button.close",         "Zamknij"},
090            {"system-frame.button.close.mnemonic", new Character('Z')},
091    
092            {"system-frame.menu.file",                "Plik"},
093            {"system-frame.menu.file.mnemonic",       new Character('P')},
094    
095            {"system-frame.menu.file.close",          "Zamknij"},
096            {"system-frame.menu.file.close.mnemonic", new Character('K')},
097    
098            {"system-frame.menu.edit",                "Edycja"},
099            {"system-frame.menu.edit.mnemonic",       new Character('E')},
100    
101            {"system-frame.menu.edit.copy",           "Kopiuj"},
102            {"system-frame.menu.edit.copy.mnemonic",  new Character('C')},
103    
104            {"system-properties-table.column.name",   "Nazwa w?a\u015bciwo\u015bci:"},
105            {"system-properties-table.column.value",  "Warto\u015b\u0107:"},
106    
107            {"system-properties-panel.popup-menu.copy", "Kopiuj" },
108            {"system-properties-panel.popup-menu.copy.accelerator",
109                                KeyStroke.getKeyStroke(KeyEvent.VK_C, ActionEvent.CTRL_MASK) },
110    
111        };
112    
113    }