1# basic_pl.properties 3 Feb 2008
2#
3# This properties file is used to create a PropertyResourceBundle
4# It contains Locale specific strings used in Swing
5# Currently, the following components need this for support:
6#
7#    ColorChooser
8#    FileChooser
9#    OptionPane
10#
11# When this file is read in, the strings are put into the
12# defaults table.  This is an implementation detail of the current
13# workings of Swing.  DO NOT DEPEND ON THIS.
14# This may change in future versions of Swing as we improve localization
15# support.
16#
17#                        MNEMONIC NOTE:
18# Many of strings in this file are used by widgets that have a
19# mnemonic, for example:
20#   ColorChooser.rgbNameText=RGB
21#   ColorChooser.rgbMnemonic=71
22#   ColorChooser.rgbDisplayedMnemonicIndex=1
23# Indicates that the tab in the ColorChooser for RGB colors will have
24# the text 'RGB', further the mnemonic character will be 'g' and that
25# a decoration will be provided under the 'G'. This will typically
26# look like:  RGB
27#              -
28# 71 corresponds to the decimal value of the VK constant defined
29# in java/awt/KeyEvent.java. VK_G is defined as:
30#
31#    public static final int VK_G              = 0x47;
32#
33# 0x47 is a hex number and needs to be converted to decimal.
34# A simple way to calculate this for a-z is to add 64 to the index of
35# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
36# for 'a' is 65, 'b' is 66...
37#
38# The xxDisplayedMnemonicIndex is used to indicate the index of the
39# character that should be underlined in the String, with 0
40# corresponding to the first character in the String.
41#
42# One important thing to remember is that the mnemonic MUST exist in
43# the String, if it does not exist you should add text that makes it
44# exist. This will typically take the form 'XXXX (M)' where M is the
45# character for the mnemonic.
46#
47# 1.18 10/09/03
48# @author Steve Wilson
49#
50# Translated to Polish by Pawel Antkowiak
51
52############ FILE CHOOSER STRINGS #############
53FileChooser.fileDescriptionText=Plik
54FileChooser.directoryDescriptionText=Folder
55FileChooser.newFolderErrorText=B\u0142\u0105d przy tworzeniu nowego folderu
56FileChooser.newFolderErrorSeparator= :
57FileChooser.acceptAllFileFilterText=Wszystkie pliki
58FileChooser.cancelButtonText=Anuluj
59FileChooser.cancelButtonMnemonic=65
60FileChooser.saveButtonText=Zapisz
61FileChooser.saveButtonMnemonic=90
62FileChooser.openButtonText=Otw\u00f3rz
63FileChooser.openButtonMnemonic=79
64FileChooser.saveDialogTitleText=Zapisz
65FileChooser.openDialogTitleText=Otw\u00f3rz
66FileChooser.updateButtonText=Uaktualnij
67FileChooser.updateButtonMnemonic=85
68FileChooser.helpButtonText=Pomoc
69FileChooser.helpButtonMnemonic=80
70FileChooser.directoryOpenButtonText=Otw\u00f3rz
71FileChooser.directoryOpenButtonMnemonic=84
72# These strings are platform dependent not look and feel dependent.
73FileChooser.win32.newFolder=Nowy folder
74FileChooser.win32.newFolder.subsequent=Nowy folder ({0})
75FileChooser.other.newFolder=Nowy folder
76FileChooser.other.newFolder.subsequent=NowyFolder.{0}
77
78## file chooser tooltips ###
79FileChooser.cancelButtonToolTipText=Anuluj wybieranie pliku
80FileChooser.saveButtonToolTipText=Zapisz zaznaczony plik
81FileChooser.openButtonToolTipText=Otw\u00f3rz zaznaczony plik
82FileChooser.updateButtonToolTipText=Uaktualnij list\u0119 plik\u00f3w
83FileChooser.helpButtonToolTipText=Wybieranie plik\u00f3w - pomoc
84FileChooser.directoryOpenButtonToolTipText=Otw\u00f3rz zaznaczony katalog
85
86############ COLOR CHOOSER STRINGS #############
87ColorChooser.previewText=Podgl\u0105d
88ColorChooser.okText=OK
89ColorChooser.cancelText=Anuluj
90ColorChooser.resetText=Reset
91# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
92ColorChooser.resetMnemonic=82
93ColorChooser.sampleText=Przyk\u0142adowy tekst  Przyk\u0142adowy tekst
94ColorChooser.swatchesNameText=Paleta
95ColorChooser.swatchesMnemonic=80
96ColorChooser.swatchesDisplayedMnemonicIndex=0
97ColorChooser.swatchesRecentText=Niedawno u\u017cywane:
98ColorChooser.hsbNameText=HSB
99# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
100# constant, and an index into the text to render the mnemonic as. The
101# mnemonic is xxxMnemonic and the index of the character to underline is
102# xxxDisplayedMnemonicIndex.
103ColorChooser.hsbMnemonic=72
104ColorChooser.hsbDisplayedMnemonicIndex=0
105ColorChooser.hsbHueText=H
106ColorChooser.hsbSaturationText=S
107ColorChooser.hsbBrightnessText=B
108ColorChooser.hsbRedText=R
109ColorChooser.hsbGreenText=G
110ColorChooser.hsbBlueText=B
111ColorChooser.rgbNameText=RGB
112ColorChooser.rgbMnemonic=71
113ColorChooser.rgbDisplayedMnemonicIndex=1
114ColorChooser.rgbRedText=Czerwony
115ColorChooser.rgbRedMnemonic=67
116ColorChooser.rgbGreenText=Zielony
117ColorChooser.rgbGreenMnemonic=90
118ColorChooser.rgbBlueText=Niebieski
119ColorChooser.rgbBlueMnemonic=78
120
121############ OPTION PANE STRINGS #############
122# Mnemonic keys correspond to KeyEvent.VK_XXX constant
123# We only define mnemonics for YES/NO, but for completeness you can
124# define mnemonics for any of the buttons.
125OptionPane.yesButtonText=TAK
126OptionPane.yesButtonMnemonic=84
127OptionPane.noButtonText=NIE
128OptionPane.noButtonMnemonic=78
129OptionPane.okButtonText=OK
130OptionPane.okButtonMnemonic=0
131OptionPane.cancelButtonText=Anuluj
132OptionPane.cancelButtonMnemonic=0
133
134
135############ Abstract Undoable Edit Strings ############
136AbstractUndoableEdit.undoText=Cofnij
137AbstractUndoableEdit.redoText=Powt\u00f3rz
138
139