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.5 2007/11/02 17:50:36 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    import javax.swing.KeyStroke;
052    
053    /**
054     * A resource bundle that stores all the user interface items that might need localisation.
055     *
056     * @author KP
057     */
058    public class AboutResources_pl extends ListResourceBundle {
059    
060        /**
061         * Default constructor.
062         */
063        public AboutResources_pl() {
064        }
065    
066        /**
067         * Returns the array of strings in the resource bundle.
068         *
069         * @return the resources.
070         */
071        public Object[][] getContents() {
072            return CONTENTS;
073        }
074    
075        /** The resources to be localised. */
076        private static final Object[][] CONTENTS = {
077    
078            {"about-frame.tab.about",             "Informacja o"},
079            {"about-frame.tab.system",            "System"},
080            {"about-frame.tab.contributors",      "Tw\u00f3rcy"},
081            {"about-frame.tab.licence",           "Licencja"},
082            {"about-frame.tab.libraries",         "Biblioteki"},
083    
084            {"contributors-table.column.name",    "Nazwa:"},
085            {"contributors-table.column.contact", "Kontakt:"},
086    
087            {"libraries-table.column.name",       "Nazwa:"},
088            {"libraries-table.column.version",    "Wersja:"},
089            {"libraries-table.column.licence",    "Licencja:"},
090            {"libraries-table.column.info",       "Inne informacje:"},
091    
092            {"system-frame.title",                "W?a\u015bciwo\u015bci systemowe"},
093    
094            {"system-frame.button.close",         "Zamknij"},
095            {"system-frame.button.close.mnemonic", new Character('Z')},
096    
097            {"system-frame.menu.file",                "Plik"},
098            {"system-frame.menu.file.mnemonic",       new Character('P')},
099    
100            {"system-frame.menu.file.close",          "Zamknij"},
101            {"system-frame.menu.file.close.mnemonic", new Character('K')},
102    
103            {"system-frame.menu.edit",                "Edycja"},
104            {"system-frame.menu.edit.mnemonic",       new Character('E')},
105    
106            {"system-frame.menu.edit.copy",           "Kopiuj"},
107            {"system-frame.menu.edit.copy.mnemonic",  new Character('C')},
108    
109            {"system-properties-table.column.name",   "Nazwa w?a\u015bciwo\u015bci:"},
110            {"system-properties-table.column.value",  "Warto\u015b\u0107:"},
111    
112            {"system-properties-panel.popup-menu.copy", "Kopiuj" },
113            {"system-properties-panel.popup-menu.copy.accelerator",
114                                KeyStroke.getKeyStroke(KeyEvent.VK_C, ActionEvent.CTRL_MASK) },
115    
116        };
117    
118    }