提交 2f2ba840 编写于 作者: L lana

Merge

...@@ -165,3 +165,4 @@ b88fc3359dc7edabfa8a228855d8cebf8843c055 jdk8-b40 ...@@ -165,3 +165,4 @@ b88fc3359dc7edabfa8a228855d8cebf8843c055 jdk8-b40
4eac56f073ea8179b1a35fcd2af9b48b0088be9f jdk8-b41 4eac56f073ea8179b1a35fcd2af9b48b0088be9f jdk8-b41
cf5c1f6fbc5ba14163fe0ef8eb8601b33f951372 jdk8-b42 cf5c1f6fbc5ba14163fe0ef8eb8601b33f951372 jdk8-b42
b3246687c3695dff6f461bb407f9db88f7d072e7 jdk8-b43 b3246687c3695dff6f461bb407f9db88f7d072e7 jdk8-b43
db471a7af03168e4441c245b1d9976f720a7cb77 jdk8-b44
# #
# Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. # Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
# #
# This code is free software; you can redistribute it and/or modify it # This code is free software; you can redistribute it and/or modify it
...@@ -100,6 +100,23 @@ FILES_ties = $(subst javax/management/remote/rmi/,javax/management/remote/rmi/ ...@@ -100,6 +100,23 @@ FILES_ties = $(subst javax/management/remote/rmi/,javax/management/remote/rmi/
# so that *_tie classes are generated in package without the prefix # so that *_tie classes are generated in package without the prefix
# org.omg.stub (6375696) # org.omg.stub (6375696)
# #
# To ensure the latest stub generator files are picked up from corba repo
# when available, we need to run with latest rmic version available. rmic
# launch tool not built at this stage but we can invoke via rmi class.
RMIC_JAVA = $(OUTPUTDIR)/bin/java
# need to treat 64bit solaris differently
ifeq ($(PLATFORM)-$(LIBARCH), solaris-amd64)
RMIC_JAVA = $(OUTPUTDIR)/bin/amd64/java
endif
ifeq ($(PLATFORM)-$(LIBARCH), solaris-sparcv9)
RMIC_JAVA = $(OUTPUTDIR)/bin/sparcv9/java
endif
ifeq ($(CROSS_COMPILE_ARCH),)
RMIC = $(RMIC_JAVA) $(JAVA_TOOLS_FLAGS) -cp $(OUTPUTDIR)/classes sun.rmi.rmic.Main
endif
$(CLASSDESTDIR)/%_Stub.class: $(CLASSDESTDIR)/%.class $(CLASSDESTDIR)/%_Stub.class: $(CLASSDESTDIR)/%.class
$(prep-target) $(prep-target)
$(RMIC) -classpath "$(CLASSDESTDIR)" \ $(RMIC) -classpath "$(CLASSDESTDIR)" \
......
...@@ -42,7 +42,7 @@ REQUIRED_ALSA_VERSION = ...@@ -42,7 +42,7 @@ REQUIRED_ALSA_VERSION =
OTHER_CPPFLAGS += -DJAVASE_EMBEDDED OTHER_CPPFLAGS += -DJAVASE_EMBEDDED
# Product naming # Product naming
PRODUCT_SUFFIX = SE Runtime Environment for Embedded PRODUCT_SUFFIX = SE Embedded Runtime Environment
RUNTIME_NAME = $(PRODUCT_NAME) $(PRODUCT_SUFFIX) RUNTIME_NAME = $(PRODUCT_NAME) $(PRODUCT_SUFFIX)
# Reduced JRE locations # Reduced JRE locations
......
...@@ -372,6 +372,7 @@ JAVA_JAVA_java = \ ...@@ -372,6 +372,7 @@ JAVA_JAVA_java = \
java/util/spi/CurrencyNameProvider.java \ java/util/spi/CurrencyNameProvider.java \
java/util/spi/LocaleNameProvider.java \ java/util/spi/LocaleNameProvider.java \
java/util/spi/LocaleServiceProvider.java \ java/util/spi/LocaleServiceProvider.java \
java/util/spi/ResourceBundleControlProvider.java \
java/util/spi/TimeZoneNameProvider.java \ java/util/spi/TimeZoneNameProvider.java \
java/io/Closeable.java \ java/io/Closeable.java \
java/io/Flushable.java \ java/io/Flushable.java \
......
...@@ -88,6 +88,7 @@ SUNWprivate_1.1 { ...@@ -88,6 +88,7 @@ SUNWprivate_1.1 {
Java_sun_nio_ch_IOUtil_fdVal; Java_sun_nio_ch_IOUtil_fdVal;
Java_sun_nio_ch_IOUtil_fdLimit; Java_sun_nio_ch_IOUtil_fdLimit;
Java_sun_nio_ch_IOUtil_initIDs; Java_sun_nio_ch_IOUtil_initIDs;
Java_sun_nio_ch_IOUtil_iovMax;
Java_sun_nio_ch_IOUtil_makePipe; Java_sun_nio_ch_IOUtil_makePipe;
Java_sun_nio_ch_IOUtil_randomBytes; Java_sun_nio_ch_IOUtil_randomBytes;
Java_sun_nio_ch_IOUtil_setfdVal; Java_sun_nio_ch_IOUtil_setfdVal;
......
...@@ -76,6 +76,7 @@ SUNWprivate_1.1 { ...@@ -76,6 +76,7 @@ SUNWprivate_1.1 {
Java_sun_nio_ch_IOUtil_fdLimit; Java_sun_nio_ch_IOUtil_fdLimit;
Java_sun_nio_ch_IOUtil_fdVal; Java_sun_nio_ch_IOUtil_fdVal;
Java_sun_nio_ch_IOUtil_initIDs; Java_sun_nio_ch_IOUtil_initIDs;
Java_sun_nio_ch_IOUtil_iovMax;
Java_sun_nio_ch_IOUtil_makePipe; Java_sun_nio_ch_IOUtil_makePipe;
Java_sun_nio_ch_IOUtil_randomBytes; Java_sun_nio_ch_IOUtil_randomBytes;
Java_sun_nio_ch_IOUtil_setfdVal; Java_sun_nio_ch_IOUtil_setfdVal;
......
/* /*
* Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
package apple.applescript; package apple.applescript;
import java.io.*; import java.io.*;
import java.nio.file.Files;
import java.util.*; import java.util.*;
import java.util.Map.Entry; import java.util.Map.Entry;
...@@ -297,7 +298,7 @@ public class AppleScriptEngine implements ScriptEngine { ...@@ -297,7 +298,7 @@ public class AppleScriptEngine implements ScriptEngine {
File tmpfile; File tmpfile;
FileWriter tmpwrite; FileWriter tmpwrite;
try { try {
tmpfile = File.createTempFile("AppleScriptEngine.", ".scpt"); tmpfile = Files.createTempFile("AppleScriptEngine.", ".scpt").toFile();
tmpwrite = new FileWriter(tmpfile); tmpwrite = new FileWriter(tmpfile);
// read in our input and write directly to tmpfile // read in our input and write directly to tmpfile
......
...@@ -63,6 +63,7 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo ...@@ -63,6 +63,7 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
private static native void nativeSetNSWindowSecurityWarningPositioning(long nsWindowPtr, double x, double y, float biasX, float biasY); private static native void nativeSetNSWindowSecurityWarningPositioning(long nsWindowPtr, double x, double y, float biasX, float biasY);
private static native void nativeSetEnabled(long nsWindowPtr, boolean isEnabled); private static native void nativeSetEnabled(long nsWindowPtr, boolean isEnabled);
private static native void nativeSynthesizeMouseEnteredExitedEvents(long nsWindowPtr); private static native void nativeSynthesizeMouseEnteredExitedEvents(long nsWindowPtr);
private static native void nativeDispose(long nsWindowPtr);
private static native int nativeGetNSWindowDisplayID_AppKitThread(long nsWindowPtr); private static native int nativeGetNSWindowDisplayID_AppKitThread(long nsWindowPtr);
...@@ -423,6 +424,7 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo ...@@ -423,6 +424,7 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
EventQueue.invokeLater(new Runnable() { EventQueue.invokeLater(new Runnable() {
public void run() { public void run() {
contentView.dispose(); contentView.dispose();
nativeDispose(getNSWindowPtr());
CPlatformWindow.super.dispose(); CPlatformWindow.super.dispose();
} }
}); });
......
...@@ -41,10 +41,11 @@ final class CToolkitThreadBlockedHandler implements ToolkitThreadBlockedHandler ...@@ -41,10 +41,11 @@ final class CToolkitThreadBlockedHandler implements ToolkitThreadBlockedHandler
} }
public void enter() { public void enter() {
toolkit.startNativeNestedEventLoop(); // Execute the next AppKit event while we are waiting for system to
// finish our request - this will save us from biting our own tail
toolkit.executeNextAppKitEvent();
} }
public void exit() { public void exit() {
toolkit.stopNativeNestedEventLoop();
} }
} }
...@@ -63,9 +63,7 @@ public class LWCToolkit extends LWToolkit { ...@@ -63,9 +63,7 @@ public class LWCToolkit extends LWToolkit {
private static native void initIDs(); private static native void initIDs();
static native void startNativeNestedEventLoop(); static native void executeNextAppKitEvent();
static native void stopNativeNestedEventLoop();
private static CInputMethodDescriptor sInputMethodDescriptor; private static CInputMethodDescriptor sInputMethodDescriptor;
...@@ -361,9 +359,11 @@ public class LWCToolkit extends LWToolkit { ...@@ -361,9 +359,11 @@ public class LWCToolkit extends LWToolkit {
CWrapper.NSObject.release(screen); CWrapper.NSObject.release(screen);
} }
// Convert between Cocoa's coordinate system and Java. // Convert between Cocoa's coordinate system and Java.
return new Insets(fullScreen.height - workArea.height - workArea.y, int bottom = workArea.y - fullScreen.y;
workArea.x, workArea.y, int top = fullScreen.height - workArea.height - bottom;
fullScreen.width - workArea.width - workArea.x); int left = workArea.x - fullScreen.x;
int right = fullScreen.width - workArea.width - left;
return new Insets(top, left, bottom, right);
} }
@Override @Override
......
...@@ -188,7 +188,9 @@ AWT_ASSERT_APPKIT_THREAD; ...@@ -188,7 +188,9 @@ AWT_ASSERT_APPKIT_THREAD;
#endif #endif
} }
} else { } else {
#if IM_DEBUG
NSLog(@"-> IM does not want to handle event"); NSLog(@"-> IM does not want to handle event");
#endif
[self deliverJavaMouseEvent: event]; [self deliverJavaMouseEvent: event];
} }
} }
......
...@@ -228,6 +228,7 @@ AWT_ASSERT_APPKIT_THREAD; ...@@ -228,6 +228,7 @@ AWT_ASSERT_APPKIT_THREAD;
} }
if (self.nsWindow == nil) return nil; // no hope either if (self.nsWindow == nil) return nil; // no hope either
[self.nsWindow release]; // the property retains the object already
self.isEnabled = YES; self.isEnabled = YES;
self.javaPlatformWindow = platformWindow; self.javaPlatformWindow = platformWindow;
...@@ -677,9 +678,9 @@ AWT_ASSERT_NOT_APPKIT_THREAD; ...@@ -677,9 +678,9 @@ AWT_ASSERT_NOT_APPKIT_THREAD;
styleBits:styleBits styleBits:styleBits
frameRect:frameRect frameRect:frameRect
contentView:contentView]; contentView:contentView];
// the window is released is CPlatformWindow.nativeDispose()
if (window) CFRetain(window); if (window) CFRetain(window.nsWindow);
[window release]; // GC
}]; }];
JNF_COCOA_EXIT(env); JNF_COCOA_EXIT(env);
...@@ -1160,3 +1161,24 @@ JNF_COCOA_ENTER(env); ...@@ -1160,3 +1161,24 @@ JNF_COCOA_ENTER(env);
JNF_COCOA_EXIT(env); JNF_COCOA_EXIT(env);
} }
JNIEXPORT void JNICALL Java_sun_lwawt_macosx_CPlatformWindow_nativeDispose
(JNIEnv *env, jclass clazz, jlong windowPtr)
{
JNF_COCOA_ENTER(env);
NSWindow *nsWindow = OBJC(windowPtr);
[JNFRunLoop performOnMainThreadWaiting:NO withBlock:^(){
AWTWindow *window = (AWTWindow*)[nsWindow delegate];
// AWTWindow holds a reference to the NSWindow in its nsWindow
// property. Unsetting the delegate allows it to be deallocated
// which releases the reference. This, in turn, allows the window
// itself be deallocated.
[nsWindow setDelegate: nil];
[window release];
}];
JNF_COCOA_EXIT(env);
}
...@@ -42,7 +42,6 @@ jint* gButtonDownMasks; ...@@ -42,7 +42,6 @@ jint* gButtonDownMasks;
@implementation AWTToolkit @implementation AWTToolkit
static long eventCount; static long eventCount;
static bool shouldKeepRunningNestedLoop = NO;
+ (long) getEventCount{ + (long) getEventCount{
return eventCount; return eventCount;
...@@ -460,33 +459,18 @@ Java_sun_font_FontManager_populateFontFileNameMap ...@@ -460,33 +459,18 @@ Java_sun_font_FontManager_populateFontFileNameMap
/* /*
* Class: sun_lwawt_macosx_LWCToolkit * Class: sun_lwawt_macosx_LWCToolkit
* Method: startNativeNestedEventLoop * Method: executeNextAppKitEvent
* Signature: ()V * Signature: ()V
*/ */
JNIEXPORT void JNICALL Java_sun_lwawt_macosx_LWCToolkit_startNativeNestedEventLoop JNIEXPORT void JNICALL Java_sun_lwawt_macosx_LWCToolkit_executeNextAppKitEvent
(JNIEnv *env, jclass cls) (JNIEnv *env, jclass cls)
{ {
if(!shouldKeepRunningNestedLoop) { // Simply get the next event in native loop and pass it to execution
NSRunLoop *theRL = [NSRunLoop currentRunLoop]; // We'll be called repeatedly so there's no need to block here
NSApplication * app = [NSApplication sharedApplication]; NSRunLoop *theRL = [NSRunLoop currentRunLoop];
shouldKeepRunningNestedLoop = YES; NSApplication * app = [NSApplication sharedApplication];
while (shouldKeepRunningNestedLoop && [theRL runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]]) NSEvent * event = [app nextEventMatchingMask: 0xFFFFFFFF untilDate:nil inMode:NSDefaultRunLoopMode dequeue:YES];
{ if (event != nil) {
NSEvent * event = [app nextEventMatchingMask: 0xFFFFFFFF untilDate:nil inMode:NSDefaultRunLoopMode dequeue:YES]; [app sendEvent: event];
if (event != nil) {
[app sendEvent: event];
}
}
} }
} }
/*
* Class: sun_lwawt_macosx_LWCToolkit
* Method: stopNativeNestedEventLoop
* Signature: ()V
*/
JNIEXPORT void JNICALL Java_sun_lwawt_macosx_LWCToolkit_stopNativeNestedEventLoop
(JNIEnv *env, jclass cls)
{
shouldKeepRunningNestedLoop = NO;
}
...@@ -63,12 +63,14 @@ OGLGC_DestroyOGLGraphicsConfig(jlong pConfigInfo) ...@@ -63,12 +63,14 @@ OGLGC_DestroyOGLGraphicsConfig(jlong pConfigInfo)
CGLCtxInfo *ctxinfo = (CGLCtxInfo *)oglc->ctxInfo; CGLCtxInfo *ctxinfo = (CGLCtxInfo *)oglc->ctxInfo;
if (ctxinfo != NULL) { if (ctxinfo != NULL) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
[NSOpenGLContext clearCurrentContext]; [NSOpenGLContext clearCurrentContext];
[ctxinfo->context clearDrawable]; [ctxinfo->context clearDrawable];
[ctxinfo->context release]; [ctxinfo->context release];
if (ctxinfo->scratchSurface != 0) { if (ctxinfo->scratchSurface != 0) {
[ctxinfo->scratchSurface release]; [ctxinfo->scratchSurface release];
} }
[pool drain];
free(ctxinfo); free(ctxinfo);
} }
} }
......
...@@ -30,6 +30,8 @@ ...@@ -30,6 +30,8 @@
BOOL fHandlesDocumentTypes; BOOL fHandlesDocumentTypes;
BOOL fHandlesURLTypes; BOOL fHandlesURLTypes;
id <NSApplicationDelegate> realDelegate;
NSMutableArray* queue; NSMutableArray* queue;
} }
...@@ -40,5 +42,9 @@ ...@@ -40,5 +42,9 @@
- (void)processQueuedEventsWithTargetDelegate:(id <NSApplicationDelegate>)delegate; - (void)processQueuedEventsWithTargetDelegate:(id <NSApplicationDelegate>)delegate;
@property(retain) id <NSApplicationDelegate> realDelegate;
@property(retain) NSMutableArray* queue;
@end @end
...@@ -27,8 +27,6 @@ ...@@ -27,8 +27,6 @@
#import "QueuingApplicationDelegate.h" #import "QueuingApplicationDelegate.h"
static id <NSApplicationDelegate> realDelegate = nil;
@interface NSBundle (EAWTOverrides) @interface NSBundle (EAWTOverrides)
- (BOOL)_hasEAWTOverride:(NSString *)key; - (BOOL)_hasEAWTOverride:(NSString *)key;
@end @end
...@@ -44,6 +42,9 @@ static id <NSApplicationDelegate> realDelegate = nil; ...@@ -44,6 +42,9 @@ static id <NSApplicationDelegate> realDelegate = nil;
@implementation QueuingApplicationDelegate @implementation QueuingApplicationDelegate
@synthesize realDelegate;
@synthesize queue;
+ (QueuingApplicationDelegate*) sharedDelegate + (QueuingApplicationDelegate*) sharedDelegate
{ {
static QueuingApplicationDelegate * qad = nil; static QueuingApplicationDelegate * qad = nil;
...@@ -62,7 +63,7 @@ static id <NSApplicationDelegate> realDelegate = nil; ...@@ -62,7 +63,7 @@ static id <NSApplicationDelegate> realDelegate = nil;
return self; return self;
} }
self->queue = [[NSMutableArray arrayWithCapacity: 0] retain]; self.queue = [NSMutableArray arrayWithCapacity: 0];
// If the java application has a bundle with an Info.plist file with // If the java application has a bundle with an Info.plist file with
// a CFBundleDocumentTypes entry, then it is set up to handle Open Doc // a CFBundleDocumentTypes entry, then it is set up to handle Open Doc
...@@ -100,8 +101,8 @@ static id <NSApplicationDelegate> realDelegate = nil; ...@@ -100,8 +101,8 @@ static id <NSApplicationDelegate> realDelegate = nil;
Class clz = [QueuingApplicationDelegate class]; Class clz = [QueuingApplicationDelegate class];
[ctr removeObserver:clz]; [ctr removeObserver:clz];
[self->queue release]; self.queue = nil;
self->queue = nil; self.realDelegate = nil;
[super dealloc]; [super dealloc];
} }
...@@ -109,16 +110,16 @@ static id <NSApplicationDelegate> realDelegate = nil; ...@@ -109,16 +110,16 @@ static id <NSApplicationDelegate> realDelegate = nil;
- (void)_handleOpenURLEvent:(NSAppleEventDescriptor *)openURLEvent withReplyEvent:(NSAppleEventDescriptor *)replyEvent - (void)_handleOpenURLEvent:(NSAppleEventDescriptor *)openURLEvent withReplyEvent:(NSAppleEventDescriptor *)replyEvent
{ {
[self->queue addObject:^(){ [self.queue addObject:[^(){
[realDelegate _handleOpenURLEvent:openURLEvent withReplyEvent:replyEvent]; [self.realDelegate _handleOpenURLEvent:openURLEvent withReplyEvent:replyEvent];
}]; } copy]];
} }
- (void)application:(NSApplication *)theApplication openFiles:(NSArray *)fileNames - (void)application:(NSApplication *)theApplication openFiles:(NSArray *)fileNames
{ {
[self->queue addObject:^(){ [self.queue addObject:[^(){
[realDelegate application:theApplication openFiles:fileNames]; [self.realDelegate application:theApplication openFiles:fileNames];
}]; } copy]];
} }
- (NSApplicationPrintReply)application:(NSApplication *)application printFiles:(NSArray *)fileNames withSettings:(NSDictionary *)printSettings showPrintPanels:(BOOL)showPrintPanels - (NSApplicationPrintReply)application:(NSApplication *)application printFiles:(NSArray *)fileNames withSettings:(NSDictionary *)printSettings showPrintPanels:(BOOL)showPrintPanels
...@@ -127,9 +128,9 @@ static id <NSApplicationDelegate> realDelegate = nil; ...@@ -127,9 +128,9 @@ static id <NSApplicationDelegate> realDelegate = nil;
return NSPrintingCancelled; return NSPrintingCancelled;
} }
[self->queue addObject:^(){ [self.queue addObject:[^(){
[realDelegate application:application printFiles:fileNames withSettings:printSettings showPrintPanels:showPrintPanels]; [self.realDelegate application:application printFiles:fileNames withSettings:printSettings showPrintPanels:showPrintPanels];
}]; } copy]];
// well, a bit premature, but what else can we do?.. // well, a bit premature, but what else can we do?..
return NSPrintingSuccess; return NSPrintingSuccess;
...@@ -137,76 +138,76 @@ static id <NSApplicationDelegate> realDelegate = nil; ...@@ -137,76 +138,76 @@ static id <NSApplicationDelegate> realDelegate = nil;
- (void)_willFinishLaunching - (void)_willFinishLaunching
{ {
QueuingApplicationDelegate * q = self; [self.queue addObject:[^(){
[self->queue addObject:^(){ [[self.realDelegate class] _willFinishLaunching];
[[realDelegate class] _willFinishLaunching]; } copy]];
}];
} }
- (BOOL)applicationShouldHandleReopen:(NSApplication *)theApplication hasVisibleWindows:(BOOL)flag - (BOOL)applicationShouldHandleReopen:(NSApplication *)theApplication hasVisibleWindows:(BOOL)flag
{ {
[self->queue addObject:^(){ [self.queue addObject:[^(){
[realDelegate applicationShouldHandleReopen:theApplication hasVisibleWindows:flag]; [self.realDelegate applicationShouldHandleReopen:theApplication hasVisibleWindows:flag];
}]; } copy]];
return YES; return YES;
} }
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)app - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)app
{ {
[self->queue addObject:^(){ [self.queue addObject:[^(){
[realDelegate applicationShouldTerminate:app]; [self.realDelegate applicationShouldTerminate:app];
}]; } copy]];
return NSTerminateLater; return NSTerminateLater;
} }
- (void)_systemWillPowerOff - (void)_systemWillPowerOff
{ {
[self->queue addObject:^(){ [self.queue addObject:[^(){
[[realDelegate class] _systemWillPowerOff]; [[self.realDelegate class] _systemWillPowerOff];
}]; } copy]];
} }
- (void)_appDidActivate - (void)_appDidActivate
{ {
[self->queue addObject:^(){ [self.queue addObject:[^(){
[[realDelegate class] _appDidActivate]; [[self.realDelegate class] _appDidActivate];
}]; } copy]];
} }
- (void)_appDidDeactivate - (void)_appDidDeactivate
{ {
[self->queue addObject:^(){ [self.queue addObject:[^(){
[[realDelegate class] _appDidDeactivate]; [[self.realDelegate class] _appDidDeactivate];
}]; } copy]];
} }
- (void)_appDidHide - (void)_appDidHide
{ {
[self->queue addObject:^(){ [self.queue addObject:[^(){
[[realDelegate class] _appDidHide]; [[self.realDelegate class] _appDidHide];
}]; } copy]];
} }
- (void)_appDidUnhide - (void)_appDidUnhide
{ {
[self->queue addObject:^(){ [self.queue addObject:[^(){
[[realDelegate class] _appDidUnhide]; [[self.realDelegate class] _appDidUnhide];
}]; } copy]];
} }
- (void)processQueuedEventsWithTargetDelegate:(id <NSApplicationDelegate>)delegate - (void)processQueuedEventsWithTargetDelegate:(id <NSApplicationDelegate>)delegate
{ {
NSUInteger i; self.realDelegate = delegate;
NSUInteger count = [self->queue count];
realDelegate = delegate; NSUInteger i;
NSUInteger count = [self.queue count];
for (i = 0; i < count; i++) { for (i = 0; i < count; i++) {
void (^event)() = (void (^)())[self->queue objectAtIndex: i]; void (^event)() = (void (^)())[self.queue objectAtIndex: i];
event(); event();
[event release];
} }
[self->queue removeAllObjects]; [self.queue removeAllObjects];
} }
@end @end
......
...@@ -926,9 +926,20 @@ class GTKPainter extends SynthPainter { ...@@ -926,9 +926,20 @@ class GTKPainter extends SynthPainter {
int x, int y, int w, int h) { int x, int y, int w, int h) {
// Text is odd in that it uses the TEXT_BACKGROUND vs BACKGROUND. // Text is odd in that it uses the TEXT_BACKGROUND vs BACKGROUND.
JComponent c = context.getComponent(); JComponent c = context.getComponent();
Container container = c.getParent();
Container containerParent = null;
GTKStyle style = (GTKStyle)context.getStyle(); GTKStyle style = (GTKStyle)context.getStyle();
Region id = context.getRegion(); Region id = context.getRegion();
int state = context.getComponentState(); int state = context.getComponentState();
if (c instanceof ListCellRenderer && container != null) {
containerParent = container.getParent();
if (containerParent instanceof JComboBox
&& containerParent.hasFocus()) {
state |= SynthConstants.FOCUSED;
}
}
synchronized (UNIXToolkit.GTK_LOCK) { synchronized (UNIXToolkit.GTK_LOCK) {
if (ENGINE.paintCachedImage(g, x, y, w, h, id, state)) { if (ENGINE.paintCachedImage(g, x, y, w, h, id, state)) {
return; return;
...@@ -938,9 +949,10 @@ class GTKPainter extends SynthPainter { ...@@ -938,9 +949,10 @@ class GTKPainter extends SynthPainter {
int focusSize = 0; int focusSize = 0;
boolean interiorFocus = style.getClassSpecificBoolValue( boolean interiorFocus = style.getClassSpecificBoolValue(
context, "interior-focus", true); context, "interior-focus", true);
focusSize = style.getClassSpecificIntValue(context,
"focus-line-width",1);
if (!interiorFocus && (state & SynthConstants.FOCUSED) != 0) { if (!interiorFocus && (state & SynthConstants.FOCUSED) != 0) {
focusSize = style.getClassSpecificIntValue(context,
"focus-line-width",1);
x += focusSize; x += focusSize;
y += focusSize; y += focusSize;
w -= 2 * focusSize; w -= 2 * focusSize;
...@@ -961,11 +973,25 @@ class GTKPainter extends SynthPainter { ...@@ -961,11 +973,25 @@ class GTKPainter extends SynthPainter {
h - (2 * yThickness), h - (2 * yThickness),
ColorType.TEXT_BACKGROUND); ColorType.TEXT_BACKGROUND);
if (focusSize > 0) { if (focusSize > 0 && (state & SynthConstants.FOCUSED) != 0) {
x -= focusSize; if (!interiorFocus) {
y -= focusSize; x -= focusSize;
w += 2 * focusSize; y -= focusSize;
h += 2 * focusSize; w += 2 * focusSize;
h += 2 * focusSize;
} else {
if (containerParent instanceof JComboBox) {
x += (focusSize + 2);
y += (focusSize + 1);
w -= (2 * focusSize + 1);
h -= (2 * focusSize + 2);
} else {
x += focusSize;
y += focusSize;
w -= 2 * focusSize;
h -= 2 * focusSize;
}
}
ENGINE.paintFocus(g, context, id, gtkState, ENGINE.paintFocus(g, context, id, gtkState,
"entry", x, y, w, h); "entry", x, y, w, h);
} }
......
/* /*
* Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -35,6 +35,7 @@ import java.io.InputStream; ...@@ -35,6 +35,7 @@ import java.io.InputStream;
import java.io.OutputStream; import java.io.OutputStream;
import java.io.PrintStream; import java.io.PrintStream;
import java.text.MessageFormat; import java.text.MessageFormat;
import java.nio.file.Files;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays; import java.util.Arrays;
import java.util.HashMap; import java.util.HashMap;
...@@ -385,9 +386,7 @@ class Driver { ...@@ -385,9 +386,7 @@ class Driver {
if ( base.getParentFile() == null && suffix.equals(".bak")) if ( base.getParentFile() == null && suffix.equals(".bak"))
where = new File(".").getAbsoluteFile(); where = new File(".").getAbsoluteFile();
return Files.createTempFile(where.toPath(), prefix, suffix).toFile();
File f = File.createTempFile(prefix, suffix, where);
return f;
} }
static private static private
......
...@@ -659,7 +659,7 @@ public class CachedRowSetImpl extends BaseRowSet implements RowSet, RowSetIntern ...@@ -659,7 +659,7 @@ public class CachedRowSetImpl extends BaseRowSet implements RowSet, RowSetIntern
* us work with drivers that do not support * us work with drivers that do not support
* getObject with a map in fairly sensible way * getObject with a map in fairly sensible way
*/ */
if (map == null) { if (map == null || map.isEmpty()) {
obj = data.getObject(i); obj = data.getObject(i);
} else { } else {
obj = data.getObject(i, map); obj = data.getObject(i, map);
......
/* /*
* Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -812,101 +812,119 @@ public class CachedRowSetWriter implements TransactionalWriter, Serializable { ...@@ -812,101 +812,119 @@ public class CachedRowSetWriter implements TransactionalWriter, Serializable {
} }
} }
/** /**
* Inserts a row that has been inserted into the given * Inserts a row that has been inserted into the given
* <code>CachedRowSet</code> object into the data source from which * <code>CachedRowSet</code> object into the data source from which
* the rowset is derived, returning <code>false</code> if the insertion * the rowset is derived, returning <code>false</code> if the insertion
* was successful. * was successful.
* *
* @param crs the <code>CachedRowSet</code> object that has had a row inserted * @param crs the <code>CachedRowSet</code> object that has had a row inserted
* and to whose underlying data source the row will be inserted * and to whose underlying data source the row will be inserted
* @param pstmt the <code>PreparedStatement</code> object that will be used * @param pstmt the <code>PreparedStatement</code> object that will be used
* to execute the insertion * to execute the insertion
* @return <code>false</code> to indicate that the insertion was successful; * @return <code>false</code> to indicate that the insertion was successful;
* <code>true</code> otherwise * <code>true</code> otherwise
* @throws SQLException if a database access error occurs * @throws SQLException if a database access error occurs
*/ */
private boolean insertNewRow(CachedRowSet crs, private boolean insertNewRow(CachedRowSet crs,
PreparedStatement pstmt, CachedRowSetImpl crsRes) throws SQLException { PreparedStatement pstmt, CachedRowSetImpl crsRes) throws SQLException {
int i = 0;
int icolCount = crs.getMetaData().getColumnCount(); boolean returnVal = false;
boolean returnVal = false; try (PreparedStatement pstmtSel = con.prepareStatement(selectCmd,
PreparedStatement pstmtSel = con.prepareStatement(selectCmd, ResultSet.TYPE_SCROLL_SENSITIVE,
ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY); ResultSet.CONCUR_READ_ONLY);
ResultSet rs, rs2 = null; ResultSet rs = pstmtSel.executeQuery();
DatabaseMetaData dbmd = con.getMetaData(); ResultSet rs2 = con.getMetaData().getPrimaryKeys(null, null,
rs = pstmtSel.executeQuery(); crs.getTableName())
String table = crs.getTableName(); ) {
rs2 = dbmd.getPrimaryKeys(null, null, table);
String [] primaryKeys = new String[icolCount]; ResultSetMetaData rsmd = crs.getMetaData();
int k = 0; int icolCount = rsmd.getColumnCount();
while(rs2.next()) { String[] primaryKeys = new String[icolCount];
String pkcolname = rs2.getString("COLUMN_NAME"); int k = 0;
primaryKeys[k] = pkcolname; while (rs2.next()) {
k++; primaryKeys[k] = rs2.getString("COLUMN_NAME");
} k++;
}
if(rs.next()) {
for(int j=0;j<primaryKeys.length;j++) { if (rs.next()) {
if(primaryKeys[j] != null) { for (String pkName : primaryKeys) {
if(crs.getObject(primaryKeys[j]) == null){ if (!isPKNameValid(pkName, rsmd)) {
break;
} /* We came here as one of the the primary keys
String crsPK = (crs.getObject(primaryKeys[j])).toString(); * of the table is not present in the cached
String rsPK = (rs.getObject(primaryKeys[j])).toString(); * rowset object, it should be an autoincrement column
if(crsPK.equals(rsPK)) { * and not included while creating CachedRowSet
returnVal = true; * Object, proceed to check for other primary keys
this.crsResolve.moveToInsertRow(); */
for(i = 1; i <= icolCount; i++) { continue;
String colname = (rs.getMetaData()).getColumnName(i); }
if(colname.equals(primaryKeys[j]))
this.crsResolve.updateObject(i,rsPK); Object crsPK = crs.getObject(pkName);
else if (crsPK == null) {
this.crsResolve.updateNull(i); /*
} * It is possible that the PK is null on some databases
this.crsResolve.insertRow(); * and will be filled in at insert time (MySQL for example)
this.crsResolve.moveToCurrentRow(); */
} break;
} }
}
} String rsPK = rs.getObject(pkName).toString();
if(returnVal) if (crsPK.toString().equals(rsPK)) {
return returnVal; returnVal = true;
this.crsResolve.moveToInsertRow();
try { for (int i = 1; i <= icolCount; i++) {
for (i = 1; i <= icolCount; i++) { String colname = (rs.getMetaData()).getColumnName(i);
Object obj = crs.getObject(i); if (colname.equals(pkName))
if (obj != null) { this.crsResolve.updateObject(i,rsPK);
pstmt.setObject(i, obj); else
} else { this.crsResolve.updateNull(i);
pstmt.setNull(i,crs.getMetaData().getColumnType(i)); }
} this.crsResolve.insertRow();
} this.crsResolve.moveToCurrentRow();
}
i = pstmt.executeUpdate(); }
return false; }
} catch (SQLException ex) { if (returnVal) {
/** return returnVal;
* Cursor will come here if executeUpdate fails. }
* There can be many reasons why the insertion failed,
* one can be violation of primary key. try {
* Hence we cannot exactly identify why the insertion failed for (int i = 1; i <= icolCount; i++) {
* Present the current row as a null row to the user. Object obj = crs.getObject(i);
**/ if (obj != null) {
this.crsResolve.moveToInsertRow(); pstmt.setObject(i, obj);
} else {
pstmt.setNull(i,crs.getMetaData().getColumnType(i));
}
}
for(i = 1; i <= icolCount; i++) { pstmt.executeUpdate();
this.crsResolve.updateNull(i); return false;
}
} catch (SQLException ex) {
/*
* Cursor will come here if executeUpdate fails.
* There can be many reasons why the insertion failed,
* one can be violation of primary key.
* Hence we cannot exactly identify why the insertion failed,
* present the current row as a null row to the caller.
*/
this.crsResolve.moveToInsertRow();
for (int i = 1; i <= icolCount; i++) {
this.crsResolve.updateNull(i);
}
this.crsResolve.insertRow(); this.crsResolve.insertRow();
this.crsResolve.moveToCurrentRow(); this.crsResolve.moveToCurrentRow();
return true; return true;
} }
} }
}
/** /**
* Deletes the row in the underlying data source that corresponds to * Deletes the row in the underlying data source that corresponds to
...@@ -1437,4 +1455,25 @@ public class CachedRowSetWriter implements TransactionalWriter, Serializable { ...@@ -1437,4 +1455,25 @@ public class CachedRowSetWriter implements TransactionalWriter, Serializable {
} }
static final long serialVersionUID =-8506030970299413976L; static final long serialVersionUID =-8506030970299413976L;
/**
* Validate whether the Primary Key is known to the CachedRowSet. If it is
* not, it is an auto-generated key
* @param pk - Primary Key to validate
* @param rsmd - ResultSetMetadata for the RowSet
* @return true if found, false otherwise (auto generated key)
*/
private boolean isPKNameValid(String pk, ResultSetMetaData rsmd) throws SQLException {
boolean isValid = false;
int cols = rsmd.getColumnCount();
for(int i = 1; i<= cols; i++) {
String colName = rsmd.getColumnClassName(i);
if(colName.equalsIgnoreCase(pk)) {
isValid = true;
break;
}
}
return isValid;
}
} }
...@@ -764,6 +764,7 @@ public class XmlReaderContentHandler extends DefaultHandler { ...@@ -764,6 +764,7 @@ public class XmlReaderContentHandler extends DefaultHandler {
rs.next(); rs.next();
rs.setOriginalRow(); rs.setOriginalRow();
applyUpdates(); applyUpdates();
rs.deleteRow();
} catch (SQLException ex) { } catch (SQLException ex) {
throw new SAXException(MessageFormat.format(resBundle.handleGetObject("xmlrch.errdel").toString() , ex.getMessage())); throw new SAXException(MessageFormat.format(resBundle.handleGetObject("xmlrch.errdel").toString() , ex.getMessage()));
} }
......
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameTextAndMnemonic=R&GB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# #
# 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
# - # -
# #
# 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
# exist. This will typically take the form 'XXXX (M)' where M is the # exist. This will typically take the form 'XXXX (M)' where M is the
# character for the mnemonic. # character for the mnemonic.
# #
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescription.textAndMnemonic=Generic File FileChooser.fileDescription.textAndMnemonic=Generic File
FileChooser.directoryDescription.textAndMnemonic=Directory FileChooser.directoryDescription.textAndMnemonic=Directory
FileChooser.newFolderError.textAndMnemonic=Error creating new folder FileChooser.newFolderError.textAndMnemonic=Error creating new folder
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Unable to create folder FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Unable to create folder
FileChooser.newFolderParentDoesntExist.textAndMnemonic=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.renameErrorTitle.textAndMnemonic=Error Renaming File or Folder FileChooser.renameErrorTitle.textAndMnemonic=Error Renaming File or Folder
FileChooser.renameError.textAndMnemonic=Cannot rename {0} FileChooser.renameError.textAndMnemonic=Cannot rename {0}
FileChooser.renameErrorFileExists.textAndMnemonic=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.acceptAllFileFilter.textAndMnemonic=All Files FileChooser.acceptAllFileFilter.textAndMnemonic=All Files
FileChooser.cancelButton.textAndMnemonic=Cancel FileChooser.cancelButton.textAndMnemonic=Cancel
FileChooser.saveButton.textAndMnemonic=&Save FileChooser.saveButton.textAndMnemonic=&Save
FileChooser.openButton.textAndMnemonic=&Open FileChooser.openButton.textAndMnemonic=&Open
FileChooser.saveDialogTitle.textAndMnemonic=Save FileChooser.saveDialogTitle.textAndMnemonic=Save
FileChooser.openDialogTitle.textAndMnemonic=Open FileChooser.openDialogTitle.textAndMnemonic=Open
FileChooser.updateButton.textAndMnemonic=&Update FileChooser.updateButton.textAndMnemonic=&Update
FileChooser.helpButton.textAndMnemonic=&Help FileChooser.helpButton.textAndMnemonic=&Help
FileChooser.directoryOpenButton.textAndMnemonic=&Open FileChooser.directoryOpenButton.textAndMnemonic=&Open
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} MB FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=New Folder FileChooser.win32.newFolder=New Folder
FileChooser.win32.newFolder.subsequent=New Folder ({0}) FileChooser.win32.newFolder.subsequent=New Folder ({0})
FileChooser.other.newFolder=NewFolder FileChooser.other.newFolder=NewFolder
FileChooser.other.newFolder.subsequent=NewFolder.{0} FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTip.textAndMnemonic=Abort file chooser dialog FileChooser.cancelButtonToolTip.textAndMnemonic=Abort file chooser dialog
FileChooser.saveButtonToolTip.textAndMnemonic=Save selected file FileChooser.saveButtonToolTip.textAndMnemonic=Save selected file
FileChooser.openButtonToolTip.textAndMnemonic=Open selected file FileChooser.openButtonToolTip.textAndMnemonic=Open selected file
FileChooser.updateButtonToolTip.textAndMnemonic=Update directory listing FileChooser.updateButtonToolTip.textAndMnemonic=Update directory listing
FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser help FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser help
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=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.preview.textAndMnemonic=Preview ColorChooser.preview.textAndMnemonic=Preview
ColorChooser.ok.textAndMnemonic=OK ColorChooser.ok.textAndMnemonic=OK
ColorChooser.cancel.textAndMnemonic=Cancel ColorChooser.cancel.textAndMnemonic=Cancel
ColorChooser.reset.textAndMnemonic=&Reset ColorChooser.reset.textAndMnemonic=&Reset
ColorChooser.sample.textAndMnemonic=Sample Text Sample Text ColorChooser.sample.textAndMnemonic=Sample Text Sample Text
ColorChooser.swatches.textAndMnemonic=&Swatches ColorChooser.swatches.textAndMnemonic=&Swatches
ColorChooser.swatchesRecent.textAndMnemonic=Recent: ColorChooser.swatchesRecent.textAndMnemonic=Recent:
ColorChooser.hsv.textAndMnemonic=&HSV ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.hsvHue.textAndMnemonic=Hue ColorChooser.hsvHue.textAndMnemonic=Hue
ColorChooser.hsvSaturation.textAndMnemonic=Saturation ColorChooser.hsvSaturation.textAndMnemonic=Saturation
ColorChooser.hsvValue.textAndMnemonic=Value ColorChooser.hsvValue.textAndMnemonic=Value
ColorChooser.hsvTransparency.textAndMnemonic=Transparency ColorChooser.hsvTransparency.textAndMnemonic=Transparency
ColorChooser.hsl.textAndMnemonic=HS&L ColorChooser.hsl.textAndMnemonic=HS&L
ColorChooser.hslHue.textAndMnemonic=Hue ColorChooser.hslHue.textAndMnemonic=Hue
ColorChooser.hslSaturation.textAndMnemonic=Saturation ColorChooser.hslSaturation.textAndMnemonic=Saturation
ColorChooser.hslLightness.textAndMnemonic=Lightness ColorChooser.hslLightness.textAndMnemonic=Lightness
ColorChooser.hslTransparency.textAndMnemonic=Transparency ColorChooser.hslTransparency.textAndMnemonic=Transparency
ColorChooser.rgb.textAndMnemonic=R&GB ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.rgbRed.textAndMnemonic=Re&d ColorChooser.rgbRed.textAndMnemonic=Re&d
ColorChooser.rgbGreen.textAndMnemonic=Gree&n ColorChooser.rgbGreen.textAndMnemonic=Gree&n
ColorChooser.rgbBlue.textAndMnemonic=&Blue ColorChooser.rgbBlue.textAndMnemonic=&Blue
ColorChooser.rgbAlpha.textAndMnemonic=Alpha ColorChooser.rgbAlpha.textAndMnemonic=Alpha
ColorChooser.rgbHexCode.textAndMnemonic=&Color Code ColorChooser.rgbHexCode.textAndMnemonic=&Color Code
ColorChooser.cmyk.textAndMnemonic=C&MYK ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.cmykCyan.textAndMnemonic=Cyan ColorChooser.cmykCyan.textAndMnemonic=Cyan
ColorChooser.cmykMagenta.textAndMnemonic=Magenta ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.cmykYellow.textAndMnemonic=Yellow ColorChooser.cmykYellow.textAndMnemonic=Yellow
ColorChooser.cmykBlack.textAndMnemonic=Black ColorChooser.cmykBlack.textAndMnemonic=Black
ColorChooser.cmykAlpha.textAndMnemonic=Alpha ColorChooser.cmykAlpha.textAndMnemonic=Alpha
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# 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.yesButton.textAndMnemonic=&Yes OptionPane.yesButton.textAndMnemonic=&Yes
OptionPane.noButton.textAndMnemonic=&No OptionPane.noButton.textAndMnemonic=&No
OptionPane.okButton.textAndMnemonic=OK OptionPane.okButton.textAndMnemonic=OK
#OptionPane.okButtonMnemonic=0 #OptionPane.okButtonMnemonic=0
OptionPane.cancelButton.textAndMnemonic=Cancel OptionPane.cancelButton.textAndMnemonic=Cancel
#OptionPane.cancelButtonMnemonic=0 #OptionPane.cancelButtonMnemonic=0
OptionPane.title.textAndMnemonic=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.inputDialog.titleAndMnemonic=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.messageDialog.titleAndMnemonic=Message OptionPane.messageDialog.titleAndMnemonic=Message
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgress.textAndMnemonic=Printing PrintingDialog.titleProgress.textAndMnemonic=Printing
PrintingDialog.titleAborting.textAndMnemonic=Printing (Aborting) PrintingDialog.titleAborting.textAndMnemonic=Printing (Aborting)
PrintingDialog.contentInitial.textAndMnemonic=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.contentProgress.textAndMnemonic=Printed page {0}... PrintingDialog.contentProgress.textAndMnemonic=Printed page {0}...
PrintingDialog.contentAborting.textAndMnemonic=Printing aborting... PrintingDialog.contentAborting.textAndMnemonic=Printing aborting...
PrintingDialog.abortButton.textAndMnemonic=&Abort PrintingDialog.abortButton.textAndMnemonic=&Abort
PrintingDialog.abortButtonToolTip.textAndMnemonic=Abort Printing PrintingDialog.abortButtonToolTip.textAndMnemonic=Abort Printing
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Minimize InternalFrame.iconButtonToolTip=Minimize
InternalFrame.maxButtonToolTip=Maximize InternalFrame.maxButtonToolTip=Maximize
InternalFrame.restoreButtonToolTip=Restore InternalFrame.restoreButtonToolTip=Restore
InternalFrame.closeButtonToolTip=Close InternalFrame.closeButtonToolTip=Close
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButton.textAndMnemonic=Restore InternalFrameTitlePane.restoreButton.textAndMnemonic=Restore
InternalFrameTitlePane.moveButton.textAndMnemonic=Move InternalFrameTitlePane.moveButton.textAndMnemonic=Move
InternalFrameTitlePane.sizeButton.textAndMnemonic=Size InternalFrameTitlePane.sizeButton.textAndMnemonic=Size
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimize InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimize
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximize InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximize
InternalFrameTitlePane.closeButton.textAndMnemonic=Close InternalFrameTitlePane.closeButton.textAndMnemonic=Close
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButton.textAndMnemonic=Submit Query FormView.submitButton.textAndMnemonic=Submit Query
FormView.resetButton.textAndMnemonic=Reset FormView.resetButton.textAndMnemonic=Reset
FormView.browseFileButton.textAndMnemonic=Browse... FormView.browseFileButton.textAndMnemonic=Browse...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChange.textAndMnemonic=style change AbstractDocument.styleChange.textAndMnemonic=style change
AbstractDocument.addition.textAndMnemonic=addition AbstractDocument.addition.textAndMnemonic=addition
AbstractDocument.deletion.textAndMnemonic=deletion AbstractDocument.deletion.textAndMnemonic=deletion
AbstractDocument.undo.textAndMnemonic=Undo AbstractDocument.undo.textAndMnemonic=Undo
AbstractDocument.redo.textAndMnemonic=Redo AbstractDocument.redo.textAndMnemonic=Redo
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.click.textAndMnemonic=click AbstractButton.click.textAndMnemonic=click
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undo.textAndMnemonic=Undo AbstractUndoableEdit.undo.textAndMnemonic=Undo
AbstractUndoableEdit.redo.textAndMnemonic=Redo AbstractUndoableEdit.redo.textAndMnemonic=Redo
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopup.textAndMnemonic=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progress.textAndMnemonic=Progress... ProgressMonitor.progress.textAndMnemonic=Progress...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButton.textAndMnemonic=left button SplitPane.leftButton.textAndMnemonic=left button
SplitPane.rightButton.textAndMnemonic=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:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximize InternalFrameTitlePane.maximizeButtonAccessibleName=Maximize
InternalFrameTitlePane.closeButtonAccessibleName=Close InternalFrameTitlePane.closeButtonAccessibleName=Close
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameTextAndMnemonic=R&GB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# #
# 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
# - # -
# #
# 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
# exist. This will typically take the form 'XXXX (M)' where M is the # exist. This will typically take the form 'XXXX (M)' where M is the
# character for the mnemonic. # character for the mnemonic.
# #
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescription.textAndMnemonic=Allgemeine Datei FileChooser.fileDescription.textAndMnemonic=Allgemeine Datei
FileChooser.directoryDescription.textAndMnemonic=Verzeichnis FileChooser.directoryDescription.textAndMnemonic=Verzeichnis
FileChooser.newFolderError.textAndMnemonic=Fehler beim Erstellen eines neuen Ordners FileChooser.newFolderError.textAndMnemonic=Fehler beim Erstellen eines neuen Ordners
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Ordner kann nicht erstellt werden FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Ordner kann nicht erstellt werden
FileChooser.newFolderParentDoesntExist.textAndMnemonic=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.renameErrorTitle.textAndMnemonic=Fehler beim Umbenennen von Datei oder Ordner FileChooser.renameErrorTitle.textAndMnemonic=Fehler beim Umbenennen von Datei oder Ordner
FileChooser.renameError.textAndMnemonic={0} kann nicht umbenannt werden FileChooser.renameError.textAndMnemonic={0} kann nicht umbenannt werden
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.renameErrorFileExists.textAndMnemonic={0} kann nicht umbenannt werden: Es ist bereits eine Datei mit dem angegebenen Namen vorhanden. Geben Sie einen anderen Dateinamen an.
FileChooser.acceptAllFileFilter.textAndMnemonic=Alle Dateien FileChooser.acceptAllFileFilter.textAndMnemonic=Alle Dateien
FileChooser.cancelButton.textAndMnemonic=&Abbrechen FileChooser.cancelButton.textAndMnemonic=Abbrechen
FileChooser.saveButton.textAndMnemonic=&Speichern FileChooser.saveButton.textAndMnemonic=&Speichern
FileChooser.openButton.textAndMnemonic=\u00D6ffnen(&F) FileChooser.openButton.textAndMnemonic=\u00D6ffnen(&F)
FileChooser.saveDialogTitle.textAndMnemonic=Speichern FileChooser.saveDialogTitle.textAndMnemonic=Speichern
FileChooser.openDialogTitle.textAndMnemonic=\u00D6ffnen FileChooser.openDialogTitle.textAndMnemonic=\u00D6ffnen
FileChooser.updateButton.textAndMnemonic=A&ktualisieren FileChooser.updateButton.textAndMnemonic=A&ktualisieren
FileChooser.helpButton.textAndMnemonic=&Hilfe FileChooser.helpButton.textAndMnemonic=&Hilfe
FileChooser.directoryOpenButton.textAndMnemonic=\u00D6ffnen(&F) FileChooser.directoryOpenButton.textAndMnemonic=\u00D6ffnen(&F)
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} MB FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=Neuer Ordner FileChooser.win32.newFolder=Neuer Ordner
FileChooser.win32.newFolder.subsequent=Neuer Ordner ({0}) FileChooser.win32.newFolder.subsequent=Neuer Ordner ({0})
FileChooser.other.newFolder=NewFolder FileChooser.other.newFolder=NewFolder
FileChooser.other.newFolder.subsequent=NewFolder.{0} FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTip.textAndMnemonic=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen FileChooser.cancelButtonToolTip.textAndMnemonic=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen
FileChooser.saveButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei speichern FileChooser.saveButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei speichern
FileChooser.openButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei \u00F6ffnen FileChooser.openButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei \u00F6ffnen
FileChooser.updateButtonToolTip.textAndMnemonic=Verzeichnisliste aktualisieren FileChooser.updateButtonToolTip.textAndMnemonic=Verzeichnisliste aktualisieren
FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser-Hilfe FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser-Hilfe
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=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.preview.textAndMnemonic=Vorschau ColorChooser.preview.textAndMnemonic=Vorschau
ColorChooser.ok.textAndMnemonic=OK ColorChooser.ok.textAndMnemonic=OK
ColorChooser.cancel.textAndMnemonic=Abbrechen ColorChooser.cancel.textAndMnemonic=Abbrechen
ColorChooser.reset.textAndMnemonic=Zur\u00FCcksetzen(&Z) ColorChooser.reset.textAndMnemonic=Zur\u00FCcksetzen(&Z)
ColorChooser.sample.textAndMnemonic=Beispieltext Beispieltext ColorChooser.sample.textAndMnemonic=Beispieltext Beispieltext
ColorChooser.swatches.textAndMnemonic=&Swatches ColorChooser.swatches.textAndMnemonic=&Swatches
ColorChooser.swatchesRecent.textAndMnemonic=Aktuell: ColorChooser.swatchesRecent.textAndMnemonic=Aktuell:
ColorChooser.hsv.textAndMnemonic=&HSV ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.hsvHue.textAndMnemonic=Farbton ColorChooser.hsvHue.textAndMnemonic=Farbton
ColorChooser.hsvSaturation.textAndMnemonic=S\u00E4ttigung ColorChooser.hsvSaturation.textAndMnemonic=S\u00E4ttigung
ColorChooser.hsvValue.textAndMnemonic=Wert ColorChooser.hsvValue.textAndMnemonic=Wert
ColorChooser.hsvTransparency.textAndMnemonic=Transparenz ColorChooser.hsvTransparency.textAndMnemonic=Transparenz
ColorChooser.hsl.textAndMnemonic=HS&L ColorChooser.hsl.textAndMnemonic=HS&L
ColorChooser.hslHue.textAndMnemonic=Farbton ColorChooser.hslHue.textAndMnemonic=Farbton
ColorChooser.hslSaturation.textAndMnemonic=S\u00E4ttigung ColorChooser.hslSaturation.textAndMnemonic=S\u00E4ttigung
ColorChooser.hslLightness.textAndMnemonic=Helligkeit ColorChooser.hslLightness.textAndMnemonic=Helligkeit
ColorChooser.hslTransparency.textAndMnemonic=Transparenz ColorChooser.hslTransparency.textAndMnemonic=Transparenz
ColorChooser.rgb.textAndMnemonic=R&GB ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.rgbRed.textAndMnemonic=Ro&t ColorChooser.rgbRed.textAndMnemonic=Ro&t
ColorChooser.rgbGreen.textAndMnemonic=Gr\u00FCn(&N) ColorChooser.rgbGreen.textAndMnemonic=Gr\u00FCn(&N)
ColorChooser.rgbBlue.textAndMnemonic=&Blau ColorChooser.rgbBlue.textAndMnemonic=&Blau
ColorChooser.rgbAlpha.textAndMnemonic=Alpha ColorChooser.rgbAlpha.textAndMnemonic=Alpha
ColorChooser.rgbHexCode.textAndMnemonic=&Farbcode ColorChooser.rgbHexCode.textAndMnemonic=&Farbcode
ColorChooser.cmyk.textAndMnemonic=C&MYK ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.cmykCyan.textAndMnemonic=Zyan ColorChooser.cmykCyan.textAndMnemonic=Zyan
ColorChooser.cmykMagenta.textAndMnemonic=Magenta ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.cmykYellow.textAndMnemonic=Gelb ColorChooser.cmykYellow.textAndMnemonic=Gelb
ColorChooser.cmykBlack.textAndMnemonic=Schwarz ColorChooser.cmykBlack.textAndMnemonic=Schwarz
ColorChooser.cmykAlpha.textAndMnemonic=Alpha ColorChooser.cmykAlpha.textAndMnemonic=Alpha
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# 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.yesButton.textAndMnemonic=&Ja OptionPane.yesButton.textAndMnemonic=&Ja
OptionPane.noButton.textAndMnemonic=&Nein OptionPane.noButton.textAndMnemonic=&Nein
OptionPane.okButton.textAndMnemonic=&OK OptionPane.okButton.textAndMnemonic=&OK
OptionPane.cancelButton.textAndMnemonic=&Abbrechen OptionPane.cancelButton.textAndMnemonic=&Abbrechen
OptionPane.title.textAndMnemonic=Option ausw\u00E4hlen OptionPane.title.textAndMnemonic=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.inputDialog.titleAndMnemonic=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.messageDialog.titleAndMnemonic=Meldung OptionPane.messageDialog.titleAndMnemonic=Meldung
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgress.textAndMnemonic=Drucken PrintingDialog.titleProgress.textAndMnemonic=Drucken
PrintingDialog.titleAborting.textAndMnemonic=Drucken (Abbruch) PrintingDialog.titleAborting.textAndMnemonic=Drucken (Abbruch)
PrintingDialog.contentInitial.textAndMnemonic=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.contentProgress.textAndMnemonic=Seite {0} wurde gedruckt... PrintingDialog.contentProgress.textAndMnemonic=Seite {0} wurde gedruckt...
PrintingDialog.contentAborting.textAndMnemonic=Druckvorgang wird abgebrochen... PrintingDialog.contentAborting.textAndMnemonic=Druckvorgang wird abgebrochen...
PrintingDialog.abortButton.textAndMnemonic=&Abbruch PrintingDialog.abortButton.textAndMnemonic=&Abbruch
PrintingDialog.abortButtonToolTip.textAndMnemonic=Druckvorgang abbrechen PrintingDialog.abortButtonToolTip.textAndMnemonic=Druckvorgang abbrechen
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Minimieren InternalFrame.iconButtonToolTip=Minimieren
InternalFrame.maxButtonToolTip=Maximieren InternalFrame.maxButtonToolTip=Maximieren
InternalFrame.restoreButtonToolTip=Wiederherstellen InternalFrame.restoreButtonToolTip=Wiederherstellen
InternalFrame.closeButtonToolTip=Schlie\u00DFen InternalFrame.closeButtonToolTip=Schlie\u00DFen
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButton.textAndMnemonic=Wiederherstellen InternalFrameTitlePane.restoreButton.textAndMnemonic=Wiederherstellen
InternalFrameTitlePane.moveButton.textAndMnemonic=Verschieben InternalFrameTitlePane.moveButton.textAndMnemonic=Verschieben
InternalFrameTitlePane.sizeButton.textAndMnemonic=Gr\u00F6\u00DFe InternalFrameTitlePane.sizeButton.textAndMnemonic=Gr\u00F6\u00DFe
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimieren InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimieren
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximieren InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximieren
InternalFrameTitlePane.closeButton.textAndMnemonic=Schlie\u00DFen InternalFrameTitlePane.closeButton.textAndMnemonic=Schlie\u00DFen
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButton.textAndMnemonic=Abfrage weiterleiten FormView.submitButton.textAndMnemonic=Abfrage weiterleiten
FormView.resetButton.textAndMnemonic=Zur\u00FCcksetzen FormView.resetButton.textAndMnemonic=Zur\u00FCcksetzen
FormView.browseFileButton.textAndMnemonic=Durchsuchen... FormView.browseFileButton.textAndMnemonic=Durchsuchen...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChange.textAndMnemonic=Formatvorlagen\u00E4nderung AbstractDocument.styleChange.textAndMnemonic=Formatvorlagen\u00E4nderung
AbstractDocument.addition.textAndMnemonic=Hinzuf\u00FCgen AbstractDocument.addition.textAndMnemonic=Hinzuf\u00FCgen
AbstractDocument.deletion.textAndMnemonic=L\u00F6schen AbstractDocument.deletion.textAndMnemonic=L\u00F6schen
AbstractDocument.undo.textAndMnemonic=R\u00FCckg\u00E4ngig AbstractDocument.undo.textAndMnemonic=R\u00FCckg\u00E4ngig
AbstractDocument.redo.textAndMnemonic=Wiederherstellen AbstractDocument.redo.textAndMnemonic=Wiederherstellen
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.click.textAndMnemonic=Klicken AbstractButton.click.textAndMnemonic=Klicken
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undo.textAndMnemonic=R\u00FCckg\u00E4ngig AbstractUndoableEdit.undo.textAndMnemonic=R\u00FCckg\u00E4ngig
AbstractUndoableEdit.redo.textAndMnemonic=Wiederherstellen AbstractUndoableEdit.redo.textAndMnemonic=Wiederherstellen
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopup.textAndMnemonic=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progress.textAndMnemonic=Fortschritt... ProgressMonitor.progress.textAndMnemonic=Fortschritt...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButton.textAndMnemonic=linke Schaltfl\u00E4che SplitPane.leftButton.textAndMnemonic=linke Schaltfl\u00E4che
SplitPane.rightButton.textAndMnemonic=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:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Als Symbol darstellen InternalFrameTitlePane.iconifyButtonAccessibleName=Als Symbol darstellen
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximieren InternalFrameTitlePane.maximizeButtonAccessibleName=Maximieren
InternalFrameTitlePane.closeButtonAccessibleName=Schlie\u00DFen InternalFrameTitlePane.closeButtonAccessibleName=Schlie\u00DFen
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameTextAndMnemonic=R&GB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# 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
# - # -
# #
# 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
# exist. This will typically take the form 'XXXX (M)' where M is the # exist. This will typically take the form 'XXXX (M)' where M is the
# character for the mnemonic. # character for the mnemonic.
# #
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescription.textAndMnemonic=Archivo Gen\u00E9rico FileChooser.fileDescription.textAndMnemonic=Archivo Gen\u00E9rico
FileChooser.directoryDescription.textAndMnemonic=Directorio FileChooser.directoryDescription.textAndMnemonic=Directorio
FileChooser.newFolderError.textAndMnemonic=Error al crear una nueva carpeta FileChooser.newFolderError.textAndMnemonic=Error al crear una nueva carpeta
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=No se ha podido crear la carpeta FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=No se ha podido crear la carpeta
FileChooser.newFolderParentDoesntExist.textAndMnemonic=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.renameErrorTitle.textAndMnemonic=Error al cambiar el nombre del archivo o carpeta FileChooser.renameErrorTitle.textAndMnemonic=Error al cambiar el nombre del archivo o carpeta
FileChooser.renameError.textAndMnemonic=No se puede cambiar el nombre de {0} FileChooser.renameError.textAndMnemonic=No se puede cambiar el nombre de {0}
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.renameErrorFileExists.textAndMnemonic=No se puede cambiar el nombre de {0}: ya existe un archivo con el nombre especificado. Especifique otro nombre de archivo.
FileChooser.acceptAllFileFilter.textAndMnemonic=Todos los Archivos FileChooser.acceptAllFileFilter.textAndMnemonic=Todos los Archivos
FileChooser.cancelButton.textAndMnemonic=&Cancelar FileChooser.cancelButton.textAndMnemonic=Cancelar
FileChooser.saveButton.textAndMnemonic=&Guardar FileChooser.saveButton.textAndMnemonic=&Guardar
FileChooser.openButton.textAndMnemonic=A&brir FileChooser.openButton.textAndMnemonic=A&brir
FileChooser.saveDialogTitle.textAndMnemonic=Guardar FileChooser.saveDialogTitle.textAndMnemonic=Guardar
FileChooser.openDialogTitle.textAndMnemonic=Abrir FileChooser.openDialogTitle.textAndMnemonic=Abrir
FileChooser.updateButton.textAndMnemonic=Act&ualizar FileChooser.updateButton.textAndMnemonic=Act&ualizar
FileChooser.helpButton.textAndMnemonic=A&yuda FileChooser.helpButton.textAndMnemonic=A&yuda
FileChooser.directoryOpenButton.textAndMnemonic=&Abrir FileChooser.directoryOpenButton.textAndMnemonic=&Abrir
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} MB FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=Nueva Carpeta FileChooser.win32.newFolder=Nueva Carpeta
FileChooser.win32.newFolder.subsequent=Nueva Carpeta ({0}) FileChooser.win32.newFolder.subsequent=Nueva Carpeta ({0})
FileChooser.other.newFolder=Nueva Carpeta FileChooser.other.newFolder=Nueva Carpeta
FileChooser.other.newFolder.subsequent=Nueva Carpeta.{0} FileChooser.other.newFolder.subsequent=Nueva Carpeta.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTip.textAndMnemonic=Cuadro de di\u00E1logo para abortar el selector de archivos FileChooser.cancelButtonToolTip.textAndMnemonic=Cuadro de di\u00E1logo para abortar el selector de archivos
FileChooser.saveButtonToolTip.textAndMnemonic=Guardar archivo seleccionado FileChooser.saveButtonToolTip.textAndMnemonic=Guardar archivo seleccionado
FileChooser.openButtonToolTip.textAndMnemonic=Abrir archivo seleccionado FileChooser.openButtonToolTip.textAndMnemonic=Abrir archivo seleccionado
FileChooser.updateButtonToolTip.textAndMnemonic=Actualizar lista de directorios FileChooser.updateButtonToolTip.textAndMnemonic=Actualizar lista de directorios
FileChooser.helpButtonToolTip.textAndMnemonic=Ayuda del Selector de Archivos FileChooser.helpButtonToolTip.textAndMnemonic=Ayuda del Selector de Archivos
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=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.preview.textAndMnemonic=Presentaci\u00F3n Preliminar ColorChooser.preview.textAndMnemonic=Presentaci\u00F3n Preliminar
ColorChooser.ok.textAndMnemonic=Aceptar ColorChooser.ok.textAndMnemonic=Aceptar
ColorChooser.cancel.textAndMnemonic=Cancelar ColorChooser.cancel.textAndMnemonic=Cancelar
ColorChooser.reset.textAndMnemonic=&Restablecer ColorChooser.reset.textAndMnemonic=&Restablecer
ColorChooser.sample.textAndMnemonic=Texto de Ejemplo Texto de Ejemplo ColorChooser.sample.textAndMnemonic=Texto de Ejemplo Texto de Ejemplo
ColorChooser.swatches.textAndMnemonic=Mue&stras ColorChooser.swatches.textAndMnemonic=Mue&stras
ColorChooser.swatchesRecent.textAndMnemonic=Reciente: ColorChooser.swatchesRecent.textAndMnemonic=Reciente:
ColorChooser.hsv.textAndMnemonic=&HSV ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.hsvHue.textAndMnemonic=Matiz ColorChooser.hsvHue.textAndMnemonic=Matiz
ColorChooser.hsvSaturation.textAndMnemonic=Saturaci\u00F3n ColorChooser.hsvSaturation.textAndMnemonic=Saturaci\u00F3n
ColorChooser.hsvValue.textAndMnemonic=Valor ColorChooser.hsvValue.textAndMnemonic=Valor
ColorChooser.hsvTransparency.textAndMnemonic=Transparencia ColorChooser.hsvTransparency.textAndMnemonic=Transparencia
ColorChooser.hsl.textAndMnemonic=HS&L ColorChooser.hsl.textAndMnemonic=HS&L
ColorChooser.hslHue.textAndMnemonic=Matiz ColorChooser.hslHue.textAndMnemonic=Matiz
ColorChooser.hslSaturation.textAndMnemonic=Saturaci\u00F3n ColorChooser.hslSaturation.textAndMnemonic=Saturaci\u00F3n
ColorChooser.hslLightness.textAndMnemonic=Iluminaci\u00F3n ColorChooser.hslLightness.textAndMnemonic=Iluminaci\u00F3n
ColorChooser.hslTransparency.textAndMnemonic=Transparencia ColorChooser.hslTransparency.textAndMnemonic=Transparencia
ColorChooser.rgb.textAndMnemonic=R&GB ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.rgbRed.textAndMnemonic=Ro&jo ColorChooser.rgbRed.textAndMnemonic=Ro&jo
ColorChooser.rgbGreen.textAndMnemonic=&Verde ColorChooser.rgbGreen.textAndMnemonic=&Verde
ColorChooser.rgbBlue.textAndMnemonic=A&zul ColorChooser.rgbBlue.textAndMnemonic=A&zul
ColorChooser.rgbAlpha.textAndMnemonic=Alfa ColorChooser.rgbAlpha.textAndMnemonic=Alfa
ColorChooser.rgbHexCode.textAndMnemonic=C\u00F3digo de Color(&C) ColorChooser.rgbHexCode.textAndMnemonic=C\u00F3digo de Color(&C)
ColorChooser.cmyk.textAndMnemonic=C&MYK ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.cmykCyan.textAndMnemonic=Cian ColorChooser.cmykCyan.textAndMnemonic=Cian
ColorChooser.cmykMagenta.textAndMnemonic=Magenta ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.cmykYellow.textAndMnemonic=Amarillo ColorChooser.cmykYellow.textAndMnemonic=Amarillo
ColorChooser.cmykBlack.textAndMnemonic=Negro ColorChooser.cmykBlack.textAndMnemonic=Negro
ColorChooser.cmykAlpha.textAndMnemonic=Alfa ColorChooser.cmykAlpha.textAndMnemonic=Alfa
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# 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.yesButton.textAndMnemonic=S\u00ED(&S) OptionPane.yesButton.textAndMnemonic=S\u00ED(&S)
OptionPane.noButton.textAndMnemonic=&No OptionPane.noButton.textAndMnemonic=&No
OptionPane.okButton.textAndMnemonic=Aceptar(&O) OptionPane.okButton.textAndMnemonic=Aceptar(&O)
OptionPane.cancelButton.textAndMnemonic=&Cancelar OptionPane.cancelButton.textAndMnemonic=&Cancelar
OptionPane.title.textAndMnemonic=Seleccionar una Opci\u00F3n OptionPane.title.textAndMnemonic=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.inputDialog.titleAndMnemonic=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.messageDialog.titleAndMnemonic=Mensaje OptionPane.messageDialog.titleAndMnemonic=Mensaje
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgress.textAndMnemonic=Impresi\u00F3n PrintingDialog.titleProgress.textAndMnemonic=Impresi\u00F3n
PrintingDialog.titleAborting.textAndMnemonic=Impresi\u00F3n (Abortando) PrintingDialog.titleAborting.textAndMnemonic=Impresi\u00F3n (Abortando)
PrintingDialog.contentInitial.textAndMnemonic=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.contentProgress.textAndMnemonic=P\u00E1gina impresa {0}... PrintingDialog.contentProgress.textAndMnemonic=P\u00E1gina impresa {0}...
PrintingDialog.contentAborting.textAndMnemonic=Abortando la impresi\u00F3n... PrintingDialog.contentAborting.textAndMnemonic=Abortando la impresi\u00F3n...
PrintingDialog.abortButton.textAndMnemonic=&Abortar PrintingDialog.abortButton.textAndMnemonic=&Abortar
PrintingDialog.abortButtonToolTip.textAndMnemonic=Abortar Impresi\u00F3n PrintingDialog.abortButtonToolTip.textAndMnemonic=Abortar Impresi\u00F3n
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Minimizar InternalFrame.iconButtonToolTip=Minimizar
InternalFrame.maxButtonToolTip=Maximizar InternalFrame.maxButtonToolTip=Maximizar
InternalFrame.restoreButtonToolTip=Restaurar InternalFrame.restoreButtonToolTip=Restaurar
InternalFrame.closeButtonToolTip=Cerrar InternalFrame.closeButtonToolTip=Cerrar
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurar InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurar
InternalFrameTitlePane.moveButton.textAndMnemonic=Mover InternalFrameTitlePane.moveButton.textAndMnemonic=Mover
InternalFrameTitlePane.sizeButton.textAndMnemonic=Tama\u00F1o InternalFrameTitlePane.sizeButton.textAndMnemonic=Tama\u00F1o
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimizar InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimizar
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximizar InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximizar
InternalFrameTitlePane.closeButton.textAndMnemonic=Cerrar InternalFrameTitlePane.closeButton.textAndMnemonic=Cerrar
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButton.textAndMnemonic=Enviar Consulta FormView.submitButton.textAndMnemonic=Enviar Consulta
FormView.resetButton.textAndMnemonic=Restablecer FormView.resetButton.textAndMnemonic=Restablecer
FormView.browseFileButton.textAndMnemonic=Examinar... FormView.browseFileButton.textAndMnemonic=Examinar...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChange.textAndMnemonic=cambio de estilo AbstractDocument.styleChange.textAndMnemonic=cambio de estilo
AbstractDocument.addition.textAndMnemonic=agregaci\u00F3n AbstractDocument.addition.textAndMnemonic=agregaci\u00F3n
AbstractDocument.deletion.textAndMnemonic=supresi\u00F3n AbstractDocument.deletion.textAndMnemonic=supresi\u00F3n
AbstractDocument.undo.textAndMnemonic=Deshacer AbstractDocument.undo.textAndMnemonic=Deshacer
AbstractDocument.redo.textAndMnemonic=Rehacer AbstractDocument.redo.textAndMnemonic=Rehacer
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.click.textAndMnemonic=hacer clic AbstractButton.click.textAndMnemonic=hacer clic
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undo.textAndMnemonic=Deshacer AbstractUndoableEdit.undo.textAndMnemonic=Deshacer
AbstractUndoableEdit.redo.textAndMnemonic=Rehacer AbstractUndoableEdit.redo.textAndMnemonic=Rehacer
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopup.textAndMnemonic=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progress.textAndMnemonic=Progreso... ProgressMonitor.progress.textAndMnemonic=Progreso...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButton.textAndMnemonic=bot\u00F3n izquierdo SplitPane.leftButton.textAndMnemonic=bot\u00F3n izquierdo
SplitPane.rightButton.textAndMnemonic=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:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Convertir en Icono InternalFrameTitlePane.iconifyButtonAccessibleName=Convertir en Icono
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar
InternalFrameTitlePane.closeButtonAccessibleName=Cerrar InternalFrameTitlePane.closeButtonAccessibleName=Cerrar
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameTextAndMnemonic=R&GB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# 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
# - # -
# #
# 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
# exist. This will typically take the form 'XXXX (M)' where M is the # exist. This will typically take the form 'XXXX (M)' where M is the
# character for the mnemonic. # character for the mnemonic.
# #
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescription.textAndMnemonic=Fichier g\u00E9n\u00E9rique FileChooser.fileDescription.textAndMnemonic=Fichier g\u00E9n\u00E9rique
FileChooser.directoryDescription.textAndMnemonic=R\u00E9pertoire FileChooser.directoryDescription.textAndMnemonic=R\u00E9pertoire
FileChooser.newFolderError.textAndMnemonic=Erreur lors de la cr\u00E9ation du dossier FileChooser.newFolderError.textAndMnemonic=Erreur lors de la cr\u00E9ation du dossier
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Impossible de cr\u00E9er le dossier FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Impossible de cr\u00E9er le dossier
FileChooser.newFolderParentDoesntExist.textAndMnemonic=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.renameErrorTitle.textAndMnemonic=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.renameError.textAndMnemonic=Impossible de renommer {0} FileChooser.renameError.textAndMnemonic=Impossible de renommer {0}
FileChooser.renameErrorFileExists.textAndMnemonic=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.acceptAllFileFilter.textAndMnemonic=Tous les fichiers FileChooser.acceptAllFileFilter.textAndMnemonic=Tous les fichiers
FileChooser.cancelButton.textAndMnemonic=&Annuler FileChooser.cancelButton.textAndMnemonic=Annuler
FileChooser.saveButton.textAndMnemonic=Enregi&strer FileChooser.saveButton.textAndMnemonic=Enregi&strer
FileChooser.openButton.textAndMnemonic=&Ouvrir FileChooser.openButton.textAndMnemonic=&Ouvrir
FileChooser.saveDialogTitle.textAndMnemonic=Enregistrer FileChooser.saveDialogTitle.textAndMnemonic=Enregistrer
FileChooser.openDialogTitle.textAndMnemonic=Ouvrir FileChooser.openDialogTitle.textAndMnemonic=Ouvrir
FileChooser.updateButton.textAndMnemonic=Mettre \u00E0 jour(&U) FileChooser.updateButton.textAndMnemonic=Mettre \u00E0 jour(&U)
FileChooser.helpButton.textAndMnemonic=&Aide FileChooser.helpButton.textAndMnemonic=&Aide
FileChooser.directoryOpenButton.textAndMnemonic=&Ouvrir FileChooser.directoryOpenButton.textAndMnemonic=&Ouvrir
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} MB FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=Nouveau dossier FileChooser.win32.newFolder=Nouveau dossier
FileChooser.win32.newFolder.subsequent=Nouveau dossier ({0}) FileChooser.win32.newFolder.subsequent=Nouveau dossier ({0})
FileChooser.other.newFolder=NewFolder FileChooser.other.newFolder=NewFolder
FileChooser.other.newFolder.subsequent=NewFolder.{0} FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTip.textAndMnemonic=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.saveButtonToolTip.textAndMnemonic=Enregistre le fichier s\u00E9lectionn\u00E9 FileChooser.saveButtonToolTip.textAndMnemonic=Enregistre le fichier s\u00E9lectionn\u00E9
FileChooser.openButtonToolTip.textAndMnemonic=Ouvre le fichier s\u00E9lectionn\u00E9 FileChooser.openButtonToolTip.textAndMnemonic=Ouvre le fichier s\u00E9lectionn\u00E9
FileChooser.updateButtonToolTip.textAndMnemonic=Met \u00E0 jour la liste des r\u00E9pertoires FileChooser.updateButtonToolTip.textAndMnemonic=Met \u00E0 jour la liste des r\u00E9pertoires
FileChooser.helpButtonToolTip.textAndMnemonic=Aide du s\u00E9lecteur de fichiers FileChooser.helpButtonToolTip.textAndMnemonic=Aide du s\u00E9lecteur de fichiers
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=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.preview.textAndMnemonic=Aper\u00E7u ColorChooser.preview.textAndMnemonic=Aper\u00E7u
ColorChooser.ok.textAndMnemonic=OK ColorChooser.ok.textAndMnemonic=OK
ColorChooser.cancel.textAndMnemonic=Annuler ColorChooser.cancel.textAndMnemonic=Annuler
ColorChooser.reset.textAndMnemonic=R\u00E9initialiser(&R) ColorChooser.reset.textAndMnemonic=R\u00E9initialiser(&R)
ColorChooser.sample.textAndMnemonic=Echantillon de texte Echantillon de texte ColorChooser.sample.textAndMnemonic=Echantillon de texte Echantillon de texte
ColorChooser.swatches.textAndMnemonic=&Echantillons ColorChooser.swatches.textAndMnemonic=&Echantillons
ColorChooser.swatchesRecent.textAndMnemonic=Dernier : ColorChooser.swatchesRecent.textAndMnemonic=Dernier :
ColorChooser.hsv.textAndMnemonic=&TSV ColorChooser.hsv.textAndMnemonic=&TSV
ColorChooser.hsvHue.textAndMnemonic=Teinte ColorChooser.hsvHue.textAndMnemonic=Teinte
ColorChooser.hsvSaturation.textAndMnemonic=Saturation ColorChooser.hsvSaturation.textAndMnemonic=Saturation
ColorChooser.hsvValue.textAndMnemonic=Valeur ColorChooser.hsvValue.textAndMnemonic=Valeur
ColorChooser.hsvTransparency.textAndMnemonic=Transparence ColorChooser.hsvTransparency.textAndMnemonic=Transparence
ColorChooser.hsl.textAndMnemonic=TS&L ColorChooser.hsl.textAndMnemonic=TS&L
ColorChooser.hslHue.textAndMnemonic=Teinte ColorChooser.hslHue.textAndMnemonic=Teinte
ColorChooser.hslSaturation.textAndMnemonic=Saturation ColorChooser.hslSaturation.textAndMnemonic=Saturation
ColorChooser.hslLightness.textAndMnemonic=Lumi\u00E8re ColorChooser.hslLightness.textAndMnemonic=Lumi\u00E8re
ColorChooser.hslTransparency.textAndMnemonic=Transparence ColorChooser.hslTransparency.textAndMnemonic=Transparence
ColorChooser.rgb.textAndMnemonic=R&VB ColorChooser.rgb.textAndMnemonic=R&VB
ColorChooser.rgbRed.textAndMnemonic=R&ouge ColorChooser.rgbRed.textAndMnemonic=R&ouge
ColorChooser.rgbGreen.textAndMnemonic=&Vert ColorChooser.rgbGreen.textAndMnemonic=&Vert
ColorChooser.rgbBlue.textAndMnemonic=&Bleu ColorChooser.rgbBlue.textAndMnemonic=&Bleu
ColorChooser.rgbAlpha.textAndMnemonic=Alpha ColorChooser.rgbAlpha.textAndMnemonic=Alpha
ColorChooser.rgbHexCode.textAndMnemonic=&Code couleur ColorChooser.rgbHexCode.textAndMnemonic=&Code couleur
ColorChooser.cmyk.textAndMnemonic=C&MYK ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.cmykCyan.textAndMnemonic=Cyan ColorChooser.cmykCyan.textAndMnemonic=Cyan
ColorChooser.cmykMagenta.textAndMnemonic=Magenta ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.cmykYellow.textAndMnemonic=Jaune ColorChooser.cmykYellow.textAndMnemonic=Jaune
ColorChooser.cmykBlack.textAndMnemonic=Noir ColorChooser.cmykBlack.textAndMnemonic=Noir
ColorChooser.cmykAlpha.textAndMnemonic=Alpha ColorChooser.cmykAlpha.textAndMnemonic=Alpha
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# 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.yesButton.textAndMnemonic=&Oui OptionPane.yesButton.textAndMnemonic=&Oui
OptionPane.noButton.textAndMnemonic=&Non OptionPane.noButton.textAndMnemonic=&Non
OptionPane.okButton.textAndMnemonic=&OK OptionPane.okButton.textAndMnemonic=&OK
OptionPane.cancelButton.textAndMnemonic=&Annuler OptionPane.cancelButton.textAndMnemonic=&Annuler
OptionPane.title.textAndMnemonic=S\u00E9lectionner une option OptionPane.title.textAndMnemonic=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.inputDialog.titleAndMnemonic=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.messageDialog.titleAndMnemonic=Message OptionPane.messageDialog.titleAndMnemonic=Message
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgress.textAndMnemonic=Impression PrintingDialog.titleProgress.textAndMnemonic=Impression
PrintingDialog.titleAborting.textAndMnemonic=Impression (abandon) PrintingDialog.titleAborting.textAndMnemonic=Impression (abandon)
PrintingDialog.contentInitial.textAndMnemonic=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.contentProgress.textAndMnemonic=Page {0} imprim\u00E9e... PrintingDialog.contentProgress.textAndMnemonic=Page {0} imprim\u00E9e...
PrintingDialog.contentAborting.textAndMnemonic=Abandon de l'impression... PrintingDialog.contentAborting.textAndMnemonic=Abandon de l'impression...
PrintingDialog.abortButton.textAndMnemonic=&Abandonner PrintingDialog.abortButton.textAndMnemonic=&Abandonner
PrintingDialog.abortButtonToolTip.textAndMnemonic=Abandonner l'impression PrintingDialog.abortButtonToolTip.textAndMnemonic=Abandonner l'impression
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=R\u00E9duire InternalFrame.iconButtonToolTip=R\u00E9duire
InternalFrame.maxButtonToolTip=Agrandir InternalFrame.maxButtonToolTip=Agrandir
InternalFrame.restoreButtonToolTip=Restaurer InternalFrame.restoreButtonToolTip=Restaurer
InternalFrame.closeButtonToolTip=Fermer InternalFrame.closeButtonToolTip=Fermer
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurer InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurer
InternalFrameTitlePane.moveButton.textAndMnemonic=D\u00E9placer InternalFrameTitlePane.moveButton.textAndMnemonic=D\u00E9placer
InternalFrameTitlePane.sizeButton.textAndMnemonic=Taille InternalFrameTitlePane.sizeButton.textAndMnemonic=Taille
InternalFrameTitlePane.minimizeButton.textAndMnemonic=R\u00E9duire InternalFrameTitlePane.minimizeButton.textAndMnemonic=R\u00E9duire
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Agrandir InternalFrameTitlePane.maximizeButton.textAndMnemonic=Agrandir
InternalFrameTitlePane.closeButton.textAndMnemonic=Fermer InternalFrameTitlePane.closeButton.textAndMnemonic=Fermer
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButton.textAndMnemonic=Soumettre la requ\u00EAte FormView.submitButton.textAndMnemonic=Soumettre la requ\u00EAte
FormView.resetButton.textAndMnemonic=R\u00E9initialiser FormView.resetButton.textAndMnemonic=R\u00E9initialiser
FormView.browseFileButton.textAndMnemonic=Parcourir... FormView.browseFileButton.textAndMnemonic=Parcourir...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChange.textAndMnemonic=modification de style AbstractDocument.styleChange.textAndMnemonic=modification de style
AbstractDocument.addition.textAndMnemonic=ajout AbstractDocument.addition.textAndMnemonic=ajout
AbstractDocument.deletion.textAndMnemonic=suppression AbstractDocument.deletion.textAndMnemonic=suppression
AbstractDocument.undo.textAndMnemonic=Annuler AbstractDocument.undo.textAndMnemonic=Annuler
AbstractDocument.redo.textAndMnemonic=R\u00E9tablir AbstractDocument.redo.textAndMnemonic=R\u00E9tablir
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.click.textAndMnemonic=cliquer AbstractButton.click.textAndMnemonic=cliquer
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undo.textAndMnemonic=Annuler AbstractUndoableEdit.undo.textAndMnemonic=Annuler
AbstractUndoableEdit.redo.textAndMnemonic=R\u00E9tablir AbstractUndoableEdit.redo.textAndMnemonic=R\u00E9tablir
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopup.textAndMnemonic=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progress.textAndMnemonic=Progression... ProgressMonitor.progress.textAndMnemonic=Progression...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButton.textAndMnemonic=bouton gauche SplitPane.leftButton.textAndMnemonic=bouton gauche
SplitPane.rightButton.textAndMnemonic=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 :
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=R\u00E9duire InternalFrameTitlePane.iconifyButtonAccessibleName=R\u00E9duire
InternalFrameTitlePane.maximizeButtonAccessibleName=Agrandir InternalFrameTitlePane.maximizeButtonAccessibleName=Agrandir
InternalFrameTitlePane.closeButtonAccessibleName=Fermer InternalFrameTitlePane.closeButtonAccessibleName=Fermer
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameTextAndMnemonic=R&GB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# 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
# - # -
# #
# 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
# exist. This will typically take the form 'XXXX (M)' where M is the # exist. This will typically take the form 'XXXX (M)' where M is the
# character for the mnemonic. # character for the mnemonic.
# #
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescription.textAndMnemonic=File generico FileChooser.fileDescription.textAndMnemonic=File generico
FileChooser.directoryDescription.textAndMnemonic=Directory FileChooser.directoryDescription.textAndMnemonic=Directory
FileChooser.newFolderError.textAndMnemonic=Errore durante la creazione della nuova cartella FileChooser.newFolderError.textAndMnemonic=Errore durante la creazione della nuova cartella
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Impossibile creare la cartella FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Impossibile creare la cartella
FileChooser.newFolderParentDoesntExist.textAndMnemonic=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.renameErrorTitle.textAndMnemonic=Errore durante la ridenominazione del file o della cartella FileChooser.renameErrorTitle.textAndMnemonic=Errore durante la ridenominazione del file o della cartella
FileChooser.renameError.textAndMnemonic=Impossibile rinominare {0} FileChooser.renameError.textAndMnemonic=Impossibile rinominare {0}
FileChooser.renameErrorFileExists.textAndMnemonic=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.acceptAllFileFilter.textAndMnemonic=Tutti i file FileChooser.acceptAllFileFilter.textAndMnemonic=Tutti i file
FileChooser.cancelButton.textAndMnemonic=&Annulla FileChooser.cancelButton.textAndMnemonic=Annulla
FileChooser.saveButton.textAndMnemonic=Sal&va FileChooser.saveButton.textAndMnemonic=Sal&va
FileChooser.openButton.textAndMnemonic=A&pri FileChooser.openButton.textAndMnemonic=A&pri
FileChooser.saveDialogTitle.textAndMnemonic=Salva FileChooser.saveDialogTitle.textAndMnemonic=Salva
FileChooser.openDialogTitle.textAndMnemonic=Apri FileChooser.openDialogTitle.textAndMnemonic=Apri
FileChooser.updateButton.textAndMnemonic=A&ggiorna FileChooser.updateButton.textAndMnemonic=A&ggiorna
FileChooser.helpButton.textAndMnemonic=?(&H) FileChooser.helpButton.textAndMnemonic=?(&H)
FileChooser.directoryOpenButton.textAndMnemonic=&Apri FileChooser.directoryOpenButton.textAndMnemonic=&Apri
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} MB FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=Nuova cartella FileChooser.win32.newFolder=Nuova cartella
FileChooser.win32.newFolder.subsequent=Nuova cartella ({0}) FileChooser.win32.newFolder.subsequent=Nuova cartella ({0})
FileChooser.other.newFolder=NewFolder FileChooser.other.newFolder=NewFolder
FileChooser.other.newFolder.subsequent=NewFolder.{0} FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTip.textAndMnemonic=Chiude la finestra di dialogo di selezione file FileChooser.cancelButtonToolTip.textAndMnemonic=Chiude la finestra di dialogo di selezione file
FileChooser.saveButtonToolTip.textAndMnemonic=Salva il file selezionato FileChooser.saveButtonToolTip.textAndMnemonic=Salva il file selezionato
FileChooser.openButtonToolTip.textAndMnemonic=Apre il file selezionato FileChooser.openButtonToolTip.textAndMnemonic=Apre il file selezionato
FileChooser.updateButtonToolTip.textAndMnemonic=Aggiorna la lista directory FileChooser.updateButtonToolTip.textAndMnemonic=Aggiorna la lista directory
FileChooser.helpButtonToolTip.textAndMnemonic=Guida FileChooser FileChooser.helpButtonToolTip.textAndMnemonic=Guida FileChooser
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=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.preview.textAndMnemonic=Anteprima ColorChooser.preview.textAndMnemonic=Anteprima
ColorChooser.ok.textAndMnemonic=OK ColorChooser.ok.textAndMnemonic=OK
ColorChooser.cancel.textAndMnemonic=Annulla ColorChooser.cancel.textAndMnemonic=Annulla
ColorChooser.reset.textAndMnemonic=&Reimposta ColorChooser.reset.textAndMnemonic=&Reimposta
ColorChooser.sample.textAndMnemonic=Testo di prova Testo di prova ColorChooser.sample.textAndMnemonic=Testo di prova Testo di prova
ColorChooser.swatches.textAndMnemonic=Colori cam&pione ColorChooser.swatches.textAndMnemonic=Colori cam&pione
ColorChooser.swatchesRecent.textAndMnemonic=Recenti: ColorChooser.swatchesRecent.textAndMnemonic=Recenti:
ColorChooser.hsv.textAndMnemonic=&HSV ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.hsvHue.textAndMnemonic=Tonalit\u00E0 ColorChooser.hsvHue.textAndMnemonic=Tonalit\u00E0
ColorChooser.hsvSaturation.textAndMnemonic=Saturazione ColorChooser.hsvSaturation.textAndMnemonic=Saturazione
ColorChooser.hsvValue.textAndMnemonic=Valore ColorChooser.hsvValue.textAndMnemonic=Valore
ColorChooser.hsvTransparency.textAndMnemonic=Trasparenza ColorChooser.hsvTransparency.textAndMnemonic=Trasparenza
ColorChooser.hsl.textAndMnemonic=HS&L ColorChooser.hsl.textAndMnemonic=HS&L
ColorChooser.hslHue.textAndMnemonic=Tonalit\u00E0 ColorChooser.hslHue.textAndMnemonic=Tonalit\u00E0
ColorChooser.hslSaturation.textAndMnemonic=Saturazione ColorChooser.hslSaturation.textAndMnemonic=Saturazione
ColorChooser.hslLightness.textAndMnemonic=Luminosit\u00E0 ColorChooser.hslLightness.textAndMnemonic=Luminosit\u00E0
ColorChooser.hslTransparency.textAndMnemonic=Trasparenza ColorChooser.hslTransparency.textAndMnemonic=Trasparenza
ColorChooser.rgb.textAndMnemonic=R&GB ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.rgbRed.textAndMnemonic=Ro&sso ColorChooser.rgbRed.textAndMnemonic=Ro&sso
ColorChooser.rgbGreen.textAndMnemonic=Ver&de ColorChooser.rgbGreen.textAndMnemonic=Ver&de
ColorChooser.rgbBlue.textAndMnemonic=&Blu ColorChooser.rgbBlue.textAndMnemonic=&Blu
ColorChooser.rgbAlpha.textAndMnemonic=Alfa ColorChooser.rgbAlpha.textAndMnemonic=Alfa
ColorChooser.rgbHexCode.textAndMnemonic=&Codice colori ColorChooser.rgbHexCode.textAndMnemonic=&Codice colori
ColorChooser.cmyk.textAndMnemonic=C&MYK ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.cmykCyan.textAndMnemonic=Ciano ColorChooser.cmykCyan.textAndMnemonic=Ciano
ColorChooser.cmykMagenta.textAndMnemonic=Magenta ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.cmykYellow.textAndMnemonic=Giallo ColorChooser.cmykYellow.textAndMnemonic=Giallo
ColorChooser.cmykBlack.textAndMnemonic=Nero ColorChooser.cmykBlack.textAndMnemonic=Nero
ColorChooser.cmykAlpha.textAndMnemonic=Alfa ColorChooser.cmykAlpha.textAndMnemonic=Alfa
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# 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.yesButton.textAndMnemonic=S\u00EC(&S) OptionPane.yesButton.textAndMnemonic=S\u00EC(&S)
OptionPane.noButton.textAndMnemonic=&No OptionPane.noButton.textAndMnemonic=&No
OptionPane.okButton.textAndMnemonic=&OK OptionPane.okButton.textAndMnemonic=&OK
OptionPane.cancelButton.textAndMnemonic=&Annulla OptionPane.cancelButton.textAndMnemonic=&Annulla
OptionPane.title.textAndMnemonic=Selezionare una opzione OptionPane.title.textAndMnemonic=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.inputDialog.titleAndMnemonic=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.messageDialog.titleAndMnemonic=Messaggio OptionPane.messageDialog.titleAndMnemonic=Messaggio
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgress.textAndMnemonic=Stampa in corso PrintingDialog.titleProgress.textAndMnemonic=Stampa in corso
PrintingDialog.titleAborting.textAndMnemonic=Stampa in corso (operazione interrotta) PrintingDialog.titleAborting.textAndMnemonic=Stampa in corso (operazione interrotta)
PrintingDialog.contentInitial.textAndMnemonic=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.contentProgress.textAndMnemonic=Pagina stampata {0}... PrintingDialog.contentProgress.textAndMnemonic=Pagina stampata {0}...
PrintingDialog.contentAborting.textAndMnemonic=Interruzione della stampa... PrintingDialog.contentAborting.textAndMnemonic=Interruzione della stampa...
PrintingDialog.abortButton.textAndMnemonic=I&nterrompi PrintingDialog.abortButton.textAndMnemonic=I&nterrompi
PrintingDialog.abortButtonToolTip.textAndMnemonic=Interrompi la stampa PrintingDialog.abortButtonToolTip.textAndMnemonic=Interrompi la stampa
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Riduci a icona InternalFrame.iconButtonToolTip=Riduci a icona
InternalFrame.maxButtonToolTip=Ingrandisci InternalFrame.maxButtonToolTip=Ingrandisci
InternalFrame.restoreButtonToolTip=Ripristina InternalFrame.restoreButtonToolTip=Ripristina
InternalFrame.closeButtonToolTip=Chiudi InternalFrame.closeButtonToolTip=Chiudi
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButton.textAndMnemonic=Ripristina InternalFrameTitlePane.restoreButton.textAndMnemonic=Ripristina
InternalFrameTitlePane.moveButton.textAndMnemonic=Sposta InternalFrameTitlePane.moveButton.textAndMnemonic=Sposta
InternalFrameTitlePane.sizeButton.textAndMnemonic=Dimensioni InternalFrameTitlePane.sizeButton.textAndMnemonic=Dimensioni
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Riduci a icona InternalFrameTitlePane.minimizeButton.textAndMnemonic=Riduci a icona
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Ingrandisci InternalFrameTitlePane.maximizeButton.textAndMnemonic=Ingrandisci
InternalFrameTitlePane.closeButton.textAndMnemonic=Chiudi InternalFrameTitlePane.closeButton.textAndMnemonic=Chiudi
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButton.textAndMnemonic=Sottometti query FormView.submitButton.textAndMnemonic=Sottometti query
FormView.resetButton.textAndMnemonic=Reimposta FormView.resetButton.textAndMnemonic=Reimposta
FormView.browseFileButton.textAndMnemonic=Sfoglia... FormView.browseFileButton.textAndMnemonic=Sfoglia...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChange.textAndMnemonic=modifica di stile AbstractDocument.styleChange.textAndMnemonic=modifica di stile
AbstractDocument.addition.textAndMnemonic=aggiunta AbstractDocument.addition.textAndMnemonic=aggiunta
AbstractDocument.deletion.textAndMnemonic=eliminazione AbstractDocument.deletion.textAndMnemonic=eliminazione
AbstractDocument.undo.textAndMnemonic=Annulla AbstractDocument.undo.textAndMnemonic=Annulla
AbstractDocument.redo.textAndMnemonic=Ripeti AbstractDocument.redo.textAndMnemonic=Ripeti
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.click.textAndMnemonic=fare clic AbstractButton.click.textAndMnemonic=fare clic
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undo.textAndMnemonic=Annulla AbstractUndoableEdit.undo.textAndMnemonic=Annulla
AbstractUndoableEdit.redo.textAndMnemonic=Ripeti AbstractUndoableEdit.redo.textAndMnemonic=Ripeti
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopup.textAndMnemonic=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progress.textAndMnemonic=Avanzamento... ProgressMonitor.progress.textAndMnemonic=Avanzamento...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButton.textAndMnemonic=tasto sinistro SplitPane.leftButton.textAndMnemonic=tasto sinistro
SplitPane.rightButton.textAndMnemonic=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:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Riduci a icona InternalFrameTitlePane.iconifyButtonAccessibleName=Riduci a icona
InternalFrameTitlePane.maximizeButtonAccessibleName=Ingrandisci InternalFrameTitlePane.maximizeButtonAccessibleName=Ingrandisci
InternalFrameTitlePane.closeButtonAccessibleName=Chiudi InternalFrameTitlePane.closeButtonAccessibleName=Chiudi
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameTextAndMnemonic=R&GB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# 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
# - # -
# #
# 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
# exist. This will typically take the form 'XXXX (M)' where M is the # exist. This will typically take the form 'XXXX (M)' where M is the
# character for the mnemonic. # character for the mnemonic.
# #
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescription.textAndMnemonic=\uC77C\uBC18 \uD30C\uC77C FileChooser.fileDescription.textAndMnemonic=\uC77C\uBC18 \uD30C\uC77C
FileChooser.directoryDescription.textAndMnemonic=\uB514\uB809\uD1A0\uB9AC FileChooser.directoryDescription.textAndMnemonic=\uB514\uB809\uD1A0\uB9AC
FileChooser.newFolderError.textAndMnemonic=\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.newFolderParentDoesntExistTitle.textAndMnemonic=\uD3F4\uB354\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC74C FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\uD3F4\uB354\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC74C
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.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.renameErrorTitle.textAndMnemonic=\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.renameError.textAndMnemonic={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.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.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.acceptAllFileFilter.textAndMnemonic=\uBAA8\uB4E0 \uD30C\uC77C FileChooser.acceptAllFileFilter.textAndMnemonic=\uBAA8\uB4E0 \uD30C\uC77C
FileChooser.cancelButton.textAndMnemonic=\uCDE8\uC18C(&C) FileChooser.cancelButton.textAndMnemonic=\uCDE8\uC18C
FileChooser.saveButton.textAndMnemonic=\uC800\uC7A5(&S) FileChooser.saveButton.textAndMnemonic=\uC800\uC7A5(&S)
FileChooser.openButton.textAndMnemonic=\uC5F4\uAE30(&O) FileChooser.openButton.textAndMnemonic=\uC5F4\uAE30(&O)
FileChooser.saveDialogTitle.textAndMnemonic=\uC800\uC7A5 FileChooser.saveDialogTitle.textAndMnemonic=\uC800\uC7A5
FileChooser.openDialogTitle.textAndMnemonic=\uC5F4\uAE30 FileChooser.openDialogTitle.textAndMnemonic=\uC5F4\uAE30
FileChooser.updateButton.textAndMnemonic=\uAC31\uC2E0(&U) FileChooser.updateButton.textAndMnemonic=\uAC31\uC2E0(&U)
FileChooser.helpButton.textAndMnemonic=\uB3C4\uC6C0\uB9D0(&H) FileChooser.helpButton.textAndMnemonic=\uB3C4\uC6C0\uB9D0(&H)
FileChooser.directoryOpenButton.textAndMnemonic=\uC5F4\uAE30(&O) FileChooser.directoryOpenButton.textAndMnemonic=\uC5F4\uAE30(&O)
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} MB FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=\uC0C8 \uD3F4\uB354 FileChooser.win32.newFolder=\uC0C8 \uD3F4\uB354
FileChooser.win32.newFolder.subsequent=\uC0C8 \uD3F4\uB354({0}) FileChooser.win32.newFolder.subsequent=\uC0C8 \uD3F4\uB354({0})
FileChooser.other.newFolder=NewFolder FileChooser.other.newFolder=NewFolder
FileChooser.other.newFolder.subsequent=NewFolder.{0} FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTip.textAndMnemonic=\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.saveButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C \uC800\uC7A5 FileChooser.saveButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C \uC800\uC7A5
FileChooser.openButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C \uC5F4\uAE30 FileChooser.openButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C \uC5F4\uAE30
FileChooser.updateButtonToolTip.textAndMnemonic=\uB514\uB809\uD1A0\uB9AC \uBAA9\uB85D \uAC31\uC2E0 FileChooser.updateButtonToolTip.textAndMnemonic=\uB514\uB809\uD1A0\uB9AC \uBAA9\uB85D \uAC31\uC2E0
FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser \uB3C4\uC6C0\uB9D0 FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser \uB3C4\uC6C0\uB9D0
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\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.preview.textAndMnemonic=\uBBF8\uB9AC\uBCF4\uAE30 ColorChooser.preview.textAndMnemonic=\uBBF8\uB9AC\uBCF4\uAE30
ColorChooser.ok.textAndMnemonic=\uD655\uC778 ColorChooser.ok.textAndMnemonic=\uD655\uC778
ColorChooser.cancel.textAndMnemonic=\uCDE8\uC18C ColorChooser.cancel.textAndMnemonic=\uCDE8\uC18C
ColorChooser.reset.textAndMnemonic=\uC7AC\uC124\uC815(&R) ColorChooser.reset.textAndMnemonic=\uC7AC\uC124\uC815(&R)
ColorChooser.sample.textAndMnemonic=\uC0D8\uD50C \uD14D\uC2A4\uD2B8 \uC0D8\uD50C \uD14D\uC2A4\uD2B8 ColorChooser.sample.textAndMnemonic=\uC0D8\uD50C \uD14D\uC2A4\uD2B8 \uC0D8\uD50C \uD14D\uC2A4\uD2B8
ColorChooser.swatches.textAndMnemonic=\uACAC\uBCF8(&S) ColorChooser.swatches.textAndMnemonic=\uACAC\uBCF8(&S)
ColorChooser.swatchesRecent.textAndMnemonic=\uCD5C\uADFC \uBAA9\uB85D: ColorChooser.swatchesRecent.textAndMnemonic=\uCD5C\uADFC \uBAA9\uB85D:
ColorChooser.hsv.textAndMnemonic=&HSV ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.hsvHue.textAndMnemonic=\uC0C9\uC870 ColorChooser.hsvHue.textAndMnemonic=\uC0C9\uC870
ColorChooser.hsvSaturation.textAndMnemonic=\uCC44\uB3C4 ColorChooser.hsvSaturation.textAndMnemonic=\uCC44\uB3C4
ColorChooser.hsvValue.textAndMnemonic=\uAC12 ColorChooser.hsvValue.textAndMnemonic=\uAC12
ColorChooser.hsvTransparency.textAndMnemonic=\uD22C\uBA85 ColorChooser.hsvTransparency.textAndMnemonic=\uD22C\uBA85
ColorChooser.hsl.textAndMnemonic=HS&L ColorChooser.hsl.textAndMnemonic=HS&L
ColorChooser.hslHue.textAndMnemonic=\uC0C9\uC870 ColorChooser.hslHue.textAndMnemonic=\uC0C9\uC870
ColorChooser.hslSaturation.textAndMnemonic=\uCC44\uB3C4 ColorChooser.hslSaturation.textAndMnemonic=\uCC44\uB3C4
ColorChooser.hslLightness.textAndMnemonic=\uBC1D\uAE30 ColorChooser.hslLightness.textAndMnemonic=\uBC1D\uAE30
ColorChooser.hslTransparency.textAndMnemonic=\uD22C\uBA85 ColorChooser.hslTransparency.textAndMnemonic=\uD22C\uBA85
ColorChooser.rgb.textAndMnemonic=R&GB ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.rgbRed.textAndMnemonic=\uBE68\uAC04\uC0C9(&D) ColorChooser.rgbRed.textAndMnemonic=\uBE68\uAC04\uC0C9(&D)
ColorChooser.rgbGreen.textAndMnemonic=\uB179\uC0C9(&N) ColorChooser.rgbGreen.textAndMnemonic=\uB179\uC0C9(&N)
ColorChooser.rgbBlue.textAndMnemonic=\uD30C\uB780\uC0C9(&B) ColorChooser.rgbBlue.textAndMnemonic=\uD30C\uB780\uC0C9(&B)
ColorChooser.rgbAlpha.textAndMnemonic=\uC54C\uD30C ColorChooser.rgbAlpha.textAndMnemonic=\uC54C\uD30C
ColorChooser.rgbHexCode.textAndMnemonic=\uC0C9\uC0C1 \uCF54\uB4DC(&C) ColorChooser.rgbHexCode.textAndMnemonic=\uC0C9\uC0C1 \uCF54\uB4DC(&C)
ColorChooser.cmyk.textAndMnemonic=C&MYK ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.cmykCyan.textAndMnemonic=\uCCAD\uB85D\uC0C9 ColorChooser.cmykCyan.textAndMnemonic=\uCCAD\uB85D\uC0C9
ColorChooser.cmykMagenta.textAndMnemonic=\uC9C4\uD64D\uC0C9 ColorChooser.cmykMagenta.textAndMnemonic=\uC9C4\uD64D\uC0C9
ColorChooser.cmykYellow.textAndMnemonic=\uB178\uB780\uC0C9 ColorChooser.cmykYellow.textAndMnemonic=\uB178\uB780\uC0C9
ColorChooser.cmykBlack.textAndMnemonic=\uAC80\uC815\uC0C9 ColorChooser.cmykBlack.textAndMnemonic=\uAC80\uC815\uC0C9
ColorChooser.cmykAlpha.textAndMnemonic=\uC54C\uD30C ColorChooser.cmykAlpha.textAndMnemonic=\uC54C\uD30C
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# 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.yesButton.textAndMnemonic=\uC608(&Y) OptionPane.yesButton.textAndMnemonic=\uC608(&Y)
OptionPane.noButton.textAndMnemonic=\uC544\uB2C8\uC624(&N) OptionPane.noButton.textAndMnemonic=\uC544\uB2C8\uC624(&N)
OptionPane.okButton.textAndMnemonic=\uD655\uC778(&O) OptionPane.okButton.textAndMnemonic=\uD655\uC778(&O)
OptionPane.cancelButton.textAndMnemonic=\uCDE8\uC18C OptionPane.cancelButton.textAndMnemonic=\uCDE8\uC18C
OptionPane.title.textAndMnemonic=\uC635\uC158 \uC120\uD0DD OptionPane.title.textAndMnemonic=\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.inputDialog.titleAndMnemonic=\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.messageDialog.titleAndMnemonic=\uBA54\uC2DC\uC9C0 OptionPane.messageDialog.titleAndMnemonic=\uBA54\uC2DC\uC9C0
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgress.textAndMnemonic=\uC778\uC1C4 PrintingDialog.titleProgress.textAndMnemonic=\uC778\uC1C4
PrintingDialog.titleAborting.textAndMnemonic=\uC778\uC1C4(\uC911\uB2E8 \uC911) PrintingDialog.titleAborting.textAndMnemonic=\uC778\uC1C4(\uC911\uB2E8 \uC911)
PrintingDialog.contentInitial.textAndMnemonic=\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.contentProgress.textAndMnemonic=\uC778\uC1C4\uB41C \uD398\uC774\uC9C0 {0}... PrintingDialog.contentProgress.textAndMnemonic=\uC778\uC1C4\uB41C \uD398\uC774\uC9C0 {0}...
PrintingDialog.contentAborting.textAndMnemonic=\uC778\uC1C4 \uC911\uB2E8 \uC911... PrintingDialog.contentAborting.textAndMnemonic=\uC778\uC1C4 \uC911\uB2E8 \uC911...
PrintingDialog.abortButton.textAndMnemonic=\uC911\uB2E8(&A) PrintingDialog.abortButton.textAndMnemonic=\uC911\uB2E8(&A)
PrintingDialog.abortButtonToolTip.textAndMnemonic=\uC778\uC1C4 \uC911\uB2E8 PrintingDialog.abortButtonToolTip.textAndMnemonic=\uC778\uC1C4 \uC911\uB2E8
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=\uCD5C\uC18C\uD654 InternalFrame.iconButtonToolTip=\uCD5C\uC18C\uD654
InternalFrame.maxButtonToolTip=\uCD5C\uB300\uD654 InternalFrame.maxButtonToolTip=\uCD5C\uB300\uD654
InternalFrame.restoreButtonToolTip=\uBCF5\uC6D0 InternalFrame.restoreButtonToolTip=\uBCF5\uC6D0
InternalFrame.closeButtonToolTip=\uB2EB\uAE30 InternalFrame.closeButtonToolTip=\uB2EB\uAE30
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButton.textAndMnemonic=\uBCF5\uC6D0 InternalFrameTitlePane.restoreButton.textAndMnemonic=\uBCF5\uC6D0
InternalFrameTitlePane.moveButton.textAndMnemonic=\uC774\uB3D9 InternalFrameTitlePane.moveButton.textAndMnemonic=\uC774\uB3D9
InternalFrameTitlePane.sizeButton.textAndMnemonic=\uD06C\uAE30 InternalFrameTitlePane.sizeButton.textAndMnemonic=\uD06C\uAE30
InternalFrameTitlePane.minimizeButton.textAndMnemonic=\uCD5C\uC18C\uD654 InternalFrameTitlePane.minimizeButton.textAndMnemonic=\uCD5C\uC18C\uD654
InternalFrameTitlePane.maximizeButton.textAndMnemonic=\uCD5C\uB300\uD654 InternalFrameTitlePane.maximizeButton.textAndMnemonic=\uCD5C\uB300\uD654
InternalFrameTitlePane.closeButton.textAndMnemonic=\uB2EB\uAE30 InternalFrameTitlePane.closeButton.textAndMnemonic=\uB2EB\uAE30
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButton.textAndMnemonic=\uC9C8\uC758 \uC81C\uCD9C FormView.submitButton.textAndMnemonic=\uC9C8\uC758 \uC81C\uCD9C
FormView.resetButton.textAndMnemonic=\uC7AC\uC124\uC815 FormView.resetButton.textAndMnemonic=\uC7AC\uC124\uC815
FormView.browseFileButton.textAndMnemonic=\uCC3E\uC544\uBCF4\uAE30... FormView.browseFileButton.textAndMnemonic=\uCC3E\uC544\uBCF4\uAE30...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChange.textAndMnemonic=\uC2A4\uD0C0\uC77C \uBCC0\uACBD AbstractDocument.styleChange.textAndMnemonic=\uC2A4\uD0C0\uC77C \uBCC0\uACBD
AbstractDocument.addition.textAndMnemonic=\uCD94\uAC00 AbstractDocument.addition.textAndMnemonic=\uCD94\uAC00
AbstractDocument.deletion.textAndMnemonic=\uC0AD\uC81C AbstractDocument.deletion.textAndMnemonic=\uC0AD\uC81C
AbstractDocument.undo.textAndMnemonic=\uC2E4\uD589 \uCDE8\uC18C AbstractDocument.undo.textAndMnemonic=\uC2E4\uD589 \uCDE8\uC18C
AbstractDocument.redo.textAndMnemonic=\uC7AC\uC2E4\uD589 AbstractDocument.redo.textAndMnemonic=\uC7AC\uC2E4\uD589
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.click.textAndMnemonic=\uB204\uB974\uAE30 AbstractButton.click.textAndMnemonic=\uB204\uB974\uAE30
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undo.textAndMnemonic=\uC2E4\uD589 \uCDE8\uC18C AbstractUndoableEdit.undo.textAndMnemonic=\uC2E4\uD589 \uCDE8\uC18C
AbstractUndoableEdit.redo.textAndMnemonic=\uC7AC\uC2E4\uD589 AbstractUndoableEdit.redo.textAndMnemonic=\uC7AC\uC2E4\uD589
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopup.textAndMnemonic=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progress.textAndMnemonic=\uC9C4\uD589... ProgressMonitor.progress.textAndMnemonic=\uC9C4\uD589...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButton.textAndMnemonic=\uC67C\uCABD \uB2E8\uCD94 SplitPane.leftButton.textAndMnemonic=\uC67C\uCABD \uB2E8\uCD94
SplitPane.rightButton.textAndMnemonic=\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:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=\uC544\uC774\uCF58\uD654 InternalFrameTitlePane.iconifyButtonAccessibleName=\uC544\uC774\uCF58\uD654
InternalFrameTitlePane.maximizeButtonAccessibleName=\uCD5C\uB300\uD654 InternalFrameTitlePane.maximizeButtonAccessibleName=\uCD5C\uB300\uD654
InternalFrameTitlePane.closeButtonAccessibleName=\uB2EB\uAE30 InternalFrameTitlePane.closeButtonAccessibleName=\uB2EB\uAE30
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameTextAndMnemonic=R&GB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# 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
# - # -
# #
# 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
# exist. This will typically take the form 'XXXX (M)' where M is the # exist. This will typically take the form 'XXXX (M)' where M is the
# character for the mnemonic. # character for the mnemonic.
# #
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescription.textAndMnemonic=Arquivo Gen\u00E9rico FileChooser.fileDescription.textAndMnemonic=Arquivo Gen\u00E9rico
FileChooser.directoryDescription.textAndMnemonic=Diret\u00F3rio FileChooser.directoryDescription.textAndMnemonic=Diret\u00F3rio
FileChooser.newFolderError.textAndMnemonic=Erro ao criar nova pasta FileChooser.newFolderError.textAndMnemonic=Erro ao criar nova pasta
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel criar a pasta FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel criar a pasta
FileChooser.newFolderParentDoesntExist.textAndMnemonic=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.renameErrorTitle.textAndMnemonic=Erro ao Renomear o Arquivo ou a Pasta FileChooser.renameErrorTitle.textAndMnemonic=Erro ao Renomear o Arquivo ou a Pasta
FileChooser.renameError.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel renomear {0} FileChooser.renameError.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel renomear {0}
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.renameErrorFileExists.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel renomear {0}: Um arquivo com o nome especificado j\u00E1 existe. Especifique outro nome de arquivo.
FileChooser.acceptAllFileFilter.textAndMnemonic=Todos os Arquivos FileChooser.acceptAllFileFilter.textAndMnemonic=Todos os Arquivos
FileChooser.cancelButton.textAndMnemonic=&Cancelar FileChooser.cancelButton.textAndMnemonic=Cancelar
FileChooser.saveButton.textAndMnemonic=&Salvar FileChooser.saveButton.textAndMnemonic=&Salvar
FileChooser.openButton.textAndMnemonic=A&brir FileChooser.openButton.textAndMnemonic=A&brir
FileChooser.saveDialogTitle.textAndMnemonic=Salvar FileChooser.saveDialogTitle.textAndMnemonic=Salvar
FileChooser.openDialogTitle.textAndMnemonic=Abrir FileChooser.openDialogTitle.textAndMnemonic=Abrir
FileChooser.updateButton.textAndMnemonic=At&ualizar FileChooser.updateButton.textAndMnemonic=At&ualizar
FileChooser.helpButton.textAndMnemonic=Aj&uda FileChooser.helpButton.textAndMnemonic=Aj&uda
FileChooser.directoryOpenButton.textAndMnemonic=A&brir FileChooser.directoryOpenButton.textAndMnemonic=A&brir
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} MB FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=Nova Pasta FileChooser.win32.newFolder=Nova Pasta
FileChooser.win32.newFolder.subsequent=Nova Pasta ({0}) FileChooser.win32.newFolder.subsequent=Nova Pasta ({0})
FileChooser.other.newFolder=NewFolder FileChooser.other.newFolder=NewFolder
FileChooser.other.newFolder.subsequent=NewFolder.{0} FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTip.textAndMnemonic=Abortar caixa de di\u00E1logo do seletor de arquivos FileChooser.cancelButtonToolTip.textAndMnemonic=Abortar caixa de di\u00E1logo do seletor de arquivos
FileChooser.saveButtonToolTip.textAndMnemonic=Salvar arquivo selecionado FileChooser.saveButtonToolTip.textAndMnemonic=Salvar arquivo selecionado
FileChooser.openButtonToolTip.textAndMnemonic=Abrir arquivo selecionado FileChooser.openButtonToolTip.textAndMnemonic=Abrir arquivo selecionado
FileChooser.updateButtonToolTip.textAndMnemonic=Atualizar lista de diret\u00F3rios FileChooser.updateButtonToolTip.textAndMnemonic=Atualizar lista de diret\u00F3rios
FileChooser.helpButtonToolTip.textAndMnemonic=Ajuda do FileChooser FileChooser.helpButtonToolTip.textAndMnemonic=Ajuda do FileChooser
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=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.preview.textAndMnemonic=Visualizar ColorChooser.preview.textAndMnemonic=Visualizar
ColorChooser.ok.textAndMnemonic=OK ColorChooser.ok.textAndMnemonic=OK
ColorChooser.cancel.textAndMnemonic=Cancelar ColorChooser.cancel.textAndMnemonic=Cancelar
ColorChooser.reset.textAndMnemonic=&Redefinir ColorChooser.reset.textAndMnemonic=&Redefinir
ColorChooser.sample.textAndMnemonic=Texto de Amostra Texto de Amostra ColorChooser.sample.textAndMnemonic=Texto de Amostra Texto de Amostra
ColorChooser.swatches.textAndMnemonic=Amo&stras ColorChooser.swatches.textAndMnemonic=Amo&stras
ColorChooser.swatchesRecent.textAndMnemonic=Recente: ColorChooser.swatchesRecent.textAndMnemonic=Recente:
ColorChooser.hsv.textAndMnemonic=&HSV ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.hsvHue.textAndMnemonic=Matiz ColorChooser.hsvHue.textAndMnemonic=Matiz
ColorChooser.hsvSaturation.textAndMnemonic=Satura\u00E7\u00E3o ColorChooser.hsvSaturation.textAndMnemonic=Satura\u00E7\u00E3o
ColorChooser.hsvValue.textAndMnemonic=Valor ColorChooser.hsvValue.textAndMnemonic=Valor
ColorChooser.hsvTransparency.textAndMnemonic=Transpar\u00EAncia ColorChooser.hsvTransparency.textAndMnemonic=Transpar\u00EAncia
ColorChooser.hsl.textAndMnemonic=HS&L ColorChooser.hsl.textAndMnemonic=HS&L
ColorChooser.hslHue.textAndMnemonic=Matiz ColorChooser.hslHue.textAndMnemonic=Matiz
ColorChooser.hslSaturation.textAndMnemonic=Satura\u00E7\u00E3o ColorChooser.hslSaturation.textAndMnemonic=Satura\u00E7\u00E3o
ColorChooser.hslLightness.textAndMnemonic=Clareza ColorChooser.hslLightness.textAndMnemonic=Clareza
ColorChooser.hslTransparency.textAndMnemonic=Transpar\u00EAncia ColorChooser.hslTransparency.textAndMnemonic=Transpar\u00EAncia
ColorChooser.rgb.textAndMnemonic=R&GB ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.rgbRed.textAndMnemonic=&Vermelho ColorChooser.rgbRed.textAndMnemonic=&Vermelho
ColorChooser.rgbGreen.textAndMnemonic=&Verde ColorChooser.rgbGreen.textAndMnemonic=&Verde
ColorChooser.rgbBlue.textAndMnemonic=&Azul ColorChooser.rgbBlue.textAndMnemonic=&Azul
ColorChooser.rgbAlpha.textAndMnemonic=Alfa ColorChooser.rgbAlpha.textAndMnemonic=Alfa
ColorChooser.rgbHexCode.textAndMnemonic=C\u00F3digo da Cor(&C) ColorChooser.rgbHexCode.textAndMnemonic=C\u00F3digo da Cor(&C)
ColorChooser.cmyk.textAndMnemonic=C&MYK ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.cmykCyan.textAndMnemonic=Ciano ColorChooser.cmykCyan.textAndMnemonic=Ciano
ColorChooser.cmykMagenta.textAndMnemonic=Magenta ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.cmykYellow.textAndMnemonic=Amarelo ColorChooser.cmykYellow.textAndMnemonic=Amarelo
ColorChooser.cmykBlack.textAndMnemonic=Preto ColorChooser.cmykBlack.textAndMnemonic=Preto
ColorChooser.cmykAlpha.textAndMnemonic=Alfa ColorChooser.cmykAlpha.textAndMnemonic=Alfa
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# 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.yesButton.textAndMnemonic=&Sim OptionPane.yesButton.textAndMnemonic=&Sim
OptionPane.noButton.textAndMnemonic=N\u00E3o(&N) OptionPane.noButton.textAndMnemonic=N\u00E3o(&N)
OptionPane.okButton.textAndMnemonic=&OK OptionPane.okButton.textAndMnemonic=&OK
OptionPane.cancelButton.textAndMnemonic=&Cancelar OptionPane.cancelButton.textAndMnemonic=&Cancelar
OptionPane.title.textAndMnemonic=Selecionar uma Op\u00E7\u00E3o OptionPane.title.textAndMnemonic=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.inputDialog.titleAndMnemonic=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.messageDialog.titleAndMnemonic=Mensagem OptionPane.messageDialog.titleAndMnemonic=Mensagem
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgress.textAndMnemonic=Impress\u00E3o PrintingDialog.titleProgress.textAndMnemonic=Impress\u00E3o
PrintingDialog.titleAborting.textAndMnemonic=Impress\u00E3o (Abortando) PrintingDialog.titleAborting.textAndMnemonic=Impress\u00E3o (Abortando)
PrintingDialog.contentInitial.textAndMnemonic=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.contentProgress.textAndMnemonic=P\u00E1gina impressa {0}... PrintingDialog.contentProgress.textAndMnemonic=P\u00E1gina impressa {0}...
PrintingDialog.contentAborting.textAndMnemonic=Abortando impress\u00E3o... PrintingDialog.contentAborting.textAndMnemonic=Abortando impress\u00E3o...
PrintingDialog.abortButton.textAndMnemonic=&Abortar PrintingDialog.abortButton.textAndMnemonic=&Abortar
PrintingDialog.abortButtonToolTip.textAndMnemonic=Abortar Impress\u00E3o PrintingDialog.abortButtonToolTip.textAndMnemonic=Abortar Impress\u00E3o
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Minimizar InternalFrame.iconButtonToolTip=Minimizar
InternalFrame.maxButtonToolTip=Maximizar InternalFrame.maxButtonToolTip=Maximizar
InternalFrame.restoreButtonToolTip=Restaurar InternalFrame.restoreButtonToolTip=Restaurar
InternalFrame.closeButtonToolTip=Fechar InternalFrame.closeButtonToolTip=Fechar
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurar InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurar
InternalFrameTitlePane.moveButton.textAndMnemonic=Mover InternalFrameTitlePane.moveButton.textAndMnemonic=Mover
InternalFrameTitlePane.sizeButton.textAndMnemonic=Tamanho InternalFrameTitlePane.sizeButton.textAndMnemonic=Tamanho
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimizar InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimizar
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximizar InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximizar
InternalFrameTitlePane.closeButton.textAndMnemonic=Fechar InternalFrameTitlePane.closeButton.textAndMnemonic=Fechar
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButton.textAndMnemonic=Submeter Consulta FormView.submitButton.textAndMnemonic=Submeter Consulta
FormView.resetButton.textAndMnemonic=Redefinir FormView.resetButton.textAndMnemonic=Redefinir
FormView.browseFileButton.textAndMnemonic=Procurar... FormView.browseFileButton.textAndMnemonic=Procurar...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChange.textAndMnemonic=altera\u00E7\u00E3o de estilo AbstractDocument.styleChange.textAndMnemonic=altera\u00E7\u00E3o de estilo
AbstractDocument.addition.textAndMnemonic=adi\u00E7\u00E3o AbstractDocument.addition.textAndMnemonic=adi\u00E7\u00E3o
AbstractDocument.deletion.textAndMnemonic=dele\u00E7\u00E3o AbstractDocument.deletion.textAndMnemonic=dele\u00E7\u00E3o
AbstractDocument.undo.textAndMnemonic=Desfazer AbstractDocument.undo.textAndMnemonic=Desfazer
AbstractDocument.redo.textAndMnemonic=Refazer AbstractDocument.redo.textAndMnemonic=Refazer
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.click.textAndMnemonic=clicar AbstractButton.click.textAndMnemonic=clicar
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undo.textAndMnemonic=Desfazer AbstractUndoableEdit.undo.textAndMnemonic=Desfazer
AbstractUndoableEdit.redo.textAndMnemonic=Refazer AbstractUndoableEdit.redo.textAndMnemonic=Refazer
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopup.textAndMnemonic=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progress.textAndMnemonic=Progresso... ProgressMonitor.progress.textAndMnemonic=Progresso...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButton.textAndMnemonic=bot\u00E3o esquerdo SplitPane.leftButton.textAndMnemonic=bot\u00E3o esquerdo
SplitPane.rightButton.textAndMnemonic=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:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar
InternalFrameTitlePane.closeButtonAccessibleName=Fechar InternalFrameTitlePane.closeButtonAccessibleName=Fechar
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameTextAndMnemonic=R&GB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# 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
# - # -
# #
# 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
# exist. This will typically take the form 'XXXX (M)' where M is the # exist. This will typically take the form 'XXXX (M)' where M is the
# character for the mnemonic. # character for the mnemonic.
# #
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescription.textAndMnemonic=Generisk fil FileChooser.fileDescription.textAndMnemonic=Generisk fil
FileChooser.directoryDescription.textAndMnemonic=Katalog FileChooser.directoryDescription.textAndMnemonic=Katalog
FileChooser.newFolderError.textAndMnemonic=Fel uppstod n\u00E4r ny mapp skapades FileChooser.newFolderError.textAndMnemonic=Fel uppstod n\u00E4r ny mapp skapades
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Kan inte skapa mappen FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Kan inte skapa mappen
FileChooser.newFolderParentDoesntExist.textAndMnemonic=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.renameErrorTitle.textAndMnemonic=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.renameError.textAndMnemonic=Kan inte namn\u00E4ndra {0} FileChooser.renameError.textAndMnemonic=Kan inte namn\u00E4ndra {0}
FileChooser.renameErrorFileExists.textAndMnemonic=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.acceptAllFileFilter.textAndMnemonic=Alla filer FileChooser.acceptAllFileFilter.textAndMnemonic=Alla filer
FileChooser.cancelButton.textAndMnemonic=&Avbryt FileChooser.cancelButton.textAndMnemonic=Avbryt
FileChooser.saveButton.textAndMnemonic=&Spara FileChooser.saveButton.textAndMnemonic=&Spara
FileChooser.openButton.textAndMnemonic=\u00D6ppna(&P) FileChooser.openButton.textAndMnemonic=\u00D6ppna(&P)
FileChooser.saveDialogTitle.textAndMnemonic=Spara FileChooser.saveDialogTitle.textAndMnemonic=Spara
FileChooser.openDialogTitle.textAndMnemonic=\u00D6ppna FileChooser.openDialogTitle.textAndMnemonic=\u00D6ppna
FileChooser.updateButton.textAndMnemonic=Upp&datera FileChooser.updateButton.textAndMnemonic=Upp&datera
FileChooser.helpButton.textAndMnemonic=Hj\u00E4lp(&H) FileChooser.helpButton.textAndMnemonic=Hj\u00E4lp(&H)
FileChooser.directoryOpenButton.textAndMnemonic=\u00D6ppna(&P) FileChooser.directoryOpenButton.textAndMnemonic=\u00D6ppna(&P)
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} MB FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=Ny mapp FileChooser.win32.newFolder=Ny mapp
FileChooser.win32.newFolder.subsequent=Ny mapp ({0}) FileChooser.win32.newFolder.subsequent=Ny mapp ({0})
FileChooser.other.newFolder=Ny mapp FileChooser.other.newFolder=Ny mapp
FileChooser.other.newFolder.subsequent=Ny mapp.{0} FileChooser.other.newFolder.subsequent=Ny mapp.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt filvalsdialogruta FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt filvalsdialogruta
FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil
FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil
FileChooser.updateButtonToolTip.textAndMnemonic=Uppdatera kataloglistan FileChooser.updateButtonToolTip.textAndMnemonic=Uppdatera kataloglistan
FileChooser.helpButtonToolTip.textAndMnemonic=Hj\u00E4lp - Filv\u00E4ljare FileChooser.helpButtonToolTip.textAndMnemonic=Hj\u00E4lp - Filv\u00E4ljare
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\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.preview.textAndMnemonic=Granska ColorChooser.preview.textAndMnemonic=Granska
ColorChooser.ok.textAndMnemonic=OK ColorChooser.ok.textAndMnemonic=OK
ColorChooser.cancel.textAndMnemonic=Avbryt ColorChooser.cancel.textAndMnemonic=Avbryt
ColorChooser.reset.textAndMnemonic=\u00C5terst\u00E4ll(&T) ColorChooser.reset.textAndMnemonic=\u00C5terst\u00E4ll(&T)
ColorChooser.sample.textAndMnemonic=Exempeltext Exempeltext ColorChooser.sample.textAndMnemonic=Exempeltext Exempeltext
ColorChooser.swatches.textAndMnemonic=&Prov ColorChooser.swatches.textAndMnemonic=&Prov
ColorChooser.swatchesRecent.textAndMnemonic=Senaste: ColorChooser.swatchesRecent.textAndMnemonic=Senaste:
ColorChooser.hsv.textAndMnemonic=&HSV ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.hsvHue.textAndMnemonic=Nyans ColorChooser.hsvHue.textAndMnemonic=Nyans
ColorChooser.hsvSaturation.textAndMnemonic=M\u00E4ttnad ColorChooser.hsvSaturation.textAndMnemonic=M\u00E4ttnad
ColorChooser.hsvValue.textAndMnemonic=V\u00E4rde ColorChooser.hsvValue.textAndMnemonic=V\u00E4rde
ColorChooser.hsvTransparency.textAndMnemonic=Transparens ColorChooser.hsvTransparency.textAndMnemonic=Transparens
ColorChooser.hsl.textAndMnemonic=HS&L ColorChooser.hsl.textAndMnemonic=HS&L
ColorChooser.hslHue.textAndMnemonic=Nyans ColorChooser.hslHue.textAndMnemonic=Nyans
ColorChooser.hslSaturation.textAndMnemonic=M\u00E4ttnad ColorChooser.hslSaturation.textAndMnemonic=M\u00E4ttnad
ColorChooser.hslLightness.textAndMnemonic=Ljusstyrka ColorChooser.hslLightness.textAndMnemonic=Ljusstyrka
ColorChooser.hslTransparency.textAndMnemonic=Transparens ColorChooser.hslTransparency.textAndMnemonic=Transparens
ColorChooser.rgb.textAndMnemonic=R&GB ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.rgbRed.textAndMnemonic=R\u00F6d(&D) ColorChooser.rgbRed.textAndMnemonic=R\u00F6d(&D)
ColorChooser.rgbGreen.textAndMnemonic=Gr\u00F6n(&N) ColorChooser.rgbGreen.textAndMnemonic=Gr\u00F6n(&N)
ColorChooser.rgbBlue.textAndMnemonic=Bl\u00E5(&B) ColorChooser.rgbBlue.textAndMnemonic=Bl\u00E5(&B)
ColorChooser.rgbAlpha.textAndMnemonic=Alfa ColorChooser.rgbAlpha.textAndMnemonic=Alfa
ColorChooser.rgbHexCode.textAndMnemonic=F\u00E4rgkod(&F) ColorChooser.rgbHexCode.textAndMnemonic=F\u00E4rgkod(&F)
ColorChooser.cmyk.textAndMnemonic=C&MYK ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.cmykCyan.textAndMnemonic=Cyan ColorChooser.cmykCyan.textAndMnemonic=Cyan
ColorChooser.cmykMagenta.textAndMnemonic=Magenta ColorChooser.cmykMagenta.textAndMnemonic=Magenta
ColorChooser.cmykYellow.textAndMnemonic=Gul ColorChooser.cmykYellow.textAndMnemonic=Gul
ColorChooser.cmykBlack.textAndMnemonic=Svart ColorChooser.cmykBlack.textAndMnemonic=Svart
ColorChooser.cmykAlpha.textAndMnemonic=Alfa ColorChooser.cmykAlpha.textAndMnemonic=Alfa
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# 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.yesButton.textAndMnemonic=&Ja OptionPane.yesButton.textAndMnemonic=&Ja
OptionPane.noButton.textAndMnemonic=&Nej OptionPane.noButton.textAndMnemonic=&Nej
OptionPane.okButton.textAndMnemonic=&OK OptionPane.okButton.textAndMnemonic=&OK
OptionPane.cancelButton.textAndMnemonic=&Avbryt OptionPane.cancelButton.textAndMnemonic=&Avbryt
OptionPane.title.textAndMnemonic=V\u00E4lj ett alternativ OptionPane.title.textAndMnemonic=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.inputDialog.titleAndMnemonic=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.messageDialog.titleAndMnemonic=Meddelande OptionPane.messageDialog.titleAndMnemonic=Meddelande
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgress.textAndMnemonic=Skriver ut PrintingDialog.titleProgress.textAndMnemonic=Skriver ut
PrintingDialog.titleAborting.textAndMnemonic=Skriver ut (avbryter) PrintingDialog.titleAborting.textAndMnemonic=Skriver ut (avbryter)
PrintingDialog.contentInitial.textAndMnemonic=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.contentProgress.textAndMnemonic=Utskriven sida {0}... PrintingDialog.contentProgress.textAndMnemonic=Utskriven sida {0}...
PrintingDialog.contentAborting.textAndMnemonic=Utskriften avbryts... PrintingDialog.contentAborting.textAndMnemonic=Utskriften avbryts...
PrintingDialog.abortButton.textAndMnemonic=&Avbryt PrintingDialog.abortButton.textAndMnemonic=&Avbryt
PrintingDialog.abortButtonToolTip.textAndMnemonic=Avbryt utskrift PrintingDialog.abortButtonToolTip.textAndMnemonic=Avbryt utskrift
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Minimera InternalFrame.iconButtonToolTip=Minimera
InternalFrame.maxButtonToolTip=Maximera InternalFrame.maxButtonToolTip=Maximera
InternalFrame.restoreButtonToolTip=\u00C5terst\u00E4ll InternalFrame.restoreButtonToolTip=\u00C5terst\u00E4ll
InternalFrame.closeButtonToolTip=St\u00E4ng InternalFrame.closeButtonToolTip=St\u00E4ng
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButton.textAndMnemonic=\u00C5terst\u00E4ll InternalFrameTitlePane.restoreButton.textAndMnemonic=\u00C5terst\u00E4ll
InternalFrameTitlePane.moveButton.textAndMnemonic=Flytta InternalFrameTitlePane.moveButton.textAndMnemonic=Flytta
InternalFrameTitlePane.sizeButton.textAndMnemonic=Storlek InternalFrameTitlePane.sizeButton.textAndMnemonic=Storlek
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimera InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimera
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximera InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximera
InternalFrameTitlePane.closeButton.textAndMnemonic=St\u00E4ng InternalFrameTitlePane.closeButton.textAndMnemonic=St\u00E4ng
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButton.textAndMnemonic=Skicka fr\u00E5ga FormView.submitButton.textAndMnemonic=Skicka fr\u00E5ga
FormView.resetButton.textAndMnemonic=\u00C5terst\u00E4ll FormView.resetButton.textAndMnemonic=\u00C5terst\u00E4ll
FormView.browseFileButton.textAndMnemonic=Bl\u00E4ddra... FormView.browseFileButton.textAndMnemonic=Bl\u00E4ddra...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChange.textAndMnemonic=format\u00E4ndring AbstractDocument.styleChange.textAndMnemonic=format\u00E4ndring
AbstractDocument.addition.textAndMnemonic=till\u00E4gg AbstractDocument.addition.textAndMnemonic=till\u00E4gg
AbstractDocument.deletion.textAndMnemonic=borttagning AbstractDocument.deletion.textAndMnemonic=borttagning
AbstractDocument.undo.textAndMnemonic=\u00C5ngra AbstractDocument.undo.textAndMnemonic=\u00C5ngra
AbstractDocument.redo.textAndMnemonic=G\u00F6r om AbstractDocument.redo.textAndMnemonic=G\u00F6r om
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.click.textAndMnemonic=klicka AbstractButton.click.textAndMnemonic=klicka
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undo.textAndMnemonic=\u00C5ngra AbstractUndoableEdit.undo.textAndMnemonic=\u00C5ngra
AbstractUndoableEdit.redo.textAndMnemonic=G\u00F6r om AbstractUndoableEdit.redo.textAndMnemonic=G\u00F6r om
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopup.textAndMnemonic=v\u00E4xlaPopup ComboBox.togglePopup.textAndMnemonic=v\u00E4xlaPopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progress.textAndMnemonic=P\u00E5g\u00E5r... ProgressMonitor.progress.textAndMnemonic=P\u00E5g\u00E5r...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButton.textAndMnemonic=v\u00E4nster knapp SplitPane.leftButton.textAndMnemonic=v\u00E4nster knapp
SplitPane.rightButton.textAndMnemonic=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:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Minimera InternalFrameTitlePane.iconifyButtonAccessibleName=Minimera
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximera InternalFrameTitlePane.maximizeButtonAccessibleName=Maximera
InternalFrameTitlePane.closeButtonAccessibleName=St\u00E4ng InternalFrameTitlePane.closeButtonAccessibleName=St\u00E4ng
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameTextAndMnemonic=R&GB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# 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
# - # -
# #
# 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
# exist. This will typically take the form 'XXXX (M)' where M is the # exist. This will typically take the form 'XXXX (M)' where M is the
# character for the mnemonic. # character for the mnemonic.
# #
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescription.textAndMnemonic=\u666E\u901A\u7684\u6587\u4EF6 FileChooser.fileDescription.textAndMnemonic=\u666E\u901A\u7684\u6587\u4EF6
FileChooser.directoryDescription.textAndMnemonic=\u76EE\u5F55 FileChooser.directoryDescription.textAndMnemonic=\u76EE\u5F55
FileChooser.newFolderError.textAndMnemonic=\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.newFolderParentDoesntExistTitle.textAndMnemonic=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939 FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939
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.newFolderParentDoesntExist.textAndMnemonic=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939\u3002\n\n\u7CFB\u7EDF\u627E\u4E0D\u5230\u6307\u5B9A\u7684\u8DEF\u5F84\u3002
FileChooser.renameErrorTitle.textAndMnemonic=\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.renameError.textAndMnemonic=\u65E0\u6CD5\u91CD\u547D\u540D{0} FileChooser.renameError.textAndMnemonic=\u65E0\u6CD5\u91CD\u547D\u540D{0}
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.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.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6587\u4EF6 FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6587\u4EF6
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C) FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88
FileChooser.saveButton.textAndMnemonic=\u4FDD\u5B58(&S) FileChooser.saveButton.textAndMnemonic=\u4FDD\u5B58(&S)
FileChooser.openButton.textAndMnemonic=\u6253\u5F00(&O) FileChooser.openButton.textAndMnemonic=\u6253\u5F00(&O)
FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58 FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
FileChooser.openDialogTitle.textAndMnemonic=\u6253\u5F00 FileChooser.openDialogTitle.textAndMnemonic=\u6253\u5F00
FileChooser.updateButton.textAndMnemonic=\u66F4\u65B0(&U) FileChooser.updateButton.textAndMnemonic=\u66F4\u65B0(&U)
FileChooser.helpButton.textAndMnemonic=\u5E2E\u52A9(&H) FileChooser.helpButton.textAndMnemonic=\u5E2E\u52A9(&H)
FileChooser.directoryOpenButton.textAndMnemonic=\u6253\u5F00(&O) FileChooser.directoryOpenButton.textAndMnemonic=\u6253\u5F00(&O)
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} MB FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=\u65B0\u5EFA\u6587\u4EF6\u5939 FileChooser.win32.newFolder=\u65B0\u5EFA\u6587\u4EF6\u5939
FileChooser.win32.newFolder.subsequent=\u65B0\u5EFA\u6587\u4EF6\u5939 ({0}) FileChooser.win32.newFolder.subsequent=\u65B0\u5EFA\u6587\u4EF6\u5939 ({0})
FileChooser.other.newFolder=NewFolder FileChooser.other.newFolder=NewFolder
FileChooser.other.newFolder.subsequent=NewFolder.{0} FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846 FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846
FileChooser.saveButtonToolTip.textAndMnemonic=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6 FileChooser.saveButtonToolTip.textAndMnemonic=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6
FileChooser.openButtonToolTip.textAndMnemonic=\u6253\u5F00\u6240\u9009\u6587\u4EF6 FileChooser.openButtonToolTip.textAndMnemonic=\u6253\u5F00\u6240\u9009\u6587\u4EF6
FileChooser.updateButtonToolTip.textAndMnemonic=\u66F4\u65B0\u76EE\u5F55\u5217\u8868 FileChooser.updateButtonToolTip.textAndMnemonic=\u66F4\u65B0\u76EE\u5F55\u5217\u8868
FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser \u5E2E\u52A9 FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser \u5E2E\u52A9
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\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.preview.textAndMnemonic=\u9884\u89C8 ColorChooser.preview.textAndMnemonic=\u9884\u89C8
ColorChooser.ok.textAndMnemonic=\u786E\u5B9A ColorChooser.ok.textAndMnemonic=\u786E\u5B9A
ColorChooser.cancel.textAndMnemonic=\u53D6\u6D88 ColorChooser.cancel.textAndMnemonic=\u53D6\u6D88
ColorChooser.reset.textAndMnemonic=\u91CD\u7F6E(&R) ColorChooser.reset.textAndMnemonic=\u91CD\u7F6E(&R)
ColorChooser.sample.textAndMnemonic=\u793A\u4F8B\u6587\u672C \u793A\u4F8B\u6587\u672C ColorChooser.sample.textAndMnemonic=\u793A\u4F8B\u6587\u672C \u793A\u4F8B\u6587\u672C
ColorChooser.swatches.textAndMnemonic=\u793A\u4F8B(&S) ColorChooser.swatches.textAndMnemonic=\u793A\u4F8B(&S)
ColorChooser.swatchesRecent.textAndMnemonic=\u6700\u8FD1: ColorChooser.swatchesRecent.textAndMnemonic=\u6700\u8FD1:
ColorChooser.hsv.textAndMnemonic=&HSV ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.hsvHue.textAndMnemonic=\u8272\u8C03 ColorChooser.hsvHue.textAndMnemonic=\u8272\u8C03
ColorChooser.hsvSaturation.textAndMnemonic=\u9971\u548C\u5EA6 ColorChooser.hsvSaturation.textAndMnemonic=\u9971\u548C\u5EA6
ColorChooser.hsvValue.textAndMnemonic=\u503C ColorChooser.hsvValue.textAndMnemonic=\u503C
ColorChooser.hsvTransparency.textAndMnemonic=\u900F\u660E\u5EA6 ColorChooser.hsvTransparency.textAndMnemonic=\u900F\u660E\u5EA6
ColorChooser.hsl.textAndMnemonic=HS&L ColorChooser.hsl.textAndMnemonic=HS&L
ColorChooser.hslHue.textAndMnemonic=\u8272\u8C03 ColorChooser.hslHue.textAndMnemonic=\u8272\u8C03
ColorChooser.hslSaturation.textAndMnemonic=\u9971\u548C\u5EA6 ColorChooser.hslSaturation.textAndMnemonic=\u9971\u548C\u5EA6
ColorChooser.hslLightness.textAndMnemonic=\u4EAE\u5EA6 ColorChooser.hslLightness.textAndMnemonic=\u4EAE\u5EA6
ColorChooser.hslTransparency.textAndMnemonic=\u900F\u660E\u5EA6 ColorChooser.hslTransparency.textAndMnemonic=\u900F\u660E\u5EA6
ColorChooser.rgb.textAndMnemonic=R&GB ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.rgbRed.textAndMnemonic=\u7EA2\u8272(&D) ColorChooser.rgbRed.textAndMnemonic=\u7EA2\u8272(&D)
ColorChooser.rgbGreen.textAndMnemonic=\u7EFF\u8272(&N) ColorChooser.rgbGreen.textAndMnemonic=\u7EFF\u8272(&N)
ColorChooser.rgbBlue.textAndMnemonic=\u84DD\u8272(&B) ColorChooser.rgbBlue.textAndMnemonic=\u84DD\u8272(&B)
ColorChooser.rgbAlpha.textAndMnemonic=Alpha ColorChooser.rgbAlpha.textAndMnemonic=Alpha
ColorChooser.rgbHexCode.textAndMnemonic=\u989C\u8272\u4EE3\u7801(&C) ColorChooser.rgbHexCode.textAndMnemonic=\u989C\u8272\u4EE3\u7801(&C)
ColorChooser.cmyk.textAndMnemonic=C&MYK ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.cmykCyan.textAndMnemonic=\u9752\u8272 ColorChooser.cmykCyan.textAndMnemonic=\u9752\u8272
ColorChooser.cmykMagenta.textAndMnemonic=\u7D2B\u7EA2\u8272 ColorChooser.cmykMagenta.textAndMnemonic=\u7D2B\u7EA2\u8272
ColorChooser.cmykYellow.textAndMnemonic=\u9EC4\u8272 ColorChooser.cmykYellow.textAndMnemonic=\u9EC4\u8272
ColorChooser.cmykBlack.textAndMnemonic=\u9ED1\u8272 ColorChooser.cmykBlack.textAndMnemonic=\u9ED1\u8272
ColorChooser.cmykAlpha.textAndMnemonic=Alpha ColorChooser.cmykAlpha.textAndMnemonic=Alpha
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# 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.yesButton.textAndMnemonic=\u662F(&Y) OptionPane.yesButton.textAndMnemonic=\u662F(&Y)
OptionPane.noButton.textAndMnemonic=\u5426(&N) OptionPane.noButton.textAndMnemonic=\u5426(&N)
OptionPane.okButton.textAndMnemonic=\u786E\u5B9A(&O) OptionPane.okButton.textAndMnemonic=\u786E\u5B9A(&O)
OptionPane.cancelButton.textAndMnemonic=\u53D6\u6D88 OptionPane.cancelButton.textAndMnemonic=\u53D6\u6D88
OptionPane.title.textAndMnemonic=\u9009\u62E9\u4E00\u4E2A\u9009\u9879 OptionPane.title.textAndMnemonic=\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.inputDialog.titleAndMnemonic=\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.messageDialog.titleAndMnemonic=\u6D88\u606F OptionPane.messageDialog.titleAndMnemonic=\u6D88\u606F
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgress.textAndMnemonic=\u6253\u5370 PrintingDialog.titleProgress.textAndMnemonic=\u6253\u5370
PrintingDialog.titleAborting.textAndMnemonic=\u6253\u5370 (\u6B63\u5728\u4E2D\u6B62) PrintingDialog.titleAborting.textAndMnemonic=\u6253\u5370 (\u6B63\u5728\u4E2D\u6B62)
PrintingDialog.contentInitial.textAndMnemonic=\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.contentProgress.textAndMnemonic=\u5DF2\u6253\u5370\u9875 {0}... PrintingDialog.contentProgress.textAndMnemonic=\u5DF2\u6253\u5370\u9875 {0}...
PrintingDialog.contentAborting.textAndMnemonic=\u6B63\u5728\u4E2D\u6B62\u6253\u5370... PrintingDialog.contentAborting.textAndMnemonic=\u6B63\u5728\u4E2D\u6B62\u6253\u5370...
PrintingDialog.abortButton.textAndMnemonic=\u4E2D\u6B62(&A) PrintingDialog.abortButton.textAndMnemonic=\u4E2D\u6B62(&A)
PrintingDialog.abortButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6253\u5370 PrintingDialog.abortButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6253\u5370
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316 InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316 InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
InternalFrame.restoreButtonToolTip=\u8FD8\u539F InternalFrame.restoreButtonToolTip=\u8FD8\u539F
InternalFrame.closeButtonToolTip=\u5173\u95ED InternalFrame.closeButtonToolTip=\u5173\u95ED
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButton.textAndMnemonic=\u8FD8\u539F InternalFrameTitlePane.restoreButton.textAndMnemonic=\u8FD8\u539F
InternalFrameTitlePane.moveButton.textAndMnemonic=\u79FB\u52A8 InternalFrameTitlePane.moveButton.textAndMnemonic=\u79FB\u52A8
InternalFrameTitlePane.sizeButton.textAndMnemonic=\u5927\u5C0F InternalFrameTitlePane.sizeButton.textAndMnemonic=\u5927\u5C0F
InternalFrameTitlePane.minimizeButton.textAndMnemonic=\u6700\u5C0F\u5316 InternalFrameTitlePane.minimizeButton.textAndMnemonic=\u6700\u5C0F\u5316
InternalFrameTitlePane.maximizeButton.textAndMnemonic=\u6700\u5927\u5316 InternalFrameTitlePane.maximizeButton.textAndMnemonic=\u6700\u5927\u5316
InternalFrameTitlePane.closeButton.textAndMnemonic=\u5173\u95ED InternalFrameTitlePane.closeButton.textAndMnemonic=\u5173\u95ED
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButton.textAndMnemonic=\u63D0\u4EA4\u67E5\u8BE2 FormView.submitButton.textAndMnemonic=\u63D0\u4EA4\u67E5\u8BE2
FormView.resetButton.textAndMnemonic=\u91CD\u8BBE FormView.resetButton.textAndMnemonic=\u91CD\u8BBE
FormView.browseFileButton.textAndMnemonic=\u6D4F\u89C8... FormView.browseFileButton.textAndMnemonic=\u6D4F\u89C8...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChange.textAndMnemonic=\u6837\u5F0F\u66F4\u6539 AbstractDocument.styleChange.textAndMnemonic=\u6837\u5F0F\u66F4\u6539
AbstractDocument.addition.textAndMnemonic=\u6DFB\u52A0 AbstractDocument.addition.textAndMnemonic=\u6DFB\u52A0
AbstractDocument.deletion.textAndMnemonic=\u5220\u9664 AbstractDocument.deletion.textAndMnemonic=\u5220\u9664
AbstractDocument.undo.textAndMnemonic=\u64A4\u6D88 AbstractDocument.undo.textAndMnemonic=\u64A4\u6D88
AbstractDocument.redo.textAndMnemonic=\u91CD\u505A AbstractDocument.redo.textAndMnemonic=\u91CD\u505A
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.click.textAndMnemonic=\u5355\u51FB AbstractButton.click.textAndMnemonic=\u5355\u51FB
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undo.textAndMnemonic=\u64A4\u6D88 AbstractUndoableEdit.undo.textAndMnemonic=\u64A4\u6D88
AbstractUndoableEdit.redo.textAndMnemonic=\u91CD\u505A AbstractUndoableEdit.redo.textAndMnemonic=\u91CD\u505A
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopup.textAndMnemonic=togglePopup ComboBox.togglePopup.textAndMnemonic=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progress.textAndMnemonic=\u8FDB\u5EA6... ProgressMonitor.progress.textAndMnemonic=\u8FDB\u5EA6...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButton.textAndMnemonic=\u5DE6\u952E SplitPane.leftButton.textAndMnemonic=\u5DE6\u952E
SplitPane.rightButton.textAndMnemonic=\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:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=\u56FE\u6807\u5316 InternalFrameTitlePane.iconifyButtonAccessibleName=\u56FE\u6807\u5316
InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316 InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316
InternalFrameTitlePane.closeButtonAccessibleName=\u5173\u95ED InternalFrameTitlePane.closeButtonAccessibleName=\u5173\u95ED
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used in Swing # It contains Locale specific strings used in Swing
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# ColorChooser # ColorChooser
# FileChooser # FileChooser
# OptionPane # OptionPane
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# MNEMONIC NOTE: # MNEMONIC NOTE:
# Many of strings in this file are used by widgets that have a # Many of strings in this file are used by widgets that have a
# mnemonic, for example: # mnemonic, for example:
# ColorChooser.rgbNameTextAndMnemonic=R&GB # ColorChooser.rgbNameTextAndMnemonic=R&GB
# 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
# - # -
# #
# 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
# exist. This will typically take the form 'XXXX (M)' where M is the # exist. This will typically take the form 'XXXX (M)' where M is the
# character for the mnemonic. # character for the mnemonic.
# #
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescription.textAndMnemonic=\u4E00\u822C\u6A94\u6848 FileChooser.fileDescription.textAndMnemonic=\u4E00\u822C\u6A94\u6848
FileChooser.directoryDescription.textAndMnemonic=\u76EE\u9304 FileChooser.directoryDescription.textAndMnemonic=\u76EE\u9304
FileChooser.newFolderError.textAndMnemonic=\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.newFolderParentDoesntExistTitle.textAndMnemonic=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E
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.newFolderParentDoesntExist.textAndMnemonic=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E\u3002\n\n\u7CFB\u7D71\u627E\u4E0D\u5230\u6307\u5B9A\u7684\u8DEF\u5F91\u3002
FileChooser.renameErrorTitle.textAndMnemonic=\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.renameError.textAndMnemonic=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0} FileChooser.renameError.textAndMnemonic=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0}
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.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.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6A94\u6848 FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6A94\u6848
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C) FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88
FileChooser.saveButton.textAndMnemonic=\u5132\u5B58(&S) FileChooser.saveButton.textAndMnemonic=\u5132\u5B58(&S)
FileChooser.openButton.textAndMnemonic=\u958B\u555F(&O) FileChooser.openButton.textAndMnemonic=\u958B\u555F(&O)
FileChooser.saveDialogTitle.textAndMnemonic=\u5132\u5B58 FileChooser.saveDialogTitle.textAndMnemonic=\u5132\u5B58
FileChooser.openDialogTitle.textAndMnemonic=\u958B\u555F FileChooser.openDialogTitle.textAndMnemonic=\u958B\u555F
FileChooser.updateButton.textAndMnemonic=\u66F4\u65B0(&U) FileChooser.updateButton.textAndMnemonic=\u66F4\u65B0(&U)
FileChooser.helpButton.textAndMnemonic=\u8AAA\u660E(&H) FileChooser.helpButton.textAndMnemonic=\u8AAA\u660E(&H)
FileChooser.directoryOpenButton.textAndMnemonic=\u958B\u555F(&O) FileChooser.directoryOpenButton.textAndMnemonic=\u958B\u555F(&O)
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} MB FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=\u65B0\u8CC7\u6599\u593E FileChooser.win32.newFolder=\u65B0\u8CC7\u6599\u593E
FileChooser.win32.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E ({0}) FileChooser.win32.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E ({0})
FileChooser.other.newFolder=\u65B0\u8CC7\u6599\u593E FileChooser.other.newFolder=\u65B0\u8CC7\u6599\u593E
FileChooser.other.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E.{0} FileChooser.other.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTip.textAndMnemonic=\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.saveButtonToolTip.textAndMnemonic=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848 FileChooser.saveButtonToolTip.textAndMnemonic=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848
FileChooser.openButtonToolTip.textAndMnemonic=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848 FileChooser.openButtonToolTip.textAndMnemonic=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848
FileChooser.updateButtonToolTip.textAndMnemonic=\u66F4\u65B0\u76EE\u9304\u6E05\u55AE FileChooser.updateButtonToolTip.textAndMnemonic=\u66F4\u65B0\u76EE\u9304\u6E05\u55AE
FileChooser.helpButtonToolTip.textAndMnemonic=\u300C\u6A94\u6848\u9078\u64C7\u5668\u300D\u8AAA\u660E FileChooser.helpButtonToolTip.textAndMnemonic=\u300C\u6A94\u6848\u9078\u64C7\u5668\u300D\u8AAA\u660E
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\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.preview.textAndMnemonic=\u9810\u89BD ColorChooser.preview.textAndMnemonic=\u9810\u89BD
ColorChooser.ok.textAndMnemonic=\u78BA\u5B9A ColorChooser.ok.textAndMnemonic=\u78BA\u5B9A
ColorChooser.cancel.textAndMnemonic=\u53D6\u6D88 ColorChooser.cancel.textAndMnemonic=\u53D6\u6D88
ColorChooser.reset.textAndMnemonic=\u91CD\u8A2D(&R) ColorChooser.reset.textAndMnemonic=\u91CD\u8A2D(&R)
ColorChooser.sample.textAndMnemonic=\u7BC4\u4F8B\u6587\u5B57 \u7BC4\u4F8B\u6587\u5B57 ColorChooser.sample.textAndMnemonic=\u7BC4\u4F8B\u6587\u5B57 \u7BC4\u4F8B\u6587\u5B57
ColorChooser.swatches.textAndMnemonic=\u8ABF\u8272\u677F(&S) ColorChooser.swatches.textAndMnemonic=\u8ABF\u8272\u677F(&S)
ColorChooser.swatchesRecent.textAndMnemonic=\u6700\u65B0\u9078\u64C7: ColorChooser.swatchesRecent.textAndMnemonic=\u6700\u65B0\u9078\u64C7:
ColorChooser.hsv.textAndMnemonic=&HSV ColorChooser.hsv.textAndMnemonic=&HSV
ColorChooser.hsvHue.textAndMnemonic=\u8272\u8ABF ColorChooser.hsvHue.textAndMnemonic=\u8272\u8ABF
ColorChooser.hsvSaturation.textAndMnemonic=\u5F69\u5EA6 ColorChooser.hsvSaturation.textAndMnemonic=\u5F69\u5EA6
ColorChooser.hsvValue.textAndMnemonic=\u6578\u503C ColorChooser.hsvValue.textAndMnemonic=\u6578\u503C
ColorChooser.hsvTransparency.textAndMnemonic=\u900F\u660E\u5EA6 ColorChooser.hsvTransparency.textAndMnemonic=\u900F\u660E\u5EA6
ColorChooser.hsl.textAndMnemonic=HS&L ColorChooser.hsl.textAndMnemonic=HS&L
ColorChooser.hslHue.textAndMnemonic=\u8272\u8ABF ColorChooser.hslHue.textAndMnemonic=\u8272\u8ABF
ColorChooser.hslSaturation.textAndMnemonic=\u5F69\u5EA6 ColorChooser.hslSaturation.textAndMnemonic=\u5F69\u5EA6
ColorChooser.hslLightness.textAndMnemonic=\u4EAE\u5EA6 ColorChooser.hslLightness.textAndMnemonic=\u4EAE\u5EA6
ColorChooser.hslTransparency.textAndMnemonic=\u900F\u660E\u5EA6 ColorChooser.hslTransparency.textAndMnemonic=\u900F\u660E\u5EA6
ColorChooser.rgb.textAndMnemonic=R&GB ColorChooser.rgb.textAndMnemonic=R&GB
ColorChooser.rgbRed.textAndMnemonic=\u7D05(&D) ColorChooser.rgbRed.textAndMnemonic=\u7D05(&D)
ColorChooser.rgbGreen.textAndMnemonic=\u7DA0(&N) ColorChooser.rgbGreen.textAndMnemonic=\u7DA0(&N)
ColorChooser.rgbBlue.textAndMnemonic=\u85CD(&B) ColorChooser.rgbBlue.textAndMnemonic=\u85CD(&B)
ColorChooser.rgbAlpha.textAndMnemonic=Alpha ColorChooser.rgbAlpha.textAndMnemonic=Alpha
ColorChooser.rgbHexCode.textAndMnemonic=\u984F\u8272\u4EE3\u78BC(&C) ColorChooser.rgbHexCode.textAndMnemonic=\u984F\u8272\u4EE3\u78BC(&C)
ColorChooser.cmyk.textAndMnemonic=C&MYK ColorChooser.cmyk.textAndMnemonic=C&MYK
ColorChooser.cmykCyan.textAndMnemonic=\u85CD\u7DA0\u8272 ColorChooser.cmykCyan.textAndMnemonic=\u85CD\u7DA0\u8272
ColorChooser.cmykMagenta.textAndMnemonic=\u7D2B\u7D05\u8272 ColorChooser.cmykMagenta.textAndMnemonic=\u7D2B\u7D05\u8272
ColorChooser.cmykYellow.textAndMnemonic=\u9EC3\u8272 ColorChooser.cmykYellow.textAndMnemonic=\u9EC3\u8272
ColorChooser.cmykBlack.textAndMnemonic=\u9ED1\u8272 ColorChooser.cmykBlack.textAndMnemonic=\u9ED1\u8272
ColorChooser.cmykAlpha.textAndMnemonic=Alpha ColorChooser.cmykAlpha.textAndMnemonic=Alpha
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# 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.yesButton.textAndMnemonic=\u662F(&Y) OptionPane.yesButton.textAndMnemonic=\u662F(&Y)
OptionPane.noButton.textAndMnemonic=\u5426(&N) OptionPane.noButton.textAndMnemonic=\u5426(&N)
OptionPane.okButton.textAndMnemonic=\u78BA\u5B9A(&O) OptionPane.okButton.textAndMnemonic=\u78BA\u5B9A(&O)
OptionPane.cancelButton.textAndMnemonic=\u53D6\u6D88 OptionPane.cancelButton.textAndMnemonic=\u53D6\u6D88
OptionPane.title.textAndMnemonic=\u9078\u53D6\u4E00\u500B\u9078\u9805 OptionPane.title.textAndMnemonic=\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.inputDialog.titleAndMnemonic=\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.messageDialog.titleAndMnemonic=\u8A0A\u606F OptionPane.messageDialog.titleAndMnemonic=\u8A0A\u606F
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgress.textAndMnemonic=\u5217\u5370 PrintingDialog.titleProgress.textAndMnemonic=\u5217\u5370
PrintingDialog.titleAborting.textAndMnemonic=\u5217\u5370 (\u4E2D\u6B62) PrintingDialog.titleAborting.textAndMnemonic=\u5217\u5370 (\u4E2D\u6B62)
PrintingDialog.contentInitial.textAndMnemonic=\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.contentProgress.textAndMnemonic=\u5DF2\u5217\u5370\u7684\u9801\u9762 {0}... PrintingDialog.contentProgress.textAndMnemonic=\u5DF2\u5217\u5370\u7684\u9801\u9762 {0}...
PrintingDialog.contentAborting.textAndMnemonic=\u6B63\u5728\u4E2D\u6B62\u5217\u5370... PrintingDialog.contentAborting.textAndMnemonic=\u6B63\u5728\u4E2D\u6B62\u5217\u5370...
PrintingDialog.abortButton.textAndMnemonic=\u4E2D\u6B62(&A) PrintingDialog.abortButton.textAndMnemonic=\u4E2D\u6B62(&A)
PrintingDialog.abortButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u5217\u5370 PrintingDialog.abortButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u5217\u5370
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316 InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316 InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
InternalFrame.restoreButtonToolTip=\u5FA9\u539F InternalFrame.restoreButtonToolTip=\u5FA9\u539F
InternalFrame.closeButtonToolTip=\u95DC\u9589 InternalFrame.closeButtonToolTip=\u95DC\u9589
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButton.textAndMnemonic=\u5FA9\u539F InternalFrameTitlePane.restoreButton.textAndMnemonic=\u5FA9\u539F
InternalFrameTitlePane.moveButton.textAndMnemonic=\u79FB\u52D5 InternalFrameTitlePane.moveButton.textAndMnemonic=\u79FB\u52D5
InternalFrameTitlePane.sizeButton.textAndMnemonic=\u5927\u5C0F InternalFrameTitlePane.sizeButton.textAndMnemonic=\u5927\u5C0F
InternalFrameTitlePane.minimizeButton.textAndMnemonic=\u6700\u5C0F\u5316 InternalFrameTitlePane.minimizeButton.textAndMnemonic=\u6700\u5C0F\u5316
InternalFrameTitlePane.maximizeButton.textAndMnemonic=\u6700\u5927\u5316 InternalFrameTitlePane.maximizeButton.textAndMnemonic=\u6700\u5927\u5316
InternalFrameTitlePane.closeButton.textAndMnemonic=\u95DC\u9589 InternalFrameTitlePane.closeButton.textAndMnemonic=\u95DC\u9589
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButton.textAndMnemonic=\u9001\u51FA\u67E5\u8A62 FormView.submitButton.textAndMnemonic=\u9001\u51FA\u67E5\u8A62
FormView.resetButton.textAndMnemonic=\u91CD\u8A2D FormView.resetButton.textAndMnemonic=\u91CD\u8A2D
FormView.browseFileButton.textAndMnemonic=\u700F\u89BD... FormView.browseFileButton.textAndMnemonic=\u700F\u89BD...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChange.textAndMnemonic=\u6A23\u5F0F\u8B8A\u66F4 AbstractDocument.styleChange.textAndMnemonic=\u6A23\u5F0F\u8B8A\u66F4
AbstractDocument.addition.textAndMnemonic=\u9644\u52A0 AbstractDocument.addition.textAndMnemonic=\u9644\u52A0
AbstractDocument.deletion.textAndMnemonic=\u522A\u9664 AbstractDocument.deletion.textAndMnemonic=\u522A\u9664
AbstractDocument.undo.textAndMnemonic=\u9084\u539F AbstractDocument.undo.textAndMnemonic=\u9084\u539F
AbstractDocument.redo.textAndMnemonic=\u91CD\u505A AbstractDocument.redo.textAndMnemonic=\u91CD\u505A
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.click.textAndMnemonic=\u6309\u4E00\u4E0B AbstractButton.click.textAndMnemonic=\u6309\u4E00\u4E0B
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undo.textAndMnemonic=\u9084\u539F AbstractUndoableEdit.undo.textAndMnemonic=\u9084\u539F
AbstractUndoableEdit.redo.textAndMnemonic=\u91CD\u505A AbstractUndoableEdit.redo.textAndMnemonic=\u91CD\u505A
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopup.textAndMnemonic=\u5207\u63DB\u5373\u73FE\u5F0F\u8996\u7A97 ComboBox.togglePopup.textAndMnemonic=\u5207\u63DB\u5373\u73FE\u5F0F\u8996\u7A97
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progress.textAndMnemonic=\u9032\u5EA6... ProgressMonitor.progress.textAndMnemonic=\u9032\u5EA6...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButton.textAndMnemonic=\u5DE6\u6309\u9215 SplitPane.leftButton.textAndMnemonic=\u5DE6\u6309\u9215
SplitPane.rightButton.textAndMnemonic=\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:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=\u5716\u793A\u5316 InternalFrameTitlePane.iconifyButtonAccessibleName=\u5716\u793A\u5316
InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316 InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316
InternalFrameTitlePane.closeButtonAccessibleName=\u95DC\u9589 InternalFrameTitlePane.closeButtonAccessibleName=\u95DC\u9589
# This properties file is used to create a PropertyResourceBundle # This properties file is used to create a PropertyResourceBundle
# It contains Locale specific strings used be the Metal Look and Feel. # It contains Locale specific strings used be the Metal Look and Feel.
# Currently, the following components need this for support: # Currently, the following components need this for support:
# #
# FileChooser # FileChooser
# #
# When this file is read in, the strings are put into the # When this file is read in, the strings are put into the
# defaults table. This is an implementation detail of the current # defaults table. This is an implementation detail of the current
# workings of Swing. DO NOT DEPEND ON THIS. # workings of Swing. DO NOT DEPEND ON THIS.
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# Refer to the note in basic.properties for a description as to what # Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them. # the mnemonics correspond to and how to calculate them.
# #
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabel.textAndMnemonic=Look &In: FileChooser.lookInLabel.textAndMnemonic=Look &In:
FileChooser.saveInLabel.textAndMnemonic=Save In: FileChooser.saveInLabel.textAndMnemonic=Save In:
FileChooser.fileNameLabel.textAndMnemonic=File &Name: FileChooser.fileNameLabel.textAndMnemonic=File &Name:
FileChooser.folderNameLabel.textAndMnemonic=Folder &name: FileChooser.folderNameLabel.textAndMnemonic=Folder &name:
FileChooser.filesOfTypeLabel.textAndMnemonic=Files of &Type: FileChooser.filesOfTypeLabel.textAndMnemonic=Files of &Type:
FileChooser.upFolderToolTip.textAndMnemonic=Up One Level FileChooser.upFolderToolTip.textAndMnemonic=Up One Level
FileChooser.upFolderAccessibleName=Up FileChooser.upFolderAccessibleName=Up
FileChooser.homeFolderToolTip.textAndMnemonic=Home FileChooser.homeFolderToolTip.textAndMnemonic=Home
FileChooser.homeFolderAccessibleName=Home FileChooser.homeFolderAccessibleName=Home
FileChooser.newFolderToolTip.textAndMnemonic=Create New Folder FileChooser.newFolderToolTip.textAndMnemonic=Create New Folder
FileChooser.newFolderAccessibleName=New Folder FileChooser.newFolderAccessibleName=New Folder
FileChooser.newFolderActionLabel.textAndMnemonic=New Folder FileChooser.newFolderActionLabel.textAndMnemonic=New Folder
FileChooser.listViewButtonToolTip.textAndMnemonic=List FileChooser.listViewButtonToolTip.textAndMnemonic=List
FileChooser.listViewButtonAccessibleName=List FileChooser.listViewButtonAccessibleName=List
FileChooser.listViewActionLabel.textAndMnemonic=List FileChooser.listViewActionLabel.textAndMnemonic=List
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Details FileChooser.detailsViewButtonToolTip.textAndMnemonic=Details
FileChooser.detailsViewButtonAccessibleName=Details FileChooser.detailsViewButtonAccessibleName=Details
FileChooser.detailsViewActionLabel.textAndMnemonic=Details FileChooser.detailsViewActionLabel.textAndMnemonic=Details
FileChooser.refreshActionLabel.textAndMnemonic=Refresh FileChooser.refreshActionLabel.textAndMnemonic=Refresh
FileChooser.viewMenuLabel.textAndMnemonic=View FileChooser.viewMenuLabel.textAndMnemonic=View
FileChooser.fileNameHeader.textAndMnemonic=Name FileChooser.fileNameHeader.textAndMnemonic=Name
FileChooser.fileSizeHeader.textAndMnemonic=Size FileChooser.fileSizeHeader.textAndMnemonic=Size
FileChooser.fileTypeHeader.textAndMnemonic=Type FileChooser.fileTypeHeader.textAndMnemonic=Type
FileChooser.fileDateHeader.textAndMnemonic=Modified FileChooser.fileDateHeader.textAndMnemonic=Modified
FileChooser.fileAttrHeader.textAndMnemonic=Attributes FileChooser.fileAttrHeader.textAndMnemonic=Attributes
FileChooser.saveButton.textAndMnemonic=Save
############ Used by MetalTitlePane if rendering window decorations############ FileChooser.openButton.textAndMnemonic=Open
MetalTitlePane.restore.titleAndMnemonic=&Restore
MetalTitlePane.iconify.titleAndMnemonic=Minimiz&e ############ Used by MetalTitlePane if rendering window decorations############
MetalTitlePane.maximize.titleAndMnemonic=Ma&ximize MetalTitlePane.restore.titleAndMnemonic=&Restore
MetalTitlePane.close.titleAndMnemonic=&Close MetalTitlePane.iconify.titleAndMnemonic=Minimiz&e
MetalTitlePane.maximize.titleAndMnemonic=Ma&ximize
MetalTitlePane.close.titleAndMnemonic=&Close
...@@ -288,12 +288,11 @@ public class HashMap<K,V> ...@@ -288,12 +288,11 @@ public class HashMap<K,V>
* in lower bits. * in lower bits.
*/ */
final int hash(Object k) { final int hash(Object k) {
int h = hashSeed;
if (k instanceof String) { if (k instanceof String) {
return ((String)k).hash32(); return ((String) k).hash32();
} }
h ^= k.hashCode(); int h = hashSeed ^ k.hashCode();
// This function ensures that hashCodes that differ only by // This function ensures that hashCodes that differ only by
// constant multiples at each bit position have a bounded // constant multiples at each bit position have a bounded
......
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册