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

Merge

...@@ -155,9 +155,11 @@ endif ...@@ -155,9 +155,11 @@ endif
# GUI tools # GUI tools
ifeq ($(GUI_TOOL),true) ifeq ($(GUI_TOOL),true)
ifneq ($(PLATFORM), windows) ifneq ($(PLATFORM), windows)
ifneq ($(PLATFORM), macosx)
# Anything with a GUI needs X11 to be linked in. # Anything with a GUI needs X11 to be linked in.
OTHER_LDLIBS += -L$(OPENWIN_LIB) -lX11 OTHER_LDLIBS += -L$(OPENWIN_LIB) -lX11
endif endif
endif
endif endif
# SA tools need special app classpath # SA tools need special app classpath
......
...@@ -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,6 +917,12 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo ...@@ -849,6 +917,12 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
return; return;
} }
// NOTE: the logic will fail if we have a hierarchy like:
// visible root owner
// 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 // Recursively pop up the windows from the very bottom so that only
// the very top-most one becomes the main window // the very top-most one becomes the main window
owner.orderAboveSiblings(); owner.orderAboveSiblings();
...@@ -858,6 +932,8 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo ...@@ -858,6 +932,8 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
final long nsWindowOwnerPtr = owner.getNSWindowPtr(); final long nsWindowOwnerPtr = owner.getNSWindowPtr();
CWrapper.NSWindow.removeChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr); CWrapper.NSWindow.removeChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr);
CWrapper.NSWindow.addChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr, CWrapper.NSWindow.NSWindowAbove); 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;
if (![theKeyEquivalent isEqualToString:@""]) {
[fMenuItem setKeyEquivalent:theKeyEquivalent]; [fMenuItem setKeyEquivalent:theKeyEquivalent];
[fMenuItem setKeyEquivalentModifierMask:modifierMask]; [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]");
......
...@@ -6,78 +6,49 @@ ...@@ -6,78 +6,49 @@
# 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
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined.
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.hue.textAndMnemonic=&Hue:
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic.
GTKColorChooserPanel.hueText=Hue:
GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=Red: GTKColorChooserPanel.red.textAndMnemonic=R&ed:
GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=Saturation: GTKColorChooserPanel.saturation.textAndMnemonic=&Saturation:
GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=Green: GTKColorChooserPanel.green.textAndMnemonic=&Green:
GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=Value: GTKColorChooserPanel.value.textAndMnemonic=&Value:
GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=Blue: GTKColorChooserPanel.blue.textAndMnemonic=&Blue:
GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=Color Name: GTKColorChooserPanel.color.textAndMnemonic=Color &Name:
GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=All Files FileChooser.acceptAllFileFilter.textAndMnemonic=All Files
FileChooser.newFolderButtonText=New Folder FileChooser.newFolderButton.textAndMnemonic=&New Folder
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderDialog.textAndMnemonic=Folder name:
FileChooser.newFolderDialogText=Folder name: FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Error
FileChooser.newFolderNoDirectoryErrorTitleText=Error FileChooser.newFolderNoDirectoryError.textAndMnemonic=Error creating directory "{0}": No such file or directory
FileChooser.newFolderNoDirectoryErrorText=Error creating directory "{0}": No such file or directory FileChooser.deleteFileButton.textAndMnemonic=De&lete File
FileChooser.deleteFileButtonText=Delete File FileChooser.renameFileButton.textAndMnemonic=&Rename File
FileChooser.deleteFileButtonMnemonic=76 FileChooser.cancelButton.textAndMnemonic=&Cancel
FileChooser.renameFileButtonText=Rename File FileChooser.saveButton.textAndMnemonic=&OK
FileChooser.renameFileButtonMnemonic=82 FileChooser.openButton.textAndMnemonic=&OK
FileChooser.cancelButtonText=Cancel FileChooser.saveDialogTitle.textAndMnemonic=Save
FileChooser.cancelButtonMnemonic=67 FileChooser.openDialogTitle.textAndMnemonic=Open
FileChooser.saveButtonText=OK FileChooser.pathLabel.textAndMnemonic=&Selection:
FileChooser.saveButtonMnemonic=79 FileChooser.filterLabel.textAndMnemonic=Filter:
FileChooser.openButtonText=OK FileChooser.foldersLabel.textAndMnemonic=Fol&ders
FileChooser.openButtonMnemonic=79 FileChooser.filesLabel.textAndMnemonic=&Files
FileChooser.saveDialogTitleText=Save
FileChooser.openDialogTitleText=Open FileChooser.cancelButtonToolTip.textAndMnemonic=Abort file chooser dialog.
FileChooser.pathLabelText=Selection: FileChooser.saveButtonToolTip.textAndMnemonic=Save selected file.
FileChooser.filterLabelText=Filter: FileChooser.openButtonToolTip.textAndMnemonic=Open selected file.
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Folders FileChooser.renameFileDialog.textAndMnemonic=Rename file "{0}" to
FileChooser.foldersLabelMnemonic=68 FileChooser.renameFileError.titleAndMnemonic=Error
FileChooser.filesLabelText=Files FileChooser.renameFileError.textAndMnemonic=Error renaming file "{0}" to "{1}"
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
...@@ -6,83 +6,54 @@ ...@@ -6,83 +6,54 @@
# 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
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined.
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.hue.textAndMnemonic=&Farbton:
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic.
GTKColorChooserPanel.hueText=Farbton:
GTKColorChooserPanel.hueMnemonic=70
GTKColorChooserPanel.redText=Rot: GTKColorChooserPanel.red.textAndMnemonic=&Rot:
GTKColorChooserPanel.redMnemonic=82
GTKColorChooserPanel.saturationText=S\u00E4ttigung: GTKColorChooserPanel.saturation.textAndMnemonic=S\u00E4ttigung(&S):
GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=Gr\u00FCn: GTKColorChooserPanel.green.textAndMnemonic=Gr\u00FCn(&G):
GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=Wert: GTKColorChooserPanel.value.textAndMnemonic=&Wert:
GTKColorChooserPanel.valueMnemonic=87
GTKColorChooserPanel.blueText=Blau: GTKColorChooserPanel.blue.textAndMnemonic=&Blau:
GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=Farbname: GTKColorChooserPanel.color.textAndMnemonic=Farb&name:
GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=Alle Dateien FileChooser.acceptAllFileFilter.textAndMnemonic=Alle Dateien
FileChooser.newFolderButtonText=Neuer Ordner FileChooser.newFolderButton.textAndMnemonic=&Neuer Ordner
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderDialog.textAndMnemonic=Ordnername:
FileChooser.newFolderDialogText=Ordnername: FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Fehler
FileChooser.newFolderNoDirectoryErrorTitleText=Fehler FileChooser.newFolderNoDirectoryError.textAndMnemonic=Fehler beim Erstellen von Verzeichnis "{0}": Datei oder Verzeichnis nicht vorhanden
FileChooser.newFolderNoDirectoryErrorText=Fehler beim Erstellen von Verzeichnis "{0}": Datei oder Verzeichnis nicht vorhanden FileChooser.deleteFileButton.textAndMnemonic=Datei l\u00F6schen(&L)
FileChooser.deleteFileButtonText=Datei l\u00F6schen FileChooser.renameFileButton.textAndMnemonic=Datei &umbenennen
FileChooser.deleteFileButtonMnemonic=76 FileChooser.cancelButton.textAndMnemonic=&Abbrechen
FileChooser.renameFileButtonText=Datei umbenennen FileChooser.saveButton.textAndMnemonic=&OK
FileChooser.renameFileButtonMnemonic=85 FileChooser.openButton.textAndMnemonic=&OK
FileChooser.cancelButtonText=Abbrechen FileChooser.saveDialogTitle.textAndMnemonic=Speichern
FileChooser.cancelButtonMnemonic=65 FileChooser.openDialogTitle.textAndMnemonic=\u00D6ffnen
FileChooser.saveButtonText=OK FileChooser.pathLabel.textAndMnemonic=Aus&wahl:
FileChooser.saveButtonMnemonic=79 FileChooser.filterLabel.textAndMnemonic=Filter:
FileChooser.openButtonText=OK FileChooser.foldersLabel.textAndMnemonic=&Ordner
FileChooser.openButtonMnemonic=79 FileChooser.filesLabel.textAndMnemonic=&Dateien
FileChooser.saveDialogTitleText=Speichern
FileChooser.openDialogTitleText=\u00D6ffnen FileChooser.cancelButtonToolTip.textAndMnemonic=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen.
FileChooser.pathLabelText=Auswahl: FileChooser.saveButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei speichern.
FileChooser.filterLabelText=Filter: FileChooser.openButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei \u00F6ffnen.
FileChooser.pathLabelMnemonic=87
FileChooser.foldersLabelText=Ordner FileChooser.renameFileDialog.textAndMnemonic=Datei "{0}" umbenennen in
FileChooser.foldersLabelMnemonic=79 FileChooser.renameFileError.titleAndMnemonic=Fehler
FileChooser.filesLabelText=Dateien FileChooser.renameFileError.textAndMnemonic=Fehler beim Umbenennen der Datei "{0}" in "{1}"
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 # dummy resource added for translation automation
OptionPane.okButtonText=OK OptionPane.okButton.textAndMnemonic=&OK
OptionPane.okButtonMnemonic=79
# dummy resource added for translation automation # dummy resource added for translation automation
OptionPane.cancelButtonText=Abbrechen OptionPane.cancelButton.textAndMnemonic=&Abbrechen
OptionPane.cancelButtonMnemonic=65
...@@ -6,83 +6,54 @@ ...@@ -6,83 +6,54 @@
# 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
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined.
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.hue.textAndMnemonic=&Mat:
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic.
GTKColorChooserPanel.hueText=Mat:
GTKColorChooserPanel.hueMnemonic=77
GTKColorChooserPanel.redText=Rojo: GTKColorChooserPanel.red.textAndMnemonic=Ro&jo:
GTKColorChooserPanel.redMnemonic=74
GTKColorChooserPanel.saturationText=Saturaci\u00F3n: GTKColorChooserPanel.saturation.textAndMnemonic=Saturaci\u00F3n(&S):
GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=Verde: GTKColorChooserPanel.green.textAndMnemonic=V&erde:
GTKColorChooserPanel.greenMnemonic=69
GTKColorChooserPanel.valueText=Valor: GTKColorChooserPanel.value.textAndMnemonic=&Valor:
GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=Azul: GTKColorChooserPanel.blue.textAndMnemonic=&Azul:
GTKColorChooserPanel.blueMnemonic=65
GTKColorChooserPanel.colorNameText=Nombre del Color: GTKColorChooserPanel.color.textAndMnemonic=&Nombre del Color:
GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=Todos los Archivos FileChooser.acceptAllFileFilter.textAndMnemonic=Todos los Archivos
FileChooser.newFolderButtonText=Nueva Carpeta FileChooser.newFolderButton.textAndMnemonic=&Nueva Carpeta
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderDialog.textAndMnemonic=Nombre de la Carpeta:
FileChooser.newFolderDialogText=Nombre de la Carpeta: FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Error
FileChooser.newFolderNoDirectoryErrorTitleText=Error FileChooser.newFolderNoDirectoryError.textAndMnemonic=Error al crear el directorio "{0}": no existe dicho archivo o directorio
FileChooser.newFolderNoDirectoryErrorText=Error al crear el directorio "{0}": no existe dicho archivo o directorio FileChooser.deleteFileButton.textAndMnemonic=Su&primir Archivo
FileChooser.deleteFileButtonText=Suprimir Archivo FileChooser.renameFileButton.textAndMnemonic=Cambia&r Nombre de Archivo
FileChooser.deleteFileButtonMnemonic=80 FileChooser.cancelButton.textAndMnemonic=&Cancelar
FileChooser.renameFileButtonText=Cambiar Nombre de Archivo FileChooser.saveButton.textAndMnemonic=&Aceptar
FileChooser.renameFileButtonMnemonic=82 FileChooser.openButton.textAndMnemonic=&Aceptar
FileChooser.cancelButtonText=Cancelar FileChooser.saveDialogTitle.textAndMnemonic=Guardar
FileChooser.cancelButtonMnemonic=67 FileChooser.openDialogTitle.textAndMnemonic=Abrir
FileChooser.saveButtonText=Aceptar FileChooser.pathLabel.textAndMnemonic=Selecci\u00F3n(&S):
FileChooser.saveButtonMnemonic=65 FileChooser.filterLabel.textAndMnemonic=Filtro:
FileChooser.openButtonText=Aceptar FileChooser.foldersLabel.textAndMnemonic=Carpe&tas
FileChooser.openButtonMnemonic=65 FileChooser.filesLabel.textAndMnemonic=&Archivos
FileChooser.saveDialogTitleText=Guardar
FileChooser.openDialogTitleText=Abrir FileChooser.cancelButtonToolTip.textAndMnemonic=Abortar cuadro de di\u00E1logo del selector de archivos.
FileChooser.pathLabelText=Selecci\u00F3n: FileChooser.saveButtonToolTip.textAndMnemonic=Guardar el archivo seleccionado.
FileChooser.filterLabelText=Filtro: FileChooser.openButtonToolTip.textAndMnemonic=Abrir el archivo seleccionado.
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Carpetas FileChooser.renameFileDialog.textAndMnemonic=Cambiar el nombre del archivo "{0}" por
FileChooser.foldersLabelMnemonic=84 FileChooser.renameFileError.titleAndMnemonic=Error
FileChooser.filesLabelText=Archivos FileChooser.renameFileError.textAndMnemonic=Error al cambiar el nombre del archivo "{0}" a "{1}"
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 # dummy resource added for translation automation
OptionPane.okButtonText=Aceptar OptionPane.okButton.textAndMnemonic=&Aceptar
OptionPane.okButtonMnemonic=65
# dummy resource added for translation automation # dummy resource added for translation automation
OptionPane.cancelButtonText=Cancelar OptionPane.cancelButton.textAndMnemonic=&Cancelar
OptionPane.cancelButtonMnemonic=67
...@@ -6,83 +6,54 @@ ...@@ -6,83 +6,54 @@
# 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
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined.
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.hue.textAndMnemonic=&Teinte :
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic.
GTKColorChooserPanel.hueText=Teinte :
GTKColorChooserPanel.hueMnemonic=84
GTKColorChooserPanel.redText=Rouge\u00A0: GTKColorChooserPanel.red.textAndMnemonic=Rouge\u00A0(&E):
GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=Saturation : GTKColorChooserPanel.saturation.textAndMnemonic=&Saturation :
GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=Vert : GTKColorChooserPanel.green.textAndMnemonic=V&ert :
GTKColorChooserPanel.greenMnemonic=69
GTKColorChooserPanel.valueText=Valeur : GTKColorChooserPanel.value.textAndMnemonic=&Valeur :
GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=Bleu : GTKColorChooserPanel.blue.textAndMnemonic=&Bleu :
GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=Nom de couleur : GTKColorChooserPanel.color.textAndMnemonic=&Nom de couleur :
GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=Tous les fichiers FileChooser.acceptAllFileFilter.textAndMnemonic=Tous les fichiers
FileChooser.newFolderButtonText=Nouveau dossier FileChooser.newFolderButton.textAndMnemonic=&Nouveau dossier
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderDialog.textAndMnemonic=Nom du dossier :
FileChooser.newFolderDialogText=Nom du dossier : FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Erreur
FileChooser.newFolderNoDirectoryErrorTitleText=Erreur FileChooser.newFolderNoDirectoryError.textAndMnemonic=Erreur lors de la cr\u00E9ation du r\u00E9pertoire "{0}" : ce fichier ou r\u00E9pertoire n''existe pas
FileChooser.newFolderNoDirectoryErrorText=Erreur lors de la cr\u00E9ation du r\u00E9pertoire "{0}" : ce fichier ou r\u00E9pertoire n''existe pas FileChooser.deleteFileButton.textAndMnemonic=Supprimer &le fichier
FileChooser.deleteFileButtonText=Supprimer le fichier FileChooser.renameFileButton.textAndMnemonic=&Renommer le fichier
FileChooser.deleteFileButtonMnemonic=76 FileChooser.cancelButton.textAndMnemonic=&Annuler
FileChooser.renameFileButtonText=Renommer le fichier FileChooser.saveButton.textAndMnemonic=&OK
FileChooser.renameFileButtonMnemonic=82 FileChooser.openButton.textAndMnemonic=&OK
FileChooser.cancelButtonText=Annuler FileChooser.saveDialogTitle.textAndMnemonic=Enregistrer
FileChooser.cancelButtonMnemonic=65 FileChooser.openDialogTitle.textAndMnemonic=Ouvrir
FileChooser.saveButtonText=OK FileChooser.pathLabel.textAndMnemonic=S\u00E9lection (&S):
FileChooser.saveButtonMnemonic=79 FileChooser.filterLabel.textAndMnemonic=Filtre :
FileChooser.openButtonText=OK FileChooser.foldersLabel.textAndMnemonic=&Dossiers
FileChooser.openButtonMnemonic=79 FileChooser.filesLabel.textAndMnemonic=&Fichiers
FileChooser.saveDialogTitleText=Enregistrer
FileChooser.openDialogTitleText=Ouvrir FileChooser.cancelButtonToolTip.textAndMnemonic=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers.
FileChooser.pathLabelText=S\u00E9lection : FileChooser.saveButtonToolTip.textAndMnemonic=Enregistre le fichier s\u00E9lectionn\u00E9.
FileChooser.filterLabelText=Filtre : FileChooser.openButtonToolTip.textAndMnemonic=Ouvre le fichier s\u00E9lectionn\u00E9.
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Dossiers FileChooser.renameFileDialog.textAndMnemonic=Renomme le fichier "{0}" en
FileChooser.foldersLabelMnemonic=68 FileChooser.renameFileError.titleAndMnemonic=Erreur
FileChooser.filesLabelText=Fichiers FileChooser.renameFileError.textAndMnemonic=Erreur lors du changement de nom du fichier "{0}" en "{1}"
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 # dummy resource added for translation automation
OptionPane.okButtonText=OK OptionPane.okButton.textAndMnemonic=&OK
OptionPane.okButtonMnemonic=79
# dummy resource added for translation automation # dummy resource added for translation automation
OptionPane.cancelButtonText=Annuler OptionPane.cancelButton.textAndMnemonic=&Annuler
OptionPane.cancelButtonMnemonic=65
...@@ -6,83 +6,54 @@ ...@@ -6,83 +6,54 @@
# 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
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined.
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.hue.textAndMnemonic=&Ton.:
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic.
GTKColorChooserPanel.hueText=Ton.:
GTKColorChooserPanel.hueMnemonic=84
GTKColorChooserPanel.redText=Rosso: GTKColorChooserPanel.red.textAndMnemonic=R&osso:
GTKColorChooserPanel.redMnemonic=79
GTKColorChooserPanel.saturationText=Saturazione: GTKColorChooserPanel.saturation.textAndMnemonic=&Saturazione:
GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=Verde: GTKColorChooserPanel.green.textAndMnemonic=V&erde:
GTKColorChooserPanel.greenMnemonic=69
GTKColorChooserPanel.valueText=Valore: GTKColorChooserPanel.value.textAndMnemonic=&Valore:
GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=Blu: GTKColorChooserPanel.blue.textAndMnemonic=&Blu:
GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=Nome colore: GTKColorChooserPanel.color.textAndMnemonic=&Nome colore:
GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=Tutti i file FileChooser.acceptAllFileFilter.textAndMnemonic=Tutti i file
FileChooser.newFolderButtonText=Nuova cartella FileChooser.newFolderButton.textAndMnemonic=&Nuova cartella
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderDialog.textAndMnemonic=Nome della cartella:
FileChooser.newFolderDialogText=Nome della cartella: FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Errore
FileChooser.newFolderNoDirectoryErrorTitleText=Errore FileChooser.newFolderNoDirectoryError.textAndMnemonic=Errore durante la creazione della directory "{0}": file o directory inesistente
FileChooser.newFolderNoDirectoryErrorText=Errore durante la creazione della directory "{0}": file o directory inesistente FileChooser.deleteFileButton.textAndMnemonic=E&limina file
FileChooser.deleteFileButtonText=Elimina file FileChooser.renameFileButton.textAndMnemonic=&Rinomina file
FileChooser.deleteFileButtonMnemonic=76 FileChooser.cancelButton.textAndMnemonic=&Annulla
FileChooser.renameFileButtonText=Rinomina file FileChooser.saveButton.textAndMnemonic=&OK
FileChooser.renameFileButtonMnemonic=82 FileChooser.openButton.textAndMnemonic=&OK
FileChooser.cancelButtonText=Annulla FileChooser.saveDialogTitle.textAndMnemonic=Salva
FileChooser.cancelButtonMnemonic=65 FileChooser.openDialogTitle.textAndMnemonic=Apri
FileChooser.saveButtonText=OK FileChooser.pathLabel.textAndMnemonic=&Selezione:
FileChooser.saveButtonMnemonic=79 FileChooser.filterLabel.textAndMnemonic=Filtro:
FileChooser.openButtonText=OK FileChooser.foldersLabel.textAndMnemonic=Car&telle
FileChooser.openButtonMnemonic=79 FileChooser.filesLabel.textAndMnemonic=&File
FileChooser.saveDialogTitleText=Salva
FileChooser.openDialogTitleText=Apri FileChooser.cancelButtonToolTip.textAndMnemonic=Chiude la finestra di dialogo di selezione file.
FileChooser.pathLabelText=Selezione: FileChooser.saveButtonToolTip.textAndMnemonic=Salva il file selezionato.
FileChooser.filterLabelText=Filtro: FileChooser.openButtonToolTip.textAndMnemonic=Apre il file selezionato.
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Cartelle FileChooser.renameFileDialog.textAndMnemonic=Rinomina file "{0}" in
FileChooser.foldersLabelMnemonic=84 FileChooser.renameFileError.titleAndMnemonic=Errore
FileChooser.filesLabelText=File FileChooser.renameFileError.textAndMnemonic=Errore durante la ridenominazione del file "{0}" in "{1}"
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 # dummy resource added for translation automation
OptionPane.okButtonText=OK OptionPane.okButton.textAndMnemonic=&OK
OptionPane.okButtonMnemonic=79
# dummy resource added for translation automation # dummy resource added for translation automation
OptionPane.cancelButtonText=Annulla OptionPane.cancelButton.textAndMnemonic=&Annulla
OptionPane.cancelButtonMnemonic=65
...@@ -6,79 +6,50 @@ ...@@ -6,79 +6,50 @@
# 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
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined.
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.hue.textAndMnemonic=\u8272\u76F8(&H):
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic.
GTKColorChooserPanel.hueText=\u8272\u76F8(H):
GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=\u8D64(E): GTKColorChooserPanel.red.textAndMnemonic=\u8D64(&E):
GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=\u5F69\u5EA6(S): GTKColorChooserPanel.saturation.textAndMnemonic=\u5F69\u5EA6(&S):
GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=\u7DD1(G): GTKColorChooserPanel.green.textAndMnemonic=\u7DD1(&G):
GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=\u5024(V): GTKColorChooserPanel.value.textAndMnemonic=\u5024(&V):
GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=\u9752(B): GTKColorChooserPanel.blue.textAndMnemonic=\u9752(&B):
GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=\u8272\u540D(N): GTKColorChooserPanel.color.textAndMnemonic=\u8272\u540D(&N):
GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB FileChooser.acceptAllFileFilter.textAndMnemonic=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB
FileChooser.newFolderButtonText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0(N) FileChooser.newFolderButton.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0(&N)
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderDialog.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0\u540D:
FileChooser.newFolderDialogText=\u30D5\u30A9\u30EB\u30C0\u540D: FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=\u30A8\u30E9\u30FC
FileChooser.newFolderNoDirectoryErrorTitleText=\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
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.deleteFileButton.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u306E\u524A\u9664(&L)
FileChooser.deleteFileButtonText=\u30D5\u30A1\u30A4\u30EB\u306E\u524A\u9664(L) FileChooser.renameFileButton.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u306E\u540D\u524D\u5909\u66F4(&R)
FileChooser.deleteFileButtonMnemonic=76 FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
FileChooser.renameFileButtonText=\u30D5\u30A1\u30A4\u30EB\u306E\u540D\u524D\u5909\u66F4(R) FileChooser.saveButton.textAndMnemonic=&OK
FileChooser.renameFileButtonMnemonic=82 FileChooser.openButton.textAndMnemonic=&OK
FileChooser.cancelButtonText=\u53D6\u6D88 FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
FileChooser.cancelButtonMnemonic=67 FileChooser.openDialogTitle.textAndMnemonic=\u958B\u304F
FileChooser.saveButtonText=OK FileChooser.pathLabel.textAndMnemonic=\u9078\u629E(&S):
FileChooser.saveButtonMnemonic=79 FileChooser.filterLabel.textAndMnemonic=\u30D5\u30A3\u30EB\u30BF:
FileChooser.openButtonText=OK FileChooser.foldersLabel.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0(&D)
FileChooser.openButtonMnemonic=79 FileChooser.filesLabel.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB(&F)
FileChooser.saveDialogTitleText=\u4FDD\u5B58
FileChooser.openDialogTitleText=\u958B\u304F 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.pathLabelText=\u9078\u629E(S): FileChooser.saveButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059\u3002
FileChooser.filterLabelText=\u30D5\u30A3\u30EB\u30BF: FileChooser.openButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059\u3002
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=\u30D5\u30A9\u30EB\u30C0(D) FileChooser.renameFileDialog.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB"{0}"\u3092\u6B21\u306E\u540D\u524D\u306B\u5909\u66F4:
FileChooser.foldersLabelMnemonic=68 FileChooser.renameFileError.titleAndMnemonic=\u30A8\u30E9\u30FC
FileChooser.filesLabelText=\u30D5\u30A1\u30A4\u30EB(F) 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.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
...@@ -6,79 +6,50 @@ ...@@ -6,79 +6,50 @@
# 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
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined.
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.hue.textAndMnemonic=\uC0C9\uC870(&H):
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic.
GTKColorChooserPanel.hueText=\uC0C9\uC870(H):
GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=\uBE68\uAC04\uC0C9(E): GTKColorChooserPanel.red.textAndMnemonic=\uBE68\uAC04\uC0C9(&E):
GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=\uCC44\uB3C4(S): GTKColorChooserPanel.saturation.textAndMnemonic=\uCC44\uB3C4(&S):
GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=\uB179\uC0C9(G): GTKColorChooserPanel.green.textAndMnemonic=\uB179\uC0C9(&G):
GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=\uAC12(V): GTKColorChooserPanel.value.textAndMnemonic=\uAC12(&V):
GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=\uD30C\uB780\uC0C9(B): GTKColorChooserPanel.blue.textAndMnemonic=\uD30C\uB780\uC0C9(&B):
GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=\uC0C9\uC0C1 \uC774\uB984(N): GTKColorChooserPanel.color.textAndMnemonic=\uC0C9\uC0C1 \uC774\uB984(&N):
GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=\uBAA8\uB4E0 \uD30C\uC77C FileChooser.acceptAllFileFilter.textAndMnemonic=\uBAA8\uB4E0 \uD30C\uC77C
FileChooser.newFolderButtonText=\uC0C8 \uD3F4\uB354(N) FileChooser.newFolderButton.textAndMnemonic=\uC0C8 \uD3F4\uB354(&N)
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderDialog.textAndMnemonic=\uD3F4\uB354 \uC774\uB984:
FileChooser.newFolderDialogText=\uD3F4\uB354 \uC774\uB984: FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=\uC624\uB958
FileChooser.newFolderNoDirectoryErrorTitleText=\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.
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.deleteFileButton.textAndMnemonic=\uD30C\uC77C \uC0AD\uC81C(&L)
FileChooser.deleteFileButtonText=\uD30C\uC77C \uC0AD\uC81C(L) FileChooser.renameFileButton.textAndMnemonic=\uD30C\uC77C \uC774\uB984 \uBC14\uAFB8\uAE30(&R)
FileChooser.deleteFileButtonMnemonic=76 FileChooser.cancelButton.textAndMnemonic=\uCDE8\uC18C(&C)
FileChooser.renameFileButtonText=\uD30C\uC77C \uC774\uB984 \uBC14\uAFB8\uAE30(R) FileChooser.saveButton.textAndMnemonic=\uD655\uC778(&O)
FileChooser.renameFileButtonMnemonic=82 FileChooser.openButton.textAndMnemonic=\uD655\uC778(&O)
FileChooser.cancelButtonText=\uCDE8\uC18C FileChooser.saveDialogTitle.textAndMnemonic=\uC800\uC7A5
FileChooser.cancelButtonMnemonic=67 FileChooser.openDialogTitle.textAndMnemonic=\uC5F4\uAE30
FileChooser.saveButtonText=\uD655\uC778 FileChooser.pathLabel.textAndMnemonic=\uC120\uD0DD \uC0AC\uD56D(&S):
FileChooser.saveButtonMnemonic=79 FileChooser.filterLabel.textAndMnemonic=\uD544\uD130:
FileChooser.openButtonText=\uD655\uC778 FileChooser.foldersLabel.textAndMnemonic=\uD3F4\uB354(&D)
FileChooser.openButtonMnemonic=79 FileChooser.filesLabel.textAndMnemonic=\uD30C\uC77C(&F)
FileChooser.saveDialogTitleText=\uC800\uC7A5
FileChooser.openDialogTitleText=\uC5F4\uAE30 FileChooser.cancelButtonToolTip.textAndMnemonic=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790\uB97C \uC911\uB2E8\uD569\uB2C8\uB2E4.
FileChooser.pathLabelText=\uC120\uD0DD \uC0AC\uD56D(S): FileChooser.saveButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC800\uC7A5\uD569\uB2C8\uB2E4.
FileChooser.filterLabelText=\uD544\uD130: FileChooser.openButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC5FD\uB2C8\uB2E4.
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=\uD3F4\uB354(D) FileChooser.renameFileDialog.textAndMnemonic="{0}" \uD30C\uC77C\uC758 \uC774\uB984 \uBC14\uAFB8\uAE30
FileChooser.foldersLabelMnemonic=68 FileChooser.renameFileError.titleAndMnemonic=\uC624\uB958
FileChooser.filesLabelText=\uD30C\uC77C(F) 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.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
...@@ -6,83 +6,54 @@ ...@@ -6,83 +6,54 @@
# 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
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined.
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.hue.textAndMnemonic=&Matiz:
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic.
GTKColorChooserPanel.hueText=Matiz:
GTKColorChooserPanel.hueMnemonic=77
GTKColorChooserPanel.redText=Vermelho: GTKColorChooserPanel.red.textAndMnemonic=V&ermelho:
GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=Satura\u00E7\u00E3o: GTKColorChooserPanel.saturation.textAndMnemonic=Satura\u00E7\u00E3o(&S):
GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=Verde: GTKColorChooserPanel.green.textAndMnemonic=Ver&de:
GTKColorChooserPanel.greenMnemonic=68
GTKColorChooserPanel.valueText=Valor: GTKColorChooserPanel.value.textAndMnemonic=&Valor:
GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=Azul: GTKColorChooserPanel.blue.textAndMnemonic=&Azul:
GTKColorChooserPanel.blueMnemonic=65
GTKColorChooserPanel.colorNameText=Nome da Cor: GTKColorChooserPanel.color.textAndMnemonic=&Nome da Cor:
GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=Todos os Arquivos FileChooser.acceptAllFileFilter.textAndMnemonic=Todos os Arquivos
FileChooser.newFolderButtonText=Nova Pasta FileChooser.newFolderButton.textAndMnemonic=&Nova Pasta
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderDialog.textAndMnemonic=Nome da pasta:
FileChooser.newFolderDialogText=Nome da pasta: FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Erro
FileChooser.newFolderNoDirectoryErrorTitleText=Erro FileChooser.newFolderNoDirectoryError.textAndMnemonic=Erro ao criar o diret\u00F3rio "{0}": N\u00E3o h\u00E1 arquivo ou diret\u00F3rio
FileChooser.newFolderNoDirectoryErrorText=Erro ao criar o diret\u00F3rio "{0}": N\u00E3o h\u00E1 arquivo ou diret\u00F3rio FileChooser.deleteFileButton.textAndMnemonic=De&letar Arquivo
FileChooser.deleteFileButtonText=Deletar Arquivo FileChooser.renameFileButton.textAndMnemonic=&Renomear Arquivo
FileChooser.deleteFileButtonMnemonic=76 FileChooser.cancelButton.textAndMnemonic=&Cancelar
FileChooser.renameFileButtonText=Renomear Arquivo FileChooser.saveButton.textAndMnemonic=&OK
FileChooser.renameFileButtonMnemonic=82 FileChooser.openButton.textAndMnemonic=&OK
FileChooser.cancelButtonText=Cancelar FileChooser.saveDialogTitle.textAndMnemonic=Salvar
FileChooser.cancelButtonMnemonic=67 FileChooser.openDialogTitle.textAndMnemonic=Abrir
FileChooser.saveButtonText=OK FileChooser.pathLabel.textAndMnemonic=Sele\u00E7\u00E3o(&S):
FileChooser.saveButtonMnemonic=79 FileChooser.filterLabel.textAndMnemonic=Filtro:
FileChooser.openButtonText=OK FileChooser.foldersLabel.textAndMnemonic=&Pastas
FileChooser.openButtonMnemonic=79 FileChooser.filesLabel.textAndMnemonic=&Arquivos
FileChooser.saveDialogTitleText=Salvar
FileChooser.openDialogTitleText=Abrir FileChooser.cancelButtonToolTip.textAndMnemonic=Abortar caixa de di\u00E1logo do seletor de arquivos.
FileChooser.pathLabelText=Sele\u00E7\u00E3o: FileChooser.saveButtonToolTip.textAndMnemonic=Salvar arquivo selecionado.
FileChooser.filterLabelText=Filtro: FileChooser.openButtonToolTip.textAndMnemonic=Abrir arquivo selecionado.
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Pastas FileChooser.renameFileDialog.textAndMnemonic=Renomear arquivo "{0}" por
FileChooser.foldersLabelMnemonic=80 FileChooser.renameFileError.titleAndMnemonic=Erro
FileChooser.filesLabelText=Arquivos FileChooser.renameFileError.textAndMnemonic=Erro ao renomear o arquivo "{0}" por "{1}"
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 # dummy resource added for translation automation
OptionPane.okButtonText=OK OptionPane.okButton.textAndMnemonic=&OK
OptionPane.okButtonMnemonic=79
# dummy resource added for translation automation # dummy resource added for translation automation
OptionPane.cancelButtonText=Cancelar OptionPane.cancelButton.textAndMnemonic=&Cancelar
OptionPane.cancelButtonMnemonic=67
...@@ -6,83 +6,54 @@ ...@@ -6,83 +6,54 @@
# 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
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined.
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.hue.textAndMnemonic=&Nyans:
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic.
GTKColorChooserPanel.hueText=Nyans:
GTKColorChooserPanel.hueMnemonic=78
GTKColorChooserPanel.redText=R\u00F6d: GTKColorChooserPanel.red.textAndMnemonic=R\u00F6d(&R):
GTKColorChooserPanel.redMnemonic=82
GTKColorChooserPanel.saturationText=M\u00E4ttnad: GTKColorChooserPanel.saturation.textAndMnemonic=M\u00E4ttnad(&M):
GTKColorChooserPanel.saturationMnemonic=77
GTKColorChooserPanel.greenText=Gr\u00F6n: GTKColorChooserPanel.green.textAndMnemonic=Gr\u00F6n(&G):
GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=V\u00E4rde: GTKColorChooserPanel.value.textAndMnemonic=V\u00E4rde(&V):
GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=Bl\u00E5: GTKColorChooserPanel.blue.textAndMnemonic=Bl\u00E5(&B):
GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=F\u00E4rgnamn: GTKColorChooserPanel.color.textAndMnemonic=F\u00E4rgnamn(&F):
GTKColorChooserPanel.colorNameMnemonic=70
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=Alla filer FileChooser.acceptAllFileFilter.textAndMnemonic=Alla filer
FileChooser.newFolderButtonText=Ny mapp FileChooser.newFolderButton.textAndMnemonic=&Ny mapp
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderDialog.textAndMnemonic=Mapp:
FileChooser.newFolderDialogText=Mapp: FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Fel
FileChooser.newFolderNoDirectoryErrorTitleText=Fel FileChooser.newFolderNoDirectoryError.textAndMnemonic=Ett fel intr\u00E4ffade vid f\u00F6rs\u00F6k att skapa katalogen "{0}": Filen eller katalogen finns inte
FileChooser.newFolderNoDirectoryErrorText=Ett fel intr\u00E4ffade vid f\u00F6rs\u00F6k att skapa katalogen "{0}": Filen eller katalogen finns inte FileChooser.deleteFileButton.textAndMnemonic=Ta &bort fil
FileChooser.deleteFileButtonText=Ta bort fil FileChooser.renameFileButton.textAndMnemonic=\u00C4ndra namn p\u00E5 filen(&R)
FileChooser.deleteFileButtonMnemonic=66 FileChooser.cancelButton.textAndMnemonic=&Avbryt
FileChooser.renameFileButtonText=\u00C4ndra namn p\u00E5 filen FileChooser.saveButton.textAndMnemonic=&OK
FileChooser.renameFileButtonMnemonic=82 FileChooser.openButton.textAndMnemonic=&OK
FileChooser.cancelButtonText=Avbryt FileChooser.saveDialogTitle.textAndMnemonic=Spara
FileChooser.cancelButtonMnemonic=65 FileChooser.openDialogTitle.textAndMnemonic=\u00D6ppna
FileChooser.saveButtonText=OK FileChooser.pathLabel.textAndMnemonic=&Urval:
FileChooser.saveButtonMnemonic=79 FileChooser.filterLabel.textAndMnemonic=Filter:
FileChooser.openButtonText=OK FileChooser.foldersLabel.textAndMnemonic=Ma&ppar
FileChooser.openButtonMnemonic=79 FileChooser.filesLabel.textAndMnemonic=&Filer
FileChooser.saveDialogTitleText=Spara
FileChooser.openDialogTitleText=\u00D6ppna FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt dialogrutan Filv\u00E4ljare.
FileChooser.pathLabelText=Urval: FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil.
FileChooser.filterLabelText=Filter: FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil.
FileChooser.pathLabelMnemonic=85
FileChooser.foldersLabelText=Mappar FileChooser.renameFileDialog.textAndMnemonic=Namn\u00E4ndra fil "{0}" till
FileChooser.foldersLabelMnemonic=80 FileChooser.renameFileError.titleAndMnemonic=Fel
FileChooser.filesLabelText=Filer FileChooser.renameFileError.textAndMnemonic=Fel vid namn\u00E4ndring av fil "{0}" till "{1}"
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 # dummy resource added for translation automation
OptionPane.okButtonText=OK OptionPane.okButton.textAndMnemonic=&OK
OptionPane.okButtonMnemonic=79
# dummy resource added for translation automation # dummy resource added for translation automation
OptionPane.cancelButtonText=Avbryt OptionPane.cancelButton.textAndMnemonic=&Avbryt
OptionPane.cancelButtonMnemonic=65
...@@ -6,79 +6,50 @@ ...@@ -6,79 +6,50 @@
# 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
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined.
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.hue.textAndMnemonic=\u8272\u8C03(&H):
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic.
GTKColorChooserPanel.hueText=\u8272\u8C03(H):
GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=\u7EA2\u8272(E): GTKColorChooserPanel.red.textAndMnemonic=\u7EA2\u8272(&E):
GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=\u9971\u548C\u5EA6(S): GTKColorChooserPanel.saturation.textAndMnemonic=\u9971\u548C\u5EA6(&S):
GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=\u7EFF\u8272(G): GTKColorChooserPanel.green.textAndMnemonic=\u7EFF\u8272(&G):
GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=\u503C(V): GTKColorChooserPanel.value.textAndMnemonic=\u503C(&V):
GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=\u84DD\u8272(B): GTKColorChooserPanel.blue.textAndMnemonic=\u84DD\u8272(&B):
GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=\u989C\u8272\u540D(N): GTKColorChooserPanel.color.textAndMnemonic=\u989C\u8272\u540D(&N):
GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6587\u4EF6 FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6587\u4EF6
FileChooser.newFolderButtonText=\u65B0\u6587\u4EF6\u5939(N) FileChooser.newFolderButton.textAndMnemonic=\u65B0\u6587\u4EF6\u5939(&N)
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderDialog.textAndMnemonic=\u6587\u4EF6\u5939\u540D:
FileChooser.newFolderDialogText=\u6587\u4EF6\u5939\u540D: FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=\u9519\u8BEF
FileChooser.newFolderNoDirectoryErrorTitleText=\u9519\u8BEF FileChooser.newFolderNoDirectoryError.textAndMnemonic=\u521B\u5EFA\u76EE\u5F55 "{0}" \u65F6\u51FA\u9519: \u6CA1\u6709\u6B64\u7C7B\u6587\u4EF6\u6216\u76EE\u5F55
FileChooser.newFolderNoDirectoryErrorText=\u521B\u5EFA\u76EE\u5F55 "{0}" \u65F6\u51FA\u9519: \u6CA1\u6709\u6B64\u7C7B\u6587\u4EF6\u6216\u76EE\u5F55 FileChooser.deleteFileButton.textAndMnemonic=\u5220\u9664\u6587\u4EF6(&L)
FileChooser.deleteFileButtonText=\u5220\u9664\u6587\u4EF6(L) FileChooser.renameFileButton.textAndMnemonic=\u91CD\u547D\u540D\u6587\u4EF6(&R)
FileChooser.deleteFileButtonMnemonic=76 FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
FileChooser.renameFileButtonText=\u91CD\u547D\u540D\u6587\u4EF6(R) FileChooser.saveButton.textAndMnemonic=\u786E\u5B9A(&O)
FileChooser.renameFileButtonMnemonic=82 FileChooser.openButton.textAndMnemonic=\u786E\u5B9A(&O)
FileChooser.cancelButtonText=\u53D6\u6D88 FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
FileChooser.cancelButtonMnemonic=67 FileChooser.openDialogTitle.textAndMnemonic=\u6253\u5F00
FileChooser.saveButtonText=\u786E\u5B9A FileChooser.pathLabel.textAndMnemonic=\u9009\u5B9A\u5185\u5BB9(&S):
FileChooser.saveButtonMnemonic=79 FileChooser.filterLabel.textAndMnemonic=\u7B5B\u9009\u5668:
FileChooser.openButtonText=\u786E\u5B9A FileChooser.foldersLabel.textAndMnemonic=\u6587\u4EF6\u5939(&D)
FileChooser.openButtonMnemonic=79 FileChooser.filesLabel.textAndMnemonic=\u6587\u4EF6(&F)
FileChooser.saveDialogTitleText=\u4FDD\u5B58
FileChooser.openDialogTitleText=\u6253\u5F00 FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846\u3002
FileChooser.pathLabelText=\u9009\u5B9A\u5185\u5BB9(S): FileChooser.saveButtonToolTip.textAndMnemonic=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6\u3002
FileChooser.filterLabelText=\u7B5B\u9009\u5668: FileChooser.openButtonToolTip.textAndMnemonic=\u6253\u5F00\u6240\u9009\u6587\u4EF6\u3002
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=\u6587\u4EF6\u5939(D) FileChooser.renameFileDialog.textAndMnemonic=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A
FileChooser.foldersLabelMnemonic=68 FileChooser.renameFileError.titleAndMnemonic=\u9519\u8BEF
FileChooser.filesLabelText=\u6587\u4EF6(F) FileChooser.renameFileError.textAndMnemonic=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A "{1}" \u65F6\u51FA\u9519
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
...@@ -6,79 +6,50 @@ ...@@ -6,79 +6,50 @@
# 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
# want an index other than would normally be underlined by
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
# if GTKColorChooserPanel.nameText defines the mnemonic character more
# than once and you want a character other than the first underlined.
# Text and mnemonics for the spinner. You can also defined a different GTKColorChooserPanel.hue.textAndMnemonic=\u8272\u8ABF(&H)\uFF1A
# index for the mnemonic via xxxMnemonicIndex, for example
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic.
GTKColorChooserPanel.hueText=\u8272\u8ABF(H)\uFF1A
GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=\u7D05(E): GTKColorChooserPanel.red.textAndMnemonic=\u7D05(&E):
GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=\u5F69\u5EA6(S): GTKColorChooserPanel.saturation.textAndMnemonic=\u5F69\u5EA6(&S):
GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=\u7DA0(G): GTKColorChooserPanel.green.textAndMnemonic=\u7DA0(&G):
GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=\u503C(V): GTKColorChooserPanel.value.textAndMnemonic=\u503C(&V):
GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=\u85CD(B): GTKColorChooserPanel.blue.textAndMnemonic=\u85CD(&B):
GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=\u984F\u8272\u540D\u7A31(N): GTKColorChooserPanel.color.textAndMnemonic=\u984F\u8272\u540D\u7A31(&N):
GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6A94\u6848 FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6A94\u6848
FileChooser.newFolderButtonText=\u65B0\u5EFA\u8CC7\u6599\u593E(N) FileChooser.newFolderButton.textAndMnemonic=\u65B0\u5EFA\u8CC7\u6599\u593E(&N)
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderDialog.textAndMnemonic=\u8CC7\u6599\u593E\u540D\u7A31:
FileChooser.newFolderDialogText=\u8CC7\u6599\u593E\u540D\u7A31: FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=\u932F\u8AA4
FileChooser.newFolderNoDirectoryErrorTitleText=\u932F\u8AA4 FileChooser.newFolderNoDirectoryError.textAndMnemonic=\u5EFA\u7ACB\u76EE\u9304 "{0}" \u6642\u767C\u751F\u932F\u8AA4: \u6C92\u6709\u6B64\u6A94\u6848\u6216\u76EE\u9304
FileChooser.newFolderNoDirectoryErrorText=\u5EFA\u7ACB\u76EE\u9304 "{0}" \u6642\u767C\u751F\u932F\u8AA4: \u6C92\u6709\u6B64\u6A94\u6848\u6216\u76EE\u9304 FileChooser.deleteFileButton.textAndMnemonic=\u522A\u9664\u6A94\u6848(&L)
FileChooser.deleteFileButtonText=\u522A\u9664\u6A94\u6848(L) FileChooser.renameFileButton.textAndMnemonic=\u91CD\u65B0\u547D\u540D\u6A94\u6848(&R)
FileChooser.deleteFileButtonMnemonic=76 FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
FileChooser.renameFileButtonText=\u91CD\u65B0\u547D\u540D\u6A94\u6848(R) FileChooser.saveButton.textAndMnemonic=\u78BA\u5B9A(&O)
FileChooser.renameFileButtonMnemonic=82 FileChooser.openButton.textAndMnemonic=\u78BA\u5B9A(&O)
FileChooser.cancelButtonText=\u53D6\u6D88 FileChooser.saveDialogTitle.textAndMnemonic=\u5132\u5B58
FileChooser.cancelButtonMnemonic=67 FileChooser.openDialogTitle.textAndMnemonic=\u958B\u555F
FileChooser.saveButtonText=\u78BA\u5B9A FileChooser.pathLabel.textAndMnemonic=\u9078\u53D6(&S):
FileChooser.saveButtonMnemonic=79 FileChooser.filterLabel.textAndMnemonic=\u7BE9\u9078:
FileChooser.openButtonText=\u78BA\u5B9A FileChooser.foldersLabel.textAndMnemonic=\u8CC7\u6599\u593E(&D)
FileChooser.openButtonMnemonic=79 FileChooser.filesLabel.textAndMnemonic=\u6A94\u6848(&F)
FileChooser.saveDialogTitleText=\u5132\u5B58
FileChooser.openDialogTitleText=\u958B\u555F FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6A94\u6848\u9078\u64C7\u5668\u5C0D\u8A71\u65B9\u584A\u3002
FileChooser.pathLabelText=\u9078\u53D6(S): FileChooser.saveButtonToolTip.textAndMnemonic=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848\u3002
FileChooser.filterLabelText=\u7BE9\u9078: FileChooser.openButtonToolTip.textAndMnemonic=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848\u3002
FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=\u8CC7\u6599\u593E(D) FileChooser.renameFileDialog.textAndMnemonic=\u5C07\u6A94\u6848 "{0}" \u91CD\u65B0\u547D\u540D\u70BA
FileChooser.foldersLabelMnemonic=68 FileChooser.renameFileError.titleAndMnemonic=\u932F\u8AA4
FileChooser.filesLabelText=\u6A94\u6848(F) FileChooser.renameFileError.textAndMnemonic=\u5C07\u6A94\u6848 "{0}" \u91CD\u65B0\u547D\u540D\u70BA "{1}" \u6642\u51FA\u73FE\u932F\u8AA4
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
...@@ -15,27 +15,13 @@ ...@@ -15,27 +15,13 @@
# 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
# in java/awt/KeyEvent.java. VK_G is defined as:
#
# public static final int VK_G = 0x47;
#
# 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
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
# for 'a' is 65, 'b' is 66...
#
# The xxDisplayedMnemonicIndex is used to indicate the index of the
# character that should be underlined in the String, with 0
# corresponding to the first character in the String.
# #
# One important thing to remember is that the mnemonic MUST exist in # One important thing to remember is that the mnemonic MUST exist in
# the String, if it does not exist you should add text that makes it # the String, if it does not exist you should add text that makes it
...@@ -45,31 +31,25 @@ ...@@ -45,31 +31,25 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=Generic File FileChooser.fileDescription.textAndMnemonic=Generic File
FileChooser.directoryDescriptionText=Directory FileChooser.directoryDescription.textAndMnemonic=Directory
FileChooser.newFolderErrorText=Error creating new folder FileChooser.newFolderError.textAndMnemonic=Error creating new folder
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=Unable to create folder FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Unable to create folder
FileChooser.newFolderParentDoesntExistText=Unable to create the folder.\n\nThe system cannot find the path specified. FileChooser.newFolderParentDoesntExist.textAndMnemonic=Unable to create the folder.\n\nThe system cannot find the path specified.
FileChooser.renameErrorTitleText=Error Renaming File or Folder FileChooser.renameErrorTitle.textAndMnemonic=Error Renaming File or Folder
FileChooser.renameErrorText=Cannot rename {0} FileChooser.renameError.textAndMnemonic=Cannot rename {0}
FileChooser.renameErrorFileExistsText=Cannot rename {0}: A file with the name you specified already exists. \ FileChooser.renameErrorFileExists.textAndMnemonic=Cannot rename {0}: A file with the name you specified already exists. \
Specify a different file name. Specify a different file name.
FileChooser.acceptAllFileFilterText=All Files FileChooser.acceptAllFileFilter.textAndMnemonic=All Files
FileChooser.cancelButtonText=Cancel FileChooser.cancelButton.textAndMnemonic=Cancel
#FileChooser.cancelButtonMnemonic=67 // not needed? FileChooser.saveButton.textAndMnemonic=&Save
FileChooser.saveButtonText=Save FileChooser.openButton.textAndMnemonic=&Open
FileChooser.saveButtonMnemonic=83 // not needed? FileChooser.saveDialogTitle.textAndMnemonic=Save
FileChooser.openButtonText=Open FileChooser.openDialogTitle.textAndMnemonic=Open
FileChooser.openButtonMnemonic=79 //not needed? FileChooser.updateButton.textAndMnemonic=&Update
FileChooser.saveDialogTitleText=Save FileChooser.helpButton.textAndMnemonic=&Help
FileChooser.openDialogTitleText=Open FileChooser.directoryOpenButton.textAndMnemonic=&Open
FileChooser.updateButtonText=Update
FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=Help
FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=Open
FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
...@@ -84,98 +64,78 @@ FileChooser.other.newFolder.subsequent=NewFolder.{0} ...@@ -84,98 +64,78 @@ FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=Abort file chooser dialog FileChooser.cancelButtonToolTip.textAndMnemonic=Abort file chooser dialog
FileChooser.saveButtonToolTipText=Save selected file FileChooser.saveButtonToolTip.textAndMnemonic=Save selected file
FileChooser.openButtonToolTipText=Open selected file FileChooser.openButtonToolTip.textAndMnemonic=Open selected file
FileChooser.updateButtonToolTipText=Update directory listing FileChooser.updateButtonToolTip.textAndMnemonic=Update directory listing
FileChooser.helpButtonToolTipText=FileChooser help FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser help
FileChooser.directoryOpenButtonToolTipText=Open selected directory FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Open selected directory
FileChooser.filesListAccessibleName=Files List FileChooser.filesListAccessibleName=Files List
FileChooser.filesDetailsAccessibleName=Files Details FileChooser.filesDetailsAccessibleName=Files Details
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=Preview ColorChooser.preview.textAndMnemonic=Preview
ColorChooser.okText=OK ColorChooser.ok.textAndMnemonic=OK
ColorChooser.cancelText=Cancel ColorChooser.cancel.textAndMnemonic=Cancel
ColorChooser.resetText=Reset ColorChooser.reset.textAndMnemonic=&Reset
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.sample.textAndMnemonic=Sample Text Sample Text
ColorChooser.resetMnemonic=82 ColorChooser.swatches.textAndMnemonic=&Swatches
ColorChooser.sampleText=Sample Text Sample Text ColorChooser.swatchesRecent.textAndMnemonic=Recent:
ColorChooser.swatchesNameText=Swatches ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.swatchesMnemonic=83 ColorChooser.hsvHue.textAndMnemonic=Hue
ColorChooser.swatchesRecentText=Recent: ColorChooser.hsvSaturation.textAndMnemonic=Saturation
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX ColorChooser.hsvValue.textAndMnemonic=Value
# constant, and an index into the text to render the mnemonic as. The ColorChooser.hsvTransparency.textAndMnemonic=Transparency
# mnemonic is xxxMnemonic and the index of the character to underline is ColorChooser.hsl.textAndMnemonic=HS&L
# xxxDisplayedMnemonicIndex. ColorChooser.hslHue.textAndMnemonic=Hue
ColorChooser.hsvNameText=HSV ColorChooser.hslSaturation.textAndMnemonic=Saturation
ColorChooser.hsvMnemonic=72 ColorChooser.hslLightness.textAndMnemonic=Lightness
ColorChooser.hsvHueText=Hue ColorChooser.hslTransparency.textAndMnemonic=Transparency
ColorChooser.hsvSaturationText=Saturation ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.hsvValueText=Value ColorChooser.rgbRed.textAndMnemonic=Re&d
ColorChooser.hsvTransparencyText=Transparency ColorChooser.rgbGreen.textAndMnemonic=Gree&n
ColorChooser.hslNameText=HSL ColorChooser.rgbBlue.textAndMnemonic=&Blue
ColorChooser.hslMnemonic=76 ColorChooser.rgbAlpha.textAndMnemonic=Alpha
ColorChooser.hslHueText=Hue ColorChooser.rgbHexCode.textAndMnemonic=&Color Code
ColorChooser.hslSaturationText=Saturation ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.hslLightnessText=Lightness ColorChooser.cmykCyan.textAndMnemonic=Cyan
ColorChooser.hslTransparencyText=Transparency ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.rgbNameText=RGB ColorChooser.cmykYellow.textAndMnemonic=Yellow
ColorChooser.rgbMnemonic=71 ColorChooser.cmykBlack.textAndMnemonic=Black
ColorChooser.rgbRedText=Red ColorChooser.cmykAlpha.textAndMnemonic=Alpha
ColorChooser.rgbRedMnemonic=68 // not needed?
ColorChooser.rgbGreenText=Green
ColorChooser.rgbGreenMnemonic=78 // not needed?
ColorChooser.rgbBlueText=Blue
ColorChooser.rgbBlueMnemonic=66 // not needed?
ColorChooser.rgbAlphaText=Alpha
ColorChooser.rgbHexCodeText=Color Code
ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Cyan
ColorChooser.cmykMagentaText=Magenta
ColorChooser.cmykYellowText=Yellow
ColorChooser.cmykBlackText=Black
ColorChooser.cmykAlphaText=Alpha
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=Yes OptionPane.yesButton.textAndMnemonic=&Yes
OptionPane.yesButtonMnemonic=89 OptionPane.noButton.textAndMnemonic=&No
OptionPane.noButtonText=No OptionPane.okButton.textAndMnemonic=OK
OptionPane.noButtonMnemonic=78
OptionPane.okButtonText=OK
#OptionPane.okButtonMnemonic=0 #OptionPane.okButtonMnemonic=0
OptionPane.cancelButtonText=Cancel OptionPane.cancelButton.textAndMnemonic=Cancel
#OptionPane.cancelButtonMnemonic=0 #OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=Select an Option OptionPane.title.textAndMnemonic=Select an Option
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=Input OptionPane.inputDialog.titleAndMnemonic=Input
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=Message OptionPane.messageDialog.titleAndMnemonic=Message
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=Printing PrintingDialog.titleProgress.textAndMnemonic=Printing
PrintingDialog.titleAbortingText=Printing (Aborting) PrintingDialog.titleAborting.textAndMnemonic=Printing (Aborting)
PrintingDialog.contentInitialText=Printing in progress... PrintingDialog.contentInitial.textAndMnemonic=Printing in progress...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=Printed page {0}... PrintingDialog.contentProgress.textAndMnemonic=Printed page {0}...
PrintingDialog.contentAbortingText=Printing aborting... PrintingDialog.contentAborting.textAndMnemonic=Printing aborting...
PrintingDialog.abortButtonText=Abort PrintingDialog.abortButton.textAndMnemonic=&Abort
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonToolTip.textAndMnemonic=Abort Printing
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=Abort Printing
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Minimize InternalFrame.iconButtonToolTip=Minimize
...@@ -184,42 +144,42 @@ InternalFrame.restoreButtonToolTip=Restore ...@@ -184,42 +144,42 @@ InternalFrame.restoreButtonToolTip=Restore
InternalFrame.closeButtonToolTip=Close InternalFrame.closeButtonToolTip=Close
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=Restore InternalFrameTitlePane.restoreButton.textAndMnemonic=Restore
InternalFrameTitlePane.moveButtonText=Move InternalFrameTitlePane.moveButton.textAndMnemonic=Move
InternalFrameTitlePane.sizeButtonText=Size InternalFrameTitlePane.sizeButton.textAndMnemonic=Size
InternalFrameTitlePane.minimizeButtonText=Minimize InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimize
InternalFrameTitlePane.maximizeButtonText=Maximize InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximize
InternalFrameTitlePane.closeButtonText=Close InternalFrameTitlePane.closeButton.textAndMnemonic=Close
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=Submit Query FormView.submitButton.textAndMnemonic=Submit Query
FormView.resetButtonText=Reset FormView.resetButton.textAndMnemonic=Reset
FormView.browseFileButtonText=Browse... FormView.browseFileButton.textAndMnemonic=Browse...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=style change AbstractDocument.styleChange.textAndMnemonic=style change
AbstractDocument.additionText=addition AbstractDocument.addition.textAndMnemonic=addition
AbstractDocument.deletionText=deletion AbstractDocument.deletion.textAndMnemonic=deletion
AbstractDocument.undoText=Undo AbstractDocument.undo.textAndMnemonic=Undo
AbstractDocument.redoText=Redo AbstractDocument.redo.textAndMnemonic=Redo
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=click AbstractButton.click.textAndMnemonic=click
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=Undo AbstractUndoableEdit.undo.textAndMnemonic=Undo
AbstractUndoableEdit.redoText=Redo AbstractUndoableEdit.redo.textAndMnemonic=Redo
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=Progress... ProgressMonitor.progress.textAndMnemonic=Progress...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=left button SplitPane.leftButton.textAndMnemonic=left button
SplitPane.rightButtonText=right button SplitPane.rightButton.textAndMnemonic=right button
# Used for Isindex # Used for Isindex
IsindexView.prompt=This is a searchable index. Enter search keywords: IsindexView.prompt=This is a searchable index. Enter search keywords:
......
...@@ -15,27 +15,13 @@ ...@@ -15,27 +15,13 @@
# 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
# in java/awt/KeyEvent.java. VK_G is defined as:
#
# public static final int VK_G = 0x47;
#
# 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
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
# for 'a' is 65, 'b' is 66...
#
# The xxDisplayedMnemonicIndex is used to indicate the index of the
# character that should be underlined in the String, with 0
# corresponding to the first character in the String.
# #
# One important thing to remember is that the mnemonic MUST exist in # One important thing to remember is that the mnemonic MUST exist in
# the String, if it does not exist you should add text that makes it # the String, if it does not exist you should add text that makes it
...@@ -45,30 +31,24 @@ ...@@ -45,30 +31,24 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=Allgemeine Datei FileChooser.fileDescription.textAndMnemonic=Allgemeine Datei
FileChooser.directoryDescriptionText=Verzeichnis FileChooser.directoryDescription.textAndMnemonic=Verzeichnis
FileChooser.newFolderErrorText=Fehler beim Erstellen eines neuen Ordners FileChooser.newFolderError.textAndMnemonic=Fehler beim Erstellen eines neuen Ordners
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=Ordner kann nicht erstellt werden FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Ordner kann nicht erstellt werden
FileChooser.newFolderParentDoesntExistText=Ordner kann nicht erstellt werden.\n\nSystem kann den angegebenen Pfad nicht finden. FileChooser.newFolderParentDoesntExist.textAndMnemonic=Ordner kann nicht erstellt werden.\n\nSystem kann den angegebenen Pfad nicht finden.
FileChooser.renameErrorTitleText=Fehler beim Umbenennen von Datei oder Ordner FileChooser.renameErrorTitle.textAndMnemonic=Fehler beim Umbenennen von Datei oder Ordner
FileChooser.renameErrorText={0} kann nicht umbenannt werden FileChooser.renameError.textAndMnemonic={0} kann nicht umbenannt werden
FileChooser.renameErrorFileExistsText={0} kann nicht umbenannt werden: Es ist bereits eine Datei mit dem angegebenen Namen vorhanden. Geben Sie einen anderen Dateinamen an. FileChooser.renameErrorFileExists.textAndMnemonic={0} kann nicht umbenannt werden: Es ist bereits eine Datei mit dem angegebenen Namen vorhanden. Geben Sie einen anderen Dateinamen an.
FileChooser.acceptAllFileFilterText=Alle Dateien FileChooser.acceptAllFileFilter.textAndMnemonic=Alle Dateien
FileChooser.cancelButtonText=Abbrechen FileChooser.cancelButton.textAndMnemonic=&Abbrechen
FileChooser.cancelButtonMnemonic=65 FileChooser.saveButton.textAndMnemonic=&Speichern
FileChooser.saveButtonText=Speichern FileChooser.openButton.textAndMnemonic=\u00D6ffnen(&F)
FileChooser.saveButtonMnemonic=83 FileChooser.saveDialogTitle.textAndMnemonic=Speichern
FileChooser.openButtonText=\u00D6ffnen FileChooser.openDialogTitle.textAndMnemonic=\u00D6ffnen
FileChooser.openButtonMnemonic=70 FileChooser.updateButton.textAndMnemonic=A&ktualisieren
FileChooser.saveDialogTitleText=Speichern FileChooser.helpButton.textAndMnemonic=&Hilfe
FileChooser.openDialogTitleText=\u00D6ffnen FileChooser.directoryOpenButton.textAndMnemonic=\u00D6ffnen(&F)
FileChooser.updateButtonText=Aktualisieren
FileChooser.updateButtonMnemonic=75
FileChooser.helpButtonText=Hilfe
FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=\u00D6ffnen
FileChooser.directoryOpenButtonMnemonic=70
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
...@@ -83,98 +63,76 @@ FileChooser.other.newFolder.subsequent=NewFolder.{0} ...@@ -83,98 +63,76 @@ FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen FileChooser.cancelButtonToolTip.textAndMnemonic=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen
FileChooser.saveButtonToolTipText=Ausgew\u00E4hlte Datei speichern FileChooser.saveButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei speichern
FileChooser.openButtonToolTipText=Ausgew\u00E4hlte Datei \u00F6ffnen FileChooser.openButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei \u00F6ffnen
FileChooser.updateButtonToolTipText=Verzeichnisliste aktualisieren FileChooser.updateButtonToolTip.textAndMnemonic=Verzeichnisliste aktualisieren
FileChooser.helpButtonToolTipText=FileChooser-Hilfe FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser-Hilfe
FileChooser.directoryOpenButtonToolTipText=Ausgew\u00E4hltes Verzeichnis \u00F6ffnen FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Ausgew\u00E4hltes Verzeichnis \u00F6ffnen
FileChooser.filesListAccessibleName=Files List FileChooser.filesListAccessibleName=Files List
FileChooser.filesDetailsAccessibleName=Files Details FileChooser.filesDetailsAccessibleName=Files Details
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=Vorschau ColorChooser.preview.textAndMnemonic=Vorschau
ColorChooser.okText=OK ColorChooser.ok.textAndMnemonic=OK
ColorChooser.cancelText=Abbrechen ColorChooser.cancel.textAndMnemonic=Abbrechen
ColorChooser.resetText=Zur\u00FCcksetzen ColorChooser.reset.textAndMnemonic=Zur\u00FCcksetzen(&Z)
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.sample.textAndMnemonic=Beispieltext Beispieltext
ColorChooser.resetMnemonic=90 ColorChooser.swatches.textAndMnemonic=&Swatches
ColorChooser.sampleText=Beispieltext Beispieltext ColorChooser.swatchesRecent.textAndMnemonic=Aktuell:
ColorChooser.swatchesNameText=Swatches ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.swatchesMnemonic=83 ColorChooser.hsvHue.textAndMnemonic=Farbton
ColorChooser.swatchesRecentText=Aktuell: ColorChooser.hsvSaturation.textAndMnemonic=S\u00E4ttigung
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX ColorChooser.hsvValue.textAndMnemonic=Wert
# constant, and an index into the text to render the mnemonic as. The ColorChooser.hsvTransparency.textAndMnemonic=Transparenz
# mnemonic is xxxMnemonic and the index of the character to underline is ColorChooser.hsl.textAndMnemonic=HS&L
# xxxDisplayedMnemonicIndex. ColorChooser.hslHue.textAndMnemonic=Farbton
ColorChooser.hsvNameText=HSV ColorChooser.hslSaturation.textAndMnemonic=S\u00E4ttigung
ColorChooser.hsvMnemonic=72 ColorChooser.hslLightness.textAndMnemonic=Helligkeit
ColorChooser.hsvHueText=Farbton ColorChooser.hslTransparency.textAndMnemonic=Transparenz
ColorChooser.hsvSaturationText=S\u00E4ttigung ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.hsvValueText=Wert ColorChooser.rgbRed.textAndMnemonic=Ro&t
ColorChooser.hsvTransparencyText=Transparenz ColorChooser.rgbGreen.textAndMnemonic=Gr\u00FCn(&N)
ColorChooser.hslNameText=HSL ColorChooser.rgbBlue.textAndMnemonic=&Blau
ColorChooser.hslMnemonic=76 ColorChooser.rgbAlpha.textAndMnemonic=Alpha
ColorChooser.hslHueText=Farbton ColorChooser.rgbHexCode.textAndMnemonic=&Farbcode
ColorChooser.hslSaturationText=S\u00E4ttigung ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.hslLightnessText=Helligkeit ColorChooser.cmykCyan.textAndMnemonic=Zyan
ColorChooser.hslTransparencyText=Transparenz ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.rgbNameText=RGB ColorChooser.cmykYellow.textAndMnemonic=Gelb
ColorChooser.rgbMnemonic=71 ColorChooser.cmykBlack.textAndMnemonic=Schwarz
ColorChooser.rgbRedText=Rot ColorChooser.cmykAlpha.textAndMnemonic=Alpha
ColorChooser.rgbRedMnemonic=84
ColorChooser.rgbGreenText=Gr\u00FCn
ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=Blau
ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alpha
ColorChooser.rgbHexCodeText=Farbcode
ColorChooser.rgbHexCodeMnemonic=70
ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Zyan
ColorChooser.cmykMagentaText=Magenta
ColorChooser.cmykYellowText=Gelb
ColorChooser.cmykBlackText=Schwarz
ColorChooser.cmykAlphaText=Alpha
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=Ja OptionPane.yesButton.textAndMnemonic=&Ja
OptionPane.yesButtonMnemonic=74 OptionPane.noButton.textAndMnemonic=&Nein
OptionPane.noButtonText=Nein OptionPane.okButton.textAndMnemonic=&OK
OptionPane.noButtonMnemonic=78 OptionPane.cancelButton.textAndMnemonic=&Abbrechen
OptionPane.okButtonText=OK OptionPane.title.textAndMnemonic=Option ausw\u00E4hlen
OptionPane.okButtonMnemonic=O
OptionPane.cancelButtonText=Abbrechen
OptionPane.cancelButtonMnemonic=A
OptionPane.titleText=Option ausw\u00E4hlen
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=Eingabe OptionPane.inputDialog.titleAndMnemonic=Eingabe
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=Meldung OptionPane.messageDialog.titleAndMnemonic=Meldung
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=Drucken PrintingDialog.titleProgress.textAndMnemonic=Drucken
PrintingDialog.titleAbortingText=Drucken (Abbruch) PrintingDialog.titleAborting.textAndMnemonic=Drucken (Abbruch)
PrintingDialog.contentInitialText=Druckvorgang l\u00E4uft... PrintingDialog.contentInitial.textAndMnemonic=Druckvorgang l\u00E4uft...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=Seite {0} wurde gedruckt... PrintingDialog.contentProgress.textAndMnemonic=Seite {0} wurde gedruckt...
PrintingDialog.contentAbortingText=Druckvorgang wird abgebrochen... PrintingDialog.contentAborting.textAndMnemonic=Druckvorgang wird abgebrochen...
PrintingDialog.abortButtonText=Abbruch PrintingDialog.abortButton.textAndMnemonic=&Abbruch
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonToolTip.textAndMnemonic=Druckvorgang abbrechen
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=Druckvorgang abbrechen
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Minimieren InternalFrame.iconButtonToolTip=Minimieren
...@@ -183,42 +141,42 @@ InternalFrame.restoreButtonToolTip=Wiederherstellen ...@@ -183,42 +141,42 @@ InternalFrame.restoreButtonToolTip=Wiederherstellen
InternalFrame.closeButtonToolTip=Schlie\u00DFen InternalFrame.closeButtonToolTip=Schlie\u00DFen
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=Wiederherstellen InternalFrameTitlePane.restoreButton.textAndMnemonic=Wiederherstellen
InternalFrameTitlePane.moveButtonText=Verschieben InternalFrameTitlePane.moveButton.textAndMnemonic=Verschieben
InternalFrameTitlePane.sizeButtonText=Gr\u00F6\u00DFe InternalFrameTitlePane.sizeButton.textAndMnemonic=Gr\u00F6\u00DFe
InternalFrameTitlePane.minimizeButtonText=Minimieren InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimieren
InternalFrameTitlePane.maximizeButtonText=Maximieren InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximieren
InternalFrameTitlePane.closeButtonText=Schlie\u00DFen InternalFrameTitlePane.closeButton.textAndMnemonic=Schlie\u00DFen
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=Abfrage weiterleiten FormView.submitButton.textAndMnemonic=Abfrage weiterleiten
FormView.resetButtonText=Zur\u00FCcksetzen FormView.resetButton.textAndMnemonic=Zur\u00FCcksetzen
FormView.browseFileButtonText=Durchsuchen... FormView.browseFileButton.textAndMnemonic=Durchsuchen...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=Formatvorlagen\u00E4nderung AbstractDocument.styleChange.textAndMnemonic=Formatvorlagen\u00E4nderung
AbstractDocument.additionText=Hinzuf\u00FCgen AbstractDocument.addition.textAndMnemonic=Hinzuf\u00FCgen
AbstractDocument.deletionText=L\u00F6schen AbstractDocument.deletion.textAndMnemonic=L\u00F6schen
AbstractDocument.undoText=R\u00FCckg\u00E4ngig AbstractDocument.undo.textAndMnemonic=R\u00FCckg\u00E4ngig
AbstractDocument.redoText=Wiederherstellen AbstractDocument.redo.textAndMnemonic=Wiederherstellen
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=Klicken AbstractButton.click.textAndMnemonic=Klicken
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=R\u00FCckg\u00E4ngig AbstractUndoableEdit.undo.textAndMnemonic=R\u00FCckg\u00E4ngig
AbstractUndoableEdit.redoText=Wiederherstellen AbstractUndoableEdit.redo.textAndMnemonic=Wiederherstellen
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=Fortschritt... ProgressMonitor.progress.textAndMnemonic=Fortschritt...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=linke Schaltfl\u00E4che SplitPane.leftButton.textAndMnemonic=linke Schaltfl\u00E4che
SplitPane.rightButtonText=rechte Schaltfl\u00E4che SplitPane.rightButton.textAndMnemonic=rechte Schaltfl\u00E4che
# Used for Isindex # Used for Isindex
IsindexView.prompt=Dieser Index kann durchsucht werden. Geben Sie Schl\u00FCsselw\u00F6rter f\u00FCr die Suche ein: IsindexView.prompt=Dieser Index kann durchsucht werden. Geben Sie Schl\u00FCsselw\u00F6rter f\u00FCr die Suche ein:
......
...@@ -15,27 +15,12 @@ ...@@ -15,27 +15,12 @@
# 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
# in java/awt/KeyEvent.java. VK_G is defined as:
#
# public static final int VK_G = 0x47;
#
# 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
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
# for 'a' is 65, 'b' is 66...
#
# The xxDisplayedMnemonicIndex is used to indicate the index of the
# character that should be underlined in the String, with 0
# corresponding to the first character in the String.
# #
# One important thing to remember is that the mnemonic MUST exist in # One important thing to remember is that the mnemonic MUST exist in
# the String, if it does not exist you should add text that makes it # the String, if it does not exist you should add text that makes it
...@@ -45,30 +30,24 @@ ...@@ -45,30 +30,24 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=Archivo Gen\u00E9rico FileChooser.fileDescription.textAndMnemonic=Archivo Gen\u00E9rico
FileChooser.directoryDescriptionText=Directorio FileChooser.directoryDescription.textAndMnemonic=Directorio
FileChooser.newFolderErrorText=Error al crear una nueva carpeta FileChooser.newFolderError.textAndMnemonic=Error al crear una nueva carpeta
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=No se ha podido crear la carpeta FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=No se ha podido crear la carpeta
FileChooser.newFolderParentDoesntExistText=No se ha podido crear la carpeta.\n\nEl sistema no puede encontrar la ruta de acceso especificada. FileChooser.newFolderParentDoesntExist.textAndMnemonic=No se ha podido crear la carpeta.\n\nEl sistema no puede encontrar la ruta de acceso especificada.
FileChooser.renameErrorTitleText=Error al cambiar el nombre del archivo o carpeta FileChooser.renameErrorTitle.textAndMnemonic=Error al cambiar el nombre del archivo o carpeta
FileChooser.renameErrorText=No se puede cambiar el nombre de {0} FileChooser.renameError.textAndMnemonic=No se puede cambiar el nombre de {0}
FileChooser.renameErrorFileExistsText=No se puede cambiar el nombre de {0}: ya existe un archivo con el nombre especificado. Especifique otro nombre de archivo. FileChooser.renameErrorFileExists.textAndMnemonic=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 FileChooser.acceptAllFileFilter.textAndMnemonic=Todos los Archivos
FileChooser.cancelButtonText=Cancelar FileChooser.cancelButton.textAndMnemonic=&Cancelar
FileChooser.cancelButtonMnemonic=67 FileChooser.saveButton.textAndMnemonic=&Guardar
FileChooser.saveButtonText=Guardar FileChooser.openButton.textAndMnemonic=A&brir
FileChooser.saveButtonMnemonic=71 FileChooser.saveDialogTitle.textAndMnemonic=Guardar
FileChooser.openButtonText=Abrir FileChooser.openDialogTitle.textAndMnemonic=Abrir
FileChooser.openButtonMnemonic=66 FileChooser.updateButton.textAndMnemonic=Act&ualizar
FileChooser.saveDialogTitleText=Guardar FileChooser.helpButton.textAndMnemonic=A&yuda
FileChooser.openDialogTitleText=Abrir FileChooser.directoryOpenButton.textAndMnemonic=&Abrir
FileChooser.updateButtonText=Actualizar
FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=Ayuda
FileChooser.helpButtonMnemonic=89
FileChooser.directoryOpenButtonText=Abrir
FileChooser.directoryOpenButtonMnemonic=65
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=Nueva Carpeta.{0} ...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=Nueva Carpeta.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=Cuadro de di\u00E1logo para abortar el selector de archivos FileChooser.cancelButtonToolTip.textAndMnemonic=Cuadro de di\u00E1logo para abortar el selector de archivos
FileChooser.saveButtonToolTipText=Guardar archivo seleccionado FileChooser.saveButtonToolTip.textAndMnemonic=Guardar archivo seleccionado
FileChooser.openButtonToolTipText=Abrir archivo seleccionado FileChooser.openButtonToolTip.textAndMnemonic=Abrir archivo seleccionado
FileChooser.updateButtonToolTipText=Actualizar lista de directorios FileChooser.updateButtonToolTip.textAndMnemonic=Actualizar lista de directorios
FileChooser.helpButtonToolTipText=Ayuda del Selector de Archivos FileChooser.helpButtonToolTip.textAndMnemonic=Ayuda del Selector de Archivos
FileChooser.directoryOpenButtonToolTipText=Abrir directorio seleccionado FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Abrir directorio seleccionado
FileChooser.filesListAccessibleName=Files List FileChooser.filesListAccessibleName=Files List
FileChooser.filesDetailsAccessibleName=Files Details FileChooser.filesDetailsAccessibleName=Files Details
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=Presentaci\u00F3n Preliminar ColorChooser.preview.textAndMnemonic=Presentaci\u00F3n Preliminar
ColorChooser.okText=Aceptar ColorChooser.ok.textAndMnemonic=Aceptar
ColorChooser.cancelText=Cancelar ColorChooser.cancel.textAndMnemonic=Cancelar
ColorChooser.resetText=Restablecer ColorChooser.reset.textAndMnemonic=&Restablecer
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.sample.textAndMnemonic=Texto de Ejemplo Texto de Ejemplo
ColorChooser.resetMnemonic=82 ColorChooser.swatches.textAndMnemonic=Mue&stras
ColorChooser.sampleText=Texto de Ejemplo Texto de Ejemplo ColorChooser.swatchesRecent.textAndMnemonic=Reciente:
ColorChooser.swatchesNameText=Muestras ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.swatchesMnemonic=83 ColorChooser.hsvHue.textAndMnemonic=Matiz
ColorChooser.swatchesRecentText=Reciente: ColorChooser.hsvSaturation.textAndMnemonic=Saturaci\u00F3n
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX ColorChooser.hsvValue.textAndMnemonic=Valor
# constant, and an index into the text to render the mnemonic as. The ColorChooser.hsvTransparency.textAndMnemonic=Transparencia
# mnemonic is xxxMnemonic and the index of the character to underline is ColorChooser.hsl.textAndMnemonic=HS&L
# xxxDisplayedMnemonicIndex. ColorChooser.hslHue.textAndMnemonic=Matiz
ColorChooser.hsvNameText=HSV ColorChooser.hslSaturation.textAndMnemonic=Saturaci\u00F3n
ColorChooser.hsvMnemonic=72 ColorChooser.hslLightness.textAndMnemonic=Iluminaci\u00F3n
ColorChooser.hsvHueText=Matiz ColorChooser.hslTransparency.textAndMnemonic=Transparencia
ColorChooser.hsvSaturationText=Saturaci\u00F3n ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.hsvValueText=Valor ColorChooser.rgbRed.textAndMnemonic=Ro&jo
ColorChooser.hsvTransparencyText=Transparencia ColorChooser.rgbGreen.textAndMnemonic=&Verde
ColorChooser.hslNameText=HSL ColorChooser.rgbBlue.textAndMnemonic=A&zul
ColorChooser.hslMnemonic=76 ColorChooser.rgbAlpha.textAndMnemonic=Alfa
ColorChooser.hslHueText=Matiz ColorChooser.rgbHexCode.textAndMnemonic=C\u00F3digo de Color(&C)
ColorChooser.hslSaturationText=Saturaci\u00F3n ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.hslLightnessText=Iluminaci\u00F3n ColorChooser.cmykCyan.textAndMnemonic=Cian
ColorChooser.hslTransparencyText=Transparencia ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.rgbNameText=RGB ColorChooser.cmykYellow.textAndMnemonic=Amarillo
ColorChooser.rgbMnemonic=71 ColorChooser.cmykBlack.textAndMnemonic=Negro
ColorChooser.rgbRedText=Rojo ColorChooser.cmykAlpha.textAndMnemonic=Alfa
ColorChooser.rgbRedMnemonic=74
ColorChooser.rgbGreenText=Verde
ColorChooser.rgbGreenMnemonic=86
ColorChooser.rgbBlueText=Azul
ColorChooser.rgbBlueMnemonic=90
ColorChooser.rgbAlphaText=Alfa
ColorChooser.rgbHexCodeText=C\u00F3digo de Color
ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Cian
ColorChooser.cmykMagentaText=Magenta
ColorChooser.cmykYellowText=Amarillo
ColorChooser.cmykBlackText=Negro
ColorChooser.cmykAlphaText=Alfa
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=S\u00ED OptionPane.yesButton.textAndMnemonic=S\u00ED(&S)
OptionPane.yesButtonMnemonic=83 OptionPane.noButton.textAndMnemonic=&No
OptionPane.noButtonText=No OptionPane.okButton.textAndMnemonic=Aceptar(&O)
OptionPane.noButtonMnemonic=78 OptionPane.cancelButton.textAndMnemonic=&Cancelar
OptionPane.okButtonText=Aceptar OptionPane.title.textAndMnemonic=Seleccionar una Opci\u00F3n
OptionPane.okButtonMnemonic=O
OptionPane.cancelButtonText=Cancelar
OptionPane.cancelButtonMnemonic=C
OptionPane.titleText=Seleccionar una Opci\u00F3n
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=Entrada OptionPane.inputDialog.titleAndMnemonic=Entrada
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=Mensaje OptionPane.messageDialog.titleAndMnemonic=Mensaje
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=Impresi\u00F3n PrintingDialog.titleProgress.textAndMnemonic=Impresi\u00F3n
PrintingDialog.titleAbortingText=Impresi\u00F3n (Abortando) PrintingDialog.titleAborting.textAndMnemonic=Impresi\u00F3n (Abortando)
PrintingDialog.contentInitialText=Impresi\u00F3n en curso... PrintingDialog.contentInitial.textAndMnemonic=Impresi\u00F3n en curso...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=P\u00E1gina impresa {0}... PrintingDialog.contentProgress.textAndMnemonic=P\u00E1gina impresa {0}...
PrintingDialog.contentAbortingText=Abortando la impresi\u00F3n... PrintingDialog.contentAborting.textAndMnemonic=Abortando la impresi\u00F3n...
PrintingDialog.abortButtonText=Abortar PrintingDialog.abortButton.textAndMnemonic=&Abortar
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonToolTip.textAndMnemonic=Abortar Impresi\u00F3n
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=Abortar Impresi\u00F3n
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Minimizar InternalFrame.iconButtonToolTip=Minimizar
...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=Restaurar ...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=Restaurar
InternalFrame.closeButtonToolTip=Cerrar InternalFrame.closeButtonToolTip=Cerrar
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=Restaurar InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurar
InternalFrameTitlePane.moveButtonText=Mover InternalFrameTitlePane.moveButton.textAndMnemonic=Mover
InternalFrameTitlePane.sizeButtonText=Tama\u00F1o InternalFrameTitlePane.sizeButton.textAndMnemonic=Tama\u00F1o
InternalFrameTitlePane.minimizeButtonText=Minimizar InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimizar
InternalFrameTitlePane.maximizeButtonText=Maximizar InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximizar
InternalFrameTitlePane.closeButtonText=Cerrar InternalFrameTitlePane.closeButton.textAndMnemonic=Cerrar
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=Enviar Consulta FormView.submitButton.textAndMnemonic=Enviar Consulta
FormView.resetButtonText=Restablecer FormView.resetButton.textAndMnemonic=Restablecer
FormView.browseFileButtonText=Examinar... FormView.browseFileButton.textAndMnemonic=Examinar...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=cambio de estilo AbstractDocument.styleChange.textAndMnemonic=cambio de estilo
AbstractDocument.additionText=agregaci\u00F3n AbstractDocument.addition.textAndMnemonic=agregaci\u00F3n
AbstractDocument.deletionText=supresi\u00F3n AbstractDocument.deletion.textAndMnemonic=supresi\u00F3n
AbstractDocument.undoText=Deshacer AbstractDocument.undo.textAndMnemonic=Deshacer
AbstractDocument.redoText=Rehacer AbstractDocument.redo.textAndMnemonic=Rehacer
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=hacer clic AbstractButton.click.textAndMnemonic=hacer clic
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=Deshacer AbstractUndoableEdit.undo.textAndMnemonic=Deshacer
AbstractUndoableEdit.redoText=Rehacer AbstractUndoableEdit.redo.textAndMnemonic=Rehacer
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=Progreso... ProgressMonitor.progress.textAndMnemonic=Progreso...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=bot\u00F3n izquierdo SplitPane.leftButton.textAndMnemonic=bot\u00F3n izquierdo
SplitPane.rightButtonText=bot\u00F3n derecho SplitPane.rightButton.textAndMnemonic=bot\u00F3n derecho
# Used for Isindex # Used for Isindex
IsindexView.prompt=En este \u00EDndice se pueden efectuar b\u00FAsquedas. Escriba las palabras clave de b\u00FAsqueda: IsindexView.prompt=En este \u00EDndice se pueden efectuar b\u00FAsquedas. Escriba las palabras clave de b\u00FAsqueda:
......
...@@ -15,27 +15,12 @@ ...@@ -15,27 +15,12 @@
# 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
# in java/awt/KeyEvent.java. VK_G is defined as:
#
# public static final int VK_G = 0x47;
#
# 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
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
# for 'a' is 65, 'b' is 66...
#
# The xxDisplayedMnemonicIndex is used to indicate the index of the
# character that should be underlined in the String, with 0
# corresponding to the first character in the String.
# #
# One important thing to remember is that the mnemonic MUST exist in # One important thing to remember is that the mnemonic MUST exist in
# the String, if it does not exist you should add text that makes it # the String, if it does not exist you should add text that makes it
...@@ -45,30 +30,24 @@ ...@@ -45,30 +30,24 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=Fichier g\u00E9n\u00E9rique FileChooser.fileDescription.textAndMnemonic=Fichier g\u00E9n\u00E9rique
FileChooser.directoryDescriptionText=R\u00E9pertoire FileChooser.directoryDescription.textAndMnemonic=R\u00E9pertoire
FileChooser.newFolderErrorText=Erreur lors de la cr\u00E9ation du dossier FileChooser.newFolderError.textAndMnemonic=Erreur lors de la cr\u00E9ation du dossier
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=Impossible de cr\u00E9er le dossier FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Impossible de cr\u00E9er le dossier
FileChooser.newFolderParentDoesntExistText=Impossible de cr\u00E9er le dossier.\n\nLe syst\u00E8me ne parvient pas \u00E0 trouver le chemin indiqu\u00E9. FileChooser.newFolderParentDoesntExist.textAndMnemonic=Impossible de cr\u00E9er le dossier.\n\nLe syst\u00E8me ne parvient pas \u00E0 trouver le chemin indiqu\u00E9.
FileChooser.renameErrorTitleText=Erreur lors du changement de nom du fichier ou du dossier FileChooser.renameErrorTitle.textAndMnemonic=Erreur lors du changement de nom du fichier ou du dossier
FileChooser.renameErrorText=Impossible de renommer {0} FileChooser.renameError.textAndMnemonic=Impossible de renommer {0}
FileChooser.renameErrorFileExistsText=Impossible de renommer {0} : il existe d\u00E9j\u00E0 un fichier portant le nom indiqu\u00E9. Indiquez-en un autre. FileChooser.renameErrorFileExists.textAndMnemonic=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 FileChooser.acceptAllFileFilter.textAndMnemonic=Tous les fichiers
FileChooser.cancelButtonText=Annuler FileChooser.cancelButton.textAndMnemonic=&Annuler
FileChooser.cancelButtonMnemonic=65 FileChooser.saveButton.textAndMnemonic=Enregi&strer
FileChooser.saveButtonText=Enregistrer FileChooser.openButton.textAndMnemonic=&Ouvrir
FileChooser.saveButtonMnemonic=83 FileChooser.saveDialogTitle.textAndMnemonic=Enregistrer
FileChooser.openButtonText=Ouvrir FileChooser.openDialogTitle.textAndMnemonic=Ouvrir
FileChooser.openButtonMnemonic=79 FileChooser.updateButton.textAndMnemonic=Mettre \u00E0 jour(&U)
FileChooser.saveDialogTitleText=Enregistrer FileChooser.helpButton.textAndMnemonic=&Aide
FileChooser.openDialogTitleText=Ouvrir FileChooser.directoryOpenButton.textAndMnemonic=&Ouvrir
FileChooser.updateButtonText=Mettre \u00E0 jour
FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=Aide
FileChooser.helpButtonMnemonic=65
FileChooser.directoryOpenButtonText=Ouvrir
FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=NewFolder.{0} ...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers FileChooser.cancelButtonToolTip.textAndMnemonic=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers
FileChooser.saveButtonToolTipText=Enregistre le fichier s\u00E9lectionn\u00E9 FileChooser.saveButtonToolTip.textAndMnemonic=Enregistre le fichier s\u00E9lectionn\u00E9
FileChooser.openButtonToolTipText=Ouvre le fichier s\u00E9lectionn\u00E9 FileChooser.openButtonToolTip.textAndMnemonic=Ouvre le fichier s\u00E9lectionn\u00E9
FileChooser.updateButtonToolTipText=Met \u00E0 jour la liste des r\u00E9pertoires FileChooser.updateButtonToolTip.textAndMnemonic=Met \u00E0 jour la liste des r\u00E9pertoires
FileChooser.helpButtonToolTipText=Aide du s\u00E9lecteur de fichiers FileChooser.helpButtonToolTip.textAndMnemonic=Aide du s\u00E9lecteur de fichiers
FileChooser.directoryOpenButtonToolTipText=Ouvre le r\u00E9pertoire s\u00E9lectionn\u00E9 FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Ouvre le r\u00E9pertoire s\u00E9lectionn\u00E9
FileChooser.filesListAccessibleName=Files List FileChooser.filesListAccessibleName=Files List
FileChooser.filesDetailsAccessibleName=Files Details FileChooser.filesDetailsAccessibleName=Files Details
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=Aper\u00E7u ColorChooser.preview.textAndMnemonic=Aper\u00E7u
ColorChooser.okText=OK ColorChooser.ok.textAndMnemonic=OK
ColorChooser.cancelText=Annuler ColorChooser.cancel.textAndMnemonic=Annuler
ColorChooser.resetText=R\u00E9initialiser ColorChooser.reset.textAndMnemonic=R\u00E9initialiser(&R)
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.sample.textAndMnemonic=Echantillon de texte Echantillon de texte
ColorChooser.resetMnemonic=82 ColorChooser.swatches.textAndMnemonic=&Echantillons
ColorChooser.sampleText=Echantillon de texte Echantillon de texte ColorChooser.swatchesRecent.textAndMnemonic=Dernier :
ColorChooser.swatchesNameText=Echantillons ColorChooser.hsv.textAndMnemonic=&TSV
ColorChooser.swatchesMnemonic=69 ColorChooser.hsvHue.textAndMnemonic=Teinte
ColorChooser.swatchesRecentText=Dernier : ColorChooser.hsvSaturation.textAndMnemonic=Saturation
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX ColorChooser.hsvValue.textAndMnemonic=Valeur
# constant, and an index into the text to render the mnemonic as. The ColorChooser.hsvTransparency.textAndMnemonic=Transparence
# mnemonic is xxxMnemonic and the index of the character to underline is ColorChooser.hsl.textAndMnemonic=TS&L
# xxxDisplayedMnemonicIndex. ColorChooser.hslHue.textAndMnemonic=Teinte
ColorChooser.hsvNameText=TSV ColorChooser.hslSaturation.textAndMnemonic=Saturation
ColorChooser.hsvMnemonic=84 ColorChooser.hslLightness.textAndMnemonic=Lumi\u00E8re
ColorChooser.hsvHueText=Teinte ColorChooser.hslTransparency.textAndMnemonic=Transparence
ColorChooser.hsvSaturationText=Saturation ColorChooser.rgb.textAndMnemonic=R&VB
ColorChooser.hsvValueText=Valeur ColorChooser.rgbRed.textAndMnemonic=R&ouge
ColorChooser.hsvTransparencyText=Transparence ColorChooser.rgbGreen.textAndMnemonic=&Vert
ColorChooser.hslNameText=TSL ColorChooser.rgbBlue.textAndMnemonic=&Bleu
ColorChooser.hslMnemonic=76 ColorChooser.rgbAlpha.textAndMnemonic=Alpha
ColorChooser.hslHueText=Teinte ColorChooser.rgbHexCode.textAndMnemonic=&Code couleur
ColorChooser.hslSaturationText=Saturation ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.hslLightnessText=Lumi\u00E8re ColorChooser.cmykCyan.textAndMnemonic=Cyan
ColorChooser.hslTransparencyText=Transparence ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.rgbNameText=RVB ColorChooser.cmykYellow.textAndMnemonic=Jaune
ColorChooser.rgbMnemonic=86 ColorChooser.cmykBlack.textAndMnemonic=Noir
ColorChooser.rgbRedText=Rouge ColorChooser.cmykAlpha.textAndMnemonic=Alpha
ColorChooser.rgbRedMnemonic=79
ColorChooser.rgbGreenText=Vert
ColorChooser.rgbGreenMnemonic=86
ColorChooser.rgbBlueText=Bleu
ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alpha
ColorChooser.rgbHexCodeText=Code couleur
ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Cyan
ColorChooser.cmykMagentaText=Magenta
ColorChooser.cmykYellowText=Jaune
ColorChooser.cmykBlackText=Noir
ColorChooser.cmykAlphaText=Alpha
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=Oui OptionPane.yesButton.textAndMnemonic=&Oui
OptionPane.yesButtonMnemonic=79 OptionPane.noButton.textAndMnemonic=&Non
OptionPane.noButtonText=Non OptionPane.okButton.textAndMnemonic=&OK
OptionPane.noButtonMnemonic=78 OptionPane.cancelButton.textAndMnemonic=&Annuler
OptionPane.okButtonText=OK OptionPane.title.textAndMnemonic=S\u00E9lectionner une option
OptionPane.okButtonMnemonic=O
OptionPane.cancelButtonText=Annuler
OptionPane.cancelButtonMnemonic=A
OptionPane.titleText=S\u00E9lectionner une option
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=Entr\u00E9e OptionPane.inputDialog.titleAndMnemonic=Entr\u00E9e
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=Message OptionPane.messageDialog.titleAndMnemonic=Message
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=Impression PrintingDialog.titleProgress.textAndMnemonic=Impression
PrintingDialog.titleAbortingText=Impression (abandon) PrintingDialog.titleAborting.textAndMnemonic=Impression (abandon)
PrintingDialog.contentInitialText=Impression en cours... PrintingDialog.contentInitial.textAndMnemonic=Impression en cours...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=Page {0} imprim\u00E9e... PrintingDialog.contentProgress.textAndMnemonic=Page {0} imprim\u00E9e...
PrintingDialog.contentAbortingText=Abandon de l'impression... PrintingDialog.contentAborting.textAndMnemonic=Abandon de l'impression...
PrintingDialog.abortButtonText=Abandonner PrintingDialog.abortButton.textAndMnemonic=&Abandonner
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonToolTip.textAndMnemonic=Abandonner l'impression
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=Abandonner l'impression
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=R\u00E9duire InternalFrame.iconButtonToolTip=R\u00E9duire
...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=Restaurer ...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=Restaurer
InternalFrame.closeButtonToolTip=Fermer InternalFrame.closeButtonToolTip=Fermer
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=Restaurer InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurer
InternalFrameTitlePane.moveButtonText=D\u00E9placer InternalFrameTitlePane.moveButton.textAndMnemonic=D\u00E9placer
InternalFrameTitlePane.sizeButtonText=Taille InternalFrameTitlePane.sizeButton.textAndMnemonic=Taille
InternalFrameTitlePane.minimizeButtonText=R\u00E9duire InternalFrameTitlePane.minimizeButton.textAndMnemonic=R\u00E9duire
InternalFrameTitlePane.maximizeButtonText=Agrandir InternalFrameTitlePane.maximizeButton.textAndMnemonic=Agrandir
InternalFrameTitlePane.closeButtonText=Fermer InternalFrameTitlePane.closeButton.textAndMnemonic=Fermer
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=Soumettre la requ\u00EAte FormView.submitButton.textAndMnemonic=Soumettre la requ\u00EAte
FormView.resetButtonText=R\u00E9initialiser FormView.resetButton.textAndMnemonic=R\u00E9initialiser
FormView.browseFileButtonText=Parcourir... FormView.browseFileButton.textAndMnemonic=Parcourir...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=modification de style AbstractDocument.styleChange.textAndMnemonic=modification de style
AbstractDocument.additionText=ajout AbstractDocument.addition.textAndMnemonic=ajout
AbstractDocument.deletionText=suppression AbstractDocument.deletion.textAndMnemonic=suppression
AbstractDocument.undoText=Annuler AbstractDocument.undo.textAndMnemonic=Annuler
AbstractDocument.redoText=R\u00E9tablir AbstractDocument.redo.textAndMnemonic=R\u00E9tablir
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=cliquer AbstractButton.click.textAndMnemonic=cliquer
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=Annuler AbstractUndoableEdit.undo.textAndMnemonic=Annuler
AbstractUndoableEdit.redoText=R\u00E9tablir AbstractUndoableEdit.redo.textAndMnemonic=R\u00E9tablir
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=Progression... ProgressMonitor.progress.textAndMnemonic=Progression...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=bouton gauche SplitPane.leftButton.textAndMnemonic=bouton gauche
SplitPane.rightButtonText=bouton droit SplitPane.rightButton.textAndMnemonic=bouton droit
# Used for Isindex # Used for Isindex
IsindexView.prompt=Ceci est un index de recherche. Tapez des mots-cl\u00E9s pour la recherche : IsindexView.prompt=Ceci est un index de recherche. Tapez des mots-cl\u00E9s pour la recherche :
......
...@@ -15,27 +15,12 @@ ...@@ -15,27 +15,12 @@
# 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
# in java/awt/KeyEvent.java. VK_G is defined as:
#
# public static final int VK_G = 0x47;
#
# 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
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
# for 'a' is 65, 'b' is 66...
#
# The xxDisplayedMnemonicIndex is used to indicate the index of the
# character that should be underlined in the String, with 0
# corresponding to the first character in the String.
# #
# One important thing to remember is that the mnemonic MUST exist in # One important thing to remember is that the mnemonic MUST exist in
# the String, if it does not exist you should add text that makes it # the String, if it does not exist you should add text that makes it
...@@ -45,30 +30,24 @@ ...@@ -45,30 +30,24 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=File generico FileChooser.fileDescription.textAndMnemonic=File generico
FileChooser.directoryDescriptionText=Directory FileChooser.directoryDescription.textAndMnemonic=Directory
FileChooser.newFolderErrorText=Errore durante la creazione della nuova cartella FileChooser.newFolderError.textAndMnemonic=Errore durante la creazione della nuova cartella
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=Impossibile creare la cartella FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Impossibile creare la cartella
FileChooser.newFolderParentDoesntExistText=Impossibile creare la cartella.\n\nIl sistema non \u00E8 in grado di trovare il percorso specificato. FileChooser.newFolderParentDoesntExist.textAndMnemonic=Impossibile creare la cartella.\n\nIl sistema non \u00E8 in grado di trovare il percorso specificato.
FileChooser.renameErrorTitleText=Errore durante la ridenominazione del file o della cartella FileChooser.renameErrorTitle.textAndMnemonic=Errore durante la ridenominazione del file o della cartella
FileChooser.renameErrorText=Impossibile rinominare {0} FileChooser.renameError.textAndMnemonic=Impossibile rinominare {0}
FileChooser.renameErrorFileExistsText=Impossibile rinominare {0}: esiste gi\u00E0 un file con il nome specificato. Specificare un altro nome. FileChooser.renameErrorFileExists.textAndMnemonic=Impossibile rinominare {0}: esiste gi\u00E0 un file con il nome specificato. Specificare un altro nome.
FileChooser.acceptAllFileFilterText=Tutti i file FileChooser.acceptAllFileFilter.textAndMnemonic=Tutti i file
FileChooser.cancelButtonText=Annulla FileChooser.cancelButton.textAndMnemonic=&Annulla
FileChooser.cancelButtonMnemonic=65 FileChooser.saveButton.textAndMnemonic=Sal&va
FileChooser.saveButtonText=Salva FileChooser.openButton.textAndMnemonic=A&pri
FileChooser.saveButtonMnemonic=86 FileChooser.saveDialogTitle.textAndMnemonic=Salva
FileChooser.openButtonText=Apri FileChooser.openDialogTitle.textAndMnemonic=Apri
FileChooser.openButtonMnemonic=80 FileChooser.updateButton.textAndMnemonic=A&ggiorna
FileChooser.saveDialogTitleText=Salva FileChooser.helpButton.textAndMnemonic=?(&H)
FileChooser.openDialogTitleText=Apri FileChooser.directoryOpenButton.textAndMnemonic=&Apri
FileChooser.updateButtonText=Aggiorna
FileChooser.updateButtonMnemonic=71
FileChooser.helpButtonText=?(H)
FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=Apri
FileChooser.directoryOpenButtonMnemonic=65
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=NewFolder.{0} ...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=Chiude la finestra di dialogo di selezione file FileChooser.cancelButtonToolTip.textAndMnemonic=Chiude la finestra di dialogo di selezione file
FileChooser.saveButtonToolTipText=Salva il file selezionato FileChooser.saveButtonToolTip.textAndMnemonic=Salva il file selezionato
FileChooser.openButtonToolTipText=Apre il file selezionato FileChooser.openButtonToolTip.textAndMnemonic=Apre il file selezionato
FileChooser.updateButtonToolTipText=Aggiorna la lista directory FileChooser.updateButtonToolTip.textAndMnemonic=Aggiorna la lista directory
FileChooser.helpButtonToolTipText=Guida FileChooser FileChooser.helpButtonToolTip.textAndMnemonic=Guida FileChooser
FileChooser.directoryOpenButtonToolTipText=Apre la directory selezionata FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Apre la directory selezionata
FileChooser.filesListAccessibleName=Files List FileChooser.filesListAccessibleName=Files List
FileChooser.filesDetailsAccessibleName=Files Details FileChooser.filesDetailsAccessibleName=Files Details
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=Anteprima ColorChooser.preview.textAndMnemonic=Anteprima
ColorChooser.okText=OK ColorChooser.ok.textAndMnemonic=OK
ColorChooser.cancelText=Annulla ColorChooser.cancel.textAndMnemonic=Annulla
ColorChooser.resetText=Reimposta ColorChooser.reset.textAndMnemonic=&Reimposta
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.sample.textAndMnemonic=Testo di prova Testo di prova
ColorChooser.resetMnemonic=82 ColorChooser.swatches.textAndMnemonic=Colori cam&pione
ColorChooser.sampleText=Testo di prova Testo di prova ColorChooser.swatchesRecent.textAndMnemonic=Recenti:
ColorChooser.swatchesNameText=Colori campione ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.swatchesMnemonic=80 ColorChooser.hsvHue.textAndMnemonic=Tonalit\u00E0
ColorChooser.swatchesRecentText=Recenti: ColorChooser.hsvSaturation.textAndMnemonic=Saturazione
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX ColorChooser.hsvValue.textAndMnemonic=Valore
# constant, and an index into the text to render the mnemonic as. The ColorChooser.hsvTransparency.textAndMnemonic=Trasparenza
# mnemonic is xxxMnemonic and the index of the character to underline is ColorChooser.hsl.textAndMnemonic=HS&L
# xxxDisplayedMnemonicIndex. ColorChooser.hslHue.textAndMnemonic=Tonalit\u00E0
ColorChooser.hsvNameText=HSV ColorChooser.hslSaturation.textAndMnemonic=Saturazione
ColorChooser.hsvMnemonic=72 ColorChooser.hslLightness.textAndMnemonic=Luminosit\u00E0
ColorChooser.hsvHueText=Tonalit\u00E0 ColorChooser.hslTransparency.textAndMnemonic=Trasparenza
ColorChooser.hsvSaturationText=Saturazione ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.hsvValueText=Valore ColorChooser.rgbRed.textAndMnemonic=Ro&sso
ColorChooser.hsvTransparencyText=Trasparenza ColorChooser.rgbGreen.textAndMnemonic=Ver&de
ColorChooser.hslNameText=HSL ColorChooser.rgbBlue.textAndMnemonic=&Blu
ColorChooser.hslMnemonic=76 ColorChooser.rgbAlpha.textAndMnemonic=Alfa
ColorChooser.hslHueText=Tonalit\u00E0 ColorChooser.rgbHexCode.textAndMnemonic=&Codice colori
ColorChooser.hslSaturationText=Saturazione ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.hslLightnessText=Luminosit\u00E0 ColorChooser.cmykCyan.textAndMnemonic=Ciano
ColorChooser.hslTransparencyText=Trasparenza ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.rgbNameText=RGB ColorChooser.cmykYellow.textAndMnemonic=Giallo
ColorChooser.rgbMnemonic=71 ColorChooser.cmykBlack.textAndMnemonic=Nero
ColorChooser.rgbRedText=Rosso ColorChooser.cmykAlpha.textAndMnemonic=Alfa
ColorChooser.rgbRedMnemonic=83
ColorChooser.rgbGreenText=Verde
ColorChooser.rgbGreenMnemonic=68
ColorChooser.rgbBlueText=Blu
ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alfa
ColorChooser.rgbHexCodeText=Codice colori
ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Ciano
ColorChooser.cmykMagentaText=Magenta
ColorChooser.cmykYellowText=Giallo
ColorChooser.cmykBlackText=Nero
ColorChooser.cmykAlphaText=Alfa
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=S\u00EC OptionPane.yesButton.textAndMnemonic=S\u00EC(&S)
OptionPane.yesButtonMnemonic=83 OptionPane.noButton.textAndMnemonic=&No
OptionPane.noButtonText=No OptionPane.okButton.textAndMnemonic=&OK
OptionPane.noButtonMnemonic=78 OptionPane.cancelButton.textAndMnemonic=&Annulla
OptionPane.okButtonText=OK OptionPane.title.textAndMnemonic=Selezionare una opzione
OptionPane.okButtonMnemonic=O
OptionPane.cancelButtonText=Annulla
OptionPane.cancelButtonMnemonic=A
OptionPane.titleText=Selezionare una opzione
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=Input OptionPane.inputDialog.titleAndMnemonic=Input
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=Messaggio OptionPane.messageDialog.titleAndMnemonic=Messaggio
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=Stampa in corso PrintingDialog.titleProgress.textAndMnemonic=Stampa in corso
PrintingDialog.titleAbortingText=Stampa in corso (operazione interrotta) PrintingDialog.titleAborting.textAndMnemonic=Stampa in corso (operazione interrotta)
PrintingDialog.contentInitialText=Stampa in corso... PrintingDialog.contentInitial.textAndMnemonic=Stampa in corso...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=Pagina stampata {0}... PrintingDialog.contentProgress.textAndMnemonic=Pagina stampata {0}...
PrintingDialog.contentAbortingText=Interruzione della stampa... PrintingDialog.contentAborting.textAndMnemonic=Interruzione della stampa...
PrintingDialog.abortButtonText=Interrompi PrintingDialog.abortButton.textAndMnemonic=I&nterrompi
PrintingDialog.abortButtonMnemonic=78 PrintingDialog.abortButtonToolTip.textAndMnemonic=Interrompi la stampa
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=Interrompi la stampa
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Riduci a icona InternalFrame.iconButtonToolTip=Riduci a icona
...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=Ripristina ...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=Ripristina
InternalFrame.closeButtonToolTip=Chiudi InternalFrame.closeButtonToolTip=Chiudi
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=Ripristina InternalFrameTitlePane.restoreButton.textAndMnemonic=Ripristina
InternalFrameTitlePane.moveButtonText=Sposta InternalFrameTitlePane.moveButton.textAndMnemonic=Sposta
InternalFrameTitlePane.sizeButtonText=Dimensioni InternalFrameTitlePane.sizeButton.textAndMnemonic=Dimensioni
InternalFrameTitlePane.minimizeButtonText=Riduci a icona InternalFrameTitlePane.minimizeButton.textAndMnemonic=Riduci a icona
InternalFrameTitlePane.maximizeButtonText=Ingrandisci InternalFrameTitlePane.maximizeButton.textAndMnemonic=Ingrandisci
InternalFrameTitlePane.closeButtonText=Chiudi InternalFrameTitlePane.closeButton.textAndMnemonic=Chiudi
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=Sottometti query FormView.submitButton.textAndMnemonic=Sottometti query
FormView.resetButtonText=Reimposta FormView.resetButton.textAndMnemonic=Reimposta
FormView.browseFileButtonText=Sfoglia... FormView.browseFileButton.textAndMnemonic=Sfoglia...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=modifica di stile AbstractDocument.styleChange.textAndMnemonic=modifica di stile
AbstractDocument.additionText=aggiunta AbstractDocument.addition.textAndMnemonic=aggiunta
AbstractDocument.deletionText=eliminazione AbstractDocument.deletion.textAndMnemonic=eliminazione
AbstractDocument.undoText=Annulla AbstractDocument.undo.textAndMnemonic=Annulla
AbstractDocument.redoText=Ripeti AbstractDocument.redo.textAndMnemonic=Ripeti
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=fare clic AbstractButton.click.textAndMnemonic=fare clic
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=Annulla AbstractUndoableEdit.undo.textAndMnemonic=Annulla
AbstractUndoableEdit.redoText=Ripeti AbstractUndoableEdit.redo.textAndMnemonic=Ripeti
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=Avanzamento... ProgressMonitor.progress.textAndMnemonic=Avanzamento...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=tasto sinistro SplitPane.leftButton.textAndMnemonic=tasto sinistro
SplitPane.rightButtonText=tasto destro SplitPane.rightButton.textAndMnemonic=tasto destro
# Used for Isindex # Used for Isindex
IsindexView.prompt=Questo \u00E8 un indice di ricerca. Immettere le parole chiave: IsindexView.prompt=Questo \u00E8 un indice di ricerca. Immettere le parole chiave:
......
...@@ -15,27 +15,12 @@ ...@@ -15,27 +15,12 @@
# 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
# in java/awt/KeyEvent.java. VK_G is defined as:
#
# public static final int VK_G = 0x47;
#
# 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
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
# for 'a' is 65, 'b' is 66...
#
# The xxDisplayedMnemonicIndex is used to indicate the index of the
# character that should be underlined in the String, with 0
# corresponding to the first character in the String.
# #
# One important thing to remember is that the mnemonic MUST exist in # One important thing to remember is that the mnemonic MUST exist in
# the String, if it does not exist you should add text that makes it # the String, if it does not exist you should add text that makes it
...@@ -45,30 +30,24 @@ ...@@ -45,30 +30,24 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=\u6C4E\u7528\u30D5\u30A1\u30A4\u30EB FileChooser.fileDescription.textAndMnemonic=\u6C4E\u7528\u30D5\u30A1\u30A4\u30EB
FileChooser.directoryDescriptionText=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA FileChooser.directoryDescription.textAndMnemonic=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA
FileChooser.newFolderErrorText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210\u30A8\u30E9\u30FC FileChooser.newFolderError.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210\u30A8\u30E9\u30FC
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=\u30D5\u30A9\u30EB\u30C0\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093 FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093
FileChooser.newFolderParentDoesntExistText=\u30D5\u30A9\u30EB\u30C0\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093\u3002\n\n\u6307\u5B9A\u3057\u305F\u30D1\u30B9\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3002 FileChooser.newFolderParentDoesntExist.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093\u3002\n\n\u6307\u5B9A\u3057\u305F\u30D1\u30B9\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3002
FileChooser.renameErrorTitleText=\u30D5\u30A1\u30A4\u30EB\u307E\u305F\u306F\u30D5\u30A9\u30EB\u30C0\u306E\u540D\u524D\u5909\u66F4\u30A8\u30E9\u30FC FileChooser.renameErrorTitle.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u307E\u305F\u306F\u30D5\u30A9\u30EB\u30C0\u306E\u540D\u524D\u5909\u66F4\u30A8\u30E9\u30FC
FileChooser.renameErrorText={0}\u306E\u540D\u524D\u3092\u5909\u66F4\u3067\u304D\u307E\u305B\u3093 FileChooser.renameError.textAndMnemonic={0}\u306E\u540D\u524D\u3092\u5909\u66F4\u3067\u304D\u307E\u305B\u3093
FileChooser.renameErrorFileExistsText={0}\u306E\u540D\u524D\u3092\u5909\u66F4\u3067\u304D\u307E\u305B\u3093: \u6307\u5B9A\u3057\u305F\u540D\u524D\u306E\u30D5\u30A1\u30A4\u30EB\u306F\u3059\u3067\u306B\u5B58\u5728\u3057\u307E\u3059\u3002\u5225\u306E\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u6307\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044\u3002 FileChooser.renameErrorFileExists.textAndMnemonic={0}\u306E\u540D\u524D\u3092\u5909\u66F4\u3067\u304D\u307E\u305B\u3093: \u6307\u5B9A\u3057\u305F\u540D\u524D\u306E\u30D5\u30A1\u30A4\u30EB\u306F\u3059\u3067\u306B\u5B58\u5728\u3057\u307E\u3059\u3002\u5225\u306E\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u6307\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044\u3002
FileChooser.acceptAllFileFilterText=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB FileChooser.acceptAllFileFilter.textAndMnemonic=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB
FileChooser.cancelButtonText=\u53D6\u6D88 FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
FileChooser.cancelButtonMnemonic=67 FileChooser.saveButton.textAndMnemonic=\u4FDD\u5B58(&S)
FileChooser.saveButtonText=\u4FDD\u5B58 FileChooser.openButton.textAndMnemonic=\u958B\u304F(&O)
FileChooser.saveButtonMnemonic=83 FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
FileChooser.openButtonText=\u958B\u304F FileChooser.openDialogTitle.textAndMnemonic=\u958B\u304F
FileChooser.openButtonMnemonic=79 FileChooser.updateButton.textAndMnemonic=\u66F4\u65B0(&U)
FileChooser.saveDialogTitleText=\u4FDD\u5B58 FileChooser.helpButton.textAndMnemonic=\u30D8\u30EB\u30D7(&H)
FileChooser.openDialogTitleText=\u958B\u304F FileChooser.directoryOpenButton.textAndMnemonic=\u958B\u304F(&O)
FileChooser.updateButtonText=\u66F4\u65B0(U)
FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=\u30D8\u30EB\u30D7(H)
FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=\u958B\u304F(O)
FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0.{0} ...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=\u30D5\u30A1\u30A4\u30EB\u30FB\u30C1\u30E5\u30FC\u30B6\u30FB\u30C0\u30A4\u30A2\u30ED\u30B0\u3092\u7D42\u4E86\u3057\u307E\u3059 FileChooser.cancelButtonToolTip.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u30FB\u30C1\u30E5\u30FC\u30B6\u30FB\u30C0\u30A4\u30A2\u30ED\u30B0\u3092\u7D42\u4E86\u3057\u307E\u3059
FileChooser.saveButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059 FileChooser.saveButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059
FileChooser.openButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059 FileChooser.openButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059
FileChooser.updateButtonToolTipText=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306E\u30EA\u30B9\u30C8\u3092\u66F4\u65B0\u3057\u307E\u3059 FileChooser.updateButtonToolTip.textAndMnemonic=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306E\u30EA\u30B9\u30C8\u3092\u66F4\u65B0\u3057\u307E\u3059
FileChooser.helpButtonToolTipText=FileChooser\u306E\u30D8\u30EB\u30D7\u3067\u3059 FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser\u306E\u30D8\u30EB\u30D7\u3067\u3059
FileChooser.directoryOpenButtonToolTipText=\u9078\u629E\u3057\u305F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u958B\u304D\u307E\u3059 FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u958B\u304D\u307E\u3059
FileChooser.filesListAccessibleName=Files List FileChooser.filesListAccessibleName=Files List
FileChooser.filesDetailsAccessibleName=Files Details FileChooser.filesDetailsAccessibleName=Files Details
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=\u30D7\u30EC\u30D3\u30E5\u30FC ColorChooser.preview.textAndMnemonic=\u30D7\u30EC\u30D3\u30E5\u30FC
ColorChooser.okText=OK ColorChooser.ok.textAndMnemonic=OK
ColorChooser.cancelText=\u53D6\u6D88 ColorChooser.cancel.textAndMnemonic=\u53D6\u6D88
ColorChooser.resetText=\u30EA\u30BB\u30C3\u30C8(R) ColorChooser.reset.textAndMnemonic=\u30EA\u30BB\u30C3\u30C8(&R)
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.sample.textAndMnemonic=\u30B5\u30F3\u30D7\u30EB\u30FB\u30C6\u30AD\u30B9\u30C8 \u30B5\u30F3\u30D7\u30EB\u30FB\u30C6\u30AD\u30B9\u30C8
ColorChooser.resetMnemonic=82 ColorChooser.swatches.textAndMnemonic=\u30B5\u30F3\u30D7\u30EB(&S)
ColorChooser.sampleText=\u30B5\u30F3\u30D7\u30EB\u30FB\u30C6\u30AD\u30B9\u30C8 \u30B5\u30F3\u30D7\u30EB\u30FB\u30C6\u30AD\u30B9\u30C8 ColorChooser.swatchesRecent.textAndMnemonic=\u6700\u65B0:
ColorChooser.swatchesNameText=\u30B5\u30F3\u30D7\u30EB(S) ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.swatchesMnemonic=83 ColorChooser.hsvHue.textAndMnemonic=\u8272\u76F8
ColorChooser.swatchesRecentText=\u6700\u65B0: ColorChooser.hsvSaturation.textAndMnemonic=\u5F69\u5EA6
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX ColorChooser.hsvValue.textAndMnemonic=\u5024
# constant, and an index into the text to render the mnemonic as. The ColorChooser.hsvTransparency.textAndMnemonic=\u900F\u660E\u5EA6
# mnemonic is xxxMnemonic and the index of the character to underline is ColorChooser.hsl.textAndMnemonic=HS&L
# xxxDisplayedMnemonicIndex. ColorChooser.hslHue.textAndMnemonic=\u8272\u76F8
ColorChooser.hsvNameText=HSV ColorChooser.hslSaturation.textAndMnemonic=\u5F69\u5EA6
ColorChooser.hsvMnemonic=72 ColorChooser.hslLightness.textAndMnemonic=\u660E\u5EA6
ColorChooser.hsvHueText=\u8272\u76F8 ColorChooser.hslTransparency.textAndMnemonic=\u900F\u660E\u5EA6
ColorChooser.hsvSaturationText=\u5F69\u5EA6 ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.hsvValueText=\u5024 ColorChooser.rgbRed.textAndMnemonic=\u8D64(&D)
ColorChooser.hsvTransparencyText=\u900F\u660E\u5EA6 ColorChooser.rgbGreen.textAndMnemonic=\u7DD1(&N)
ColorChooser.hslNameText=HSL ColorChooser.rgbBlue.textAndMnemonic=\u9752(&B)
ColorChooser.hslMnemonic=76 ColorChooser.rgbAlpha.textAndMnemonic=\u30A2\u30EB\u30D5\u30A1
ColorChooser.hslHueText=\u8272\u76F8 ColorChooser.rgbHexCode.textAndMnemonic=\u8272\u30B3\u30FC\u30C9(&C)
ColorChooser.hslSaturationText=\u5F69\u5EA6 ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.hslLightnessText=\u660E\u5EA6 ColorChooser.cmykCyan.textAndMnemonic=\u30B7\u30A2\u30F3
ColorChooser.hslTransparencyText=\u900F\u660E\u5EA6 ColorChooser.cmykMagenta.textAndMnemonic=\u30DE\u30BC\u30F3\u30BF
ColorChooser.rgbNameText=RGB ColorChooser.cmykYellow.textAndMnemonic=\u9EC4
ColorChooser.rgbMnemonic=71 ColorChooser.cmykBlack.textAndMnemonic=\u9ED2
ColorChooser.rgbRedText=\u8D64 ColorChooser.cmykAlpha.textAndMnemonic=\u30A2\u30EB\u30D5\u30A1
ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=\u7DD1
ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=\u9752
ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=\u30A2\u30EB\u30D5\u30A1
ColorChooser.rgbHexCodeText=\u8272\u30B3\u30FC\u30C9(C)
ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=\u30B7\u30A2\u30F3
ColorChooser.cmykMagentaText=\u30DE\u30BC\u30F3\u30BF
ColorChooser.cmykYellowText=\u9EC4
ColorChooser.cmykBlackText=\u9ED2
ColorChooser.cmykAlphaText=\u30A2\u30EB\u30D5\u30A1
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=\u306F\u3044(Y) OptionPane.yesButton.textAndMnemonic=\u306F\u3044(&Y)
OptionPane.yesButtonMnemonic=89 OptionPane.noButton.textAndMnemonic=\u3044\u3044\u3048(&N)
OptionPane.noButtonText=\u3044\u3044\u3048(N) OptionPane.okButton.textAndMnemonic=&OK
OptionPane.noButtonMnemonic=78 OptionPane.cancelButton.textAndMnemonic=\u53D6\u6D88
OptionPane.okButtonText=OK OptionPane.title.textAndMnemonic=\u30AA\u30D7\u30B7\u30E7\u30F3\u306E\u9078\u629E
OptionPane.okButtonMnemonic=O
OptionPane.cancelButtonText=\u53D6\u6D88
OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=\u30AA\u30D7\u30B7\u30E7\u30F3\u306E\u9078\u629E
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=\u5165\u529B OptionPane.inputDialog.titleAndMnemonic=\u5165\u529B
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=\u30E1\u30C3\u30BB\u30FC\u30B8 OptionPane.messageDialog.titleAndMnemonic=\u30E1\u30C3\u30BB\u30FC\u30B8
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=\u5370\u5237\u3057\u3066\u3044\u307E\u3059 PrintingDialog.titleProgress.textAndMnemonic=\u5370\u5237\u3057\u3066\u3044\u307E\u3059
PrintingDialog.titleAbortingText=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059 PrintingDialog.titleAborting.textAndMnemonic=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059
PrintingDialog.contentInitialText=\u5370\u5237\u4E2D... PrintingDialog.contentInitial.textAndMnemonic=\u5370\u5237\u4E2D...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=\u30DA\u30FC\u30B8{0}\u3092\u5370\u5237\u3057\u307E\u3057\u305F... PrintingDialog.contentProgress.textAndMnemonic=\u30DA\u30FC\u30B8{0}\u3092\u5370\u5237\u3057\u307E\u3057\u305F...
PrintingDialog.contentAbortingText=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059... PrintingDialog.contentAborting.textAndMnemonic=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059...
PrintingDialog.abortButtonText=\u4E2D\u6B62(A) PrintingDialog.abortButton.textAndMnemonic=\u4E2D\u6B62(&A)
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonToolTip.textAndMnemonic=\u5370\u5237\u306E\u4E2D\u6B62
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=\u5370\u5237\u306E\u4E2D\u6B62
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316 InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=\u5FA9\u5143 ...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=\u5FA9\u5143
InternalFrame.closeButtonToolTip=\u9589\u3058\u308B InternalFrame.closeButtonToolTip=\u9589\u3058\u308B
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=\u5FA9\u5143 InternalFrameTitlePane.restoreButton.textAndMnemonic=\u5FA9\u5143
InternalFrameTitlePane.moveButtonText=\u79FB\u52D5 InternalFrameTitlePane.moveButton.textAndMnemonic=\u79FB\u52D5
InternalFrameTitlePane.sizeButtonText=\u30B5\u30A4\u30BA InternalFrameTitlePane.sizeButton.textAndMnemonic=\u30B5\u30A4\u30BA
InternalFrameTitlePane.minimizeButtonText=\u6700\u5C0F\u5316 InternalFrameTitlePane.minimizeButton.textAndMnemonic=\u6700\u5C0F\u5316
InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316 InternalFrameTitlePane.maximizeButton.textAndMnemonic=\u6700\u5927\u5316
InternalFrameTitlePane.closeButtonText=\u9589\u3058\u308B InternalFrameTitlePane.closeButton.textAndMnemonic=\u9589\u3058\u308B
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=\u554F\u5408\u305B\u306E\u5B9F\u884C FormView.submitButton.textAndMnemonic=\u554F\u5408\u305B\u306E\u5B9F\u884C
FormView.resetButtonText=\u30EA\u30BB\u30C3\u30C8 FormView.resetButton.textAndMnemonic=\u30EA\u30BB\u30C3\u30C8
FormView.browseFileButtonText=\u53C2\u7167... FormView.browseFileButton.textAndMnemonic=\u53C2\u7167...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=\u30B9\u30BF\u30A4\u30EB\u5909\u66F4 AbstractDocument.styleChange.textAndMnemonic=\u30B9\u30BF\u30A4\u30EB\u5909\u66F4
AbstractDocument.additionText=\u8FFD\u52A0 AbstractDocument.addition.textAndMnemonic=\u8FFD\u52A0
AbstractDocument.deletionText=\u524A\u9664 AbstractDocument.deletion.textAndMnemonic=\u524A\u9664
AbstractDocument.undoText=\u5143\u306B\u623B\u3059 AbstractDocument.undo.textAndMnemonic=\u5143\u306B\u623B\u3059
AbstractDocument.redoText=\u3084\u308A\u76F4\u3057 AbstractDocument.redo.textAndMnemonic=\u3084\u308A\u76F4\u3057
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=\u30AF\u30EA\u30C3\u30AF AbstractButton.click.textAndMnemonic=\u30AF\u30EA\u30C3\u30AF
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=\u5143\u306B\u623B\u3059 AbstractUndoableEdit.undo.textAndMnemonic=\u5143\u306B\u623B\u3059
AbstractUndoableEdit.redoText=\u3084\u308A\u76F4\u3057 AbstractUndoableEdit.redo.textAndMnemonic=\u3084\u308A\u76F4\u3057
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=\u30C8\u30B0\u30EB\u30FB\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7 ComboBox.togglePopup.textAndMnemonic=\u30C8\u30B0\u30EB\u30FB\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=\u9032\u884C\u4E2D... ProgressMonitor.progress.textAndMnemonic=\u9032\u884C\u4E2D...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=\u5DE6\u30DC\u30BF\u30F3 SplitPane.leftButton.textAndMnemonic=\u5DE6\u30DC\u30BF\u30F3
SplitPane.rightButtonText=\u53F3\u30DC\u30BF\u30F3 SplitPane.rightButton.textAndMnemonic=\u53F3\u30DC\u30BF\u30F3
# Used for Isindex # Used for Isindex
IsindexView.prompt=\u691C\u7D22\u7528\u306E\u7D22\u5F15\u3067\u3059\u3002\u691C\u7D22\u3059\u308B\u30AD\u30FC\u30EF\u30FC\u30C9\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044: IsindexView.prompt=\u691C\u7D22\u7528\u306E\u7D22\u5F15\u3067\u3059\u3002\u691C\u7D22\u3059\u308B\u30AD\u30FC\u30EF\u30FC\u30C9\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044:
......
...@@ -15,27 +15,12 @@ ...@@ -15,27 +15,12 @@
# 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
# in java/awt/KeyEvent.java. VK_G is defined as:
#
# public static final int VK_G = 0x47;
#
# 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
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
# for 'a' is 65, 'b' is 66...
#
# The xxDisplayedMnemonicIndex is used to indicate the index of the
# character that should be underlined in the String, with 0
# corresponding to the first character in the String.
# #
# One important thing to remember is that the mnemonic MUST exist in # One important thing to remember is that the mnemonic MUST exist in
# the String, if it does not exist you should add text that makes it # the String, if it does not exist you should add text that makes it
...@@ -45,30 +30,24 @@ ...@@ -45,30 +30,24 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=\uC77C\uBC18 \uD30C\uC77C FileChooser.fileDescription.textAndMnemonic=\uC77C\uBC18 \uD30C\uC77C
FileChooser.directoryDescriptionText=\uB514\uB809\uD1A0\uB9AC FileChooser.directoryDescription.textAndMnemonic=\uB514\uB809\uD1A0\uB9AC
FileChooser.newFolderErrorText=\uC0C8 \uD3F4\uB354\uB97C \uC0DD\uC131\uD558\uB294 \uC911 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4. FileChooser.newFolderError.textAndMnemonic=\uC0C8 \uD3F4\uB354\uB97C \uC0DD\uC131\uD558\uB294 \uC911 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4.
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=\uD3F4\uB354\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC74C FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\uD3F4\uB354\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC74C
FileChooser.newFolderParentDoesntExistText=\uD3F4\uB354\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.\n\n\uC2DC\uC2A4\uD15C\uC5D0\uC11C \uC9C0\uC815\uB41C \uACBD\uB85C\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. FileChooser.newFolderParentDoesntExist.textAndMnemonic=\uD3F4\uB354\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.\n\n\uC2DC\uC2A4\uD15C\uC5D0\uC11C \uC9C0\uC815\uB41C \uACBD\uB85C\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
FileChooser.renameErrorTitleText=\uD30C\uC77C \uB610\uB294 \uD3F4\uB354 \uC774\uB984 \uBC14\uAFB8\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD FileChooser.renameErrorTitle.textAndMnemonic=\uD30C\uC77C \uB610\uB294 \uD3F4\uB354 \uC774\uB984 \uBC14\uAFB8\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD
FileChooser.renameErrorText={0}\uC758 \uC774\uB984\uC744 \uBC14\uAFC0 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. FileChooser.renameError.textAndMnemonic={0}\uC758 \uC774\uB984\uC744 \uBC14\uAFC0 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
FileChooser.renameErrorFileExistsText={0}\uC758 \uC774\uB984\uC744 \uBC14\uAFC0 \uC218 \uC5C6\uC74C: \uC9C0\uC815\uD55C \uC774\uB984\uC744 \uC0AC\uC6A9\uD558\uB294 \uD30C\uC77C\uC774 \uC874\uC7AC\uD569\uB2C8\uB2E4. \uB2E4\uB978 \uD30C\uC77C \uC774\uB984\uC744 \uC9C0\uC815\uD558\uC2ED\uC2DC\uC624. FileChooser.renameErrorFileExists.textAndMnemonic={0}\uC758 \uC774\uB984\uC744 \uBC14\uAFC0 \uC218 \uC5C6\uC74C: \uC9C0\uC815\uD55C \uC774\uB984\uC744 \uC0AC\uC6A9\uD558\uB294 \uD30C\uC77C\uC774 \uC874\uC7AC\uD569\uB2C8\uB2E4. \uB2E4\uB978 \uD30C\uC77C \uC774\uB984\uC744 \uC9C0\uC815\uD558\uC2ED\uC2DC\uC624.
FileChooser.acceptAllFileFilterText=\uBAA8\uB4E0 \uD30C\uC77C FileChooser.acceptAllFileFilter.textAndMnemonic=\uBAA8\uB4E0 \uD30C\uC77C
FileChooser.cancelButtonText=\uCDE8\uC18C FileChooser.cancelButton.textAndMnemonic=\uCDE8\uC18C(&C)
FileChooser.cancelButtonMnemonic=67 FileChooser.saveButton.textAndMnemonic=\uC800\uC7A5(&S)
FileChooser.saveButtonText=\uC800\uC7A5 FileChooser.openButton.textAndMnemonic=\uC5F4\uAE30(&O)
FileChooser.saveButtonMnemonic=83 FileChooser.saveDialogTitle.textAndMnemonic=\uC800\uC7A5
FileChooser.openButtonText=\uC5F4\uAE30 FileChooser.openDialogTitle.textAndMnemonic=\uC5F4\uAE30
FileChooser.openButtonMnemonic=79 FileChooser.updateButton.textAndMnemonic=\uAC31\uC2E0(&U)
FileChooser.saveDialogTitleText=\uC800\uC7A5 FileChooser.helpButton.textAndMnemonic=\uB3C4\uC6C0\uB9D0(&H)
FileChooser.openDialogTitleText=\uC5F4\uAE30 FileChooser.directoryOpenButton.textAndMnemonic=\uC5F4\uAE30(&O)
FileChooser.updateButtonText=\uAC31\uC2E0(U)
FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=\uB3C4\uC6C0\uB9D0(H)
FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=\uC5F4\uAE30(O)
FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=NewFolder.{0} ...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790 \uC911\uB2E8 FileChooser.cancelButtonToolTip.textAndMnemonic=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790 \uC911\uB2E8
FileChooser.saveButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C \uC800\uC7A5 FileChooser.saveButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C \uC800\uC7A5
FileChooser.openButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C \uC5F4\uAE30 FileChooser.openButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C \uC5F4\uAE30
FileChooser.updateButtonToolTipText=\uB514\uB809\uD1A0\uB9AC \uBAA9\uB85D \uAC31\uC2E0 FileChooser.updateButtonToolTip.textAndMnemonic=\uB514\uB809\uD1A0\uB9AC \uBAA9\uB85D \uAC31\uC2E0
FileChooser.helpButtonToolTipText=FileChooser \uB3C4\uC6C0\uB9D0 FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser \uB3C4\uC6C0\uB9D0
FileChooser.directoryOpenButtonToolTipText=\uC120\uD0DD\uB41C \uB514\uB809\uD1A0\uB9AC \uC5F4\uAE30 FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uB514\uB809\uD1A0\uB9AC \uC5F4\uAE30
FileChooser.filesListAccessibleName=Files List FileChooser.filesListAccessibleName=Files List
FileChooser.filesDetailsAccessibleName=Files Details FileChooser.filesDetailsAccessibleName=Files Details
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=\uBBF8\uB9AC\uBCF4\uAE30 ColorChooser.preview.textAndMnemonic=\uBBF8\uB9AC\uBCF4\uAE30
ColorChooser.okText=\uD655\uC778 ColorChooser.ok.textAndMnemonic=\uD655\uC778
ColorChooser.cancelText=\uCDE8\uC18C ColorChooser.cancel.textAndMnemonic=\uCDE8\uC18C
ColorChooser.resetText=\uC7AC\uC124\uC815(R) ColorChooser.reset.textAndMnemonic=\uC7AC\uC124\uC815(&R)
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.sample.textAndMnemonic=\uC0D8\uD50C \uD14D\uC2A4\uD2B8 \uC0D8\uD50C \uD14D\uC2A4\uD2B8
ColorChooser.resetMnemonic=82 ColorChooser.swatches.textAndMnemonic=\uACAC\uBCF8(&S)
ColorChooser.sampleText=\uC0D8\uD50C \uD14D\uC2A4\uD2B8 \uC0D8\uD50C \uD14D\uC2A4\uD2B8 ColorChooser.swatchesRecent.textAndMnemonic=\uCD5C\uADFC \uBAA9\uB85D:
ColorChooser.swatchesNameText=\uACAC\uBCF8(S) ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.swatchesMnemonic=83 ColorChooser.hsvHue.textAndMnemonic=\uC0C9\uC870
ColorChooser.swatchesRecentText=\uCD5C\uADFC \uBAA9\uB85D: ColorChooser.hsvSaturation.textAndMnemonic=\uCC44\uB3C4
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX ColorChooser.hsvValue.textAndMnemonic=\uAC12
# constant, and an index into the text to render the mnemonic as. The ColorChooser.hsvTransparency.textAndMnemonic=\uD22C\uBA85
# mnemonic is xxxMnemonic and the index of the character to underline is ColorChooser.hsl.textAndMnemonic=HS&L
# xxxDisplayedMnemonicIndex. ColorChooser.hslHue.textAndMnemonic=\uC0C9\uC870
ColorChooser.hsvNameText=HSV ColorChooser.hslSaturation.textAndMnemonic=\uCC44\uB3C4
ColorChooser.hsvMnemonic=72 ColorChooser.hslLightness.textAndMnemonic=\uBC1D\uAE30
ColorChooser.hsvHueText=\uC0C9\uC870 ColorChooser.hslTransparency.textAndMnemonic=\uD22C\uBA85
ColorChooser.hsvSaturationText=\uCC44\uB3C4 ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.hsvValueText=\uAC12 ColorChooser.rgbRed.textAndMnemonic=\uBE68\uAC04\uC0C9(&D)
ColorChooser.hsvTransparencyText=\uD22C\uBA85 ColorChooser.rgbGreen.textAndMnemonic=\uB179\uC0C9(&N)
ColorChooser.hslNameText=HSL ColorChooser.rgbBlue.textAndMnemonic=\uD30C\uB780\uC0C9(&B)
ColorChooser.hslMnemonic=76 ColorChooser.rgbAlpha.textAndMnemonic=\uC54C\uD30C
ColorChooser.hslHueText=\uC0C9\uC870 ColorChooser.rgbHexCode.textAndMnemonic=\uC0C9\uC0C1 \uCF54\uB4DC(&C)
ColorChooser.hslSaturationText=\uCC44\uB3C4 ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.hslLightnessText=\uBC1D\uAE30 ColorChooser.cmykCyan.textAndMnemonic=\uCCAD\uB85D\uC0C9
ColorChooser.hslTransparencyText=\uD22C\uBA85 ColorChooser.cmykMagenta.textAndMnemonic=\uC9C4\uD64D\uC0C9
ColorChooser.rgbNameText=RGB ColorChooser.cmykYellow.textAndMnemonic=\uB178\uB780\uC0C9
ColorChooser.rgbMnemonic=71 ColorChooser.cmykBlack.textAndMnemonic=\uAC80\uC815\uC0C9
ColorChooser.rgbRedText=\uBE68\uAC04\uC0C9 ColorChooser.cmykAlpha.textAndMnemonic=\uC54C\uD30C
ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=\uB179\uC0C9
ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=\uD30C\uB780\uC0C9
ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=\uC54C\uD30C
ColorChooser.rgbHexCodeText=\uC0C9\uC0C1 \uCF54\uB4DC(C)
ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=\uCCAD\uB85D\uC0C9
ColorChooser.cmykMagentaText=\uC9C4\uD64D\uC0C9
ColorChooser.cmykYellowText=\uB178\uB780\uC0C9
ColorChooser.cmykBlackText=\uAC80\uC815\uC0C9
ColorChooser.cmykAlphaText=\uC54C\uD30C
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=\uC608(Y) OptionPane.yesButton.textAndMnemonic=\uC608(&Y)
OptionPane.yesButtonMnemonic=89 OptionPane.noButton.textAndMnemonic=\uC544\uB2C8\uC624(&N)
OptionPane.noButtonText=\uC544\uB2C8\uC624(N) OptionPane.okButton.textAndMnemonic=\uD655\uC778(&O)
OptionPane.noButtonMnemonic=78 OptionPane.cancelButton.textAndMnemonic=\uCDE8\uC18C
OptionPane.okButtonText=\uD655\uC778 OptionPane.title.textAndMnemonic=\uC635\uC158 \uC120\uD0DD
OptionPane.okButtonMnemonic=O
OptionPane.cancelButtonText=\uCDE8\uC18C
OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=\uC635\uC158 \uC120\uD0DD
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=\uC785\uB825 OptionPane.inputDialog.titleAndMnemonic=\uC785\uB825
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=\uBA54\uC2DC\uC9C0 OptionPane.messageDialog.titleAndMnemonic=\uBA54\uC2DC\uC9C0
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=\uC778\uC1C4 PrintingDialog.titleProgress.textAndMnemonic=\uC778\uC1C4
PrintingDialog.titleAbortingText=\uC778\uC1C4(\uC911\uB2E8 \uC911) PrintingDialog.titleAborting.textAndMnemonic=\uC778\uC1C4(\uC911\uB2E8 \uC911)
PrintingDialog.contentInitialText=\uC778\uC1C4 \uC9C4\uD589 \uC911... PrintingDialog.contentInitial.textAndMnemonic=\uC778\uC1C4 \uC9C4\uD589 \uC911...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=\uC778\uC1C4\uB41C \uD398\uC774\uC9C0 {0}... PrintingDialog.contentProgress.textAndMnemonic=\uC778\uC1C4\uB41C \uD398\uC774\uC9C0 {0}...
PrintingDialog.contentAbortingText=\uC778\uC1C4 \uC911\uB2E8 \uC911... PrintingDialog.contentAborting.textAndMnemonic=\uC778\uC1C4 \uC911\uB2E8 \uC911...
PrintingDialog.abortButtonText=\uC911\uB2E8(A) PrintingDialog.abortButton.textAndMnemonic=\uC911\uB2E8(&A)
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonToolTip.textAndMnemonic=\uC778\uC1C4 \uC911\uB2E8
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=\uC778\uC1C4 \uC911\uB2E8
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=\uCD5C\uC18C\uD654 InternalFrame.iconButtonToolTip=\uCD5C\uC18C\uD654
...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=\uBCF5\uC6D0 ...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=\uBCF5\uC6D0
InternalFrame.closeButtonToolTip=\uB2EB\uAE30 InternalFrame.closeButtonToolTip=\uB2EB\uAE30
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=\uBCF5\uC6D0 InternalFrameTitlePane.restoreButton.textAndMnemonic=\uBCF5\uC6D0
InternalFrameTitlePane.moveButtonText=\uC774\uB3D9 InternalFrameTitlePane.moveButton.textAndMnemonic=\uC774\uB3D9
InternalFrameTitlePane.sizeButtonText=\uD06C\uAE30 InternalFrameTitlePane.sizeButton.textAndMnemonic=\uD06C\uAE30
InternalFrameTitlePane.minimizeButtonText=\uCD5C\uC18C\uD654 InternalFrameTitlePane.minimizeButton.textAndMnemonic=\uCD5C\uC18C\uD654
InternalFrameTitlePane.maximizeButtonText=\uCD5C\uB300\uD654 InternalFrameTitlePane.maximizeButton.textAndMnemonic=\uCD5C\uB300\uD654
InternalFrameTitlePane.closeButtonText=\uB2EB\uAE30 InternalFrameTitlePane.closeButton.textAndMnemonic=\uB2EB\uAE30
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=\uC9C8\uC758 \uC81C\uCD9C FormView.submitButton.textAndMnemonic=\uC9C8\uC758 \uC81C\uCD9C
FormView.resetButtonText=\uC7AC\uC124\uC815 FormView.resetButton.textAndMnemonic=\uC7AC\uC124\uC815
FormView.browseFileButtonText=\uCC3E\uC544\uBCF4\uAE30... FormView.browseFileButton.textAndMnemonic=\uCC3E\uC544\uBCF4\uAE30...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=\uC2A4\uD0C0\uC77C \uBCC0\uACBD AbstractDocument.styleChange.textAndMnemonic=\uC2A4\uD0C0\uC77C \uBCC0\uACBD
AbstractDocument.additionText=\uCD94\uAC00 AbstractDocument.addition.textAndMnemonic=\uCD94\uAC00
AbstractDocument.deletionText=\uC0AD\uC81C AbstractDocument.deletion.textAndMnemonic=\uC0AD\uC81C
AbstractDocument.undoText=\uC2E4\uD589 \uCDE8\uC18C AbstractDocument.undo.textAndMnemonic=\uC2E4\uD589 \uCDE8\uC18C
AbstractDocument.redoText=\uC7AC\uC2E4\uD589 AbstractDocument.redo.textAndMnemonic=\uC7AC\uC2E4\uD589
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=\uB204\uB974\uAE30 AbstractButton.click.textAndMnemonic=\uB204\uB974\uAE30
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=\uC2E4\uD589 \uCDE8\uC18C AbstractUndoableEdit.undo.textAndMnemonic=\uC2E4\uD589 \uCDE8\uC18C
AbstractUndoableEdit.redoText=\uC7AC\uC2E4\uD589 AbstractUndoableEdit.redo.textAndMnemonic=\uC7AC\uC2E4\uD589
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=\uC9C4\uD589... ProgressMonitor.progress.textAndMnemonic=\uC9C4\uD589...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=\uC67C\uCABD \uB2E8\uCD94 SplitPane.leftButton.textAndMnemonic=\uC67C\uCABD \uB2E8\uCD94
SplitPane.rightButtonText=\uC624\uB978\uCABD \uB2E8\uCD94 SplitPane.rightButton.textAndMnemonic=\uC624\uB978\uCABD \uB2E8\uCD94
# Used for Isindex # Used for Isindex
IsindexView.prompt=\uB2E4\uC74C\uC740 \uAC80\uC0C9 \uAC00\uB2A5\uD55C \uC778\uB371\uC2A4\uC785\uB2C8\uB2E4. \uAC80\uC0C9 \uD0A4\uC6CC\uB4DC \uC785\uB825: IsindexView.prompt=\uB2E4\uC74C\uC740 \uAC80\uC0C9 \uAC00\uB2A5\uD55C \uC778\uB371\uC2A4\uC785\uB2C8\uB2E4. \uAC80\uC0C9 \uD0A4\uC6CC\uB4DC \uC785\uB825:
......
...@@ -15,27 +15,12 @@ ...@@ -15,27 +15,12 @@
# 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
# in java/awt/KeyEvent.java. VK_G is defined as:
#
# public static final int VK_G = 0x47;
#
# 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
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
# for 'a' is 65, 'b' is 66...
#
# The xxDisplayedMnemonicIndex is used to indicate the index of the
# character that should be underlined in the String, with 0
# corresponding to the first character in the String.
# #
# One important thing to remember is that the mnemonic MUST exist in # One important thing to remember is that the mnemonic MUST exist in
# the String, if it does not exist you should add text that makes it # the String, if it does not exist you should add text that makes it
...@@ -45,30 +30,24 @@ ...@@ -45,30 +30,24 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=Arquivo Gen\u00E9rico FileChooser.fileDescription.textAndMnemonic=Arquivo Gen\u00E9rico
FileChooser.directoryDescriptionText=Diret\u00F3rio FileChooser.directoryDescription.textAndMnemonic=Diret\u00F3rio
FileChooser.newFolderErrorText=Erro ao criar nova pasta FileChooser.newFolderError.textAndMnemonic=Erro ao criar nova pasta
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=N\u00E3o \u00E9 poss\u00EDvel criar a pasta FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel criar a pasta
FileChooser.newFolderParentDoesntExistText=N\u00E3o \u00E9 poss\u00EDvel criar a pasta.\n\nO sistema n\u00E3o pode localizar o caminho especificado. FileChooser.newFolderParentDoesntExist.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel criar a pasta.\n\nO sistema n\u00E3o pode localizar o caminho especificado.
FileChooser.renameErrorTitleText=Erro ao Renomear o Arquivo ou a Pasta FileChooser.renameErrorTitle.textAndMnemonic=Erro ao Renomear o Arquivo ou a Pasta
FileChooser.renameErrorText=N\u00E3o \u00E9 poss\u00EDvel renomear {0} FileChooser.renameError.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel renomear {0}
FileChooser.renameErrorFileExistsText=N\u00E3o \u00E9 poss\u00EDvel renomear {0}: Um arquivo com o nome especificado j\u00E1 existe. Especifique outro nome de arquivo. FileChooser.renameErrorFileExists.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel renomear {0}: Um arquivo com o nome especificado j\u00E1 existe. Especifique outro nome de arquivo.
FileChooser.acceptAllFileFilterText=Todos os Arquivos FileChooser.acceptAllFileFilter.textAndMnemonic=Todos os Arquivos
FileChooser.cancelButtonText=Cancelar FileChooser.cancelButton.textAndMnemonic=&Cancelar
FileChooser.cancelButtonMnemonic=67 FileChooser.saveButton.textAndMnemonic=&Salvar
FileChooser.saveButtonText=Salvar FileChooser.openButton.textAndMnemonic=A&brir
FileChooser.saveButtonMnemonic=83 FileChooser.saveDialogTitle.textAndMnemonic=Salvar
FileChooser.openButtonText=Abrir FileChooser.openDialogTitle.textAndMnemonic=Abrir
FileChooser.openButtonMnemonic=66 FileChooser.updateButton.textAndMnemonic=At&ualizar
FileChooser.saveDialogTitleText=Salvar FileChooser.helpButton.textAndMnemonic=Aj&uda
FileChooser.openDialogTitleText=Abrir FileChooser.directoryOpenButton.textAndMnemonic=A&brir
FileChooser.updateButtonText=Atualizar
FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=Ajuda
FileChooser.helpButtonMnemonic=85
FileChooser.directoryOpenButtonText=Abrir
FileChooser.directoryOpenButtonMnemonic=66
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=NewFolder.{0} ...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=Abortar caixa de di\u00E1logo do seletor de arquivos FileChooser.cancelButtonToolTip.textAndMnemonic=Abortar caixa de di\u00E1logo do seletor de arquivos
FileChooser.saveButtonToolTipText=Salvar arquivo selecionado FileChooser.saveButtonToolTip.textAndMnemonic=Salvar arquivo selecionado
FileChooser.openButtonToolTipText=Abrir arquivo selecionado FileChooser.openButtonToolTip.textAndMnemonic=Abrir arquivo selecionado
FileChooser.updateButtonToolTipText=Atualizar lista de diret\u00F3rios FileChooser.updateButtonToolTip.textAndMnemonic=Atualizar lista de diret\u00F3rios
FileChooser.helpButtonToolTipText=Ajuda do FileChooser FileChooser.helpButtonToolTip.textAndMnemonic=Ajuda do FileChooser
FileChooser.directoryOpenButtonToolTipText=Abrir diret\u00F3rio selecionado FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Abrir diret\u00F3rio selecionado
FileChooser.filesListAccessibleName=Files List FileChooser.filesListAccessibleName=Files List
FileChooser.filesDetailsAccessibleName=Files Details FileChooser.filesDetailsAccessibleName=Files Details
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=Visualizar ColorChooser.preview.textAndMnemonic=Visualizar
ColorChooser.okText=OK ColorChooser.ok.textAndMnemonic=OK
ColorChooser.cancelText=Cancelar ColorChooser.cancel.textAndMnemonic=Cancelar
ColorChooser.resetText=Redefinir ColorChooser.reset.textAndMnemonic=&Redefinir
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.sample.textAndMnemonic=Texto de Amostra Texto de Amostra
ColorChooser.resetMnemonic=82 ColorChooser.swatches.textAndMnemonic=Amo&stras
ColorChooser.sampleText=Texto de Amostra Texto de Amostra ColorChooser.swatchesRecent.textAndMnemonic=Recente:
ColorChooser.swatchesNameText=Amostras ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.swatchesMnemonic=83 ColorChooser.hsvHue.textAndMnemonic=Matiz
ColorChooser.swatchesRecentText=Recente: ColorChooser.hsvSaturation.textAndMnemonic=Satura\u00E7\u00E3o
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX ColorChooser.hsvValue.textAndMnemonic=Valor
# constant, and an index into the text to render the mnemonic as. The ColorChooser.hsvTransparency.textAndMnemonic=Transpar\u00EAncia
# mnemonic is xxxMnemonic and the index of the character to underline is ColorChooser.hsl.textAndMnemonic=HS&L
# xxxDisplayedMnemonicIndex. ColorChooser.hslHue.textAndMnemonic=Matiz
ColorChooser.hsvNameText=HSV ColorChooser.hslSaturation.textAndMnemonic=Satura\u00E7\u00E3o
ColorChooser.hsvMnemonic=72 ColorChooser.hslLightness.textAndMnemonic=Clareza
ColorChooser.hsvHueText=Matiz ColorChooser.hslTransparency.textAndMnemonic=Transpar\u00EAncia
ColorChooser.hsvSaturationText=Satura\u00E7\u00E3o ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.hsvValueText=Valor ColorChooser.rgbRed.textAndMnemonic=&Vermelho
ColorChooser.hsvTransparencyText=Transpar\u00EAncia ColorChooser.rgbGreen.textAndMnemonic=&Verde
ColorChooser.hslNameText=HSL ColorChooser.rgbBlue.textAndMnemonic=&Azul
ColorChooser.hslMnemonic=76 ColorChooser.rgbAlpha.textAndMnemonic=Alfa
ColorChooser.hslHueText=Matiz ColorChooser.rgbHexCode.textAndMnemonic=C\u00F3digo da Cor(&C)
ColorChooser.hslSaturationText=Satura\u00E7\u00E3o ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.hslLightnessText=Clareza ColorChooser.cmykCyan.textAndMnemonic=Ciano
ColorChooser.hslTransparencyText=Transpar\u00EAncia ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.rgbNameText=RGB ColorChooser.cmykYellow.textAndMnemonic=Amarelo
ColorChooser.rgbMnemonic=71 ColorChooser.cmykBlack.textAndMnemonic=Preto
ColorChooser.rgbRedText=Vermelho ColorChooser.cmykAlpha.textAndMnemonic=Alfa
ColorChooser.rgbRedMnemonic=86
ColorChooser.rgbGreenText=Verde
ColorChooser.rgbGreenMnemonic=86
ColorChooser.rgbBlueText=Azul
ColorChooser.rgbBlueMnemonic=65
ColorChooser.rgbAlphaText=Alfa
ColorChooser.rgbHexCodeText=C\u00F3digo da Cor
ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Ciano
ColorChooser.cmykMagentaText=Magenta
ColorChooser.cmykYellowText=Amarelo
ColorChooser.cmykBlackText=Preto
ColorChooser.cmykAlphaText=Alfa
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=Sim OptionPane.yesButton.textAndMnemonic=&Sim
OptionPane.yesButtonMnemonic=83 OptionPane.noButton.textAndMnemonic=N\u00E3o(&N)
OptionPane.noButtonText=N\u00E3o OptionPane.okButton.textAndMnemonic=&OK
OptionPane.noButtonMnemonic=78 OptionPane.cancelButton.textAndMnemonic=&Cancelar
OptionPane.okButtonText=OK OptionPane.title.textAndMnemonic=Selecionar uma Op\u00E7\u00E3o
OptionPane.okButtonMnemonic=O
OptionPane.cancelButtonText=Cancelar
OptionPane.cancelButtonMnemonic=C
OptionPane.titleText=Selecionar uma Op\u00E7\u00E3o
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=Entrada OptionPane.inputDialog.titleAndMnemonic=Entrada
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=Mensagem OptionPane.messageDialog.titleAndMnemonic=Mensagem
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=Impress\u00E3o PrintingDialog.titleProgress.textAndMnemonic=Impress\u00E3o
PrintingDialog.titleAbortingText=Impress\u00E3o (Abortando) PrintingDialog.titleAborting.textAndMnemonic=Impress\u00E3o (Abortando)
PrintingDialog.contentInitialText=Impress\u00E3o em andamento... PrintingDialog.contentInitial.textAndMnemonic=Impress\u00E3o em andamento...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=P\u00E1gina impressa {0}... PrintingDialog.contentProgress.textAndMnemonic=P\u00E1gina impressa {0}...
PrintingDialog.contentAbortingText=Abortando impress\u00E3o... PrintingDialog.contentAborting.textAndMnemonic=Abortando impress\u00E3o...
PrintingDialog.abortButtonText=Abortar PrintingDialog.abortButton.textAndMnemonic=&Abortar
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonToolTip.textAndMnemonic=Abortar Impress\u00E3o
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=Abortar Impress\u00E3o
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Minimizar InternalFrame.iconButtonToolTip=Minimizar
...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=Restaurar ...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=Restaurar
InternalFrame.closeButtonToolTip=Fechar InternalFrame.closeButtonToolTip=Fechar
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=Restaurar InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurar
InternalFrameTitlePane.moveButtonText=Mover InternalFrameTitlePane.moveButton.textAndMnemonic=Mover
InternalFrameTitlePane.sizeButtonText=Tamanho InternalFrameTitlePane.sizeButton.textAndMnemonic=Tamanho
InternalFrameTitlePane.minimizeButtonText=Minimizar InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimizar
InternalFrameTitlePane.maximizeButtonText=Maximizar InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximizar
InternalFrameTitlePane.closeButtonText=Fechar InternalFrameTitlePane.closeButton.textAndMnemonic=Fechar
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=Submeter Consulta FormView.submitButton.textAndMnemonic=Submeter Consulta
FormView.resetButtonText=Redefinir FormView.resetButton.textAndMnemonic=Redefinir
FormView.browseFileButtonText=Procurar... FormView.browseFileButton.textAndMnemonic=Procurar...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=altera\u00E7\u00E3o de estilo AbstractDocument.styleChange.textAndMnemonic=altera\u00E7\u00E3o de estilo
AbstractDocument.additionText=adi\u00E7\u00E3o AbstractDocument.addition.textAndMnemonic=adi\u00E7\u00E3o
AbstractDocument.deletionText=dele\u00E7\u00E3o AbstractDocument.deletion.textAndMnemonic=dele\u00E7\u00E3o
AbstractDocument.undoText=Desfazer AbstractDocument.undo.textAndMnemonic=Desfazer
AbstractDocument.redoText=Refazer AbstractDocument.redo.textAndMnemonic=Refazer
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=clicar AbstractButton.click.textAndMnemonic=clicar
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=Desfazer AbstractUndoableEdit.undo.textAndMnemonic=Desfazer
AbstractUndoableEdit.redoText=Refazer AbstractUndoableEdit.redo.textAndMnemonic=Refazer
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=Progresso... ProgressMonitor.progress.textAndMnemonic=Progresso...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=bot\u00E3o esquerdo SplitPane.leftButton.textAndMnemonic=bot\u00E3o esquerdo
SplitPane.rightButtonText=bot\u00E3o direito SplitPane.rightButton.textAndMnemonic=bot\u00E3o direito
# Used for Isindex # Used for Isindex
IsindexView.prompt=Trata-se de um \u00EDndice pesquis\u00E1vel. Informe as palavras-chave de pesquisa: IsindexView.prompt=Trata-se de um \u00EDndice pesquis\u00E1vel. Informe as palavras-chave de pesquisa:
......
...@@ -15,27 +15,12 @@ ...@@ -15,27 +15,12 @@
# 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
# in java/awt/KeyEvent.java. VK_G is defined as:
#
# public static final int VK_G = 0x47;
#
# 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
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
# for 'a' is 65, 'b' is 66...
#
# The xxDisplayedMnemonicIndex is used to indicate the index of the
# character that should be underlined in the String, with 0
# corresponding to the first character in the String.
# #
# One important thing to remember is that the mnemonic MUST exist in # One important thing to remember is that the mnemonic MUST exist in
# the String, if it does not exist you should add text that makes it # the String, if it does not exist you should add text that makes it
...@@ -45,30 +30,24 @@ ...@@ -45,30 +30,24 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=Generisk fil FileChooser.fileDescription.textAndMnemonic=Generisk fil
FileChooser.directoryDescriptionText=Katalog FileChooser.directoryDescription.textAndMnemonic=Katalog
FileChooser.newFolderErrorText=Fel uppstod n\u00E4r ny mapp skapades FileChooser.newFolderError.textAndMnemonic=Fel uppstod n\u00E4r ny mapp skapades
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=Kan inte skapa mappen FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Kan inte skapa mappen
FileChooser.newFolderParentDoesntExistText=Kan inte skapa mappen.\n\nSystemet kan inte hitta angiven s\u00F6kv\u00E4g. FileChooser.newFolderParentDoesntExist.textAndMnemonic=Kan inte skapa mappen.\n\nSystemet kan inte hitta angiven s\u00F6kv\u00E4g.
FileChooser.renameErrorTitleText=Ett fel intr\u00E4ffade vid f\u00F6rs\u00F6k att \u00E4ndra namn p\u00E5 fil eller mapp FileChooser.renameErrorTitle.textAndMnemonic=Ett fel intr\u00E4ffade vid f\u00F6rs\u00F6k att \u00E4ndra namn p\u00E5 fil eller mapp
FileChooser.renameErrorText=Kan inte namn\u00E4ndra {0} FileChooser.renameError.textAndMnemonic=Kan inte namn\u00E4ndra {0}
FileChooser.renameErrorFileExistsText=Kan inte namn\u00E4ndra {0}: En fil med angivet namn finns redan. Ange ett annat filnamn. FileChooser.renameErrorFileExists.textAndMnemonic=Kan inte namn\u00E4ndra {0}: En fil med angivet namn finns redan. Ange ett annat filnamn.
FileChooser.acceptAllFileFilterText=Alla filer FileChooser.acceptAllFileFilter.textAndMnemonic=Alla filer
FileChooser.cancelButtonText=Avbryt FileChooser.cancelButton.textAndMnemonic=&Avbryt
FileChooser.cancelButtonMnemonic=65 FileChooser.saveButton.textAndMnemonic=&Spara
FileChooser.saveButtonText=Spara FileChooser.openButton.textAndMnemonic=\u00D6ppna(&P)
FileChooser.saveButtonMnemonic=83 FileChooser.saveDialogTitle.textAndMnemonic=Spara
FileChooser.openButtonText=\u00D6ppna FileChooser.openDialogTitle.textAndMnemonic=\u00D6ppna
FileChooser.openButtonMnemonic=80 FileChooser.updateButton.textAndMnemonic=Upp&datera
FileChooser.saveDialogTitleText=Spara FileChooser.helpButton.textAndMnemonic=Hj\u00E4lp(&H)
FileChooser.openDialogTitleText=\u00D6ppna FileChooser.directoryOpenButton.textAndMnemonic=\u00D6ppna(&P)
FileChooser.updateButtonText=Uppdatera
FileChooser.updateButtonMnemonic=68
FileChooser.helpButtonText=Hj\u00E4lp
FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=\u00D6ppna
FileChooser.directoryOpenButtonMnemonic=80
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=Ny mapp.{0} ...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=Ny mapp.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=Avbryt filvalsdialogruta FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt filvalsdialogruta
FileChooser.saveButtonToolTipText=Spara vald fil FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil
FileChooser.openButtonToolTipText=\u00D6ppna vald fil FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil
FileChooser.updateButtonToolTipText=Uppdatera kataloglistan FileChooser.updateButtonToolTip.textAndMnemonic=Uppdatera kataloglistan
FileChooser.helpButtonToolTipText=Hj\u00E4lp - Filv\u00E4ljare FileChooser.helpButtonToolTip.textAndMnemonic=Hj\u00E4lp - Filv\u00E4ljare
FileChooser.directoryOpenButtonToolTipText=\u00D6ppna vald katalog FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\u00D6ppna vald katalog
FileChooser.filesListAccessibleName=Files List FileChooser.filesListAccessibleName=Files List
FileChooser.filesDetailsAccessibleName=Files Details FileChooser.filesDetailsAccessibleName=Files Details
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=Granska ColorChooser.preview.textAndMnemonic=Granska
ColorChooser.okText=OK ColorChooser.ok.textAndMnemonic=OK
ColorChooser.cancelText=Avbryt ColorChooser.cancel.textAndMnemonic=Avbryt
ColorChooser.resetText=\u00C5terst\u00E4ll ColorChooser.reset.textAndMnemonic=\u00C5terst\u00E4ll(&T)
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.sample.textAndMnemonic=Exempeltext Exempeltext
ColorChooser.resetMnemonic=84 ColorChooser.swatches.textAndMnemonic=&Prov
ColorChooser.sampleText=Exempeltext Exempeltext ColorChooser.swatchesRecent.textAndMnemonic=Senaste:
ColorChooser.swatchesNameText=Prov ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.swatchesMnemonic=80 ColorChooser.hsvHue.textAndMnemonic=Nyans
ColorChooser.swatchesRecentText=Senaste: ColorChooser.hsvSaturation.textAndMnemonic=M\u00E4ttnad
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX ColorChooser.hsvValue.textAndMnemonic=V\u00E4rde
# constant, and an index into the text to render the mnemonic as. The ColorChooser.hsvTransparency.textAndMnemonic=Transparens
# mnemonic is xxxMnemonic and the index of the character to underline is ColorChooser.hsl.textAndMnemonic=HS&L
# xxxDisplayedMnemonicIndex. ColorChooser.hslHue.textAndMnemonic=Nyans
ColorChooser.hsvNameText=HSV ColorChooser.hslSaturation.textAndMnemonic=M\u00E4ttnad
ColorChooser.hsvMnemonic=72 ColorChooser.hslLightness.textAndMnemonic=Ljusstyrka
ColorChooser.hsvHueText=Nyans ColorChooser.hslTransparency.textAndMnemonic=Transparens
ColorChooser.hsvSaturationText=M\u00E4ttnad ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.hsvValueText=V\u00E4rde ColorChooser.rgbRed.textAndMnemonic=R\u00F6d(&D)
ColorChooser.hsvTransparencyText=Transparens ColorChooser.rgbGreen.textAndMnemonic=Gr\u00F6n(&N)
ColorChooser.hslNameText=HSL ColorChooser.rgbBlue.textAndMnemonic=Bl\u00E5(&B)
ColorChooser.hslMnemonic=76 ColorChooser.rgbAlpha.textAndMnemonic=Alfa
ColorChooser.hslHueText=Nyans ColorChooser.rgbHexCode.textAndMnemonic=F\u00E4rgkod(&F)
ColorChooser.hslSaturationText=M\u00E4ttnad ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.hslLightnessText=Ljusstyrka ColorChooser.cmykCyan.textAndMnemonic=Cyan
ColorChooser.hslTransparencyText=Transparens ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.rgbNameText=RGB ColorChooser.cmykYellow.textAndMnemonic=Gul
ColorChooser.rgbMnemonic=71 ColorChooser.cmykBlack.textAndMnemonic=Svart
ColorChooser.rgbRedText=R\u00F6d ColorChooser.cmykAlpha.textAndMnemonic=Alfa
ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=Gr\u00F6n
ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=Bl\u00E5
ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alfa
ColorChooser.rgbHexCodeText=F\u00E4rgkod
ColorChooser.rgbHexCodeMnemonic=70
ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Cyan
ColorChooser.cmykMagentaText=Magenta
ColorChooser.cmykYellowText=Gul
ColorChooser.cmykBlackText=Svart
ColorChooser.cmykAlphaText=Alfa
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=Ja OptionPane.yesButton.textAndMnemonic=&Ja
OptionPane.yesButtonMnemonic=74 OptionPane.noButton.textAndMnemonic=&Nej
OptionPane.noButtonText=Nej OptionPane.okButton.textAndMnemonic=&OK
OptionPane.noButtonMnemonic=78 OptionPane.cancelButton.textAndMnemonic=&Avbryt
OptionPane.okButtonText=OK OptionPane.title.textAndMnemonic=V\u00E4lj ett alternativ
OptionPane.okButtonMnemonic=O
OptionPane.cancelButtonText=Avbryt
OptionPane.cancelButtonMnemonic=A
OptionPane.titleText=V\u00E4lj ett alternativ
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=Indata OptionPane.inputDialog.titleAndMnemonic=Indata
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=Meddelande OptionPane.messageDialog.titleAndMnemonic=Meddelande
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=Skriver ut PrintingDialog.titleProgress.textAndMnemonic=Skriver ut
PrintingDialog.titleAbortingText=Skriver ut (avbryter) PrintingDialog.titleAborting.textAndMnemonic=Skriver ut (avbryter)
PrintingDialog.contentInitialText=Utskrift p\u00E5g\u00E5r... PrintingDialog.contentInitial.textAndMnemonic=Utskrift p\u00E5g\u00E5r...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=Utskriven sida {0}... PrintingDialog.contentProgress.textAndMnemonic=Utskriven sida {0}...
PrintingDialog.contentAbortingText=Utskriften avbryts... PrintingDialog.contentAborting.textAndMnemonic=Utskriften avbryts...
PrintingDialog.abortButtonText=Avbryt PrintingDialog.abortButton.textAndMnemonic=&Avbryt
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonToolTip.textAndMnemonic=Avbryt utskrift
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=Avbryt utskrift
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Minimera InternalFrame.iconButtonToolTip=Minimera
...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=\u00C5terst\u00E4ll ...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=\u00C5terst\u00E4ll
InternalFrame.closeButtonToolTip=St\u00E4ng InternalFrame.closeButtonToolTip=St\u00E4ng
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=\u00C5terst\u00E4ll InternalFrameTitlePane.restoreButton.textAndMnemonic=\u00C5terst\u00E4ll
InternalFrameTitlePane.moveButtonText=Flytta InternalFrameTitlePane.moveButton.textAndMnemonic=Flytta
InternalFrameTitlePane.sizeButtonText=Storlek InternalFrameTitlePane.sizeButton.textAndMnemonic=Storlek
InternalFrameTitlePane.minimizeButtonText=Minimera InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimera
InternalFrameTitlePane.maximizeButtonText=Maximera InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximera
InternalFrameTitlePane.closeButtonText=St\u00E4ng InternalFrameTitlePane.closeButton.textAndMnemonic=St\u00E4ng
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=Skicka fr\u00E5ga FormView.submitButton.textAndMnemonic=Skicka fr\u00E5ga
FormView.resetButtonText=\u00C5terst\u00E4ll FormView.resetButton.textAndMnemonic=\u00C5terst\u00E4ll
FormView.browseFileButtonText=Bl\u00E4ddra... FormView.browseFileButton.textAndMnemonic=Bl\u00E4ddra...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=format\u00E4ndring AbstractDocument.styleChange.textAndMnemonic=format\u00E4ndring
AbstractDocument.additionText=till\u00E4gg AbstractDocument.addition.textAndMnemonic=till\u00E4gg
AbstractDocument.deletionText=borttagning AbstractDocument.deletion.textAndMnemonic=borttagning
AbstractDocument.undoText=\u00C5ngra AbstractDocument.undo.textAndMnemonic=\u00C5ngra
AbstractDocument.redoText=G\u00F6r om AbstractDocument.redo.textAndMnemonic=G\u00F6r om
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=klicka AbstractButton.click.textAndMnemonic=klicka
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=\u00C5ngra AbstractUndoableEdit.undo.textAndMnemonic=\u00C5ngra
AbstractUndoableEdit.redoText=G\u00F6r om AbstractUndoableEdit.redo.textAndMnemonic=G\u00F6r om
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=v\u00E4xlaPopup ComboBox.togglePopup.textAndMnemonic=v\u00E4xlaPopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=P\u00E5g\u00E5r... ProgressMonitor.progress.textAndMnemonic=P\u00E5g\u00E5r...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=v\u00E4nster knapp SplitPane.leftButton.textAndMnemonic=v\u00E4nster knapp
SplitPane.rightButtonText=h\u00F6ger knapp SplitPane.rightButton.textAndMnemonic=h\u00F6ger knapp
# Used for Isindex # Used for Isindex
IsindexView.prompt=Detta \u00E4r ett s\u00F6kbart index. Ange s\u00F6kord: IsindexView.prompt=Detta \u00E4r ett s\u00F6kbart index. Ange s\u00F6kord:
......
...@@ -15,27 +15,12 @@ ...@@ -15,27 +15,12 @@
# 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
# in java/awt/KeyEvent.java. VK_G is defined as:
#
# public static final int VK_G = 0x47;
#
# 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
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
# for 'a' is 65, 'b' is 66...
#
# The xxDisplayedMnemonicIndex is used to indicate the index of the
# character that should be underlined in the String, with 0
# corresponding to the first character in the String.
# #
# One important thing to remember is that the mnemonic MUST exist in # One important thing to remember is that the mnemonic MUST exist in
# the String, if it does not exist you should add text that makes it # the String, if it does not exist you should add text that makes it
...@@ -45,30 +30,24 @@ ...@@ -45,30 +30,24 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=\u666E\u901A\u7684\u6587\u4EF6 FileChooser.fileDescription.textAndMnemonic=\u666E\u901A\u7684\u6587\u4EF6
FileChooser.directoryDescriptionText=\u76EE\u5F55 FileChooser.directoryDescription.textAndMnemonic=\u76EE\u5F55
FileChooser.newFolderErrorText=\u521B\u5EFA\u65B0\u7684\u6587\u4EF6\u5939\u65F6\u51FA\u9519 FileChooser.newFolderError.textAndMnemonic=\u521B\u5EFA\u65B0\u7684\u6587\u4EF6\u5939\u65F6\u51FA\u9519
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939 FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939
FileChooser.newFolderParentDoesntExistText=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939\u3002\n\n\u7CFB\u7EDF\u627E\u4E0D\u5230\u6307\u5B9A\u7684\u8DEF\u5F84\u3002 FileChooser.newFolderParentDoesntExist.textAndMnemonic=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939\u3002\n\n\u7CFB\u7EDF\u627E\u4E0D\u5230\u6307\u5B9A\u7684\u8DEF\u5F84\u3002
FileChooser.renameErrorTitleText=\u91CD\u547D\u540D\u6587\u4EF6\u6216\u6587\u4EF6\u5939\u65F6\u51FA\u9519 FileChooser.renameErrorTitle.textAndMnemonic=\u91CD\u547D\u540D\u6587\u4EF6\u6216\u6587\u4EF6\u5939\u65F6\u51FA\u9519
FileChooser.renameErrorText=\u65E0\u6CD5\u91CD\u547D\u540D{0} FileChooser.renameError.textAndMnemonic=\u65E0\u6CD5\u91CD\u547D\u540D{0}
FileChooser.renameErrorFileExistsText=\u65E0\u6CD5\u91CD\u547D\u540D{0}: \u5DF2\u5B58\u5728\u5177\u6709\u6240\u6307\u5B9A\u540D\u79F0\u7684\u6587\u4EF6\u3002\u8BF7\u6307\u5B9A\u5176\u4ED6\u6587\u4EF6\u540D\u3002 FileChooser.renameErrorFileExists.textAndMnemonic=\u65E0\u6CD5\u91CD\u547D\u540D{0}: \u5DF2\u5B58\u5728\u5177\u6709\u6240\u6307\u5B9A\u540D\u79F0\u7684\u6587\u4EF6\u3002\u8BF7\u6307\u5B9A\u5176\u4ED6\u6587\u4EF6\u540D\u3002
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6587\u4EF6 FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6587\u4EF6
FileChooser.cancelButtonText=\u53D6\u6D88 FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
FileChooser.cancelButtonMnemonic=67 FileChooser.saveButton.textAndMnemonic=\u4FDD\u5B58(&S)
FileChooser.saveButtonText=\u4FDD\u5B58 FileChooser.openButton.textAndMnemonic=\u6253\u5F00(&O)
FileChooser.saveButtonMnemonic=83 FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
FileChooser.openButtonText=\u6253\u5F00 FileChooser.openDialogTitle.textAndMnemonic=\u6253\u5F00
FileChooser.openButtonMnemonic=79 FileChooser.updateButton.textAndMnemonic=\u66F4\u65B0(&U)
FileChooser.saveDialogTitleText=\u4FDD\u5B58 FileChooser.helpButton.textAndMnemonic=\u5E2E\u52A9(&H)
FileChooser.openDialogTitleText=\u6253\u5F00 FileChooser.directoryOpenButton.textAndMnemonic=\u6253\u5F00(&O)
FileChooser.updateButtonText=\u66F4\u65B0(U)
FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=\u5E2E\u52A9(H)
FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=\u6253\u5F00(O)
FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=NewFolder.{0} ...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846 FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846
FileChooser.saveButtonToolTipText=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6 FileChooser.saveButtonToolTip.textAndMnemonic=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6
FileChooser.openButtonToolTipText=\u6253\u5F00\u6240\u9009\u6587\u4EF6 FileChooser.openButtonToolTip.textAndMnemonic=\u6253\u5F00\u6240\u9009\u6587\u4EF6
FileChooser.updateButtonToolTipText=\u66F4\u65B0\u76EE\u5F55\u5217\u8868 FileChooser.updateButtonToolTip.textAndMnemonic=\u66F4\u65B0\u76EE\u5F55\u5217\u8868
FileChooser.helpButtonToolTipText=FileChooser \u5E2E\u52A9 FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser \u5E2E\u52A9
FileChooser.directoryOpenButtonToolTipText=\u6253\u5F00\u9009\u62E9\u7684\u76EE\u5F55 FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\u6253\u5F00\u9009\u62E9\u7684\u76EE\u5F55
FileChooser.filesListAccessibleName=Files List FileChooser.filesListAccessibleName=Files List
FileChooser.filesDetailsAccessibleName=Files Details FileChooser.filesDetailsAccessibleName=Files Details
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=\u9884\u89C8 ColorChooser.preview.textAndMnemonic=\u9884\u89C8
ColorChooser.okText=\u786E\u5B9A ColorChooser.ok.textAndMnemonic=\u786E\u5B9A
ColorChooser.cancelText=\u53D6\u6D88 ColorChooser.cancel.textAndMnemonic=\u53D6\u6D88
ColorChooser.resetText=\u91CD\u7F6E(R) ColorChooser.reset.textAndMnemonic=\u91CD\u7F6E(&R)
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.sample.textAndMnemonic=\u793A\u4F8B\u6587\u672C \u793A\u4F8B\u6587\u672C
ColorChooser.resetMnemonic=82 ColorChooser.swatches.textAndMnemonic=\u793A\u4F8B(&S)
ColorChooser.sampleText=\u793A\u4F8B\u6587\u672C \u793A\u4F8B\u6587\u672C ColorChooser.swatchesRecent.textAndMnemonic=\u6700\u8FD1:
ColorChooser.swatchesNameText=\u793A\u4F8B(S) ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.swatchesMnemonic=83 ColorChooser.hsvHue.textAndMnemonic=\u8272\u8C03
ColorChooser.swatchesRecentText=\u6700\u8FD1: ColorChooser.hsvSaturation.textAndMnemonic=\u9971\u548C\u5EA6
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX ColorChooser.hsvValue.textAndMnemonic=\u503C
# constant, and an index into the text to render the mnemonic as. The ColorChooser.hsvTransparency.textAndMnemonic=\u900F\u660E\u5EA6
# mnemonic is xxxMnemonic and the index of the character to underline is ColorChooser.hsl.textAndMnemonic=HS&L
# xxxDisplayedMnemonicIndex. ColorChooser.hslHue.textAndMnemonic=\u8272\u8C03
ColorChooser.hsvNameText=HSV ColorChooser.hslSaturation.textAndMnemonic=\u9971\u548C\u5EA6
ColorChooser.hsvMnemonic=72 ColorChooser.hslLightness.textAndMnemonic=\u4EAE\u5EA6
ColorChooser.hsvHueText=\u8272\u8C03 ColorChooser.hslTransparency.textAndMnemonic=\u900F\u660E\u5EA6
ColorChooser.hsvSaturationText=\u9971\u548C\u5EA6 ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.hsvValueText=\u503C ColorChooser.rgbRed.textAndMnemonic=\u7EA2\u8272(&D)
ColorChooser.hsvTransparencyText=\u900F\u660E\u5EA6 ColorChooser.rgbGreen.textAndMnemonic=\u7EFF\u8272(&N)
ColorChooser.hslNameText=HSL ColorChooser.rgbBlue.textAndMnemonic=\u84DD\u8272(&B)
ColorChooser.hslMnemonic=76 ColorChooser.rgbAlpha.textAndMnemonic=Alpha
ColorChooser.hslHueText=\u8272\u8C03 ColorChooser.rgbHexCode.textAndMnemonic=\u989C\u8272\u4EE3\u7801(&C)
ColorChooser.hslSaturationText=\u9971\u548C\u5EA6 ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.hslLightnessText=\u4EAE\u5EA6 ColorChooser.cmykCyan.textAndMnemonic=\u9752\u8272
ColorChooser.hslTransparencyText=\u900F\u660E\u5EA6 ColorChooser.cmykMagenta.textAndMnemonic=\u7D2B\u7EA2\u8272
ColorChooser.rgbNameText=RGB ColorChooser.cmykYellow.textAndMnemonic=\u9EC4\u8272
ColorChooser.rgbMnemonic=71 ColorChooser.cmykBlack.textAndMnemonic=\u9ED1\u8272
ColorChooser.rgbRedText=\u7EA2\u8272 ColorChooser.cmykAlpha.textAndMnemonic=Alpha
ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=\u7EFF\u8272
ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=\u84DD\u8272
ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alpha
ColorChooser.rgbHexCodeText=\u989C\u8272\u4EE3\u7801(C)
ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=\u9752\u8272
ColorChooser.cmykMagentaText=\u7D2B\u7EA2\u8272
ColorChooser.cmykYellowText=\u9EC4\u8272
ColorChooser.cmykBlackText=\u9ED1\u8272
ColorChooser.cmykAlphaText=Alpha
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=\u662F(Y) OptionPane.yesButton.textAndMnemonic=\u662F(&Y)
OptionPane.yesButtonMnemonic=89 OptionPane.noButton.textAndMnemonic=\u5426(&N)
OptionPane.noButtonText=\u5426(N) OptionPane.okButton.textAndMnemonic=\u786E\u5B9A(&O)
OptionPane.noButtonMnemonic=78 OptionPane.cancelButton.textAndMnemonic=\u53D6\u6D88
OptionPane.okButtonText=\u786E\u5B9A OptionPane.title.textAndMnemonic=\u9009\u62E9\u4E00\u4E2A\u9009\u9879
OptionPane.okButtonMnemonic=O
OptionPane.cancelButtonText=\u53D6\u6D88
OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=\u9009\u62E9\u4E00\u4E2A\u9009\u9879
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=\u8F93\u5165 OptionPane.inputDialog.titleAndMnemonic=\u8F93\u5165
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=\u6D88\u606F OptionPane.messageDialog.titleAndMnemonic=\u6D88\u606F
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=\u6253\u5370 PrintingDialog.titleProgress.textAndMnemonic=\u6253\u5370
PrintingDialog.titleAbortingText=\u6253\u5370 (\u6B63\u5728\u4E2D\u6B62) PrintingDialog.titleAborting.textAndMnemonic=\u6253\u5370 (\u6B63\u5728\u4E2D\u6B62)
PrintingDialog.contentInitialText=\u6B63\u5728\u8FDB\u884C\u6253\u5370... PrintingDialog.contentInitial.textAndMnemonic=\u6B63\u5728\u8FDB\u884C\u6253\u5370...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=\u5DF2\u6253\u5370\u9875 {0}... PrintingDialog.contentProgress.textAndMnemonic=\u5DF2\u6253\u5370\u9875 {0}...
PrintingDialog.contentAbortingText=\u6B63\u5728\u4E2D\u6B62\u6253\u5370... PrintingDialog.contentAborting.textAndMnemonic=\u6B63\u5728\u4E2D\u6B62\u6253\u5370...
PrintingDialog.abortButtonText=\u4E2D\u6B62(A) PrintingDialog.abortButton.textAndMnemonic=\u4E2D\u6B62(&A)
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6253\u5370
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=\u4E2D\u6B62\u6253\u5370
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316 InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=\u8FD8\u539F ...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=\u8FD8\u539F
InternalFrame.closeButtonToolTip=\u5173\u95ED InternalFrame.closeButtonToolTip=\u5173\u95ED
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=\u8FD8\u539F InternalFrameTitlePane.restoreButton.textAndMnemonic=\u8FD8\u539F
InternalFrameTitlePane.moveButtonText=\u79FB\u52A8 InternalFrameTitlePane.moveButton.textAndMnemonic=\u79FB\u52A8
InternalFrameTitlePane.sizeButtonText=\u5927\u5C0F InternalFrameTitlePane.sizeButton.textAndMnemonic=\u5927\u5C0F
InternalFrameTitlePane.minimizeButtonText=\u6700\u5C0F\u5316 InternalFrameTitlePane.minimizeButton.textAndMnemonic=\u6700\u5C0F\u5316
InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316 InternalFrameTitlePane.maximizeButton.textAndMnemonic=\u6700\u5927\u5316
InternalFrameTitlePane.closeButtonText=\u5173\u95ED InternalFrameTitlePane.closeButton.textAndMnemonic=\u5173\u95ED
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=\u63D0\u4EA4\u67E5\u8BE2 FormView.submitButton.textAndMnemonic=\u63D0\u4EA4\u67E5\u8BE2
FormView.resetButtonText=\u91CD\u8BBE FormView.resetButton.textAndMnemonic=\u91CD\u8BBE
FormView.browseFileButtonText=\u6D4F\u89C8... FormView.browseFileButton.textAndMnemonic=\u6D4F\u89C8...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=\u6837\u5F0F\u66F4\u6539 AbstractDocument.styleChange.textAndMnemonic=\u6837\u5F0F\u66F4\u6539
AbstractDocument.additionText=\u6DFB\u52A0 AbstractDocument.addition.textAndMnemonic=\u6DFB\u52A0
AbstractDocument.deletionText=\u5220\u9664 AbstractDocument.deletion.textAndMnemonic=\u5220\u9664
AbstractDocument.undoText=\u64A4\u6D88 AbstractDocument.undo.textAndMnemonic=\u64A4\u6D88
AbstractDocument.redoText=\u91CD\u505A AbstractDocument.redo.textAndMnemonic=\u91CD\u505A
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=\u5355\u51FB AbstractButton.click.textAndMnemonic=\u5355\u51FB
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=\u64A4\u6D88 AbstractUndoableEdit.undo.textAndMnemonic=\u64A4\u6D88
AbstractUndoableEdit.redoText=\u91CD\u505A AbstractUndoableEdit.redo.textAndMnemonic=\u91CD\u505A
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=\u8FDB\u5EA6... ProgressMonitor.progress.textAndMnemonic=\u8FDB\u5EA6...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=\u5DE6\u952E SplitPane.leftButton.textAndMnemonic=\u5DE6\u952E
SplitPane.rightButtonText=\u53F3\u952E SplitPane.rightButton.textAndMnemonic=\u53F3\u952E
# Used for Isindex # Used for Isindex
IsindexView.prompt=\u8FD9\u662F\u53EF\u641C\u7D22\u7D22\u5F15\u3002\u8BF7\u8F93\u5165\u641C\u7D22\u5173\u952E\u5B57: IsindexView.prompt=\u8FD9\u662F\u53EF\u641C\u7D22\u7D22\u5F15\u3002\u8BF7\u8F93\u5165\u641C\u7D22\u5173\u952E\u5B57:
......
...@@ -15,27 +15,12 @@ ...@@ -15,27 +15,12 @@
# 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
# in java/awt/KeyEvent.java. VK_G is defined as:
#
# public static final int VK_G = 0x47;
#
# 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
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
# for 'a' is 65, 'b' is 66...
#
# The xxDisplayedMnemonicIndex is used to indicate the index of the
# character that should be underlined in the String, with 0
# corresponding to the first character in the String.
# #
# One important thing to remember is that the mnemonic MUST exist in # One important thing to remember is that the mnemonic MUST exist in
# the String, if it does not exist you should add text that makes it # the String, if it does not exist you should add text that makes it
...@@ -45,30 +30,24 @@ ...@@ -45,30 +30,24 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=\u4E00\u822C\u6A94\u6848 FileChooser.fileDescription.textAndMnemonic=\u4E00\u822C\u6A94\u6848
FileChooser.directoryDescriptionText=\u76EE\u9304 FileChooser.directoryDescription.textAndMnemonic=\u76EE\u9304
FileChooser.newFolderErrorText=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E\u6642\u767C\u751F\u932F\u8AA4 FileChooser.newFolderError.textAndMnemonic=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E\u6642\u767C\u751F\u932F\u8AA4
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E
FileChooser.newFolderParentDoesntExistText=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E\u3002\n\n\u7CFB\u7D71\u627E\u4E0D\u5230\u6307\u5B9A\u7684\u8DEF\u5F91\u3002 FileChooser.newFolderParentDoesntExist.textAndMnemonic=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E\u3002\n\n\u7CFB\u7D71\u627E\u4E0D\u5230\u6307\u5B9A\u7684\u8DEF\u5F91\u3002
FileChooser.renameErrorTitleText=\u91CD\u65B0\u547D\u540D\u6A94\u6848\u6216\u8CC7\u6599\u593E\u6642\u767C\u751F\u932F\u8AA4\u3002 FileChooser.renameErrorTitle.textAndMnemonic=\u91CD\u65B0\u547D\u540D\u6A94\u6848\u6216\u8CC7\u6599\u593E\u6642\u767C\u751F\u932F\u8AA4\u3002
FileChooser.renameErrorText=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0} FileChooser.renameError.textAndMnemonic=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0}
FileChooser.renameErrorFileExistsText=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0}: \u5DF2\u7D93\u5B58\u5728\u60A8\u6240\u6307\u5B9A\u540D\u7A31\u7684\u6A94\u6848\u3002\u8ACB\u6307\u5B9A\u4E0D\u540C\u7684\u540D\u7A31\u3002 FileChooser.renameErrorFileExists.textAndMnemonic=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0}: \u5DF2\u7D93\u5B58\u5728\u60A8\u6240\u6307\u5B9A\u540D\u7A31\u7684\u6A94\u6848\u3002\u8ACB\u6307\u5B9A\u4E0D\u540C\u7684\u540D\u7A31\u3002
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6A94\u6848 FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6A94\u6848
FileChooser.cancelButtonText=\u53D6\u6D88 FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
FileChooser.cancelButtonMnemonic=67 FileChooser.saveButton.textAndMnemonic=\u5132\u5B58(&S)
FileChooser.saveButtonText=\u5132\u5B58 FileChooser.openButton.textAndMnemonic=\u958B\u555F(&O)
FileChooser.saveButtonMnemonic=83 FileChooser.saveDialogTitle.textAndMnemonic=\u5132\u5B58
FileChooser.openButtonText=\u958B\u555F FileChooser.openDialogTitle.textAndMnemonic=\u958B\u555F
FileChooser.openButtonMnemonic=79 FileChooser.updateButton.textAndMnemonic=\u66F4\u65B0(&U)
FileChooser.saveDialogTitleText=\u5132\u5B58 FileChooser.helpButton.textAndMnemonic=\u8AAA\u660E(&H)
FileChooser.openDialogTitleText=\u958B\u555F FileChooser.directoryOpenButton.textAndMnemonic=\u958B\u555F(&O)
FileChooser.updateButtonText=\u66F4\u65B0(U)
FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=\u8AAA\u660E(H)
FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=\u958B\u555F(O)
FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E.{0} ...@@ -83,98 +62,76 @@ FileChooser.other.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6A94\u6848\u9078\u64C7\u5668\u5C0D\u8A71\u65B9\u584A FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6A94\u6848\u9078\u64C7\u5668\u5C0D\u8A71\u65B9\u584A
FileChooser.saveButtonToolTipText=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848 FileChooser.saveButtonToolTip.textAndMnemonic=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848
FileChooser.openButtonToolTipText=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848 FileChooser.openButtonToolTip.textAndMnemonic=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848
FileChooser.updateButtonToolTipText=\u66F4\u65B0\u76EE\u9304\u6E05\u55AE FileChooser.updateButtonToolTip.textAndMnemonic=\u66F4\u65B0\u76EE\u9304\u6E05\u55AE
FileChooser.helpButtonToolTipText=\u300C\u6A94\u6848\u9078\u64C7\u5668\u300D\u8AAA\u660E FileChooser.helpButtonToolTip.textAndMnemonic=\u300C\u6A94\u6848\u9078\u64C7\u5668\u300D\u8AAA\u660E
FileChooser.directoryOpenButtonToolTipText=\u958B\u555F\u9078\u53D6\u7684\u76EE\u9304 FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\u958B\u555F\u9078\u53D6\u7684\u76EE\u9304
FileChooser.filesListAccessibleName=Files List FileChooser.filesListAccessibleName=Files List
FileChooser.filesDetailsAccessibleName=Files Details FileChooser.filesDetailsAccessibleName=Files Details
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=\u9810\u89BD ColorChooser.preview.textAndMnemonic=\u9810\u89BD
ColorChooser.okText=\u78BA\u5B9A ColorChooser.ok.textAndMnemonic=\u78BA\u5B9A
ColorChooser.cancelText=\u53D6\u6D88 ColorChooser.cancel.textAndMnemonic=\u53D6\u6D88
ColorChooser.resetText=\u91CD\u8A2D(R) ColorChooser.reset.textAndMnemonic=\u91CD\u8A2D(&R)
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic ColorChooser.sample.textAndMnemonic=\u7BC4\u4F8B\u6587\u5B57 \u7BC4\u4F8B\u6587\u5B57
ColorChooser.resetMnemonic=82 ColorChooser.swatches.textAndMnemonic=\u8ABF\u8272\u677F(&S)
ColorChooser.sampleText=\u7BC4\u4F8B\u6587\u5B57 \u7BC4\u4F8B\u6587\u5B57 ColorChooser.swatchesRecent.textAndMnemonic=\u6700\u65B0\u9078\u64C7:
ColorChooser.swatchesNameText=\u8ABF\u8272\u677F(S) ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.swatchesMnemonic=83 ColorChooser.hsvHue.textAndMnemonic=\u8272\u8ABF
ColorChooser.swatchesRecentText=\u6700\u65B0\u9078\u64C7: ColorChooser.hsvSaturation.textAndMnemonic=\u5F69\u5EA6
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX ColorChooser.hsvValue.textAndMnemonic=\u6578\u503C
# constant, and an index into the text to render the mnemonic as. The ColorChooser.hsvTransparency.textAndMnemonic=\u900F\u660E\u5EA6
# mnemonic is xxxMnemonic and the index of the character to underline is ColorChooser.hsl.textAndMnemonic=HS&L
# xxxDisplayedMnemonicIndex. ColorChooser.hslHue.textAndMnemonic=\u8272\u8ABF
ColorChooser.hsvNameText=HSV ColorChooser.hslSaturation.textAndMnemonic=\u5F69\u5EA6
ColorChooser.hsvMnemonic=72 ColorChooser.hslLightness.textAndMnemonic=\u4EAE\u5EA6
ColorChooser.hsvHueText=\u8272\u8ABF ColorChooser.hslTransparency.textAndMnemonic=\u900F\u660E\u5EA6
ColorChooser.hsvSaturationText=\u5F69\u5EA6 ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.hsvValueText=\u6578\u503C ColorChooser.rgbRed.textAndMnemonic=\u7D05(&D)
ColorChooser.hsvTransparencyText=\u900F\u660E\u5EA6 ColorChooser.rgbGreen.textAndMnemonic=\u7DA0(&N)
ColorChooser.hslNameText=HSL ColorChooser.rgbBlue.textAndMnemonic=\u85CD(&B)
ColorChooser.hslMnemonic=76 ColorChooser.rgbAlpha.textAndMnemonic=Alpha
ColorChooser.hslHueText=\u8272\u8ABF ColorChooser.rgbHexCode.textAndMnemonic=\u984F\u8272\u4EE3\u78BC(&C)
ColorChooser.hslSaturationText=\u5F69\u5EA6 ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.hslLightnessText=\u4EAE\u5EA6 ColorChooser.cmykCyan.textAndMnemonic=\u85CD\u7DA0\u8272
ColorChooser.hslTransparencyText=\u900F\u660E\u5EA6 ColorChooser.cmykMagenta.textAndMnemonic=\u7D2B\u7D05\u8272
ColorChooser.rgbNameText=RGB ColorChooser.cmykYellow.textAndMnemonic=\u9EC3\u8272
ColorChooser.rgbMnemonic=71 ColorChooser.cmykBlack.textAndMnemonic=\u9ED1\u8272
ColorChooser.rgbRedText=\u7D05 ColorChooser.cmykAlpha.textAndMnemonic=Alpha
ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=\u7DA0
ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=\u85CD
ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alpha
ColorChooser.rgbHexCodeText=\u984F\u8272\u4EE3\u78BC(C)
ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=\u85CD\u7DA0\u8272
ColorChooser.cmykMagentaText=\u7D2B\u7D05\u8272
ColorChooser.cmykYellowText=\u9EC3\u8272
ColorChooser.cmykBlackText=\u9ED1\u8272
ColorChooser.cmykAlphaText=Alpha
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=\u662F(Y) OptionPane.yesButton.textAndMnemonic=\u662F(&Y)
OptionPane.yesButtonMnemonic=89 OptionPane.noButton.textAndMnemonic=\u5426(&N)
OptionPane.noButtonText=\u5426(N) OptionPane.okButton.textAndMnemonic=\u78BA\u5B9A(&O)
OptionPane.noButtonMnemonic=78 OptionPane.cancelButton.textAndMnemonic=\u53D6\u6D88
OptionPane.okButtonText=\u78BA\u5B9A OptionPane.title.textAndMnemonic=\u9078\u53D6\u4E00\u500B\u9078\u9805
OptionPane.okButtonMnemonic=O
OptionPane.cancelButtonText=\u53D6\u6D88
OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=\u9078\u53D6\u4E00\u500B\u9078\u9805
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=\u8F38\u5165 OptionPane.inputDialog.titleAndMnemonic=\u8F38\u5165
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=\u8A0A\u606F OptionPane.messageDialog.titleAndMnemonic=\u8A0A\u606F
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=\u5217\u5370 PrintingDialog.titleProgress.textAndMnemonic=\u5217\u5370
PrintingDialog.titleAbortingText=\u5217\u5370 (\u4E2D\u6B62) PrintingDialog.titleAborting.textAndMnemonic=\u5217\u5370 (\u4E2D\u6B62)
PrintingDialog.contentInitialText=\u6B63\u5728\u5217\u5370... PrintingDialog.contentInitial.textAndMnemonic=\u6B63\u5728\u5217\u5370...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=\u5DF2\u5217\u5370\u7684\u9801\u9762 {0}... PrintingDialog.contentProgress.textAndMnemonic=\u5DF2\u5217\u5370\u7684\u9801\u9762 {0}...
PrintingDialog.contentAbortingText=\u6B63\u5728\u4E2D\u6B62\u5217\u5370... PrintingDialog.contentAborting.textAndMnemonic=\u6B63\u5728\u4E2D\u6B62\u5217\u5370...
PrintingDialog.abortButtonText=\u4E2D\u6B62(A) PrintingDialog.abortButton.textAndMnemonic=\u4E2D\u6B62(&A)
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u5217\u5370
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=\u4E2D\u6B62\u5217\u5370
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316 InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=\u5FA9\u539F ...@@ -183,42 +140,42 @@ InternalFrame.restoreButtonToolTip=\u5FA9\u539F
InternalFrame.closeButtonToolTip=\u95DC\u9589 InternalFrame.closeButtonToolTip=\u95DC\u9589
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=\u5FA9\u539F InternalFrameTitlePane.restoreButton.textAndMnemonic=\u5FA9\u539F
InternalFrameTitlePane.moveButtonText=\u79FB\u52D5 InternalFrameTitlePane.moveButton.textAndMnemonic=\u79FB\u52D5
InternalFrameTitlePane.sizeButtonText=\u5927\u5C0F InternalFrameTitlePane.sizeButton.textAndMnemonic=\u5927\u5C0F
InternalFrameTitlePane.minimizeButtonText=\u6700\u5C0F\u5316 InternalFrameTitlePane.minimizeButton.textAndMnemonic=\u6700\u5C0F\u5316
InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316 InternalFrameTitlePane.maximizeButton.textAndMnemonic=\u6700\u5927\u5316
InternalFrameTitlePane.closeButtonText=\u95DC\u9589 InternalFrameTitlePane.closeButton.textAndMnemonic=\u95DC\u9589
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=\u9001\u51FA\u67E5\u8A62 FormView.submitButton.textAndMnemonic=\u9001\u51FA\u67E5\u8A62
FormView.resetButtonText=\u91CD\u8A2D FormView.resetButton.textAndMnemonic=\u91CD\u8A2D
FormView.browseFileButtonText=\u700F\u89BD... FormView.browseFileButton.textAndMnemonic=\u700F\u89BD...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=\u6A23\u5F0F\u8B8A\u66F4 AbstractDocument.styleChange.textAndMnemonic=\u6A23\u5F0F\u8B8A\u66F4
AbstractDocument.additionText=\u9644\u52A0 AbstractDocument.addition.textAndMnemonic=\u9644\u52A0
AbstractDocument.deletionText=\u522A\u9664 AbstractDocument.deletion.textAndMnemonic=\u522A\u9664
AbstractDocument.undoText=\u9084\u539F AbstractDocument.undo.textAndMnemonic=\u9084\u539F
AbstractDocument.redoText=\u91CD\u505A AbstractDocument.redo.textAndMnemonic=\u91CD\u505A
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=\u6309\u4E00\u4E0B AbstractButton.click.textAndMnemonic=\u6309\u4E00\u4E0B
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=\u9084\u539F AbstractUndoableEdit.undo.textAndMnemonic=\u9084\u539F
AbstractUndoableEdit.redoText=\u91CD\u505A AbstractUndoableEdit.redo.textAndMnemonic=\u91CD\u505A
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=\u5207\u63DB\u5373\u73FE\u5F0F\u8996\u7A97 ComboBox.togglePopup.textAndMnemonic=\u5207\u63DB\u5373\u73FE\u5F0F\u8996\u7A97
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=\u9032\u5EA6... ProgressMonitor.progress.textAndMnemonic=\u9032\u5EA6...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=\u5DE6\u6309\u9215 SplitPane.leftButton.textAndMnemonic=\u5DE6\u6309\u9215
SplitPane.rightButtonText=\u53F3\u6309\u9215 SplitPane.rightButton.textAndMnemonic=\u53F3\u6309\u9215
# Used for Isindex # Used for Isindex
IsindexView.prompt=\u9019\u662F\u4E00\u500B\u53EF\u641C\u5C0B\u7684\u7D22\u5F15\u3002\u8F38\u5165\u641C\u5C0B\u95DC\u9375\u5B57: IsindexView.prompt=\u9019\u662F\u4E00\u500B\u53EF\u641C\u5C0B\u7684\u7D22\u5F15\u3002\u8F38\u5165\u641C\u5C0B\u95DC\u9375\u5B57:
......
...@@ -18,43 +18,34 @@ ...@@ -18,43 +18,34 @@
############ 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.filesOfTypeLabelText=Files of Type:
FileChooser.filesOfTypeLabelMnemonic=84
FileChooser.upFolderToolTipText=Up One Level
FileChooser.upFolderAccessibleName=Up FileChooser.upFolderAccessibleName=Up
FileChooser.homeFolderToolTipText=Home FileChooser.homeFolderToolTip.textAndMnemonic=Home
FileChooser.homeFolderAccessibleName=Home FileChooser.homeFolderAccessibleName=Home
FileChooser.newFolderToolTipText=Create New Folder FileChooser.newFolderToolTip.textAndMnemonic=Create New Folder
FileChooser.newFolderAccessibleName=New Folder FileChooser.newFolderAccessibleName=New Folder
FileChooser.newFolderActionLabelText=New Folder FileChooser.newFolderActionLabel.textAndMnemonic=New Folder
FileChooser.listViewButtonToolTipText=List FileChooser.listViewButtonToolTip.textAndMnemonic=List
FileChooser.listViewButtonAccessibleName=List FileChooser.listViewButtonAccessibleName=List
FileChooser.listViewActionLabelText=List FileChooser.listViewActionLabel.textAndMnemonic=List
FileChooser.detailsViewButtonToolTipText=Details FileChooser.detailsViewButtonToolTip.textAndMnemonic=Details
FileChooser.detailsViewButtonAccessibleName=Details FileChooser.detailsViewButtonAccessibleName=Details
FileChooser.detailsViewActionLabelText=Details FileChooser.detailsViewActionLabel.textAndMnemonic=Details
FileChooser.refreshActionLabelText=Refresh FileChooser.refreshActionLabel.textAndMnemonic=Refresh
FileChooser.viewMenuLabelText=View FileChooser.viewMenuLabel.textAndMnemonic=View
FileChooser.fileNameHeaderText=Name FileChooser.fileNameHeader.textAndMnemonic=Name
FileChooser.fileSizeHeaderText=Size FileChooser.fileSizeHeader.textAndMnemonic=Size
FileChooser.fileTypeHeaderText=Type FileChooser.fileTypeHeader.textAndMnemonic=Type
FileChooser.fileDateHeaderText=Modified FileChooser.fileDateHeader.textAndMnemonic=Modified
FileChooser.fileAttrHeaderText=Attributes FileChooser.fileAttrHeader.textAndMnemonic=Attributes
############ Used by MetalTitlePane if rendering window decorations############ ############ Used by MetalTitlePane if rendering window decorations############
# All mnemonics are KeyEvent.VK_XXX as integers MetalTitlePane.restore.titleAndMnemonic=&Restore
MetalTitlePane.restoreTitle=Restore MetalTitlePane.iconify.titleAndMnemonic=Minimiz&e
MetalTitlePane.restoreMnemonic=82 MetalTitlePane.maximize.titleAndMnemonic=Ma&ximize
MetalTitlePane.iconifyTitle=Minimize MetalTitlePane.close.titleAndMnemonic=&Close
MetalTitlePane.iconifyMnemonic=69
MetalTitlePane.maximizeTitle=Maximize
MetalTitlePane.maximizeMnemonic=88
MetalTitlePane.closeTitle=Close
MetalTitlePane.closeMnemonic=67
...@@ -18,44 +18,35 @@ ...@@ -18,44 +18,35 @@
############ 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.filesOfTypeLabelText=Dateityp:
FileChooser.filesOfTypeLabelMnemonic=84
FileChooser.upFolderToolTipText=Eine Ebene h\u00F6her
FileChooser.upFolderAccessibleName=Nach oben FileChooser.upFolderAccessibleName=Nach oben
FileChooser.homeFolderToolTipText=Home FileChooser.homeFolderToolTip.textAndMnemonic=Home
FileChooser.homeFolderAccessibleName=Home FileChooser.homeFolderAccessibleName=Home
FileChooser.newFolderToolTipText=Neuen Ordner erstellen FileChooser.newFolderToolTip.textAndMnemonic=Neuen Ordner erstellen
FileChooser.newFolderAccessibleName=Neuer Ordner FileChooser.newFolderAccessibleName=Neuer Ordner
FileChooser.newFolderActionLabelText=Neuer Ordner FileChooser.newFolderActionLabel.textAndMnemonic=Neuer Ordner
FileChooser.listViewButtonToolTipText=Liste FileChooser.listViewButtonToolTip.textAndMnemonic=Liste
FileChooser.listViewButtonAccessibleName=Liste FileChooser.listViewButtonAccessibleName=Liste
FileChooser.listViewActionLabelText=Liste FileChooser.listViewActionLabel.textAndMnemonic=Liste
FileChooser.detailsViewButtonToolTipText=Details FileChooser.detailsViewButtonToolTip.textAndMnemonic=Details
FileChooser.detailsViewButtonAccessibleName=Details FileChooser.detailsViewButtonAccessibleName=Details
FileChooser.detailsViewActionLabelText=Details FileChooser.detailsViewActionLabel.textAndMnemonic=Details
FileChooser.refreshActionLabelText=Aktualisieren FileChooser.refreshActionLabel.textAndMnemonic=Aktualisieren
FileChooser.viewMenuLabelText=Ansicht FileChooser.viewMenuLabel.textAndMnemonic=Ansicht
FileChooser.fileNameHeaderText=Name FileChooser.fileNameHeader.textAndMnemonic=Name
FileChooser.fileSizeHeaderText=Gr\u00F6\u00DFe FileChooser.fileSizeHeader.textAndMnemonic=Gr\u00F6\u00DFe
FileChooser.fileTypeHeaderText=Typ FileChooser.fileTypeHeader.textAndMnemonic=Typ
FileChooser.fileDateHeaderText=Ge\u00E4ndert FileChooser.fileDateHeader.textAndMnemonic=Ge\u00E4ndert
FileChooser.fileAttrHeaderText=Attribute FileChooser.fileAttrHeader.textAndMnemonic=Attribute
############ Used by MetalTitlePane if rendering window decorations############ ############ Used by MetalTitlePane if rendering window decorations############
# All mnemonics are KeyEvent.VK_XXX as integers MetalTitlePane.restore.titleAndMnemonic=&Wiederherstellen
MetalTitlePane.restoreTitle=Wiederherstellen MetalTitlePane.iconify.titleAndMnemonic=Minimie&ren
MetalTitlePane.restoreMnemonic=87 MetalTitlePane.maximize.titleAndMnemonic=Ma&ximieren
MetalTitlePane.iconifyTitle=Minimieren MetalTitlePane.close.titleAndMnemonic=Schlie\u00DFen(&S)
MetalTitlePane.iconifyMnemonic=82
MetalTitlePane.maximizeTitle=Maximieren
MetalTitlePane.maximizeMnemonic=88
MetalTitlePane.closeTitle=Schlie\u00DFen
MetalTitlePane.closeMnemonic=83
...@@ -18,44 +18,35 @@ ...@@ -18,44 +18,35 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=Buscar en: FileChooser.lookInLabel.textAndMnemonic=Buscar en(&I):
FileChooser.lookInLabelMnemonic=73 FileChooser.saveInLabel.textAndMnemonic=Guardar en:
FileChooser.saveInLabelText=Guardar en: FileChooser.fileNameLabel.textAndMnemonic=&Nombre de Archivo:
FileChooser.fileNameLabelText=Nombre de Archivo: FileChooser.folderNameLabel.textAndMnemonic=&Nombre de la Carpeta:
FileChooser.fileNameLabelMnemonic=78 FileChooser.filesOfTypeLabel.textAndMnemonic=Archivos de &Tipo:
FileChooser.folderNameLabelText=Nombre de la Carpeta: FileChooser.upFolderToolTip.textAndMnemonic=Subir un Nivel
FileChooser.folderNameLabelMnemonic=78
FileChooser.filesOfTypeLabelText=Archivos de Tipo:
FileChooser.filesOfTypeLabelMnemonic=84
FileChooser.upFolderToolTipText=Subir un Nivel
FileChooser.upFolderAccessibleName=Arriba FileChooser.upFolderAccessibleName=Arriba
FileChooser.homeFolderToolTipText=Inicio FileChooser.homeFolderToolTip.textAndMnemonic=Inicio
FileChooser.homeFolderAccessibleName=Inicio FileChooser.homeFolderAccessibleName=Inicio
FileChooser.newFolderToolTipText=Crear Nueva Carpeta FileChooser.newFolderToolTip.textAndMnemonic=Crear Nueva Carpeta
FileChooser.newFolderAccessibleName=Nueva Carpeta FileChooser.newFolderAccessibleName=Nueva Carpeta
FileChooser.newFolderActionLabelText=Nueva Carpeta FileChooser.newFolderActionLabel.textAndMnemonic=Nueva Carpeta
FileChooser.listViewButtonToolTipText=Lista FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
FileChooser.listViewButtonAccessibleName=Lista FileChooser.listViewButtonAccessibleName=Lista
FileChooser.listViewActionLabelText=Lista FileChooser.listViewActionLabel.textAndMnemonic=Lista
FileChooser.detailsViewButtonToolTipText=Detalles FileChooser.detailsViewButtonToolTip.textAndMnemonic=Detalles
FileChooser.detailsViewButtonAccessibleName=Detalles FileChooser.detailsViewButtonAccessibleName=Detalles
FileChooser.detailsViewActionLabelText=Detalles FileChooser.detailsViewActionLabel.textAndMnemonic=Detalles
FileChooser.refreshActionLabelText=Refrescar FileChooser.refreshActionLabel.textAndMnemonic=Refrescar
FileChooser.viewMenuLabelText=Ver FileChooser.viewMenuLabel.textAndMnemonic=Ver
FileChooser.fileNameHeaderText=Nombre FileChooser.fileNameHeader.textAndMnemonic=Nombre
FileChooser.fileSizeHeaderText=Tama\u00F1o FileChooser.fileSizeHeader.textAndMnemonic=Tama\u00F1o
FileChooser.fileTypeHeaderText=Tipo FileChooser.fileTypeHeader.textAndMnemonic=Tipo
FileChooser.fileDateHeaderText=Modificado FileChooser.fileDateHeader.textAndMnemonic=Modificado
FileChooser.fileAttrHeaderText=Atributos FileChooser.fileAttrHeader.textAndMnemonic=Atributos
############ Used by MetalTitlePane if rendering window decorations############ ############ Used by MetalTitlePane if rendering window decorations############
# All mnemonics are KeyEvent.VK_XXX as integers MetalTitlePane.restore.titleAndMnemonic=&Restaurar
MetalTitlePane.restoreTitle=Restaurar MetalTitlePane.iconify.titleAndMnemonic=Minimi&zar
MetalTitlePane.restoreMnemonic=82 MetalTitlePane.maximize.titleAndMnemonic=Ma&ximizar
MetalTitlePane.iconifyTitle=Minimizar MetalTitlePane.close.titleAndMnemonic=&Cerrar
MetalTitlePane.iconifyMnemonic=90
MetalTitlePane.maximizeTitle=Maximizar
MetalTitlePane.maximizeMnemonic=88
MetalTitlePane.closeTitle=Cerrar
MetalTitlePane.closeMnemonic=67
...@@ -18,44 +18,35 @@ ...@@ -18,44 +18,35 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=Rechercher dans : FileChooser.lookInLabel.textAndMnemonic=Rechercher dans (&I):
FileChooser.lookInLabelMnemonic=73 FileChooser.saveInLabel.textAndMnemonic=Enregistrer dans :
FileChooser.saveInLabelText=Enregistrer dans : FileChooser.fileNameLabel.textAndMnemonic=&Nom du fichier :
FileChooser.fileNameLabelText=Nom du fichier : FileChooser.folderNameLabel.textAndMnemonic=&Nom du dossier :
FileChooser.fileNameLabelMnemonic=78 FileChooser.filesOfTypeLabel.textAndMnemonic=Fichiers de &type :
FileChooser.folderNameLabelText=Nom du dossier : FileChooser.upFolderToolTip.textAndMnemonic=Remonte d'un niveau.
FileChooser.folderNameLabelMnemonic=78
FileChooser.filesOfTypeLabelText=Fichiers de type :
FileChooser.filesOfTypeLabelMnemonic=84
FileChooser.upFolderToolTipText=Remonte d'un niveau.
FileChooser.upFolderAccessibleName=Monter FileChooser.upFolderAccessibleName=Monter
FileChooser.homeFolderToolTipText=R\u00E9pertoire d'origine FileChooser.homeFolderToolTip.textAndMnemonic=R\u00E9pertoire d'origine
FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
FileChooser.newFolderToolTipText=Cr\u00E9e un dossier. FileChooser.newFolderToolTip.textAndMnemonic=Cr\u00E9e un dossier.
FileChooser.newFolderAccessibleName=Nouveau dossier FileChooser.newFolderAccessibleName=Nouveau dossier
FileChooser.newFolderActionLabelText=Nouveau dossier FileChooser.newFolderActionLabel.textAndMnemonic=Nouveau dossier
FileChooser.listViewButtonToolTipText=Liste FileChooser.listViewButtonToolTip.textAndMnemonic=Liste
FileChooser.listViewButtonAccessibleName=Liste FileChooser.listViewButtonAccessibleName=Liste
FileChooser.listViewActionLabelText=Liste FileChooser.listViewActionLabel.textAndMnemonic=Liste
FileChooser.detailsViewButtonToolTipText=D\u00E9tails FileChooser.detailsViewButtonToolTip.textAndMnemonic=D\u00E9tails
FileChooser.detailsViewButtonAccessibleName=D\u00E9tails FileChooser.detailsViewButtonAccessibleName=D\u00E9tails
FileChooser.detailsViewActionLabelText=D\u00E9tails FileChooser.detailsViewActionLabel.textAndMnemonic=D\u00E9tails
FileChooser.refreshActionLabelText=Actualiser FileChooser.refreshActionLabel.textAndMnemonic=Actualiser
FileChooser.viewMenuLabelText=Affichage FileChooser.viewMenuLabel.textAndMnemonic=Affichage
FileChooser.fileNameHeaderText=Nom FileChooser.fileNameHeader.textAndMnemonic=Nom
FileChooser.fileSizeHeaderText=Taille FileChooser.fileSizeHeader.textAndMnemonic=Taille
FileChooser.fileTypeHeaderText=Type FileChooser.fileTypeHeader.textAndMnemonic=Type
FileChooser.fileDateHeaderText=Modifi\u00E9 FileChooser.fileDateHeader.textAndMnemonic=Modifi\u00E9
FileChooser.fileAttrHeaderText=Attributs FileChooser.fileAttrHeader.textAndMnemonic=Attributs
############ Used by MetalTitlePane if rendering window decorations############ ############ Used by MetalTitlePane if rendering window decorations############
# All mnemonics are KeyEvent.VK_XXX as integers MetalTitlePane.restore.titleAndMnemonic=&Restaurer
MetalTitlePane.restoreTitle=Restaurer MetalTitlePane.iconify.titleAndMnemonic=R\u00E9duire(&D)
MetalTitlePane.restoreMnemonic=82 MetalTitlePane.maximize.titleAndMnemonic=&Agrandir
MetalTitlePane.iconifyTitle=R\u00E9duire MetalTitlePane.close.titleAndMnemonic=&Fermer
MetalTitlePane.iconifyMnemonic=68
MetalTitlePane.maximizeTitle=Agrandir
MetalTitlePane.maximizeMnemonic=65
MetalTitlePane.closeTitle=Fermer
MetalTitlePane.closeMnemonic=70
...@@ -18,44 +18,35 @@ ...@@ -18,44 +18,35 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=Cerca in: FileChooser.lookInLabel.textAndMnemonic=Cerca &in:
FileChooser.lookInLabelMnemonic=73 FileChooser.saveInLabel.textAndMnemonic=Salva in:
FileChooser.saveInLabelText=Salva in: FileChooser.fileNameLabel.textAndMnemonic=&Nome file:
FileChooser.fileNameLabelText=Nome file: FileChooser.folderNameLabel.textAndMnemonic=&Nome della cartella:
FileChooser.fileNameLabelMnemonic=78 FileChooser.filesOfTypeLabel.textAndMnemonic=&Tipo file:
FileChooser.folderNameLabelText=Nome della cartella: FileChooser.upFolderToolTip.textAndMnemonic=Cartella superiore
FileChooser.folderNameLabelMnemonic=78
FileChooser.filesOfTypeLabelText=Tipo file:
FileChooser.filesOfTypeLabelMnemonic=84
FileChooser.upFolderToolTipText=Cartella superiore
FileChooser.upFolderAccessibleName=Superiore FileChooser.upFolderAccessibleName=Superiore
FileChooser.homeFolderToolTipText=Home FileChooser.homeFolderToolTip.textAndMnemonic=Home
FileChooser.homeFolderAccessibleName=Home FileChooser.homeFolderAccessibleName=Home
FileChooser.newFolderToolTipText=Crea nuova cartella FileChooser.newFolderToolTip.textAndMnemonic=Crea nuova cartella
FileChooser.newFolderAccessibleName=Nuova cartella FileChooser.newFolderAccessibleName=Nuova cartella
FileChooser.newFolderActionLabelText=Nuova cartella FileChooser.newFolderActionLabel.textAndMnemonic=Nuova cartella
FileChooser.listViewButtonToolTipText=Lista FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
FileChooser.listViewButtonAccessibleName=Lista FileChooser.listViewButtonAccessibleName=Lista
FileChooser.listViewActionLabelText=Lista FileChooser.listViewActionLabel.textAndMnemonic=Lista
FileChooser.detailsViewButtonToolTipText=Dettagli FileChooser.detailsViewButtonToolTip.textAndMnemonic=Dettagli
FileChooser.detailsViewButtonAccessibleName=Dettagli FileChooser.detailsViewButtonAccessibleName=Dettagli
FileChooser.detailsViewActionLabelText=Dettagli FileChooser.detailsViewActionLabel.textAndMnemonic=Dettagli
FileChooser.refreshActionLabelText=Aggiorna FileChooser.refreshActionLabel.textAndMnemonic=Aggiorna
FileChooser.viewMenuLabelText=Visualizza FileChooser.viewMenuLabel.textAndMnemonic=Visualizza
FileChooser.fileNameHeaderText=Nome FileChooser.fileNameHeader.textAndMnemonic=Nome
FileChooser.fileSizeHeaderText=Dimensioni FileChooser.fileSizeHeader.textAndMnemonic=Dimensioni
FileChooser.fileTypeHeaderText=Tipo FileChooser.fileTypeHeader.textAndMnemonic=Tipo
FileChooser.fileDateHeaderText=Modificato FileChooser.fileDateHeader.textAndMnemonic=Modificato
FileChooser.fileAttrHeaderText=Attributi FileChooser.fileAttrHeader.textAndMnemonic=Attributi
############ Used by MetalTitlePane if rendering window decorations############ ############ Used by MetalTitlePane if rendering window decorations############
# All mnemonics are KeyEvent.VK_XXX as integers MetalTitlePane.restore.titleAndMnemonic=&Ripristina
MetalTitlePane.restoreTitle=Ripristina MetalTitlePane.iconify.titleAndMnemonic=Rid&uci a icona
MetalTitlePane.restoreMnemonic=82 MetalTitlePane.maximize.titleAndMnemonic=In&grandisci
MetalTitlePane.iconifyTitle=Riduci a icona MetalTitlePane.close.titleAndMnemonic=&Chiudi
MetalTitlePane.iconifyMnemonic=85
MetalTitlePane.maximizeTitle=Ingrandisci
MetalTitlePane.maximizeMnemonic=71
MetalTitlePane.closeTitle=Chiudi
MetalTitlePane.closeMnemonic=67
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册