提交 330c79f5 编写于 作者: K kizune

Merge

...@@ -155,8 +155,10 @@ endif ...@@ -155,8 +155,10 @@ endif
# GUI tools # GUI tools
ifeq ($(GUI_TOOL),true) ifeq ($(GUI_TOOL),true)
ifneq ($(PLATFORM), windows) ifneq ($(PLATFORM), windows)
# Anything with a GUI needs X11 to be linked in. ifneq ($(PLATFORM), macosx)
OTHER_LDLIBS += -L$(OPENWIN_LIB) -lX11 # Anything with a GUI needs X11 to be linked in.
OTHER_LDLIBS += -L$(OPENWIN_LIB) -lX11
endif
endif endif
endif endif
......
...@@ -157,7 +157,10 @@ class _AppEventHandler { ...@@ -157,7 +157,10 @@ class _AppEventHandler {
} }
}); });
} finally { } finally {
nativeReplyToAppShouldTerminate(true); // Either we've just called System.exit(), or the app will call
// it when processing a WINDOW_CLOSING event. Either way, we reply
// to Cocoa that we don't want to exit the event loop yet.
nativeReplyToAppShouldTerminate(false);
} }
} }
......
...@@ -29,6 +29,7 @@ import java.awt.BufferCapabilities.FlipContents; ...@@ -29,6 +29,7 @@ import java.awt.BufferCapabilities.FlipContents;
import java.awt.*; import java.awt.*;
import java.awt.Dialog.ModalityType; import java.awt.Dialog.ModalityType;
import java.awt.event.*; import java.awt.event.*;
import java.awt.peer.WindowPeer;
import java.beans.*; import java.beans.*;
import java.util.List; import java.util.List;
...@@ -202,6 +203,9 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo ...@@ -202,6 +203,9 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
private LWWindowPeer peer; private LWWindowPeer peer;
private CPlatformView contentView; private CPlatformView contentView;
private CPlatformWindow owner; private CPlatformWindow owner;
private boolean visible = false; // visibility status from native perspective
private boolean undecorated; // initialized in getInitialStyleBits()
private Rectangle normalBounds = null; // not-null only for undecorated maximized windows
public CPlatformWindow(final PeerType peerType) { public CPlatformWindow(final PeerType peerType) {
super(0, true); super(0, true);
...@@ -277,8 +281,8 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo ...@@ -277,8 +281,8 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
// Either java.awt.Frame or java.awt.Dialog can be undecorated, however java.awt.Window always is undecorated. // Either java.awt.Frame or java.awt.Dialog can be undecorated, however java.awt.Window always is undecorated.
{ {
final boolean undecorated = isFrame ? ((Frame)target).isUndecorated() : (isDialog ? ((Dialog)target).isUndecorated() : true); this.undecorated = isFrame ? ((Frame)target).isUndecorated() : (isDialog ? ((Dialog)target).isUndecorated() : true);
if (undecorated) styleBits = SET(styleBits, DECORATED, false); if (this.undecorated) styleBits = SET(styleBits, DECORATED, false);
} }
// Either java.awt.Frame or java.awt.Dialog can be resizable, however java.awt.Window is never resizable // Either java.awt.Frame or java.awt.Dialog can be resizable, however java.awt.Window is never resizable
...@@ -466,19 +470,62 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo ...@@ -466,19 +470,62 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
nativeSetNSWindowBounds(getNSWindowPtr(), x, y, w, h); nativeSetNSWindowBounds(getNSWindowPtr(), x, y, w, h);
} }
private void zoom() {
if (!undecorated) {
CWrapper.NSWindow.zoom(getNSWindowPtr());
} else {
// OS X handles -zoom incorrectly for undecorated windows
final boolean isZoomed = this.normalBounds == null;
deliverZoom(isZoomed);
Rectangle toBounds;
if (isZoomed) {
this.normalBounds = peer.getBounds();
long screen = CWrapper.NSWindow.screen(getNSWindowPtr());
toBounds = CWrapper.NSScreen.visibleFrame(screen).getBounds();
// Flip the y coordinate
Rectangle frame = CWrapper.NSScreen.frame(screen).getBounds();
toBounds.y = frame.height - toBounds.y - toBounds.height;
} else {
toBounds = normalBounds;
this.normalBounds = null;
}
setBounds(toBounds.x, toBounds.y, toBounds.width, toBounds.height);
}
}
private boolean isVisible() {
return this.visible;
}
@Override // PlatformWindow @Override // PlatformWindow
public void setVisible(boolean visible) { public void setVisible(boolean visible) {
final long nsWindowPtr = getNSWindowPtr(); final long nsWindowPtr = getNSWindowPtr();
if (owner != null) { // 1. Process parent-child relationship when hiding
if (!visible) { if (!visible) {
// 1a. Unparent my children
for (Window w : target.getOwnedWindows()) {
WindowPeer p = (WindowPeer)w.getPeer();
if (p instanceof LWWindowPeer) {
CPlatformWindow pw = (CPlatformWindow)((LWWindowPeer)p).getPlatformWindow();
if (pw != null && pw.isVisible()) {
CWrapper.NSWindow.removeChildWindow(nsWindowPtr, pw.getNSWindowPtr());
}
}
}
// 1b. Unparent myself
if (owner != null && owner.isVisible()) {
CWrapper.NSWindow.removeChildWindow(owner.getNSWindowPtr(), nsWindowPtr); CWrapper.NSWindow.removeChildWindow(owner.getNSWindowPtr(), nsWindowPtr);
} }
} }
// 2. Configure stuff
updateIconImages(); updateIconImages();
updateFocusabilityForAutoRequestFocus(false); updateFocusabilityForAutoRequestFocus(false);
// 3. Manage the extended state when hiding
if (!visible) { if (!visible) {
// Cancel out the current native state of the window // Cancel out the current native state of the window
switch (peer.getState()) { switch (peer.getState()) {
...@@ -486,11 +533,12 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo ...@@ -486,11 +533,12 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
CWrapper.NSWindow.deminiaturize(nsWindowPtr); CWrapper.NSWindow.deminiaturize(nsWindowPtr);
break; break;
case Frame.MAXIMIZED_BOTH: case Frame.MAXIMIZED_BOTH:
CWrapper.NSWindow.zoom(nsWindowPtr); zoom();
break; break;
} }
} }
// 4. Actually show or hide the window
LWWindowPeer blocker = peer.getBlocker(); LWWindowPeer blocker = peer.getBlocker();
if (blocker == null || !visible) { if (blocker == null || !visible) {
// If it ain't blocked, or is being hidden, go regular way // If it ain't blocked, or is being hidden, go regular way
...@@ -517,7 +565,9 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo ...@@ -517,7 +565,9 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
CWrapper.NSWindow.orderWindow(nsWindowPtr, CWrapper.NSWindow.NSWindowBelow, CWrapper.NSWindow.orderWindow(nsWindowPtr, CWrapper.NSWindow.NSWindowBelow,
((CPlatformWindow)blocker.getPlatformWindow()).getNSWindowPtr()); ((CPlatformWindow)blocker.getPlatformWindow()).getNSWindowPtr());
} }
this.visible = visible;
// 5. Manage the extended state when showing
if (visible) { if (visible) {
// Re-apply the extended state as expected in shared code // Re-apply the extended state as expected in shared code
if (target instanceof Frame) { if (target instanceof Frame) {
...@@ -526,23 +576,41 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo ...@@ -526,23 +576,41 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
CWrapper.NSWindow.miniaturize(nsWindowPtr); CWrapper.NSWindow.miniaturize(nsWindowPtr);
break; break;
case Frame.MAXIMIZED_BOTH: case Frame.MAXIMIZED_BOTH:
CWrapper.NSWindow.zoom(nsWindowPtr); zoom();
break; break;
} }
} }
} }
// 6. Configure stuff #2
updateFocusabilityForAutoRequestFocus(true); updateFocusabilityForAutoRequestFocus(true);
if (owner != null) { // 7. Manage parent-child relationship when showing
if (visible) { if (visible) {
// 7a. Add myself as a child
if (owner != null && owner.isVisible()) {
CWrapper.NSWindow.addChildWindow(owner.getNSWindowPtr(), nsWindowPtr, CWrapper.NSWindow.NSWindowAbove); CWrapper.NSWindow.addChildWindow(owner.getNSWindowPtr(), nsWindowPtr, CWrapper.NSWindow.NSWindowAbove);
if (target.isAlwaysOnTop()) { if (target.isAlwaysOnTop()) {
CWrapper.NSWindow.setLevel(nsWindowPtr, CWrapper.NSWindow.NSFloatingWindowLevel); CWrapper.NSWindow.setLevel(nsWindowPtr, CWrapper.NSWindow.NSFloatingWindowLevel);
} }
} }
// 7b. Add my own children to myself
for (Window w : target.getOwnedWindows()) {
WindowPeer p = (WindowPeer)w.getPeer();
if (p instanceof LWWindowPeer) {
CPlatformWindow pw = (CPlatformWindow)((LWWindowPeer)p).getPlatformWindow();
if (pw != null && pw.isVisible()) {
CWrapper.NSWindow.addChildWindow(nsWindowPtr, pw.getNSWindowPtr(), CWrapper.NSWindow.NSWindowAbove);
if (w.isAlwaysOnTop()) {
CWrapper.NSWindow.setLevel(pw.getNSWindowPtr(), CWrapper.NSWindow.NSFloatingWindowLevel);
}
}
}
}
} }
// 8. Deal with the blocker of the window being shown
if (blocker != null && visible) { if (blocker != null && visible) {
// Make sure the blocker is above its siblings // Make sure the blocker is above its siblings
((CPlatformWindow)blocker.getPlatformWindow()).orderAboveSiblings(); ((CPlatformWindow)blocker.getPlatformWindow()).orderAboveSiblings();
...@@ -692,7 +760,7 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo ...@@ -692,7 +760,7 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
if (prevWindowState == Frame.MAXIMIZED_BOTH) { if (prevWindowState == Frame.MAXIMIZED_BOTH) {
// let's return into the normal states first // let's return into the normal states first
// the zoom call toggles between the normal and the max states // the zoom call toggles between the normal and the max states
CWrapper.NSWindow.zoom(nsWindowPtr); zoom();
} }
CWrapper.NSWindow.miniaturize(nsWindowPtr); CWrapper.NSWindow.miniaturize(nsWindowPtr);
break; break;
...@@ -701,14 +769,14 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo ...@@ -701,14 +769,14 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
// let's return into the normal states first // let's return into the normal states first
CWrapper.NSWindow.deminiaturize(nsWindowPtr); CWrapper.NSWindow.deminiaturize(nsWindowPtr);
} }
CWrapper.NSWindow.zoom(nsWindowPtr); zoom();
break; break;
case Frame.NORMAL: case Frame.NORMAL:
if (prevWindowState == Frame.ICONIFIED) { if (prevWindowState == Frame.ICONIFIED) {
CWrapper.NSWindow.deminiaturize(nsWindowPtr); CWrapper.NSWindow.deminiaturize(nsWindowPtr);
} else if (prevWindowState == Frame.MAXIMIZED_BOTH) { } else if (prevWindowState == Frame.MAXIMIZED_BOTH) {
// the zoom call toggles between the normal and the max states // the zoom call toggles between the normal and the max states
CWrapper.NSWindow.zoom(nsWindowPtr); zoom();
} }
break; break;
default: default:
...@@ -849,15 +917,23 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo ...@@ -849,15 +917,23 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
return; return;
} }
// Recursively pop up the windows from the very bottom so that only // NOTE: the logic will fail if we have a hierarchy like:
// the very top-most one becomes the main window // visible root owner
owner.orderAboveSiblings(); // invisible owner
// visible dialog
// However, this is an unlikely scenario for real life apps
if (owner.isVisible()) {
// Recursively pop up the windows from the very bottom so that only
// the very top-most one becomes the main window
owner.orderAboveSiblings();
// Order the window to front of the stack of child windows
final long nsWindowSelfPtr = getNSWindowPtr();
final long nsWindowOwnerPtr = owner.getNSWindowPtr();
CWrapper.NSWindow.removeChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr);
CWrapper.NSWindow.addChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr, CWrapper.NSWindow.NSWindowAbove);
}
// Order the window to front of the stack of child windows
final long nsWindowSelfPtr = getNSWindowPtr();
final long nsWindowOwnerPtr = owner.getNSWindowPtr();
CWrapper.NSWindow.removeChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr);
CWrapper.NSWindow.addChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr, CWrapper.NSWindow.NSWindowAbove);
if (target.isAlwaysOnTop()) { if (target.isAlwaysOnTop()) {
CWrapper.NSWindow.setLevel(getNSWindowPtr(), CWrapper.NSWindow.NSFloatingWindowLevel); CWrapper.NSWindow.setLevel(getNSWindowPtr(), CWrapper.NSWindow.NSFloatingWindowLevel);
} }
......
...@@ -125,11 +125,8 @@ AWT_ASSERT_NOT_APPKIT_THREAD; ...@@ -125,11 +125,8 @@ AWT_ASSERT_NOT_APPKIT_THREAD;
[JNFRunLoop performOnMainThreadWaiting:YES withBlock:^(){ [JNFRunLoop performOnMainThreadWaiting:YES withBlock:^(){
AWT_ASSERT_APPKIT_THREAD; AWT_ASSERT_APPKIT_THREAD;
[fMenuItem setKeyEquivalent:theKeyEquivalent];
if (![theKeyEquivalent isEqualToString:@""]) { [fMenuItem setKeyEquivalentModifierMask:modifierMask];
[fMenuItem setKeyEquivalent:theKeyEquivalent];
[fMenuItem setKeyEquivalentModifierMask:modifierMask];
}
[fMenuItem setTitle:theLabel]; [fMenuItem setTitle:theLabel];
}]; }];
} }
......
...@@ -306,6 +306,18 @@ AWT_ASSERT_APPKIT_THREAD; ...@@ -306,6 +306,18 @@ AWT_ASSERT_APPKIT_THREAD;
// AWT gets here AFTER +[AWTStarter appKitIsRunning:] is called. // AWT gets here AFTER +[AWTStarter appKitIsRunning:] is called.
if (verbose) AWT_DEBUG_LOG(@"got out of the AppKit startup mutex"); if (verbose) AWT_DEBUG_LOG(@"got out of the AppKit startup mutex");
} }
// Don't set the delegate until the NSApplication has been created and
// its finishLaunching has initialized it.
// ApplicationDelegate is the support code for com.apple.eawt.
void (^setDelegateBlock)() = ^(){
OSXAPP_SetApplicationDelegate([ApplicationDelegate sharedDelegate]);
};
if (onMainThread) {
setDelegateBlock();
} else {
[JNFRunLoop performOnMainThreadWaiting:YES withBlock:setDelegateBlock];
}
} }
- (void)starter:(NSArray*)args { - (void)starter:(NSArray*)args {
...@@ -340,10 +352,6 @@ AWT_ASSERT_APPKIT_THREAD; ...@@ -340,10 +352,6 @@ AWT_ASSERT_APPKIT_THREAD;
// AppKit Application. // AppKit Application.
NSApplication *app = [NSApplicationAWT sharedApplication]; NSApplication *app = [NSApplicationAWT sharedApplication];
// Don't set the delegate until the NSApplication has been created.
// ApplicationDelegate is the support code for com.apple.eawt.
OSXAPP_SetApplicationDelegate([ApplicationDelegate sharedDelegate]);
// AWT gets to this point BEFORE NSApplicationDidFinishLaunchingNotification is sent. // AWT gets to this point BEFORE NSApplicationDidFinishLaunchingNotification is sent.
if (![app isRunning]) { if (![app isRunning]) {
if (verbose) AWT_DEBUG_LOG(@"+[AWTStarter startAWT]: ![app isRunning]"); if (verbose) AWT_DEBUG_LOG(@"+[AWTStarter startAWT]: ![app isRunning]");
......
# Refer to the note in basic.properties for a description as to what # Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them. # the mnemonics correspond to and how to calculate them.
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=GTK Color Chooser GTKColorChooserPanel.textAndMnemonic=&GTK Color Chooser
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you GTKColorChooserPanel.hue.textAndMnemonic=&Hue:
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful GTKColorChooserPanel.red.textAndMnemonic=R&ed:
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined. GTKColorChooserPanel.saturation.textAndMnemonic=&Saturation:
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.green.textAndMnemonic=&Green:
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second GTKColorChooserPanel.value.textAndMnemonic=&Value:
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. GTKColorChooserPanel.blue.textAndMnemonic=&Blue:
GTKColorChooserPanel.hueText=Hue:
GTKColorChooserPanel.hueMnemonic=72 GTKColorChooserPanel.color.textAndMnemonic=Color &Name:
GTKColorChooserPanel.redText=Red:
GTKColorChooserPanel.redMnemonic=69
############ FILE CHOOSER STRINGS #############
GTKColorChooserPanel.saturationText=Saturation:
GTKColorChooserPanel.saturationMnemonic=83 FileChooser.acceptAllFileFilter.textAndMnemonic=All Files
FileChooser.newFolderButton.textAndMnemonic=&New Folder
GTKColorChooserPanel.greenText=Green: FileChooser.newFolderDialog.textAndMnemonic=Folder name:
GTKColorChooserPanel.greenMnemonic=71 FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Error
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Error creating directory "{0}": No such file or directory
GTKColorChooserPanel.valueText=Value: FileChooser.deleteFileButton.textAndMnemonic=De&lete File
GTKColorChooserPanel.valueMnemonic=86 FileChooser.renameFileButton.textAndMnemonic=&Rename File
FileChooser.cancelButton.textAndMnemonic=&Cancel
GTKColorChooserPanel.blueText=Blue: FileChooser.saveButton.textAndMnemonic=&OK
GTKColorChooserPanel.blueMnemonic=66 FileChooser.openButton.textAndMnemonic=&OK
FileChooser.saveDialogTitle.textAndMnemonic=Save
GTKColorChooserPanel.colorNameText=Color Name: FileChooser.openDialogTitle.textAndMnemonic=Open
GTKColorChooserPanel.colorNameMnemonic=78 FileChooser.pathLabel.textAndMnemonic=&Selection:
FileChooser.filterLabel.textAndMnemonic=Filter:
FileChooser.foldersLabel.textAndMnemonic=Fol&ders
FileChooser.filesLabel.textAndMnemonic=&Files
############ FILE CHOOSER STRINGS #############
FileChooser.cancelButtonToolTip.textAndMnemonic=Abort file chooser dialog.
FileChooser.acceptAllFileFilterText=All Files FileChooser.saveButtonToolTip.textAndMnemonic=Save selected file.
FileChooser.newFolderButtonText=New Folder FileChooser.openButtonToolTip.textAndMnemonic=Open selected file.
FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=Folder name: FileChooser.renameFileDialog.textAndMnemonic=Rename file "{0}" to
FileChooser.newFolderNoDirectoryErrorTitleText=Error FileChooser.renameFileError.titleAndMnemonic=Error
FileChooser.newFolderNoDirectoryErrorText=Error creating directory "{0}": No such file or directory FileChooser.renameFileError.textAndMnemonic=Error renaming file "{0}" to "{1}"
FileChooser.deleteFileButtonText=Delete File
FileChooser.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=Rename File
FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=Cancel
FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=OK
FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=OK
FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Save
FileChooser.openDialogTitleText=Open
FileChooser.pathLabelText=Selection:
FileChooser.filterLabelText=Filter:
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Folders
FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=Files
FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=Abort file chooser dialog.
FileChooser.saveButtonToolTipText=Save selected file.
FileChooser.openButtonToolTipText=Open selected file.
FileChooser.renameFileDialogText=Rename file "{0}" to
FileChooser.renameFileErrorTitle=Error
FileChooser.renameFileErrorText=Error renaming file "{0}" to "{1}"
OptionPane.okButtonMnemonic=79
OptionPane.cancelButtonMnemonic=67
# Refer to the note in basic.properties for a description as to what # Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them. # the mnemonics correspond to and how to calculate them.
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=GTK-Farbauswahl GTKColorChooserPanel.textAndMnemonic=&GTK-Farbauswahl
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you GTKColorChooserPanel.hue.textAndMnemonic=&Farbton:
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful GTKColorChooserPanel.red.textAndMnemonic=&Rot:
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined. GTKColorChooserPanel.saturation.textAndMnemonic=S\u00E4ttigung(&S):
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.green.textAndMnemonic=Gr\u00FCn(&G):
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second GTKColorChooserPanel.value.textAndMnemonic=&Wert:
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. GTKColorChooserPanel.blue.textAndMnemonic=&Blau:
GTKColorChooserPanel.hueText=Farbton:
GTKColorChooserPanel.hueMnemonic=70 GTKColorChooserPanel.color.textAndMnemonic=Farb&name:
GTKColorChooserPanel.redText=Rot:
GTKColorChooserPanel.redMnemonic=82
############ FILE CHOOSER STRINGS #############
GTKColorChooserPanel.saturationText=S\u00E4ttigung:
GTKColorChooserPanel.saturationMnemonic=83 FileChooser.acceptAllFileFilter.textAndMnemonic=Alle Dateien
FileChooser.newFolderButton.textAndMnemonic=&Neuer Ordner
GTKColorChooserPanel.greenText=Gr\u00FCn: FileChooser.newFolderDialog.textAndMnemonic=Ordnername:
GTKColorChooserPanel.greenMnemonic=71 FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Fehler
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Fehler beim Erstellen von Verzeichnis "{0}": Datei oder Verzeichnis nicht vorhanden
GTKColorChooserPanel.valueText=Wert: FileChooser.deleteFileButton.textAndMnemonic=Datei l\u00F6schen(&L)
GTKColorChooserPanel.valueMnemonic=87 FileChooser.renameFileButton.textAndMnemonic=Datei &umbenennen
FileChooser.cancelButton.textAndMnemonic=&Abbrechen
GTKColorChooserPanel.blueText=Blau: FileChooser.saveButton.textAndMnemonic=&OK
GTKColorChooserPanel.blueMnemonic=66 FileChooser.openButton.textAndMnemonic=&OK
FileChooser.saveDialogTitle.textAndMnemonic=Speichern
GTKColorChooserPanel.colorNameText=Farbname: FileChooser.openDialogTitle.textAndMnemonic=\u00D6ffnen
GTKColorChooserPanel.colorNameMnemonic=78 FileChooser.pathLabel.textAndMnemonic=Aus&wahl:
FileChooser.filterLabel.textAndMnemonic=Filter:
FileChooser.foldersLabel.textAndMnemonic=&Ordner
FileChooser.filesLabel.textAndMnemonic=&Dateien
############ FILE CHOOSER STRINGS #############
FileChooser.cancelButtonToolTip.textAndMnemonic=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen.
FileChooser.acceptAllFileFilterText=Alle Dateien FileChooser.saveButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei speichern.
FileChooser.newFolderButtonText=Neuer Ordner FileChooser.openButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei \u00F6ffnen.
FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=Ordnername: FileChooser.renameFileDialog.textAndMnemonic=Datei "{0}" umbenennen in
FileChooser.newFolderNoDirectoryErrorTitleText=Fehler FileChooser.renameFileError.titleAndMnemonic=Fehler
FileChooser.newFolderNoDirectoryErrorText=Fehler beim Erstellen von Verzeichnis "{0}": Datei oder Verzeichnis nicht vorhanden FileChooser.renameFileError.textAndMnemonic=Fehler beim Umbenennen der Datei "{0}" in "{1}"
FileChooser.deleteFileButtonText=Datei l\u00F6schen
FileChooser.deleteFileButtonMnemonic=76 # dummy resource added for translation automation
FileChooser.renameFileButtonText=Datei umbenennen OptionPane.okButton.textAndMnemonic=&OK
FileChooser.renameFileButtonMnemonic=85 # dummy resource added for translation automation
FileChooser.cancelButtonText=Abbrechen OptionPane.cancelButton.textAndMnemonic=&Abbrechen
FileChooser.cancelButtonMnemonic=65
FileChooser.saveButtonText=OK
FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=OK
FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Speichern
FileChooser.openDialogTitleText=\u00D6ffnen
FileChooser.pathLabelText=Auswahl:
FileChooser.filterLabelText=Filter:
FileChooser.pathLabelMnemonic=87
FileChooser.foldersLabelText=Ordner
FileChooser.foldersLabelMnemonic=79
FileChooser.filesLabelText=Dateien
FileChooser.filesLabelMnemonic=68
FileChooser.cancelButtonToolTipText=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen.
FileChooser.saveButtonToolTipText=Ausgew\u00E4hlte Datei speichern.
FileChooser.openButtonToolTipText=Ausgew\u00E4hlte Datei \u00F6ffnen.
FileChooser.renameFileDialogText=Datei "{0}" umbenennen in
FileChooser.renameFileErrorTitle=Fehler
FileChooser.renameFileErrorText=Fehler beim Umbenennen der Datei "{0}" in "{1}"
# dummy resource added for translation automation
OptionPane.okButtonText=OK
OptionPane.okButtonMnemonic=79
# dummy resource added for translation automation
OptionPane.cancelButtonText=Abbrechen
OptionPane.cancelButtonMnemonic=65
# Refer to the note in basic.properties for a description as to what # Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them. # the mnemonics correspond to and how to calculate them.
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=Selector de Color para GTK GTKColorChooserPanel.textAndMnemonic=Selector de Color para &GTK
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you GTKColorChooserPanel.hue.textAndMnemonic=&Mat:
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful GTKColorChooserPanel.red.textAndMnemonic=Ro&jo:
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined. GTKColorChooserPanel.saturation.textAndMnemonic=Saturaci\u00F3n(&S):
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.green.textAndMnemonic=V&erde:
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second GTKColorChooserPanel.value.textAndMnemonic=&Valor:
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. GTKColorChooserPanel.blue.textAndMnemonic=&Azul:
GTKColorChooserPanel.hueText=Mat:
GTKColorChooserPanel.hueMnemonic=77 GTKColorChooserPanel.color.textAndMnemonic=&Nombre del Color:
GTKColorChooserPanel.redText=Rojo:
GTKColorChooserPanel.redMnemonic=74
############ FILE CHOOSER STRINGS #############
GTKColorChooserPanel.saturationText=Saturaci\u00F3n:
GTKColorChooserPanel.saturationMnemonic=83 FileChooser.acceptAllFileFilter.textAndMnemonic=Todos los Archivos
FileChooser.newFolderButton.textAndMnemonic=&Nueva Carpeta
GTKColorChooserPanel.greenText=Verde: FileChooser.newFolderDialog.textAndMnemonic=Nombre de la Carpeta:
GTKColorChooserPanel.greenMnemonic=69 FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Error
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Error al crear el directorio "{0}": no existe dicho archivo o directorio
GTKColorChooserPanel.valueText=Valor: FileChooser.deleteFileButton.textAndMnemonic=Su&primir Archivo
GTKColorChooserPanel.valueMnemonic=86 FileChooser.renameFileButton.textAndMnemonic=Cambia&r Nombre de Archivo
FileChooser.cancelButton.textAndMnemonic=&Cancelar
GTKColorChooserPanel.blueText=Azul: FileChooser.saveButton.textAndMnemonic=&Aceptar
GTKColorChooserPanel.blueMnemonic=65 FileChooser.openButton.textAndMnemonic=&Aceptar
FileChooser.saveDialogTitle.textAndMnemonic=Guardar
GTKColorChooserPanel.colorNameText=Nombre del Color: FileChooser.openDialogTitle.textAndMnemonic=Abrir
GTKColorChooserPanel.colorNameMnemonic=78 FileChooser.pathLabel.textAndMnemonic=Selecci\u00F3n(&S):
FileChooser.filterLabel.textAndMnemonic=Filtro:
FileChooser.foldersLabel.textAndMnemonic=Carpe&tas
FileChooser.filesLabel.textAndMnemonic=&Archivos
############ FILE CHOOSER STRINGS #############
FileChooser.cancelButtonToolTip.textAndMnemonic=Abortar cuadro de di\u00E1logo del selector de archivos.
FileChooser.acceptAllFileFilterText=Todos los Archivos FileChooser.saveButtonToolTip.textAndMnemonic=Guardar el archivo seleccionado.
FileChooser.newFolderButtonText=Nueva Carpeta FileChooser.openButtonToolTip.textAndMnemonic=Abrir el archivo seleccionado.
FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=Nombre de la Carpeta: FileChooser.renameFileDialog.textAndMnemonic=Cambiar el nombre del archivo "{0}" por
FileChooser.newFolderNoDirectoryErrorTitleText=Error FileChooser.renameFileError.titleAndMnemonic=Error
FileChooser.newFolderNoDirectoryErrorText=Error al crear el directorio "{0}": no existe dicho archivo o directorio FileChooser.renameFileError.textAndMnemonic=Error al cambiar el nombre del archivo "{0}" a "{1}"
FileChooser.deleteFileButtonText=Suprimir Archivo
FileChooser.deleteFileButtonMnemonic=80 # dummy resource added for translation automation
FileChooser.renameFileButtonText=Cambiar Nombre de Archivo OptionPane.okButton.textAndMnemonic=&Aceptar
FileChooser.renameFileButtonMnemonic=82 # dummy resource added for translation automation
FileChooser.cancelButtonText=Cancelar OptionPane.cancelButton.textAndMnemonic=&Cancelar
FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=Aceptar
FileChooser.saveButtonMnemonic=65
FileChooser.openButtonText=Aceptar
FileChooser.openButtonMnemonic=65
FileChooser.saveDialogTitleText=Guardar
FileChooser.openDialogTitleText=Abrir
FileChooser.pathLabelText=Selecci\u00F3n:
FileChooser.filterLabelText=Filtro:
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Carpetas
FileChooser.foldersLabelMnemonic=84
FileChooser.filesLabelText=Archivos
FileChooser.filesLabelMnemonic=65
FileChooser.cancelButtonToolTipText=Abortar cuadro de di\u00E1logo del selector de archivos.
FileChooser.saveButtonToolTipText=Guardar el archivo seleccionado.
FileChooser.openButtonToolTipText=Abrir el archivo seleccionado.
FileChooser.renameFileDialogText=Cambiar el nombre del archivo "{0}" por
FileChooser.renameFileErrorTitle=Error
FileChooser.renameFileErrorText=Error al cambiar el nombre del archivo "{0}" a "{1}"
# dummy resource added for translation automation
OptionPane.okButtonText=Aceptar
OptionPane.okButtonMnemonic=65
# dummy resource added for translation automation
OptionPane.cancelButtonText=Cancelar
OptionPane.cancelButtonMnemonic=67
# Refer to the note in basic.properties for a description as to what # Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them. # the mnemonics correspond to and how to calculate them.
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=S\u00E9lecteur de couleurs GTK GTKColorChooserPanel.textAndMnemonic=S\u00E9lecteur de couleurs GTK(&G)
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you GTKColorChooserPanel.hue.textAndMnemonic=&Teinte :
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful GTKColorChooserPanel.red.textAndMnemonic=Rouge\u00A0(&E):
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined. GTKColorChooserPanel.saturation.textAndMnemonic=&Saturation :
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.green.textAndMnemonic=V&ert :
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second GTKColorChooserPanel.value.textAndMnemonic=&Valeur :
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. GTKColorChooserPanel.blue.textAndMnemonic=&Bleu :
GTKColorChooserPanel.hueText=Teinte :
GTKColorChooserPanel.hueMnemonic=84 GTKColorChooserPanel.color.textAndMnemonic=&Nom de couleur :
GTKColorChooserPanel.redText=Rouge\u00A0:
GTKColorChooserPanel.redMnemonic=69
############ FILE CHOOSER STRINGS #############
GTKColorChooserPanel.saturationText=Saturation :
GTKColorChooserPanel.saturationMnemonic=83 FileChooser.acceptAllFileFilter.textAndMnemonic=Tous les fichiers
FileChooser.newFolderButton.textAndMnemonic=&Nouveau dossier
GTKColorChooserPanel.greenText=Vert : FileChooser.newFolderDialog.textAndMnemonic=Nom du dossier :
GTKColorChooserPanel.greenMnemonic=69 FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Erreur
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Erreur lors de la cr\u00E9ation du r\u00E9pertoire "{0}" : ce fichier ou r\u00E9pertoire n''existe pas
GTKColorChooserPanel.valueText=Valeur : FileChooser.deleteFileButton.textAndMnemonic=Supprimer &le fichier
GTKColorChooserPanel.valueMnemonic=86 FileChooser.renameFileButton.textAndMnemonic=&Renommer le fichier
FileChooser.cancelButton.textAndMnemonic=&Annuler
GTKColorChooserPanel.blueText=Bleu : FileChooser.saveButton.textAndMnemonic=&OK
GTKColorChooserPanel.blueMnemonic=66 FileChooser.openButton.textAndMnemonic=&OK
FileChooser.saveDialogTitle.textAndMnemonic=Enregistrer
GTKColorChooserPanel.colorNameText=Nom de couleur : FileChooser.openDialogTitle.textAndMnemonic=Ouvrir
GTKColorChooserPanel.colorNameMnemonic=78 FileChooser.pathLabel.textAndMnemonic=S\u00E9lection (&S):
FileChooser.filterLabel.textAndMnemonic=Filtre :
FileChooser.foldersLabel.textAndMnemonic=&Dossiers
FileChooser.filesLabel.textAndMnemonic=&Fichiers
############ FILE CHOOSER STRINGS #############
FileChooser.cancelButtonToolTip.textAndMnemonic=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers.
FileChooser.acceptAllFileFilterText=Tous les fichiers FileChooser.saveButtonToolTip.textAndMnemonic=Enregistre le fichier s\u00E9lectionn\u00E9.
FileChooser.newFolderButtonText=Nouveau dossier FileChooser.openButtonToolTip.textAndMnemonic=Ouvre le fichier s\u00E9lectionn\u00E9.
FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=Nom du dossier : FileChooser.renameFileDialog.textAndMnemonic=Renomme le fichier "{0}" en
FileChooser.newFolderNoDirectoryErrorTitleText=Erreur FileChooser.renameFileError.titleAndMnemonic=Erreur
FileChooser.newFolderNoDirectoryErrorText=Erreur lors de la cr\u00E9ation du r\u00E9pertoire "{0}" : ce fichier ou r\u00E9pertoire n''existe pas FileChooser.renameFileError.textAndMnemonic=Erreur lors du changement de nom du fichier "{0}" en "{1}"
FileChooser.deleteFileButtonText=Supprimer le fichier
FileChooser.deleteFileButtonMnemonic=76 # dummy resource added for translation automation
FileChooser.renameFileButtonText=Renommer le fichier OptionPane.okButton.textAndMnemonic=&OK
FileChooser.renameFileButtonMnemonic=82 # dummy resource added for translation automation
FileChooser.cancelButtonText=Annuler OptionPane.cancelButton.textAndMnemonic=&Annuler
FileChooser.cancelButtonMnemonic=65
FileChooser.saveButtonText=OK
FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=OK
FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Enregistrer
FileChooser.openDialogTitleText=Ouvrir
FileChooser.pathLabelText=S\u00E9lection :
FileChooser.filterLabelText=Filtre :
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Dossiers
FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=Fichiers
FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers.
FileChooser.saveButtonToolTipText=Enregistre le fichier s\u00E9lectionn\u00E9.
FileChooser.openButtonToolTipText=Ouvre le fichier s\u00E9lectionn\u00E9.
FileChooser.renameFileDialogText=Renomme le fichier "{0}" en
FileChooser.renameFileErrorTitle=Erreur
FileChooser.renameFileErrorText=Erreur lors du changement de nom du fichier "{0}" en "{1}"
# dummy resource added for translation automation
OptionPane.okButtonText=OK
OptionPane.okButtonMnemonic=79
# dummy resource added for translation automation
OptionPane.cancelButtonText=Annuler
OptionPane.cancelButtonMnemonic=65
# Refer to the note in basic.properties for a description as to what # Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them. # the mnemonics correspond to and how to calculate them.
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=Selezione colore GTK GTKColorChooserPanel.textAndMnemonic=Selezione colore &GTK
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you GTKColorChooserPanel.hue.textAndMnemonic=&Ton.:
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful GTKColorChooserPanel.red.textAndMnemonic=R&osso:
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined. GTKColorChooserPanel.saturation.textAndMnemonic=&Saturazione:
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.green.textAndMnemonic=V&erde:
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second GTKColorChooserPanel.value.textAndMnemonic=&Valore:
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. GTKColorChooserPanel.blue.textAndMnemonic=&Blu:
GTKColorChooserPanel.hueText=Ton.:
GTKColorChooserPanel.hueMnemonic=84 GTKColorChooserPanel.color.textAndMnemonic=&Nome colore:
GTKColorChooserPanel.redText=Rosso:
GTKColorChooserPanel.redMnemonic=79
############ FILE CHOOSER STRINGS #############
GTKColorChooserPanel.saturationText=Saturazione:
GTKColorChooserPanel.saturationMnemonic=83 FileChooser.acceptAllFileFilter.textAndMnemonic=Tutti i file
FileChooser.newFolderButton.textAndMnemonic=&Nuova cartella
GTKColorChooserPanel.greenText=Verde: FileChooser.newFolderDialog.textAndMnemonic=Nome della cartella:
GTKColorChooserPanel.greenMnemonic=69 FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Errore
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Errore durante la creazione della directory "{0}": file o directory inesistente
GTKColorChooserPanel.valueText=Valore: FileChooser.deleteFileButton.textAndMnemonic=E&limina file
GTKColorChooserPanel.valueMnemonic=86 FileChooser.renameFileButton.textAndMnemonic=&Rinomina file
FileChooser.cancelButton.textAndMnemonic=&Annulla
GTKColorChooserPanel.blueText=Blu: FileChooser.saveButton.textAndMnemonic=&OK
GTKColorChooserPanel.blueMnemonic=66 FileChooser.openButton.textAndMnemonic=&OK
FileChooser.saveDialogTitle.textAndMnemonic=Salva
GTKColorChooserPanel.colorNameText=Nome colore: FileChooser.openDialogTitle.textAndMnemonic=Apri
GTKColorChooserPanel.colorNameMnemonic=78 FileChooser.pathLabel.textAndMnemonic=&Selezione:
FileChooser.filterLabel.textAndMnemonic=Filtro:
FileChooser.foldersLabel.textAndMnemonic=Car&telle
FileChooser.filesLabel.textAndMnemonic=&File
############ FILE CHOOSER STRINGS #############
FileChooser.cancelButtonToolTip.textAndMnemonic=Chiude la finestra di dialogo di selezione file.
FileChooser.acceptAllFileFilterText=Tutti i file FileChooser.saveButtonToolTip.textAndMnemonic=Salva il file selezionato.
FileChooser.newFolderButtonText=Nuova cartella FileChooser.openButtonToolTip.textAndMnemonic=Apre il file selezionato.
FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=Nome della cartella: FileChooser.renameFileDialog.textAndMnemonic=Rinomina file "{0}" in
FileChooser.newFolderNoDirectoryErrorTitleText=Errore FileChooser.renameFileError.titleAndMnemonic=Errore
FileChooser.newFolderNoDirectoryErrorText=Errore durante la creazione della directory "{0}": file o directory inesistente FileChooser.renameFileError.textAndMnemonic=Errore durante la ridenominazione del file "{0}" in "{1}"
FileChooser.deleteFileButtonText=Elimina file
FileChooser.deleteFileButtonMnemonic=76 # dummy resource added for translation automation
FileChooser.renameFileButtonText=Rinomina file OptionPane.okButton.textAndMnemonic=&OK
FileChooser.renameFileButtonMnemonic=82 # dummy resource added for translation automation
FileChooser.cancelButtonText=Annulla OptionPane.cancelButton.textAndMnemonic=&Annulla
FileChooser.cancelButtonMnemonic=65
FileChooser.saveButtonText=OK
FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=OK
FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Salva
FileChooser.openDialogTitleText=Apri
FileChooser.pathLabelText=Selezione:
FileChooser.filterLabelText=Filtro:
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Cartelle
FileChooser.foldersLabelMnemonic=84
FileChooser.filesLabelText=File
FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=Chiude la finestra di dialogo di selezione file.
FileChooser.saveButtonToolTipText=Salva il file selezionato.
FileChooser.openButtonToolTipText=Apre il file selezionato.
FileChooser.renameFileDialogText=Rinomina file "{0}" in
FileChooser.renameFileErrorTitle=Errore
FileChooser.renameFileErrorText=Errore durante la ridenominazione del file "{0}" in "{1}"
# dummy resource added for translation automation
OptionPane.okButtonText=OK
OptionPane.okButtonMnemonic=79
# dummy resource added for translation automation
OptionPane.cancelButtonText=Annulla
OptionPane.cancelButtonMnemonic=65
# Refer to the note in basic.properties for a description as to what # Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them. # the mnemonics correspond to and how to calculate them.
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=GTK\u30AB\u30E9\u30FC\u30FB\u30C1\u30E5\u30FC\u30B6(G) GTKColorChooserPanel.textAndMnemonic=GTK\u30AB\u30E9\u30FC\u30FB\u30C1\u30E5\u30FC\u30B6(&G)
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you GTKColorChooserPanel.hue.textAndMnemonic=\u8272\u76F8(&H):
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful GTKColorChooserPanel.red.textAndMnemonic=\u8D64(&E):
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined. GTKColorChooserPanel.saturation.textAndMnemonic=\u5F69\u5EA6(&S):
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.green.textAndMnemonic=\u7DD1(&G):
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second GTKColorChooserPanel.value.textAndMnemonic=\u5024(&V):
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. GTKColorChooserPanel.blue.textAndMnemonic=\u9752(&B):
GTKColorChooserPanel.hueText=\u8272\u76F8(H):
GTKColorChooserPanel.hueMnemonic=72 GTKColorChooserPanel.color.textAndMnemonic=\u8272\u540D(&N):
GTKColorChooserPanel.redText=\u8D64(E):
GTKColorChooserPanel.redMnemonic=69
############ FILE CHOOSER STRINGS #############
GTKColorChooserPanel.saturationText=\u5F69\u5EA6(S):
GTKColorChooserPanel.saturationMnemonic=83 FileChooser.acceptAllFileFilter.textAndMnemonic=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB
FileChooser.newFolderButton.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0(&N)
GTKColorChooserPanel.greenText=\u7DD1(G): FileChooser.newFolderDialog.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0\u540D:
GTKColorChooserPanel.greenMnemonic=71 FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=\u30A8\u30E9\u30FC
FileChooser.newFolderNoDirectoryError.textAndMnemonic=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA"{0}"\u306E\u4F5C\u6210\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F: \u3053\u306E\u30D5\u30A1\u30A4\u30EB\u307E\u305F\u306F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306F\u5B58\u5728\u3057\u307E\u305B\u3093
GTKColorChooserPanel.valueText=\u5024(V): FileChooser.deleteFileButton.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u306E\u524A\u9664(&L)
GTKColorChooserPanel.valueMnemonic=86 FileChooser.renameFileButton.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u306E\u540D\u524D\u5909\u66F4(&R)
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
GTKColorChooserPanel.blueText=\u9752(B): FileChooser.saveButton.textAndMnemonic=&OK
GTKColorChooserPanel.blueMnemonic=66 FileChooser.openButton.textAndMnemonic=&OK
FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
GTKColorChooserPanel.colorNameText=\u8272\u540D(N): FileChooser.openDialogTitle.textAndMnemonic=\u958B\u304F
GTKColorChooserPanel.colorNameMnemonic=78 FileChooser.pathLabel.textAndMnemonic=\u9078\u629E(&S):
FileChooser.filterLabel.textAndMnemonic=\u30D5\u30A3\u30EB\u30BF:
FileChooser.foldersLabel.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0(&D)
FileChooser.filesLabel.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB(&F)
############ FILE CHOOSER STRINGS #############
FileChooser.cancelButtonToolTip.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u30FB\u30C1\u30E5\u30FC\u30B6\u30FB\u30C0\u30A4\u30A2\u30ED\u30B0\u3092\u7D42\u4E86\u3057\u307E\u3059\u3002
FileChooser.acceptAllFileFilterText=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB FileChooser.saveButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059\u3002
FileChooser.newFolderButtonText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0(N) FileChooser.openButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059\u3002
FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=\u30D5\u30A9\u30EB\u30C0\u540D: FileChooser.renameFileDialog.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB"{0}"\u3092\u6B21\u306E\u540D\u524D\u306B\u5909\u66F4:
FileChooser.newFolderNoDirectoryErrorTitleText=\u30A8\u30E9\u30FC FileChooser.renameFileError.titleAndMnemonic=\u30A8\u30E9\u30FC
FileChooser.newFolderNoDirectoryErrorText=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA"{0}"\u306E\u4F5C\u6210\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F: \u3053\u306E\u30D5\u30A1\u30A4\u30EB\u307E\u305F\u306F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306F\u5B58\u5728\u3057\u307E\u305B\u3093 FileChooser.renameFileError.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB"{0}"\u306E"{1}"\u3078\u306E\u5909\u66F4\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F
FileChooser.deleteFileButtonText=\u30D5\u30A1\u30A4\u30EB\u306E\u524A\u9664(L)
FileChooser.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=\u30D5\u30A1\u30A4\u30EB\u306E\u540D\u524D\u5909\u66F4(R)
FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=\u53D6\u6D88
FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=OK
FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=OK
FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=\u4FDD\u5B58
FileChooser.openDialogTitleText=\u958B\u304F
FileChooser.pathLabelText=\u9078\u629E(S):
FileChooser.filterLabelText=\u30D5\u30A3\u30EB\u30BF:
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=\u30D5\u30A9\u30EB\u30C0(D)
FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=\u30D5\u30A1\u30A4\u30EB(F)
FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=\u30D5\u30A1\u30A4\u30EB\u30FB\u30C1\u30E5\u30FC\u30B6\u30FB\u30C0\u30A4\u30A2\u30ED\u30B0\u3092\u7D42\u4E86\u3057\u307E\u3059\u3002
FileChooser.saveButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059\u3002
FileChooser.openButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059\u3002
FileChooser.renameFileDialogText=\u30D5\u30A1\u30A4\u30EB"{0}"\u3092\u6B21\u306E\u540D\u524D\u306B\u5909\u66F4:
FileChooser.renameFileErrorTitle=\u30A8\u30E9\u30FC
FileChooser.renameFileErrorText=\u30D5\u30A1\u30A4\u30EB"{0}"\u306E"{1}"\u3078\u306E\u5909\u66F4\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F
#OptionPane.okButtonMnemonic=79
#OptionPane.cancelButtonMnemonic=67
# Refer to the note in basic.properties for a description as to what # Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them. # the mnemonics correspond to and how to calculate them.
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=GTK \uC0C9\uC0C1 \uC120\uD0DD\uAE30(G) GTKColorChooserPanel.textAndMnemonic=GTK \uC0C9\uC0C1 \uC120\uD0DD\uAE30(&G)
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you GTKColorChooserPanel.hue.textAndMnemonic=\uC0C9\uC870(&H):
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful GTKColorChooserPanel.red.textAndMnemonic=\uBE68\uAC04\uC0C9(&E):
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined. GTKColorChooserPanel.saturation.textAndMnemonic=\uCC44\uB3C4(&S):
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.green.textAndMnemonic=\uB179\uC0C9(&G):
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second GTKColorChooserPanel.value.textAndMnemonic=\uAC12(&V):
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. GTKColorChooserPanel.blue.textAndMnemonic=\uD30C\uB780\uC0C9(&B):
GTKColorChooserPanel.hueText=\uC0C9\uC870(H):
GTKColorChooserPanel.hueMnemonic=72 GTKColorChooserPanel.color.textAndMnemonic=\uC0C9\uC0C1 \uC774\uB984(&N):
GTKColorChooserPanel.redText=\uBE68\uAC04\uC0C9(E):
GTKColorChooserPanel.redMnemonic=69
############ FILE CHOOSER STRINGS #############
GTKColorChooserPanel.saturationText=\uCC44\uB3C4(S):
GTKColorChooserPanel.saturationMnemonic=83 FileChooser.acceptAllFileFilter.textAndMnemonic=\uBAA8\uB4E0 \uD30C\uC77C
FileChooser.newFolderButton.textAndMnemonic=\uC0C8 \uD3F4\uB354(&N)
GTKColorChooserPanel.greenText=\uB179\uC0C9(G): FileChooser.newFolderDialog.textAndMnemonic=\uD3F4\uB354 \uC774\uB984:
GTKColorChooserPanel.greenMnemonic=71 FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=\uC624\uB958
FileChooser.newFolderNoDirectoryError.textAndMnemonic="{0}" \uB514\uB809\uD1A0\uB9AC\uB97C \uC0DD\uC131\uD558\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD: \uD574\uB2F9 \uD30C\uC77C \uB610\uB294 \uB514\uB809\uD1A0\uB9AC\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4.
GTKColorChooserPanel.valueText=\uAC12(V): FileChooser.deleteFileButton.textAndMnemonic=\uD30C\uC77C \uC0AD\uC81C(&L)
GTKColorChooserPanel.valueMnemonic=86 FileChooser.renameFileButton.textAndMnemonic=\uD30C\uC77C \uC774\uB984 \uBC14\uAFB8\uAE30(&R)
FileChooser.cancelButton.textAndMnemonic=\uCDE8\uC18C(&C)
GTKColorChooserPanel.blueText=\uD30C\uB780\uC0C9(B): FileChooser.saveButton.textAndMnemonic=\uD655\uC778(&O)
GTKColorChooserPanel.blueMnemonic=66 FileChooser.openButton.textAndMnemonic=\uD655\uC778(&O)
FileChooser.saveDialogTitle.textAndMnemonic=\uC800\uC7A5
GTKColorChooserPanel.colorNameText=\uC0C9\uC0C1 \uC774\uB984(N): FileChooser.openDialogTitle.textAndMnemonic=\uC5F4\uAE30
GTKColorChooserPanel.colorNameMnemonic=78 FileChooser.pathLabel.textAndMnemonic=\uC120\uD0DD \uC0AC\uD56D(&S):
FileChooser.filterLabel.textAndMnemonic=\uD544\uD130:
FileChooser.foldersLabel.textAndMnemonic=\uD3F4\uB354(&D)
FileChooser.filesLabel.textAndMnemonic=\uD30C\uC77C(&F)
############ FILE CHOOSER STRINGS #############
FileChooser.cancelButtonToolTip.textAndMnemonic=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790\uB97C \uC911\uB2E8\uD569\uB2C8\uB2E4.
FileChooser.acceptAllFileFilterText=\uBAA8\uB4E0 \uD30C\uC77C FileChooser.saveButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC800\uC7A5\uD569\uB2C8\uB2E4.
FileChooser.newFolderButtonText=\uC0C8 \uD3F4\uB354(N) FileChooser.openButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC5FD\uB2C8\uB2E4.
FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=\uD3F4\uB354 \uC774\uB984: FileChooser.renameFileDialog.textAndMnemonic="{0}" \uD30C\uC77C\uC758 \uC774\uB984 \uBC14\uAFB8\uAE30
FileChooser.newFolderNoDirectoryErrorTitleText=\uC624\uB958 FileChooser.renameFileError.titleAndMnemonic=\uC624\uB958
FileChooser.newFolderNoDirectoryErrorText="{0}" \uB514\uB809\uD1A0\uB9AC\uB97C \uC0DD\uC131\uD558\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD: \uD574\uB2F9 \uD30C\uC77C \uB610\uB294 \uB514\uB809\uD1A0\uB9AC\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4. FileChooser.renameFileError.textAndMnemonic="{0}" \uD30C\uC77C\uC758 \uC774\uB984\uC744 "{1}"(\uC73C)\uB85C \uBC14\uAFB8\uB294 \uC911 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4.
FileChooser.deleteFileButtonText=\uD30C\uC77C \uC0AD\uC81C(L)
FileChooser.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=\uD30C\uC77C \uC774\uB984 \uBC14\uAFB8\uAE30(R)
FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=\uCDE8\uC18C
FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=\uD655\uC778
FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=\uD655\uC778
FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=\uC800\uC7A5
FileChooser.openDialogTitleText=\uC5F4\uAE30
FileChooser.pathLabelText=\uC120\uD0DD \uC0AC\uD56D(S):
FileChooser.filterLabelText=\uD544\uD130:
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=\uD3F4\uB354(D)
FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=\uD30C\uC77C(F)
FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790\uB97C \uC911\uB2E8\uD569\uB2C8\uB2E4.
FileChooser.saveButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC800\uC7A5\uD569\uB2C8\uB2E4.
FileChooser.openButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC5FD\uB2C8\uB2E4.
FileChooser.renameFileDialogText="{0}" \uD30C\uC77C\uC758 \uC774\uB984 \uBC14\uAFB8\uAE30
FileChooser.renameFileErrorTitle=\uC624\uB958
FileChooser.renameFileErrorText="{0}" \uD30C\uC77C\uC758 \uC774\uB984\uC744 "{1}"(\uC73C)\uB85C \uBC14\uAFB8\uB294 \uC911 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4.
#OptionPane.okButtonMnemonic=79
#OptionPane.cancelButtonMnemonic=67
# Refer to the note in basic.properties for a description as to what # Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them. # the mnemonics correspond to and how to calculate them.
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=Seletor de Cores do GTK GTKColorChooserPanel.textAndMnemonic=Seletor de Cores do &GTK
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you GTKColorChooserPanel.hue.textAndMnemonic=&Matiz:
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful GTKColorChooserPanel.red.textAndMnemonic=V&ermelho:
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined. GTKColorChooserPanel.saturation.textAndMnemonic=Satura\u00E7\u00E3o(&S):
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.green.textAndMnemonic=Ver&de:
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second GTKColorChooserPanel.value.textAndMnemonic=&Valor:
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. GTKColorChooserPanel.blue.textAndMnemonic=&Azul:
GTKColorChooserPanel.hueText=Matiz:
GTKColorChooserPanel.hueMnemonic=77 GTKColorChooserPanel.color.textAndMnemonic=&Nome da Cor:
GTKColorChooserPanel.redText=Vermelho:
GTKColorChooserPanel.redMnemonic=69
############ FILE CHOOSER STRINGS #############
GTKColorChooserPanel.saturationText=Satura\u00E7\u00E3o:
GTKColorChooserPanel.saturationMnemonic=83 FileChooser.acceptAllFileFilter.textAndMnemonic=Todos os Arquivos
FileChooser.newFolderButton.textAndMnemonic=&Nova Pasta
GTKColorChooserPanel.greenText=Verde: FileChooser.newFolderDialog.textAndMnemonic=Nome da pasta:
GTKColorChooserPanel.greenMnemonic=68 FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Erro
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Erro ao criar o diret\u00F3rio "{0}": N\u00E3o h\u00E1 arquivo ou diret\u00F3rio
GTKColorChooserPanel.valueText=Valor: FileChooser.deleteFileButton.textAndMnemonic=De&letar Arquivo
GTKColorChooserPanel.valueMnemonic=86 FileChooser.renameFileButton.textAndMnemonic=&Renomear Arquivo
FileChooser.cancelButton.textAndMnemonic=&Cancelar
GTKColorChooserPanel.blueText=Azul: FileChooser.saveButton.textAndMnemonic=&OK
GTKColorChooserPanel.blueMnemonic=65 FileChooser.openButton.textAndMnemonic=&OK
FileChooser.saveDialogTitle.textAndMnemonic=Salvar
GTKColorChooserPanel.colorNameText=Nome da Cor: FileChooser.openDialogTitle.textAndMnemonic=Abrir
GTKColorChooserPanel.colorNameMnemonic=78 FileChooser.pathLabel.textAndMnemonic=Sele\u00E7\u00E3o(&S):
FileChooser.filterLabel.textAndMnemonic=Filtro:
FileChooser.foldersLabel.textAndMnemonic=&Pastas
FileChooser.filesLabel.textAndMnemonic=&Arquivos
############ FILE CHOOSER STRINGS #############
FileChooser.cancelButtonToolTip.textAndMnemonic=Abortar caixa de di\u00E1logo do seletor de arquivos.
FileChooser.acceptAllFileFilterText=Todos os Arquivos FileChooser.saveButtonToolTip.textAndMnemonic=Salvar arquivo selecionado.
FileChooser.newFolderButtonText=Nova Pasta FileChooser.openButtonToolTip.textAndMnemonic=Abrir arquivo selecionado.
FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=Nome da pasta: FileChooser.renameFileDialog.textAndMnemonic=Renomear arquivo "{0}" por
FileChooser.newFolderNoDirectoryErrorTitleText=Erro FileChooser.renameFileError.titleAndMnemonic=Erro
FileChooser.newFolderNoDirectoryErrorText=Erro ao criar o diret\u00F3rio "{0}": N\u00E3o h\u00E1 arquivo ou diret\u00F3rio FileChooser.renameFileError.textAndMnemonic=Erro ao renomear o arquivo "{0}" por "{1}"
FileChooser.deleteFileButtonText=Deletar Arquivo
FileChooser.deleteFileButtonMnemonic=76 # dummy resource added for translation automation
FileChooser.renameFileButtonText=Renomear Arquivo OptionPane.okButton.textAndMnemonic=&OK
FileChooser.renameFileButtonMnemonic=82 # dummy resource added for translation automation
FileChooser.cancelButtonText=Cancelar OptionPane.cancelButton.textAndMnemonic=&Cancelar
FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=OK
FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=OK
FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Salvar
FileChooser.openDialogTitleText=Abrir
FileChooser.pathLabelText=Sele\u00E7\u00E3o:
FileChooser.filterLabelText=Filtro:
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Pastas
FileChooser.foldersLabelMnemonic=80
FileChooser.filesLabelText=Arquivos
FileChooser.filesLabelMnemonic=65
FileChooser.cancelButtonToolTipText=Abortar caixa de di\u00E1logo do seletor de arquivos.
FileChooser.saveButtonToolTipText=Salvar arquivo selecionado.
FileChooser.openButtonToolTipText=Abrir arquivo selecionado.
FileChooser.renameFileDialogText=Renomear arquivo "{0}" por
FileChooser.renameFileErrorTitle=Erro
FileChooser.renameFileErrorText=Erro ao renomear o arquivo "{0}" por "{1}"
# dummy resource added for translation automation
OptionPane.okButtonText=OK
OptionPane.okButtonMnemonic=79
# dummy resource added for translation automation
OptionPane.cancelButtonText=Cancelar
OptionPane.cancelButtonMnemonic=67
# Refer to the note in basic.properties for a description as to what # Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them. # the mnemonics correspond to and how to calculate them.
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=GTK-f\u00E4rgv\u00E4ljaren GTKColorChooserPanel.textAndMnemonic=GTK-f\u00E4rgv\u00E4ljaren(&G)
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you GTKColorChooserPanel.hue.textAndMnemonic=&Nyans:
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful GTKColorChooserPanel.red.textAndMnemonic=R\u00F6d(&R):
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined. GTKColorChooserPanel.saturation.textAndMnemonic=M\u00E4ttnad(&M):
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.green.textAndMnemonic=Gr\u00F6n(&G):
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second GTKColorChooserPanel.value.textAndMnemonic=V\u00E4rde(&V):
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. GTKColorChooserPanel.blue.textAndMnemonic=Bl\u00E5(&B):
GTKColorChooserPanel.hueText=Nyans:
GTKColorChooserPanel.hueMnemonic=78 GTKColorChooserPanel.color.textAndMnemonic=F\u00E4rgnamn(&F):
GTKColorChooserPanel.redText=R\u00F6d:
GTKColorChooserPanel.redMnemonic=82
############ FILE CHOOSER STRINGS #############
GTKColorChooserPanel.saturationText=M\u00E4ttnad:
GTKColorChooserPanel.saturationMnemonic=77 FileChooser.acceptAllFileFilter.textAndMnemonic=Alla filer
FileChooser.newFolderButton.textAndMnemonic=&Ny mapp
GTKColorChooserPanel.greenText=Gr\u00F6n: FileChooser.newFolderDialog.textAndMnemonic=Mapp:
GTKColorChooserPanel.greenMnemonic=71 FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Fel
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Ett fel intr\u00E4ffade vid f\u00F6rs\u00F6k att skapa katalogen "{0}": Filen eller katalogen finns inte
GTKColorChooserPanel.valueText=V\u00E4rde: FileChooser.deleteFileButton.textAndMnemonic=Ta &bort fil
GTKColorChooserPanel.valueMnemonic=86 FileChooser.renameFileButton.textAndMnemonic=\u00C4ndra namn p\u00E5 filen(&R)
FileChooser.cancelButton.textAndMnemonic=&Avbryt
GTKColorChooserPanel.blueText=Bl\u00E5: FileChooser.saveButton.textAndMnemonic=&OK
GTKColorChooserPanel.blueMnemonic=66 FileChooser.openButton.textAndMnemonic=&OK
FileChooser.saveDialogTitle.textAndMnemonic=Spara
GTKColorChooserPanel.colorNameText=F\u00E4rgnamn: FileChooser.openDialogTitle.textAndMnemonic=\u00D6ppna
GTKColorChooserPanel.colorNameMnemonic=70 FileChooser.pathLabel.textAndMnemonic=&Urval:
FileChooser.filterLabel.textAndMnemonic=Filter:
FileChooser.foldersLabel.textAndMnemonic=Ma&ppar
FileChooser.filesLabel.textAndMnemonic=&Filer
############ FILE CHOOSER STRINGS #############
FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt dialogrutan Filv\u00E4ljare.
FileChooser.acceptAllFileFilterText=Alla filer FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil.
FileChooser.newFolderButtonText=Ny mapp FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil.
FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=Mapp: FileChooser.renameFileDialog.textAndMnemonic=Namn\u00E4ndra fil "{0}" till
FileChooser.newFolderNoDirectoryErrorTitleText=Fel FileChooser.renameFileError.titleAndMnemonic=Fel
FileChooser.newFolderNoDirectoryErrorText=Ett fel intr\u00E4ffade vid f\u00F6rs\u00F6k att skapa katalogen "{0}": Filen eller katalogen finns inte FileChooser.renameFileError.textAndMnemonic=Fel vid namn\u00E4ndring av fil "{0}" till "{1}"
FileChooser.deleteFileButtonText=Ta bort fil
FileChooser.deleteFileButtonMnemonic=66 # dummy resource added for translation automation
FileChooser.renameFileButtonText=\u00C4ndra namn p\u00E5 filen OptionPane.okButton.textAndMnemonic=&OK
FileChooser.renameFileButtonMnemonic=82 # dummy resource added for translation automation
FileChooser.cancelButtonText=Avbryt OptionPane.cancelButton.textAndMnemonic=&Avbryt
FileChooser.cancelButtonMnemonic=65
FileChooser.saveButtonText=OK
FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=OK
FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Spara
FileChooser.openDialogTitleText=\u00D6ppna
FileChooser.pathLabelText=Urval:
FileChooser.filterLabelText=Filter:
FileChooser.pathLabelMnemonic=85
FileChooser.foldersLabelText=Mappar
FileChooser.foldersLabelMnemonic=80
FileChooser.filesLabelText=Filer
FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=Avbryt dialogrutan Filv\u00E4ljare.
FileChooser.saveButtonToolTipText=Spara vald fil.
FileChooser.openButtonToolTipText=\u00D6ppna vald fil.
FileChooser.renameFileDialogText=Namn\u00E4ndra fil "{0}" till
FileChooser.renameFileErrorTitle=Fel
FileChooser.renameFileErrorText=Fel vid namn\u00E4ndring av fil "{0}" till "{1}"
# dummy resource added for translation automation
OptionPane.okButtonText=OK
OptionPane.okButtonMnemonic=79
# dummy resource added for translation automation
OptionPane.cancelButtonText=Avbryt
OptionPane.cancelButtonMnemonic=65
# Refer to the note in basic.properties for a description as to what # Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them. # the mnemonics correspond to and how to calculate them.
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=GTK \u989C\u8272\u9009\u62E9\u5668(G) GTKColorChooserPanel.textAndMnemonic=GTK \u989C\u8272\u9009\u62E9\u5668(&G)
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you GTKColorChooserPanel.hue.textAndMnemonic=\u8272\u8C03(&H):
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful GTKColorChooserPanel.red.textAndMnemonic=\u7EA2\u8272(&E):
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined. GTKColorChooserPanel.saturation.textAndMnemonic=\u9971\u548C\u5EA6(&S):
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.green.textAndMnemonic=\u7EFF\u8272(&G):
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second GTKColorChooserPanel.value.textAndMnemonic=\u503C(&V):
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. GTKColorChooserPanel.blue.textAndMnemonic=\u84DD\u8272(&B):
GTKColorChooserPanel.hueText=\u8272\u8C03(H):
GTKColorChooserPanel.hueMnemonic=72 GTKColorChooserPanel.color.textAndMnemonic=\u989C\u8272\u540D(&N):
GTKColorChooserPanel.redText=\u7EA2\u8272(E):
GTKColorChooserPanel.redMnemonic=69
############ FILE CHOOSER STRINGS #############
GTKColorChooserPanel.saturationText=\u9971\u548C\u5EA6(S):
GTKColorChooserPanel.saturationMnemonic=83 FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6587\u4EF6
FileChooser.newFolderButton.textAndMnemonic=\u65B0\u6587\u4EF6\u5939(&N)
GTKColorChooserPanel.greenText=\u7EFF\u8272(G): FileChooser.newFolderDialog.textAndMnemonic=\u6587\u4EF6\u5939\u540D:
GTKColorChooserPanel.greenMnemonic=71 FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=\u9519\u8BEF
FileChooser.newFolderNoDirectoryError.textAndMnemonic=\u521B\u5EFA\u76EE\u5F55 "{0}" \u65F6\u51FA\u9519: \u6CA1\u6709\u6B64\u7C7B\u6587\u4EF6\u6216\u76EE\u5F55
GTKColorChooserPanel.valueText=\u503C(V): FileChooser.deleteFileButton.textAndMnemonic=\u5220\u9664\u6587\u4EF6(&L)
GTKColorChooserPanel.valueMnemonic=86 FileChooser.renameFileButton.textAndMnemonic=\u91CD\u547D\u540D\u6587\u4EF6(&R)
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
GTKColorChooserPanel.blueText=\u84DD\u8272(B): FileChooser.saveButton.textAndMnemonic=\u786E\u5B9A(&O)
GTKColorChooserPanel.blueMnemonic=66 FileChooser.openButton.textAndMnemonic=\u786E\u5B9A(&O)
FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
GTKColorChooserPanel.colorNameText=\u989C\u8272\u540D(N): FileChooser.openDialogTitle.textAndMnemonic=\u6253\u5F00
GTKColorChooserPanel.colorNameMnemonic=78 FileChooser.pathLabel.textAndMnemonic=\u9009\u5B9A\u5185\u5BB9(&S):
FileChooser.filterLabel.textAndMnemonic=\u7B5B\u9009\u5668:
FileChooser.foldersLabel.textAndMnemonic=\u6587\u4EF6\u5939(&D)
FileChooser.filesLabel.textAndMnemonic=\u6587\u4EF6(&F)
############ FILE CHOOSER STRINGS #############
FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846\u3002
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6587\u4EF6 FileChooser.saveButtonToolTip.textAndMnemonic=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6\u3002
FileChooser.newFolderButtonText=\u65B0\u6587\u4EF6\u5939(N) FileChooser.openButtonToolTip.textAndMnemonic=\u6253\u5F00\u6240\u9009\u6587\u4EF6\u3002
FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=\u6587\u4EF6\u5939\u540D: FileChooser.renameFileDialog.textAndMnemonic=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A
FileChooser.newFolderNoDirectoryErrorTitleText=\u9519\u8BEF FileChooser.renameFileError.titleAndMnemonic=\u9519\u8BEF
FileChooser.newFolderNoDirectoryErrorText=\u521B\u5EFA\u76EE\u5F55 "{0}" \u65F6\u51FA\u9519: \u6CA1\u6709\u6B64\u7C7B\u6587\u4EF6\u6216\u76EE\u5F55 FileChooser.renameFileError.textAndMnemonic=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A "{1}" \u65F6\u51FA\u9519
FileChooser.deleteFileButtonText=\u5220\u9664\u6587\u4EF6(L)
FileChooser.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=\u91CD\u547D\u540D\u6587\u4EF6(R)
FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=\u53D6\u6D88
FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=\u786E\u5B9A
FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=\u786E\u5B9A
FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=\u4FDD\u5B58
FileChooser.openDialogTitleText=\u6253\u5F00
FileChooser.pathLabelText=\u9009\u5B9A\u5185\u5BB9(S):
FileChooser.filterLabelText=\u7B5B\u9009\u5668:
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=\u6587\u4EF6\u5939(D)
FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=\u6587\u4EF6(F)
FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846\u3002
FileChooser.saveButtonToolTipText=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6\u3002
FileChooser.openButtonToolTipText=\u6253\u5F00\u6240\u9009\u6587\u4EF6\u3002
FileChooser.renameFileDialogText=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A
FileChooser.renameFileErrorTitle=\u9519\u8BEF
FileChooser.renameFileErrorText=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A "{1}" \u65F6\u51FA\u9519
#OptionPane.okButtonMnemonic=79
#OptionPane.cancelButtonMnemonic=67
# Refer to the note in basic.properties for a description as to what # Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them. # the mnemonics correspond to and how to calculate them.
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=GTK \u8272\u5F69\u9078\u64C7\u5668(G) GTKColorChooserPanel.textAndMnemonic=GTK \u8272\u5F69\u9078\u64C7\u5668(&G)
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you GTKColorChooserPanel.hue.textAndMnemonic=\u8272\u8ABF(&H)\uFF1A
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful GTKColorChooserPanel.red.textAndMnemonic=\u7D05(&E):
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined. GTKColorChooserPanel.saturation.textAndMnemonic=\u5F69\u5EA6(&S):
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.green.textAndMnemonic=\u7DA0(&G):
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second GTKColorChooserPanel.value.textAndMnemonic=\u503C(&V):
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. GTKColorChooserPanel.blue.textAndMnemonic=\u85CD(&B):
GTKColorChooserPanel.hueText=\u8272\u8ABF(H)\uFF1A
GTKColorChooserPanel.hueMnemonic=72 GTKColorChooserPanel.color.textAndMnemonic=\u984F\u8272\u540D\u7A31(&N):
GTKColorChooserPanel.redText=\u7D05(E):
GTKColorChooserPanel.redMnemonic=69
############ FILE CHOOSER STRINGS #############
GTKColorChooserPanel.saturationText=\u5F69\u5EA6(S):
GTKColorChooserPanel.saturationMnemonic=83 FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6A94\u6848
FileChooser.newFolderButton.textAndMnemonic=\u65B0\u5EFA\u8CC7\u6599\u593E(&N)
GTKColorChooserPanel.greenText=\u7DA0(G): FileChooser.newFolderDialog.textAndMnemonic=\u8CC7\u6599\u593E\u540D\u7A31:
GTKColorChooserPanel.greenMnemonic=71 FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=\u932F\u8AA4
FileChooser.newFolderNoDirectoryError.textAndMnemonic=\u5EFA\u7ACB\u76EE\u9304 "{0}" \u6642\u767C\u751F\u932F\u8AA4: \u6C92\u6709\u6B64\u6A94\u6848\u6216\u76EE\u9304
GTKColorChooserPanel.valueText=\u503C(V): FileChooser.deleteFileButton.textAndMnemonic=\u522A\u9664\u6A94\u6848(&L)
GTKColorChooserPanel.valueMnemonic=86 FileChooser.renameFileButton.textAndMnemonic=\u91CD\u65B0\u547D\u540D\u6A94\u6848(&R)
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
GTKColorChooserPanel.blueText=\u85CD(B): FileChooser.saveButton.textAndMnemonic=\u78BA\u5B9A(&O)
GTKColorChooserPanel.blueMnemonic=66 FileChooser.openButton.textAndMnemonic=\u78BA\u5B9A(&O)
FileChooser.saveDialogTitle.textAndMnemonic=\u5132\u5B58
GTKColorChooserPanel.colorNameText=\u984F\u8272\u540D\u7A31(N): FileChooser.openDialogTitle.textAndMnemonic=\u958B\u555F
GTKColorChooserPanel.colorNameMnemonic=78 FileChooser.pathLabel.textAndMnemonic=\u9078\u53D6(&S):
FileChooser.filterLabel.textAndMnemonic=\u7BE9\u9078:
FileChooser.foldersLabel.textAndMnemonic=\u8CC7\u6599\u593E(&D)
FileChooser.filesLabel.textAndMnemonic=\u6A94\u6848(&F)
############ FILE CHOOSER STRINGS #############
FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6A94\u6848\u9078\u64C7\u5668\u5C0D\u8A71\u65B9\u584A\u3002
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6A94\u6848 FileChooser.saveButtonToolTip.textAndMnemonic=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848\u3002
FileChooser.newFolderButtonText=\u65B0\u5EFA\u8CC7\u6599\u593E(N) FileChooser.openButtonToolTip.textAndMnemonic=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848\u3002
FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=\u8CC7\u6599\u593E\u540D\u7A31: FileChooser.renameFileDialog.textAndMnemonic=\u5C07\u6A94\u6848 "{0}" \u91CD\u65B0\u547D\u540D\u70BA
FileChooser.newFolderNoDirectoryErrorTitleText=\u932F\u8AA4 FileChooser.renameFileError.titleAndMnemonic=\u932F\u8AA4
FileChooser.newFolderNoDirectoryErrorText=\u5EFA\u7ACB\u76EE\u9304 "{0}" \u6642\u767C\u751F\u932F\u8AA4: \u6C92\u6709\u6B64\u6A94\u6848\u6216\u76EE\u9304 FileChooser.renameFileError.textAndMnemonic=\u5C07\u6A94\u6848 "{0}" \u91CD\u65B0\u547D\u540D\u70BA "{1}" \u6642\u51FA\u73FE\u932F\u8AA4
FileChooser.deleteFileButtonText=\u522A\u9664\u6A94\u6848(L)
FileChooser.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=\u91CD\u65B0\u547D\u540D\u6A94\u6848(R)
FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=\u53D6\u6D88
FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=\u78BA\u5B9A
FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=\u78BA\u5B9A
FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=\u5132\u5B58
FileChooser.openDialogTitleText=\u958B\u555F
FileChooser.pathLabelText=\u9078\u53D6(S):
FileChooser.filterLabelText=\u7BE9\u9078:
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=\u8CC7\u6599\u593E(D)
FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=\u6A94\u6848(F)
FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6A94\u6848\u9078\u64C7\u5668\u5C0D\u8A71\u65B9\u584A\u3002
FileChooser.saveButtonToolTipText=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848\u3002
FileChooser.openButtonToolTipText=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848\u3002
FileChooser.renameFileDialogText=\u5C07\u6A94\u6848 "{0}" \u91CD\u65B0\u547D\u540D\u70BA
FileChooser.renameFileErrorTitle=\u932F\u8AA4
FileChooser.renameFileErrorText=\u5C07\u6A94\u6848 "{0}" \u91CD\u65B0\u547D\u540D\u70BA "{1}" \u6642\u51FA\u73FE\u932F\u8AA4
#OptionPane.okButtonMnemonic=79
#OptionPane.cancelButtonMnemonic=67
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameText=RGB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# ColorChooser.rgbMnemonic=71 #
# ColorChooser.rgbDisplayedMnemonicIndex=1 # Indicates that the tab in the ColorChooser for RGB colors will have
# Indicates that the tab in the ColorChooser for RGB colors will have # the text 'RGB', further the mnemonic character will be 'g' and that
# the text 'RGB', further the mnemonic character will be 'g' and that # a decoration will be provided under the 'G'. This will typically
# a decoration will be provided under the 'G'. This will typically # look like: RGB
# look like: RGB # -
# - #
# 71 corresponds to the decimal value of the VK constant defined # One important thing to remember is that the mnemonic MUST exist in
# in java/awt/KeyEvent.java. VK_G is defined as: # the String, if it does not exist you should add text that makes it
# # exist. This will typically take the form 'XXXX (M)' where M is the
# public static final int VK_G = 0x47; # character for the mnemonic.
# #
# 0x47 is a hex number and needs to be converted to decimal. # @author Steve Wilson
# A simple way to calculate this for a-z is to add 64 to the index of
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic ############ FILE CHOOSER STRINGS #############
# for 'a' is 65, 'b' is 66... FileChooser.fileDescription.textAndMnemonic=Generic File
# FileChooser.directoryDescription.textAndMnemonic=Directory
# The xxDisplayedMnemonicIndex is used to indicate the index of the FileChooser.newFolderError.textAndMnemonic=Error creating new folder
# character that should be underlined in the String, with 0 FileChooser.newFolderErrorSeparator= :
# corresponding to the first character in the String. FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Unable to create folder
# FileChooser.newFolderParentDoesntExist.textAndMnemonic=Unable to create the folder.\n\nThe system cannot find the path specified.
# One important thing to remember is that the mnemonic MUST exist in FileChooser.renameErrorTitle.textAndMnemonic=Error Renaming File or Folder
# the String, if it does not exist you should add text that makes it FileChooser.renameError.textAndMnemonic=Cannot rename {0}
# exist. This will typically take the form 'XXXX (M)' where M is the FileChooser.renameErrorFileExists.textAndMnemonic=Cannot rename {0}: A file with the name you specified already exists. \
# character for the mnemonic. Specify a different file name.
# FileChooser.acceptAllFileFilter.textAndMnemonic=All Files
# @author Steve Wilson FileChooser.cancelButton.textAndMnemonic=Cancel
FileChooser.saveButton.textAndMnemonic=&Save
############ FILE CHOOSER STRINGS ############# FileChooser.openButton.textAndMnemonic=&Open
FileChooser.fileDescriptionText=Generic File FileChooser.saveDialogTitle.textAndMnemonic=Save
FileChooser.directoryDescriptionText=Directory FileChooser.openDialogTitle.textAndMnemonic=Open
FileChooser.newFolderErrorText=Error creating new folder FileChooser.updateButton.textAndMnemonic=&Update
FileChooser.newFolderErrorSeparator= : FileChooser.helpButton.textAndMnemonic=&Help
FileChooser.newFolderParentDoesntExistTitleText=Unable to create folder FileChooser.directoryOpenButton.textAndMnemonic=&Open
FileChooser.newFolderParentDoesntExistText=Unable to create the folder.\n\nThe system cannot find the path specified.
FileChooser.renameErrorTitleText=Error Renaming File or Folder # File Size Units
FileChooser.renameErrorText=Cannot rename {0} FileChooser.fileSizeKiloBytes={0} KB
FileChooser.renameErrorFileExistsText=Cannot rename {0}: A file with the name you specified already exists. \ FileChooser.fileSizeMegaBytes={0} MB
Specify a different file name. FileChooser.fileSizeGigaBytes={0} GB
FileChooser.acceptAllFileFilterText=All Files
FileChooser.cancelButtonText=Cancel # These strings are platform dependent not look and feel dependent.
#FileChooser.cancelButtonMnemonic=67 // not needed? FileChooser.win32.newFolder=New Folder
FileChooser.saveButtonText=Save FileChooser.win32.newFolder.subsequent=New Folder ({0})
FileChooser.saveButtonMnemonic=83 // not needed? FileChooser.other.newFolder=NewFolder
FileChooser.openButtonText=Open FileChooser.other.newFolder.subsequent=NewFolder.{0}
FileChooser.openButtonMnemonic=79 //not needed?
FileChooser.saveDialogTitleText=Save
FileChooser.openDialogTitleText=Open ## file chooser tooltips ###
FileChooser.updateButtonText=Update FileChooser.cancelButtonToolTip.textAndMnemonic=Abort file chooser dialog
FileChooser.updateButtonMnemonic=85 FileChooser.saveButtonToolTip.textAndMnemonic=Save selected file
FileChooser.helpButtonText=Help FileChooser.openButtonToolTip.textAndMnemonic=Open selected file
FileChooser.helpButtonMnemonic=72 FileChooser.updateButtonToolTip.textAndMnemonic=Update directory listing
FileChooser.directoryOpenButtonText=Open FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser help
FileChooser.directoryOpenButtonMnemonic=79 FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Open selected directory
# File Size Units FileChooser.filesListAccessibleName=Files List
FileChooser.fileSizeKiloBytes={0} KB FileChooser.filesDetailsAccessibleName=Files Details
FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB ############ COLOR CHOOSER STRINGS #############
ColorChooser.preview.textAndMnemonic=Preview
# These strings are platform dependent not look and feel dependent. ColorChooser.ok.textAndMnemonic=OK
FileChooser.win32.newFolder=New Folder ColorChooser.cancel.textAndMnemonic=Cancel
FileChooser.win32.newFolder.subsequent=New Folder ({0}) ColorChooser.reset.textAndMnemonic=&Reset
FileChooser.other.newFolder=NewFolder ColorChooser.sample.textAndMnemonic=Sample Text Sample Text
FileChooser.other.newFolder.subsequent=NewFolder.{0} ColorChooser.swatches.textAndMnemonic=&Swatches
ColorChooser.swatchesRecent.textAndMnemonic=Recent:
ColorChooser.hsv.textAndMnemonic=&HSV
## file chooser tooltips ### ColorChooser.hsvHue.textAndMnemonic=Hue
FileChooser.cancelButtonToolTipText=Abort file chooser dialog ColorChooser.hsvSaturation.textAndMnemonic=Saturation
FileChooser.saveButtonToolTipText=Save selected file ColorChooser.hsvValue.textAndMnemonic=Value
FileChooser.openButtonToolTipText=Open selected file ColorChooser.hsvTransparency.textAndMnemonic=Transparency
FileChooser.updateButtonToolTipText=Update directory listing ColorChooser.hsl.textAndMnemonic=HS&L
FileChooser.helpButtonToolTipText=FileChooser help ColorChooser.hslHue.textAndMnemonic=Hue
FileChooser.directoryOpenButtonToolTipText=Open selected directory ColorChooser.hslSaturation.textAndMnemonic=Saturation
ColorChooser.hslLightness.textAndMnemonic=Lightness
FileChooser.filesListAccessibleName=Files List ColorChooser.hslTransparency.textAndMnemonic=Transparency
FileChooser.filesDetailsAccessibleName=Files Details ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.rgbRed.textAndMnemonic=Re&d
############ COLOR CHOOSER STRINGS ############# ColorChooser.rgbGreen.textAndMnemonic=Gree&n
ColorChooser.previewText=Preview ColorChooser.rgbBlue.textAndMnemonic=&Blue
ColorChooser.okText=OK ColorChooser.rgbAlpha.textAndMnemonic=Alpha
ColorChooser.cancelText=Cancel ColorChooser.rgbHexCode.textAndMnemonic=&Color Code
ColorChooser.resetText=Reset ColorChooser.cmyk.textAndMnemonic=C&MYK
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.cmykCyan.textAndMnemonic=Cyan
ColorChooser.resetMnemonic=82 ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.sampleText=Sample Text Sample Text ColorChooser.cmykYellow.textAndMnemonic=Yellow
ColorChooser.swatchesNameText=Swatches ColorChooser.cmykBlack.textAndMnemonic=Black
ColorChooser.swatchesMnemonic=83 ColorChooser.cmykAlpha.textAndMnemonic=Alpha
ColorChooser.swatchesRecentText=Recent:
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX ############ OPTION PANE STRINGS #############
# constant, and an index into the text to render the mnemonic as. The # We only define mnemonics for YES/NO, but for completeness you can
# mnemonic is xxxMnemonic and the index of the character to underline is # define mnemonics for any of the buttons.
# xxxDisplayedMnemonicIndex. OptionPane.yesButton.textAndMnemonic=&Yes
ColorChooser.hsvNameText=HSV OptionPane.noButton.textAndMnemonic=&No
ColorChooser.hsvMnemonic=72 OptionPane.okButton.textAndMnemonic=OK
ColorChooser.hsvHueText=Hue #OptionPane.okButtonMnemonic=0
ColorChooser.hsvSaturationText=Saturation OptionPane.cancelButton.textAndMnemonic=Cancel
ColorChooser.hsvValueText=Value #OptionPane.cancelButtonMnemonic=0
ColorChooser.hsvTransparencyText=Transparency OptionPane.title.textAndMnemonic=Select an Option
ColorChooser.hslNameText=HSL # Title for the dialog for the showInputDialog methods. Only used if
ColorChooser.hslMnemonic=76 # the developer uses one of the variants that doesn't take a title.
ColorChooser.hslHueText=Hue OptionPane.inputDialog.titleAndMnemonic=Input
ColorChooser.hslSaturationText=Saturation # Title for the dialog for the showMessageDialog methods. Only used if
ColorChooser.hslLightnessText=Lightness # the developer uses one of the variants that doesn't take a title.
ColorChooser.hslTransparencyText=Transparency OptionPane.messageDialog.titleAndMnemonic=Message
ColorChooser.rgbNameText=RGB
ColorChooser.rgbMnemonic=71 ############ Printing Dialog Strings ############
ColorChooser.rgbRedText=Red PrintingDialog.titleProgress.textAndMnemonic=Printing
ColorChooser.rgbRedMnemonic=68 // not needed? PrintingDialog.titleAborting.textAndMnemonic=Printing (Aborting)
ColorChooser.rgbGreenText=Green
ColorChooser.rgbGreenMnemonic=78 // not needed? PrintingDialog.contentInitial.textAndMnemonic=Printing in progress...
ColorChooser.rgbBlueText=Blue
ColorChooser.rgbBlueMnemonic=66 // not needed? # The following string will be formatted by a MessageFormat
ColorChooser.rgbAlphaText=Alpha # and {0} will be replaced by page number being printed
ColorChooser.rgbHexCodeText=Color Code PrintingDialog.contentProgress.textAndMnemonic=Printed page {0}...
ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK PrintingDialog.contentAborting.textAndMnemonic=Printing aborting...
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Cyan PrintingDialog.abortButton.textAndMnemonic=&Abort
ColorChooser.cmykMagentaText=Magenta PrintingDialog.abortButtonToolTip.textAndMnemonic=Abort Printing
ColorChooser.cmykYellowText=Yellow
ColorChooser.cmykBlackText=Black ############ Internal Frame Strings ############
ColorChooser.cmykAlphaText=Alpha InternalFrame.iconButtonToolTip=Minimize
InternalFrame.maxButtonToolTip=Maximize
############ OPTION PANE STRINGS ############# InternalFrame.restoreButtonToolTip=Restore
# Mnemonic keys correspond to KeyEvent.VK_XXX constant InternalFrame.closeButtonToolTip=Close
# We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. ############ Internal Frame Title Pane Strings ############
OptionPane.yesButtonText=Yes InternalFrameTitlePane.restoreButton.textAndMnemonic=Restore
OptionPane.yesButtonMnemonic=89 InternalFrameTitlePane.moveButton.textAndMnemonic=Move
OptionPane.noButtonText=No InternalFrameTitlePane.sizeButton.textAndMnemonic=Size
OptionPane.noButtonMnemonic=78 InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimize
OptionPane.okButtonText=OK InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximize
#OptionPane.okButtonMnemonic=0 InternalFrameTitlePane.closeButton.textAndMnemonic=Close
OptionPane.cancelButtonText=Cancel
#OptionPane.cancelButtonMnemonic=0 ############ Text strings #############
OptionPane.titleText=Select an Option # Used for html forms
# Title for the dialog for the showInputDialog methods. Only used if FormView.submitButton.textAndMnemonic=Submit Query
# the developer uses one of the variants that doesn't take a title. FormView.resetButton.textAndMnemonic=Reset
OptionPane.inputDialogTitle=Input FormView.browseFileButton.textAndMnemonic=Browse...
# Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. ############ Abstract Document Strings ############
OptionPane.messageDialogTitle=Message AbstractDocument.styleChange.textAndMnemonic=style change
AbstractDocument.addition.textAndMnemonic=addition
############ Printing Dialog Strings ############ AbstractDocument.deletion.textAndMnemonic=deletion
PrintingDialog.titleProgressText=Printing AbstractDocument.undo.textAndMnemonic=Undo
PrintingDialog.titleAbortingText=Printing (Aborting) AbstractDocument.redo.textAndMnemonic=Redo
PrintingDialog.contentInitialText=Printing in progress... ############ Abstract Button Strings ############
AbstractButton.click.textAndMnemonic=click
# The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed ############ Abstract Undoable Edit Strings ############
PrintingDialog.contentProgressText=Printed page {0}... AbstractUndoableEdit.undo.textAndMnemonic=Undo
AbstractUndoableEdit.redo.textAndMnemonic=Redo
PrintingDialog.contentAbortingText=Printing aborting...
############ Combo Box Strings ############
PrintingDialog.abortButtonText=Abort ComboBox.togglePopup.textAndMnemonic=togglePopup
PrintingDialog.abortButtonMnemonic=65
PrintingDialog.abortButtonDisplayedMnemonicIndex=0 ############ Progress Monitor Strings ############
PrintingDialog.abortButtonToolTipText=Abort Printing ProgressMonitor.progress.textAndMnemonic=Progress...
############ Internal Frame Strings ############ ############ Split Pane Strings ############
InternalFrame.iconButtonToolTip=Minimize SplitPane.leftButton.textAndMnemonic=left button
InternalFrame.maxButtonToolTip=Maximize SplitPane.rightButton.textAndMnemonic=right button
InternalFrame.restoreButtonToolTip=Restore # Used for Isindex
InternalFrame.closeButtonToolTip=Close IsindexView.prompt=This is a searchable index. Enter search keywords:
############ Internal Frame Title Pane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.restoreButtonText=Restore InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify
InternalFrameTitlePane.moveButtonText=Move InternalFrameTitlePane.maximizeButtonAccessibleName=Maximize
InternalFrameTitlePane.sizeButtonText=Size InternalFrameTitlePane.closeButtonAccessibleName=Close
InternalFrameTitlePane.minimizeButtonText=Minimize
InternalFrameTitlePane.maximizeButtonText=Maximize
InternalFrameTitlePane.closeButtonText=Close
############ Text strings #############
# Used for html forms
FormView.submitButtonText=Submit Query
FormView.resetButtonText=Reset
FormView.browseFileButtonText=Browse...
############ Abstract Document Strings ############
AbstractDocument.styleChangeText=style change
AbstractDocument.additionText=addition
AbstractDocument.deletionText=deletion
AbstractDocument.undoText=Undo
AbstractDocument.redoText=Redo
############ Abstract Button Strings ############
AbstractButton.clickText=click
############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=Undo
AbstractUndoableEdit.redoText=Redo
############ Combo Box Strings ############
ComboBox.togglePopupText=togglePopup
############ Progress Monitor Strings ############
ProgressMonitor.progressText=Progress...
############ Split Pane Strings ############
SplitPane.leftButtonText=left button
SplitPane.rightButtonText=right button
# Used for Isindex
IsindexView.prompt=This is a searchable index. Enter search keywords:
############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximize
InternalFrameTitlePane.closeButtonAccessibleName=Close
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameText=RGB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# ColorChooser.rgbMnemonic=71 #
# ColorChooser.rgbDisplayedMnemonicIndex=1 # Indicates that the tab in the ColorChooser for RGB colors will have
# Indicates that the tab in the ColorChooser for RGB colors will have # the text 'RGB', further the mnemonic character will be 'g' and that
# the text 'RGB', further the mnemonic character will be 'g' and that # a decoration will be provided under the 'G'. This will typically
# a decoration will be provided under the 'G'. This will typically # look like: RGB
# look like: RGB # -
# - #
# 71 corresponds to the decimal value of the VK constant defined # One important thing to remember is that the mnemonic MUST exist in
# in java/awt/KeyEvent.java. VK_G is defined as: # the String, if it does not exist you should add text that makes it
# # exist. This will typically take the form 'XXXX (M)' where M is the
# public static final int VK_G = 0x47; # character for the mnemonic.
# #
# 0x47 is a hex number and needs to be converted to decimal. # @author Steve Wilson
# A simple way to calculate this for a-z is to add 64 to the index of
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic ############ FILE CHOOSER STRINGS #############
# for 'a' is 65, 'b' is 66... FileChooser.fileDescription.textAndMnemonic=Allgemeine Datei
# FileChooser.directoryDescription.textAndMnemonic=Verzeichnis
# The xxDisplayedMnemonicIndex is used to indicate the index of the FileChooser.newFolderError.textAndMnemonic=Fehler beim Erstellen eines neuen Ordners
# character that should be underlined in the String, with 0 FileChooser.newFolderErrorSeparator= :
# corresponding to the first character in the String. FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Ordner kann nicht erstellt werden
# FileChooser.newFolderParentDoesntExist.textAndMnemonic=Ordner kann nicht erstellt werden.\n\nSystem kann den angegebenen Pfad nicht finden.
# One important thing to remember is that the mnemonic MUST exist in FileChooser.renameErrorTitle.textAndMnemonic=Fehler beim Umbenennen von Datei oder Ordner
# the String, if it does not exist you should add text that makes it FileChooser.renameError.textAndMnemonic={0} kann nicht umbenannt werden
# exist. This will typically take the form 'XXXX (M)' where M is the FileChooser.renameErrorFileExists.textAndMnemonic={0} kann nicht umbenannt werden: Es ist bereits eine Datei mit dem angegebenen Namen vorhanden. Geben Sie einen anderen Dateinamen an.
# character for the mnemonic. FileChooser.acceptAllFileFilter.textAndMnemonic=Alle Dateien
# FileChooser.cancelButton.textAndMnemonic=&Abbrechen
# @author Steve Wilson FileChooser.saveButton.textAndMnemonic=&Speichern
FileChooser.openButton.textAndMnemonic=\u00D6ffnen(&F)
############ FILE CHOOSER STRINGS ############# FileChooser.saveDialogTitle.textAndMnemonic=Speichern
FileChooser.fileDescriptionText=Allgemeine Datei FileChooser.openDialogTitle.textAndMnemonic=\u00D6ffnen
FileChooser.directoryDescriptionText=Verzeichnis FileChooser.updateButton.textAndMnemonic=A&ktualisieren
FileChooser.newFolderErrorText=Fehler beim Erstellen eines neuen Ordners FileChooser.helpButton.textAndMnemonic=&Hilfe
FileChooser.newFolderErrorSeparator= : FileChooser.directoryOpenButton.textAndMnemonic=\u00D6ffnen(&F)
FileChooser.newFolderParentDoesntExistTitleText=Ordner kann nicht erstellt werden
FileChooser.newFolderParentDoesntExistText=Ordner kann nicht erstellt werden.\n\nSystem kann den angegebenen Pfad nicht finden. # File Size Units
FileChooser.renameErrorTitleText=Fehler beim Umbenennen von Datei oder Ordner FileChooser.fileSizeKiloBytes={0} KB
FileChooser.renameErrorText={0} kann nicht umbenannt werden FileChooser.fileSizeMegaBytes={0} MB
FileChooser.renameErrorFileExistsText={0} kann nicht umbenannt werden: Es ist bereits eine Datei mit dem angegebenen Namen vorhanden. Geben Sie einen anderen Dateinamen an. FileChooser.fileSizeGigaBytes={0} GB
FileChooser.acceptAllFileFilterText=Alle Dateien
FileChooser.cancelButtonText=Abbrechen # These strings are platform dependent not look and feel dependent.
FileChooser.cancelButtonMnemonic=65 FileChooser.win32.newFolder=Neuer Ordner
FileChooser.saveButtonText=Speichern FileChooser.win32.newFolder.subsequent=Neuer Ordner ({0})
FileChooser.saveButtonMnemonic=83 FileChooser.other.newFolder=NewFolder
FileChooser.openButtonText=\u00D6ffnen FileChooser.other.newFolder.subsequent=NewFolder.{0}
FileChooser.openButtonMnemonic=70
FileChooser.saveDialogTitleText=Speichern
FileChooser.openDialogTitleText=\u00D6ffnen ## file chooser tooltips ###
FileChooser.updateButtonText=Aktualisieren FileChooser.cancelButtonToolTip.textAndMnemonic=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen
FileChooser.updateButtonMnemonic=75 FileChooser.saveButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei speichern
FileChooser.helpButtonText=Hilfe FileChooser.openButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei \u00F6ffnen
FileChooser.helpButtonMnemonic=72 FileChooser.updateButtonToolTip.textAndMnemonic=Verzeichnisliste aktualisieren
FileChooser.directoryOpenButtonText=\u00D6ffnen FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser-Hilfe
FileChooser.directoryOpenButtonMnemonic=70 FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Ausgew\u00E4hltes Verzeichnis \u00F6ffnen
# File Size Units FileChooser.filesListAccessibleName=Files List
FileChooser.fileSizeKiloBytes={0} KB FileChooser.filesDetailsAccessibleName=Files Details
FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB ############ COLOR CHOOSER STRINGS #############
ColorChooser.preview.textAndMnemonic=Vorschau
# These strings are platform dependent not look and feel dependent. ColorChooser.ok.textAndMnemonic=OK
FileChooser.win32.newFolder=Neuer Ordner ColorChooser.cancel.textAndMnemonic=Abbrechen
FileChooser.win32.newFolder.subsequent=Neuer Ordner ({0}) ColorChooser.reset.textAndMnemonic=Zur\u00FCcksetzen(&Z)
FileChooser.other.newFolder=NewFolder ColorChooser.sample.textAndMnemonic=Beispieltext Beispieltext
FileChooser.other.newFolder.subsequent=NewFolder.{0} ColorChooser.swatches.textAndMnemonic=&Swatches
ColorChooser.swatchesRecent.textAndMnemonic=Aktuell:
ColorChooser.hsv.textAndMnemonic=&HSV
## file chooser tooltips ### ColorChooser.hsvHue.textAndMnemonic=Farbton
FileChooser.cancelButtonToolTipText=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen ColorChooser.hsvSaturation.textAndMnemonic=S\u00E4ttigung
FileChooser.saveButtonToolTipText=Ausgew\u00E4hlte Datei speichern ColorChooser.hsvValue.textAndMnemonic=Wert
FileChooser.openButtonToolTipText=Ausgew\u00E4hlte Datei \u00F6ffnen ColorChooser.hsvTransparency.textAndMnemonic=Transparenz
FileChooser.updateButtonToolTipText=Verzeichnisliste aktualisieren ColorChooser.hsl.textAndMnemonic=HS&L
FileChooser.helpButtonToolTipText=FileChooser-Hilfe ColorChooser.hslHue.textAndMnemonic=Farbton
FileChooser.directoryOpenButtonToolTipText=Ausgew\u00E4hltes Verzeichnis \u00F6ffnen ColorChooser.hslSaturation.textAndMnemonic=S\u00E4ttigung
ColorChooser.hslLightness.textAndMnemonic=Helligkeit
FileChooser.filesListAccessibleName=Files List ColorChooser.hslTransparency.textAndMnemonic=Transparenz
FileChooser.filesDetailsAccessibleName=Files Details ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.rgbRed.textAndMnemonic=Ro&t
############ COLOR CHOOSER STRINGS ############# ColorChooser.rgbGreen.textAndMnemonic=Gr\u00FCn(&N)
ColorChooser.previewText=Vorschau ColorChooser.rgbBlue.textAndMnemonic=&Blau
ColorChooser.okText=OK ColorChooser.rgbAlpha.textAndMnemonic=Alpha
ColorChooser.cancelText=Abbrechen ColorChooser.rgbHexCode.textAndMnemonic=&Farbcode
ColorChooser.resetText=Zur\u00FCcksetzen ColorChooser.cmyk.textAndMnemonic=C&MYK
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.cmykCyan.textAndMnemonic=Zyan
ColorChooser.resetMnemonic=90 ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.sampleText=Beispieltext Beispieltext ColorChooser.cmykYellow.textAndMnemonic=Gelb
ColorChooser.swatchesNameText=Swatches ColorChooser.cmykBlack.textAndMnemonic=Schwarz
ColorChooser.swatchesMnemonic=83 ColorChooser.cmykAlpha.textAndMnemonic=Alpha
ColorChooser.swatchesRecentText=Aktuell:
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX ############ OPTION PANE STRINGS #############
# constant, and an index into the text to render the mnemonic as. The # We only define mnemonics for YES/NO, but for completeness you can
# mnemonic is xxxMnemonic and the index of the character to underline is # define mnemonics for any of the buttons.
# xxxDisplayedMnemonicIndex. OptionPane.yesButton.textAndMnemonic=&Ja
ColorChooser.hsvNameText=HSV OptionPane.noButton.textAndMnemonic=&Nein
ColorChooser.hsvMnemonic=72 OptionPane.okButton.textAndMnemonic=&OK
ColorChooser.hsvHueText=Farbton OptionPane.cancelButton.textAndMnemonic=&Abbrechen
ColorChooser.hsvSaturationText=S\u00E4ttigung OptionPane.title.textAndMnemonic=Option ausw\u00E4hlen
ColorChooser.hsvValueText=Wert # Title for the dialog for the showInputDialog methods. Only used if
ColorChooser.hsvTransparencyText=Transparenz # the developer uses one of the variants that doesn't take a title.
ColorChooser.hslNameText=HSL OptionPane.inputDialog.titleAndMnemonic=Eingabe
ColorChooser.hslMnemonic=76 # Title for the dialog for the showMessageDialog methods. Only used if
ColorChooser.hslHueText=Farbton # the developer uses one of the variants that doesn't take a title.
ColorChooser.hslSaturationText=S\u00E4ttigung OptionPane.messageDialog.titleAndMnemonic=Meldung
ColorChooser.hslLightnessText=Helligkeit
ColorChooser.hslTransparencyText=Transparenz ############ Printing Dialog Strings ############
ColorChooser.rgbNameText=RGB PrintingDialog.titleProgress.textAndMnemonic=Drucken
ColorChooser.rgbMnemonic=71 PrintingDialog.titleAborting.textAndMnemonic=Drucken (Abbruch)
ColorChooser.rgbRedText=Rot
ColorChooser.rgbRedMnemonic=84 PrintingDialog.contentInitial.textAndMnemonic=Druckvorgang l\u00E4uft...
ColorChooser.rgbGreenText=Gr\u00FCn
ColorChooser.rgbGreenMnemonic=78 # The following string will be formatted by a MessageFormat
ColorChooser.rgbBlueText=Blau # and {0} will be replaced by page number being printed
ColorChooser.rgbBlueMnemonic=66 PrintingDialog.contentProgress.textAndMnemonic=Seite {0} wurde gedruckt...
ColorChooser.rgbAlphaText=Alpha
ColorChooser.rgbHexCodeText=Farbcode PrintingDialog.contentAborting.textAndMnemonic=Druckvorgang wird abgebrochen...
ColorChooser.rgbHexCodeMnemonic=70
ColorChooser.cmykNameText=CMYK PrintingDialog.abortButton.textAndMnemonic=&Abbruch
ColorChooser.cmykMnemonic=77 PrintingDialog.abortButtonToolTip.textAndMnemonic=Druckvorgang abbrechen
ColorChooser.cmykCyanText=Zyan
ColorChooser.cmykMagentaText=Magenta ############ Internal Frame Strings ############
ColorChooser.cmykYellowText=Gelb InternalFrame.iconButtonToolTip=Minimieren
ColorChooser.cmykBlackText=Schwarz InternalFrame.maxButtonToolTip=Maximieren
ColorChooser.cmykAlphaText=Alpha InternalFrame.restoreButtonToolTip=Wiederherstellen
InternalFrame.closeButtonToolTip=Schlie\u00DFen
############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant ############ Internal Frame Title Pane Strings ############
# We only define mnemonics for YES/NO, but for completeness you can InternalFrameTitlePane.restoreButton.textAndMnemonic=Wiederherstellen
# define mnemonics for any of the buttons. InternalFrameTitlePane.moveButton.textAndMnemonic=Verschieben
OptionPane.yesButtonText=Ja InternalFrameTitlePane.sizeButton.textAndMnemonic=Gr\u00F6\u00DFe
OptionPane.yesButtonMnemonic=74 InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimieren
OptionPane.noButtonText=Nein InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximieren
OptionPane.noButtonMnemonic=78 InternalFrameTitlePane.closeButton.textAndMnemonic=Schlie\u00DFen
OptionPane.okButtonText=OK
OptionPane.okButtonMnemonic=O ############ Text strings #############
OptionPane.cancelButtonText=Abbrechen # Used for html forms
OptionPane.cancelButtonMnemonic=A FormView.submitButton.textAndMnemonic=Abfrage weiterleiten
OptionPane.titleText=Option ausw\u00E4hlen FormView.resetButton.textAndMnemonic=Zur\u00FCcksetzen
# Title for the dialog for the showInputDialog methods. Only used if FormView.browseFileButton.textAndMnemonic=Durchsuchen...
# the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=Eingabe ############ Abstract Document Strings ############
# Title for the dialog for the showMessageDialog methods. Only used if AbstractDocument.styleChange.textAndMnemonic=Formatvorlagen\u00E4nderung
# the developer uses one of the variants that doesn't take a title. AbstractDocument.addition.textAndMnemonic=Hinzuf\u00FCgen
OptionPane.messageDialogTitle=Meldung AbstractDocument.deletion.textAndMnemonic=L\u00F6schen
AbstractDocument.undo.textAndMnemonic=R\u00FCckg\u00E4ngig
############ Printing Dialog Strings ############ AbstractDocument.redo.textAndMnemonic=Wiederherstellen
PrintingDialog.titleProgressText=Drucken
PrintingDialog.titleAbortingText=Drucken (Abbruch) ############ Abstract Button Strings ############
AbstractButton.click.textAndMnemonic=Klicken
PrintingDialog.contentInitialText=Druckvorgang l\u00E4uft...
############ Abstract Undoable Edit Strings ############
# The following string will be formatted by a MessageFormat AbstractUndoableEdit.undo.textAndMnemonic=R\u00FCckg\u00E4ngig
# and {0} will be replaced by page number being printed AbstractUndoableEdit.redo.textAndMnemonic=Wiederherstellen
PrintingDialog.contentProgressText=Seite {0} wurde gedruckt...
############ Combo Box Strings ############
PrintingDialog.contentAbortingText=Druckvorgang wird abgebrochen... ComboBox.togglePopup.textAndMnemonic=togglePopup
PrintingDialog.abortButtonText=Abbruch ############ Progress Monitor Strings ############
PrintingDialog.abortButtonMnemonic=65 ProgressMonitor.progress.textAndMnemonic=Fortschritt...
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=Druckvorgang abbrechen ############ Split Pane Strings ############
SplitPane.leftButton.textAndMnemonic=linke Schaltfl\u00E4che
############ Internal Frame Strings ############ SplitPane.rightButton.textAndMnemonic=rechte Schaltfl\u00E4che
InternalFrame.iconButtonToolTip=Minimieren # Used for Isindex
InternalFrame.maxButtonToolTip=Maximieren IsindexView.prompt=Dieser Index kann durchsucht werden. Geben Sie Schl\u00FCsselw\u00F6rter f\u00FCr die Suche ein:
InternalFrame.restoreButtonToolTip=Wiederherstellen
InternalFrame.closeButtonToolTip=Schlie\u00DFen ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Als Symbol darstellen
############ Internal Frame Title Pane Strings ############ InternalFrameTitlePane.maximizeButtonAccessibleName=Maximieren
InternalFrameTitlePane.restoreButtonText=Wiederherstellen InternalFrameTitlePane.closeButtonAccessibleName=Schlie\u00DFen
InternalFrameTitlePane.moveButtonText=Verschieben
InternalFrameTitlePane.sizeButtonText=Gr\u00F6\u00DFe
InternalFrameTitlePane.minimizeButtonText=Minimieren
InternalFrameTitlePane.maximizeButtonText=Maximieren
InternalFrameTitlePane.closeButtonText=Schlie\u00DFen
############ Text strings #############
# Used for html forms
FormView.submitButtonText=Abfrage weiterleiten
FormView.resetButtonText=Zur\u00FCcksetzen
FormView.browseFileButtonText=Durchsuchen...
############ Abstract Document Strings ############
AbstractDocument.styleChangeText=Formatvorlagen\u00E4nderung
AbstractDocument.additionText=Hinzuf\u00FCgen
AbstractDocument.deletionText=L\u00F6schen
AbstractDocument.undoText=R\u00FCckg\u00E4ngig
AbstractDocument.redoText=Wiederherstellen
############ Abstract Button Strings ############
AbstractButton.clickText=Klicken
############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=R\u00FCckg\u00E4ngig
AbstractUndoableEdit.redoText=Wiederherstellen
############ Combo Box Strings ############
ComboBox.togglePopupText=togglePopup
############ Progress Monitor Strings ############
ProgressMonitor.progressText=Fortschritt...
############ Split Pane Strings ############
SplitPane.leftButtonText=linke Schaltfl\u00E4che
SplitPane.rightButtonText=rechte Schaltfl\u00E4che
# Used for Isindex
IsindexView.prompt=Dieser Index kann durchsucht werden. Geben Sie Schl\u00FCsselw\u00F6rter f\u00FCr die Suche ein:
############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Als Symbol darstellen
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximieren
InternalFrameTitlePane.closeButtonAccessibleName=Schlie\u00DFen
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameText=RGB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# ColorChooser.rgbMnemonic=71 # Indicates that the tab in the ColorChooser for RGB colors will have
# ColorChooser.rgbDisplayedMnemonicIndex=1 # the text 'RGB', further the mnemonic character will be 'g' and that
# Indicates that the tab in the ColorChooser for RGB colors will have # a decoration will be provided under the 'G'. This will typically
# the text 'RGB', further the mnemonic character will be 'g' and that # look like: RGB
# a decoration will be provided under the 'G'. This will typically # -
# look like: RGB #
# - # One important thing to remember is that the mnemonic MUST exist in
# 71 corresponds to the decimal value of the VK constant defined # the String, if it does not exist you should add text that makes it
# in java/awt/KeyEvent.java. VK_G is defined as: # exist. This will typically take the form 'XXXX (M)' where M is the
# # character for the mnemonic.
# public static final int VK_G = 0x47; #
# # @author Steve Wilson
# 0x47 is a hex number and needs to be converted to decimal.
# A simple way to calculate this for a-z is to add 64 to the index of ############ FILE CHOOSER STRINGS #############
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic FileChooser.fileDescription.textAndMnemonic=Archivo Gen\u00E9rico
# for 'a' is 65, 'b' is 66... FileChooser.directoryDescription.textAndMnemonic=Directorio
# FileChooser.newFolderError.textAndMnemonic=Error al crear una nueva carpeta
# The xxDisplayedMnemonicIndex is used to indicate the index of the FileChooser.newFolderErrorSeparator= :
# character that should be underlined in the String, with 0 FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=No se ha podido crear la carpeta
# corresponding to the first character in the String. FileChooser.newFolderParentDoesntExist.textAndMnemonic=No se ha podido crear la carpeta.\n\nEl sistema no puede encontrar la ruta de acceso especificada.
# FileChooser.renameErrorTitle.textAndMnemonic=Error al cambiar el nombre del archivo o carpeta
# One important thing to remember is that the mnemonic MUST exist in FileChooser.renameError.textAndMnemonic=No se puede cambiar el nombre de {0}
# the String, if it does not exist you should add text that makes it FileChooser.renameErrorFileExists.textAndMnemonic=No se puede cambiar el nombre de {0}: ya existe un archivo con el nombre especificado. Especifique otro nombre de archivo.
# exist. This will typically take the form 'XXXX (M)' where M is the FileChooser.acceptAllFileFilter.textAndMnemonic=Todos los Archivos
# character for the mnemonic. FileChooser.cancelButton.textAndMnemonic=&Cancelar
# FileChooser.saveButton.textAndMnemonic=&Guardar
# @author Steve Wilson FileChooser.openButton.textAndMnemonic=A&brir
FileChooser.saveDialogTitle.textAndMnemonic=Guardar
############ FILE CHOOSER STRINGS ############# FileChooser.openDialogTitle.textAndMnemonic=Abrir
FileChooser.fileDescriptionText=Archivo Gen\u00E9rico FileChooser.updateButton.textAndMnemonic=Act&ualizar
FileChooser.directoryDescriptionText=Directorio FileChooser.helpButton.textAndMnemonic=A&yuda
FileChooser.newFolderErrorText=Error al crear una nueva carpeta FileChooser.directoryOpenButton.textAndMnemonic=&Abrir
FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=No se ha podido crear la carpeta # File Size Units
FileChooser.newFolderParentDoesntExistText=No se ha podido crear la carpeta.\n\nEl sistema no puede encontrar la ruta de acceso especificada. FileChooser.fileSizeKiloBytes={0} KB
FileChooser.renameErrorTitleText=Error al cambiar el nombre del archivo o carpeta FileChooser.fileSizeMegaBytes={0} MB
FileChooser.renameErrorText=No se puede cambiar el nombre de {0} FileChooser.fileSizeGigaBytes={0} GB
FileChooser.renameErrorFileExistsText=No se puede cambiar el nombre de {0}: ya existe un archivo con el nombre especificado. Especifique otro nombre de archivo.
FileChooser.acceptAllFileFilterText=Todos los Archivos # These strings are platform dependent not look and feel dependent.
FileChooser.cancelButtonText=Cancelar FileChooser.win32.newFolder=Nueva Carpeta
FileChooser.cancelButtonMnemonic=67 FileChooser.win32.newFolder.subsequent=Nueva Carpeta ({0})
FileChooser.saveButtonText=Guardar FileChooser.other.newFolder=Nueva Carpeta
FileChooser.saveButtonMnemonic=71 FileChooser.other.newFolder.subsequent=Nueva Carpeta.{0}
FileChooser.openButtonText=Abrir
FileChooser.openButtonMnemonic=66
FileChooser.saveDialogTitleText=Guardar ## file chooser tooltips ###
FileChooser.openDialogTitleText=Abrir FileChooser.cancelButtonToolTip.textAndMnemonic=Cuadro de di\u00E1logo para abortar el selector de archivos
FileChooser.updateButtonText=Actualizar FileChooser.saveButtonToolTip.textAndMnemonic=Guardar archivo seleccionado
FileChooser.updateButtonMnemonic=85 FileChooser.openButtonToolTip.textAndMnemonic=Abrir archivo seleccionado
FileChooser.helpButtonText=Ayuda FileChooser.updateButtonToolTip.textAndMnemonic=Actualizar lista de directorios
FileChooser.helpButtonMnemonic=89 FileChooser.helpButtonToolTip.textAndMnemonic=Ayuda del Selector de Archivos
FileChooser.directoryOpenButtonText=Abrir FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Abrir directorio seleccionado
FileChooser.directoryOpenButtonMnemonic=65
FileChooser.filesListAccessibleName=Files List
# File Size Units FileChooser.filesDetailsAccessibleName=Files Details
FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} MB ############ COLOR CHOOSER STRINGS #############
FileChooser.fileSizeGigaBytes={0} GB ColorChooser.preview.textAndMnemonic=Presentaci\u00F3n Preliminar
ColorChooser.ok.textAndMnemonic=Aceptar
# These strings are platform dependent not look and feel dependent. ColorChooser.cancel.textAndMnemonic=Cancelar
FileChooser.win32.newFolder=Nueva Carpeta ColorChooser.reset.textAndMnemonic=&Restablecer
FileChooser.win32.newFolder.subsequent=Nueva Carpeta ({0}) ColorChooser.sample.textAndMnemonic=Texto de Ejemplo Texto de Ejemplo
FileChooser.other.newFolder=Nueva Carpeta ColorChooser.swatches.textAndMnemonic=Mue&stras
FileChooser.other.newFolder.subsequent=Nueva Carpeta.{0} ColorChooser.swatchesRecent.textAndMnemonic=Reciente:
ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.hsvHue.textAndMnemonic=Matiz
## file chooser tooltips ### ColorChooser.hsvSaturation.textAndMnemonic=Saturaci\u00F3n
FileChooser.cancelButtonToolTipText=Cuadro de di\u00E1logo para abortar el selector de archivos ColorChooser.hsvValue.textAndMnemonic=Valor
FileChooser.saveButtonToolTipText=Guardar archivo seleccionado ColorChooser.hsvTransparency.textAndMnemonic=Transparencia
FileChooser.openButtonToolTipText=Abrir archivo seleccionado ColorChooser.hsl.textAndMnemonic=HS&L
FileChooser.updateButtonToolTipText=Actualizar lista de directorios ColorChooser.hslHue.textAndMnemonic=Matiz
FileChooser.helpButtonToolTipText=Ayuda del Selector de Archivos ColorChooser.hslSaturation.textAndMnemonic=Saturaci\u00F3n
FileChooser.directoryOpenButtonToolTipText=Abrir directorio seleccionado ColorChooser.hslLightness.textAndMnemonic=Iluminaci\u00F3n
ColorChooser.hslTransparency.textAndMnemonic=Transparencia
FileChooser.filesListAccessibleName=Files List ColorChooser.rgb.textAndMnemonic=R&GB
FileChooser.filesDetailsAccessibleName=Files Details ColorChooser.rgbRed.textAndMnemonic=Ro&jo
ColorChooser.rgbGreen.textAndMnemonic=&Verde
############ COLOR CHOOSER STRINGS ############# ColorChooser.rgbBlue.textAndMnemonic=A&zul
ColorChooser.previewText=Presentaci\u00F3n Preliminar ColorChooser.rgbAlpha.textAndMnemonic=Alfa
ColorChooser.okText=Aceptar ColorChooser.rgbHexCode.textAndMnemonic=C\u00F3digo de Color(&C)
ColorChooser.cancelText=Cancelar ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.resetText=Restablecer ColorChooser.cmykCyan.textAndMnemonic=Cian
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.resetMnemonic=82 ColorChooser.cmykYellow.textAndMnemonic=Amarillo
ColorChooser.sampleText=Texto de Ejemplo Texto de Ejemplo ColorChooser.cmykBlack.textAndMnemonic=Negro
ColorChooser.swatchesNameText=Muestras ColorChooser.cmykAlpha.textAndMnemonic=Alfa
ColorChooser.swatchesMnemonic=83
ColorChooser.swatchesRecentText=Reciente: ############ OPTION PANE STRINGS #############
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX # We only define mnemonics for YES/NO, but for completeness you can
# constant, and an index into the text to render the mnemonic as. The # define mnemonics for any of the buttons.
# mnemonic is xxxMnemonic and the index of the character to underline is OptionPane.yesButton.textAndMnemonic=S\u00ED(&S)
# xxxDisplayedMnemonicIndex. OptionPane.noButton.textAndMnemonic=&No
ColorChooser.hsvNameText=HSV OptionPane.okButton.textAndMnemonic=Aceptar(&O)
ColorChooser.hsvMnemonic=72 OptionPane.cancelButton.textAndMnemonic=&Cancelar
ColorChooser.hsvHueText=Matiz OptionPane.title.textAndMnemonic=Seleccionar una Opci\u00F3n
ColorChooser.hsvSaturationText=Saturaci\u00F3n # Title for the dialog for the showInputDialog methods. Only used if
ColorChooser.hsvValueText=Valor # the developer uses one of the variants that doesn't take a title.
ColorChooser.hsvTransparencyText=Transparencia OptionPane.inputDialog.titleAndMnemonic=Entrada
ColorChooser.hslNameText=HSL # Title for the dialog for the showMessageDialog methods. Only used if
ColorChooser.hslMnemonic=76 # the developer uses one of the variants that doesn't take a title.
ColorChooser.hslHueText=Matiz OptionPane.messageDialog.titleAndMnemonic=Mensaje
ColorChooser.hslSaturationText=Saturaci\u00F3n
ColorChooser.hslLightnessText=Iluminaci\u00F3n ############ Printing Dialog Strings ############
ColorChooser.hslTransparencyText=Transparencia PrintingDialog.titleProgress.textAndMnemonic=Impresi\u00F3n
ColorChooser.rgbNameText=RGB PrintingDialog.titleAborting.textAndMnemonic=Impresi\u00F3n (Abortando)
ColorChooser.rgbMnemonic=71
ColorChooser.rgbRedText=Rojo PrintingDialog.contentInitial.textAndMnemonic=Impresi\u00F3n en curso...
ColorChooser.rgbRedMnemonic=74
ColorChooser.rgbGreenText=Verde # The following string will be formatted by a MessageFormat
ColorChooser.rgbGreenMnemonic=86 # and {0} will be replaced by page number being printed
ColorChooser.rgbBlueText=Azul PrintingDialog.contentProgress.textAndMnemonic=P\u00E1gina impresa {0}...
ColorChooser.rgbBlueMnemonic=90
ColorChooser.rgbAlphaText=Alfa PrintingDialog.contentAborting.textAndMnemonic=Abortando la impresi\u00F3n...
ColorChooser.rgbHexCodeText=C\u00F3digo de Color
ColorChooser.rgbHexCodeMnemonic=67 PrintingDialog.abortButton.textAndMnemonic=&Abortar
ColorChooser.cmykNameText=CMYK PrintingDialog.abortButtonToolTip.textAndMnemonic=Abortar Impresi\u00F3n
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Cian ############ Internal Frame Strings ############
ColorChooser.cmykMagentaText=Magenta InternalFrame.iconButtonToolTip=Minimizar
ColorChooser.cmykYellowText=Amarillo InternalFrame.maxButtonToolTip=Maximizar
ColorChooser.cmykBlackText=Negro InternalFrame.restoreButtonToolTip=Restaurar
ColorChooser.cmykAlphaText=Alfa InternalFrame.closeButtonToolTip=Cerrar
############ OPTION PANE STRINGS ############# ############ Internal Frame Title Pane Strings ############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurar
# We only define mnemonics for YES/NO, but for completeness you can InternalFrameTitlePane.moveButton.textAndMnemonic=Mover
# define mnemonics for any of the buttons. InternalFrameTitlePane.sizeButton.textAndMnemonic=Tama\u00F1o
OptionPane.yesButtonText=S\u00ED InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimizar
OptionPane.yesButtonMnemonic=83 InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximizar
OptionPane.noButtonText=No InternalFrameTitlePane.closeButton.textAndMnemonic=Cerrar
OptionPane.noButtonMnemonic=78
OptionPane.okButtonText=Aceptar ############ Text strings #############
OptionPane.okButtonMnemonic=O # Used for html forms
OptionPane.cancelButtonText=Cancelar FormView.submitButton.textAndMnemonic=Enviar Consulta
OptionPane.cancelButtonMnemonic=C FormView.resetButton.textAndMnemonic=Restablecer
OptionPane.titleText=Seleccionar una Opci\u00F3n FormView.browseFileButton.textAndMnemonic=Examinar...
# Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. ############ Abstract Document Strings ############
OptionPane.inputDialogTitle=Entrada AbstractDocument.styleChange.textAndMnemonic=cambio de estilo
# Title for the dialog for the showMessageDialog methods. Only used if AbstractDocument.addition.textAndMnemonic=agregaci\u00F3n
# the developer uses one of the variants that doesn't take a title. AbstractDocument.deletion.textAndMnemonic=supresi\u00F3n
OptionPane.messageDialogTitle=Mensaje AbstractDocument.undo.textAndMnemonic=Deshacer
AbstractDocument.redo.textAndMnemonic=Rehacer
############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=Impresi\u00F3n ############ Abstract Button Strings ############
PrintingDialog.titleAbortingText=Impresi\u00F3n (Abortando) AbstractButton.click.textAndMnemonic=hacer clic
PrintingDialog.contentInitialText=Impresi\u00F3n en curso... ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undo.textAndMnemonic=Deshacer
# The following string will be formatted by a MessageFormat AbstractUndoableEdit.redo.textAndMnemonic=Rehacer
# and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=P\u00E1gina impresa {0}... ############ Combo Box Strings ############
ComboBox.togglePopup.textAndMnemonic=togglePopup
PrintingDialog.contentAbortingText=Abortando la impresi\u00F3n...
############ Progress Monitor Strings ############
PrintingDialog.abortButtonText=Abortar ProgressMonitor.progress.textAndMnemonic=Progreso...
PrintingDialog.abortButtonMnemonic=65
PrintingDialog.abortButtonDisplayedMnemonicIndex=0 ############ Split Pane Strings ############
PrintingDialog.abortButtonToolTipText=Abortar Impresi\u00F3n SplitPane.leftButton.textAndMnemonic=bot\u00F3n izquierdo
SplitPane.rightButton.textAndMnemonic=bot\u00F3n derecho
############ Internal Frame Strings ############ # Used for Isindex
InternalFrame.iconButtonToolTip=Minimizar IsindexView.prompt=En este \u00EDndice se pueden efectuar b\u00FAsquedas. Escriba las palabras clave de b\u00FAsqueda:
InternalFrame.maxButtonToolTip=Maximizar
InternalFrame.restoreButtonToolTip=Restaurar ############ InternalFrameTitlePane Strings ############
InternalFrame.closeButtonToolTip=Cerrar InternalFrameTitlePane.iconifyButtonAccessibleName=Convertir en Icono
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar
############ Internal Frame Title Pane Strings ############ InternalFrameTitlePane.closeButtonAccessibleName=Cerrar
InternalFrameTitlePane.restoreButtonText=Restaurar
InternalFrameTitlePane.moveButtonText=Mover
InternalFrameTitlePane.sizeButtonText=Tama\u00F1o
InternalFrameTitlePane.minimizeButtonText=Minimizar
InternalFrameTitlePane.maximizeButtonText=Maximizar
InternalFrameTitlePane.closeButtonText=Cerrar
############ Text strings #############
# Used for html forms
FormView.submitButtonText=Enviar Consulta
FormView.resetButtonText=Restablecer
FormView.browseFileButtonText=Examinar...
############ Abstract Document Strings ############
AbstractDocument.styleChangeText=cambio de estilo
AbstractDocument.additionText=agregaci\u00F3n
AbstractDocument.deletionText=supresi\u00F3n
AbstractDocument.undoText=Deshacer
AbstractDocument.redoText=Rehacer
############ Abstract Button Strings ############
AbstractButton.clickText=hacer clic
############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=Deshacer
AbstractUndoableEdit.redoText=Rehacer
############ Combo Box Strings ############
ComboBox.togglePopupText=togglePopup
############ Progress Monitor Strings ############
ProgressMonitor.progressText=Progreso...
############ Split Pane Strings ############
SplitPane.leftButtonText=bot\u00F3n izquierdo
SplitPane.rightButtonText=bot\u00F3n derecho
# Used for Isindex
IsindexView.prompt=En este \u00EDndice se pueden efectuar b\u00FAsquedas. Escriba las palabras clave de b\u00FAsqueda:
############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Convertir en Icono
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar
InternalFrameTitlePane.closeButtonAccessibleName=Cerrar
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameText=RGB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# ColorChooser.rgbMnemonic=71 # Indicates that the tab in the ColorChooser for RGB colors will have
# ColorChooser.rgbDisplayedMnemonicIndex=1 # the text 'RGB', further the mnemonic character will be 'g' and that
# Indicates that the tab in the ColorChooser for RGB colors will have # a decoration will be provided under the 'G'. This will typically
# the text 'RGB', further the mnemonic character will be 'g' and that # look like: RGB
# a decoration will be provided under the 'G'. This will typically # -
# look like: RGB #
# - # One important thing to remember is that the mnemonic MUST exist in
# 71 corresponds to the decimal value of the VK constant defined # the String, if it does not exist you should add text that makes it
# in java/awt/KeyEvent.java. VK_G is defined as: # exist. This will typically take the form 'XXXX (M)' where M is the
# # character for the mnemonic.
# public static final int VK_G = 0x47; #
# # @author Steve Wilson
# 0x47 is a hex number and needs to be converted to decimal.
# A simple way to calculate this for a-z is to add 64 to the index of ############ FILE CHOOSER STRINGS #############
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic FileChooser.fileDescription.textAndMnemonic=Fichier g\u00E9n\u00E9rique
# for 'a' is 65, 'b' is 66... FileChooser.directoryDescription.textAndMnemonic=R\u00E9pertoire
# FileChooser.newFolderError.textAndMnemonic=Erreur lors de la cr\u00E9ation du dossier
# The xxDisplayedMnemonicIndex is used to indicate the index of the FileChooser.newFolderErrorSeparator= :
# character that should be underlined in the String, with 0 FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Impossible de cr\u00E9er le dossier
# corresponding to the first character in the String. FileChooser.newFolderParentDoesntExist.textAndMnemonic=Impossible de cr\u00E9er le dossier.\n\nLe syst\u00E8me ne parvient pas \u00E0 trouver le chemin indiqu\u00E9.
# FileChooser.renameErrorTitle.textAndMnemonic=Erreur lors du changement de nom du fichier ou du dossier
# One important thing to remember is that the mnemonic MUST exist in FileChooser.renameError.textAndMnemonic=Impossible de renommer {0}
# the String, if it does not exist you should add text that makes it FileChooser.renameErrorFileExists.textAndMnemonic=Impossible de renommer {0} : il existe d\u00E9j\u00E0 un fichier portant le nom indiqu\u00E9. Indiquez-en un autre.
# exist. This will typically take the form 'XXXX (M)' where M is the FileChooser.acceptAllFileFilter.textAndMnemonic=Tous les fichiers
# character for the mnemonic. FileChooser.cancelButton.textAndMnemonic=&Annuler
# FileChooser.saveButton.textAndMnemonic=Enregi&strer
# @author Steve Wilson FileChooser.openButton.textAndMnemonic=&Ouvrir
FileChooser.saveDialogTitle.textAndMnemonic=Enregistrer
############ FILE CHOOSER STRINGS ############# FileChooser.openDialogTitle.textAndMnemonic=Ouvrir
FileChooser.fileDescriptionText=Fichier g\u00E9n\u00E9rique FileChooser.updateButton.textAndMnemonic=Mettre \u00E0 jour(&U)
FileChooser.directoryDescriptionText=R\u00E9pertoire FileChooser.helpButton.textAndMnemonic=&Aide
FileChooser.newFolderErrorText=Erreur lors de la cr\u00E9ation du dossier FileChooser.directoryOpenButton.textAndMnemonic=&Ouvrir
FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=Impossible de cr\u00E9er le dossier # File Size Units
FileChooser.newFolderParentDoesntExistText=Impossible de cr\u00E9er le dossier.\n\nLe syst\u00E8me ne parvient pas \u00E0 trouver le chemin indiqu\u00E9. FileChooser.fileSizeKiloBytes={0} KB
FileChooser.renameErrorTitleText=Erreur lors du changement de nom du fichier ou du dossier FileChooser.fileSizeMegaBytes={0} MB
FileChooser.renameErrorText=Impossible de renommer {0} FileChooser.fileSizeGigaBytes={0} GB
FileChooser.renameErrorFileExistsText=Impossible de renommer {0} : il existe d\u00E9j\u00E0 un fichier portant le nom indiqu\u00E9. Indiquez-en un autre.
FileChooser.acceptAllFileFilterText=Tous les fichiers # These strings are platform dependent not look and feel dependent.
FileChooser.cancelButtonText=Annuler FileChooser.win32.newFolder=Nouveau dossier
FileChooser.cancelButtonMnemonic=65 FileChooser.win32.newFolder.subsequent=Nouveau dossier ({0})
FileChooser.saveButtonText=Enregistrer FileChooser.other.newFolder=NewFolder
FileChooser.saveButtonMnemonic=83 FileChooser.other.newFolder.subsequent=NewFolder.{0}
FileChooser.openButtonText=Ouvrir
FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Enregistrer ## file chooser tooltips ###
FileChooser.openDialogTitleText=Ouvrir FileChooser.cancelButtonToolTip.textAndMnemonic=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers
FileChooser.updateButtonText=Mettre \u00E0 jour FileChooser.saveButtonToolTip.textAndMnemonic=Enregistre le fichier s\u00E9lectionn\u00E9
FileChooser.updateButtonMnemonic=85 FileChooser.openButtonToolTip.textAndMnemonic=Ouvre le fichier s\u00E9lectionn\u00E9
FileChooser.helpButtonText=Aide FileChooser.updateButtonToolTip.textAndMnemonic=Met \u00E0 jour la liste des r\u00E9pertoires
FileChooser.helpButtonMnemonic=65 FileChooser.helpButtonToolTip.textAndMnemonic=Aide du s\u00E9lecteur de fichiers
FileChooser.directoryOpenButtonText=Ouvrir FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Ouvre le r\u00E9pertoire s\u00E9lectionn\u00E9
FileChooser.directoryOpenButtonMnemonic=79
FileChooser.filesListAccessibleName=Files List
# File Size Units FileChooser.filesDetailsAccessibleName=Files Details
FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} MB ############ COLOR CHOOSER STRINGS #############
FileChooser.fileSizeGigaBytes={0} GB ColorChooser.preview.textAndMnemonic=Aper\u00E7u
ColorChooser.ok.textAndMnemonic=OK
# These strings are platform dependent not look and feel dependent. ColorChooser.cancel.textAndMnemonic=Annuler
FileChooser.win32.newFolder=Nouveau dossier ColorChooser.reset.textAndMnemonic=R\u00E9initialiser(&R)
FileChooser.win32.newFolder.subsequent=Nouveau dossier ({0}) ColorChooser.sample.textAndMnemonic=Echantillon de texte Echantillon de texte
FileChooser.other.newFolder=NewFolder ColorChooser.swatches.textAndMnemonic=&Echantillons
FileChooser.other.newFolder.subsequent=NewFolder.{0} ColorChooser.swatchesRecent.textAndMnemonic=Dernier :
ColorChooser.hsv.textAndMnemonic=&TSV
ColorChooser.hsvHue.textAndMnemonic=Teinte
## file chooser tooltips ### ColorChooser.hsvSaturation.textAndMnemonic=Saturation
FileChooser.cancelButtonToolTipText=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers ColorChooser.hsvValue.textAndMnemonic=Valeur
FileChooser.saveButtonToolTipText=Enregistre le fichier s\u00E9lectionn\u00E9 ColorChooser.hsvTransparency.textAndMnemonic=Transparence
FileChooser.openButtonToolTipText=Ouvre le fichier s\u00E9lectionn\u00E9 ColorChooser.hsl.textAndMnemonic=TS&L
FileChooser.updateButtonToolTipText=Met \u00E0 jour la liste des r\u00E9pertoires ColorChooser.hslHue.textAndMnemonic=Teinte
FileChooser.helpButtonToolTipText=Aide du s\u00E9lecteur de fichiers ColorChooser.hslSaturation.textAndMnemonic=Saturation
FileChooser.directoryOpenButtonToolTipText=Ouvre le r\u00E9pertoire s\u00E9lectionn\u00E9 ColorChooser.hslLightness.textAndMnemonic=Lumi\u00E8re
ColorChooser.hslTransparency.textAndMnemonic=Transparence
FileChooser.filesListAccessibleName=Files List ColorChooser.rgb.textAndMnemonic=R&VB
FileChooser.filesDetailsAccessibleName=Files Details ColorChooser.rgbRed.textAndMnemonic=R&ouge
ColorChooser.rgbGreen.textAndMnemonic=&Vert
############ COLOR CHOOSER STRINGS ############# ColorChooser.rgbBlue.textAndMnemonic=&Bleu
ColorChooser.previewText=Aper\u00E7u ColorChooser.rgbAlpha.textAndMnemonic=Alpha
ColorChooser.okText=OK ColorChooser.rgbHexCode.textAndMnemonic=&Code couleur
ColorChooser.cancelText=Annuler ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.resetText=R\u00E9initialiser ColorChooser.cmykCyan.textAndMnemonic=Cyan
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.resetMnemonic=82 ColorChooser.cmykYellow.textAndMnemonic=Jaune
ColorChooser.sampleText=Echantillon de texte Echantillon de texte ColorChooser.cmykBlack.textAndMnemonic=Noir
ColorChooser.swatchesNameText=Echantillons ColorChooser.cmykAlpha.textAndMnemonic=Alpha
ColorChooser.swatchesMnemonic=69
ColorChooser.swatchesRecentText=Dernier : ############ OPTION PANE STRINGS #############
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX # We only define mnemonics for YES/NO, but for completeness you can
# constant, and an index into the text to render the mnemonic as. The # define mnemonics for any of the buttons.
# mnemonic is xxxMnemonic and the index of the character to underline is OptionPane.yesButton.textAndMnemonic=&Oui
# xxxDisplayedMnemonicIndex. OptionPane.noButton.textAndMnemonic=&Non
ColorChooser.hsvNameText=TSV OptionPane.okButton.textAndMnemonic=&OK
ColorChooser.hsvMnemonic=84 OptionPane.cancelButton.textAndMnemonic=&Annuler
ColorChooser.hsvHueText=Teinte OptionPane.title.textAndMnemonic=S\u00E9lectionner une option
ColorChooser.hsvSaturationText=Saturation # Title for the dialog for the showInputDialog methods. Only used if
ColorChooser.hsvValueText=Valeur # the developer uses one of the variants that doesn't take a title.
ColorChooser.hsvTransparencyText=Transparence OptionPane.inputDialog.titleAndMnemonic=Entr\u00E9e
ColorChooser.hslNameText=TSL # Title for the dialog for the showMessageDialog methods. Only used if
ColorChooser.hslMnemonic=76 # the developer uses one of the variants that doesn't take a title.
ColorChooser.hslHueText=Teinte OptionPane.messageDialog.titleAndMnemonic=Message
ColorChooser.hslSaturationText=Saturation
ColorChooser.hslLightnessText=Lumi\u00E8re ############ Printing Dialog Strings ############
ColorChooser.hslTransparencyText=Transparence PrintingDialog.titleProgress.textAndMnemonic=Impression
ColorChooser.rgbNameText=RVB PrintingDialog.titleAborting.textAndMnemonic=Impression (abandon)
ColorChooser.rgbMnemonic=86
ColorChooser.rgbRedText=Rouge PrintingDialog.contentInitial.textAndMnemonic=Impression en cours...
ColorChooser.rgbRedMnemonic=79
ColorChooser.rgbGreenText=Vert # The following string will be formatted by a MessageFormat
ColorChooser.rgbGreenMnemonic=86 # and {0} will be replaced by page number being printed
ColorChooser.rgbBlueText=Bleu PrintingDialog.contentProgress.textAndMnemonic=Page {0} imprim\u00E9e...
ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alpha PrintingDialog.contentAborting.textAndMnemonic=Abandon de l'impression...
ColorChooser.rgbHexCodeText=Code couleur
ColorChooser.rgbHexCodeMnemonic=67 PrintingDialog.abortButton.textAndMnemonic=&Abandonner
ColorChooser.cmykNameText=CMYK PrintingDialog.abortButtonToolTip.textAndMnemonic=Abandonner l'impression
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Cyan ############ Internal Frame Strings ############
ColorChooser.cmykMagentaText=Magenta InternalFrame.iconButtonToolTip=R\u00E9duire
ColorChooser.cmykYellowText=Jaune InternalFrame.maxButtonToolTip=Agrandir
ColorChooser.cmykBlackText=Noir InternalFrame.restoreButtonToolTip=Restaurer
ColorChooser.cmykAlphaText=Alpha InternalFrame.closeButtonToolTip=Fermer
############ OPTION PANE STRINGS ############# ############ Internal Frame Title Pane Strings ############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurer
# We only define mnemonics for YES/NO, but for completeness you can InternalFrameTitlePane.moveButton.textAndMnemonic=D\u00E9placer
# define mnemonics for any of the buttons. InternalFrameTitlePane.sizeButton.textAndMnemonic=Taille
OptionPane.yesButtonText=Oui InternalFrameTitlePane.minimizeButton.textAndMnemonic=R\u00E9duire
OptionPane.yesButtonMnemonic=79 InternalFrameTitlePane.maximizeButton.textAndMnemonic=Agrandir
OptionPane.noButtonText=Non InternalFrameTitlePane.closeButton.textAndMnemonic=Fermer
OptionPane.noButtonMnemonic=78
OptionPane.okButtonText=OK ############ Text strings #############
OptionPane.okButtonMnemonic=O # Used for html forms
OptionPane.cancelButtonText=Annuler FormView.submitButton.textAndMnemonic=Soumettre la requ\u00EAte
OptionPane.cancelButtonMnemonic=A FormView.resetButton.textAndMnemonic=R\u00E9initialiser
OptionPane.titleText=S\u00E9lectionner une option FormView.browseFileButton.textAndMnemonic=Parcourir...
# Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. ############ Abstract Document Strings ############
OptionPane.inputDialogTitle=Entr\u00E9e AbstractDocument.styleChange.textAndMnemonic=modification de style
# Title for the dialog for the showMessageDialog methods. Only used if AbstractDocument.addition.textAndMnemonic=ajout
# the developer uses one of the variants that doesn't take a title. AbstractDocument.deletion.textAndMnemonic=suppression
OptionPane.messageDialogTitle=Message AbstractDocument.undo.textAndMnemonic=Annuler
AbstractDocument.redo.textAndMnemonic=R\u00E9tablir
############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=Impression ############ Abstract Button Strings ############
PrintingDialog.titleAbortingText=Impression (abandon) AbstractButton.click.textAndMnemonic=cliquer
PrintingDialog.contentInitialText=Impression en cours... ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undo.textAndMnemonic=Annuler
# The following string will be formatted by a MessageFormat AbstractUndoableEdit.redo.textAndMnemonic=R\u00E9tablir
# and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=Page {0} imprim\u00E9e... ############ Combo Box Strings ############
ComboBox.togglePopup.textAndMnemonic=togglePopup
PrintingDialog.contentAbortingText=Abandon de l'impression...
############ Progress Monitor Strings ############
PrintingDialog.abortButtonText=Abandonner ProgressMonitor.progress.textAndMnemonic=Progression...
PrintingDialog.abortButtonMnemonic=65
PrintingDialog.abortButtonDisplayedMnemonicIndex=0 ############ Split Pane Strings ############
PrintingDialog.abortButtonToolTipText=Abandonner l'impression SplitPane.leftButton.textAndMnemonic=bouton gauche
SplitPane.rightButton.textAndMnemonic=bouton droit
############ Internal Frame Strings ############ # Used for Isindex
InternalFrame.iconButtonToolTip=R\u00E9duire IsindexView.prompt=Ceci est un index de recherche. Tapez des mots-cl\u00E9s pour la recherche :
InternalFrame.maxButtonToolTip=Agrandir
InternalFrame.restoreButtonToolTip=Restaurer ############ InternalFrameTitlePane Strings ############
InternalFrame.closeButtonToolTip=Fermer InternalFrameTitlePane.iconifyButtonAccessibleName=R\u00E9duire
InternalFrameTitlePane.maximizeButtonAccessibleName=Agrandir
############ Internal Frame Title Pane Strings ############ InternalFrameTitlePane.closeButtonAccessibleName=Fermer
InternalFrameTitlePane.restoreButtonText=Restaurer
InternalFrameTitlePane.moveButtonText=D\u00E9placer
InternalFrameTitlePane.sizeButtonText=Taille
InternalFrameTitlePane.minimizeButtonText=R\u00E9duire
InternalFrameTitlePane.maximizeButtonText=Agrandir
InternalFrameTitlePane.closeButtonText=Fermer
############ Text strings #############
# Used for html forms
FormView.submitButtonText=Soumettre la requ\u00EAte
FormView.resetButtonText=R\u00E9initialiser
FormView.browseFileButtonText=Parcourir...
############ Abstract Document Strings ############
AbstractDocument.styleChangeText=modification de style
AbstractDocument.additionText=ajout
AbstractDocument.deletionText=suppression
AbstractDocument.undoText=Annuler
AbstractDocument.redoText=R\u00E9tablir
############ Abstract Button Strings ############
AbstractButton.clickText=cliquer
############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=Annuler
AbstractUndoableEdit.redoText=R\u00E9tablir
############ Combo Box Strings ############
ComboBox.togglePopupText=togglePopup
############ Progress Monitor Strings ############
ProgressMonitor.progressText=Progression...
############ Split Pane Strings ############
SplitPane.leftButtonText=bouton gauche
SplitPane.rightButtonText=bouton droit
# Used for Isindex
IsindexView.prompt=Ceci est un index de recherche. Tapez des mots-cl\u00E9s pour la recherche :
############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=R\u00E9duire
InternalFrameTitlePane.maximizeButtonAccessibleName=Agrandir
InternalFrameTitlePane.closeButtonAccessibleName=Fermer
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameText=RGB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# ColorChooser.rgbMnemonic=71 # Indicates that the tab in the ColorChooser for RGB colors will have
# ColorChooser.rgbDisplayedMnemonicIndex=1 # the text 'RGB', further the mnemonic character will be 'g' and that
# Indicates that the tab in the ColorChooser for RGB colors will have # a decoration will be provided under the 'G'. This will typically
# the text 'RGB', further the mnemonic character will be 'g' and that # look like: RGB
# a decoration will be provided under the 'G'. This will typically # -
# look like: RGB #
# - # One important thing to remember is that the mnemonic MUST exist in
# 71 corresponds to the decimal value of the VK constant defined # the String, if it does not exist you should add text that makes it
# in java/awt/KeyEvent.java. VK_G is defined as: # exist. This will typically take the form 'XXXX (M)' where M is the
# # character for the mnemonic.
# public static final int VK_G = 0x47; #
# # @author Steve Wilson
# 0x47 is a hex number and needs to be converted to decimal.
# A simple way to calculate this for a-z is to add 64 to the index of ############ FILE CHOOSER STRINGS #############
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic FileChooser.fileDescription.textAndMnemonic=File generico
# for 'a' is 65, 'b' is 66... FileChooser.directoryDescription.textAndMnemonic=Directory
# FileChooser.newFolderError.textAndMnemonic=Errore durante la creazione della nuova cartella
# The xxDisplayedMnemonicIndex is used to indicate the index of the FileChooser.newFolderErrorSeparator= :
# character that should be underlined in the String, with 0 FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Impossibile creare la cartella
# corresponding to the first character in the String. FileChooser.newFolderParentDoesntExist.textAndMnemonic=Impossibile creare la cartella.\n\nIl sistema non \u00E8 in grado di trovare il percorso specificato.
# FileChooser.renameErrorTitle.textAndMnemonic=Errore durante la ridenominazione del file o della cartella
# One important thing to remember is that the mnemonic MUST exist in FileChooser.renameError.textAndMnemonic=Impossibile rinominare {0}
# the String, if it does not exist you should add text that makes it FileChooser.renameErrorFileExists.textAndMnemonic=Impossibile rinominare {0}: esiste gi\u00E0 un file con il nome specificato. Specificare un altro nome.
# exist. This will typically take the form 'XXXX (M)' where M is the FileChooser.acceptAllFileFilter.textAndMnemonic=Tutti i file
# character for the mnemonic. FileChooser.cancelButton.textAndMnemonic=&Annulla
# FileChooser.saveButton.textAndMnemonic=Sal&va
# @author Steve Wilson FileChooser.openButton.textAndMnemonic=A&pri
FileChooser.saveDialogTitle.textAndMnemonic=Salva
############ FILE CHOOSER STRINGS ############# FileChooser.openDialogTitle.textAndMnemonic=Apri
FileChooser.fileDescriptionText=File generico FileChooser.updateButton.textAndMnemonic=A&ggiorna
FileChooser.directoryDescriptionText=Directory FileChooser.helpButton.textAndMnemonic=?(&H)
FileChooser.newFolderErrorText=Errore durante la creazione della nuova cartella FileChooser.directoryOpenButton.textAndMnemonic=&Apri
FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=Impossibile creare la cartella # File Size Units
FileChooser.newFolderParentDoesntExistText=Impossibile creare la cartella.\n\nIl sistema non \u00E8 in grado di trovare il percorso specificato. FileChooser.fileSizeKiloBytes={0} KB
FileChooser.renameErrorTitleText=Errore durante la ridenominazione del file o della cartella FileChooser.fileSizeMegaBytes={0} MB
FileChooser.renameErrorText=Impossibile rinominare {0} FileChooser.fileSizeGigaBytes={0} GB
FileChooser.renameErrorFileExistsText=Impossibile rinominare {0}: esiste gi\u00E0 un file con il nome specificato. Specificare un altro nome.
FileChooser.acceptAllFileFilterText=Tutti i file # These strings are platform dependent not look and feel dependent.
FileChooser.cancelButtonText=Annulla FileChooser.win32.newFolder=Nuova cartella
FileChooser.cancelButtonMnemonic=65 FileChooser.win32.newFolder.subsequent=Nuova cartella ({0})
FileChooser.saveButtonText=Salva FileChooser.other.newFolder=NewFolder
FileChooser.saveButtonMnemonic=86 FileChooser.other.newFolder.subsequent=NewFolder.{0}
FileChooser.openButtonText=Apri
FileChooser.openButtonMnemonic=80
FileChooser.saveDialogTitleText=Salva ## file chooser tooltips ###
FileChooser.openDialogTitleText=Apri FileChooser.cancelButtonToolTip.textAndMnemonic=Chiude la finestra di dialogo di selezione file
FileChooser.updateButtonText=Aggiorna FileChooser.saveButtonToolTip.textAndMnemonic=Salva il file selezionato
FileChooser.updateButtonMnemonic=71 FileChooser.openButtonToolTip.textAndMnemonic=Apre il file selezionato
FileChooser.helpButtonText=?(H) FileChooser.updateButtonToolTip.textAndMnemonic=Aggiorna la lista directory
FileChooser.helpButtonMnemonic=72 FileChooser.helpButtonToolTip.textAndMnemonic=Guida FileChooser
FileChooser.directoryOpenButtonText=Apri FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Apre la directory selezionata
FileChooser.directoryOpenButtonMnemonic=65
FileChooser.filesListAccessibleName=Files List
# File Size Units FileChooser.filesDetailsAccessibleName=Files Details
FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} MB ############ COLOR CHOOSER STRINGS #############
FileChooser.fileSizeGigaBytes={0} GB ColorChooser.preview.textAndMnemonic=Anteprima
ColorChooser.ok.textAndMnemonic=OK
# These strings are platform dependent not look and feel dependent. ColorChooser.cancel.textAndMnemonic=Annulla
FileChooser.win32.newFolder=Nuova cartella ColorChooser.reset.textAndMnemonic=&Reimposta
FileChooser.win32.newFolder.subsequent=Nuova cartella ({0}) ColorChooser.sample.textAndMnemonic=Testo di prova Testo di prova
FileChooser.other.newFolder=NewFolder ColorChooser.swatches.textAndMnemonic=Colori cam&pione
FileChooser.other.newFolder.subsequent=NewFolder.{0} ColorChooser.swatchesRecent.textAndMnemonic=Recenti:
ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.hsvHue.textAndMnemonic=Tonalit\u00E0
## file chooser tooltips ### ColorChooser.hsvSaturation.textAndMnemonic=Saturazione
FileChooser.cancelButtonToolTipText=Chiude la finestra di dialogo di selezione file ColorChooser.hsvValue.textAndMnemonic=Valore
FileChooser.saveButtonToolTipText=Salva il file selezionato ColorChooser.hsvTransparency.textAndMnemonic=Trasparenza
FileChooser.openButtonToolTipText=Apre il file selezionato ColorChooser.hsl.textAndMnemonic=HS&L
FileChooser.updateButtonToolTipText=Aggiorna la lista directory ColorChooser.hslHue.textAndMnemonic=Tonalit\u00E0
FileChooser.helpButtonToolTipText=Guida FileChooser ColorChooser.hslSaturation.textAndMnemonic=Saturazione
FileChooser.directoryOpenButtonToolTipText=Apre la directory selezionata ColorChooser.hslLightness.textAndMnemonic=Luminosit\u00E0
ColorChooser.hslTransparency.textAndMnemonic=Trasparenza
FileChooser.filesListAccessibleName=Files List ColorChooser.rgb.textAndMnemonic=R&GB
FileChooser.filesDetailsAccessibleName=Files Details ColorChooser.rgbRed.textAndMnemonic=Ro&sso
ColorChooser.rgbGreen.textAndMnemonic=Ver&de
############ COLOR CHOOSER STRINGS ############# ColorChooser.rgbBlue.textAndMnemonic=&Blu
ColorChooser.previewText=Anteprima ColorChooser.rgbAlpha.textAndMnemonic=Alfa
ColorChooser.okText=OK ColorChooser.rgbHexCode.textAndMnemonic=&Codice colori
ColorChooser.cancelText=Annulla ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.resetText=Reimposta ColorChooser.cmykCyan.textAndMnemonic=Ciano
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.resetMnemonic=82 ColorChooser.cmykYellow.textAndMnemonic=Giallo
ColorChooser.sampleText=Testo di prova Testo di prova ColorChooser.cmykBlack.textAndMnemonic=Nero
ColorChooser.swatchesNameText=Colori campione ColorChooser.cmykAlpha.textAndMnemonic=Alfa
ColorChooser.swatchesMnemonic=80
ColorChooser.swatchesRecentText=Recenti: ############ OPTION PANE STRINGS #############
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX # We only define mnemonics for YES/NO, but for completeness you can
# constant, and an index into the text to render the mnemonic as. The # define mnemonics for any of the buttons.
# mnemonic is xxxMnemonic and the index of the character to underline is OptionPane.yesButton.textAndMnemonic=S\u00EC(&S)
# xxxDisplayedMnemonicIndex. OptionPane.noButton.textAndMnemonic=&No
ColorChooser.hsvNameText=HSV OptionPane.okButton.textAndMnemonic=&OK
ColorChooser.hsvMnemonic=72 OptionPane.cancelButton.textAndMnemonic=&Annulla
ColorChooser.hsvHueText=Tonalit\u00E0 OptionPane.title.textAndMnemonic=Selezionare una opzione
ColorChooser.hsvSaturationText=Saturazione # Title for the dialog for the showInputDialog methods. Only used if
ColorChooser.hsvValueText=Valore # the developer uses one of the variants that doesn't take a title.
ColorChooser.hsvTransparencyText=Trasparenza OptionPane.inputDialog.titleAndMnemonic=Input
ColorChooser.hslNameText=HSL # Title for the dialog for the showMessageDialog methods. Only used if
ColorChooser.hslMnemonic=76 # the developer uses one of the variants that doesn't take a title.
ColorChooser.hslHueText=Tonalit\u00E0 OptionPane.messageDialog.titleAndMnemonic=Messaggio
ColorChooser.hslSaturationText=Saturazione
ColorChooser.hslLightnessText=Luminosit\u00E0 ############ Printing Dialog Strings ############
ColorChooser.hslTransparencyText=Trasparenza PrintingDialog.titleProgress.textAndMnemonic=Stampa in corso
ColorChooser.rgbNameText=RGB PrintingDialog.titleAborting.textAndMnemonic=Stampa in corso (operazione interrotta)
ColorChooser.rgbMnemonic=71
ColorChooser.rgbRedText=Rosso PrintingDialog.contentInitial.textAndMnemonic=Stampa in corso...
ColorChooser.rgbRedMnemonic=83
ColorChooser.rgbGreenText=Verde # The following string will be formatted by a MessageFormat
ColorChooser.rgbGreenMnemonic=68 # and {0} will be replaced by page number being printed
ColorChooser.rgbBlueText=Blu PrintingDialog.contentProgress.textAndMnemonic=Pagina stampata {0}...
ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alfa PrintingDialog.contentAborting.textAndMnemonic=Interruzione della stampa...
ColorChooser.rgbHexCodeText=Codice colori
ColorChooser.rgbHexCodeMnemonic=67 PrintingDialog.abortButton.textAndMnemonic=I&nterrompi
ColorChooser.cmykNameText=CMYK PrintingDialog.abortButtonToolTip.textAndMnemonic=Interrompi la stampa
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Ciano ############ Internal Frame Strings ############
ColorChooser.cmykMagentaText=Magenta InternalFrame.iconButtonToolTip=Riduci a icona
ColorChooser.cmykYellowText=Giallo InternalFrame.maxButtonToolTip=Ingrandisci
ColorChooser.cmykBlackText=Nero InternalFrame.restoreButtonToolTip=Ripristina
ColorChooser.cmykAlphaText=Alfa InternalFrame.closeButtonToolTip=Chiudi
############ OPTION PANE STRINGS ############# ############ Internal Frame Title Pane Strings ############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant InternalFrameTitlePane.restoreButton.textAndMnemonic=Ripristina
# We only define mnemonics for YES/NO, but for completeness you can InternalFrameTitlePane.moveButton.textAndMnemonic=Sposta
# define mnemonics for any of the buttons. InternalFrameTitlePane.sizeButton.textAndMnemonic=Dimensioni
OptionPane.yesButtonText=S\u00EC InternalFrameTitlePane.minimizeButton.textAndMnemonic=Riduci a icona
OptionPane.yesButtonMnemonic=83 InternalFrameTitlePane.maximizeButton.textAndMnemonic=Ingrandisci
OptionPane.noButtonText=No InternalFrameTitlePane.closeButton.textAndMnemonic=Chiudi
OptionPane.noButtonMnemonic=78
OptionPane.okButtonText=OK ############ Text strings #############
OptionPane.okButtonMnemonic=O # Used for html forms
OptionPane.cancelButtonText=Annulla FormView.submitButton.textAndMnemonic=Sottometti query
OptionPane.cancelButtonMnemonic=A FormView.resetButton.textAndMnemonic=Reimposta
OptionPane.titleText=Selezionare una opzione FormView.browseFileButton.textAndMnemonic=Sfoglia...
# Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. ############ Abstract Document Strings ############
OptionPane.inputDialogTitle=Input AbstractDocument.styleChange.textAndMnemonic=modifica di stile
# Title for the dialog for the showMessageDialog methods. Only used if AbstractDocument.addition.textAndMnemonic=aggiunta
# the developer uses one of the variants that doesn't take a title. AbstractDocument.deletion.textAndMnemonic=eliminazione
OptionPane.messageDialogTitle=Messaggio AbstractDocument.undo.textAndMnemonic=Annulla
AbstractDocument.redo.textAndMnemonic=Ripeti
############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=Stampa in corso ############ Abstract Button Strings ############
PrintingDialog.titleAbortingText=Stampa in corso (operazione interrotta) AbstractButton.click.textAndMnemonic=fare clic
PrintingDialog.contentInitialText=Stampa in corso... ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undo.textAndMnemonic=Annulla
# The following string will be formatted by a MessageFormat AbstractUndoableEdit.redo.textAndMnemonic=Ripeti
# and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=Pagina stampata {0}... ############ Combo Box Strings ############
ComboBox.togglePopup.textAndMnemonic=togglePopup
PrintingDialog.contentAbortingText=Interruzione della stampa...
############ Progress Monitor Strings ############
PrintingDialog.abortButtonText=Interrompi ProgressMonitor.progress.textAndMnemonic=Avanzamento...
PrintingDialog.abortButtonMnemonic=78
PrintingDialog.abortButtonDisplayedMnemonicIndex=0 ############ Split Pane Strings ############
PrintingDialog.abortButtonToolTipText=Interrompi la stampa SplitPane.leftButton.textAndMnemonic=tasto sinistro
SplitPane.rightButton.textAndMnemonic=tasto destro
############ Internal Frame Strings ############ # Used for Isindex
InternalFrame.iconButtonToolTip=Riduci a icona IsindexView.prompt=Questo \u00E8 un indice di ricerca. Immettere le parole chiave:
InternalFrame.maxButtonToolTip=Ingrandisci
InternalFrame.restoreButtonToolTip=Ripristina ############ InternalFrameTitlePane Strings ############
InternalFrame.closeButtonToolTip=Chiudi InternalFrameTitlePane.iconifyButtonAccessibleName=Riduci a icona
InternalFrameTitlePane.maximizeButtonAccessibleName=Ingrandisci
############ Internal Frame Title Pane Strings ############ InternalFrameTitlePane.closeButtonAccessibleName=Chiudi
InternalFrameTitlePane.restoreButtonText=Ripristina
InternalFrameTitlePane.moveButtonText=Sposta
InternalFrameTitlePane.sizeButtonText=Dimensioni
InternalFrameTitlePane.minimizeButtonText=Riduci a icona
InternalFrameTitlePane.maximizeButtonText=Ingrandisci
InternalFrameTitlePane.closeButtonText=Chiudi
############ Text strings #############
# Used for html forms
FormView.submitButtonText=Sottometti query
FormView.resetButtonText=Reimposta
FormView.browseFileButtonText=Sfoglia...
############ Abstract Document Strings ############
AbstractDocument.styleChangeText=modifica di stile
AbstractDocument.additionText=aggiunta
AbstractDocument.deletionText=eliminazione
AbstractDocument.undoText=Annulla
AbstractDocument.redoText=Ripeti
############ Abstract Button Strings ############
AbstractButton.clickText=fare clic
############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=Annulla
AbstractUndoableEdit.redoText=Ripeti
############ Combo Box Strings ############
ComboBox.togglePopupText=togglePopup
############ Progress Monitor Strings ############
ProgressMonitor.progressText=Avanzamento...
############ Split Pane Strings ############
SplitPane.leftButtonText=tasto sinistro
SplitPane.rightButtonText=tasto destro
# Used for Isindex
IsindexView.prompt=Questo \u00E8 un indice di ricerca. Immettere le parole chiave:
############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Riduci a icona
InternalFrameTitlePane.maximizeButtonAccessibleName=Ingrandisci
InternalFrameTitlePane.closeButtonAccessibleName=Chiudi
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used be the Metal Look and Feel. # It contains Locale specific strings used be the Metal Look and Feel.
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# FileChooser # FileChooser
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# Refer to the note in basic.properties for a description as to what # Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them. # the mnemonics correspond to and how to calculate them.
# #
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=Look In: FileChooser.lookInLabel.textAndMnemonic=Look &In:
FileChooser.lookInLabelMnemonic=73 FileChooser.saveInLabel.textAndMnemonic=Save In:
FileChooser.saveInLabelText=Save In: FileChooser.fileNameLabel.textAndMnemonic=File &Name:
FileChooser.fileNameLabelText=File Name: FileChooser.folderNameLabel.textAndMnemonic=Folder &name:
FileChooser.fileNameLabelMnemonic=78 FileChooser.filesOfTypeLabel.textAndMnemonic=Files of &Type:
FileChooser.folderNameLabelText=Folder name: FileChooser.upFolderToolTip.textAndMnemonic=Up One Level
FileChooser.folderNameLabelMnemonic=78 FileChooser.upFolderAccessibleName=Up
FileChooser.filesOfTypeLabelText=Files of Type: FileChooser.homeFolderToolTip.textAndMnemonic=Home
FileChooser.filesOfTypeLabelMnemonic=84 FileChooser.homeFolderAccessibleName=Home
FileChooser.upFolderToolTipText=Up One Level FileChooser.newFolderToolTip.textAndMnemonic=Create New Folder
FileChooser.upFolderAccessibleName=Up FileChooser.newFolderAccessibleName=New Folder
FileChooser.homeFolderToolTipText=Home FileChooser.newFolderActionLabel.textAndMnemonic=New Folder
FileChooser.homeFolderAccessibleName=Home FileChooser.listViewButtonToolTip.textAndMnemonic=List
FileChooser.newFolderToolTipText=Create New Folder FileChooser.listViewButtonAccessibleName=List
FileChooser.newFolderAccessibleName=New Folder FileChooser.listViewActionLabel.textAndMnemonic=List
FileChooser.newFolderActionLabelText=New Folder FileChooser.detailsViewButtonToolTip.textAndMnemonic=Details
FileChooser.listViewButtonToolTipText=List FileChooser.detailsViewButtonAccessibleName=Details
FileChooser.listViewButtonAccessibleName=List FileChooser.detailsViewActionLabel.textAndMnemonic=Details
FileChooser.listViewActionLabelText=List FileChooser.refreshActionLabel.textAndMnemonic=Refresh
FileChooser.detailsViewButtonToolTipText=Details FileChooser.viewMenuLabel.textAndMnemonic=View
FileChooser.detailsViewButtonAccessibleName=Details FileChooser.fileNameHeader.textAndMnemonic=Name
FileChooser.detailsViewActionLabelText=Details FileChooser.fileSizeHeader.textAndMnemonic=Size
FileChooser.refreshActionLabelText=Refresh FileChooser.fileTypeHeader.textAndMnemonic=Type
FileChooser.viewMenuLabelText=View FileChooser.fileDateHeader.textAndMnemonic=Modified
FileChooser.fileNameHeaderText=Name FileChooser.fileAttrHeader.textAndMnemonic=Attributes
FileChooser.fileSizeHeaderText=Size
FileChooser.fileTypeHeaderText=Type ############ Used by MetalTitlePane if rendering window decorations############
FileChooser.fileDateHeaderText=Modified MetalTitlePane.restore.titleAndMnemonic=&Restore
FileChooser.fileAttrHeaderText=Attributes MetalTitlePane.iconify.titleAndMnemonic=Minimiz&e
MetalTitlePane.maximize.titleAndMnemonic=Ma&ximize
############ Used by MetalTitlePane if rendering window decorations############ MetalTitlePane.close.titleAndMnemonic=&Close
# All mnemonics are KeyEvent.VK_XXX as integers
MetalTitlePane.restoreTitle=Restore
MetalTitlePane.restoreMnemonic=82
MetalTitlePane.iconifyTitle=Minimize
MetalTitlePane.iconifyMnemonic=69
MetalTitlePane.maximizeTitle=Maximize
MetalTitlePane.maximizeMnemonic=88
MetalTitlePane.closeTitle=Close
MetalTitlePane.closeMnemonic=67
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used be the Metal Look and Feel. # It contains Locale specific strings used be the Metal Look and Feel.
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# FileChooser # FileChooser
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# Refer to the note in basic.properties for a description as to what # Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them. # the mnemonics correspond to and how to calculate them.
# #
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=Suchen in: FileChooser.lookInLabel.textAndMnemonic=Suchen &in:
FileChooser.lookInLabelMnemonic=73 FileChooser.saveInLabel.textAndMnemonic=Speichern in:
FileChooser.saveInLabelText=Speichern in: FileChooser.fileNameLabel.textAndMnemonic=Datei&name:
FileChooser.fileNameLabelText=Dateiname: FileChooser.folderNameLabel.textAndMnemonic=Ord&nername:
FileChooser.fileNameLabelMnemonic=78 FileChooser.filesOfTypeLabel.textAndMnemonic=Da&teityp:
FileChooser.folderNameLabelText=Ordnername: FileChooser.upFolderToolTip.textAndMnemonic=Eine Ebene h\u00F6her
FileChooser.folderNameLabelMnemonic=78 FileChooser.upFolderAccessibleName=Nach oben
FileChooser.filesOfTypeLabelText=Dateityp: FileChooser.homeFolderToolTip.textAndMnemonic=Home
FileChooser.filesOfTypeLabelMnemonic=84 FileChooser.homeFolderAccessibleName=Home
FileChooser.upFolderToolTipText=Eine Ebene h\u00F6her FileChooser.newFolderToolTip.textAndMnemonic=Neuen Ordner erstellen
FileChooser.upFolderAccessibleName=Nach oben FileChooser.newFolderAccessibleName=Neuer Ordner
FileChooser.homeFolderToolTipText=Home FileChooser.newFolderActionLabel.textAndMnemonic=Neuer Ordner
FileChooser.homeFolderAccessibleName=Home FileChooser.listViewButtonToolTip.textAndMnemonic=Liste
FileChooser.newFolderToolTipText=Neuen Ordner erstellen FileChooser.listViewButtonAccessibleName=Liste
FileChooser.newFolderAccessibleName=Neuer Ordner FileChooser.listViewActionLabel.textAndMnemonic=Liste
FileChooser.newFolderActionLabelText=Neuer Ordner FileChooser.detailsViewButtonToolTip.textAndMnemonic=Details
FileChooser.listViewButtonToolTipText=Liste FileChooser.detailsViewButtonAccessibleName=Details
FileChooser.listViewButtonAccessibleName=Liste FileChooser.detailsViewActionLabel.textAndMnemonic=Details
FileChooser.listViewActionLabelText=Liste FileChooser.refreshActionLabel.textAndMnemonic=Aktualisieren
FileChooser.detailsViewButtonToolTipText=Details FileChooser.viewMenuLabel.textAndMnemonic=Ansicht
FileChooser.detailsViewButtonAccessibleName=Details FileChooser.fileNameHeader.textAndMnemonic=Name
FileChooser.detailsViewActionLabelText=Details FileChooser.fileSizeHeader.textAndMnemonic=Gr\u00F6\u00DFe
FileChooser.refreshActionLabelText=Aktualisieren FileChooser.fileTypeHeader.textAndMnemonic=Typ
FileChooser.viewMenuLabelText=Ansicht FileChooser.fileDateHeader.textAndMnemonic=Ge\u00E4ndert
FileChooser.fileNameHeaderText=Name FileChooser.fileAttrHeader.textAndMnemonic=Attribute
FileChooser.fileSizeHeaderText=Gr\u00F6\u00DFe
FileChooser.fileTypeHeaderText=Typ ############ Used by MetalTitlePane if rendering window decorations############
FileChooser.fileDateHeaderText=Ge\u00E4ndert MetalTitlePane.restore.titleAndMnemonic=&Wiederherstellen
FileChooser.fileAttrHeaderText=Attribute MetalTitlePane.iconify.titleAndMnemonic=Minimie&ren
MetalTitlePane.maximize.titleAndMnemonic=Ma&ximieren
############ Used by MetalTitlePane if rendering window decorations############ MetalTitlePane.close.titleAndMnemonic=Schlie\u00DFen(&S)
# All mnemonics are KeyEvent.VK_XXX as integers
MetalTitlePane.restoreTitle=Wiederherstellen
MetalTitlePane.restoreMnemonic=87
MetalTitlePane.iconifyTitle=Minimieren
MetalTitlePane.iconifyMnemonic=82
MetalTitlePane.maximizeTitle=Maximieren
MetalTitlePane.maximizeMnemonic=88
MetalTitlePane.closeTitle=Schlie\u00DFen
MetalTitlePane.closeMnemonic=83
...@@ -875,6 +875,8 @@ public class BasicTabbedPaneUI extends TabbedPaneUI implements SwingConstants { ...@@ -875,6 +875,8 @@ public class BasicTabbedPaneUI extends TabbedPaneUI implements SwingConstants {
int availTextWidth = tabScroller.croppedEdge.getCropline() - int availTextWidth = tabScroller.croppedEdge.getCropline() -
(textRect.x - tabRect.x) - tabScroller.croppedEdge.getCroppedSideWidth(); (textRect.x - tabRect.x) - tabScroller.croppedEdge.getCroppedSideWidth();
clippedTitle = SwingUtilities2.clipStringIfNecessary(null, metrics, title, availTextWidth); clippedTitle = SwingUtilities2.clipStringIfNecessary(null, metrics, title, availTextWidth);
} else if (!scrollableTabLayoutEnabled() && isHorizontalTabPlacement()) {
clippedTitle = SwingUtilities2.clipStringIfNecessary(null, metrics, title, textRect.width);
} }
paintText(g, tabPlacement, font, metrics, paintText(g, tabPlacement, font, metrics,
......
...@@ -168,6 +168,8 @@ class XTextAreaPeer extends XComponentPeer implements TextAreaPeer { ...@@ -168,6 +168,8 @@ class XTextAreaPeer extends XComponentPeer implements TextAreaPeer {
public void dispose() { public void dispose() {
XToolkit.specialPeerMap.remove(jtext); XToolkit.specialPeerMap.remove(jtext);
// visible caret has a timer thread which must be stopped
jtext.getCaret().setVisible(false);
jtext.removeNotify(); jtext.removeNotify();
textPane.removeNotify(); textPane.removeNotify();
super.dispose(); super.dispose();
......
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册