Merge
This commit is contained in:
commit
9fd5ef2141
@ -154,3 +154,4 @@ c5b882dce0fe27e05dc64debc92b1fb9ebf880ec jdk8-b29
|
|||||||
cdbb33303ea344d5e9013e2dd642e7a6e7768db6 jdk8-b30
|
cdbb33303ea344d5e9013e2dd642e7a6e7768db6 jdk8-b30
|
||||||
27f0c08c427c65fcab6917edf646f59058e59524 jdk8-b31
|
27f0c08c427c65fcab6917edf646f59058e59524 jdk8-b31
|
||||||
ddfe5562f61f54ed2121ac0c73b688b94f3e66b5 jdk8-b32
|
ddfe5562f61f54ed2121ac0c73b688b94f3e66b5 jdk8-b32
|
||||||
|
78cea258caaba3980ba186c426da82c8fe41bfd7 jdk8-b33
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2005, 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
|
||||||
@ -24,6 +24,8 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../../../..
|
BUILDDIR = ../../../..
|
||||||
PACKAGE = com.sun.tools.attach
|
PACKAGE = com.sun.tools.attach
|
||||||
LIBRARY = attach
|
LIBRARY = attach
|
||||||
|
@ -53,6 +53,11 @@ ifndef PLATFORM_SRC
|
|||||||
PLATFORM_SRC = $(BUILDDIR)/../src/solaris
|
PLATFORM_SRC = $(BUILDDIR)/../src/solaris
|
||||||
endif # PLATFORM_SRC
|
endif # PLATFORM_SRC
|
||||||
|
|
||||||
|
# Location of the various .properties files specific to Linux platform
|
||||||
|
ifndef PLATFORM_PROPERTIES
|
||||||
|
PLATFORM_PROPERTIES = $(BUILDDIR)/../src/solaris/lib
|
||||||
|
endif # PLATFORM_SRC
|
||||||
|
|
||||||
# Platform specific closed sources
|
# Platform specific closed sources
|
||||||
ifndef OPENJDK
|
ifndef OPENJDK
|
||||||
ifndef CLOSED_PLATFORM_SRC
|
ifndef CLOSED_PLATFORM_SRC
|
||||||
@ -126,8 +131,9 @@ ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
|||||||
# Setting ENABLE_FULL_DEBUG_SYMBOLS=1 (and OBJCOPY) above enables the
|
# Setting ENABLE_FULL_DEBUG_SYMBOLS=1 (and OBJCOPY) above enables the
|
||||||
# JDK build to import .debuginfo or .diz files from the HotSpot build.
|
# JDK build to import .debuginfo or .diz files from the HotSpot build.
|
||||||
# However, adding FDS support to the JDK build will occur in phases
|
# However, adding FDS support to the JDK build will occur in phases
|
||||||
# so a different make variable (LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS)
|
# so a different make variable (LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS
|
||||||
# is used to indicate that a particular library supports FDS.
|
# and PROGRAM_SUPPORTS_FULL_DEBUG_SYMBOLS) is used to indicate that a
|
||||||
|
# particular library or program supports FDS.
|
||||||
|
|
||||||
ifeq ($(OBJCOPY),)
|
ifeq ($(OBJCOPY),)
|
||||||
_JUNK_ := $(shell \
|
_JUNK_ := $(shell \
|
||||||
@ -256,6 +262,17 @@ ifeq ($(DEBUG_BINARIES), true)
|
|||||||
CFLAGS_REQUIRED += $(DEBUG_FLAG)
|
CFLAGS_REQUIRED += $(DEBUG_FLAG)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# If Full Debug Symbols is enabled, then we want the same debug and
|
||||||
|
# optimization flags as used by FASTDEBUG.
|
||||||
|
#
|
||||||
|
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||||
|
ifeq ($(LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS),1)
|
||||||
|
ifeq ($(VARIANT), OPT)
|
||||||
|
CC_OPT = $(DEBUG_FLAG) $(CC_OPT/$(FASTDEBUG_OPTIMIZATION_LEVEL))
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
CFLAGS_OPT = $(CC_OPT)
|
CFLAGS_OPT = $(CC_OPT)
|
||||||
CFLAGS_DBG = $(DEBUG_FLAG)
|
CFLAGS_DBG = $(DEBUG_FLAG)
|
||||||
CFLAGS_COMMON += $(CFLAGS_REQUIRED)
|
CFLAGS_COMMON += $(CFLAGS_REQUIRED)
|
||||||
|
@ -53,6 +53,11 @@ ifndef PLATFORM_SRC
|
|||||||
PLATFORM_SRC = $(BUILDDIR)/../src/solaris
|
PLATFORM_SRC = $(BUILDDIR)/../src/solaris
|
||||||
endif # PLATFORM_SRC
|
endif # PLATFORM_SRC
|
||||||
|
|
||||||
|
# Location of the various .properties files specific to MacOS X platform
|
||||||
|
ifndef PLATFORM_PROPERTIES
|
||||||
|
PLATFORM_PROPERTIES = $(BUILDDIR)/../src/macosx/lib
|
||||||
|
endif # PLATFORM_SRC
|
||||||
|
|
||||||
PLATFORM_SRC_MACOS = $(BUILDDIR)/../src/macosx
|
PLATFORM_SRC_MACOS = $(BUILDDIR)/../src/macosx
|
||||||
|
|
||||||
# BSD build pulls its platform sources from the solaris tree.
|
# BSD build pulls its platform sources from the solaris tree.
|
||||||
|
@ -51,6 +51,11 @@ ifndef PLATFORM_SRC
|
|||||||
PLATFORM_SRC = $(BUILDDIR)/../src/solaris
|
PLATFORM_SRC = $(BUILDDIR)/../src/solaris
|
||||||
endif # PLATFORM_SRC
|
endif # PLATFORM_SRC
|
||||||
|
|
||||||
|
# Location of the various .properties files specific to Solaris platform
|
||||||
|
ifndef PLATFORM_PROPERTIES
|
||||||
|
PLATFORM_PROPERTIES = $(BUILDDIR)/../src/solaris/lib
|
||||||
|
endif # PLATFORM_SRC
|
||||||
|
|
||||||
# Platform specific closed sources
|
# Platform specific closed sources
|
||||||
ifndef OPENJDK
|
ifndef OPENJDK
|
||||||
ifndef CLOSED_PLATFORM_SRC
|
ifndef CLOSED_PLATFORM_SRC
|
||||||
@ -133,8 +138,9 @@ ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
|||||||
# Setting ENABLE_FULL_DEBUG_SYMBOLS=1 (and OBJCOPY) above enables the
|
# Setting ENABLE_FULL_DEBUG_SYMBOLS=1 (and OBJCOPY) above enables the
|
||||||
# JDK build to import .debuginfo or .diz files from the HotSpot build.
|
# JDK build to import .debuginfo or .diz files from the HotSpot build.
|
||||||
# However, adding FDS support to the JDK build will occur in phases
|
# However, adding FDS support to the JDK build will occur in phases
|
||||||
# so a different make variable (LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS)
|
# so a different make variable (LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS
|
||||||
# is used to indicate that a particular library supports FDS.
|
# and PROGRAM_SUPPORTS_FULL_DEBUG_SYMBOLS) is used to indicate that a
|
||||||
|
# particular library or program supports FDS.
|
||||||
|
|
||||||
ifeq ($(OBJCOPY),)
|
ifeq ($(OBJCOPY),)
|
||||||
_JUNK_ := $(shell \
|
_JUNK_ := $(shell \
|
||||||
@ -235,6 +241,21 @@ ifeq ($(FASTDEBUG), true)
|
|||||||
CXXFLAGS_DEBUG_OPTION = -g0 $(CXX_OPT/$(FASTDEBUG_OPTIMIZATION_LEVEL))
|
CXXFLAGS_DEBUG_OPTION = -g0 $(CXX_OPT/$(FASTDEBUG_OPTIMIZATION_LEVEL))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# If Full Debug Symbols is enabled, then we want the same debug and
|
||||||
|
# optimization flags as used by FASTDEBUG. We also want all the
|
||||||
|
# debug info in one place (-xs).
|
||||||
|
#
|
||||||
|
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||||
|
ifeq ($(LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS),1)
|
||||||
|
ifeq ($(VARIANT), OPT)
|
||||||
|
CC_OPT = -g -xs $(CC_OPT/$(FASTDEBUG_OPTIMIZATION_LEVEL))
|
||||||
|
CXX_OPT = -g0 -xs $(CXX_OPT/$(FASTDEBUG_OPTIMIZATION_LEVEL))
|
||||||
|
endif
|
||||||
|
CFLAGS_DEBUG_OPTION += -xs
|
||||||
|
CXXFLAGS_DEBUG_OPTION += -xs
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
CFLAGS_COMMON = -L$(OBJDIR)
|
CFLAGS_COMMON = -L$(OBJDIR)
|
||||||
|
|
||||||
# Do not allow C99 language features like declarations in code etc.
|
# Do not allow C99 language features like declarations in code etc.
|
||||||
|
@ -52,6 +52,11 @@ ifndef PLATFORM_SRC
|
|||||||
PLATFORM_SRC = $(BUILDDIR)/../src/windows
|
PLATFORM_SRC = $(BUILDDIR)/../src/windows
|
||||||
endif # PLATFORM_SRC
|
endif # PLATFORM_SRC
|
||||||
|
|
||||||
|
# Location of the various .properties files specific to Windows platform
|
||||||
|
ifndef PLATFORM_PROPERTIES
|
||||||
|
PLATFORM_PROPERTIES = $(BUILDDIR)/../src/windows/lib
|
||||||
|
endif # PLATFORM_SRC
|
||||||
|
|
||||||
# Platform specific closed sources
|
# Platform specific closed sources
|
||||||
ifndef OPENJDK
|
ifndef OPENJDK
|
||||||
ifndef CLOSED_PLATFORM_SRC
|
ifndef CLOSED_PLATFORM_SRC
|
||||||
|
@ -181,8 +181,17 @@ $(ACTUAL_LIBRARY):: $(OBJDIR)/$(LIBRARY).lcf
|
|||||||
$(CP) $(OBJDIR)/$(@F) $@
|
$(CP) $(OBJDIR)/$(@F) $@
|
||||||
@$(call binary_file_verification,$@)
|
@$(call binary_file_verification,$@)
|
||||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||||
|
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||||
|
(set -e ; \
|
||||||
|
$(CD) $(OBJDIR) ; \
|
||||||
|
$(ZIPEXE) -q $(LIBRARY).diz $(LIBRARY).map $(LIBRARY).pdb ; \
|
||||||
|
)
|
||||||
|
$(CP) $(OBJDIR)/$(LIBRARY).diz $(@D)
|
||||||
|
$(RM) $(OBJDIR)/$(LIBRARY).map $(OBJDIR)/$(LIBRARY).pdb
|
||||||
|
else
|
||||||
$(CP) $(OBJDIR)/$(LIBRARY).map $(@D)
|
$(CP) $(OBJDIR)/$(LIBRARY).map $(@D)
|
||||||
$(CP) $(OBJDIR)/$(LIBRARY).pdb $(@D)
|
$(CP) $(OBJDIR)/$(LIBRARY).pdb $(@D)
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
endif # LIBRARY
|
endif # LIBRARY
|
||||||
@ -248,6 +257,37 @@ else # LIBRARY
|
|||||||
ifeq ($(WRITE_LIBVERSION),true)
|
ifeq ($(WRITE_LIBVERSION),true)
|
||||||
$(MCS) -d -a "$(FULL_VERSION)" $@
|
$(MCS) -d -a "$(FULL_VERSION)" $@
|
||||||
endif # WRITE_LIBVERSION
|
endif # WRITE_LIBVERSION
|
||||||
|
ifneq ($(PLATFORM), macosx)
|
||||||
|
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||||
|
ifeq ($(LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS),1)
|
||||||
|
(set -e ; \
|
||||||
|
$(CD) $(@D) ; \
|
||||||
|
$(OBJCOPY) --only-keep-debug $(@F) $(LIBRARY).debuginfo ; \
|
||||||
|
$(OBJCOPY) --add-gnu-debuglink=$(LIBRARY).debuginfo $(@F) ; \
|
||||||
|
)
|
||||||
|
ifeq ($(STRIP_POLICY),all_strip)
|
||||||
|
$(STRIP) $@
|
||||||
|
else
|
||||||
|
ifeq ($(STRIP_POLICY),min_strip)
|
||||||
|
ifeq ($(PLATFORM), solaris)
|
||||||
|
$(STRIP) -x $@
|
||||||
|
else
|
||||||
|
# assume Linux
|
||||||
|
$(STRIP) -g $@
|
||||||
|
endif
|
||||||
|
# implied else here is no stripping at all
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||||
|
(set -e ; \
|
||||||
|
$(CD) $(@D) ; \
|
||||||
|
$(ZIPEXE) -q $(LIBRARY).diz $(LIBRARY).debuginfo ; \
|
||||||
|
$(RM) $(LIBRARY).debuginfo ; \
|
||||||
|
)
|
||||||
|
endif
|
||||||
|
endif # LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS
|
||||||
|
endif # ENABLE_FULL_DEBUG_SYMBOLS
|
||||||
|
endif # PLATFORM-!macosx
|
||||||
endif # LIBRARY
|
endif # LIBRARY
|
||||||
|
|
||||||
endif # PLATFORM
|
endif # PLATFORM
|
||||||
|
@ -189,6 +189,15 @@ endif
|
|||||||
$(MT) /manifest $(OBJDIR)/$(PROGRAM).exe.manifest /outputresource:$@;#1
|
$(MT) /manifest $(OBJDIR)/$(PROGRAM).exe.manifest /outputresource:$@;#1
|
||||||
endif
|
endif
|
||||||
@$(call binary_file_verification,$@)
|
@$(call binary_file_verification,$@)
|
||||||
|
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||||
|
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||||
|
(set -e ; \
|
||||||
|
$(CD) $(OBJDIR) ; \
|
||||||
|
$(ZIPEXE) -q $(PROGRAM).diz $(PROGRAM).map $(PROGRAM).pdb ; \
|
||||||
|
$(RM) $(PROGRAM).map $(PROGRAM).pdb ; \
|
||||||
|
)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
#
|
#
|
||||||
# Note that we have to link -lthread even when USE_PTHREADS is true.
|
# Note that we have to link -lthread even when USE_PTHREADS is true.
|
||||||
@ -232,6 +241,42 @@ else
|
|||||||
-codesign -s openjdk_codesign $@
|
-codesign -s openjdk_codesign $@
|
||||||
endif
|
endif
|
||||||
@$(call binary_file_verification,$@)
|
@$(call binary_file_verification,$@)
|
||||||
|
ifneq ($(PLATFORM), macosx)
|
||||||
|
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||||
|
ifeq ($(PROGRAM_SUPPORTS_FULL_DEBUG_SYMBOLS),1)
|
||||||
|
(set -e ; \
|
||||||
|
$(CD) $(@D) ; \
|
||||||
|
$(OBJCOPY) --only-keep-debug $(@F) $(@F).debuginfo ; \
|
||||||
|
$(OBJCOPY) --add-gnu-debuglink=$(@F).debuginfo $(@F) ; \
|
||||||
|
)
|
||||||
|
ifeq ($(STRIP_POLICY),all_strip)
|
||||||
|
$(STRIP) $@
|
||||||
|
else
|
||||||
|
ifeq ($(STRIP_POLICY),min_strip)
|
||||||
|
ifeq ($(PLATFORM), solaris)
|
||||||
|
$(STRIP) -x $@
|
||||||
|
else
|
||||||
|
# assume Linux
|
||||||
|
$(STRIP) -g $@
|
||||||
|
endif
|
||||||
|
# implied else here is no stripping at all
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||||
|
(set -e ; \
|
||||||
|
$(CD) $(@D) ; \
|
||||||
|
$(ZIPEXE) -q $(@F).diz $(@F).debuginfo ; \
|
||||||
|
$(RM) $(@F).debuginfo ; \
|
||||||
|
)
|
||||||
|
# save ZIP'ed debug info with rest of the program's build artifacts
|
||||||
|
$(MV) $@.diz $(OBJDIR)
|
||||||
|
else
|
||||||
|
# save debug info with rest of the program's build artifacts
|
||||||
|
$(MV) $@.debuginfo $(OBJDIR)
|
||||||
|
endif
|
||||||
|
endif # PROGRAM_SUPPORTS_FULL_DEBUG_SYMBOLS
|
||||||
|
endif # ENABLE_FULL_DEBUG_SYMBOLS
|
||||||
|
endif # PLATFORM-!macosx
|
||||||
endif # PLATFORM
|
endif # PLATFORM
|
||||||
|
|
||||||
clean::
|
clean::
|
||||||
@ -240,12 +285,16 @@ ifeq ($(PLATFORM), windows)
|
|||||||
$(RM) $(OBJDIR)/$(PROGRAM).ico
|
$(RM) $(OBJDIR)/$(PROGRAM).ico
|
||||||
$(RM) $(OBJDIR)/$(PROGRAM).lcf
|
$(RM) $(OBJDIR)/$(PROGRAM).lcf
|
||||||
$(RM) $(OBJDIR)/$(PROGRAM).map
|
$(RM) $(OBJDIR)/$(PROGRAM).map
|
||||||
|
$(RM) $(OBJDIR)/$(PROGRAM).pdb
|
||||||
$(RM) $(OBJDIR)/$(PROGRAM).exp
|
$(RM) $(OBJDIR)/$(PROGRAM).exp
|
||||||
$(RM) $(OBJDIR)/$(PROGRAM).lib
|
$(RM) $(OBJDIR)/$(PROGRAM).lib
|
||||||
$(RM) $(OBJDIR)/$(PROGRAM)$(EXE_SUFFIX)
|
$(RM) $(OBJDIR)/$(PROGRAM)$(EXE_SUFFIX)
|
||||||
$(RM) $(OBJDIR)/$(PROGRAM).ilk
|
$(RM) $(OBJDIR)/$(PROGRAM).ilk
|
||||||
$(RM) *.pdb
|
$(RM) *.pdb
|
||||||
|
else
|
||||||
|
$(RM) $(OBJDIR)/$(PROGRAM).debuginfo
|
||||||
endif
|
endif
|
||||||
|
$(RM) $(OBJDIR)/$(PROGRAM).diz
|
||||||
|
|
||||||
|
|
||||||
clobber::
|
clobber::
|
||||||
|
@ -873,7 +873,9 @@ ifeq ($(PLATFORM), windows)
|
|||||||
-o -name \*.dll | $(EGREP) -v -i "$(MSVCRNN_DLL)" > $@
|
-o -name \*.dll | $(EGREP) -v -i "$(MSVCRNN_DLL)" > $@
|
||||||
else
|
else
|
||||||
$(FIND) $(JRE_IMAGE_DIR)/lib -type f -name \*.$(LIB_SUFFIX) >> $@
|
$(FIND) $(JRE_IMAGE_DIR)/lib -type f -name \*.$(LIB_SUFFIX) >> $@
|
||||||
$(FILE) `$(FIND) $(JRE_IMAGE_DIR)/bin -type f -name \*$(EXE_SUFFIX)` \
|
# The FILE command reports .debuginfo files as "ELF", but we don't want
|
||||||
|
# those files in the JRE_BIN_LIST file. EXE_SUFFIX is empty on non-Windows.
|
||||||
|
$(FILE) `$(FIND) $(JRE_IMAGE_DIR)/bin -type f ! -name '*.debuginfo' -name \*$(EXE_SUFFIX)` \
|
||||||
| $(EGREP) 'ELF' | $(CUT) -d':' -f1 >> $@
|
| $(EGREP) 'ELF' | $(CUT) -d':' -f1 >> $@
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -1140,9 +1142,11 @@ ifeq ($(PLATFORM), windows)
|
|||||||
else
|
else
|
||||||
$(RM) $@
|
$(RM) $@
|
||||||
$(FIND) $(JDK_IMAGE_DIR)/jre/lib -type f -name \*.$(LIB_SUFFIX) >> $@
|
$(FIND) $(JDK_IMAGE_DIR)/jre/lib -type f -name \*.$(LIB_SUFFIX) >> $@
|
||||||
$(FILE) `$(FIND) $(JDK_IMAGE_DIR)/jre/bin -type f -name \*$(EXE_SUFFIX)` \
|
# The FILE command reports .debuginfo files as "ELF", but we don't want
|
||||||
|
# those files in the JDK_BIN_LIST file. EXE_SUFFIX is empty on non-Windows.
|
||||||
|
$(FILE) `$(FIND) $(JDK_IMAGE_DIR)/jre/bin -type f ! -name '*.debuginfo' -name \*$(EXE_SUFFIX)` \
|
||||||
| $(EGREP) 'ELF' | $(CUT) -d':' -f1 >> $@
|
| $(EGREP) 'ELF' | $(CUT) -d':' -f1 >> $@
|
||||||
file `$(FIND) $(JDK_IMAGE_DIR)/bin -type f -name \*$(EXE_SUFFIX)` \
|
file `$(FIND) $(JDK_IMAGE_DIR)/bin -type f ! -name '*.debuginfo' -name \*$(EXE_SUFFIX)` \
|
||||||
| $(EGREP) 'ELF' | $(CUT) -d':' -f1 >> $@
|
| $(EGREP) 'ELF' | $(CUT) -d':' -f1 >> $@
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ LIBPROPS = $(_LIBPROPS:%=$(LIBDIR)/%)
|
|||||||
|
|
||||||
properties: $(LIBDIR) $(LIBPROPS)
|
properties: $(LIBDIR) $(LIBPROPS)
|
||||||
|
|
||||||
$(LIBDIR)/%.properties: $(PLATFORM_SRC)/lib/%.properties
|
$(LIBDIR)/%.properties: $(PLATFORM_PROPERTIES)/%.properties
|
||||||
$(install-file)
|
$(install-file)
|
||||||
|
|
||||||
properties.clean :
|
properties.clean :
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# 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
|
||||||
@ -26,6 +26,8 @@
|
|||||||
# Makefile for building the Java Programming Language Instrumentation Services
|
# Makefile for building the Java Programming Language Instrumentation Services
|
||||||
# agent, supporting java.lang.instrument
|
# agent, supporting java.lang.instrument
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../..
|
BUILDDIR = ../..
|
||||||
PACKAGE = sun.instrument
|
PACKAGE = sun.instrument
|
||||||
LIBRARY = instrument
|
LIBRARY = instrument
|
||||||
|
@ -36,7 +36,7 @@ include $(BUILDDIR)/common/Defs.gmk
|
|||||||
#
|
#
|
||||||
# Files to compile.
|
# Files to compile.
|
||||||
#
|
#
|
||||||
AUTO_FILES_JAVA_DIRS = java/lang/reflect sun/reflect
|
AUTO_FILES_JAVA_DIRS = java/lang/reflect sun/reflect java/lang/annotation
|
||||||
|
|
||||||
#
|
#
|
||||||
# Install .lib file.
|
# Install .lib file.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2004, 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
|
||||||
@ -23,6 +23,8 @@
|
|||||||
# questions.
|
# questions.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../..
|
BUILDDIR = ../..
|
||||||
|
|
||||||
LIBRARY = java_crw_demo
|
LIBRARY = java_crw_demo
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# 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
|
||||||
@ -23,6 +23,8 @@
|
|||||||
# questions.
|
# questions.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../..
|
BUILDDIR = ../..
|
||||||
LIBRARY = hprof
|
LIBRARY = hprof
|
||||||
PRODUCT = sun
|
PRODUCT = sun
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 1996, 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
|
||||||
@ -23,6 +23,8 @@
|
|||||||
# questions.
|
# questions.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
PROGRAM_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../../..
|
BUILDDIR = ../../..
|
||||||
PROGRAM = java
|
PROGRAM = java
|
||||||
PRODUCT = java
|
PRODUCT = java
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# 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
|
||||||
@ -23,6 +23,8 @@
|
|||||||
# questions.
|
# questions.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../..
|
BUILDDIR = ../..
|
||||||
PACKAGE = java.lang.management
|
PACKAGE = java.lang.management
|
||||||
LIBRARY = management
|
LIBRARY = management
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2004, 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
|
||||||
@ -23,6 +23,8 @@
|
|||||||
# questions.
|
# questions.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../..
|
BUILDDIR = ../..
|
||||||
|
|
||||||
# It's currently used by jpda and hprof. Put it in base module for now.
|
# It's currently used by jpda and hprof. Put it in base module for now.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 1999, 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
|
||||||
@ -27,6 +27,8 @@
|
|||||||
# Build libverify.so
|
# Build libverify.so
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../..
|
BUILDDIR = ../..
|
||||||
PRODUCT = java
|
PRODUCT = java
|
||||||
LIBRARY = verify
|
LIBRARY = verify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2000, 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
|
||||||
@ -27,6 +27,8 @@
|
|||||||
# Makefile for building JDWP
|
# Makefile for building JDWP
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../..
|
BUILDDIR = ../..
|
||||||
PACKAGE = com.sun.tools.jdwp
|
PACKAGE = com.sun.tools.jdwp
|
||||||
PRODUCT = jpda
|
PRODUCT = jpda
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 1998, 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
|
||||||
@ -27,6 +27,8 @@
|
|||||||
# Makefile for building the JDI back-end implementation
|
# Makefile for building the JDI back-end implementation
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../../..
|
BUILDDIR = ../../..
|
||||||
LIBRARY = dt_socket
|
LIBRARY = dt_socket
|
||||||
PRODUCT = jbug
|
PRODUCT = jbug
|
||||||
|
@ -27,6 +27,8 @@
|
|||||||
# Makefile for building simple launchers
|
# Makefile for building simple launchers
|
||||||
#
|
#
|
||||||
|
|
||||||
|
PROGRAM_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ..
|
BUILDDIR = ..
|
||||||
PACKAGE = launcher
|
PACKAGE = launcher
|
||||||
PRODUCT = sun
|
PRODUCT = sun
|
||||||
@ -155,8 +157,10 @@ endif
|
|||||||
# GUI tools
|
# GUI tools
|
||||||
ifeq ($(GUI_TOOL),true)
|
ifeq ($(GUI_TOOL),true)
|
||||||
ifneq ($(PLATFORM), windows)
|
ifneq ($(PLATFORM), windows)
|
||||||
# Anything with a GUI needs X11 to be linked in.
|
ifneq ($(PLATFORM), macosx)
|
||||||
OTHER_LDLIBS += -L$(OPENWIN_LIB) -lX11
|
# Anything with a GUI needs X11 to be linked in.
|
||||||
|
OTHER_LDLIBS += -L$(OPENWIN_LIB) -lX11
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2010, 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
|
||||||
@ -23,6 +23,8 @@
|
|||||||
# questions.
|
# questions.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../../..
|
BUILDDIR = ../../..
|
||||||
PRODUCT = demo/jvmti
|
PRODUCT = demo/jvmti
|
||||||
DEMONAME = compiledMethodLoad
|
DEMONAME = compiledMethodLoad
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2004, 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
|
||||||
@ -23,6 +23,8 @@
|
|||||||
# questions.
|
# questions.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../../..
|
BUILDDIR = ../../..
|
||||||
PRODUCT = demo/jvmti
|
PRODUCT = demo/jvmti
|
||||||
DEMONAME = gctest
|
DEMONAME = gctest
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2004, 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
|
||||||
@ -23,6 +23,8 @@
|
|||||||
# questions.
|
# questions.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../../..
|
BUILDDIR = ../../..
|
||||||
PRODUCT = demo/jvmti
|
PRODUCT = demo/jvmti
|
||||||
DEMONAME = heapTracker
|
DEMONAME = heapTracker
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2004, 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
|
||||||
@ -23,6 +23,8 @@
|
|||||||
# questions.
|
# questions.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../../..
|
BUILDDIR = ../../..
|
||||||
PRODUCT = demo/jvmti
|
PRODUCT = demo/jvmti
|
||||||
DEMONAME = heapViewer
|
DEMONAME = heapViewer
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2004, 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
|
||||||
@ -23,6 +23,8 @@
|
|||||||
# questions.
|
# questions.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../../..
|
BUILDDIR = ../../..
|
||||||
PRODUCT = demo/jvmti
|
PRODUCT = demo/jvmti
|
||||||
DEMONAME = hprof
|
DEMONAME = hprof
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2006, 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
|
||||||
@ -23,6 +23,8 @@
|
|||||||
# questions.
|
# questions.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../../..
|
BUILDDIR = ../../..
|
||||||
PRODUCT = demo/jvmti
|
PRODUCT = demo/jvmti
|
||||||
DEMONAME = minst
|
DEMONAME = minst
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2004, 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
|
||||||
@ -23,6 +23,8 @@
|
|||||||
# questions.
|
# questions.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../../..
|
BUILDDIR = ../../..
|
||||||
PRODUCT = demo/jvmti
|
PRODUCT = demo/jvmti
|
||||||
DEMONAME = mtrace
|
DEMONAME = mtrace
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2004, 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
|
||||||
@ -23,6 +23,8 @@
|
|||||||
# questions.
|
# questions.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../../..
|
BUILDDIR = ../../..
|
||||||
PRODUCT = demo/jvmti
|
PRODUCT = demo/jvmti
|
||||||
DEMONAME = versionCheck
|
DEMONAME = versionCheck
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2004, 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
|
||||||
@ -23,6 +23,8 @@
|
|||||||
# questions.
|
# questions.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../../..
|
BUILDDIR = ../../..
|
||||||
PRODUCT = demo/jvmti
|
PRODUCT = demo/jvmti
|
||||||
DEMONAME = waiters
|
DEMONAME = waiters
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2008, 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,9 @@
|
|||||||
#
|
#
|
||||||
# Makefile for building dtrace extension
|
# Makefile for building dtrace extension
|
||||||
#
|
#
|
||||||
|
|
||||||
|
LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS=1
|
||||||
|
|
||||||
BUILDDIR = ../../..
|
BUILDDIR = ../../..
|
||||||
PACKAGE = sun.tracing.dtrace
|
PACKAGE = sun.tracing.dtrace
|
||||||
LIBRARY = jsdt
|
LIBRARY = jsdt
|
||||||
|
@ -157,7 +157,10 @@ class _AppEventHandler {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
} finally {
|
} finally {
|
||||||
nativeReplyToAppShouldTerminate(true);
|
// Either we've just called System.exit(), or the app will call
|
||||||
|
// it when processing a WINDOW_CLOSING event. Either way, we reply
|
||||||
|
// to Cocoa that we don't want to exit the event loop yet.
|
||||||
|
nativeReplyToAppShouldTerminate(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,6 +29,7 @@ import java.awt.BufferCapabilities.FlipContents;
|
|||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
import java.awt.Dialog.ModalityType;
|
import java.awt.Dialog.ModalityType;
|
||||||
import java.awt.event.*;
|
import java.awt.event.*;
|
||||||
|
import java.awt.peer.WindowPeer;
|
||||||
import java.beans.*;
|
import java.beans.*;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@ -202,6 +203,9 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
|||||||
private LWWindowPeer peer;
|
private LWWindowPeer peer;
|
||||||
private CPlatformView contentView;
|
private CPlatformView contentView;
|
||||||
private CPlatformWindow owner;
|
private CPlatformWindow owner;
|
||||||
|
private boolean visible = false; // visibility status from native perspective
|
||||||
|
private boolean undecorated; // initialized in getInitialStyleBits()
|
||||||
|
private Rectangle normalBounds = null; // not-null only for undecorated maximized windows
|
||||||
|
|
||||||
public CPlatformWindow(final PeerType peerType) {
|
public CPlatformWindow(final PeerType peerType) {
|
||||||
super(0, true);
|
super(0, true);
|
||||||
@ -277,8 +281,8 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
|||||||
|
|
||||||
// Either java.awt.Frame or java.awt.Dialog can be undecorated, however java.awt.Window always is undecorated.
|
// Either java.awt.Frame or java.awt.Dialog can be undecorated, however java.awt.Window always is undecorated.
|
||||||
{
|
{
|
||||||
final boolean undecorated = isFrame ? ((Frame)target).isUndecorated() : (isDialog ? ((Dialog)target).isUndecorated() : true);
|
this.undecorated = isFrame ? ((Frame)target).isUndecorated() : (isDialog ? ((Dialog)target).isUndecorated() : true);
|
||||||
if (undecorated) styleBits = SET(styleBits, DECORATED, false);
|
if (this.undecorated) styleBits = SET(styleBits, DECORATED, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Either java.awt.Frame or java.awt.Dialog can be resizable, however java.awt.Window is never resizable
|
// Either java.awt.Frame or java.awt.Dialog can be resizable, however java.awt.Window is never resizable
|
||||||
@ -466,19 +470,62 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
|||||||
nativeSetNSWindowBounds(getNSWindowPtr(), x, y, w, h);
|
nativeSetNSWindowBounds(getNSWindowPtr(), x, y, w, h);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void zoom() {
|
||||||
|
if (!undecorated) {
|
||||||
|
CWrapper.NSWindow.zoom(getNSWindowPtr());
|
||||||
|
} else {
|
||||||
|
// OS X handles -zoom incorrectly for undecorated windows
|
||||||
|
final boolean isZoomed = this.normalBounds == null;
|
||||||
|
deliverZoom(isZoomed);
|
||||||
|
|
||||||
|
Rectangle toBounds;
|
||||||
|
if (isZoomed) {
|
||||||
|
this.normalBounds = peer.getBounds();
|
||||||
|
long screen = CWrapper.NSWindow.screen(getNSWindowPtr());
|
||||||
|
toBounds = CWrapper.NSScreen.visibleFrame(screen).getBounds();
|
||||||
|
// Flip the y coordinate
|
||||||
|
Rectangle frame = CWrapper.NSScreen.frame(screen).getBounds();
|
||||||
|
toBounds.y = frame.height - toBounds.y - toBounds.height;
|
||||||
|
} else {
|
||||||
|
toBounds = normalBounds;
|
||||||
|
this.normalBounds = null;
|
||||||
|
}
|
||||||
|
setBounds(toBounds.x, toBounds.y, toBounds.width, toBounds.height);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isVisible() {
|
||||||
|
return this.visible;
|
||||||
|
}
|
||||||
|
|
||||||
@Override // PlatformWindow
|
@Override // PlatformWindow
|
||||||
public void setVisible(boolean visible) {
|
public void setVisible(boolean visible) {
|
||||||
final long nsWindowPtr = getNSWindowPtr();
|
final long nsWindowPtr = getNSWindowPtr();
|
||||||
|
|
||||||
if (owner != null) {
|
// 1. Process parent-child relationship when hiding
|
||||||
if (!visible) {
|
if (!visible) {
|
||||||
|
// 1a. Unparent my children
|
||||||
|
for (Window w : target.getOwnedWindows()) {
|
||||||
|
WindowPeer p = (WindowPeer)w.getPeer();
|
||||||
|
if (p instanceof LWWindowPeer) {
|
||||||
|
CPlatformWindow pw = (CPlatformWindow)((LWWindowPeer)p).getPlatformWindow();
|
||||||
|
if (pw != null && pw.isVisible()) {
|
||||||
|
CWrapper.NSWindow.removeChildWindow(nsWindowPtr, pw.getNSWindowPtr());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 1b. Unparent myself
|
||||||
|
if (owner != null && owner.isVisible()) {
|
||||||
CWrapper.NSWindow.removeChildWindow(owner.getNSWindowPtr(), nsWindowPtr);
|
CWrapper.NSWindow.removeChildWindow(owner.getNSWindowPtr(), nsWindowPtr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 2. Configure stuff
|
||||||
updateIconImages();
|
updateIconImages();
|
||||||
updateFocusabilityForAutoRequestFocus(false);
|
updateFocusabilityForAutoRequestFocus(false);
|
||||||
|
|
||||||
|
// 3. Manage the extended state when hiding
|
||||||
if (!visible) {
|
if (!visible) {
|
||||||
// Cancel out the current native state of the window
|
// Cancel out the current native state of the window
|
||||||
switch (peer.getState()) {
|
switch (peer.getState()) {
|
||||||
@ -486,11 +533,12 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
|||||||
CWrapper.NSWindow.deminiaturize(nsWindowPtr);
|
CWrapper.NSWindow.deminiaturize(nsWindowPtr);
|
||||||
break;
|
break;
|
||||||
case Frame.MAXIMIZED_BOTH:
|
case Frame.MAXIMIZED_BOTH:
|
||||||
CWrapper.NSWindow.zoom(nsWindowPtr);
|
zoom();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 4. Actually show or hide the window
|
||||||
LWWindowPeer blocker = peer.getBlocker();
|
LWWindowPeer blocker = peer.getBlocker();
|
||||||
if (blocker == null || !visible) {
|
if (blocker == null || !visible) {
|
||||||
// If it ain't blocked, or is being hidden, go regular way
|
// If it ain't blocked, or is being hidden, go regular way
|
||||||
@ -517,7 +565,9 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
|||||||
CWrapper.NSWindow.orderWindow(nsWindowPtr, CWrapper.NSWindow.NSWindowBelow,
|
CWrapper.NSWindow.orderWindow(nsWindowPtr, CWrapper.NSWindow.NSWindowBelow,
|
||||||
((CPlatformWindow)blocker.getPlatformWindow()).getNSWindowPtr());
|
((CPlatformWindow)blocker.getPlatformWindow()).getNSWindowPtr());
|
||||||
}
|
}
|
||||||
|
this.visible = visible;
|
||||||
|
|
||||||
|
// 5. Manage the extended state when showing
|
||||||
if (visible) {
|
if (visible) {
|
||||||
// Re-apply the extended state as expected in shared code
|
// Re-apply the extended state as expected in shared code
|
||||||
if (target instanceof Frame) {
|
if (target instanceof Frame) {
|
||||||
@ -526,23 +576,41 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
|||||||
CWrapper.NSWindow.miniaturize(nsWindowPtr);
|
CWrapper.NSWindow.miniaturize(nsWindowPtr);
|
||||||
break;
|
break;
|
||||||
case Frame.MAXIMIZED_BOTH:
|
case Frame.MAXIMIZED_BOTH:
|
||||||
CWrapper.NSWindow.zoom(nsWindowPtr);
|
zoom();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 6. Configure stuff #2
|
||||||
updateFocusabilityForAutoRequestFocus(true);
|
updateFocusabilityForAutoRequestFocus(true);
|
||||||
|
|
||||||
if (owner != null) {
|
// 7. Manage parent-child relationship when showing
|
||||||
if (visible) {
|
if (visible) {
|
||||||
|
// 7a. Add myself as a child
|
||||||
|
if (owner != null && owner.isVisible()) {
|
||||||
CWrapper.NSWindow.addChildWindow(owner.getNSWindowPtr(), nsWindowPtr, CWrapper.NSWindow.NSWindowAbove);
|
CWrapper.NSWindow.addChildWindow(owner.getNSWindowPtr(), nsWindowPtr, CWrapper.NSWindow.NSWindowAbove);
|
||||||
if (target.isAlwaysOnTop()) {
|
if (target.isAlwaysOnTop()) {
|
||||||
CWrapper.NSWindow.setLevel(nsWindowPtr, CWrapper.NSWindow.NSFloatingWindowLevel);
|
CWrapper.NSWindow.setLevel(nsWindowPtr, CWrapper.NSWindow.NSFloatingWindowLevel);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 7b. Add my own children to myself
|
||||||
|
for (Window w : target.getOwnedWindows()) {
|
||||||
|
WindowPeer p = (WindowPeer)w.getPeer();
|
||||||
|
if (p instanceof LWWindowPeer) {
|
||||||
|
CPlatformWindow pw = (CPlatformWindow)((LWWindowPeer)p).getPlatformWindow();
|
||||||
|
if (pw != null && pw.isVisible()) {
|
||||||
|
CWrapper.NSWindow.addChildWindow(nsWindowPtr, pw.getNSWindowPtr(), CWrapper.NSWindow.NSWindowAbove);
|
||||||
|
if (w.isAlwaysOnTop()) {
|
||||||
|
CWrapper.NSWindow.setLevel(pw.getNSWindowPtr(), CWrapper.NSWindow.NSFloatingWindowLevel);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 8. Deal with the blocker of the window being shown
|
||||||
if (blocker != null && visible) {
|
if (blocker != null && visible) {
|
||||||
// Make sure the blocker is above its siblings
|
// Make sure the blocker is above its siblings
|
||||||
((CPlatformWindow)blocker.getPlatformWindow()).orderAboveSiblings();
|
((CPlatformWindow)blocker.getPlatformWindow()).orderAboveSiblings();
|
||||||
@ -692,7 +760,7 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
|||||||
if (prevWindowState == Frame.MAXIMIZED_BOTH) {
|
if (prevWindowState == Frame.MAXIMIZED_BOTH) {
|
||||||
// let's return into the normal states first
|
// let's return into the normal states first
|
||||||
// the zoom call toggles between the normal and the max states
|
// the zoom call toggles between the normal and the max states
|
||||||
CWrapper.NSWindow.zoom(nsWindowPtr);
|
zoom();
|
||||||
}
|
}
|
||||||
CWrapper.NSWindow.miniaturize(nsWindowPtr);
|
CWrapper.NSWindow.miniaturize(nsWindowPtr);
|
||||||
break;
|
break;
|
||||||
@ -701,14 +769,14 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
|||||||
// let's return into the normal states first
|
// let's return into the normal states first
|
||||||
CWrapper.NSWindow.deminiaturize(nsWindowPtr);
|
CWrapper.NSWindow.deminiaturize(nsWindowPtr);
|
||||||
}
|
}
|
||||||
CWrapper.NSWindow.zoom(nsWindowPtr);
|
zoom();
|
||||||
break;
|
break;
|
||||||
case Frame.NORMAL:
|
case Frame.NORMAL:
|
||||||
if (prevWindowState == Frame.ICONIFIED) {
|
if (prevWindowState == Frame.ICONIFIED) {
|
||||||
CWrapper.NSWindow.deminiaturize(nsWindowPtr);
|
CWrapper.NSWindow.deminiaturize(nsWindowPtr);
|
||||||
} else if (prevWindowState == Frame.MAXIMIZED_BOTH) {
|
} else if (prevWindowState == Frame.MAXIMIZED_BOTH) {
|
||||||
// the zoom call toggles between the normal and the max states
|
// the zoom call toggles between the normal and the max states
|
||||||
CWrapper.NSWindow.zoom(nsWindowPtr);
|
zoom();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -849,15 +917,23 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Recursively pop up the windows from the very bottom so that only
|
// NOTE: the logic will fail if we have a hierarchy like:
|
||||||
// the very top-most one becomes the main window
|
// visible root owner
|
||||||
owner.orderAboveSiblings();
|
// invisible owner
|
||||||
|
// visible dialog
|
||||||
|
// However, this is an unlikely scenario for real life apps
|
||||||
|
if (owner.isVisible()) {
|
||||||
|
// Recursively pop up the windows from the very bottom so that only
|
||||||
|
// the very top-most one becomes the main window
|
||||||
|
owner.orderAboveSiblings();
|
||||||
|
|
||||||
|
// Order the window to front of the stack of child windows
|
||||||
|
final long nsWindowSelfPtr = getNSWindowPtr();
|
||||||
|
final long nsWindowOwnerPtr = owner.getNSWindowPtr();
|
||||||
|
CWrapper.NSWindow.removeChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr);
|
||||||
|
CWrapper.NSWindow.addChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr, CWrapper.NSWindow.NSWindowAbove);
|
||||||
|
}
|
||||||
|
|
||||||
// Order the window to front of the stack of child windows
|
|
||||||
final long nsWindowSelfPtr = getNSWindowPtr();
|
|
||||||
final long nsWindowOwnerPtr = owner.getNSWindowPtr();
|
|
||||||
CWrapper.NSWindow.removeChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr);
|
|
||||||
CWrapper.NSWindow.addChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr, CWrapper.NSWindow.NSWindowAbove);
|
|
||||||
if (target.isAlwaysOnTop()) {
|
if (target.isAlwaysOnTop()) {
|
||||||
CWrapper.NSWindow.setLevel(getNSWindowPtr(), CWrapper.NSWindow.NSFloatingWindowLevel);
|
CWrapper.NSWindow.setLevel(getNSWindowPtr(), CWrapper.NSWindow.NSFloatingWindowLevel);
|
||||||
}
|
}
|
||||||
|
276
jdk/src/macosx/lib/content-types.properties
Normal file
276
jdk/src/macosx/lib/content-types.properties
Normal file
@ -0,0 +1,276 @@
|
|||||||
|
#sun.net.www MIME content-types table
|
||||||
|
#
|
||||||
|
# Property fields:
|
||||||
|
#
|
||||||
|
# <description> ::= 'description' '=' <descriptive string>
|
||||||
|
# <extensions> ::= 'file_extensions' '=' <comma-delimited list, include '.'>
|
||||||
|
# <image> ::= 'icon' '=' <filename of icon image>
|
||||||
|
# <action> ::= 'browser' | 'application' | 'save' | 'unknown'
|
||||||
|
# <application> ::= 'application' '=' <command line template>
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# The "we don't know anything about this data" type(s).
|
||||||
|
# Used internally to mark unrecognized types.
|
||||||
|
#
|
||||||
|
content/unknown: description=Unknown Content
|
||||||
|
unknown/unknown: description=Unknown Data Type
|
||||||
|
|
||||||
|
#
|
||||||
|
# The template we should use for temporary files when launching an application
|
||||||
|
# to view a document of given type.
|
||||||
|
#
|
||||||
|
temp.file.template: /tmp/%s
|
||||||
|
|
||||||
|
#
|
||||||
|
# The "real" types.
|
||||||
|
#
|
||||||
|
application/octet-stream: \
|
||||||
|
description=Generic Binary Stream;\
|
||||||
|
file_extensions=.saveme,.dump,.hqx,.arc,.o,.a,.bin,.exe,.z,.gz
|
||||||
|
|
||||||
|
application/oda: \
|
||||||
|
description=ODA Document;\
|
||||||
|
file_extensions=.oda
|
||||||
|
|
||||||
|
application/pdf: \
|
||||||
|
description=Adobe PDF Format;\
|
||||||
|
file_extensions=.pdf
|
||||||
|
|
||||||
|
application/postscript: \
|
||||||
|
description=Postscript File;\
|
||||||
|
file_extensions=.eps,.ai,.ps;\
|
||||||
|
icon=ps;\
|
||||||
|
action=application;\
|
||||||
|
application=imagetool %s
|
||||||
|
|
||||||
|
application/x-dvi: \
|
||||||
|
description=TeX DVI File;\
|
||||||
|
file_extensions=.dvi;\
|
||||||
|
action=application;\
|
||||||
|
application=xdvi %s
|
||||||
|
|
||||||
|
application/x-hdf: \
|
||||||
|
description=Hierarchical Data Format;\
|
||||||
|
file_extensions=.hdf;\
|
||||||
|
action=save
|
||||||
|
|
||||||
|
application/x-latex: \
|
||||||
|
description=LaTeX Source;\
|
||||||
|
file_extensions=.latex
|
||||||
|
|
||||||
|
application/x-netcdf: \
|
||||||
|
description=Unidata netCDF Data Format;\
|
||||||
|
file_extensions=.nc,.cdf;\
|
||||||
|
action=save
|
||||||
|
|
||||||
|
application/x-tex: \
|
||||||
|
description=TeX Source;\
|
||||||
|
file_extensions=.tex
|
||||||
|
|
||||||
|
application/x-texinfo: \
|
||||||
|
description=Gnu Texinfo;\
|
||||||
|
file_extensions=.texinfo,.texi
|
||||||
|
|
||||||
|
application/x-troff: \
|
||||||
|
description=Troff Source;\
|
||||||
|
file_extensions=.t,.tr,.roff;\
|
||||||
|
action=application;\
|
||||||
|
application=xterm -title troff -e sh -c \"nroff %s | col | more -w\"
|
||||||
|
|
||||||
|
application/x-troff-man: \
|
||||||
|
description=Troff Manpage Source;\
|
||||||
|
file_extensions=.man;\
|
||||||
|
action=application;\
|
||||||
|
application=xterm -title troff -e sh -c \"nroff -man %s | col | more -w\"
|
||||||
|
|
||||||
|
application/x-troff-me: \
|
||||||
|
description=Troff ME Macros;\
|
||||||
|
file_extensions=.me;\
|
||||||
|
action=application;\
|
||||||
|
application=xterm -title troff -e sh -c \"nroff -me %s | col | more -w\"
|
||||||
|
|
||||||
|
application/x-troff-ms: \
|
||||||
|
description=Troff MS Macros;\
|
||||||
|
file_extensions=.ms;\
|
||||||
|
action=application;\
|
||||||
|
application=xterm -title troff -e sh -c \"nroff -ms %s | col | more -w\"
|
||||||
|
|
||||||
|
application/x-wais-source: \
|
||||||
|
description=Wais Source;\
|
||||||
|
file_extensions=.src,.wsrc
|
||||||
|
|
||||||
|
application/zip: \
|
||||||
|
description=Zip File;\
|
||||||
|
file_extensions=.zip;\
|
||||||
|
icon=zip;\
|
||||||
|
action=save
|
||||||
|
|
||||||
|
application/x-bcpio: \
|
||||||
|
description=Old Binary CPIO Archive;\
|
||||||
|
file_extensions=.bcpio; action=save
|
||||||
|
|
||||||
|
application/x-cpio: \
|
||||||
|
description=Unix CPIO Archive;\
|
||||||
|
file_extensions=.cpio; action=save
|
||||||
|
|
||||||
|
application/x-gtar: \
|
||||||
|
description=Gnu Tar Archive;\
|
||||||
|
file_extensions=.gtar;\
|
||||||
|
icon=tar;\
|
||||||
|
action=save
|
||||||
|
|
||||||
|
application/x-shar: \
|
||||||
|
description=Shell Archive;\
|
||||||
|
file_extensions=.sh,.shar;\
|
||||||
|
action=save
|
||||||
|
|
||||||
|
application/x-sv4cpio: \
|
||||||
|
description=SVR4 CPIO Archive;\
|
||||||
|
file_extensions=.sv4cpio; action=save
|
||||||
|
|
||||||
|
application/x-sv4crc: \
|
||||||
|
description=SVR4 CPIO with CRC;\
|
||||||
|
file_extensions=.sv4crc; action=save
|
||||||
|
|
||||||
|
application/x-tar: \
|
||||||
|
description=Tar Archive;\
|
||||||
|
file_extensions=.tar;\
|
||||||
|
icon=tar;\
|
||||||
|
action=save
|
||||||
|
|
||||||
|
application/x-ustar: \
|
||||||
|
description=US Tar Archive;\
|
||||||
|
file_extensions=.ustar;\
|
||||||
|
action=save
|
||||||
|
|
||||||
|
audio/basic: \
|
||||||
|
description=Basic Audio;\
|
||||||
|
file_extensions=.snd,.au;\
|
||||||
|
icon=audio;\
|
||||||
|
action=application;\
|
||||||
|
application=audiotool %s
|
||||||
|
|
||||||
|
audio/x-aiff: \
|
||||||
|
description=Audio Interchange Format File;\
|
||||||
|
file_extensions=.aifc,.aif,.aiff;\
|
||||||
|
icon=aiff
|
||||||
|
|
||||||
|
audio/x-wav: \
|
||||||
|
description=Wav Audio;\
|
||||||
|
file_extensions=.wav;\
|
||||||
|
icon=wav
|
||||||
|
|
||||||
|
image/gif: \
|
||||||
|
description=GIF Image;\
|
||||||
|
file_extensions=.gif;\
|
||||||
|
icon=gif;\
|
||||||
|
action=browser
|
||||||
|
|
||||||
|
image/ief: \
|
||||||
|
description=Image Exchange Format;\
|
||||||
|
file_extensions=.ief
|
||||||
|
|
||||||
|
image/jpeg: \
|
||||||
|
description=JPEG Image;\
|
||||||
|
file_extensions=.jfif,.jfif-tbnl,.jpe,.jpg,.jpeg;\
|
||||||
|
icon=jpeg;\
|
||||||
|
action=browser;\
|
||||||
|
application=imagetool %s
|
||||||
|
|
||||||
|
image/tiff: \
|
||||||
|
description=TIFF Image;\
|
||||||
|
file_extensions=.tif,.tiff;\
|
||||||
|
icon=tiff
|
||||||
|
|
||||||
|
image/vnd.fpx: \
|
||||||
|
description=FlashPix Image;\
|
||||||
|
file_extensions=.fpx,.fpix
|
||||||
|
|
||||||
|
image/x-cmu-rast: \
|
||||||
|
description=CMU Raster Image;\
|
||||||
|
file_extensions=.ras
|
||||||
|
|
||||||
|
image/x-portable-anymap: \
|
||||||
|
description=PBM Anymap Format;\
|
||||||
|
file_extensions=.pnm
|
||||||
|
|
||||||
|
image/x-portable-bitmap: \
|
||||||
|
description=PBM Bitmap Format;\
|
||||||
|
file_extensions=.pbm
|
||||||
|
|
||||||
|
image/x-portable-graymap: \
|
||||||
|
description=PBM Graymap Format;\
|
||||||
|
file_extensions=.pgm
|
||||||
|
|
||||||
|
image/x-portable-pixmap: \
|
||||||
|
description=PBM Pixmap Format;\
|
||||||
|
file_extensions=.ppm
|
||||||
|
|
||||||
|
image/x-rgb: \
|
||||||
|
description=RGB Image;\
|
||||||
|
file_extensions=.rgb
|
||||||
|
|
||||||
|
image/x-xbitmap: \
|
||||||
|
description=X Bitmap Image;\
|
||||||
|
file_extensions=.xbm,.xpm
|
||||||
|
|
||||||
|
image/x-xwindowdump: \
|
||||||
|
description=X Window Dump Image;\
|
||||||
|
file_extensions=.xwd
|
||||||
|
|
||||||
|
image/png: \
|
||||||
|
description=PNG Image;\
|
||||||
|
file_extensions=.png;\
|
||||||
|
icon=png;\
|
||||||
|
action=browser
|
||||||
|
|
||||||
|
text/html: \
|
||||||
|
description=HTML Document;\
|
||||||
|
file_extensions=.htm,.html;\
|
||||||
|
icon=html
|
||||||
|
|
||||||
|
text/plain: \
|
||||||
|
description=Plain Text;\
|
||||||
|
file_extensions=.text,.c,.cc,.c++,.h,.pl,.txt,.java,.el;\
|
||||||
|
icon=text;\
|
||||||
|
action=browser
|
||||||
|
|
||||||
|
text/tab-separated-values: \
|
||||||
|
description=Tab Separated Values Text;\
|
||||||
|
file_extensions=.tsv
|
||||||
|
|
||||||
|
text/x-setext: \
|
||||||
|
description=Structure Enhanced Text;\
|
||||||
|
file_extensions=.etx
|
||||||
|
|
||||||
|
video/mpeg: \
|
||||||
|
description=MPEG Video Clip;\
|
||||||
|
file_extensions=.mpg,.mpe,.mpeg;\
|
||||||
|
icon=mpeg;\
|
||||||
|
action=application;\
|
||||||
|
application=mpeg_play %s
|
||||||
|
|
||||||
|
video/quicktime: \
|
||||||
|
description=QuickTime Video Clip;\
|
||||||
|
file_extensions=.mov,.qt
|
||||||
|
|
||||||
|
application/x-troff-msvideo: \
|
||||||
|
description=AVI Video;\
|
||||||
|
file_extensions=.avi;\
|
||||||
|
icon=avi
|
||||||
|
|
||||||
|
video/x-sgi-movie: \
|
||||||
|
description=SGI Movie;\
|
||||||
|
file_extensions=.movie,.mv
|
||||||
|
|
||||||
|
message/rfc822: \
|
||||||
|
description=Internet Email Message;\
|
||||||
|
file_extensions=.mime
|
||||||
|
|
||||||
|
application/xml: \
|
||||||
|
description=XML document;\
|
||||||
|
file_extensions=.xml
|
||||||
|
|
||||||
|
|
||||||
|
|
78
jdk/src/macosx/lib/flavormap.properties
Normal file
78
jdk/src/macosx/lib/flavormap.properties
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
#
|
||||||
|
# This properties file is used to initialize the default
|
||||||
|
# java.awt.datatransfer.SystemFlavorMap. It contains the X11 platform-specific,
|
||||||
|
# default mappings between common X11 selection atoms and platform-independent
|
||||||
|
# MIME type strings, which will be converted into
|
||||||
|
# java.awt.datatransfer.DataFlavors.
|
||||||
|
#
|
||||||
|
# These default mappings may be augmented by specifying the
|
||||||
|
#
|
||||||
|
# AWT.DnD.flavorMapFileURL
|
||||||
|
#
|
||||||
|
# property in the appropriate awt.properties file. The specified properties URL
|
||||||
|
# will be loaded into the SystemFlavorMap.
|
||||||
|
#
|
||||||
|
# The standard format is:
|
||||||
|
#
|
||||||
|
# <native>=<MIME type>
|
||||||
|
#
|
||||||
|
# <native> should be a string identifier that the native platform will
|
||||||
|
# recognize as a valid data format. <MIME type> should specify both a MIME
|
||||||
|
# primary type and a MIME subtype separated by a '/'. The MIME type may include
|
||||||
|
# parameters, where each parameter is a key/value pair separated by '=', and
|
||||||
|
# where each parameter to the MIME type is separated by a ';'.
|
||||||
|
#
|
||||||
|
# Because SystemFlavorMap implements FlavorTable, developers are free to
|
||||||
|
# duplicate both native keys and DataFlavor values. If a mapping contains a
|
||||||
|
# duplicate key or value, earlier mappings which included this key or value
|
||||||
|
# will be preferred.
|
||||||
|
#
|
||||||
|
# Mappings whose values specify DataFlavors with primary MIME types of
|
||||||
|
# "text", and which support the charset parameter, should specify the exact
|
||||||
|
# format in which the native platform expects the data. The "charset"
|
||||||
|
# parameter specifies the char to byte encoding, the "eoln" parameter
|
||||||
|
# specifies the end-of-line marker, and the "terminators" parameter specifies
|
||||||
|
# the number of terminating NUL bytes. Note that "eoln" and "terminators"
|
||||||
|
# are not standardized MIME type parameters. They are specific to this file
|
||||||
|
# format ONLY. They will not appear in any of the DataFlavors returned by the
|
||||||
|
# SystemFlavorMap at the Java level.
|
||||||
|
#
|
||||||
|
# If the "charset" parameter is omitted, or has zero length, the platform
|
||||||
|
# default encoding is assumed. If the "eoln" parameter is omitted, or has
|
||||||
|
# zero length, "\n" is assumed. If the "terminators" parameter is omitted,
|
||||||
|
# or has a value less than zero, zero is assumed.
|
||||||
|
#
|
||||||
|
# Upon initialization, the data transfer subsystem will record the specified
|
||||||
|
# details of the native text format, but the default SystemFlavorMap will
|
||||||
|
# present a large set of synthesized DataFlavors which map, in both
|
||||||
|
# directions, to the native. After receiving data from the application in one
|
||||||
|
# of the synthetic DataFlavors, the data transfer subsystem will transform
|
||||||
|
# the data stream into the format specified in this file before passing the
|
||||||
|
# transformed stream to the native system.
|
||||||
|
#
|
||||||
|
# Mappings whose values specify DataFlavors with primary MIME types of
|
||||||
|
# "text", but which do not support the charset parameter, will be treated as
|
||||||
|
# opaque, 8-bit data. They will not undergo any transformation process, and
|
||||||
|
# any "charset", "eoln", or "terminators" parameters specified in this file
|
||||||
|
# will be ignored.
|
||||||
|
#
|
||||||
|
# See java.awt.datatransfer.DataFlavor.selectBestTextFlavor for a list of
|
||||||
|
# text flavors which support the charset parameter.
|
||||||
|
|
||||||
|
UTF8_STRING=text/plain;charset=UTF-8;eoln="\n";terminators=0
|
||||||
|
|
||||||
|
# The COMPOUND_TEXT support for inter-client text transfer is disabled by
|
||||||
|
# default. The reason is that many native applications prefer this format over
|
||||||
|
# other native text formats, but are unable to decode the textual data in this
|
||||||
|
# format properly. This results in java-to-native text transfer failures.
|
||||||
|
# To enable the COMPOUND_TEXT support for this JRE installation uncomment
|
||||||
|
# the line below.
|
||||||
|
|
||||||
|
# COMPOUND_TEXT=text/plain;charset=x-compound-text;eoln="\n";terminators=0
|
||||||
|
|
||||||
|
TEXT=text/plain;eoln="\n";terminators=0
|
||||||
|
STRING=text/plain;charset=UTF-8;eoln="\n";terminators=0
|
||||||
|
FILE_NAME=application/x-java-file-list;class=java.util.List
|
||||||
|
text/uri-list=application/x-java-file-list;class=java.util.List
|
||||||
|
PNG=image/x-java-image;class=java.awt.Image
|
||||||
|
JFIF=image/x-java-image;class=java.awt.Image
|
@ -125,11 +125,8 @@ AWT_ASSERT_NOT_APPKIT_THREAD;
|
|||||||
|
|
||||||
[JNFRunLoop performOnMainThreadWaiting:YES withBlock:^(){
|
[JNFRunLoop performOnMainThreadWaiting:YES withBlock:^(){
|
||||||
AWT_ASSERT_APPKIT_THREAD;
|
AWT_ASSERT_APPKIT_THREAD;
|
||||||
|
[fMenuItem setKeyEquivalent:theKeyEquivalent];
|
||||||
if (![theKeyEquivalent isEqualToString:@""]) {
|
[fMenuItem setKeyEquivalentModifierMask:modifierMask];
|
||||||
[fMenuItem setKeyEquivalent:theKeyEquivalent];
|
|
||||||
[fMenuItem setKeyEquivalentModifierMask:modifierMask];
|
|
||||||
}
|
|
||||||
[fMenuItem setTitle:theLabel];
|
[fMenuItem setTitle:theLabel];
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
@ -306,6 +306,18 @@ AWT_ASSERT_APPKIT_THREAD;
|
|||||||
// AWT gets here AFTER +[AWTStarter appKitIsRunning:] is called.
|
// AWT gets here AFTER +[AWTStarter appKitIsRunning:] is called.
|
||||||
if (verbose) AWT_DEBUG_LOG(@"got out of the AppKit startup mutex");
|
if (verbose) AWT_DEBUG_LOG(@"got out of the AppKit startup mutex");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Don't set the delegate until the NSApplication has been created and
|
||||||
|
// its finishLaunching has initialized it.
|
||||||
|
// ApplicationDelegate is the support code for com.apple.eawt.
|
||||||
|
void (^setDelegateBlock)() = ^(){
|
||||||
|
OSXAPP_SetApplicationDelegate([ApplicationDelegate sharedDelegate]);
|
||||||
|
};
|
||||||
|
if (onMainThread) {
|
||||||
|
setDelegateBlock();
|
||||||
|
} else {
|
||||||
|
[JNFRunLoop performOnMainThreadWaiting:YES withBlock:setDelegateBlock];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)starter:(NSArray*)args {
|
- (void)starter:(NSArray*)args {
|
||||||
@ -340,10 +352,6 @@ AWT_ASSERT_APPKIT_THREAD;
|
|||||||
// AppKit Application.
|
// AppKit Application.
|
||||||
NSApplication *app = [NSApplicationAWT sharedApplication];
|
NSApplication *app = [NSApplicationAWT sharedApplication];
|
||||||
|
|
||||||
// Don't set the delegate until the NSApplication has been created.
|
|
||||||
// ApplicationDelegate is the support code for com.apple.eawt.
|
|
||||||
OSXAPP_SetApplicationDelegate([ApplicationDelegate sharedDelegate]);
|
|
||||||
|
|
||||||
// AWT gets to this point BEFORE NSApplicationDidFinishLaunchingNotification is sent.
|
// AWT gets to this point BEFORE NSApplicationDidFinishLaunchingNotification is sent.
|
||||||
if (![app isRunning]) {
|
if (![app isRunning]) {
|
||||||
if (verbose) AWT_DEBUG_LOG(@"+[AWTStarter startAWT]: ![app isRunning]");
|
if (verbose) AWT_DEBUG_LOG(@"+[AWTStarter startAWT]: ![app isRunning]");
|
||||||
|
@ -1,83 +1,54 @@
|
|||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# GTK specific properties
|
# GTK specific properties
|
||||||
|
|
||||||
# GTK color chooser properties:
|
# GTK color chooser properties:
|
||||||
GTKColorChooserPanel.nameText=GTK Color Chooser
|
GTKColorChooserPanel.textAndMnemonic=>K Color Chooser
|
||||||
# mnemonic as a VK_ constant
|
# mnemonic as a VK_ constant
|
||||||
GTKColorChooserPanel.mnemonic=71
|
|
||||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
GTKColorChooserPanel.hue.textAndMnemonic=&Hue:
|
||||||
# want an index other than would normally be underlined by
|
|
||||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
GTKColorChooserPanel.red.textAndMnemonic=R&ed:
|
||||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
|
||||||
# than once and you want a character other than the first underlined.
|
GTKColorChooserPanel.saturation.textAndMnemonic=&Saturation:
|
||||||
|
|
||||||
# Text and mnemonics for the spinner. You can also defined a different
|
GTKColorChooserPanel.green.textAndMnemonic=&Green:
|
||||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
|
||||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
GTKColorChooserPanel.value.textAndMnemonic=&Value:
|
||||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
|
||||||
# represent the mnemonic.
|
GTKColorChooserPanel.blue.textAndMnemonic=&Blue:
|
||||||
GTKColorChooserPanel.hueText=Hue:
|
|
||||||
GTKColorChooserPanel.hueMnemonic=72
|
GTKColorChooserPanel.color.textAndMnemonic=Color &Name:
|
||||||
|
|
||||||
GTKColorChooserPanel.redText=Red:
|
|
||||||
GTKColorChooserPanel.redMnemonic=69
|
|
||||||
|
############ FILE CHOOSER STRINGS #############
|
||||||
GTKColorChooserPanel.saturationText=Saturation:
|
|
||||||
GTKColorChooserPanel.saturationMnemonic=83
|
FileChooser.acceptAllFileFilter.textAndMnemonic=All Files
|
||||||
|
FileChooser.newFolderButton.textAndMnemonic=&New Folder
|
||||||
GTKColorChooserPanel.greenText=Green:
|
FileChooser.newFolderDialog.textAndMnemonic=Folder name:
|
||||||
GTKColorChooserPanel.greenMnemonic=71
|
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Error
|
||||||
|
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Error creating directory "{0}": No such file or directory
|
||||||
GTKColorChooserPanel.valueText=Value:
|
FileChooser.deleteFileButton.textAndMnemonic=De&lete File
|
||||||
GTKColorChooserPanel.valueMnemonic=86
|
FileChooser.renameFileButton.textAndMnemonic=&Rename File
|
||||||
|
FileChooser.cancelButton.textAndMnemonic=&Cancel
|
||||||
GTKColorChooserPanel.blueText=Blue:
|
FileChooser.saveButton.textAndMnemonic=&OK
|
||||||
GTKColorChooserPanel.blueMnemonic=66
|
FileChooser.openButton.textAndMnemonic=&OK
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=Save
|
||||||
GTKColorChooserPanel.colorNameText=Color Name:
|
FileChooser.openDialogTitle.textAndMnemonic=Open
|
||||||
GTKColorChooserPanel.colorNameMnemonic=78
|
FileChooser.pathLabel.textAndMnemonic=&Selection:
|
||||||
|
FileChooser.filterLabel.textAndMnemonic=Filter:
|
||||||
|
FileChooser.foldersLabel.textAndMnemonic=Fol&ders
|
||||||
|
FileChooser.filesLabel.textAndMnemonic=&Files
|
||||||
############ FILE CHOOSER STRINGS #############
|
|
||||||
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Abort file chooser dialog.
|
||||||
FileChooser.acceptAllFileFilterText=All Files
|
FileChooser.saveButtonToolTip.textAndMnemonic=Save selected file.
|
||||||
FileChooser.newFolderButtonText=New Folder
|
FileChooser.openButtonToolTip.textAndMnemonic=Open selected file.
|
||||||
FileChooser.newFolderButtonMnemonic=78
|
|
||||||
FileChooser.newFolderDialogText=Folder name:
|
FileChooser.renameFileDialog.textAndMnemonic=Rename file "{0}" to
|
||||||
FileChooser.newFolderNoDirectoryErrorTitleText=Error
|
FileChooser.renameFileError.titleAndMnemonic=Error
|
||||||
FileChooser.newFolderNoDirectoryErrorText=Error creating directory "{0}": No such file or directory
|
FileChooser.renameFileError.textAndMnemonic=Error renaming file "{0}" to "{1}"
|
||||||
FileChooser.deleteFileButtonText=Delete File
|
|
||||||
FileChooser.deleteFileButtonMnemonic=76
|
|
||||||
FileChooser.renameFileButtonText=Rename File
|
|
||||||
FileChooser.renameFileButtonMnemonic=82
|
|
||||||
FileChooser.cancelButtonText=Cancel
|
|
||||||
FileChooser.cancelButtonMnemonic=67
|
|
||||||
FileChooser.saveButtonText=OK
|
|
||||||
FileChooser.saveButtonMnemonic=79
|
|
||||||
FileChooser.openButtonText=OK
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=Save
|
|
||||||
FileChooser.openDialogTitleText=Open
|
|
||||||
FileChooser.pathLabelText=Selection:
|
|
||||||
FileChooser.filterLabelText=Filter:
|
|
||||||
FileChooser.pathLabelMnemonic=83
|
|
||||||
FileChooser.foldersLabelText=Folders
|
|
||||||
FileChooser.foldersLabelMnemonic=68
|
|
||||||
FileChooser.filesLabelText=Files
|
|
||||||
FileChooser.filesLabelMnemonic=70
|
|
||||||
|
|
||||||
FileChooser.cancelButtonToolTipText=Abort file chooser dialog.
|
|
||||||
FileChooser.saveButtonToolTipText=Save selected file.
|
|
||||||
FileChooser.openButtonToolTipText=Open selected file.
|
|
||||||
|
|
||||||
FileChooser.renameFileDialogText=Rename file "{0}" to
|
|
||||||
FileChooser.renameFileErrorTitle=Error
|
|
||||||
FileChooser.renameFileErrorText=Error renaming file "{0}" to "{1}"
|
|
||||||
|
|
||||||
OptionPane.okButtonMnemonic=79
|
|
||||||
OptionPane.cancelButtonMnemonic=67
|
|
||||||
|
@ -1,88 +1,59 @@
|
|||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# GTK specific properties
|
# GTK specific properties
|
||||||
|
|
||||||
# GTK color chooser properties:
|
# GTK color chooser properties:
|
||||||
GTKColorChooserPanel.nameText=GTK-Farbauswahl
|
GTKColorChooserPanel.textAndMnemonic=>K-Farbauswahl
|
||||||
# mnemonic as a VK_ constant
|
# mnemonic as a VK_ constant
|
||||||
GTKColorChooserPanel.mnemonic=71
|
|
||||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
GTKColorChooserPanel.hue.textAndMnemonic=&Farbton:
|
||||||
# want an index other than would normally be underlined by
|
|
||||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
GTKColorChooserPanel.red.textAndMnemonic=&Rot:
|
||||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
|
||||||
# than once and you want a character other than the first underlined.
|
GTKColorChooserPanel.saturation.textAndMnemonic=S\u00E4ttigung(&S):
|
||||||
|
|
||||||
# Text and mnemonics for the spinner. You can also defined a different
|
GTKColorChooserPanel.green.textAndMnemonic=Gr\u00FCn(&G):
|
||||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
|
||||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
GTKColorChooserPanel.value.textAndMnemonic=&Wert:
|
||||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
|
||||||
# represent the mnemonic.
|
GTKColorChooserPanel.blue.textAndMnemonic=&Blau:
|
||||||
GTKColorChooserPanel.hueText=Farbton:
|
|
||||||
GTKColorChooserPanel.hueMnemonic=70
|
GTKColorChooserPanel.color.textAndMnemonic=Farb&name:
|
||||||
|
|
||||||
GTKColorChooserPanel.redText=Rot:
|
|
||||||
GTKColorChooserPanel.redMnemonic=82
|
|
||||||
|
############ FILE CHOOSER STRINGS #############
|
||||||
GTKColorChooserPanel.saturationText=S\u00E4ttigung:
|
|
||||||
GTKColorChooserPanel.saturationMnemonic=83
|
FileChooser.acceptAllFileFilter.textAndMnemonic=Alle Dateien
|
||||||
|
FileChooser.newFolderButton.textAndMnemonic=&Neuer Ordner
|
||||||
GTKColorChooserPanel.greenText=Gr\u00FCn:
|
FileChooser.newFolderDialog.textAndMnemonic=Ordnername:
|
||||||
GTKColorChooserPanel.greenMnemonic=71
|
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Fehler
|
||||||
|
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Fehler beim Erstellen von Verzeichnis "{0}": Datei oder Verzeichnis nicht vorhanden
|
||||||
GTKColorChooserPanel.valueText=Wert:
|
FileChooser.deleteFileButton.textAndMnemonic=Datei l\u00F6schen(&L)
|
||||||
GTKColorChooserPanel.valueMnemonic=87
|
FileChooser.renameFileButton.textAndMnemonic=Datei &umbenennen
|
||||||
|
FileChooser.cancelButton.textAndMnemonic=&Abbrechen
|
||||||
GTKColorChooserPanel.blueText=Blau:
|
FileChooser.saveButton.textAndMnemonic=&OK
|
||||||
GTKColorChooserPanel.blueMnemonic=66
|
FileChooser.openButton.textAndMnemonic=&OK
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=Speichern
|
||||||
GTKColorChooserPanel.colorNameText=Farbname:
|
FileChooser.openDialogTitle.textAndMnemonic=\u00D6ffnen
|
||||||
GTKColorChooserPanel.colorNameMnemonic=78
|
FileChooser.pathLabel.textAndMnemonic=Aus&wahl:
|
||||||
|
FileChooser.filterLabel.textAndMnemonic=Filter:
|
||||||
|
FileChooser.foldersLabel.textAndMnemonic=&Ordner
|
||||||
|
FileChooser.filesLabel.textAndMnemonic=&Dateien
|
||||||
############ FILE CHOOSER STRINGS #############
|
|
||||||
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen.
|
||||||
FileChooser.acceptAllFileFilterText=Alle Dateien
|
FileChooser.saveButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei speichern.
|
||||||
FileChooser.newFolderButtonText=Neuer Ordner
|
FileChooser.openButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei \u00F6ffnen.
|
||||||
FileChooser.newFolderButtonMnemonic=78
|
|
||||||
FileChooser.newFolderDialogText=Ordnername:
|
FileChooser.renameFileDialog.textAndMnemonic=Datei "{0}" umbenennen in
|
||||||
FileChooser.newFolderNoDirectoryErrorTitleText=Fehler
|
FileChooser.renameFileError.titleAndMnemonic=Fehler
|
||||||
FileChooser.newFolderNoDirectoryErrorText=Fehler beim Erstellen von Verzeichnis "{0}": Datei oder Verzeichnis nicht vorhanden
|
FileChooser.renameFileError.textAndMnemonic=Fehler beim Umbenennen der Datei "{0}" in "{1}"
|
||||||
FileChooser.deleteFileButtonText=Datei l\u00F6schen
|
|
||||||
FileChooser.deleteFileButtonMnemonic=76
|
# dummy resource added for translation automation
|
||||||
FileChooser.renameFileButtonText=Datei umbenennen
|
OptionPane.okButton.textAndMnemonic=&OK
|
||||||
FileChooser.renameFileButtonMnemonic=85
|
# dummy resource added for translation automation
|
||||||
FileChooser.cancelButtonText=Abbrechen
|
OptionPane.cancelButton.textAndMnemonic=&Abbrechen
|
||||||
FileChooser.cancelButtonMnemonic=65
|
|
||||||
FileChooser.saveButtonText=OK
|
|
||||||
FileChooser.saveButtonMnemonic=79
|
|
||||||
FileChooser.openButtonText=OK
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=Speichern
|
|
||||||
FileChooser.openDialogTitleText=\u00D6ffnen
|
|
||||||
FileChooser.pathLabelText=Auswahl:
|
|
||||||
FileChooser.filterLabelText=Filter:
|
|
||||||
FileChooser.pathLabelMnemonic=87
|
|
||||||
FileChooser.foldersLabelText=Ordner
|
|
||||||
FileChooser.foldersLabelMnemonic=79
|
|
||||||
FileChooser.filesLabelText=Dateien
|
|
||||||
FileChooser.filesLabelMnemonic=68
|
|
||||||
|
|
||||||
FileChooser.cancelButtonToolTipText=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen.
|
|
||||||
FileChooser.saveButtonToolTipText=Ausgew\u00E4hlte Datei speichern.
|
|
||||||
FileChooser.openButtonToolTipText=Ausgew\u00E4hlte Datei \u00F6ffnen.
|
|
||||||
|
|
||||||
FileChooser.renameFileDialogText=Datei "{0}" umbenennen in
|
|
||||||
FileChooser.renameFileErrorTitle=Fehler
|
|
||||||
FileChooser.renameFileErrorText=Fehler beim Umbenennen der Datei "{0}" in "{1}"
|
|
||||||
|
|
||||||
# dummy resource added for translation automation
|
|
||||||
OptionPane.okButtonText=OK
|
|
||||||
OptionPane.okButtonMnemonic=79
|
|
||||||
# dummy resource added for translation automation
|
|
||||||
OptionPane.cancelButtonText=Abbrechen
|
|
||||||
OptionPane.cancelButtonMnemonic=65
|
|
||||||
|
|
||||||
|
@ -1,88 +1,59 @@
|
|||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# GTK specific properties
|
# GTK specific properties
|
||||||
|
|
||||||
# GTK color chooser properties:
|
# GTK color chooser properties:
|
||||||
GTKColorChooserPanel.nameText=Selector de Color para GTK
|
GTKColorChooserPanel.textAndMnemonic=Selector de Color para >K
|
||||||
# mnemonic as a VK_ constant
|
# mnemonic as a VK_ constant
|
||||||
GTKColorChooserPanel.mnemonic=71
|
|
||||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
GTKColorChooserPanel.hue.textAndMnemonic=&Mat:
|
||||||
# want an index other than would normally be underlined by
|
|
||||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
GTKColorChooserPanel.red.textAndMnemonic=Ro&jo:
|
||||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
|
||||||
# than once and you want a character other than the first underlined.
|
GTKColorChooserPanel.saturation.textAndMnemonic=Saturaci\u00F3n(&S):
|
||||||
|
|
||||||
# Text and mnemonics for the spinner. You can also defined a different
|
GTKColorChooserPanel.green.textAndMnemonic=V&erde:
|
||||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
|
||||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
GTKColorChooserPanel.value.textAndMnemonic=&Valor:
|
||||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
|
||||||
# represent the mnemonic.
|
GTKColorChooserPanel.blue.textAndMnemonic=&Azul:
|
||||||
GTKColorChooserPanel.hueText=Mat:
|
|
||||||
GTKColorChooserPanel.hueMnemonic=77
|
GTKColorChooserPanel.color.textAndMnemonic=&Nombre del Color:
|
||||||
|
|
||||||
GTKColorChooserPanel.redText=Rojo:
|
|
||||||
GTKColorChooserPanel.redMnemonic=74
|
|
||||||
|
############ FILE CHOOSER STRINGS #############
|
||||||
GTKColorChooserPanel.saturationText=Saturaci\u00F3n:
|
|
||||||
GTKColorChooserPanel.saturationMnemonic=83
|
FileChooser.acceptAllFileFilter.textAndMnemonic=Todos los Archivos
|
||||||
|
FileChooser.newFolderButton.textAndMnemonic=&Nueva Carpeta
|
||||||
GTKColorChooserPanel.greenText=Verde:
|
FileChooser.newFolderDialog.textAndMnemonic=Nombre de la Carpeta:
|
||||||
GTKColorChooserPanel.greenMnemonic=69
|
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Error
|
||||||
|
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Error al crear el directorio "{0}": no existe dicho archivo o directorio
|
||||||
GTKColorChooserPanel.valueText=Valor:
|
FileChooser.deleteFileButton.textAndMnemonic=Su&primir Archivo
|
||||||
GTKColorChooserPanel.valueMnemonic=86
|
FileChooser.renameFileButton.textAndMnemonic=Cambia&r Nombre de Archivo
|
||||||
|
FileChooser.cancelButton.textAndMnemonic=&Cancelar
|
||||||
GTKColorChooserPanel.blueText=Azul:
|
FileChooser.saveButton.textAndMnemonic=&Aceptar
|
||||||
GTKColorChooserPanel.blueMnemonic=65
|
FileChooser.openButton.textAndMnemonic=&Aceptar
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=Guardar
|
||||||
GTKColorChooserPanel.colorNameText=Nombre del Color:
|
FileChooser.openDialogTitle.textAndMnemonic=Abrir
|
||||||
GTKColorChooserPanel.colorNameMnemonic=78
|
FileChooser.pathLabel.textAndMnemonic=Selecci\u00F3n(&S):
|
||||||
|
FileChooser.filterLabel.textAndMnemonic=Filtro:
|
||||||
|
FileChooser.foldersLabel.textAndMnemonic=Carpe&tas
|
||||||
|
FileChooser.filesLabel.textAndMnemonic=&Archivos
|
||||||
############ FILE CHOOSER STRINGS #############
|
|
||||||
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Abortar cuadro de di\u00E1logo del selector de archivos.
|
||||||
FileChooser.acceptAllFileFilterText=Todos los Archivos
|
FileChooser.saveButtonToolTip.textAndMnemonic=Guardar el archivo seleccionado.
|
||||||
FileChooser.newFolderButtonText=Nueva Carpeta
|
FileChooser.openButtonToolTip.textAndMnemonic=Abrir el archivo seleccionado.
|
||||||
FileChooser.newFolderButtonMnemonic=78
|
|
||||||
FileChooser.newFolderDialogText=Nombre de la Carpeta:
|
FileChooser.renameFileDialog.textAndMnemonic=Cambiar el nombre del archivo "{0}" por
|
||||||
FileChooser.newFolderNoDirectoryErrorTitleText=Error
|
FileChooser.renameFileError.titleAndMnemonic=Error
|
||||||
FileChooser.newFolderNoDirectoryErrorText=Error al crear el directorio "{0}": no existe dicho archivo o directorio
|
FileChooser.renameFileError.textAndMnemonic=Error al cambiar el nombre del archivo "{0}" a "{1}"
|
||||||
FileChooser.deleteFileButtonText=Suprimir Archivo
|
|
||||||
FileChooser.deleteFileButtonMnemonic=80
|
# dummy resource added for translation automation
|
||||||
FileChooser.renameFileButtonText=Cambiar Nombre de Archivo
|
OptionPane.okButton.textAndMnemonic=&Aceptar
|
||||||
FileChooser.renameFileButtonMnemonic=82
|
# dummy resource added for translation automation
|
||||||
FileChooser.cancelButtonText=Cancelar
|
OptionPane.cancelButton.textAndMnemonic=&Cancelar
|
||||||
FileChooser.cancelButtonMnemonic=67
|
|
||||||
FileChooser.saveButtonText=Aceptar
|
|
||||||
FileChooser.saveButtonMnemonic=65
|
|
||||||
FileChooser.openButtonText=Aceptar
|
|
||||||
FileChooser.openButtonMnemonic=65
|
|
||||||
FileChooser.saveDialogTitleText=Guardar
|
|
||||||
FileChooser.openDialogTitleText=Abrir
|
|
||||||
FileChooser.pathLabelText=Selecci\u00F3n:
|
|
||||||
FileChooser.filterLabelText=Filtro:
|
|
||||||
FileChooser.pathLabelMnemonic=83
|
|
||||||
FileChooser.foldersLabelText=Carpetas
|
|
||||||
FileChooser.foldersLabelMnemonic=84
|
|
||||||
FileChooser.filesLabelText=Archivos
|
|
||||||
FileChooser.filesLabelMnemonic=65
|
|
||||||
|
|
||||||
FileChooser.cancelButtonToolTipText=Abortar cuadro de di\u00E1logo del selector de archivos.
|
|
||||||
FileChooser.saveButtonToolTipText=Guardar el archivo seleccionado.
|
|
||||||
FileChooser.openButtonToolTipText=Abrir el archivo seleccionado.
|
|
||||||
|
|
||||||
FileChooser.renameFileDialogText=Cambiar el nombre del archivo "{0}" por
|
|
||||||
FileChooser.renameFileErrorTitle=Error
|
|
||||||
FileChooser.renameFileErrorText=Error al cambiar el nombre del archivo "{0}" a "{1}"
|
|
||||||
|
|
||||||
# dummy resource added for translation automation
|
|
||||||
OptionPane.okButtonText=Aceptar
|
|
||||||
OptionPane.okButtonMnemonic=65
|
|
||||||
# dummy resource added for translation automation
|
|
||||||
OptionPane.cancelButtonText=Cancelar
|
|
||||||
OptionPane.cancelButtonMnemonic=67
|
|
||||||
|
|
||||||
|
@ -1,88 +1,59 @@
|
|||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# GTK specific properties
|
# GTK specific properties
|
||||||
|
|
||||||
# GTK color chooser properties:
|
# GTK color chooser properties:
|
||||||
GTKColorChooserPanel.nameText=S\u00E9lecteur de couleurs GTK
|
GTKColorChooserPanel.textAndMnemonic=S\u00E9lecteur de couleurs GTK(&G)
|
||||||
# mnemonic as a VK_ constant
|
# mnemonic as a VK_ constant
|
||||||
GTKColorChooserPanel.mnemonic=71
|
|
||||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
GTKColorChooserPanel.hue.textAndMnemonic=&Teinte :
|
||||||
# want an index other than would normally be underlined by
|
|
||||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
GTKColorChooserPanel.red.textAndMnemonic=Rouge\u00A0(&E):
|
||||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
|
||||||
# than once and you want a character other than the first underlined.
|
GTKColorChooserPanel.saturation.textAndMnemonic=&Saturation :
|
||||||
|
|
||||||
# Text and mnemonics for the spinner. You can also defined a different
|
GTKColorChooserPanel.green.textAndMnemonic=V&ert :
|
||||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
|
||||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
GTKColorChooserPanel.value.textAndMnemonic=&Valeur :
|
||||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
|
||||||
# represent the mnemonic.
|
GTKColorChooserPanel.blue.textAndMnemonic=&Bleu :
|
||||||
GTKColorChooserPanel.hueText=Teinte :
|
|
||||||
GTKColorChooserPanel.hueMnemonic=84
|
GTKColorChooserPanel.color.textAndMnemonic=&Nom de couleur :
|
||||||
|
|
||||||
GTKColorChooserPanel.redText=Rouge\u00A0:
|
|
||||||
GTKColorChooserPanel.redMnemonic=69
|
|
||||||
|
############ FILE CHOOSER STRINGS #############
|
||||||
GTKColorChooserPanel.saturationText=Saturation :
|
|
||||||
GTKColorChooserPanel.saturationMnemonic=83
|
FileChooser.acceptAllFileFilter.textAndMnemonic=Tous les fichiers
|
||||||
|
FileChooser.newFolderButton.textAndMnemonic=&Nouveau dossier
|
||||||
GTKColorChooserPanel.greenText=Vert :
|
FileChooser.newFolderDialog.textAndMnemonic=Nom du dossier :
|
||||||
GTKColorChooserPanel.greenMnemonic=69
|
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Erreur
|
||||||
|
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Erreur lors de la cr\u00E9ation du r\u00E9pertoire "{0}" : ce fichier ou r\u00E9pertoire n''existe pas
|
||||||
GTKColorChooserPanel.valueText=Valeur :
|
FileChooser.deleteFileButton.textAndMnemonic=Supprimer &le fichier
|
||||||
GTKColorChooserPanel.valueMnemonic=86
|
FileChooser.renameFileButton.textAndMnemonic=&Renommer le fichier
|
||||||
|
FileChooser.cancelButton.textAndMnemonic=&Annuler
|
||||||
GTKColorChooserPanel.blueText=Bleu :
|
FileChooser.saveButton.textAndMnemonic=&OK
|
||||||
GTKColorChooserPanel.blueMnemonic=66
|
FileChooser.openButton.textAndMnemonic=&OK
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=Enregistrer
|
||||||
GTKColorChooserPanel.colorNameText=Nom de couleur :
|
FileChooser.openDialogTitle.textAndMnemonic=Ouvrir
|
||||||
GTKColorChooserPanel.colorNameMnemonic=78
|
FileChooser.pathLabel.textAndMnemonic=S\u00E9lection (&S):
|
||||||
|
FileChooser.filterLabel.textAndMnemonic=Filtre :
|
||||||
|
FileChooser.foldersLabel.textAndMnemonic=&Dossiers
|
||||||
|
FileChooser.filesLabel.textAndMnemonic=&Fichiers
|
||||||
############ FILE CHOOSER STRINGS #############
|
|
||||||
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers.
|
||||||
FileChooser.acceptAllFileFilterText=Tous les fichiers
|
FileChooser.saveButtonToolTip.textAndMnemonic=Enregistre le fichier s\u00E9lectionn\u00E9.
|
||||||
FileChooser.newFolderButtonText=Nouveau dossier
|
FileChooser.openButtonToolTip.textAndMnemonic=Ouvre le fichier s\u00E9lectionn\u00E9.
|
||||||
FileChooser.newFolderButtonMnemonic=78
|
|
||||||
FileChooser.newFolderDialogText=Nom du dossier :
|
FileChooser.renameFileDialog.textAndMnemonic=Renomme le fichier "{0}" en
|
||||||
FileChooser.newFolderNoDirectoryErrorTitleText=Erreur
|
FileChooser.renameFileError.titleAndMnemonic=Erreur
|
||||||
FileChooser.newFolderNoDirectoryErrorText=Erreur lors de la cr\u00E9ation du r\u00E9pertoire "{0}" : ce fichier ou r\u00E9pertoire n''existe pas
|
FileChooser.renameFileError.textAndMnemonic=Erreur lors du changement de nom du fichier "{0}" en "{1}"
|
||||||
FileChooser.deleteFileButtonText=Supprimer le fichier
|
|
||||||
FileChooser.deleteFileButtonMnemonic=76
|
# dummy resource added for translation automation
|
||||||
FileChooser.renameFileButtonText=Renommer le fichier
|
OptionPane.okButton.textAndMnemonic=&OK
|
||||||
FileChooser.renameFileButtonMnemonic=82
|
# dummy resource added for translation automation
|
||||||
FileChooser.cancelButtonText=Annuler
|
OptionPane.cancelButton.textAndMnemonic=&Annuler
|
||||||
FileChooser.cancelButtonMnemonic=65
|
|
||||||
FileChooser.saveButtonText=OK
|
|
||||||
FileChooser.saveButtonMnemonic=79
|
|
||||||
FileChooser.openButtonText=OK
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=Enregistrer
|
|
||||||
FileChooser.openDialogTitleText=Ouvrir
|
|
||||||
FileChooser.pathLabelText=S\u00E9lection :
|
|
||||||
FileChooser.filterLabelText=Filtre :
|
|
||||||
FileChooser.pathLabelMnemonic=83
|
|
||||||
FileChooser.foldersLabelText=Dossiers
|
|
||||||
FileChooser.foldersLabelMnemonic=68
|
|
||||||
FileChooser.filesLabelText=Fichiers
|
|
||||||
FileChooser.filesLabelMnemonic=70
|
|
||||||
|
|
||||||
FileChooser.cancelButtonToolTipText=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers.
|
|
||||||
FileChooser.saveButtonToolTipText=Enregistre le fichier s\u00E9lectionn\u00E9.
|
|
||||||
FileChooser.openButtonToolTipText=Ouvre le fichier s\u00E9lectionn\u00E9.
|
|
||||||
|
|
||||||
FileChooser.renameFileDialogText=Renomme le fichier "{0}" en
|
|
||||||
FileChooser.renameFileErrorTitle=Erreur
|
|
||||||
FileChooser.renameFileErrorText=Erreur lors du changement de nom du fichier "{0}" en "{1}"
|
|
||||||
|
|
||||||
# dummy resource added for translation automation
|
|
||||||
OptionPane.okButtonText=OK
|
|
||||||
OptionPane.okButtonMnemonic=79
|
|
||||||
# dummy resource added for translation automation
|
|
||||||
OptionPane.cancelButtonText=Annuler
|
|
||||||
OptionPane.cancelButtonMnemonic=65
|
|
||||||
|
|
||||||
|
@ -1,88 +1,59 @@
|
|||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# GTK specific properties
|
# GTK specific properties
|
||||||
|
|
||||||
# GTK color chooser properties:
|
# GTK color chooser properties:
|
||||||
GTKColorChooserPanel.nameText=Selezione colore GTK
|
GTKColorChooserPanel.textAndMnemonic=Selezione colore >K
|
||||||
# mnemonic as a VK_ constant
|
# mnemonic as a VK_ constant
|
||||||
GTKColorChooserPanel.mnemonic=71
|
|
||||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
GTKColorChooserPanel.hue.textAndMnemonic=&Ton.:
|
||||||
# want an index other than would normally be underlined by
|
|
||||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
GTKColorChooserPanel.red.textAndMnemonic=R&osso:
|
||||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
|
||||||
# than once and you want a character other than the first underlined.
|
GTKColorChooserPanel.saturation.textAndMnemonic=&Saturazione:
|
||||||
|
|
||||||
# Text and mnemonics for the spinner. You can also defined a different
|
GTKColorChooserPanel.green.textAndMnemonic=V&erde:
|
||||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
|
||||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
GTKColorChooserPanel.value.textAndMnemonic=&Valore:
|
||||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
|
||||||
# represent the mnemonic.
|
GTKColorChooserPanel.blue.textAndMnemonic=&Blu:
|
||||||
GTKColorChooserPanel.hueText=Ton.:
|
|
||||||
GTKColorChooserPanel.hueMnemonic=84
|
GTKColorChooserPanel.color.textAndMnemonic=&Nome colore:
|
||||||
|
|
||||||
GTKColorChooserPanel.redText=Rosso:
|
|
||||||
GTKColorChooserPanel.redMnemonic=79
|
|
||||||
|
############ FILE CHOOSER STRINGS #############
|
||||||
GTKColorChooserPanel.saturationText=Saturazione:
|
|
||||||
GTKColorChooserPanel.saturationMnemonic=83
|
FileChooser.acceptAllFileFilter.textAndMnemonic=Tutti i file
|
||||||
|
FileChooser.newFolderButton.textAndMnemonic=&Nuova cartella
|
||||||
GTKColorChooserPanel.greenText=Verde:
|
FileChooser.newFolderDialog.textAndMnemonic=Nome della cartella:
|
||||||
GTKColorChooserPanel.greenMnemonic=69
|
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Errore
|
||||||
|
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Errore durante la creazione della directory "{0}": file o directory inesistente
|
||||||
GTKColorChooserPanel.valueText=Valore:
|
FileChooser.deleteFileButton.textAndMnemonic=E&limina file
|
||||||
GTKColorChooserPanel.valueMnemonic=86
|
FileChooser.renameFileButton.textAndMnemonic=&Rinomina file
|
||||||
|
FileChooser.cancelButton.textAndMnemonic=&Annulla
|
||||||
GTKColorChooserPanel.blueText=Blu:
|
FileChooser.saveButton.textAndMnemonic=&OK
|
||||||
GTKColorChooserPanel.blueMnemonic=66
|
FileChooser.openButton.textAndMnemonic=&OK
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=Salva
|
||||||
GTKColorChooserPanel.colorNameText=Nome colore:
|
FileChooser.openDialogTitle.textAndMnemonic=Apri
|
||||||
GTKColorChooserPanel.colorNameMnemonic=78
|
FileChooser.pathLabel.textAndMnemonic=&Selezione:
|
||||||
|
FileChooser.filterLabel.textAndMnemonic=Filtro:
|
||||||
|
FileChooser.foldersLabel.textAndMnemonic=Car&telle
|
||||||
|
FileChooser.filesLabel.textAndMnemonic=&File
|
||||||
############ FILE CHOOSER STRINGS #############
|
|
||||||
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Chiude la finestra di dialogo di selezione file.
|
||||||
FileChooser.acceptAllFileFilterText=Tutti i file
|
FileChooser.saveButtonToolTip.textAndMnemonic=Salva il file selezionato.
|
||||||
FileChooser.newFolderButtonText=Nuova cartella
|
FileChooser.openButtonToolTip.textAndMnemonic=Apre il file selezionato.
|
||||||
FileChooser.newFolderButtonMnemonic=78
|
|
||||||
FileChooser.newFolderDialogText=Nome della cartella:
|
FileChooser.renameFileDialog.textAndMnemonic=Rinomina file "{0}" in
|
||||||
FileChooser.newFolderNoDirectoryErrorTitleText=Errore
|
FileChooser.renameFileError.titleAndMnemonic=Errore
|
||||||
FileChooser.newFolderNoDirectoryErrorText=Errore durante la creazione della directory "{0}": file o directory inesistente
|
FileChooser.renameFileError.textAndMnemonic=Errore durante la ridenominazione del file "{0}" in "{1}"
|
||||||
FileChooser.deleteFileButtonText=Elimina file
|
|
||||||
FileChooser.deleteFileButtonMnemonic=76
|
# dummy resource added for translation automation
|
||||||
FileChooser.renameFileButtonText=Rinomina file
|
OptionPane.okButton.textAndMnemonic=&OK
|
||||||
FileChooser.renameFileButtonMnemonic=82
|
# dummy resource added for translation automation
|
||||||
FileChooser.cancelButtonText=Annulla
|
OptionPane.cancelButton.textAndMnemonic=&Annulla
|
||||||
FileChooser.cancelButtonMnemonic=65
|
|
||||||
FileChooser.saveButtonText=OK
|
|
||||||
FileChooser.saveButtonMnemonic=79
|
|
||||||
FileChooser.openButtonText=OK
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=Salva
|
|
||||||
FileChooser.openDialogTitleText=Apri
|
|
||||||
FileChooser.pathLabelText=Selezione:
|
|
||||||
FileChooser.filterLabelText=Filtro:
|
|
||||||
FileChooser.pathLabelMnemonic=83
|
|
||||||
FileChooser.foldersLabelText=Cartelle
|
|
||||||
FileChooser.foldersLabelMnemonic=84
|
|
||||||
FileChooser.filesLabelText=File
|
|
||||||
FileChooser.filesLabelMnemonic=70
|
|
||||||
|
|
||||||
FileChooser.cancelButtonToolTipText=Chiude la finestra di dialogo di selezione file.
|
|
||||||
FileChooser.saveButtonToolTipText=Salva il file selezionato.
|
|
||||||
FileChooser.openButtonToolTipText=Apre il file selezionato.
|
|
||||||
|
|
||||||
FileChooser.renameFileDialogText=Rinomina file "{0}" in
|
|
||||||
FileChooser.renameFileErrorTitle=Errore
|
|
||||||
FileChooser.renameFileErrorText=Errore durante la ridenominazione del file "{0}" in "{1}"
|
|
||||||
|
|
||||||
# dummy resource added for translation automation
|
|
||||||
OptionPane.okButtonText=OK
|
|
||||||
OptionPane.okButtonMnemonic=79
|
|
||||||
# dummy resource added for translation automation
|
|
||||||
OptionPane.cancelButtonText=Annulla
|
|
||||||
OptionPane.cancelButtonMnemonic=65
|
|
||||||
|
|
||||||
|
@ -1,84 +1,55 @@
|
|||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# GTK specific properties
|
# GTK specific properties
|
||||||
|
|
||||||
# GTK color chooser properties:
|
# GTK color chooser properties:
|
||||||
GTKColorChooserPanel.nameText=GTK\u30AB\u30E9\u30FC\u30FB\u30C1\u30E5\u30FC\u30B6(G)
|
GTKColorChooserPanel.textAndMnemonic=GTK\u30AB\u30E9\u30FC\u30FB\u30C1\u30E5\u30FC\u30B6(&G)
|
||||||
# mnemonic as a VK_ constant
|
# mnemonic as a VK_ constant
|
||||||
GTKColorChooserPanel.mnemonic=71
|
|
||||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
GTKColorChooserPanel.hue.textAndMnemonic=\u8272\u76F8(&H):
|
||||||
# want an index other than would normally be underlined by
|
|
||||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
GTKColorChooserPanel.red.textAndMnemonic=\u8D64(&E):
|
||||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
|
||||||
# than once and you want a character other than the first underlined.
|
GTKColorChooserPanel.saturation.textAndMnemonic=\u5F69\u5EA6(&S):
|
||||||
|
|
||||||
# Text and mnemonics for the spinner. You can also defined a different
|
GTKColorChooserPanel.green.textAndMnemonic=\u7DD1(&G):
|
||||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
|
||||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
GTKColorChooserPanel.value.textAndMnemonic=\u5024(&V):
|
||||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
|
||||||
# represent the mnemonic.
|
GTKColorChooserPanel.blue.textAndMnemonic=\u9752(&B):
|
||||||
GTKColorChooserPanel.hueText=\u8272\u76F8(H):
|
|
||||||
GTKColorChooserPanel.hueMnemonic=72
|
GTKColorChooserPanel.color.textAndMnemonic=\u8272\u540D(&N):
|
||||||
|
|
||||||
GTKColorChooserPanel.redText=\u8D64(E):
|
|
||||||
GTKColorChooserPanel.redMnemonic=69
|
|
||||||
|
############ FILE CHOOSER STRINGS #############
|
||||||
GTKColorChooserPanel.saturationText=\u5F69\u5EA6(S):
|
|
||||||
GTKColorChooserPanel.saturationMnemonic=83
|
FileChooser.acceptAllFileFilter.textAndMnemonic=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB
|
||||||
|
FileChooser.newFolderButton.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0(&N)
|
||||||
GTKColorChooserPanel.greenText=\u7DD1(G):
|
FileChooser.newFolderDialog.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0\u540D:
|
||||||
GTKColorChooserPanel.greenMnemonic=71
|
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=\u30A8\u30E9\u30FC
|
||||||
|
FileChooser.newFolderNoDirectoryError.textAndMnemonic=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA"{0}"\u306E\u4F5C\u6210\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F: \u3053\u306E\u30D5\u30A1\u30A4\u30EB\u307E\u305F\u306F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306F\u5B58\u5728\u3057\u307E\u305B\u3093
|
||||||
GTKColorChooserPanel.valueText=\u5024(V):
|
FileChooser.deleteFileButton.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u306E\u524A\u9664(&L)
|
||||||
GTKColorChooserPanel.valueMnemonic=86
|
FileChooser.renameFileButton.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u306E\u540D\u524D\u5909\u66F4(&R)
|
||||||
|
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
|
||||||
GTKColorChooserPanel.blueText=\u9752(B):
|
FileChooser.saveButton.textAndMnemonic=&OK
|
||||||
GTKColorChooserPanel.blueMnemonic=66
|
FileChooser.openButton.textAndMnemonic=&OK
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
|
||||||
GTKColorChooserPanel.colorNameText=\u8272\u540D(N):
|
FileChooser.openDialogTitle.textAndMnemonic=\u958B\u304F
|
||||||
GTKColorChooserPanel.colorNameMnemonic=78
|
FileChooser.pathLabel.textAndMnemonic=\u9078\u629E(&S):
|
||||||
|
FileChooser.filterLabel.textAndMnemonic=\u30D5\u30A3\u30EB\u30BF:
|
||||||
|
FileChooser.foldersLabel.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0(&D)
|
||||||
|
FileChooser.filesLabel.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB(&F)
|
||||||
############ FILE CHOOSER STRINGS #############
|
|
||||||
|
FileChooser.cancelButtonToolTip.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u30FB\u30C1\u30E5\u30FC\u30B6\u30FB\u30C0\u30A4\u30A2\u30ED\u30B0\u3092\u7D42\u4E86\u3057\u307E\u3059\u3002
|
||||||
FileChooser.acceptAllFileFilterText=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB
|
FileChooser.saveButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059\u3002
|
||||||
FileChooser.newFolderButtonText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0(N)
|
FileChooser.openButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059\u3002
|
||||||
FileChooser.newFolderButtonMnemonic=78
|
|
||||||
FileChooser.newFolderDialogText=\u30D5\u30A9\u30EB\u30C0\u540D:
|
FileChooser.renameFileDialog.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB"{0}"\u3092\u6B21\u306E\u540D\u524D\u306B\u5909\u66F4:
|
||||||
FileChooser.newFolderNoDirectoryErrorTitleText=\u30A8\u30E9\u30FC
|
FileChooser.renameFileError.titleAndMnemonic=\u30A8\u30E9\u30FC
|
||||||
FileChooser.newFolderNoDirectoryErrorText=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA"{0}"\u306E\u4F5C\u6210\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F: \u3053\u306E\u30D5\u30A1\u30A4\u30EB\u307E\u305F\u306F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306F\u5B58\u5728\u3057\u307E\u305B\u3093
|
FileChooser.renameFileError.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB"{0}"\u306E"{1}"\u3078\u306E\u5909\u66F4\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F
|
||||||
FileChooser.deleteFileButtonText=\u30D5\u30A1\u30A4\u30EB\u306E\u524A\u9664(L)
|
|
||||||
FileChooser.deleteFileButtonMnemonic=76
|
|
||||||
FileChooser.renameFileButtonText=\u30D5\u30A1\u30A4\u30EB\u306E\u540D\u524D\u5909\u66F4(R)
|
|
||||||
FileChooser.renameFileButtonMnemonic=82
|
|
||||||
FileChooser.cancelButtonText=\u53D6\u6D88
|
|
||||||
FileChooser.cancelButtonMnemonic=67
|
|
||||||
FileChooser.saveButtonText=OK
|
|
||||||
FileChooser.saveButtonMnemonic=79
|
|
||||||
FileChooser.openButtonText=OK
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=\u4FDD\u5B58
|
|
||||||
FileChooser.openDialogTitleText=\u958B\u304F
|
|
||||||
FileChooser.pathLabelText=\u9078\u629E(S):
|
|
||||||
FileChooser.filterLabelText=\u30D5\u30A3\u30EB\u30BF:
|
|
||||||
FileChooser.pathLabelMnemonic=83
|
|
||||||
FileChooser.foldersLabelText=\u30D5\u30A9\u30EB\u30C0(D)
|
|
||||||
FileChooser.foldersLabelMnemonic=68
|
|
||||||
FileChooser.filesLabelText=\u30D5\u30A1\u30A4\u30EB(F)
|
|
||||||
FileChooser.filesLabelMnemonic=70
|
|
||||||
|
|
||||||
FileChooser.cancelButtonToolTipText=\u30D5\u30A1\u30A4\u30EB\u30FB\u30C1\u30E5\u30FC\u30B6\u30FB\u30C0\u30A4\u30A2\u30ED\u30B0\u3092\u7D42\u4E86\u3057\u307E\u3059\u3002
|
|
||||||
FileChooser.saveButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059\u3002
|
|
||||||
FileChooser.openButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059\u3002
|
|
||||||
|
|
||||||
FileChooser.renameFileDialogText=\u30D5\u30A1\u30A4\u30EB"{0}"\u3092\u6B21\u306E\u540D\u524D\u306B\u5909\u66F4:
|
|
||||||
FileChooser.renameFileErrorTitle=\u30A8\u30E9\u30FC
|
|
||||||
FileChooser.renameFileErrorText=\u30D5\u30A1\u30A4\u30EB"{0}"\u306E"{1}"\u3078\u306E\u5909\u66F4\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F
|
|
||||||
|
|
||||||
#OptionPane.okButtonMnemonic=79
|
|
||||||
#OptionPane.cancelButtonMnemonic=67
|
|
||||||
|
|
||||||
|
@ -1,84 +1,55 @@
|
|||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# GTK specific properties
|
# GTK specific properties
|
||||||
|
|
||||||
# GTK color chooser properties:
|
# GTK color chooser properties:
|
||||||
GTKColorChooserPanel.nameText=GTK \uC0C9\uC0C1 \uC120\uD0DD\uAE30(G)
|
GTKColorChooserPanel.textAndMnemonic=GTK \uC0C9\uC0C1 \uC120\uD0DD\uAE30(&G)
|
||||||
# mnemonic as a VK_ constant
|
# mnemonic as a VK_ constant
|
||||||
GTKColorChooserPanel.mnemonic=71
|
|
||||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
GTKColorChooserPanel.hue.textAndMnemonic=\uC0C9\uC870(&H):
|
||||||
# want an index other than would normally be underlined by
|
|
||||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
GTKColorChooserPanel.red.textAndMnemonic=\uBE68\uAC04\uC0C9(&E):
|
||||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
|
||||||
# than once and you want a character other than the first underlined.
|
GTKColorChooserPanel.saturation.textAndMnemonic=\uCC44\uB3C4(&S):
|
||||||
|
|
||||||
# Text and mnemonics for the spinner. You can also defined a different
|
GTKColorChooserPanel.green.textAndMnemonic=\uB179\uC0C9(&G):
|
||||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
|
||||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
GTKColorChooserPanel.value.textAndMnemonic=\uAC12(&V):
|
||||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
|
||||||
# represent the mnemonic.
|
GTKColorChooserPanel.blue.textAndMnemonic=\uD30C\uB780\uC0C9(&B):
|
||||||
GTKColorChooserPanel.hueText=\uC0C9\uC870(H):
|
|
||||||
GTKColorChooserPanel.hueMnemonic=72
|
GTKColorChooserPanel.color.textAndMnemonic=\uC0C9\uC0C1 \uC774\uB984(&N):
|
||||||
|
|
||||||
GTKColorChooserPanel.redText=\uBE68\uAC04\uC0C9(E):
|
|
||||||
GTKColorChooserPanel.redMnemonic=69
|
|
||||||
|
############ FILE CHOOSER STRINGS #############
|
||||||
GTKColorChooserPanel.saturationText=\uCC44\uB3C4(S):
|
|
||||||
GTKColorChooserPanel.saturationMnemonic=83
|
FileChooser.acceptAllFileFilter.textAndMnemonic=\uBAA8\uB4E0 \uD30C\uC77C
|
||||||
|
FileChooser.newFolderButton.textAndMnemonic=\uC0C8 \uD3F4\uB354(&N)
|
||||||
GTKColorChooserPanel.greenText=\uB179\uC0C9(G):
|
FileChooser.newFolderDialog.textAndMnemonic=\uD3F4\uB354 \uC774\uB984:
|
||||||
GTKColorChooserPanel.greenMnemonic=71
|
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=\uC624\uB958
|
||||||
|
FileChooser.newFolderNoDirectoryError.textAndMnemonic="{0}" \uB514\uB809\uD1A0\uB9AC\uB97C \uC0DD\uC131\uD558\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD: \uD574\uB2F9 \uD30C\uC77C \uB610\uB294 \uB514\uB809\uD1A0\uB9AC\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||||
GTKColorChooserPanel.valueText=\uAC12(V):
|
FileChooser.deleteFileButton.textAndMnemonic=\uD30C\uC77C \uC0AD\uC81C(&L)
|
||||||
GTKColorChooserPanel.valueMnemonic=86
|
FileChooser.renameFileButton.textAndMnemonic=\uD30C\uC77C \uC774\uB984 \uBC14\uAFB8\uAE30(&R)
|
||||||
|
FileChooser.cancelButton.textAndMnemonic=\uCDE8\uC18C(&C)
|
||||||
GTKColorChooserPanel.blueText=\uD30C\uB780\uC0C9(B):
|
FileChooser.saveButton.textAndMnemonic=\uD655\uC778(&O)
|
||||||
GTKColorChooserPanel.blueMnemonic=66
|
FileChooser.openButton.textAndMnemonic=\uD655\uC778(&O)
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=\uC800\uC7A5
|
||||||
GTKColorChooserPanel.colorNameText=\uC0C9\uC0C1 \uC774\uB984(N):
|
FileChooser.openDialogTitle.textAndMnemonic=\uC5F4\uAE30
|
||||||
GTKColorChooserPanel.colorNameMnemonic=78
|
FileChooser.pathLabel.textAndMnemonic=\uC120\uD0DD \uC0AC\uD56D(&S):
|
||||||
|
FileChooser.filterLabel.textAndMnemonic=\uD544\uD130:
|
||||||
|
FileChooser.foldersLabel.textAndMnemonic=\uD3F4\uB354(&D)
|
||||||
|
FileChooser.filesLabel.textAndMnemonic=\uD30C\uC77C(&F)
|
||||||
############ FILE CHOOSER STRINGS #############
|
|
||||||
|
FileChooser.cancelButtonToolTip.textAndMnemonic=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790\uB97C \uC911\uB2E8\uD569\uB2C8\uB2E4.
|
||||||
FileChooser.acceptAllFileFilterText=\uBAA8\uB4E0 \uD30C\uC77C
|
FileChooser.saveButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC800\uC7A5\uD569\uB2C8\uB2E4.
|
||||||
FileChooser.newFolderButtonText=\uC0C8 \uD3F4\uB354(N)
|
FileChooser.openButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC5FD\uB2C8\uB2E4.
|
||||||
FileChooser.newFolderButtonMnemonic=78
|
|
||||||
FileChooser.newFolderDialogText=\uD3F4\uB354 \uC774\uB984:
|
FileChooser.renameFileDialog.textAndMnemonic="{0}" \uD30C\uC77C\uC758 \uC774\uB984 \uBC14\uAFB8\uAE30
|
||||||
FileChooser.newFolderNoDirectoryErrorTitleText=\uC624\uB958
|
FileChooser.renameFileError.titleAndMnemonic=\uC624\uB958
|
||||||
FileChooser.newFolderNoDirectoryErrorText="{0}" \uB514\uB809\uD1A0\uB9AC\uB97C \uC0DD\uC131\uD558\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD: \uD574\uB2F9 \uD30C\uC77C \uB610\uB294 \uB514\uB809\uD1A0\uB9AC\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4.
|
FileChooser.renameFileError.textAndMnemonic="{0}" \uD30C\uC77C\uC758 \uC774\uB984\uC744 "{1}"(\uC73C)\uB85C \uBC14\uAFB8\uB294 \uC911 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4.
|
||||||
FileChooser.deleteFileButtonText=\uD30C\uC77C \uC0AD\uC81C(L)
|
|
||||||
FileChooser.deleteFileButtonMnemonic=76
|
|
||||||
FileChooser.renameFileButtonText=\uD30C\uC77C \uC774\uB984 \uBC14\uAFB8\uAE30(R)
|
|
||||||
FileChooser.renameFileButtonMnemonic=82
|
|
||||||
FileChooser.cancelButtonText=\uCDE8\uC18C
|
|
||||||
FileChooser.cancelButtonMnemonic=67
|
|
||||||
FileChooser.saveButtonText=\uD655\uC778
|
|
||||||
FileChooser.saveButtonMnemonic=79
|
|
||||||
FileChooser.openButtonText=\uD655\uC778
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=\uC800\uC7A5
|
|
||||||
FileChooser.openDialogTitleText=\uC5F4\uAE30
|
|
||||||
FileChooser.pathLabelText=\uC120\uD0DD \uC0AC\uD56D(S):
|
|
||||||
FileChooser.filterLabelText=\uD544\uD130:
|
|
||||||
FileChooser.pathLabelMnemonic=83
|
|
||||||
FileChooser.foldersLabelText=\uD3F4\uB354(D)
|
|
||||||
FileChooser.foldersLabelMnemonic=68
|
|
||||||
FileChooser.filesLabelText=\uD30C\uC77C(F)
|
|
||||||
FileChooser.filesLabelMnemonic=70
|
|
||||||
|
|
||||||
FileChooser.cancelButtonToolTipText=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790\uB97C \uC911\uB2E8\uD569\uB2C8\uB2E4.
|
|
||||||
FileChooser.saveButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC800\uC7A5\uD569\uB2C8\uB2E4.
|
|
||||||
FileChooser.openButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC5FD\uB2C8\uB2E4.
|
|
||||||
|
|
||||||
FileChooser.renameFileDialogText="{0}" \uD30C\uC77C\uC758 \uC774\uB984 \uBC14\uAFB8\uAE30
|
|
||||||
FileChooser.renameFileErrorTitle=\uC624\uB958
|
|
||||||
FileChooser.renameFileErrorText="{0}" \uD30C\uC77C\uC758 \uC774\uB984\uC744 "{1}"(\uC73C)\uB85C \uBC14\uAFB8\uB294 \uC911 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4.
|
|
||||||
|
|
||||||
#OptionPane.okButtonMnemonic=79
|
|
||||||
#OptionPane.cancelButtonMnemonic=67
|
|
||||||
|
|
||||||
|
@ -1,88 +1,59 @@
|
|||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# GTK specific properties
|
# GTK specific properties
|
||||||
|
|
||||||
# GTK color chooser properties:
|
# GTK color chooser properties:
|
||||||
GTKColorChooserPanel.nameText=Seletor de Cores do GTK
|
GTKColorChooserPanel.textAndMnemonic=Seletor de Cores do >K
|
||||||
# mnemonic as a VK_ constant
|
# mnemonic as a VK_ constant
|
||||||
GTKColorChooserPanel.mnemonic=71
|
|
||||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
GTKColorChooserPanel.hue.textAndMnemonic=&Matiz:
|
||||||
# want an index other than would normally be underlined by
|
|
||||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
GTKColorChooserPanel.red.textAndMnemonic=V&ermelho:
|
||||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
|
||||||
# than once and you want a character other than the first underlined.
|
GTKColorChooserPanel.saturation.textAndMnemonic=Satura\u00E7\u00E3o(&S):
|
||||||
|
|
||||||
# Text and mnemonics for the spinner. You can also defined a different
|
GTKColorChooserPanel.green.textAndMnemonic=Ver&de:
|
||||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
|
||||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
GTKColorChooserPanel.value.textAndMnemonic=&Valor:
|
||||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
|
||||||
# represent the mnemonic.
|
GTKColorChooserPanel.blue.textAndMnemonic=&Azul:
|
||||||
GTKColorChooserPanel.hueText=Matiz:
|
|
||||||
GTKColorChooserPanel.hueMnemonic=77
|
GTKColorChooserPanel.color.textAndMnemonic=&Nome da Cor:
|
||||||
|
|
||||||
GTKColorChooserPanel.redText=Vermelho:
|
|
||||||
GTKColorChooserPanel.redMnemonic=69
|
|
||||||
|
############ FILE CHOOSER STRINGS #############
|
||||||
GTKColorChooserPanel.saturationText=Satura\u00E7\u00E3o:
|
|
||||||
GTKColorChooserPanel.saturationMnemonic=83
|
FileChooser.acceptAllFileFilter.textAndMnemonic=Todos os Arquivos
|
||||||
|
FileChooser.newFolderButton.textAndMnemonic=&Nova Pasta
|
||||||
GTKColorChooserPanel.greenText=Verde:
|
FileChooser.newFolderDialog.textAndMnemonic=Nome da pasta:
|
||||||
GTKColorChooserPanel.greenMnemonic=68
|
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Erro
|
||||||
|
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Erro ao criar o diret\u00F3rio "{0}": N\u00E3o h\u00E1 arquivo ou diret\u00F3rio
|
||||||
GTKColorChooserPanel.valueText=Valor:
|
FileChooser.deleteFileButton.textAndMnemonic=De&letar Arquivo
|
||||||
GTKColorChooserPanel.valueMnemonic=86
|
FileChooser.renameFileButton.textAndMnemonic=&Renomear Arquivo
|
||||||
|
FileChooser.cancelButton.textAndMnemonic=&Cancelar
|
||||||
GTKColorChooserPanel.blueText=Azul:
|
FileChooser.saveButton.textAndMnemonic=&OK
|
||||||
GTKColorChooserPanel.blueMnemonic=65
|
FileChooser.openButton.textAndMnemonic=&OK
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=Salvar
|
||||||
GTKColorChooserPanel.colorNameText=Nome da Cor:
|
FileChooser.openDialogTitle.textAndMnemonic=Abrir
|
||||||
GTKColorChooserPanel.colorNameMnemonic=78
|
FileChooser.pathLabel.textAndMnemonic=Sele\u00E7\u00E3o(&S):
|
||||||
|
FileChooser.filterLabel.textAndMnemonic=Filtro:
|
||||||
|
FileChooser.foldersLabel.textAndMnemonic=&Pastas
|
||||||
|
FileChooser.filesLabel.textAndMnemonic=&Arquivos
|
||||||
############ FILE CHOOSER STRINGS #############
|
|
||||||
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Abortar caixa de di\u00E1logo do seletor de arquivos.
|
||||||
FileChooser.acceptAllFileFilterText=Todos os Arquivos
|
FileChooser.saveButtonToolTip.textAndMnemonic=Salvar arquivo selecionado.
|
||||||
FileChooser.newFolderButtonText=Nova Pasta
|
FileChooser.openButtonToolTip.textAndMnemonic=Abrir arquivo selecionado.
|
||||||
FileChooser.newFolderButtonMnemonic=78
|
|
||||||
FileChooser.newFolderDialogText=Nome da pasta:
|
FileChooser.renameFileDialog.textAndMnemonic=Renomear arquivo "{0}" por
|
||||||
FileChooser.newFolderNoDirectoryErrorTitleText=Erro
|
FileChooser.renameFileError.titleAndMnemonic=Erro
|
||||||
FileChooser.newFolderNoDirectoryErrorText=Erro ao criar o diret\u00F3rio "{0}": N\u00E3o h\u00E1 arquivo ou diret\u00F3rio
|
FileChooser.renameFileError.textAndMnemonic=Erro ao renomear o arquivo "{0}" por "{1}"
|
||||||
FileChooser.deleteFileButtonText=Deletar Arquivo
|
|
||||||
FileChooser.deleteFileButtonMnemonic=76
|
# dummy resource added for translation automation
|
||||||
FileChooser.renameFileButtonText=Renomear Arquivo
|
OptionPane.okButton.textAndMnemonic=&OK
|
||||||
FileChooser.renameFileButtonMnemonic=82
|
# dummy resource added for translation automation
|
||||||
FileChooser.cancelButtonText=Cancelar
|
OptionPane.cancelButton.textAndMnemonic=&Cancelar
|
||||||
FileChooser.cancelButtonMnemonic=67
|
|
||||||
FileChooser.saveButtonText=OK
|
|
||||||
FileChooser.saveButtonMnemonic=79
|
|
||||||
FileChooser.openButtonText=OK
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=Salvar
|
|
||||||
FileChooser.openDialogTitleText=Abrir
|
|
||||||
FileChooser.pathLabelText=Sele\u00E7\u00E3o:
|
|
||||||
FileChooser.filterLabelText=Filtro:
|
|
||||||
FileChooser.pathLabelMnemonic=83
|
|
||||||
FileChooser.foldersLabelText=Pastas
|
|
||||||
FileChooser.foldersLabelMnemonic=80
|
|
||||||
FileChooser.filesLabelText=Arquivos
|
|
||||||
FileChooser.filesLabelMnemonic=65
|
|
||||||
|
|
||||||
FileChooser.cancelButtonToolTipText=Abortar caixa de di\u00E1logo do seletor de arquivos.
|
|
||||||
FileChooser.saveButtonToolTipText=Salvar arquivo selecionado.
|
|
||||||
FileChooser.openButtonToolTipText=Abrir arquivo selecionado.
|
|
||||||
|
|
||||||
FileChooser.renameFileDialogText=Renomear arquivo "{0}" por
|
|
||||||
FileChooser.renameFileErrorTitle=Erro
|
|
||||||
FileChooser.renameFileErrorText=Erro ao renomear o arquivo "{0}" por "{1}"
|
|
||||||
|
|
||||||
# dummy resource added for translation automation
|
|
||||||
OptionPane.okButtonText=OK
|
|
||||||
OptionPane.okButtonMnemonic=79
|
|
||||||
# dummy resource added for translation automation
|
|
||||||
OptionPane.cancelButtonText=Cancelar
|
|
||||||
OptionPane.cancelButtonMnemonic=67
|
|
||||||
|
|
||||||
|
@ -1,88 +1,59 @@
|
|||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# GTK specific properties
|
# GTK specific properties
|
||||||
|
|
||||||
# GTK color chooser properties:
|
# GTK color chooser properties:
|
||||||
GTKColorChooserPanel.nameText=GTK-f\u00E4rgv\u00E4ljaren
|
GTKColorChooserPanel.textAndMnemonic=GTK-f\u00E4rgv\u00E4ljaren(&G)
|
||||||
# mnemonic as a VK_ constant
|
# mnemonic as a VK_ constant
|
||||||
GTKColorChooserPanel.mnemonic=71
|
|
||||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
GTKColorChooserPanel.hue.textAndMnemonic=&Nyans:
|
||||||
# want an index other than would normally be underlined by
|
|
||||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
GTKColorChooserPanel.red.textAndMnemonic=R\u00F6d(&R):
|
||||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
|
||||||
# than once and you want a character other than the first underlined.
|
GTKColorChooserPanel.saturation.textAndMnemonic=M\u00E4ttnad(&M):
|
||||||
|
|
||||||
# Text and mnemonics for the spinner. You can also defined a different
|
GTKColorChooserPanel.green.textAndMnemonic=Gr\u00F6n(&G):
|
||||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
|
||||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
GTKColorChooserPanel.value.textAndMnemonic=V\u00E4rde(&V):
|
||||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
|
||||||
# represent the mnemonic.
|
GTKColorChooserPanel.blue.textAndMnemonic=Bl\u00E5(&B):
|
||||||
GTKColorChooserPanel.hueText=Nyans:
|
|
||||||
GTKColorChooserPanel.hueMnemonic=78
|
GTKColorChooserPanel.color.textAndMnemonic=F\u00E4rgnamn(&F):
|
||||||
|
|
||||||
GTKColorChooserPanel.redText=R\u00F6d:
|
|
||||||
GTKColorChooserPanel.redMnemonic=82
|
|
||||||
|
############ FILE CHOOSER STRINGS #############
|
||||||
GTKColorChooserPanel.saturationText=M\u00E4ttnad:
|
|
||||||
GTKColorChooserPanel.saturationMnemonic=77
|
FileChooser.acceptAllFileFilter.textAndMnemonic=Alla filer
|
||||||
|
FileChooser.newFolderButton.textAndMnemonic=&Ny mapp
|
||||||
GTKColorChooserPanel.greenText=Gr\u00F6n:
|
FileChooser.newFolderDialog.textAndMnemonic=Mapp:
|
||||||
GTKColorChooserPanel.greenMnemonic=71
|
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Fel
|
||||||
|
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Ett fel intr\u00E4ffade vid f\u00F6rs\u00F6k att skapa katalogen "{0}": Filen eller katalogen finns inte
|
||||||
GTKColorChooserPanel.valueText=V\u00E4rde:
|
FileChooser.deleteFileButton.textAndMnemonic=Ta &bort fil
|
||||||
GTKColorChooserPanel.valueMnemonic=86
|
FileChooser.renameFileButton.textAndMnemonic=\u00C4ndra namn p\u00E5 filen(&R)
|
||||||
|
FileChooser.cancelButton.textAndMnemonic=&Avbryt
|
||||||
GTKColorChooserPanel.blueText=Bl\u00E5:
|
FileChooser.saveButton.textAndMnemonic=&OK
|
||||||
GTKColorChooserPanel.blueMnemonic=66
|
FileChooser.openButton.textAndMnemonic=&OK
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=Spara
|
||||||
GTKColorChooserPanel.colorNameText=F\u00E4rgnamn:
|
FileChooser.openDialogTitle.textAndMnemonic=\u00D6ppna
|
||||||
GTKColorChooserPanel.colorNameMnemonic=70
|
FileChooser.pathLabel.textAndMnemonic=&Urval:
|
||||||
|
FileChooser.filterLabel.textAndMnemonic=Filter:
|
||||||
|
FileChooser.foldersLabel.textAndMnemonic=Ma&ppar
|
||||||
|
FileChooser.filesLabel.textAndMnemonic=&Filer
|
||||||
############ FILE CHOOSER STRINGS #############
|
|
||||||
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt dialogrutan Filv\u00E4ljare.
|
||||||
FileChooser.acceptAllFileFilterText=Alla filer
|
FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil.
|
||||||
FileChooser.newFolderButtonText=Ny mapp
|
FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil.
|
||||||
FileChooser.newFolderButtonMnemonic=78
|
|
||||||
FileChooser.newFolderDialogText=Mapp:
|
FileChooser.renameFileDialog.textAndMnemonic=Namn\u00E4ndra fil "{0}" till
|
||||||
FileChooser.newFolderNoDirectoryErrorTitleText=Fel
|
FileChooser.renameFileError.titleAndMnemonic=Fel
|
||||||
FileChooser.newFolderNoDirectoryErrorText=Ett fel intr\u00E4ffade vid f\u00F6rs\u00F6k att skapa katalogen "{0}": Filen eller katalogen finns inte
|
FileChooser.renameFileError.textAndMnemonic=Fel vid namn\u00E4ndring av fil "{0}" till "{1}"
|
||||||
FileChooser.deleteFileButtonText=Ta bort fil
|
|
||||||
FileChooser.deleteFileButtonMnemonic=66
|
# dummy resource added for translation automation
|
||||||
FileChooser.renameFileButtonText=\u00C4ndra namn p\u00E5 filen
|
OptionPane.okButton.textAndMnemonic=&OK
|
||||||
FileChooser.renameFileButtonMnemonic=82
|
# dummy resource added for translation automation
|
||||||
FileChooser.cancelButtonText=Avbryt
|
OptionPane.cancelButton.textAndMnemonic=&Avbryt
|
||||||
FileChooser.cancelButtonMnemonic=65
|
|
||||||
FileChooser.saveButtonText=OK
|
|
||||||
FileChooser.saveButtonMnemonic=79
|
|
||||||
FileChooser.openButtonText=OK
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=Spara
|
|
||||||
FileChooser.openDialogTitleText=\u00D6ppna
|
|
||||||
FileChooser.pathLabelText=Urval:
|
|
||||||
FileChooser.filterLabelText=Filter:
|
|
||||||
FileChooser.pathLabelMnemonic=85
|
|
||||||
FileChooser.foldersLabelText=Mappar
|
|
||||||
FileChooser.foldersLabelMnemonic=80
|
|
||||||
FileChooser.filesLabelText=Filer
|
|
||||||
FileChooser.filesLabelMnemonic=70
|
|
||||||
|
|
||||||
FileChooser.cancelButtonToolTipText=Avbryt dialogrutan Filv\u00E4ljare.
|
|
||||||
FileChooser.saveButtonToolTipText=Spara vald fil.
|
|
||||||
FileChooser.openButtonToolTipText=\u00D6ppna vald fil.
|
|
||||||
|
|
||||||
FileChooser.renameFileDialogText=Namn\u00E4ndra fil "{0}" till
|
|
||||||
FileChooser.renameFileErrorTitle=Fel
|
|
||||||
FileChooser.renameFileErrorText=Fel vid namn\u00E4ndring av fil "{0}" till "{1}"
|
|
||||||
|
|
||||||
# dummy resource added for translation automation
|
|
||||||
OptionPane.okButtonText=OK
|
|
||||||
OptionPane.okButtonMnemonic=79
|
|
||||||
# dummy resource added for translation automation
|
|
||||||
OptionPane.cancelButtonText=Avbryt
|
|
||||||
OptionPane.cancelButtonMnemonic=65
|
|
||||||
|
|
||||||
|
@ -1,84 +1,55 @@
|
|||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# GTK specific properties
|
# GTK specific properties
|
||||||
|
|
||||||
# GTK color chooser properties:
|
# GTK color chooser properties:
|
||||||
GTKColorChooserPanel.nameText=GTK \u989C\u8272\u9009\u62E9\u5668(G)
|
GTKColorChooserPanel.textAndMnemonic=GTK \u989C\u8272\u9009\u62E9\u5668(&G)
|
||||||
# mnemonic as a VK_ constant
|
# mnemonic as a VK_ constant
|
||||||
GTKColorChooserPanel.mnemonic=71
|
|
||||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
GTKColorChooserPanel.hue.textAndMnemonic=\u8272\u8C03(&H):
|
||||||
# want an index other than would normally be underlined by
|
|
||||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
GTKColorChooserPanel.red.textAndMnemonic=\u7EA2\u8272(&E):
|
||||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
|
||||||
# than once and you want a character other than the first underlined.
|
GTKColorChooserPanel.saturation.textAndMnemonic=\u9971\u548C\u5EA6(&S):
|
||||||
|
|
||||||
# Text and mnemonics for the spinner. You can also defined a different
|
GTKColorChooserPanel.green.textAndMnemonic=\u7EFF\u8272(&G):
|
||||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
|
||||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
GTKColorChooserPanel.value.textAndMnemonic=\u503C(&V):
|
||||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
|
||||||
# represent the mnemonic.
|
GTKColorChooserPanel.blue.textAndMnemonic=\u84DD\u8272(&B):
|
||||||
GTKColorChooserPanel.hueText=\u8272\u8C03(H):
|
|
||||||
GTKColorChooserPanel.hueMnemonic=72
|
GTKColorChooserPanel.color.textAndMnemonic=\u989C\u8272\u540D(&N):
|
||||||
|
|
||||||
GTKColorChooserPanel.redText=\u7EA2\u8272(E):
|
|
||||||
GTKColorChooserPanel.redMnemonic=69
|
|
||||||
|
############ FILE CHOOSER STRINGS #############
|
||||||
GTKColorChooserPanel.saturationText=\u9971\u548C\u5EA6(S):
|
|
||||||
GTKColorChooserPanel.saturationMnemonic=83
|
FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6587\u4EF6
|
||||||
|
FileChooser.newFolderButton.textAndMnemonic=\u65B0\u6587\u4EF6\u5939(&N)
|
||||||
GTKColorChooserPanel.greenText=\u7EFF\u8272(G):
|
FileChooser.newFolderDialog.textAndMnemonic=\u6587\u4EF6\u5939\u540D:
|
||||||
GTKColorChooserPanel.greenMnemonic=71
|
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=\u9519\u8BEF
|
||||||
|
FileChooser.newFolderNoDirectoryError.textAndMnemonic=\u521B\u5EFA\u76EE\u5F55 "{0}" \u65F6\u51FA\u9519: \u6CA1\u6709\u6B64\u7C7B\u6587\u4EF6\u6216\u76EE\u5F55
|
||||||
GTKColorChooserPanel.valueText=\u503C(V):
|
FileChooser.deleteFileButton.textAndMnemonic=\u5220\u9664\u6587\u4EF6(&L)
|
||||||
GTKColorChooserPanel.valueMnemonic=86
|
FileChooser.renameFileButton.textAndMnemonic=\u91CD\u547D\u540D\u6587\u4EF6(&R)
|
||||||
|
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
|
||||||
GTKColorChooserPanel.blueText=\u84DD\u8272(B):
|
FileChooser.saveButton.textAndMnemonic=\u786E\u5B9A(&O)
|
||||||
GTKColorChooserPanel.blueMnemonic=66
|
FileChooser.openButton.textAndMnemonic=\u786E\u5B9A(&O)
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
|
||||||
GTKColorChooserPanel.colorNameText=\u989C\u8272\u540D(N):
|
FileChooser.openDialogTitle.textAndMnemonic=\u6253\u5F00
|
||||||
GTKColorChooserPanel.colorNameMnemonic=78
|
FileChooser.pathLabel.textAndMnemonic=\u9009\u5B9A\u5185\u5BB9(&S):
|
||||||
|
FileChooser.filterLabel.textAndMnemonic=\u7B5B\u9009\u5668:
|
||||||
|
FileChooser.foldersLabel.textAndMnemonic=\u6587\u4EF6\u5939(&D)
|
||||||
|
FileChooser.filesLabel.textAndMnemonic=\u6587\u4EF6(&F)
|
||||||
############ FILE CHOOSER STRINGS #############
|
|
||||||
|
FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846\u3002
|
||||||
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6587\u4EF6
|
FileChooser.saveButtonToolTip.textAndMnemonic=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6\u3002
|
||||||
FileChooser.newFolderButtonText=\u65B0\u6587\u4EF6\u5939(N)
|
FileChooser.openButtonToolTip.textAndMnemonic=\u6253\u5F00\u6240\u9009\u6587\u4EF6\u3002
|
||||||
FileChooser.newFolderButtonMnemonic=78
|
|
||||||
FileChooser.newFolderDialogText=\u6587\u4EF6\u5939\u540D:
|
FileChooser.renameFileDialog.textAndMnemonic=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A
|
||||||
FileChooser.newFolderNoDirectoryErrorTitleText=\u9519\u8BEF
|
FileChooser.renameFileError.titleAndMnemonic=\u9519\u8BEF
|
||||||
FileChooser.newFolderNoDirectoryErrorText=\u521B\u5EFA\u76EE\u5F55 "{0}" \u65F6\u51FA\u9519: \u6CA1\u6709\u6B64\u7C7B\u6587\u4EF6\u6216\u76EE\u5F55
|
FileChooser.renameFileError.textAndMnemonic=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A "{1}" \u65F6\u51FA\u9519
|
||||||
FileChooser.deleteFileButtonText=\u5220\u9664\u6587\u4EF6(L)
|
|
||||||
FileChooser.deleteFileButtonMnemonic=76
|
|
||||||
FileChooser.renameFileButtonText=\u91CD\u547D\u540D\u6587\u4EF6(R)
|
|
||||||
FileChooser.renameFileButtonMnemonic=82
|
|
||||||
FileChooser.cancelButtonText=\u53D6\u6D88
|
|
||||||
FileChooser.cancelButtonMnemonic=67
|
|
||||||
FileChooser.saveButtonText=\u786E\u5B9A
|
|
||||||
FileChooser.saveButtonMnemonic=79
|
|
||||||
FileChooser.openButtonText=\u786E\u5B9A
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=\u4FDD\u5B58
|
|
||||||
FileChooser.openDialogTitleText=\u6253\u5F00
|
|
||||||
FileChooser.pathLabelText=\u9009\u5B9A\u5185\u5BB9(S):
|
|
||||||
FileChooser.filterLabelText=\u7B5B\u9009\u5668:
|
|
||||||
FileChooser.pathLabelMnemonic=83
|
|
||||||
FileChooser.foldersLabelText=\u6587\u4EF6\u5939(D)
|
|
||||||
FileChooser.foldersLabelMnemonic=68
|
|
||||||
FileChooser.filesLabelText=\u6587\u4EF6(F)
|
|
||||||
FileChooser.filesLabelMnemonic=70
|
|
||||||
|
|
||||||
FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846\u3002
|
|
||||||
FileChooser.saveButtonToolTipText=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6\u3002
|
|
||||||
FileChooser.openButtonToolTipText=\u6253\u5F00\u6240\u9009\u6587\u4EF6\u3002
|
|
||||||
|
|
||||||
FileChooser.renameFileDialogText=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A
|
|
||||||
FileChooser.renameFileErrorTitle=\u9519\u8BEF
|
|
||||||
FileChooser.renameFileErrorText=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A "{1}" \u65F6\u51FA\u9519
|
|
||||||
|
|
||||||
#OptionPane.okButtonMnemonic=79
|
|
||||||
#OptionPane.cancelButtonMnemonic=67
|
|
||||||
|
|
||||||
|
@ -1,84 +1,55 @@
|
|||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# GTK specific properties
|
# GTK specific properties
|
||||||
|
|
||||||
# GTK color chooser properties:
|
# GTK color chooser properties:
|
||||||
GTKColorChooserPanel.nameText=GTK \u8272\u5F69\u9078\u64C7\u5668(G)
|
GTKColorChooserPanel.textAndMnemonic=GTK \u8272\u5F69\u9078\u64C7\u5668(&G)
|
||||||
# mnemonic as a VK_ constant
|
# mnemonic as a VK_ constant
|
||||||
GTKColorChooserPanel.mnemonic=71
|
|
||||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
GTKColorChooserPanel.hue.textAndMnemonic=\u8272\u8ABF(&H)\uFF1A
|
||||||
# want an index other than would normally be underlined by
|
|
||||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
GTKColorChooserPanel.red.textAndMnemonic=\u7D05(&E):
|
||||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
|
||||||
# than once and you want a character other than the first underlined.
|
GTKColorChooserPanel.saturation.textAndMnemonic=\u5F69\u5EA6(&S):
|
||||||
|
|
||||||
# Text and mnemonics for the spinner. You can also defined a different
|
GTKColorChooserPanel.green.textAndMnemonic=\u7DA0(&G):
|
||||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
|
||||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
GTKColorChooserPanel.value.textAndMnemonic=\u503C(&V):
|
||||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
|
||||||
# represent the mnemonic.
|
GTKColorChooserPanel.blue.textAndMnemonic=\u85CD(&B):
|
||||||
GTKColorChooserPanel.hueText=\u8272\u8ABF(H)\uFF1A
|
|
||||||
GTKColorChooserPanel.hueMnemonic=72
|
GTKColorChooserPanel.color.textAndMnemonic=\u984F\u8272\u540D\u7A31(&N):
|
||||||
|
|
||||||
GTKColorChooserPanel.redText=\u7D05(E):
|
|
||||||
GTKColorChooserPanel.redMnemonic=69
|
|
||||||
|
############ FILE CHOOSER STRINGS #############
|
||||||
GTKColorChooserPanel.saturationText=\u5F69\u5EA6(S):
|
|
||||||
GTKColorChooserPanel.saturationMnemonic=83
|
FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6A94\u6848
|
||||||
|
FileChooser.newFolderButton.textAndMnemonic=\u65B0\u5EFA\u8CC7\u6599\u593E(&N)
|
||||||
GTKColorChooserPanel.greenText=\u7DA0(G):
|
FileChooser.newFolderDialog.textAndMnemonic=\u8CC7\u6599\u593E\u540D\u7A31:
|
||||||
GTKColorChooserPanel.greenMnemonic=71
|
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=\u932F\u8AA4
|
||||||
|
FileChooser.newFolderNoDirectoryError.textAndMnemonic=\u5EFA\u7ACB\u76EE\u9304 "{0}" \u6642\u767C\u751F\u932F\u8AA4: \u6C92\u6709\u6B64\u6A94\u6848\u6216\u76EE\u9304
|
||||||
GTKColorChooserPanel.valueText=\u503C(V):
|
FileChooser.deleteFileButton.textAndMnemonic=\u522A\u9664\u6A94\u6848(&L)
|
||||||
GTKColorChooserPanel.valueMnemonic=86
|
FileChooser.renameFileButton.textAndMnemonic=\u91CD\u65B0\u547D\u540D\u6A94\u6848(&R)
|
||||||
|
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
|
||||||
GTKColorChooserPanel.blueText=\u85CD(B):
|
FileChooser.saveButton.textAndMnemonic=\u78BA\u5B9A(&O)
|
||||||
GTKColorChooserPanel.blueMnemonic=66
|
FileChooser.openButton.textAndMnemonic=\u78BA\u5B9A(&O)
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=\u5132\u5B58
|
||||||
GTKColorChooserPanel.colorNameText=\u984F\u8272\u540D\u7A31(N):
|
FileChooser.openDialogTitle.textAndMnemonic=\u958B\u555F
|
||||||
GTKColorChooserPanel.colorNameMnemonic=78
|
FileChooser.pathLabel.textAndMnemonic=\u9078\u53D6(&S):
|
||||||
|
FileChooser.filterLabel.textAndMnemonic=\u7BE9\u9078:
|
||||||
|
FileChooser.foldersLabel.textAndMnemonic=\u8CC7\u6599\u593E(&D)
|
||||||
|
FileChooser.filesLabel.textAndMnemonic=\u6A94\u6848(&F)
|
||||||
############ FILE CHOOSER STRINGS #############
|
|
||||||
|
FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6A94\u6848\u9078\u64C7\u5668\u5C0D\u8A71\u65B9\u584A\u3002
|
||||||
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6A94\u6848
|
FileChooser.saveButtonToolTip.textAndMnemonic=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848\u3002
|
||||||
FileChooser.newFolderButtonText=\u65B0\u5EFA\u8CC7\u6599\u593E(N)
|
FileChooser.openButtonToolTip.textAndMnemonic=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848\u3002
|
||||||
FileChooser.newFolderButtonMnemonic=78
|
|
||||||
FileChooser.newFolderDialogText=\u8CC7\u6599\u593E\u540D\u7A31:
|
FileChooser.renameFileDialog.textAndMnemonic=\u5C07\u6A94\u6848 "{0}" \u91CD\u65B0\u547D\u540D\u70BA
|
||||||
FileChooser.newFolderNoDirectoryErrorTitleText=\u932F\u8AA4
|
FileChooser.renameFileError.titleAndMnemonic=\u932F\u8AA4
|
||||||
FileChooser.newFolderNoDirectoryErrorText=\u5EFA\u7ACB\u76EE\u9304 "{0}" \u6642\u767C\u751F\u932F\u8AA4: \u6C92\u6709\u6B64\u6A94\u6848\u6216\u76EE\u9304
|
FileChooser.renameFileError.textAndMnemonic=\u5C07\u6A94\u6848 "{0}" \u91CD\u65B0\u547D\u540D\u70BA "{1}" \u6642\u51FA\u73FE\u932F\u8AA4
|
||||||
FileChooser.deleteFileButtonText=\u522A\u9664\u6A94\u6848(L)
|
|
||||||
FileChooser.deleteFileButtonMnemonic=76
|
|
||||||
FileChooser.renameFileButtonText=\u91CD\u65B0\u547D\u540D\u6A94\u6848(R)
|
|
||||||
FileChooser.renameFileButtonMnemonic=82
|
|
||||||
FileChooser.cancelButtonText=\u53D6\u6D88
|
|
||||||
FileChooser.cancelButtonMnemonic=67
|
|
||||||
FileChooser.saveButtonText=\u78BA\u5B9A
|
|
||||||
FileChooser.saveButtonMnemonic=79
|
|
||||||
FileChooser.openButtonText=\u78BA\u5B9A
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=\u5132\u5B58
|
|
||||||
FileChooser.openDialogTitleText=\u958B\u555F
|
|
||||||
FileChooser.pathLabelText=\u9078\u53D6(S):
|
|
||||||
FileChooser.filterLabelText=\u7BE9\u9078:
|
|
||||||
FileChooser.pathLabelMnemonic=83
|
|
||||||
FileChooser.foldersLabelText=\u8CC7\u6599\u593E(D)
|
|
||||||
FileChooser.foldersLabelMnemonic=68
|
|
||||||
FileChooser.filesLabelText=\u6A94\u6848(F)
|
|
||||||
FileChooser.filesLabelMnemonic=70
|
|
||||||
|
|
||||||
FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6A94\u6848\u9078\u64C7\u5668\u5C0D\u8A71\u65B9\u584A\u3002
|
|
||||||
FileChooser.saveButtonToolTipText=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848\u3002
|
|
||||||
FileChooser.openButtonToolTipText=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848\u3002
|
|
||||||
|
|
||||||
FileChooser.renameFileDialogText=\u5C07\u6A94\u6848 "{0}" \u91CD\u65B0\u547D\u540D\u70BA
|
|
||||||
FileChooser.renameFileErrorTitle=\u932F\u8AA4
|
|
||||||
FileChooser.renameFileErrorText=\u5C07\u6A94\u6848 "{0}" \u91CD\u65B0\u547D\u540D\u70BA "{1}" \u6642\u51FA\u73FE\u932F\u8AA4
|
|
||||||
|
|
||||||
#OptionPane.okButtonMnemonic=79
|
|
||||||
#OptionPane.cancelButtonMnemonic=67
|
|
||||||
|
|
||||||
|
@ -1,229 +1,189 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used in Swing
|
# It contains Locale specific strings used in Swing
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# ColorChooser
|
# ColorChooser
|
||||||
# FileChooser
|
# FileChooser
|
||||||
# OptionPane
|
# OptionPane
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# MNEMONIC NOTE:
|
# MNEMONIC NOTE:
|
||||||
# Many of strings in this file are used by widgets that have a
|
# Many of strings in this file are used by widgets that have a
|
||||||
# mnemonic, for example:
|
# mnemonic, for example:
|
||||||
# ColorChooser.rgbNameText=RGB
|
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||||
# ColorChooser.rgbMnemonic=71
|
#
|
||||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
# a decoration will be provided under the 'G'. This will typically
|
||||||
# a decoration will be provided under the 'G'. This will typically
|
# look like: RGB
|
||||||
# look like: RGB
|
# -
|
||||||
# -
|
#
|
||||||
# 71 corresponds to the decimal value of the VK constant defined
|
# One important thing to remember is that the mnemonic MUST exist in
|
||||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
# the String, if it does not exist you should add text that makes it
|
||||||
#
|
# exist. This will typically take the form 'XXXX (M)' where M is the
|
||||||
# public static final int VK_G = 0x47;
|
# character for the mnemonic.
|
||||||
#
|
#
|
||||||
# 0x47 is a hex number and needs to be converted to decimal.
|
# @author Steve Wilson
|
||||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
|
||||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
############ FILE CHOOSER STRINGS #############
|
||||||
# for 'a' is 65, 'b' is 66...
|
FileChooser.fileDescription.textAndMnemonic=Generic File
|
||||||
#
|
FileChooser.directoryDescription.textAndMnemonic=Directory
|
||||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
FileChooser.newFolderError.textAndMnemonic=Error creating new folder
|
||||||
# character that should be underlined in the String, with 0
|
FileChooser.newFolderErrorSeparator= :
|
||||||
# corresponding to the first character in the String.
|
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Unable to create folder
|
||||||
#
|
FileChooser.newFolderParentDoesntExist.textAndMnemonic=Unable to create the folder.\n\nThe system cannot find the path specified.
|
||||||
# One important thing to remember is that the mnemonic MUST exist in
|
FileChooser.renameErrorTitle.textAndMnemonic=Error Renaming File or Folder
|
||||||
# the String, if it does not exist you should add text that makes it
|
FileChooser.renameError.textAndMnemonic=Cannot rename {0}
|
||||||
# exist. This will typically take the form 'XXXX (M)' where M is the
|
FileChooser.renameErrorFileExists.textAndMnemonic=Cannot rename {0}: A file with the name you specified already exists. \
|
||||||
# character for the mnemonic.
|
Specify a different file name.
|
||||||
#
|
FileChooser.acceptAllFileFilter.textAndMnemonic=All Files
|
||||||
# @author Steve Wilson
|
FileChooser.cancelButton.textAndMnemonic=Cancel
|
||||||
|
FileChooser.saveButton.textAndMnemonic=&Save
|
||||||
############ FILE CHOOSER STRINGS #############
|
FileChooser.openButton.textAndMnemonic=&Open
|
||||||
FileChooser.fileDescriptionText=Generic File
|
FileChooser.saveDialogTitle.textAndMnemonic=Save
|
||||||
FileChooser.directoryDescriptionText=Directory
|
FileChooser.openDialogTitle.textAndMnemonic=Open
|
||||||
FileChooser.newFolderErrorText=Error creating new folder
|
FileChooser.updateButton.textAndMnemonic=&Update
|
||||||
FileChooser.newFolderErrorSeparator= :
|
FileChooser.helpButton.textAndMnemonic=&Help
|
||||||
FileChooser.newFolderParentDoesntExistTitleText=Unable to create folder
|
FileChooser.directoryOpenButton.textAndMnemonic=&Open
|
||||||
FileChooser.newFolderParentDoesntExistText=Unable to create the folder.\n\nThe system cannot find the path specified.
|
|
||||||
FileChooser.renameErrorTitleText=Error Renaming File or Folder
|
# File Size Units
|
||||||
FileChooser.renameErrorText=Cannot rename {0}
|
FileChooser.fileSizeKiloBytes={0} KB
|
||||||
FileChooser.renameErrorFileExistsText=Cannot rename {0}: A file with the name you specified already exists. \
|
FileChooser.fileSizeMegaBytes={0} MB
|
||||||
Specify a different file name.
|
FileChooser.fileSizeGigaBytes={0} GB
|
||||||
FileChooser.acceptAllFileFilterText=All Files
|
|
||||||
FileChooser.cancelButtonText=Cancel
|
# These strings are platform dependent not look and feel dependent.
|
||||||
#FileChooser.cancelButtonMnemonic=67 // not needed?
|
FileChooser.win32.newFolder=New Folder
|
||||||
FileChooser.saveButtonText=Save
|
FileChooser.win32.newFolder.subsequent=New Folder ({0})
|
||||||
FileChooser.saveButtonMnemonic=83 // not needed?
|
FileChooser.other.newFolder=NewFolder
|
||||||
FileChooser.openButtonText=Open
|
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||||
FileChooser.openButtonMnemonic=79 //not needed?
|
|
||||||
FileChooser.saveDialogTitleText=Save
|
|
||||||
FileChooser.openDialogTitleText=Open
|
## file chooser tooltips ###
|
||||||
FileChooser.updateButtonText=Update
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Abort file chooser dialog
|
||||||
FileChooser.updateButtonMnemonic=85
|
FileChooser.saveButtonToolTip.textAndMnemonic=Save selected file
|
||||||
FileChooser.helpButtonText=Help
|
FileChooser.openButtonToolTip.textAndMnemonic=Open selected file
|
||||||
FileChooser.helpButtonMnemonic=72
|
FileChooser.updateButtonToolTip.textAndMnemonic=Update directory listing
|
||||||
FileChooser.directoryOpenButtonText=Open
|
FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser help
|
||||||
FileChooser.directoryOpenButtonMnemonic=79
|
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Open selected directory
|
||||||
|
|
||||||
# File Size Units
|
FileChooser.filesListAccessibleName=Files List
|
||||||
FileChooser.fileSizeKiloBytes={0} KB
|
FileChooser.filesDetailsAccessibleName=Files Details
|
||||||
FileChooser.fileSizeMegaBytes={0} MB
|
|
||||||
FileChooser.fileSizeGigaBytes={0} GB
|
############ COLOR CHOOSER STRINGS #############
|
||||||
|
ColorChooser.preview.textAndMnemonic=Preview
|
||||||
# These strings are platform dependent not look and feel dependent.
|
ColorChooser.ok.textAndMnemonic=OK
|
||||||
FileChooser.win32.newFolder=New Folder
|
ColorChooser.cancel.textAndMnemonic=Cancel
|
||||||
FileChooser.win32.newFolder.subsequent=New Folder ({0})
|
ColorChooser.reset.textAndMnemonic=&Reset
|
||||||
FileChooser.other.newFolder=NewFolder
|
ColorChooser.sample.textAndMnemonic=Sample Text Sample Text
|
||||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
ColorChooser.swatches.textAndMnemonic=&Swatches
|
||||||
|
ColorChooser.swatchesRecent.textAndMnemonic=Recent:
|
||||||
|
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||||
## file chooser tooltips ###
|
ColorChooser.hsvHue.textAndMnemonic=Hue
|
||||||
FileChooser.cancelButtonToolTipText=Abort file chooser dialog
|
ColorChooser.hsvSaturation.textAndMnemonic=Saturation
|
||||||
FileChooser.saveButtonToolTipText=Save selected file
|
ColorChooser.hsvValue.textAndMnemonic=Value
|
||||||
FileChooser.openButtonToolTipText=Open selected file
|
ColorChooser.hsvTransparency.textAndMnemonic=Transparency
|
||||||
FileChooser.updateButtonToolTipText=Update directory listing
|
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||||
FileChooser.helpButtonToolTipText=FileChooser help
|
ColorChooser.hslHue.textAndMnemonic=Hue
|
||||||
FileChooser.directoryOpenButtonToolTipText=Open selected directory
|
ColorChooser.hslSaturation.textAndMnemonic=Saturation
|
||||||
|
ColorChooser.hslLightness.textAndMnemonic=Lightness
|
||||||
FileChooser.filesListAccessibleName=Files List
|
ColorChooser.hslTransparency.textAndMnemonic=Transparency
|
||||||
FileChooser.filesDetailsAccessibleName=Files Details
|
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||||
|
ColorChooser.rgbRed.textAndMnemonic=Re&d
|
||||||
############ COLOR CHOOSER STRINGS #############
|
ColorChooser.rgbGreen.textAndMnemonic=Gree&n
|
||||||
ColorChooser.previewText=Preview
|
ColorChooser.rgbBlue.textAndMnemonic=&Blue
|
||||||
ColorChooser.okText=OK
|
ColorChooser.rgbAlpha.textAndMnemonic=Alpha
|
||||||
ColorChooser.cancelText=Cancel
|
ColorChooser.rgbHexCode.textAndMnemonic=&Color Code
|
||||||
ColorChooser.resetText=Reset
|
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
ColorChooser.cmykCyan.textAndMnemonic=Cyan
|
||||||
ColorChooser.resetMnemonic=82
|
ColorChooser.cmykMagenta.textAndMnemonic=Magenta
|
||||||
ColorChooser.sampleText=Sample Text Sample Text
|
ColorChooser.cmykYellow.textAndMnemonic=Yellow
|
||||||
ColorChooser.swatchesNameText=Swatches
|
ColorChooser.cmykBlack.textAndMnemonic=Black
|
||||||
ColorChooser.swatchesMnemonic=83
|
ColorChooser.cmykAlpha.textAndMnemonic=Alpha
|
||||||
ColorChooser.swatchesRecentText=Recent:
|
|
||||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
############ OPTION PANE STRINGS #############
|
||||||
# constant, and an index into the text to render the mnemonic as. The
|
# We only define mnemonics for YES/NO, but for completeness you can
|
||||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
# define mnemonics for any of the buttons.
|
||||||
# xxxDisplayedMnemonicIndex.
|
OptionPane.yesButton.textAndMnemonic=&Yes
|
||||||
ColorChooser.hsvNameText=HSV
|
OptionPane.noButton.textAndMnemonic=&No
|
||||||
ColorChooser.hsvMnemonic=72
|
OptionPane.okButton.textAndMnemonic=OK
|
||||||
ColorChooser.hsvHueText=Hue
|
#OptionPane.okButtonMnemonic=0
|
||||||
ColorChooser.hsvSaturationText=Saturation
|
OptionPane.cancelButton.textAndMnemonic=Cancel
|
||||||
ColorChooser.hsvValueText=Value
|
#OptionPane.cancelButtonMnemonic=0
|
||||||
ColorChooser.hsvTransparencyText=Transparency
|
OptionPane.title.textAndMnemonic=Select an Option
|
||||||
ColorChooser.hslNameText=HSL
|
# Title for the dialog for the showInputDialog methods. Only used if
|
||||||
ColorChooser.hslMnemonic=76
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hslHueText=Hue
|
OptionPane.inputDialog.titleAndMnemonic=Input
|
||||||
ColorChooser.hslSaturationText=Saturation
|
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||||
ColorChooser.hslLightnessText=Lightness
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hslTransparencyText=Transparency
|
OptionPane.messageDialog.titleAndMnemonic=Message
|
||||||
ColorChooser.rgbNameText=RGB
|
|
||||||
ColorChooser.rgbMnemonic=71
|
############ Printing Dialog Strings ############
|
||||||
ColorChooser.rgbRedText=Red
|
PrintingDialog.titleProgress.textAndMnemonic=Printing
|
||||||
ColorChooser.rgbRedMnemonic=68 // not needed?
|
PrintingDialog.titleAborting.textAndMnemonic=Printing (Aborting)
|
||||||
ColorChooser.rgbGreenText=Green
|
|
||||||
ColorChooser.rgbGreenMnemonic=78 // not needed?
|
PrintingDialog.contentInitial.textAndMnemonic=Printing in progress...
|
||||||
ColorChooser.rgbBlueText=Blue
|
|
||||||
ColorChooser.rgbBlueMnemonic=66 // not needed?
|
# The following string will be formatted by a MessageFormat
|
||||||
ColorChooser.rgbAlphaText=Alpha
|
# and {0} will be replaced by page number being printed
|
||||||
ColorChooser.rgbHexCodeText=Color Code
|
PrintingDialog.contentProgress.textAndMnemonic=Printed page {0}...
|
||||||
ColorChooser.rgbHexCodeMnemonic=67
|
|
||||||
ColorChooser.cmykNameText=CMYK
|
PrintingDialog.contentAborting.textAndMnemonic=Printing aborting...
|
||||||
ColorChooser.cmykMnemonic=77
|
|
||||||
ColorChooser.cmykCyanText=Cyan
|
PrintingDialog.abortButton.textAndMnemonic=&Abort
|
||||||
ColorChooser.cmykMagentaText=Magenta
|
PrintingDialog.abortButtonToolTip.textAndMnemonic=Abort Printing
|
||||||
ColorChooser.cmykYellowText=Yellow
|
|
||||||
ColorChooser.cmykBlackText=Black
|
############ Internal Frame Strings ############
|
||||||
ColorChooser.cmykAlphaText=Alpha
|
InternalFrame.iconButtonToolTip=Minimize
|
||||||
|
InternalFrame.maxButtonToolTip=Maximize
|
||||||
############ OPTION PANE STRINGS #############
|
InternalFrame.restoreButtonToolTip=Restore
|
||||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
InternalFrame.closeButtonToolTip=Close
|
||||||
# We only define mnemonics for YES/NO, but for completeness you can
|
|
||||||
# define mnemonics for any of the buttons.
|
############ Internal Frame Title Pane Strings ############
|
||||||
OptionPane.yesButtonText=Yes
|
InternalFrameTitlePane.restoreButton.textAndMnemonic=Restore
|
||||||
OptionPane.yesButtonMnemonic=89
|
InternalFrameTitlePane.moveButton.textAndMnemonic=Move
|
||||||
OptionPane.noButtonText=No
|
InternalFrameTitlePane.sizeButton.textAndMnemonic=Size
|
||||||
OptionPane.noButtonMnemonic=78
|
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimize
|
||||||
OptionPane.okButtonText=OK
|
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximize
|
||||||
#OptionPane.okButtonMnemonic=0
|
InternalFrameTitlePane.closeButton.textAndMnemonic=Close
|
||||||
OptionPane.cancelButtonText=Cancel
|
|
||||||
#OptionPane.cancelButtonMnemonic=0
|
############ Text strings #############
|
||||||
OptionPane.titleText=Select an Option
|
# Used for html forms
|
||||||
# Title for the dialog for the showInputDialog methods. Only used if
|
FormView.submitButton.textAndMnemonic=Submit Query
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
FormView.resetButton.textAndMnemonic=Reset
|
||||||
OptionPane.inputDialogTitle=Input
|
FormView.browseFileButton.textAndMnemonic=Browse...
|
||||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
############ Abstract Document Strings ############
|
||||||
OptionPane.messageDialogTitle=Message
|
AbstractDocument.styleChange.textAndMnemonic=style change
|
||||||
|
AbstractDocument.addition.textAndMnemonic=addition
|
||||||
############ Printing Dialog Strings ############
|
AbstractDocument.deletion.textAndMnemonic=deletion
|
||||||
PrintingDialog.titleProgressText=Printing
|
AbstractDocument.undo.textAndMnemonic=Undo
|
||||||
PrintingDialog.titleAbortingText=Printing (Aborting)
|
AbstractDocument.redo.textAndMnemonic=Redo
|
||||||
|
|
||||||
PrintingDialog.contentInitialText=Printing in progress...
|
############ Abstract Button Strings ############
|
||||||
|
AbstractButton.click.textAndMnemonic=click
|
||||||
# The following string will be formatted by a MessageFormat
|
|
||||||
# and {0} will be replaced by page number being printed
|
############ Abstract Undoable Edit Strings ############
|
||||||
PrintingDialog.contentProgressText=Printed page {0}...
|
AbstractUndoableEdit.undo.textAndMnemonic=Undo
|
||||||
|
AbstractUndoableEdit.redo.textAndMnemonic=Redo
|
||||||
PrintingDialog.contentAbortingText=Printing aborting...
|
|
||||||
|
############ Combo Box Strings ############
|
||||||
PrintingDialog.abortButtonText=Abort
|
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||||
PrintingDialog.abortButtonMnemonic=65
|
|
||||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
############ Progress Monitor Strings ############
|
||||||
PrintingDialog.abortButtonToolTipText=Abort Printing
|
ProgressMonitor.progress.textAndMnemonic=Progress...
|
||||||
|
|
||||||
############ Internal Frame Strings ############
|
############ Split Pane Strings ############
|
||||||
InternalFrame.iconButtonToolTip=Minimize
|
SplitPane.leftButton.textAndMnemonic=left button
|
||||||
InternalFrame.maxButtonToolTip=Maximize
|
SplitPane.rightButton.textAndMnemonic=right button
|
||||||
InternalFrame.restoreButtonToolTip=Restore
|
# Used for Isindex
|
||||||
InternalFrame.closeButtonToolTip=Close
|
IsindexView.prompt=This is a searchable index. Enter search keywords:
|
||||||
|
|
||||||
############ Internal Frame Title Pane Strings ############
|
############ InternalFrameTitlePane Strings ############
|
||||||
InternalFrameTitlePane.restoreButtonText=Restore
|
InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify
|
||||||
InternalFrameTitlePane.moveButtonText=Move
|
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximize
|
||||||
InternalFrameTitlePane.sizeButtonText=Size
|
InternalFrameTitlePane.closeButtonAccessibleName=Close
|
||||||
InternalFrameTitlePane.minimizeButtonText=Minimize
|
|
||||||
InternalFrameTitlePane.maximizeButtonText=Maximize
|
|
||||||
InternalFrameTitlePane.closeButtonText=Close
|
|
||||||
|
|
||||||
############ Text strings #############
|
|
||||||
# Used for html forms
|
|
||||||
FormView.submitButtonText=Submit Query
|
|
||||||
FormView.resetButtonText=Reset
|
|
||||||
FormView.browseFileButtonText=Browse...
|
|
||||||
|
|
||||||
############ Abstract Document Strings ############
|
|
||||||
AbstractDocument.styleChangeText=style change
|
|
||||||
AbstractDocument.additionText=addition
|
|
||||||
AbstractDocument.deletionText=deletion
|
|
||||||
AbstractDocument.undoText=Undo
|
|
||||||
AbstractDocument.redoText=Redo
|
|
||||||
|
|
||||||
############ Abstract Button Strings ############
|
|
||||||
AbstractButton.clickText=click
|
|
||||||
|
|
||||||
############ Abstract Undoable Edit Strings ############
|
|
||||||
AbstractUndoableEdit.undoText=Undo
|
|
||||||
AbstractUndoableEdit.redoText=Redo
|
|
||||||
|
|
||||||
############ Combo Box Strings ############
|
|
||||||
ComboBox.togglePopupText=togglePopup
|
|
||||||
|
|
||||||
############ Progress Monitor Strings ############
|
|
||||||
ProgressMonitor.progressText=Progress...
|
|
||||||
|
|
||||||
############ Split Pane Strings ############
|
|
||||||
SplitPane.leftButtonText=left button
|
|
||||||
SplitPane.rightButtonText=right button
|
|
||||||
# Used for Isindex
|
|
||||||
IsindexView.prompt=This is a searchable index. Enter search keywords:
|
|
||||||
|
|
||||||
############ InternalFrameTitlePane Strings ############
|
|
||||||
InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify
|
|
||||||
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximize
|
|
||||||
InternalFrameTitlePane.closeButtonAccessibleName=Close
|
|
||||||
|
@ -1,229 +1,187 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used in Swing
|
# It contains Locale specific strings used in Swing
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# ColorChooser
|
# ColorChooser
|
||||||
# FileChooser
|
# FileChooser
|
||||||
# OptionPane
|
# OptionPane
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# MNEMONIC NOTE:
|
# MNEMONIC NOTE:
|
||||||
# Many of strings in this file are used by widgets that have a
|
# Many of strings in this file are used by widgets that have a
|
||||||
# mnemonic, for example:
|
# mnemonic, for example:
|
||||||
# ColorChooser.rgbNameText=RGB
|
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||||
# ColorChooser.rgbMnemonic=71
|
#
|
||||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
# a decoration will be provided under the 'G'. This will typically
|
||||||
# a decoration will be provided under the 'G'. This will typically
|
# look like: RGB
|
||||||
# look like: RGB
|
# -
|
||||||
# -
|
#
|
||||||
# 71 corresponds to the decimal value of the VK constant defined
|
# One important thing to remember is that the mnemonic MUST exist in
|
||||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
# the String, if it does not exist you should add text that makes it
|
||||||
#
|
# exist. This will typically take the form 'XXXX (M)' where M is the
|
||||||
# public static final int VK_G = 0x47;
|
# character for the mnemonic.
|
||||||
#
|
#
|
||||||
# 0x47 is a hex number and needs to be converted to decimal.
|
# @author Steve Wilson
|
||||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
|
||||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
############ FILE CHOOSER STRINGS #############
|
||||||
# for 'a' is 65, 'b' is 66...
|
FileChooser.fileDescription.textAndMnemonic=Allgemeine Datei
|
||||||
#
|
FileChooser.directoryDescription.textAndMnemonic=Verzeichnis
|
||||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
FileChooser.newFolderError.textAndMnemonic=Fehler beim Erstellen eines neuen Ordners
|
||||||
# character that should be underlined in the String, with 0
|
FileChooser.newFolderErrorSeparator= :
|
||||||
# corresponding to the first character in the String.
|
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Ordner kann nicht erstellt werden
|
||||||
#
|
FileChooser.newFolderParentDoesntExist.textAndMnemonic=Ordner kann nicht erstellt werden.\n\nSystem kann den angegebenen Pfad nicht finden.
|
||||||
# One important thing to remember is that the mnemonic MUST exist in
|
FileChooser.renameErrorTitle.textAndMnemonic=Fehler beim Umbenennen von Datei oder Ordner
|
||||||
# the String, if it does not exist you should add text that makes it
|
FileChooser.renameError.textAndMnemonic={0} kann nicht umbenannt werden
|
||||||
# exist. This will typically take the form 'XXXX (M)' where M is the
|
FileChooser.renameErrorFileExists.textAndMnemonic={0} kann nicht umbenannt werden: Es ist bereits eine Datei mit dem angegebenen Namen vorhanden. Geben Sie einen anderen Dateinamen an.
|
||||||
# character for the mnemonic.
|
FileChooser.acceptAllFileFilter.textAndMnemonic=Alle Dateien
|
||||||
#
|
FileChooser.cancelButton.textAndMnemonic=&Abbrechen
|
||||||
# @author Steve Wilson
|
FileChooser.saveButton.textAndMnemonic=&Speichern
|
||||||
|
FileChooser.openButton.textAndMnemonic=\u00D6ffnen(&F)
|
||||||
############ FILE CHOOSER STRINGS #############
|
FileChooser.saveDialogTitle.textAndMnemonic=Speichern
|
||||||
FileChooser.fileDescriptionText=Allgemeine Datei
|
FileChooser.openDialogTitle.textAndMnemonic=\u00D6ffnen
|
||||||
FileChooser.directoryDescriptionText=Verzeichnis
|
FileChooser.updateButton.textAndMnemonic=A&ktualisieren
|
||||||
FileChooser.newFolderErrorText=Fehler beim Erstellen eines neuen Ordners
|
FileChooser.helpButton.textAndMnemonic=&Hilfe
|
||||||
FileChooser.newFolderErrorSeparator= :
|
FileChooser.directoryOpenButton.textAndMnemonic=\u00D6ffnen(&F)
|
||||||
FileChooser.newFolderParentDoesntExistTitleText=Ordner kann nicht erstellt werden
|
|
||||||
FileChooser.newFolderParentDoesntExistText=Ordner kann nicht erstellt werden.\n\nSystem kann den angegebenen Pfad nicht finden.
|
# File Size Units
|
||||||
FileChooser.renameErrorTitleText=Fehler beim Umbenennen von Datei oder Ordner
|
FileChooser.fileSizeKiloBytes={0} KB
|
||||||
FileChooser.renameErrorText={0} kann nicht umbenannt werden
|
FileChooser.fileSizeMegaBytes={0} MB
|
||||||
FileChooser.renameErrorFileExistsText={0} kann nicht umbenannt werden: Es ist bereits eine Datei mit dem angegebenen Namen vorhanden. Geben Sie einen anderen Dateinamen an.
|
FileChooser.fileSizeGigaBytes={0} GB
|
||||||
FileChooser.acceptAllFileFilterText=Alle Dateien
|
|
||||||
FileChooser.cancelButtonText=Abbrechen
|
# These strings are platform dependent not look and feel dependent.
|
||||||
FileChooser.cancelButtonMnemonic=65
|
FileChooser.win32.newFolder=Neuer Ordner
|
||||||
FileChooser.saveButtonText=Speichern
|
FileChooser.win32.newFolder.subsequent=Neuer Ordner ({0})
|
||||||
FileChooser.saveButtonMnemonic=83
|
FileChooser.other.newFolder=NewFolder
|
||||||
FileChooser.openButtonText=\u00D6ffnen
|
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||||
FileChooser.openButtonMnemonic=70
|
|
||||||
FileChooser.saveDialogTitleText=Speichern
|
|
||||||
FileChooser.openDialogTitleText=\u00D6ffnen
|
## file chooser tooltips ###
|
||||||
FileChooser.updateButtonText=Aktualisieren
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen
|
||||||
FileChooser.updateButtonMnemonic=75
|
FileChooser.saveButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei speichern
|
||||||
FileChooser.helpButtonText=Hilfe
|
FileChooser.openButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei \u00F6ffnen
|
||||||
FileChooser.helpButtonMnemonic=72
|
FileChooser.updateButtonToolTip.textAndMnemonic=Verzeichnisliste aktualisieren
|
||||||
FileChooser.directoryOpenButtonText=\u00D6ffnen
|
FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser-Hilfe
|
||||||
FileChooser.directoryOpenButtonMnemonic=70
|
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Ausgew\u00E4hltes Verzeichnis \u00F6ffnen
|
||||||
|
|
||||||
# File Size Units
|
FileChooser.filesListAccessibleName=Files List
|
||||||
FileChooser.fileSizeKiloBytes={0} KB
|
FileChooser.filesDetailsAccessibleName=Files Details
|
||||||
FileChooser.fileSizeMegaBytes={0} MB
|
|
||||||
FileChooser.fileSizeGigaBytes={0} GB
|
############ COLOR CHOOSER STRINGS #############
|
||||||
|
ColorChooser.preview.textAndMnemonic=Vorschau
|
||||||
# These strings are platform dependent not look and feel dependent.
|
ColorChooser.ok.textAndMnemonic=OK
|
||||||
FileChooser.win32.newFolder=Neuer Ordner
|
ColorChooser.cancel.textAndMnemonic=Abbrechen
|
||||||
FileChooser.win32.newFolder.subsequent=Neuer Ordner ({0})
|
ColorChooser.reset.textAndMnemonic=Zur\u00FCcksetzen(&Z)
|
||||||
FileChooser.other.newFolder=NewFolder
|
ColorChooser.sample.textAndMnemonic=Beispieltext Beispieltext
|
||||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
ColorChooser.swatches.textAndMnemonic=&Swatches
|
||||||
|
ColorChooser.swatchesRecent.textAndMnemonic=Aktuell:
|
||||||
|
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||||
## file chooser tooltips ###
|
ColorChooser.hsvHue.textAndMnemonic=Farbton
|
||||||
FileChooser.cancelButtonToolTipText=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen
|
ColorChooser.hsvSaturation.textAndMnemonic=S\u00E4ttigung
|
||||||
FileChooser.saveButtonToolTipText=Ausgew\u00E4hlte Datei speichern
|
ColorChooser.hsvValue.textAndMnemonic=Wert
|
||||||
FileChooser.openButtonToolTipText=Ausgew\u00E4hlte Datei \u00F6ffnen
|
ColorChooser.hsvTransparency.textAndMnemonic=Transparenz
|
||||||
FileChooser.updateButtonToolTipText=Verzeichnisliste aktualisieren
|
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||||
FileChooser.helpButtonToolTipText=FileChooser-Hilfe
|
ColorChooser.hslHue.textAndMnemonic=Farbton
|
||||||
FileChooser.directoryOpenButtonToolTipText=Ausgew\u00E4hltes Verzeichnis \u00F6ffnen
|
ColorChooser.hslSaturation.textAndMnemonic=S\u00E4ttigung
|
||||||
|
ColorChooser.hslLightness.textAndMnemonic=Helligkeit
|
||||||
FileChooser.filesListAccessibleName=Files List
|
ColorChooser.hslTransparency.textAndMnemonic=Transparenz
|
||||||
FileChooser.filesDetailsAccessibleName=Files Details
|
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||||
|
ColorChooser.rgbRed.textAndMnemonic=Ro&t
|
||||||
############ COLOR CHOOSER STRINGS #############
|
ColorChooser.rgbGreen.textAndMnemonic=Gr\u00FCn(&N)
|
||||||
ColorChooser.previewText=Vorschau
|
ColorChooser.rgbBlue.textAndMnemonic=&Blau
|
||||||
ColorChooser.okText=OK
|
ColorChooser.rgbAlpha.textAndMnemonic=Alpha
|
||||||
ColorChooser.cancelText=Abbrechen
|
ColorChooser.rgbHexCode.textAndMnemonic=&Farbcode
|
||||||
ColorChooser.resetText=Zur\u00FCcksetzen
|
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
ColorChooser.cmykCyan.textAndMnemonic=Zyan
|
||||||
ColorChooser.resetMnemonic=90
|
ColorChooser.cmykMagenta.textAndMnemonic=Magenta
|
||||||
ColorChooser.sampleText=Beispieltext Beispieltext
|
ColorChooser.cmykYellow.textAndMnemonic=Gelb
|
||||||
ColorChooser.swatchesNameText=Swatches
|
ColorChooser.cmykBlack.textAndMnemonic=Schwarz
|
||||||
ColorChooser.swatchesMnemonic=83
|
ColorChooser.cmykAlpha.textAndMnemonic=Alpha
|
||||||
ColorChooser.swatchesRecentText=Aktuell:
|
|
||||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
############ OPTION PANE STRINGS #############
|
||||||
# constant, and an index into the text to render the mnemonic as. The
|
# We only define mnemonics for YES/NO, but for completeness you can
|
||||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
# define mnemonics for any of the buttons.
|
||||||
# xxxDisplayedMnemonicIndex.
|
OptionPane.yesButton.textAndMnemonic=&Ja
|
||||||
ColorChooser.hsvNameText=HSV
|
OptionPane.noButton.textAndMnemonic=&Nein
|
||||||
ColorChooser.hsvMnemonic=72
|
OptionPane.okButton.textAndMnemonic=&OK
|
||||||
ColorChooser.hsvHueText=Farbton
|
OptionPane.cancelButton.textAndMnemonic=&Abbrechen
|
||||||
ColorChooser.hsvSaturationText=S\u00E4ttigung
|
OptionPane.title.textAndMnemonic=Option ausw\u00E4hlen
|
||||||
ColorChooser.hsvValueText=Wert
|
# Title for the dialog for the showInputDialog methods. Only used if
|
||||||
ColorChooser.hsvTransparencyText=Transparenz
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hslNameText=HSL
|
OptionPane.inputDialog.titleAndMnemonic=Eingabe
|
||||||
ColorChooser.hslMnemonic=76
|
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||||
ColorChooser.hslHueText=Farbton
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hslSaturationText=S\u00E4ttigung
|
OptionPane.messageDialog.titleAndMnemonic=Meldung
|
||||||
ColorChooser.hslLightnessText=Helligkeit
|
|
||||||
ColorChooser.hslTransparencyText=Transparenz
|
############ Printing Dialog Strings ############
|
||||||
ColorChooser.rgbNameText=RGB
|
PrintingDialog.titleProgress.textAndMnemonic=Drucken
|
||||||
ColorChooser.rgbMnemonic=71
|
PrintingDialog.titleAborting.textAndMnemonic=Drucken (Abbruch)
|
||||||
ColorChooser.rgbRedText=Rot
|
|
||||||
ColorChooser.rgbRedMnemonic=84
|
PrintingDialog.contentInitial.textAndMnemonic=Druckvorgang l\u00E4uft...
|
||||||
ColorChooser.rgbGreenText=Gr\u00FCn
|
|
||||||
ColorChooser.rgbGreenMnemonic=78
|
# The following string will be formatted by a MessageFormat
|
||||||
ColorChooser.rgbBlueText=Blau
|
# and {0} will be replaced by page number being printed
|
||||||
ColorChooser.rgbBlueMnemonic=66
|
PrintingDialog.contentProgress.textAndMnemonic=Seite {0} wurde gedruckt...
|
||||||
ColorChooser.rgbAlphaText=Alpha
|
|
||||||
ColorChooser.rgbHexCodeText=Farbcode
|
PrintingDialog.contentAborting.textAndMnemonic=Druckvorgang wird abgebrochen...
|
||||||
ColorChooser.rgbHexCodeMnemonic=70
|
|
||||||
ColorChooser.cmykNameText=CMYK
|
PrintingDialog.abortButton.textAndMnemonic=&Abbruch
|
||||||
ColorChooser.cmykMnemonic=77
|
PrintingDialog.abortButtonToolTip.textAndMnemonic=Druckvorgang abbrechen
|
||||||
ColorChooser.cmykCyanText=Zyan
|
|
||||||
ColorChooser.cmykMagentaText=Magenta
|
############ Internal Frame Strings ############
|
||||||
ColorChooser.cmykYellowText=Gelb
|
InternalFrame.iconButtonToolTip=Minimieren
|
||||||
ColorChooser.cmykBlackText=Schwarz
|
InternalFrame.maxButtonToolTip=Maximieren
|
||||||
ColorChooser.cmykAlphaText=Alpha
|
InternalFrame.restoreButtonToolTip=Wiederherstellen
|
||||||
|
InternalFrame.closeButtonToolTip=Schlie\u00DFen
|
||||||
############ OPTION PANE STRINGS #############
|
|
||||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
############ Internal Frame Title Pane Strings ############
|
||||||
# We only define mnemonics for YES/NO, but for completeness you can
|
InternalFrameTitlePane.restoreButton.textAndMnemonic=Wiederherstellen
|
||||||
# define mnemonics for any of the buttons.
|
InternalFrameTitlePane.moveButton.textAndMnemonic=Verschieben
|
||||||
OptionPane.yesButtonText=Ja
|
InternalFrameTitlePane.sizeButton.textAndMnemonic=Gr\u00F6\u00DFe
|
||||||
OptionPane.yesButtonMnemonic=74
|
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimieren
|
||||||
OptionPane.noButtonText=Nein
|
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximieren
|
||||||
OptionPane.noButtonMnemonic=78
|
InternalFrameTitlePane.closeButton.textAndMnemonic=Schlie\u00DFen
|
||||||
OptionPane.okButtonText=OK
|
|
||||||
OptionPane.okButtonMnemonic=O
|
############ Text strings #############
|
||||||
OptionPane.cancelButtonText=Abbrechen
|
# Used for html forms
|
||||||
OptionPane.cancelButtonMnemonic=A
|
FormView.submitButton.textAndMnemonic=Abfrage weiterleiten
|
||||||
OptionPane.titleText=Option ausw\u00E4hlen
|
FormView.resetButton.textAndMnemonic=Zur\u00FCcksetzen
|
||||||
# Title for the dialog for the showInputDialog methods. Only used if
|
FormView.browseFileButton.textAndMnemonic=Durchsuchen...
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
|
||||||
OptionPane.inputDialogTitle=Eingabe
|
############ Abstract Document Strings ############
|
||||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
AbstractDocument.styleChange.textAndMnemonic=Formatvorlagen\u00E4nderung
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
AbstractDocument.addition.textAndMnemonic=Hinzuf\u00FCgen
|
||||||
OptionPane.messageDialogTitle=Meldung
|
AbstractDocument.deletion.textAndMnemonic=L\u00F6schen
|
||||||
|
AbstractDocument.undo.textAndMnemonic=R\u00FCckg\u00E4ngig
|
||||||
############ Printing Dialog Strings ############
|
AbstractDocument.redo.textAndMnemonic=Wiederherstellen
|
||||||
PrintingDialog.titleProgressText=Drucken
|
|
||||||
PrintingDialog.titleAbortingText=Drucken (Abbruch)
|
############ Abstract Button Strings ############
|
||||||
|
AbstractButton.click.textAndMnemonic=Klicken
|
||||||
PrintingDialog.contentInitialText=Druckvorgang l\u00E4uft...
|
|
||||||
|
############ Abstract Undoable Edit Strings ############
|
||||||
# The following string will be formatted by a MessageFormat
|
AbstractUndoableEdit.undo.textAndMnemonic=R\u00FCckg\u00E4ngig
|
||||||
# and {0} will be replaced by page number being printed
|
AbstractUndoableEdit.redo.textAndMnemonic=Wiederherstellen
|
||||||
PrintingDialog.contentProgressText=Seite {0} wurde gedruckt...
|
|
||||||
|
############ Combo Box Strings ############
|
||||||
PrintingDialog.contentAbortingText=Druckvorgang wird abgebrochen...
|
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||||
|
|
||||||
PrintingDialog.abortButtonText=Abbruch
|
############ Progress Monitor Strings ############
|
||||||
PrintingDialog.abortButtonMnemonic=65
|
ProgressMonitor.progress.textAndMnemonic=Fortschritt...
|
||||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
|
||||||
PrintingDialog.abortButtonToolTipText=Druckvorgang abbrechen
|
############ Split Pane Strings ############
|
||||||
|
SplitPane.leftButton.textAndMnemonic=linke Schaltfl\u00E4che
|
||||||
############ Internal Frame Strings ############
|
SplitPane.rightButton.textAndMnemonic=rechte Schaltfl\u00E4che
|
||||||
InternalFrame.iconButtonToolTip=Minimieren
|
# Used for Isindex
|
||||||
InternalFrame.maxButtonToolTip=Maximieren
|
IsindexView.prompt=Dieser Index kann durchsucht werden. Geben Sie Schl\u00FCsselw\u00F6rter f\u00FCr die Suche ein:
|
||||||
InternalFrame.restoreButtonToolTip=Wiederherstellen
|
|
||||||
InternalFrame.closeButtonToolTip=Schlie\u00DFen
|
############ InternalFrameTitlePane Strings ############
|
||||||
|
InternalFrameTitlePane.iconifyButtonAccessibleName=Als Symbol darstellen
|
||||||
############ Internal Frame Title Pane Strings ############
|
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximieren
|
||||||
InternalFrameTitlePane.restoreButtonText=Wiederherstellen
|
InternalFrameTitlePane.closeButtonAccessibleName=Schlie\u00DFen
|
||||||
InternalFrameTitlePane.moveButtonText=Verschieben
|
|
||||||
InternalFrameTitlePane.sizeButtonText=Gr\u00F6\u00DFe
|
|
||||||
InternalFrameTitlePane.minimizeButtonText=Minimieren
|
|
||||||
InternalFrameTitlePane.maximizeButtonText=Maximieren
|
|
||||||
InternalFrameTitlePane.closeButtonText=Schlie\u00DFen
|
|
||||||
|
|
||||||
############ Text strings #############
|
|
||||||
# Used for html forms
|
|
||||||
FormView.submitButtonText=Abfrage weiterleiten
|
|
||||||
FormView.resetButtonText=Zur\u00FCcksetzen
|
|
||||||
FormView.browseFileButtonText=Durchsuchen...
|
|
||||||
|
|
||||||
############ Abstract Document Strings ############
|
|
||||||
AbstractDocument.styleChangeText=Formatvorlagen\u00E4nderung
|
|
||||||
AbstractDocument.additionText=Hinzuf\u00FCgen
|
|
||||||
AbstractDocument.deletionText=L\u00F6schen
|
|
||||||
AbstractDocument.undoText=R\u00FCckg\u00E4ngig
|
|
||||||
AbstractDocument.redoText=Wiederherstellen
|
|
||||||
|
|
||||||
############ Abstract Button Strings ############
|
|
||||||
AbstractButton.clickText=Klicken
|
|
||||||
|
|
||||||
############ Abstract Undoable Edit Strings ############
|
|
||||||
AbstractUndoableEdit.undoText=R\u00FCckg\u00E4ngig
|
|
||||||
AbstractUndoableEdit.redoText=Wiederherstellen
|
|
||||||
|
|
||||||
############ Combo Box Strings ############
|
|
||||||
ComboBox.togglePopupText=togglePopup
|
|
||||||
|
|
||||||
############ Progress Monitor Strings ############
|
|
||||||
ProgressMonitor.progressText=Fortschritt...
|
|
||||||
|
|
||||||
############ Split Pane Strings ############
|
|
||||||
SplitPane.leftButtonText=linke Schaltfl\u00E4che
|
|
||||||
SplitPane.rightButtonText=rechte Schaltfl\u00E4che
|
|
||||||
# Used for Isindex
|
|
||||||
IsindexView.prompt=Dieser Index kann durchsucht werden. Geben Sie Schl\u00FCsselw\u00F6rter f\u00FCr die Suche ein:
|
|
||||||
|
|
||||||
############ InternalFrameTitlePane Strings ############
|
|
||||||
InternalFrameTitlePane.iconifyButtonAccessibleName=Als Symbol darstellen
|
|
||||||
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximieren
|
|
||||||
InternalFrameTitlePane.closeButtonAccessibleName=Schlie\u00DFen
|
|
||||||
|
|
||||||
|
@ -1,229 +1,186 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used in Swing
|
# It contains Locale specific strings used in Swing
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# ColorChooser
|
# ColorChooser
|
||||||
# FileChooser
|
# FileChooser
|
||||||
# OptionPane
|
# OptionPane
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# MNEMONIC NOTE:
|
# MNEMONIC NOTE:
|
||||||
# Many of strings in this file are used by widgets that have a
|
# Many of strings in this file are used by widgets that have a
|
||||||
# mnemonic, for example:
|
# mnemonic, for example:
|
||||||
# ColorChooser.rgbNameText=RGB
|
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||||
# ColorChooser.rgbMnemonic=71
|
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
# a decoration will be provided under the 'G'. This will typically
|
||||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
# look like: RGB
|
||||||
# a decoration will be provided under the 'G'. This will typically
|
# -
|
||||||
# look like: RGB
|
#
|
||||||
# -
|
# One important thing to remember is that the mnemonic MUST exist in
|
||||||
# 71 corresponds to the decimal value of the VK constant defined
|
# the String, if it does not exist you should add text that makes it
|
||||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
# exist. This will typically take the form 'XXXX (M)' where M is the
|
||||||
#
|
# character for the mnemonic.
|
||||||
# public static final int VK_G = 0x47;
|
#
|
||||||
#
|
# @author Steve Wilson
|
||||||
# 0x47 is a hex number and needs to be converted to decimal.
|
|
||||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
############ FILE CHOOSER STRINGS #############
|
||||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
FileChooser.fileDescription.textAndMnemonic=Archivo Gen\u00E9rico
|
||||||
# for 'a' is 65, 'b' is 66...
|
FileChooser.directoryDescription.textAndMnemonic=Directorio
|
||||||
#
|
FileChooser.newFolderError.textAndMnemonic=Error al crear una nueva carpeta
|
||||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
FileChooser.newFolderErrorSeparator= :
|
||||||
# character that should be underlined in the String, with 0
|
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=No se ha podido crear la carpeta
|
||||||
# corresponding to the first character in the String.
|
FileChooser.newFolderParentDoesntExist.textAndMnemonic=No se ha podido crear la carpeta.\n\nEl sistema no puede encontrar la ruta de acceso especificada.
|
||||||
#
|
FileChooser.renameErrorTitle.textAndMnemonic=Error al cambiar el nombre del archivo o carpeta
|
||||||
# One important thing to remember is that the mnemonic MUST exist in
|
FileChooser.renameError.textAndMnemonic=No se puede cambiar el nombre de {0}
|
||||||
# the String, if it does not exist you should add text that makes it
|
FileChooser.renameErrorFileExists.textAndMnemonic=No se puede cambiar el nombre de {0}: ya existe un archivo con el nombre especificado. Especifique otro nombre de archivo.
|
||||||
# exist. This will typically take the form 'XXXX (M)' where M is the
|
FileChooser.acceptAllFileFilter.textAndMnemonic=Todos los Archivos
|
||||||
# character for the mnemonic.
|
FileChooser.cancelButton.textAndMnemonic=&Cancelar
|
||||||
#
|
FileChooser.saveButton.textAndMnemonic=&Guardar
|
||||||
# @author Steve Wilson
|
FileChooser.openButton.textAndMnemonic=A&brir
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=Guardar
|
||||||
############ FILE CHOOSER STRINGS #############
|
FileChooser.openDialogTitle.textAndMnemonic=Abrir
|
||||||
FileChooser.fileDescriptionText=Archivo Gen\u00E9rico
|
FileChooser.updateButton.textAndMnemonic=Act&ualizar
|
||||||
FileChooser.directoryDescriptionText=Directorio
|
FileChooser.helpButton.textAndMnemonic=A&yuda
|
||||||
FileChooser.newFolderErrorText=Error al crear una nueva carpeta
|
FileChooser.directoryOpenButton.textAndMnemonic=&Abrir
|
||||||
FileChooser.newFolderErrorSeparator= :
|
|
||||||
FileChooser.newFolderParentDoesntExistTitleText=No se ha podido crear la carpeta
|
# File Size Units
|
||||||
FileChooser.newFolderParentDoesntExistText=No se ha podido crear la carpeta.\n\nEl sistema no puede encontrar la ruta de acceso especificada.
|
FileChooser.fileSizeKiloBytes={0} KB
|
||||||
FileChooser.renameErrorTitleText=Error al cambiar el nombre del archivo o carpeta
|
FileChooser.fileSizeMegaBytes={0} MB
|
||||||
FileChooser.renameErrorText=No se puede cambiar el nombre de {0}
|
FileChooser.fileSizeGigaBytes={0} GB
|
||||||
FileChooser.renameErrorFileExistsText=No se puede cambiar el nombre de {0}: ya existe un archivo con el nombre especificado. Especifique otro nombre de archivo.
|
|
||||||
FileChooser.acceptAllFileFilterText=Todos los Archivos
|
# These strings are platform dependent not look and feel dependent.
|
||||||
FileChooser.cancelButtonText=Cancelar
|
FileChooser.win32.newFolder=Nueva Carpeta
|
||||||
FileChooser.cancelButtonMnemonic=67
|
FileChooser.win32.newFolder.subsequent=Nueva Carpeta ({0})
|
||||||
FileChooser.saveButtonText=Guardar
|
FileChooser.other.newFolder=Nueva Carpeta
|
||||||
FileChooser.saveButtonMnemonic=71
|
FileChooser.other.newFolder.subsequent=Nueva Carpeta.{0}
|
||||||
FileChooser.openButtonText=Abrir
|
|
||||||
FileChooser.openButtonMnemonic=66
|
|
||||||
FileChooser.saveDialogTitleText=Guardar
|
## file chooser tooltips ###
|
||||||
FileChooser.openDialogTitleText=Abrir
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Cuadro de di\u00E1logo para abortar el selector de archivos
|
||||||
FileChooser.updateButtonText=Actualizar
|
FileChooser.saveButtonToolTip.textAndMnemonic=Guardar archivo seleccionado
|
||||||
FileChooser.updateButtonMnemonic=85
|
FileChooser.openButtonToolTip.textAndMnemonic=Abrir archivo seleccionado
|
||||||
FileChooser.helpButtonText=Ayuda
|
FileChooser.updateButtonToolTip.textAndMnemonic=Actualizar lista de directorios
|
||||||
FileChooser.helpButtonMnemonic=89
|
FileChooser.helpButtonToolTip.textAndMnemonic=Ayuda del Selector de Archivos
|
||||||
FileChooser.directoryOpenButtonText=Abrir
|
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Abrir directorio seleccionado
|
||||||
FileChooser.directoryOpenButtonMnemonic=65
|
|
||||||
|
FileChooser.filesListAccessibleName=Files List
|
||||||
# File Size Units
|
FileChooser.filesDetailsAccessibleName=Files Details
|
||||||
FileChooser.fileSizeKiloBytes={0} KB
|
|
||||||
FileChooser.fileSizeMegaBytes={0} MB
|
############ COLOR CHOOSER STRINGS #############
|
||||||
FileChooser.fileSizeGigaBytes={0} GB
|
ColorChooser.preview.textAndMnemonic=Presentaci\u00F3n Preliminar
|
||||||
|
ColorChooser.ok.textAndMnemonic=Aceptar
|
||||||
# These strings are platform dependent not look and feel dependent.
|
ColorChooser.cancel.textAndMnemonic=Cancelar
|
||||||
FileChooser.win32.newFolder=Nueva Carpeta
|
ColorChooser.reset.textAndMnemonic=&Restablecer
|
||||||
FileChooser.win32.newFolder.subsequent=Nueva Carpeta ({0})
|
ColorChooser.sample.textAndMnemonic=Texto de Ejemplo Texto de Ejemplo
|
||||||
FileChooser.other.newFolder=Nueva Carpeta
|
ColorChooser.swatches.textAndMnemonic=Mue&stras
|
||||||
FileChooser.other.newFolder.subsequent=Nueva Carpeta.{0}
|
ColorChooser.swatchesRecent.textAndMnemonic=Reciente:
|
||||||
|
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||||
|
ColorChooser.hsvHue.textAndMnemonic=Matiz
|
||||||
## file chooser tooltips ###
|
ColorChooser.hsvSaturation.textAndMnemonic=Saturaci\u00F3n
|
||||||
FileChooser.cancelButtonToolTipText=Cuadro de di\u00E1logo para abortar el selector de archivos
|
ColorChooser.hsvValue.textAndMnemonic=Valor
|
||||||
FileChooser.saveButtonToolTipText=Guardar archivo seleccionado
|
ColorChooser.hsvTransparency.textAndMnemonic=Transparencia
|
||||||
FileChooser.openButtonToolTipText=Abrir archivo seleccionado
|
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||||
FileChooser.updateButtonToolTipText=Actualizar lista de directorios
|
ColorChooser.hslHue.textAndMnemonic=Matiz
|
||||||
FileChooser.helpButtonToolTipText=Ayuda del Selector de Archivos
|
ColorChooser.hslSaturation.textAndMnemonic=Saturaci\u00F3n
|
||||||
FileChooser.directoryOpenButtonToolTipText=Abrir directorio seleccionado
|
ColorChooser.hslLightness.textAndMnemonic=Iluminaci\u00F3n
|
||||||
|
ColorChooser.hslTransparency.textAndMnemonic=Transparencia
|
||||||
FileChooser.filesListAccessibleName=Files List
|
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||||
FileChooser.filesDetailsAccessibleName=Files Details
|
ColorChooser.rgbRed.textAndMnemonic=Ro&jo
|
||||||
|
ColorChooser.rgbGreen.textAndMnemonic=&Verde
|
||||||
############ COLOR CHOOSER STRINGS #############
|
ColorChooser.rgbBlue.textAndMnemonic=A&zul
|
||||||
ColorChooser.previewText=Presentaci\u00F3n Preliminar
|
ColorChooser.rgbAlpha.textAndMnemonic=Alfa
|
||||||
ColorChooser.okText=Aceptar
|
ColorChooser.rgbHexCode.textAndMnemonic=C\u00F3digo de Color(&C)
|
||||||
ColorChooser.cancelText=Cancelar
|
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||||
ColorChooser.resetText=Restablecer
|
ColorChooser.cmykCyan.textAndMnemonic=Cian
|
||||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
ColorChooser.cmykMagenta.textAndMnemonic=Magenta
|
||||||
ColorChooser.resetMnemonic=82
|
ColorChooser.cmykYellow.textAndMnemonic=Amarillo
|
||||||
ColorChooser.sampleText=Texto de Ejemplo Texto de Ejemplo
|
ColorChooser.cmykBlack.textAndMnemonic=Negro
|
||||||
ColorChooser.swatchesNameText=Muestras
|
ColorChooser.cmykAlpha.textAndMnemonic=Alfa
|
||||||
ColorChooser.swatchesMnemonic=83
|
|
||||||
ColorChooser.swatchesRecentText=Reciente:
|
############ OPTION PANE STRINGS #############
|
||||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
# We only define mnemonics for YES/NO, but for completeness you can
|
||||||
# constant, and an index into the text to render the mnemonic as. The
|
# define mnemonics for any of the buttons.
|
||||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
OptionPane.yesButton.textAndMnemonic=S\u00ED(&S)
|
||||||
# xxxDisplayedMnemonicIndex.
|
OptionPane.noButton.textAndMnemonic=&No
|
||||||
ColorChooser.hsvNameText=HSV
|
OptionPane.okButton.textAndMnemonic=Aceptar(&O)
|
||||||
ColorChooser.hsvMnemonic=72
|
OptionPane.cancelButton.textAndMnemonic=&Cancelar
|
||||||
ColorChooser.hsvHueText=Matiz
|
OptionPane.title.textAndMnemonic=Seleccionar una Opci\u00F3n
|
||||||
ColorChooser.hsvSaturationText=Saturaci\u00F3n
|
# Title for the dialog for the showInputDialog methods. Only used if
|
||||||
ColorChooser.hsvValueText=Valor
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hsvTransparencyText=Transparencia
|
OptionPane.inputDialog.titleAndMnemonic=Entrada
|
||||||
ColorChooser.hslNameText=HSL
|
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||||
ColorChooser.hslMnemonic=76
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hslHueText=Matiz
|
OptionPane.messageDialog.titleAndMnemonic=Mensaje
|
||||||
ColorChooser.hslSaturationText=Saturaci\u00F3n
|
|
||||||
ColorChooser.hslLightnessText=Iluminaci\u00F3n
|
############ Printing Dialog Strings ############
|
||||||
ColorChooser.hslTransparencyText=Transparencia
|
PrintingDialog.titleProgress.textAndMnemonic=Impresi\u00F3n
|
||||||
ColorChooser.rgbNameText=RGB
|
PrintingDialog.titleAborting.textAndMnemonic=Impresi\u00F3n (Abortando)
|
||||||
ColorChooser.rgbMnemonic=71
|
|
||||||
ColorChooser.rgbRedText=Rojo
|
PrintingDialog.contentInitial.textAndMnemonic=Impresi\u00F3n en curso...
|
||||||
ColorChooser.rgbRedMnemonic=74
|
|
||||||
ColorChooser.rgbGreenText=Verde
|
# The following string will be formatted by a MessageFormat
|
||||||
ColorChooser.rgbGreenMnemonic=86
|
# and {0} will be replaced by page number being printed
|
||||||
ColorChooser.rgbBlueText=Azul
|
PrintingDialog.contentProgress.textAndMnemonic=P\u00E1gina impresa {0}...
|
||||||
ColorChooser.rgbBlueMnemonic=90
|
|
||||||
ColorChooser.rgbAlphaText=Alfa
|
PrintingDialog.contentAborting.textAndMnemonic=Abortando la impresi\u00F3n...
|
||||||
ColorChooser.rgbHexCodeText=C\u00F3digo de Color
|
|
||||||
ColorChooser.rgbHexCodeMnemonic=67
|
PrintingDialog.abortButton.textAndMnemonic=&Abortar
|
||||||
ColorChooser.cmykNameText=CMYK
|
PrintingDialog.abortButtonToolTip.textAndMnemonic=Abortar Impresi\u00F3n
|
||||||
ColorChooser.cmykMnemonic=77
|
|
||||||
ColorChooser.cmykCyanText=Cian
|
############ Internal Frame Strings ############
|
||||||
ColorChooser.cmykMagentaText=Magenta
|
InternalFrame.iconButtonToolTip=Minimizar
|
||||||
ColorChooser.cmykYellowText=Amarillo
|
InternalFrame.maxButtonToolTip=Maximizar
|
||||||
ColorChooser.cmykBlackText=Negro
|
InternalFrame.restoreButtonToolTip=Restaurar
|
||||||
ColorChooser.cmykAlphaText=Alfa
|
InternalFrame.closeButtonToolTip=Cerrar
|
||||||
|
|
||||||
############ OPTION PANE STRINGS #############
|
############ Internal Frame Title Pane Strings ############
|
||||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurar
|
||||||
# We only define mnemonics for YES/NO, but for completeness you can
|
InternalFrameTitlePane.moveButton.textAndMnemonic=Mover
|
||||||
# define mnemonics for any of the buttons.
|
InternalFrameTitlePane.sizeButton.textAndMnemonic=Tama\u00F1o
|
||||||
OptionPane.yesButtonText=S\u00ED
|
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimizar
|
||||||
OptionPane.yesButtonMnemonic=83
|
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximizar
|
||||||
OptionPane.noButtonText=No
|
InternalFrameTitlePane.closeButton.textAndMnemonic=Cerrar
|
||||||
OptionPane.noButtonMnemonic=78
|
|
||||||
OptionPane.okButtonText=Aceptar
|
############ Text strings #############
|
||||||
OptionPane.okButtonMnemonic=O
|
# Used for html forms
|
||||||
OptionPane.cancelButtonText=Cancelar
|
FormView.submitButton.textAndMnemonic=Enviar Consulta
|
||||||
OptionPane.cancelButtonMnemonic=C
|
FormView.resetButton.textAndMnemonic=Restablecer
|
||||||
OptionPane.titleText=Seleccionar una Opci\u00F3n
|
FormView.browseFileButton.textAndMnemonic=Examinar...
|
||||||
# Title for the dialog for the showInputDialog methods. Only used if
|
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
############ Abstract Document Strings ############
|
||||||
OptionPane.inputDialogTitle=Entrada
|
AbstractDocument.styleChange.textAndMnemonic=cambio de estilo
|
||||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
AbstractDocument.addition.textAndMnemonic=agregaci\u00F3n
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
AbstractDocument.deletion.textAndMnemonic=supresi\u00F3n
|
||||||
OptionPane.messageDialogTitle=Mensaje
|
AbstractDocument.undo.textAndMnemonic=Deshacer
|
||||||
|
AbstractDocument.redo.textAndMnemonic=Rehacer
|
||||||
############ Printing Dialog Strings ############
|
|
||||||
PrintingDialog.titleProgressText=Impresi\u00F3n
|
############ Abstract Button Strings ############
|
||||||
PrintingDialog.titleAbortingText=Impresi\u00F3n (Abortando)
|
AbstractButton.click.textAndMnemonic=hacer clic
|
||||||
|
|
||||||
PrintingDialog.contentInitialText=Impresi\u00F3n en curso...
|
############ Abstract Undoable Edit Strings ############
|
||||||
|
AbstractUndoableEdit.undo.textAndMnemonic=Deshacer
|
||||||
# The following string will be formatted by a MessageFormat
|
AbstractUndoableEdit.redo.textAndMnemonic=Rehacer
|
||||||
# and {0} will be replaced by page number being printed
|
|
||||||
PrintingDialog.contentProgressText=P\u00E1gina impresa {0}...
|
############ Combo Box Strings ############
|
||||||
|
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||||
PrintingDialog.contentAbortingText=Abortando la impresi\u00F3n...
|
|
||||||
|
############ Progress Monitor Strings ############
|
||||||
PrintingDialog.abortButtonText=Abortar
|
ProgressMonitor.progress.textAndMnemonic=Progreso...
|
||||||
PrintingDialog.abortButtonMnemonic=65
|
|
||||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
############ Split Pane Strings ############
|
||||||
PrintingDialog.abortButtonToolTipText=Abortar Impresi\u00F3n
|
SplitPane.leftButton.textAndMnemonic=bot\u00F3n izquierdo
|
||||||
|
SplitPane.rightButton.textAndMnemonic=bot\u00F3n derecho
|
||||||
############ Internal Frame Strings ############
|
# Used for Isindex
|
||||||
InternalFrame.iconButtonToolTip=Minimizar
|
IsindexView.prompt=En este \u00EDndice se pueden efectuar b\u00FAsquedas. Escriba las palabras clave de b\u00FAsqueda:
|
||||||
InternalFrame.maxButtonToolTip=Maximizar
|
|
||||||
InternalFrame.restoreButtonToolTip=Restaurar
|
############ InternalFrameTitlePane Strings ############
|
||||||
InternalFrame.closeButtonToolTip=Cerrar
|
InternalFrameTitlePane.iconifyButtonAccessibleName=Convertir en Icono
|
||||||
|
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar
|
||||||
############ Internal Frame Title Pane Strings ############
|
InternalFrameTitlePane.closeButtonAccessibleName=Cerrar
|
||||||
InternalFrameTitlePane.restoreButtonText=Restaurar
|
|
||||||
InternalFrameTitlePane.moveButtonText=Mover
|
|
||||||
InternalFrameTitlePane.sizeButtonText=Tama\u00F1o
|
|
||||||
InternalFrameTitlePane.minimizeButtonText=Minimizar
|
|
||||||
InternalFrameTitlePane.maximizeButtonText=Maximizar
|
|
||||||
InternalFrameTitlePane.closeButtonText=Cerrar
|
|
||||||
|
|
||||||
############ Text strings #############
|
|
||||||
# Used for html forms
|
|
||||||
FormView.submitButtonText=Enviar Consulta
|
|
||||||
FormView.resetButtonText=Restablecer
|
|
||||||
FormView.browseFileButtonText=Examinar...
|
|
||||||
|
|
||||||
############ Abstract Document Strings ############
|
|
||||||
AbstractDocument.styleChangeText=cambio de estilo
|
|
||||||
AbstractDocument.additionText=agregaci\u00F3n
|
|
||||||
AbstractDocument.deletionText=supresi\u00F3n
|
|
||||||
AbstractDocument.undoText=Deshacer
|
|
||||||
AbstractDocument.redoText=Rehacer
|
|
||||||
|
|
||||||
############ Abstract Button Strings ############
|
|
||||||
AbstractButton.clickText=hacer clic
|
|
||||||
|
|
||||||
############ Abstract Undoable Edit Strings ############
|
|
||||||
AbstractUndoableEdit.undoText=Deshacer
|
|
||||||
AbstractUndoableEdit.redoText=Rehacer
|
|
||||||
|
|
||||||
############ Combo Box Strings ############
|
|
||||||
ComboBox.togglePopupText=togglePopup
|
|
||||||
|
|
||||||
############ Progress Monitor Strings ############
|
|
||||||
ProgressMonitor.progressText=Progreso...
|
|
||||||
|
|
||||||
############ Split Pane Strings ############
|
|
||||||
SplitPane.leftButtonText=bot\u00F3n izquierdo
|
|
||||||
SplitPane.rightButtonText=bot\u00F3n derecho
|
|
||||||
# Used for Isindex
|
|
||||||
IsindexView.prompt=En este \u00EDndice se pueden efectuar b\u00FAsquedas. Escriba las palabras clave de b\u00FAsqueda:
|
|
||||||
|
|
||||||
############ InternalFrameTitlePane Strings ############
|
|
||||||
InternalFrameTitlePane.iconifyButtonAccessibleName=Convertir en Icono
|
|
||||||
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar
|
|
||||||
InternalFrameTitlePane.closeButtonAccessibleName=Cerrar
|
|
||||||
|
|
||||||
|
@ -1,229 +1,186 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used in Swing
|
# It contains Locale specific strings used in Swing
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# ColorChooser
|
# ColorChooser
|
||||||
# FileChooser
|
# FileChooser
|
||||||
# OptionPane
|
# OptionPane
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# MNEMONIC NOTE:
|
# MNEMONIC NOTE:
|
||||||
# Many of strings in this file are used by widgets that have a
|
# Many of strings in this file are used by widgets that have a
|
||||||
# mnemonic, for example:
|
# mnemonic, for example:
|
||||||
# ColorChooser.rgbNameText=RGB
|
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||||
# ColorChooser.rgbMnemonic=71
|
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
# a decoration will be provided under the 'G'. This will typically
|
||||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
# look like: RGB
|
||||||
# a decoration will be provided under the 'G'. This will typically
|
# -
|
||||||
# look like: RGB
|
#
|
||||||
# -
|
# One important thing to remember is that the mnemonic MUST exist in
|
||||||
# 71 corresponds to the decimal value of the VK constant defined
|
# the String, if it does not exist you should add text that makes it
|
||||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
# exist. This will typically take the form 'XXXX (M)' where M is the
|
||||||
#
|
# character for the mnemonic.
|
||||||
# public static final int VK_G = 0x47;
|
#
|
||||||
#
|
# @author Steve Wilson
|
||||||
# 0x47 is a hex number and needs to be converted to decimal.
|
|
||||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
############ FILE CHOOSER STRINGS #############
|
||||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
FileChooser.fileDescription.textAndMnemonic=Fichier g\u00E9n\u00E9rique
|
||||||
# for 'a' is 65, 'b' is 66...
|
FileChooser.directoryDescription.textAndMnemonic=R\u00E9pertoire
|
||||||
#
|
FileChooser.newFolderError.textAndMnemonic=Erreur lors de la cr\u00E9ation du dossier
|
||||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
FileChooser.newFolderErrorSeparator= :
|
||||||
# character that should be underlined in the String, with 0
|
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Impossible de cr\u00E9er le dossier
|
||||||
# corresponding to the first character in the String.
|
FileChooser.newFolderParentDoesntExist.textAndMnemonic=Impossible de cr\u00E9er le dossier.\n\nLe syst\u00E8me ne parvient pas \u00E0 trouver le chemin indiqu\u00E9.
|
||||||
#
|
FileChooser.renameErrorTitle.textAndMnemonic=Erreur lors du changement de nom du fichier ou du dossier
|
||||||
# One important thing to remember is that the mnemonic MUST exist in
|
FileChooser.renameError.textAndMnemonic=Impossible de renommer {0}
|
||||||
# the String, if it does not exist you should add text that makes it
|
FileChooser.renameErrorFileExists.textAndMnemonic=Impossible de renommer {0} : il existe d\u00E9j\u00E0 un fichier portant le nom indiqu\u00E9. Indiquez-en un autre.
|
||||||
# exist. This will typically take the form 'XXXX (M)' where M is the
|
FileChooser.acceptAllFileFilter.textAndMnemonic=Tous les fichiers
|
||||||
# character for the mnemonic.
|
FileChooser.cancelButton.textAndMnemonic=&Annuler
|
||||||
#
|
FileChooser.saveButton.textAndMnemonic=Enregi&strer
|
||||||
# @author Steve Wilson
|
FileChooser.openButton.textAndMnemonic=&Ouvrir
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=Enregistrer
|
||||||
############ FILE CHOOSER STRINGS #############
|
FileChooser.openDialogTitle.textAndMnemonic=Ouvrir
|
||||||
FileChooser.fileDescriptionText=Fichier g\u00E9n\u00E9rique
|
FileChooser.updateButton.textAndMnemonic=Mettre \u00E0 jour(&U)
|
||||||
FileChooser.directoryDescriptionText=R\u00E9pertoire
|
FileChooser.helpButton.textAndMnemonic=&Aide
|
||||||
FileChooser.newFolderErrorText=Erreur lors de la cr\u00E9ation du dossier
|
FileChooser.directoryOpenButton.textAndMnemonic=&Ouvrir
|
||||||
FileChooser.newFolderErrorSeparator= :
|
|
||||||
FileChooser.newFolderParentDoesntExistTitleText=Impossible de cr\u00E9er le dossier
|
# File Size Units
|
||||||
FileChooser.newFolderParentDoesntExistText=Impossible de cr\u00E9er le dossier.\n\nLe syst\u00E8me ne parvient pas \u00E0 trouver le chemin indiqu\u00E9.
|
FileChooser.fileSizeKiloBytes={0} KB
|
||||||
FileChooser.renameErrorTitleText=Erreur lors du changement de nom du fichier ou du dossier
|
FileChooser.fileSizeMegaBytes={0} MB
|
||||||
FileChooser.renameErrorText=Impossible de renommer {0}
|
FileChooser.fileSizeGigaBytes={0} GB
|
||||||
FileChooser.renameErrorFileExistsText=Impossible de renommer {0} : il existe d\u00E9j\u00E0 un fichier portant le nom indiqu\u00E9. Indiquez-en un autre.
|
|
||||||
FileChooser.acceptAllFileFilterText=Tous les fichiers
|
# These strings are platform dependent not look and feel dependent.
|
||||||
FileChooser.cancelButtonText=Annuler
|
FileChooser.win32.newFolder=Nouveau dossier
|
||||||
FileChooser.cancelButtonMnemonic=65
|
FileChooser.win32.newFolder.subsequent=Nouveau dossier ({0})
|
||||||
FileChooser.saveButtonText=Enregistrer
|
FileChooser.other.newFolder=NewFolder
|
||||||
FileChooser.saveButtonMnemonic=83
|
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||||
FileChooser.openButtonText=Ouvrir
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=Enregistrer
|
## file chooser tooltips ###
|
||||||
FileChooser.openDialogTitleText=Ouvrir
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers
|
||||||
FileChooser.updateButtonText=Mettre \u00E0 jour
|
FileChooser.saveButtonToolTip.textAndMnemonic=Enregistre le fichier s\u00E9lectionn\u00E9
|
||||||
FileChooser.updateButtonMnemonic=85
|
FileChooser.openButtonToolTip.textAndMnemonic=Ouvre le fichier s\u00E9lectionn\u00E9
|
||||||
FileChooser.helpButtonText=Aide
|
FileChooser.updateButtonToolTip.textAndMnemonic=Met \u00E0 jour la liste des r\u00E9pertoires
|
||||||
FileChooser.helpButtonMnemonic=65
|
FileChooser.helpButtonToolTip.textAndMnemonic=Aide du s\u00E9lecteur de fichiers
|
||||||
FileChooser.directoryOpenButtonText=Ouvrir
|
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Ouvre le r\u00E9pertoire s\u00E9lectionn\u00E9
|
||||||
FileChooser.directoryOpenButtonMnemonic=79
|
|
||||||
|
FileChooser.filesListAccessibleName=Files List
|
||||||
# File Size Units
|
FileChooser.filesDetailsAccessibleName=Files Details
|
||||||
FileChooser.fileSizeKiloBytes={0} KB
|
|
||||||
FileChooser.fileSizeMegaBytes={0} MB
|
############ COLOR CHOOSER STRINGS #############
|
||||||
FileChooser.fileSizeGigaBytes={0} GB
|
ColorChooser.preview.textAndMnemonic=Aper\u00E7u
|
||||||
|
ColorChooser.ok.textAndMnemonic=OK
|
||||||
# These strings are platform dependent not look and feel dependent.
|
ColorChooser.cancel.textAndMnemonic=Annuler
|
||||||
FileChooser.win32.newFolder=Nouveau dossier
|
ColorChooser.reset.textAndMnemonic=R\u00E9initialiser(&R)
|
||||||
FileChooser.win32.newFolder.subsequent=Nouveau dossier ({0})
|
ColorChooser.sample.textAndMnemonic=Echantillon de texte Echantillon de texte
|
||||||
FileChooser.other.newFolder=NewFolder
|
ColorChooser.swatches.textAndMnemonic=&Echantillons
|
||||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
ColorChooser.swatchesRecent.textAndMnemonic=Dernier :
|
||||||
|
ColorChooser.hsv.textAndMnemonic=&TSV
|
||||||
|
ColorChooser.hsvHue.textAndMnemonic=Teinte
|
||||||
## file chooser tooltips ###
|
ColorChooser.hsvSaturation.textAndMnemonic=Saturation
|
||||||
FileChooser.cancelButtonToolTipText=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers
|
ColorChooser.hsvValue.textAndMnemonic=Valeur
|
||||||
FileChooser.saveButtonToolTipText=Enregistre le fichier s\u00E9lectionn\u00E9
|
ColorChooser.hsvTransparency.textAndMnemonic=Transparence
|
||||||
FileChooser.openButtonToolTipText=Ouvre le fichier s\u00E9lectionn\u00E9
|
ColorChooser.hsl.textAndMnemonic=TS&L
|
||||||
FileChooser.updateButtonToolTipText=Met \u00E0 jour la liste des r\u00E9pertoires
|
ColorChooser.hslHue.textAndMnemonic=Teinte
|
||||||
FileChooser.helpButtonToolTipText=Aide du s\u00E9lecteur de fichiers
|
ColorChooser.hslSaturation.textAndMnemonic=Saturation
|
||||||
FileChooser.directoryOpenButtonToolTipText=Ouvre le r\u00E9pertoire s\u00E9lectionn\u00E9
|
ColorChooser.hslLightness.textAndMnemonic=Lumi\u00E8re
|
||||||
|
ColorChooser.hslTransparency.textAndMnemonic=Transparence
|
||||||
FileChooser.filesListAccessibleName=Files List
|
ColorChooser.rgb.textAndMnemonic=R&VB
|
||||||
FileChooser.filesDetailsAccessibleName=Files Details
|
ColorChooser.rgbRed.textAndMnemonic=R&ouge
|
||||||
|
ColorChooser.rgbGreen.textAndMnemonic=&Vert
|
||||||
############ COLOR CHOOSER STRINGS #############
|
ColorChooser.rgbBlue.textAndMnemonic=&Bleu
|
||||||
ColorChooser.previewText=Aper\u00E7u
|
ColorChooser.rgbAlpha.textAndMnemonic=Alpha
|
||||||
ColorChooser.okText=OK
|
ColorChooser.rgbHexCode.textAndMnemonic=&Code couleur
|
||||||
ColorChooser.cancelText=Annuler
|
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||||
ColorChooser.resetText=R\u00E9initialiser
|
ColorChooser.cmykCyan.textAndMnemonic=Cyan
|
||||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
ColorChooser.cmykMagenta.textAndMnemonic=Magenta
|
||||||
ColorChooser.resetMnemonic=82
|
ColorChooser.cmykYellow.textAndMnemonic=Jaune
|
||||||
ColorChooser.sampleText=Echantillon de texte Echantillon de texte
|
ColorChooser.cmykBlack.textAndMnemonic=Noir
|
||||||
ColorChooser.swatchesNameText=Echantillons
|
ColorChooser.cmykAlpha.textAndMnemonic=Alpha
|
||||||
ColorChooser.swatchesMnemonic=69
|
|
||||||
ColorChooser.swatchesRecentText=Dernier :
|
############ OPTION PANE STRINGS #############
|
||||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
# We only define mnemonics for YES/NO, but for completeness you can
|
||||||
# constant, and an index into the text to render the mnemonic as. The
|
# define mnemonics for any of the buttons.
|
||||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
OptionPane.yesButton.textAndMnemonic=&Oui
|
||||||
# xxxDisplayedMnemonicIndex.
|
OptionPane.noButton.textAndMnemonic=&Non
|
||||||
ColorChooser.hsvNameText=TSV
|
OptionPane.okButton.textAndMnemonic=&OK
|
||||||
ColorChooser.hsvMnemonic=84
|
OptionPane.cancelButton.textAndMnemonic=&Annuler
|
||||||
ColorChooser.hsvHueText=Teinte
|
OptionPane.title.textAndMnemonic=S\u00E9lectionner une option
|
||||||
ColorChooser.hsvSaturationText=Saturation
|
# Title for the dialog for the showInputDialog methods. Only used if
|
||||||
ColorChooser.hsvValueText=Valeur
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hsvTransparencyText=Transparence
|
OptionPane.inputDialog.titleAndMnemonic=Entr\u00E9e
|
||||||
ColorChooser.hslNameText=TSL
|
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||||
ColorChooser.hslMnemonic=76
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hslHueText=Teinte
|
OptionPane.messageDialog.titleAndMnemonic=Message
|
||||||
ColorChooser.hslSaturationText=Saturation
|
|
||||||
ColorChooser.hslLightnessText=Lumi\u00E8re
|
############ Printing Dialog Strings ############
|
||||||
ColorChooser.hslTransparencyText=Transparence
|
PrintingDialog.titleProgress.textAndMnemonic=Impression
|
||||||
ColorChooser.rgbNameText=RVB
|
PrintingDialog.titleAborting.textAndMnemonic=Impression (abandon)
|
||||||
ColorChooser.rgbMnemonic=86
|
|
||||||
ColorChooser.rgbRedText=Rouge
|
PrintingDialog.contentInitial.textAndMnemonic=Impression en cours...
|
||||||
ColorChooser.rgbRedMnemonic=79
|
|
||||||
ColorChooser.rgbGreenText=Vert
|
# The following string will be formatted by a MessageFormat
|
||||||
ColorChooser.rgbGreenMnemonic=86
|
# and {0} will be replaced by page number being printed
|
||||||
ColorChooser.rgbBlueText=Bleu
|
PrintingDialog.contentProgress.textAndMnemonic=Page {0} imprim\u00E9e...
|
||||||
ColorChooser.rgbBlueMnemonic=66
|
|
||||||
ColorChooser.rgbAlphaText=Alpha
|
PrintingDialog.contentAborting.textAndMnemonic=Abandon de l'impression...
|
||||||
ColorChooser.rgbHexCodeText=Code couleur
|
|
||||||
ColorChooser.rgbHexCodeMnemonic=67
|
PrintingDialog.abortButton.textAndMnemonic=&Abandonner
|
||||||
ColorChooser.cmykNameText=CMYK
|
PrintingDialog.abortButtonToolTip.textAndMnemonic=Abandonner l'impression
|
||||||
ColorChooser.cmykMnemonic=77
|
|
||||||
ColorChooser.cmykCyanText=Cyan
|
############ Internal Frame Strings ############
|
||||||
ColorChooser.cmykMagentaText=Magenta
|
InternalFrame.iconButtonToolTip=R\u00E9duire
|
||||||
ColorChooser.cmykYellowText=Jaune
|
InternalFrame.maxButtonToolTip=Agrandir
|
||||||
ColorChooser.cmykBlackText=Noir
|
InternalFrame.restoreButtonToolTip=Restaurer
|
||||||
ColorChooser.cmykAlphaText=Alpha
|
InternalFrame.closeButtonToolTip=Fermer
|
||||||
|
|
||||||
############ OPTION PANE STRINGS #############
|
############ Internal Frame Title Pane Strings ############
|
||||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurer
|
||||||
# We only define mnemonics for YES/NO, but for completeness you can
|
InternalFrameTitlePane.moveButton.textAndMnemonic=D\u00E9placer
|
||||||
# define mnemonics for any of the buttons.
|
InternalFrameTitlePane.sizeButton.textAndMnemonic=Taille
|
||||||
OptionPane.yesButtonText=Oui
|
InternalFrameTitlePane.minimizeButton.textAndMnemonic=R\u00E9duire
|
||||||
OptionPane.yesButtonMnemonic=79
|
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Agrandir
|
||||||
OptionPane.noButtonText=Non
|
InternalFrameTitlePane.closeButton.textAndMnemonic=Fermer
|
||||||
OptionPane.noButtonMnemonic=78
|
|
||||||
OptionPane.okButtonText=OK
|
############ Text strings #############
|
||||||
OptionPane.okButtonMnemonic=O
|
# Used for html forms
|
||||||
OptionPane.cancelButtonText=Annuler
|
FormView.submitButton.textAndMnemonic=Soumettre la requ\u00EAte
|
||||||
OptionPane.cancelButtonMnemonic=A
|
FormView.resetButton.textAndMnemonic=R\u00E9initialiser
|
||||||
OptionPane.titleText=S\u00E9lectionner une option
|
FormView.browseFileButton.textAndMnemonic=Parcourir...
|
||||||
# Title for the dialog for the showInputDialog methods. Only used if
|
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
############ Abstract Document Strings ############
|
||||||
OptionPane.inputDialogTitle=Entr\u00E9e
|
AbstractDocument.styleChange.textAndMnemonic=modification de style
|
||||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
AbstractDocument.addition.textAndMnemonic=ajout
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
AbstractDocument.deletion.textAndMnemonic=suppression
|
||||||
OptionPane.messageDialogTitle=Message
|
AbstractDocument.undo.textAndMnemonic=Annuler
|
||||||
|
AbstractDocument.redo.textAndMnemonic=R\u00E9tablir
|
||||||
############ Printing Dialog Strings ############
|
|
||||||
PrintingDialog.titleProgressText=Impression
|
############ Abstract Button Strings ############
|
||||||
PrintingDialog.titleAbortingText=Impression (abandon)
|
AbstractButton.click.textAndMnemonic=cliquer
|
||||||
|
|
||||||
PrintingDialog.contentInitialText=Impression en cours...
|
############ Abstract Undoable Edit Strings ############
|
||||||
|
AbstractUndoableEdit.undo.textAndMnemonic=Annuler
|
||||||
# The following string will be formatted by a MessageFormat
|
AbstractUndoableEdit.redo.textAndMnemonic=R\u00E9tablir
|
||||||
# and {0} will be replaced by page number being printed
|
|
||||||
PrintingDialog.contentProgressText=Page {0} imprim\u00E9e...
|
############ Combo Box Strings ############
|
||||||
|
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||||
PrintingDialog.contentAbortingText=Abandon de l'impression...
|
|
||||||
|
############ Progress Monitor Strings ############
|
||||||
PrintingDialog.abortButtonText=Abandonner
|
ProgressMonitor.progress.textAndMnemonic=Progression...
|
||||||
PrintingDialog.abortButtonMnemonic=65
|
|
||||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
############ Split Pane Strings ############
|
||||||
PrintingDialog.abortButtonToolTipText=Abandonner l'impression
|
SplitPane.leftButton.textAndMnemonic=bouton gauche
|
||||||
|
SplitPane.rightButton.textAndMnemonic=bouton droit
|
||||||
############ Internal Frame Strings ############
|
# Used for Isindex
|
||||||
InternalFrame.iconButtonToolTip=R\u00E9duire
|
IsindexView.prompt=Ceci est un index de recherche. Tapez des mots-cl\u00E9s pour la recherche :
|
||||||
InternalFrame.maxButtonToolTip=Agrandir
|
|
||||||
InternalFrame.restoreButtonToolTip=Restaurer
|
############ InternalFrameTitlePane Strings ############
|
||||||
InternalFrame.closeButtonToolTip=Fermer
|
InternalFrameTitlePane.iconifyButtonAccessibleName=R\u00E9duire
|
||||||
|
InternalFrameTitlePane.maximizeButtonAccessibleName=Agrandir
|
||||||
############ Internal Frame Title Pane Strings ############
|
InternalFrameTitlePane.closeButtonAccessibleName=Fermer
|
||||||
InternalFrameTitlePane.restoreButtonText=Restaurer
|
|
||||||
InternalFrameTitlePane.moveButtonText=D\u00E9placer
|
|
||||||
InternalFrameTitlePane.sizeButtonText=Taille
|
|
||||||
InternalFrameTitlePane.minimizeButtonText=R\u00E9duire
|
|
||||||
InternalFrameTitlePane.maximizeButtonText=Agrandir
|
|
||||||
InternalFrameTitlePane.closeButtonText=Fermer
|
|
||||||
|
|
||||||
############ Text strings #############
|
|
||||||
# Used for html forms
|
|
||||||
FormView.submitButtonText=Soumettre la requ\u00EAte
|
|
||||||
FormView.resetButtonText=R\u00E9initialiser
|
|
||||||
FormView.browseFileButtonText=Parcourir...
|
|
||||||
|
|
||||||
############ Abstract Document Strings ############
|
|
||||||
AbstractDocument.styleChangeText=modification de style
|
|
||||||
AbstractDocument.additionText=ajout
|
|
||||||
AbstractDocument.deletionText=suppression
|
|
||||||
AbstractDocument.undoText=Annuler
|
|
||||||
AbstractDocument.redoText=R\u00E9tablir
|
|
||||||
|
|
||||||
############ Abstract Button Strings ############
|
|
||||||
AbstractButton.clickText=cliquer
|
|
||||||
|
|
||||||
############ Abstract Undoable Edit Strings ############
|
|
||||||
AbstractUndoableEdit.undoText=Annuler
|
|
||||||
AbstractUndoableEdit.redoText=R\u00E9tablir
|
|
||||||
|
|
||||||
############ Combo Box Strings ############
|
|
||||||
ComboBox.togglePopupText=togglePopup
|
|
||||||
|
|
||||||
############ Progress Monitor Strings ############
|
|
||||||
ProgressMonitor.progressText=Progression...
|
|
||||||
|
|
||||||
############ Split Pane Strings ############
|
|
||||||
SplitPane.leftButtonText=bouton gauche
|
|
||||||
SplitPane.rightButtonText=bouton droit
|
|
||||||
# Used for Isindex
|
|
||||||
IsindexView.prompt=Ceci est un index de recherche. Tapez des mots-cl\u00E9s pour la recherche :
|
|
||||||
|
|
||||||
############ InternalFrameTitlePane Strings ############
|
|
||||||
InternalFrameTitlePane.iconifyButtonAccessibleName=R\u00E9duire
|
|
||||||
InternalFrameTitlePane.maximizeButtonAccessibleName=Agrandir
|
|
||||||
InternalFrameTitlePane.closeButtonAccessibleName=Fermer
|
|
||||||
|
|
||||||
|
@ -1,229 +1,186 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used in Swing
|
# It contains Locale specific strings used in Swing
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# ColorChooser
|
# ColorChooser
|
||||||
# FileChooser
|
# FileChooser
|
||||||
# OptionPane
|
# OptionPane
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# MNEMONIC NOTE:
|
# MNEMONIC NOTE:
|
||||||
# Many of strings in this file are used by widgets that have a
|
# Many of strings in this file are used by widgets that have a
|
||||||
# mnemonic, for example:
|
# mnemonic, for example:
|
||||||
# ColorChooser.rgbNameText=RGB
|
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||||
# ColorChooser.rgbMnemonic=71
|
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
# a decoration will be provided under the 'G'. This will typically
|
||||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
# look like: RGB
|
||||||
# a decoration will be provided under the 'G'. This will typically
|
# -
|
||||||
# look like: RGB
|
#
|
||||||
# -
|
# One important thing to remember is that the mnemonic MUST exist in
|
||||||
# 71 corresponds to the decimal value of the VK constant defined
|
# the String, if it does not exist you should add text that makes it
|
||||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
# exist. This will typically take the form 'XXXX (M)' where M is the
|
||||||
#
|
# character for the mnemonic.
|
||||||
# public static final int VK_G = 0x47;
|
#
|
||||||
#
|
# @author Steve Wilson
|
||||||
# 0x47 is a hex number and needs to be converted to decimal.
|
|
||||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
############ FILE CHOOSER STRINGS #############
|
||||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
FileChooser.fileDescription.textAndMnemonic=File generico
|
||||||
# for 'a' is 65, 'b' is 66...
|
FileChooser.directoryDescription.textAndMnemonic=Directory
|
||||||
#
|
FileChooser.newFolderError.textAndMnemonic=Errore durante la creazione della nuova cartella
|
||||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
FileChooser.newFolderErrorSeparator= :
|
||||||
# character that should be underlined in the String, with 0
|
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Impossibile creare la cartella
|
||||||
# corresponding to the first character in the String.
|
FileChooser.newFolderParentDoesntExist.textAndMnemonic=Impossibile creare la cartella.\n\nIl sistema non \u00E8 in grado di trovare il percorso specificato.
|
||||||
#
|
FileChooser.renameErrorTitle.textAndMnemonic=Errore durante la ridenominazione del file o della cartella
|
||||||
# One important thing to remember is that the mnemonic MUST exist in
|
FileChooser.renameError.textAndMnemonic=Impossibile rinominare {0}
|
||||||
# the String, if it does not exist you should add text that makes it
|
FileChooser.renameErrorFileExists.textAndMnemonic=Impossibile rinominare {0}: esiste gi\u00E0 un file con il nome specificato. Specificare un altro nome.
|
||||||
# exist. This will typically take the form 'XXXX (M)' where M is the
|
FileChooser.acceptAllFileFilter.textAndMnemonic=Tutti i file
|
||||||
# character for the mnemonic.
|
FileChooser.cancelButton.textAndMnemonic=&Annulla
|
||||||
#
|
FileChooser.saveButton.textAndMnemonic=Sal&va
|
||||||
# @author Steve Wilson
|
FileChooser.openButton.textAndMnemonic=A&pri
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=Salva
|
||||||
############ FILE CHOOSER STRINGS #############
|
FileChooser.openDialogTitle.textAndMnemonic=Apri
|
||||||
FileChooser.fileDescriptionText=File generico
|
FileChooser.updateButton.textAndMnemonic=A&ggiorna
|
||||||
FileChooser.directoryDescriptionText=Directory
|
FileChooser.helpButton.textAndMnemonic=?(&H)
|
||||||
FileChooser.newFolderErrorText=Errore durante la creazione della nuova cartella
|
FileChooser.directoryOpenButton.textAndMnemonic=&Apri
|
||||||
FileChooser.newFolderErrorSeparator= :
|
|
||||||
FileChooser.newFolderParentDoesntExistTitleText=Impossibile creare la cartella
|
# File Size Units
|
||||||
FileChooser.newFolderParentDoesntExistText=Impossibile creare la cartella.\n\nIl sistema non \u00E8 in grado di trovare il percorso specificato.
|
FileChooser.fileSizeKiloBytes={0} KB
|
||||||
FileChooser.renameErrorTitleText=Errore durante la ridenominazione del file o della cartella
|
FileChooser.fileSizeMegaBytes={0} MB
|
||||||
FileChooser.renameErrorText=Impossibile rinominare {0}
|
FileChooser.fileSizeGigaBytes={0} GB
|
||||||
FileChooser.renameErrorFileExistsText=Impossibile rinominare {0}: esiste gi\u00E0 un file con il nome specificato. Specificare un altro nome.
|
|
||||||
FileChooser.acceptAllFileFilterText=Tutti i file
|
# These strings are platform dependent not look and feel dependent.
|
||||||
FileChooser.cancelButtonText=Annulla
|
FileChooser.win32.newFolder=Nuova cartella
|
||||||
FileChooser.cancelButtonMnemonic=65
|
FileChooser.win32.newFolder.subsequent=Nuova cartella ({0})
|
||||||
FileChooser.saveButtonText=Salva
|
FileChooser.other.newFolder=NewFolder
|
||||||
FileChooser.saveButtonMnemonic=86
|
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||||
FileChooser.openButtonText=Apri
|
|
||||||
FileChooser.openButtonMnemonic=80
|
|
||||||
FileChooser.saveDialogTitleText=Salva
|
## file chooser tooltips ###
|
||||||
FileChooser.openDialogTitleText=Apri
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Chiude la finestra di dialogo di selezione file
|
||||||
FileChooser.updateButtonText=Aggiorna
|
FileChooser.saveButtonToolTip.textAndMnemonic=Salva il file selezionato
|
||||||
FileChooser.updateButtonMnemonic=71
|
FileChooser.openButtonToolTip.textAndMnemonic=Apre il file selezionato
|
||||||
FileChooser.helpButtonText=?(H)
|
FileChooser.updateButtonToolTip.textAndMnemonic=Aggiorna la lista directory
|
||||||
FileChooser.helpButtonMnemonic=72
|
FileChooser.helpButtonToolTip.textAndMnemonic=Guida FileChooser
|
||||||
FileChooser.directoryOpenButtonText=Apri
|
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Apre la directory selezionata
|
||||||
FileChooser.directoryOpenButtonMnemonic=65
|
|
||||||
|
FileChooser.filesListAccessibleName=Files List
|
||||||
# File Size Units
|
FileChooser.filesDetailsAccessibleName=Files Details
|
||||||
FileChooser.fileSizeKiloBytes={0} KB
|
|
||||||
FileChooser.fileSizeMegaBytes={0} MB
|
############ COLOR CHOOSER STRINGS #############
|
||||||
FileChooser.fileSizeGigaBytes={0} GB
|
ColorChooser.preview.textAndMnemonic=Anteprima
|
||||||
|
ColorChooser.ok.textAndMnemonic=OK
|
||||||
# These strings are platform dependent not look and feel dependent.
|
ColorChooser.cancel.textAndMnemonic=Annulla
|
||||||
FileChooser.win32.newFolder=Nuova cartella
|
ColorChooser.reset.textAndMnemonic=&Reimposta
|
||||||
FileChooser.win32.newFolder.subsequent=Nuova cartella ({0})
|
ColorChooser.sample.textAndMnemonic=Testo di prova Testo di prova
|
||||||
FileChooser.other.newFolder=NewFolder
|
ColorChooser.swatches.textAndMnemonic=Colori cam&pione
|
||||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
ColorChooser.swatchesRecent.textAndMnemonic=Recenti:
|
||||||
|
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||||
|
ColorChooser.hsvHue.textAndMnemonic=Tonalit\u00E0
|
||||||
## file chooser tooltips ###
|
ColorChooser.hsvSaturation.textAndMnemonic=Saturazione
|
||||||
FileChooser.cancelButtonToolTipText=Chiude la finestra di dialogo di selezione file
|
ColorChooser.hsvValue.textAndMnemonic=Valore
|
||||||
FileChooser.saveButtonToolTipText=Salva il file selezionato
|
ColorChooser.hsvTransparency.textAndMnemonic=Trasparenza
|
||||||
FileChooser.openButtonToolTipText=Apre il file selezionato
|
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||||
FileChooser.updateButtonToolTipText=Aggiorna la lista directory
|
ColorChooser.hslHue.textAndMnemonic=Tonalit\u00E0
|
||||||
FileChooser.helpButtonToolTipText=Guida FileChooser
|
ColorChooser.hslSaturation.textAndMnemonic=Saturazione
|
||||||
FileChooser.directoryOpenButtonToolTipText=Apre la directory selezionata
|
ColorChooser.hslLightness.textAndMnemonic=Luminosit\u00E0
|
||||||
|
ColorChooser.hslTransparency.textAndMnemonic=Trasparenza
|
||||||
FileChooser.filesListAccessibleName=Files List
|
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||||
FileChooser.filesDetailsAccessibleName=Files Details
|
ColorChooser.rgbRed.textAndMnemonic=Ro&sso
|
||||||
|
ColorChooser.rgbGreen.textAndMnemonic=Ver&de
|
||||||
############ COLOR CHOOSER STRINGS #############
|
ColorChooser.rgbBlue.textAndMnemonic=&Blu
|
||||||
ColorChooser.previewText=Anteprima
|
ColorChooser.rgbAlpha.textAndMnemonic=Alfa
|
||||||
ColorChooser.okText=OK
|
ColorChooser.rgbHexCode.textAndMnemonic=&Codice colori
|
||||||
ColorChooser.cancelText=Annulla
|
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||||
ColorChooser.resetText=Reimposta
|
ColorChooser.cmykCyan.textAndMnemonic=Ciano
|
||||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
ColorChooser.cmykMagenta.textAndMnemonic=Magenta
|
||||||
ColorChooser.resetMnemonic=82
|
ColorChooser.cmykYellow.textAndMnemonic=Giallo
|
||||||
ColorChooser.sampleText=Testo di prova Testo di prova
|
ColorChooser.cmykBlack.textAndMnemonic=Nero
|
||||||
ColorChooser.swatchesNameText=Colori campione
|
ColorChooser.cmykAlpha.textAndMnemonic=Alfa
|
||||||
ColorChooser.swatchesMnemonic=80
|
|
||||||
ColorChooser.swatchesRecentText=Recenti:
|
############ OPTION PANE STRINGS #############
|
||||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
# We only define mnemonics for YES/NO, but for completeness you can
|
||||||
# constant, and an index into the text to render the mnemonic as. The
|
# define mnemonics for any of the buttons.
|
||||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
OptionPane.yesButton.textAndMnemonic=S\u00EC(&S)
|
||||||
# xxxDisplayedMnemonicIndex.
|
OptionPane.noButton.textAndMnemonic=&No
|
||||||
ColorChooser.hsvNameText=HSV
|
OptionPane.okButton.textAndMnemonic=&OK
|
||||||
ColorChooser.hsvMnemonic=72
|
OptionPane.cancelButton.textAndMnemonic=&Annulla
|
||||||
ColorChooser.hsvHueText=Tonalit\u00E0
|
OptionPane.title.textAndMnemonic=Selezionare una opzione
|
||||||
ColorChooser.hsvSaturationText=Saturazione
|
# Title for the dialog for the showInputDialog methods. Only used if
|
||||||
ColorChooser.hsvValueText=Valore
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hsvTransparencyText=Trasparenza
|
OptionPane.inputDialog.titleAndMnemonic=Input
|
||||||
ColorChooser.hslNameText=HSL
|
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||||
ColorChooser.hslMnemonic=76
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hslHueText=Tonalit\u00E0
|
OptionPane.messageDialog.titleAndMnemonic=Messaggio
|
||||||
ColorChooser.hslSaturationText=Saturazione
|
|
||||||
ColorChooser.hslLightnessText=Luminosit\u00E0
|
############ Printing Dialog Strings ############
|
||||||
ColorChooser.hslTransparencyText=Trasparenza
|
PrintingDialog.titleProgress.textAndMnemonic=Stampa in corso
|
||||||
ColorChooser.rgbNameText=RGB
|
PrintingDialog.titleAborting.textAndMnemonic=Stampa in corso (operazione interrotta)
|
||||||
ColorChooser.rgbMnemonic=71
|
|
||||||
ColorChooser.rgbRedText=Rosso
|
PrintingDialog.contentInitial.textAndMnemonic=Stampa in corso...
|
||||||
ColorChooser.rgbRedMnemonic=83
|
|
||||||
ColorChooser.rgbGreenText=Verde
|
# The following string will be formatted by a MessageFormat
|
||||||
ColorChooser.rgbGreenMnemonic=68
|
# and {0} will be replaced by page number being printed
|
||||||
ColorChooser.rgbBlueText=Blu
|
PrintingDialog.contentProgress.textAndMnemonic=Pagina stampata {0}...
|
||||||
ColorChooser.rgbBlueMnemonic=66
|
|
||||||
ColorChooser.rgbAlphaText=Alfa
|
PrintingDialog.contentAborting.textAndMnemonic=Interruzione della stampa...
|
||||||
ColorChooser.rgbHexCodeText=Codice colori
|
|
||||||
ColorChooser.rgbHexCodeMnemonic=67
|
PrintingDialog.abortButton.textAndMnemonic=I&nterrompi
|
||||||
ColorChooser.cmykNameText=CMYK
|
PrintingDialog.abortButtonToolTip.textAndMnemonic=Interrompi la stampa
|
||||||
ColorChooser.cmykMnemonic=77
|
|
||||||
ColorChooser.cmykCyanText=Ciano
|
############ Internal Frame Strings ############
|
||||||
ColorChooser.cmykMagentaText=Magenta
|
InternalFrame.iconButtonToolTip=Riduci a icona
|
||||||
ColorChooser.cmykYellowText=Giallo
|
InternalFrame.maxButtonToolTip=Ingrandisci
|
||||||
ColorChooser.cmykBlackText=Nero
|
InternalFrame.restoreButtonToolTip=Ripristina
|
||||||
ColorChooser.cmykAlphaText=Alfa
|
InternalFrame.closeButtonToolTip=Chiudi
|
||||||
|
|
||||||
############ OPTION PANE STRINGS #############
|
############ Internal Frame Title Pane Strings ############
|
||||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
InternalFrameTitlePane.restoreButton.textAndMnemonic=Ripristina
|
||||||
# We only define mnemonics for YES/NO, but for completeness you can
|
InternalFrameTitlePane.moveButton.textAndMnemonic=Sposta
|
||||||
# define mnemonics for any of the buttons.
|
InternalFrameTitlePane.sizeButton.textAndMnemonic=Dimensioni
|
||||||
OptionPane.yesButtonText=S\u00EC
|
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Riduci a icona
|
||||||
OptionPane.yesButtonMnemonic=83
|
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Ingrandisci
|
||||||
OptionPane.noButtonText=No
|
InternalFrameTitlePane.closeButton.textAndMnemonic=Chiudi
|
||||||
OptionPane.noButtonMnemonic=78
|
|
||||||
OptionPane.okButtonText=OK
|
############ Text strings #############
|
||||||
OptionPane.okButtonMnemonic=O
|
# Used for html forms
|
||||||
OptionPane.cancelButtonText=Annulla
|
FormView.submitButton.textAndMnemonic=Sottometti query
|
||||||
OptionPane.cancelButtonMnemonic=A
|
FormView.resetButton.textAndMnemonic=Reimposta
|
||||||
OptionPane.titleText=Selezionare una opzione
|
FormView.browseFileButton.textAndMnemonic=Sfoglia...
|
||||||
# Title for the dialog for the showInputDialog methods. Only used if
|
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
############ Abstract Document Strings ############
|
||||||
OptionPane.inputDialogTitle=Input
|
AbstractDocument.styleChange.textAndMnemonic=modifica di stile
|
||||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
AbstractDocument.addition.textAndMnemonic=aggiunta
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
AbstractDocument.deletion.textAndMnemonic=eliminazione
|
||||||
OptionPane.messageDialogTitle=Messaggio
|
AbstractDocument.undo.textAndMnemonic=Annulla
|
||||||
|
AbstractDocument.redo.textAndMnemonic=Ripeti
|
||||||
############ Printing Dialog Strings ############
|
|
||||||
PrintingDialog.titleProgressText=Stampa in corso
|
############ Abstract Button Strings ############
|
||||||
PrintingDialog.titleAbortingText=Stampa in corso (operazione interrotta)
|
AbstractButton.click.textAndMnemonic=fare clic
|
||||||
|
|
||||||
PrintingDialog.contentInitialText=Stampa in corso...
|
############ Abstract Undoable Edit Strings ############
|
||||||
|
AbstractUndoableEdit.undo.textAndMnemonic=Annulla
|
||||||
# The following string will be formatted by a MessageFormat
|
AbstractUndoableEdit.redo.textAndMnemonic=Ripeti
|
||||||
# and {0} will be replaced by page number being printed
|
|
||||||
PrintingDialog.contentProgressText=Pagina stampata {0}...
|
############ Combo Box Strings ############
|
||||||
|
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||||
PrintingDialog.contentAbortingText=Interruzione della stampa...
|
|
||||||
|
############ Progress Monitor Strings ############
|
||||||
PrintingDialog.abortButtonText=Interrompi
|
ProgressMonitor.progress.textAndMnemonic=Avanzamento...
|
||||||
PrintingDialog.abortButtonMnemonic=78
|
|
||||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
############ Split Pane Strings ############
|
||||||
PrintingDialog.abortButtonToolTipText=Interrompi la stampa
|
SplitPane.leftButton.textAndMnemonic=tasto sinistro
|
||||||
|
SplitPane.rightButton.textAndMnemonic=tasto destro
|
||||||
############ Internal Frame Strings ############
|
# Used for Isindex
|
||||||
InternalFrame.iconButtonToolTip=Riduci a icona
|
IsindexView.prompt=Questo \u00E8 un indice di ricerca. Immettere le parole chiave:
|
||||||
InternalFrame.maxButtonToolTip=Ingrandisci
|
|
||||||
InternalFrame.restoreButtonToolTip=Ripristina
|
############ InternalFrameTitlePane Strings ############
|
||||||
InternalFrame.closeButtonToolTip=Chiudi
|
InternalFrameTitlePane.iconifyButtonAccessibleName=Riduci a icona
|
||||||
|
InternalFrameTitlePane.maximizeButtonAccessibleName=Ingrandisci
|
||||||
############ Internal Frame Title Pane Strings ############
|
InternalFrameTitlePane.closeButtonAccessibleName=Chiudi
|
||||||
InternalFrameTitlePane.restoreButtonText=Ripristina
|
|
||||||
InternalFrameTitlePane.moveButtonText=Sposta
|
|
||||||
InternalFrameTitlePane.sizeButtonText=Dimensioni
|
|
||||||
InternalFrameTitlePane.minimizeButtonText=Riduci a icona
|
|
||||||
InternalFrameTitlePane.maximizeButtonText=Ingrandisci
|
|
||||||
InternalFrameTitlePane.closeButtonText=Chiudi
|
|
||||||
|
|
||||||
############ Text strings #############
|
|
||||||
# Used for html forms
|
|
||||||
FormView.submitButtonText=Sottometti query
|
|
||||||
FormView.resetButtonText=Reimposta
|
|
||||||
FormView.browseFileButtonText=Sfoglia...
|
|
||||||
|
|
||||||
############ Abstract Document Strings ############
|
|
||||||
AbstractDocument.styleChangeText=modifica di stile
|
|
||||||
AbstractDocument.additionText=aggiunta
|
|
||||||
AbstractDocument.deletionText=eliminazione
|
|
||||||
AbstractDocument.undoText=Annulla
|
|
||||||
AbstractDocument.redoText=Ripeti
|
|
||||||
|
|
||||||
############ Abstract Button Strings ############
|
|
||||||
AbstractButton.clickText=fare clic
|
|
||||||
|
|
||||||
############ Abstract Undoable Edit Strings ############
|
|
||||||
AbstractUndoableEdit.undoText=Annulla
|
|
||||||
AbstractUndoableEdit.redoText=Ripeti
|
|
||||||
|
|
||||||
############ Combo Box Strings ############
|
|
||||||
ComboBox.togglePopupText=togglePopup
|
|
||||||
|
|
||||||
############ Progress Monitor Strings ############
|
|
||||||
ProgressMonitor.progressText=Avanzamento...
|
|
||||||
|
|
||||||
############ Split Pane Strings ############
|
|
||||||
SplitPane.leftButtonText=tasto sinistro
|
|
||||||
SplitPane.rightButtonText=tasto destro
|
|
||||||
# Used for Isindex
|
|
||||||
IsindexView.prompt=Questo \u00E8 un indice di ricerca. Immettere le parole chiave:
|
|
||||||
|
|
||||||
############ InternalFrameTitlePane Strings ############
|
|
||||||
InternalFrameTitlePane.iconifyButtonAccessibleName=Riduci a icona
|
|
||||||
InternalFrameTitlePane.maximizeButtonAccessibleName=Ingrandisci
|
|
||||||
InternalFrameTitlePane.closeButtonAccessibleName=Chiudi
|
|
||||||
|
|
||||||
|
@ -1,229 +1,186 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used in Swing
|
# It contains Locale specific strings used in Swing
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# ColorChooser
|
# ColorChooser
|
||||||
# FileChooser
|
# FileChooser
|
||||||
# OptionPane
|
# OptionPane
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# MNEMONIC NOTE:
|
# MNEMONIC NOTE:
|
||||||
# Many of strings in this file are used by widgets that have a
|
# Many of strings in this file are used by widgets that have a
|
||||||
# mnemonic, for example:
|
# mnemonic, for example:
|
||||||
# ColorChooser.rgbNameText=RGB
|
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||||
# ColorChooser.rgbMnemonic=71
|
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
# a decoration will be provided under the 'G'. This will typically
|
||||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
# look like: RGB
|
||||||
# a decoration will be provided under the 'G'. This will typically
|
# -
|
||||||
# look like: RGB
|
#
|
||||||
# -
|
# One important thing to remember is that the mnemonic MUST exist in
|
||||||
# 71 corresponds to the decimal value of the VK constant defined
|
# the String, if it does not exist you should add text that makes it
|
||||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
# exist. This will typically take the form 'XXXX (M)' where M is the
|
||||||
#
|
# character for the mnemonic.
|
||||||
# public static final int VK_G = 0x47;
|
#
|
||||||
#
|
# @author Steve Wilson
|
||||||
# 0x47 is a hex number and needs to be converted to decimal.
|
|
||||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
############ FILE CHOOSER STRINGS #############
|
||||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
FileChooser.fileDescription.textAndMnemonic=\u6C4E\u7528\u30D5\u30A1\u30A4\u30EB
|
||||||
# for 'a' is 65, 'b' is 66...
|
FileChooser.directoryDescription.textAndMnemonic=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA
|
||||||
#
|
FileChooser.newFolderError.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210\u30A8\u30E9\u30FC
|
||||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
FileChooser.newFolderErrorSeparator= :
|
||||||
# character that should be underlined in the String, with 0
|
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093
|
||||||
# corresponding to the first character in the String.
|
FileChooser.newFolderParentDoesntExist.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093\u3002\n\n\u6307\u5B9A\u3057\u305F\u30D1\u30B9\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3002
|
||||||
#
|
FileChooser.renameErrorTitle.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u307E\u305F\u306F\u30D5\u30A9\u30EB\u30C0\u306E\u540D\u524D\u5909\u66F4\u30A8\u30E9\u30FC
|
||||||
# One important thing to remember is that the mnemonic MUST exist in
|
FileChooser.renameError.textAndMnemonic={0}\u306E\u540D\u524D\u3092\u5909\u66F4\u3067\u304D\u307E\u305B\u3093
|
||||||
# the String, if it does not exist you should add text that makes it
|
FileChooser.renameErrorFileExists.textAndMnemonic={0}\u306E\u540D\u524D\u3092\u5909\u66F4\u3067\u304D\u307E\u305B\u3093: \u6307\u5B9A\u3057\u305F\u540D\u524D\u306E\u30D5\u30A1\u30A4\u30EB\u306F\u3059\u3067\u306B\u5B58\u5728\u3057\u307E\u3059\u3002\u5225\u306E\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u6307\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044\u3002
|
||||||
# exist. This will typically take the form 'XXXX (M)' where M is the
|
FileChooser.acceptAllFileFilter.textAndMnemonic=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB
|
||||||
# character for the mnemonic.
|
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
|
||||||
#
|
FileChooser.saveButton.textAndMnemonic=\u4FDD\u5B58(&S)
|
||||||
# @author Steve Wilson
|
FileChooser.openButton.textAndMnemonic=\u958B\u304F(&O)
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
|
||||||
############ FILE CHOOSER STRINGS #############
|
FileChooser.openDialogTitle.textAndMnemonic=\u958B\u304F
|
||||||
FileChooser.fileDescriptionText=\u6C4E\u7528\u30D5\u30A1\u30A4\u30EB
|
FileChooser.updateButton.textAndMnemonic=\u66F4\u65B0(&U)
|
||||||
FileChooser.directoryDescriptionText=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA
|
FileChooser.helpButton.textAndMnemonic=\u30D8\u30EB\u30D7(&H)
|
||||||
FileChooser.newFolderErrorText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210\u30A8\u30E9\u30FC
|
FileChooser.directoryOpenButton.textAndMnemonic=\u958B\u304F(&O)
|
||||||
FileChooser.newFolderErrorSeparator= :
|
|
||||||
FileChooser.newFolderParentDoesntExistTitleText=\u30D5\u30A9\u30EB\u30C0\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093
|
# File Size Units
|
||||||
FileChooser.newFolderParentDoesntExistText=\u30D5\u30A9\u30EB\u30C0\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093\u3002\n\n\u6307\u5B9A\u3057\u305F\u30D1\u30B9\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3002
|
FileChooser.fileSizeKiloBytes={0} KB
|
||||||
FileChooser.renameErrorTitleText=\u30D5\u30A1\u30A4\u30EB\u307E\u305F\u306F\u30D5\u30A9\u30EB\u30C0\u306E\u540D\u524D\u5909\u66F4\u30A8\u30E9\u30FC
|
FileChooser.fileSizeMegaBytes={0} MB
|
||||||
FileChooser.renameErrorText={0}\u306E\u540D\u524D\u3092\u5909\u66F4\u3067\u304D\u307E\u305B\u3093
|
FileChooser.fileSizeGigaBytes={0} GB
|
||||||
FileChooser.renameErrorFileExistsText={0}\u306E\u540D\u524D\u3092\u5909\u66F4\u3067\u304D\u307E\u305B\u3093: \u6307\u5B9A\u3057\u305F\u540D\u524D\u306E\u30D5\u30A1\u30A4\u30EB\u306F\u3059\u3067\u306B\u5B58\u5728\u3057\u307E\u3059\u3002\u5225\u306E\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u6307\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044\u3002
|
|
||||||
FileChooser.acceptAllFileFilterText=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB
|
# These strings are platform dependent not look and feel dependent.
|
||||||
FileChooser.cancelButtonText=\u53D6\u6D88
|
FileChooser.win32.newFolder=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||||
FileChooser.cancelButtonMnemonic=67
|
FileChooser.win32.newFolder.subsequent=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0({0})
|
||||||
FileChooser.saveButtonText=\u4FDD\u5B58
|
FileChooser.other.newFolder=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||||
FileChooser.saveButtonMnemonic=83
|
FileChooser.other.newFolder.subsequent=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0.{0}
|
||||||
FileChooser.openButtonText=\u958B\u304F
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=\u4FDD\u5B58
|
## file chooser tooltips ###
|
||||||
FileChooser.openDialogTitleText=\u958B\u304F
|
FileChooser.cancelButtonToolTip.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u30FB\u30C1\u30E5\u30FC\u30B6\u30FB\u30C0\u30A4\u30A2\u30ED\u30B0\u3092\u7D42\u4E86\u3057\u307E\u3059
|
||||||
FileChooser.updateButtonText=\u66F4\u65B0(U)
|
FileChooser.saveButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059
|
||||||
FileChooser.updateButtonMnemonic=85
|
FileChooser.openButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059
|
||||||
FileChooser.helpButtonText=\u30D8\u30EB\u30D7(H)
|
FileChooser.updateButtonToolTip.textAndMnemonic=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306E\u30EA\u30B9\u30C8\u3092\u66F4\u65B0\u3057\u307E\u3059
|
||||||
FileChooser.helpButtonMnemonic=72
|
FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser\u306E\u30D8\u30EB\u30D7\u3067\u3059
|
||||||
FileChooser.directoryOpenButtonText=\u958B\u304F(O)
|
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u958B\u304D\u307E\u3059
|
||||||
FileChooser.directoryOpenButtonMnemonic=79
|
|
||||||
|
FileChooser.filesListAccessibleName=Files List
|
||||||
# File Size Units
|
FileChooser.filesDetailsAccessibleName=Files Details
|
||||||
FileChooser.fileSizeKiloBytes={0} KB
|
|
||||||
FileChooser.fileSizeMegaBytes={0} MB
|
############ COLOR CHOOSER STRINGS #############
|
||||||
FileChooser.fileSizeGigaBytes={0} GB
|
ColorChooser.preview.textAndMnemonic=\u30D7\u30EC\u30D3\u30E5\u30FC
|
||||||
|
ColorChooser.ok.textAndMnemonic=OK
|
||||||
# These strings are platform dependent not look and feel dependent.
|
ColorChooser.cancel.textAndMnemonic=\u53D6\u6D88
|
||||||
FileChooser.win32.newFolder=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
ColorChooser.reset.textAndMnemonic=\u30EA\u30BB\u30C3\u30C8(&R)
|
||||||
FileChooser.win32.newFolder.subsequent=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0({0})
|
ColorChooser.sample.textAndMnemonic=\u30B5\u30F3\u30D7\u30EB\u30FB\u30C6\u30AD\u30B9\u30C8 \u30B5\u30F3\u30D7\u30EB\u30FB\u30C6\u30AD\u30B9\u30C8
|
||||||
FileChooser.other.newFolder=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
ColorChooser.swatches.textAndMnemonic=\u30B5\u30F3\u30D7\u30EB(&S)
|
||||||
FileChooser.other.newFolder.subsequent=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0.{0}
|
ColorChooser.swatchesRecent.textAndMnemonic=\u6700\u65B0:
|
||||||
|
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||||
|
ColorChooser.hsvHue.textAndMnemonic=\u8272\u76F8
|
||||||
## file chooser tooltips ###
|
ColorChooser.hsvSaturation.textAndMnemonic=\u5F69\u5EA6
|
||||||
FileChooser.cancelButtonToolTipText=\u30D5\u30A1\u30A4\u30EB\u30FB\u30C1\u30E5\u30FC\u30B6\u30FB\u30C0\u30A4\u30A2\u30ED\u30B0\u3092\u7D42\u4E86\u3057\u307E\u3059
|
ColorChooser.hsvValue.textAndMnemonic=\u5024
|
||||||
FileChooser.saveButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059
|
ColorChooser.hsvTransparency.textAndMnemonic=\u900F\u660E\u5EA6
|
||||||
FileChooser.openButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059
|
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||||
FileChooser.updateButtonToolTipText=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306E\u30EA\u30B9\u30C8\u3092\u66F4\u65B0\u3057\u307E\u3059
|
ColorChooser.hslHue.textAndMnemonic=\u8272\u76F8
|
||||||
FileChooser.helpButtonToolTipText=FileChooser\u306E\u30D8\u30EB\u30D7\u3067\u3059
|
ColorChooser.hslSaturation.textAndMnemonic=\u5F69\u5EA6
|
||||||
FileChooser.directoryOpenButtonToolTipText=\u9078\u629E\u3057\u305F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u958B\u304D\u307E\u3059
|
ColorChooser.hslLightness.textAndMnemonic=\u660E\u5EA6
|
||||||
|
ColorChooser.hslTransparency.textAndMnemonic=\u900F\u660E\u5EA6
|
||||||
FileChooser.filesListAccessibleName=Files List
|
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||||
FileChooser.filesDetailsAccessibleName=Files Details
|
ColorChooser.rgbRed.textAndMnemonic=\u8D64(&D)
|
||||||
|
ColorChooser.rgbGreen.textAndMnemonic=\u7DD1(&N)
|
||||||
############ COLOR CHOOSER STRINGS #############
|
ColorChooser.rgbBlue.textAndMnemonic=\u9752(&B)
|
||||||
ColorChooser.previewText=\u30D7\u30EC\u30D3\u30E5\u30FC
|
ColorChooser.rgbAlpha.textAndMnemonic=\u30A2\u30EB\u30D5\u30A1
|
||||||
ColorChooser.okText=OK
|
ColorChooser.rgbHexCode.textAndMnemonic=\u8272\u30B3\u30FC\u30C9(&C)
|
||||||
ColorChooser.cancelText=\u53D6\u6D88
|
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||||
ColorChooser.resetText=\u30EA\u30BB\u30C3\u30C8(R)
|
ColorChooser.cmykCyan.textAndMnemonic=\u30B7\u30A2\u30F3
|
||||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
ColorChooser.cmykMagenta.textAndMnemonic=\u30DE\u30BC\u30F3\u30BF
|
||||||
ColorChooser.resetMnemonic=82
|
ColorChooser.cmykYellow.textAndMnemonic=\u9EC4
|
||||||
ColorChooser.sampleText=\u30B5\u30F3\u30D7\u30EB\u30FB\u30C6\u30AD\u30B9\u30C8 \u30B5\u30F3\u30D7\u30EB\u30FB\u30C6\u30AD\u30B9\u30C8
|
ColorChooser.cmykBlack.textAndMnemonic=\u9ED2
|
||||||
ColorChooser.swatchesNameText=\u30B5\u30F3\u30D7\u30EB(S)
|
ColorChooser.cmykAlpha.textAndMnemonic=\u30A2\u30EB\u30D5\u30A1
|
||||||
ColorChooser.swatchesMnemonic=83
|
|
||||||
ColorChooser.swatchesRecentText=\u6700\u65B0:
|
############ OPTION PANE STRINGS #############
|
||||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
# We only define mnemonics for YES/NO, but for completeness you can
|
||||||
# constant, and an index into the text to render the mnemonic as. The
|
# define mnemonics for any of the buttons.
|
||||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
OptionPane.yesButton.textAndMnemonic=\u306F\u3044(&Y)
|
||||||
# xxxDisplayedMnemonicIndex.
|
OptionPane.noButton.textAndMnemonic=\u3044\u3044\u3048(&N)
|
||||||
ColorChooser.hsvNameText=HSV
|
OptionPane.okButton.textAndMnemonic=&OK
|
||||||
ColorChooser.hsvMnemonic=72
|
OptionPane.cancelButton.textAndMnemonic=\u53D6\u6D88
|
||||||
ColorChooser.hsvHueText=\u8272\u76F8
|
OptionPane.title.textAndMnemonic=\u30AA\u30D7\u30B7\u30E7\u30F3\u306E\u9078\u629E
|
||||||
ColorChooser.hsvSaturationText=\u5F69\u5EA6
|
# Title for the dialog for the showInputDialog methods. Only used if
|
||||||
ColorChooser.hsvValueText=\u5024
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hsvTransparencyText=\u900F\u660E\u5EA6
|
OptionPane.inputDialog.titleAndMnemonic=\u5165\u529B
|
||||||
ColorChooser.hslNameText=HSL
|
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||||
ColorChooser.hslMnemonic=76
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hslHueText=\u8272\u76F8
|
OptionPane.messageDialog.titleAndMnemonic=\u30E1\u30C3\u30BB\u30FC\u30B8
|
||||||
ColorChooser.hslSaturationText=\u5F69\u5EA6
|
|
||||||
ColorChooser.hslLightnessText=\u660E\u5EA6
|
############ Printing Dialog Strings ############
|
||||||
ColorChooser.hslTransparencyText=\u900F\u660E\u5EA6
|
PrintingDialog.titleProgress.textAndMnemonic=\u5370\u5237\u3057\u3066\u3044\u307E\u3059
|
||||||
ColorChooser.rgbNameText=RGB
|
PrintingDialog.titleAborting.textAndMnemonic=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059
|
||||||
ColorChooser.rgbMnemonic=71
|
|
||||||
ColorChooser.rgbRedText=\u8D64
|
PrintingDialog.contentInitial.textAndMnemonic=\u5370\u5237\u4E2D...
|
||||||
ColorChooser.rgbRedMnemonic=68
|
|
||||||
ColorChooser.rgbGreenText=\u7DD1
|
# The following string will be formatted by a MessageFormat
|
||||||
ColorChooser.rgbGreenMnemonic=78
|
# and {0} will be replaced by page number being printed
|
||||||
ColorChooser.rgbBlueText=\u9752
|
PrintingDialog.contentProgress.textAndMnemonic=\u30DA\u30FC\u30B8{0}\u3092\u5370\u5237\u3057\u307E\u3057\u305F...
|
||||||
ColorChooser.rgbBlueMnemonic=66
|
|
||||||
ColorChooser.rgbAlphaText=\u30A2\u30EB\u30D5\u30A1
|
PrintingDialog.contentAborting.textAndMnemonic=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059...
|
||||||
ColorChooser.rgbHexCodeText=\u8272\u30B3\u30FC\u30C9(C)
|
|
||||||
ColorChooser.rgbHexCodeMnemonic=67
|
PrintingDialog.abortButton.textAndMnemonic=\u4E2D\u6B62(&A)
|
||||||
ColorChooser.cmykNameText=CMYK
|
PrintingDialog.abortButtonToolTip.textAndMnemonic=\u5370\u5237\u306E\u4E2D\u6B62
|
||||||
ColorChooser.cmykMnemonic=77
|
|
||||||
ColorChooser.cmykCyanText=\u30B7\u30A2\u30F3
|
############ Internal Frame Strings ############
|
||||||
ColorChooser.cmykMagentaText=\u30DE\u30BC\u30F3\u30BF
|
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
|
||||||
ColorChooser.cmykYellowText=\u9EC4
|
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
|
||||||
ColorChooser.cmykBlackText=\u9ED2
|
InternalFrame.restoreButtonToolTip=\u5FA9\u5143
|
||||||
ColorChooser.cmykAlphaText=\u30A2\u30EB\u30D5\u30A1
|
InternalFrame.closeButtonToolTip=\u9589\u3058\u308B
|
||||||
|
|
||||||
############ OPTION PANE STRINGS #############
|
############ Internal Frame Title Pane Strings ############
|
||||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
InternalFrameTitlePane.restoreButton.textAndMnemonic=\u5FA9\u5143
|
||||||
# We only define mnemonics for YES/NO, but for completeness you can
|
InternalFrameTitlePane.moveButton.textAndMnemonic=\u79FB\u52D5
|
||||||
# define mnemonics for any of the buttons.
|
InternalFrameTitlePane.sizeButton.textAndMnemonic=\u30B5\u30A4\u30BA
|
||||||
OptionPane.yesButtonText=\u306F\u3044(Y)
|
InternalFrameTitlePane.minimizeButton.textAndMnemonic=\u6700\u5C0F\u5316
|
||||||
OptionPane.yesButtonMnemonic=89
|
InternalFrameTitlePane.maximizeButton.textAndMnemonic=\u6700\u5927\u5316
|
||||||
OptionPane.noButtonText=\u3044\u3044\u3048(N)
|
InternalFrameTitlePane.closeButton.textAndMnemonic=\u9589\u3058\u308B
|
||||||
OptionPane.noButtonMnemonic=78
|
|
||||||
OptionPane.okButtonText=OK
|
############ Text strings #############
|
||||||
OptionPane.okButtonMnemonic=O
|
# Used for html forms
|
||||||
OptionPane.cancelButtonText=\u53D6\u6D88
|
FormView.submitButton.textAndMnemonic=\u554F\u5408\u305B\u306E\u5B9F\u884C
|
||||||
OptionPane.cancelButtonMnemonic=0
|
FormView.resetButton.textAndMnemonic=\u30EA\u30BB\u30C3\u30C8
|
||||||
OptionPane.titleText=\u30AA\u30D7\u30B7\u30E7\u30F3\u306E\u9078\u629E
|
FormView.browseFileButton.textAndMnemonic=\u53C2\u7167...
|
||||||
# Title for the dialog for the showInputDialog methods. Only used if
|
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
############ Abstract Document Strings ############
|
||||||
OptionPane.inputDialogTitle=\u5165\u529B
|
AbstractDocument.styleChange.textAndMnemonic=\u30B9\u30BF\u30A4\u30EB\u5909\u66F4
|
||||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
AbstractDocument.addition.textAndMnemonic=\u8FFD\u52A0
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
AbstractDocument.deletion.textAndMnemonic=\u524A\u9664
|
||||||
OptionPane.messageDialogTitle=\u30E1\u30C3\u30BB\u30FC\u30B8
|
AbstractDocument.undo.textAndMnemonic=\u5143\u306B\u623B\u3059
|
||||||
|
AbstractDocument.redo.textAndMnemonic=\u3084\u308A\u76F4\u3057
|
||||||
############ Printing Dialog Strings ############
|
|
||||||
PrintingDialog.titleProgressText=\u5370\u5237\u3057\u3066\u3044\u307E\u3059
|
############ Abstract Button Strings ############
|
||||||
PrintingDialog.titleAbortingText=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059
|
AbstractButton.click.textAndMnemonic=\u30AF\u30EA\u30C3\u30AF
|
||||||
|
|
||||||
PrintingDialog.contentInitialText=\u5370\u5237\u4E2D...
|
############ Abstract Undoable Edit Strings ############
|
||||||
|
AbstractUndoableEdit.undo.textAndMnemonic=\u5143\u306B\u623B\u3059
|
||||||
# The following string will be formatted by a MessageFormat
|
AbstractUndoableEdit.redo.textAndMnemonic=\u3084\u308A\u76F4\u3057
|
||||||
# and {0} will be replaced by page number being printed
|
|
||||||
PrintingDialog.contentProgressText=\u30DA\u30FC\u30B8{0}\u3092\u5370\u5237\u3057\u307E\u3057\u305F...
|
############ Combo Box Strings ############
|
||||||
|
ComboBox.togglePopup.textAndMnemonic=\u30C8\u30B0\u30EB\u30FB\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7
|
||||||
PrintingDialog.contentAbortingText=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059...
|
|
||||||
|
############ Progress Monitor Strings ############
|
||||||
PrintingDialog.abortButtonText=\u4E2D\u6B62(A)
|
ProgressMonitor.progress.textAndMnemonic=\u9032\u884C\u4E2D...
|
||||||
PrintingDialog.abortButtonMnemonic=65
|
|
||||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
############ Split Pane Strings ############
|
||||||
PrintingDialog.abortButtonToolTipText=\u5370\u5237\u306E\u4E2D\u6B62
|
SplitPane.leftButton.textAndMnemonic=\u5DE6\u30DC\u30BF\u30F3
|
||||||
|
SplitPane.rightButton.textAndMnemonic=\u53F3\u30DC\u30BF\u30F3
|
||||||
############ Internal Frame Strings ############
|
# Used for Isindex
|
||||||
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
|
IsindexView.prompt=\u691C\u7D22\u7528\u306E\u7D22\u5F15\u3067\u3059\u3002\u691C\u7D22\u3059\u308B\u30AD\u30FC\u30EF\u30FC\u30C9\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044:
|
||||||
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
|
|
||||||
InternalFrame.restoreButtonToolTip=\u5FA9\u5143
|
############ InternalFrameTitlePane Strings ############
|
||||||
InternalFrame.closeButtonToolTip=\u9589\u3058\u308B
|
InternalFrameTitlePane.iconifyButtonAccessibleName=\u30A2\u30A4\u30B3\u30F3\u5316
|
||||||
|
InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316
|
||||||
############ Internal Frame Title Pane Strings ############
|
InternalFrameTitlePane.closeButtonAccessibleName=\u9589\u3058\u308B
|
||||||
InternalFrameTitlePane.restoreButtonText=\u5FA9\u5143
|
|
||||||
InternalFrameTitlePane.moveButtonText=\u79FB\u52D5
|
|
||||||
InternalFrameTitlePane.sizeButtonText=\u30B5\u30A4\u30BA
|
|
||||||
InternalFrameTitlePane.minimizeButtonText=\u6700\u5C0F\u5316
|
|
||||||
InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316
|
|
||||||
InternalFrameTitlePane.closeButtonText=\u9589\u3058\u308B
|
|
||||||
|
|
||||||
############ Text strings #############
|
|
||||||
# Used for html forms
|
|
||||||
FormView.submitButtonText=\u554F\u5408\u305B\u306E\u5B9F\u884C
|
|
||||||
FormView.resetButtonText=\u30EA\u30BB\u30C3\u30C8
|
|
||||||
FormView.browseFileButtonText=\u53C2\u7167...
|
|
||||||
|
|
||||||
############ Abstract Document Strings ############
|
|
||||||
AbstractDocument.styleChangeText=\u30B9\u30BF\u30A4\u30EB\u5909\u66F4
|
|
||||||
AbstractDocument.additionText=\u8FFD\u52A0
|
|
||||||
AbstractDocument.deletionText=\u524A\u9664
|
|
||||||
AbstractDocument.undoText=\u5143\u306B\u623B\u3059
|
|
||||||
AbstractDocument.redoText=\u3084\u308A\u76F4\u3057
|
|
||||||
|
|
||||||
############ Abstract Button Strings ############
|
|
||||||
AbstractButton.clickText=\u30AF\u30EA\u30C3\u30AF
|
|
||||||
|
|
||||||
############ Abstract Undoable Edit Strings ############
|
|
||||||
AbstractUndoableEdit.undoText=\u5143\u306B\u623B\u3059
|
|
||||||
AbstractUndoableEdit.redoText=\u3084\u308A\u76F4\u3057
|
|
||||||
|
|
||||||
############ Combo Box Strings ############
|
|
||||||
ComboBox.togglePopupText=\u30C8\u30B0\u30EB\u30FB\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7
|
|
||||||
|
|
||||||
############ Progress Monitor Strings ############
|
|
||||||
ProgressMonitor.progressText=\u9032\u884C\u4E2D...
|
|
||||||
|
|
||||||
############ Split Pane Strings ############
|
|
||||||
SplitPane.leftButtonText=\u5DE6\u30DC\u30BF\u30F3
|
|
||||||
SplitPane.rightButtonText=\u53F3\u30DC\u30BF\u30F3
|
|
||||||
# Used for Isindex
|
|
||||||
IsindexView.prompt=\u691C\u7D22\u7528\u306E\u7D22\u5F15\u3067\u3059\u3002\u691C\u7D22\u3059\u308B\u30AD\u30FC\u30EF\u30FC\u30C9\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044:
|
|
||||||
|
|
||||||
############ InternalFrameTitlePane Strings ############
|
|
||||||
InternalFrameTitlePane.iconifyButtonAccessibleName=\u30A2\u30A4\u30B3\u30F3\u5316
|
|
||||||
InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316
|
|
||||||
InternalFrameTitlePane.closeButtonAccessibleName=\u9589\u3058\u308B
|
|
||||||
|
|
||||||
|
@ -1,229 +1,186 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used in Swing
|
# It contains Locale specific strings used in Swing
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# ColorChooser
|
# ColorChooser
|
||||||
# FileChooser
|
# FileChooser
|
||||||
# OptionPane
|
# OptionPane
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# MNEMONIC NOTE:
|
# MNEMONIC NOTE:
|
||||||
# Many of strings in this file are used by widgets that have a
|
# Many of strings in this file are used by widgets that have a
|
||||||
# mnemonic, for example:
|
# mnemonic, for example:
|
||||||
# ColorChooser.rgbNameText=RGB
|
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||||
# ColorChooser.rgbMnemonic=71
|
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
# a decoration will be provided under the 'G'. This will typically
|
||||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
# look like: RGB
|
||||||
# a decoration will be provided under the 'G'. This will typically
|
# -
|
||||||
# look like: RGB
|
#
|
||||||
# -
|
# One important thing to remember is that the mnemonic MUST exist in
|
||||||
# 71 corresponds to the decimal value of the VK constant defined
|
# the String, if it does not exist you should add text that makes it
|
||||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
# exist. This will typically take the form 'XXXX (M)' where M is the
|
||||||
#
|
# character for the mnemonic.
|
||||||
# public static final int VK_G = 0x47;
|
#
|
||||||
#
|
# @author Steve Wilson
|
||||||
# 0x47 is a hex number and needs to be converted to decimal.
|
|
||||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
############ FILE CHOOSER STRINGS #############
|
||||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
FileChooser.fileDescription.textAndMnemonic=\uC77C\uBC18 \uD30C\uC77C
|
||||||
# for 'a' is 65, 'b' is 66...
|
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.
|
||||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
FileChooser.newFolderErrorSeparator= :
|
||||||
# character that should be underlined in the String, with 0
|
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\uD3F4\uB354\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC74C
|
||||||
# corresponding to the first character in the String.
|
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
|
||||||
# One important thing to remember is that the mnemonic MUST exist in
|
FileChooser.renameError.textAndMnemonic={0}\uC758 \uC774\uB984\uC744 \uBC14\uAFC0 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||||
# the String, if it does not exist you should add text that makes it
|
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.
|
||||||
# exist. This will typically take the form 'XXXX (M)' where M is the
|
FileChooser.acceptAllFileFilter.textAndMnemonic=\uBAA8\uB4E0 \uD30C\uC77C
|
||||||
# character for the mnemonic.
|
FileChooser.cancelButton.textAndMnemonic=\uCDE8\uC18C(&C)
|
||||||
#
|
FileChooser.saveButton.textAndMnemonic=\uC800\uC7A5(&S)
|
||||||
# @author Steve Wilson
|
FileChooser.openButton.textAndMnemonic=\uC5F4\uAE30(&O)
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=\uC800\uC7A5
|
||||||
############ FILE CHOOSER STRINGS #############
|
FileChooser.openDialogTitle.textAndMnemonic=\uC5F4\uAE30
|
||||||
FileChooser.fileDescriptionText=\uC77C\uBC18 \uD30C\uC77C
|
FileChooser.updateButton.textAndMnemonic=\uAC31\uC2E0(&U)
|
||||||
FileChooser.directoryDescriptionText=\uB514\uB809\uD1A0\uB9AC
|
FileChooser.helpButton.textAndMnemonic=\uB3C4\uC6C0\uB9D0(&H)
|
||||||
FileChooser.newFolderErrorText=\uC0C8 \uD3F4\uB354\uB97C \uC0DD\uC131\uD558\uB294 \uC911 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4.
|
FileChooser.directoryOpenButton.textAndMnemonic=\uC5F4\uAE30(&O)
|
||||||
FileChooser.newFolderErrorSeparator= :
|
|
||||||
FileChooser.newFolderParentDoesntExistTitleText=\uD3F4\uB354\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC74C
|
# File Size Units
|
||||||
FileChooser.newFolderParentDoesntExistText=\uD3F4\uB354\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.\n\n\uC2DC\uC2A4\uD15C\uC5D0\uC11C \uC9C0\uC815\uB41C \uACBD\uB85C\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
FileChooser.fileSizeKiloBytes={0} KB
|
||||||
FileChooser.renameErrorTitleText=\uD30C\uC77C \uB610\uB294 \uD3F4\uB354 \uC774\uB984 \uBC14\uAFB8\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD
|
FileChooser.fileSizeMegaBytes={0} MB
|
||||||
FileChooser.renameErrorText={0}\uC758 \uC774\uB984\uC744 \uBC14\uAFC0 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
FileChooser.fileSizeGigaBytes={0} GB
|
||||||
FileChooser.renameErrorFileExistsText={0}\uC758 \uC774\uB984\uC744 \uBC14\uAFC0 \uC218 \uC5C6\uC74C: \uC9C0\uC815\uD55C \uC774\uB984\uC744 \uC0AC\uC6A9\uD558\uB294 \uD30C\uC77C\uC774 \uC874\uC7AC\uD569\uB2C8\uB2E4. \uB2E4\uB978 \uD30C\uC77C \uC774\uB984\uC744 \uC9C0\uC815\uD558\uC2ED\uC2DC\uC624.
|
|
||||||
FileChooser.acceptAllFileFilterText=\uBAA8\uB4E0 \uD30C\uC77C
|
# These strings are platform dependent not look and feel dependent.
|
||||||
FileChooser.cancelButtonText=\uCDE8\uC18C
|
FileChooser.win32.newFolder=\uC0C8 \uD3F4\uB354
|
||||||
FileChooser.cancelButtonMnemonic=67
|
FileChooser.win32.newFolder.subsequent=\uC0C8 \uD3F4\uB354({0})
|
||||||
FileChooser.saveButtonText=\uC800\uC7A5
|
FileChooser.other.newFolder=NewFolder
|
||||||
FileChooser.saveButtonMnemonic=83
|
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||||
FileChooser.openButtonText=\uC5F4\uAE30
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=\uC800\uC7A5
|
## file chooser tooltips ###
|
||||||
FileChooser.openDialogTitleText=\uC5F4\uAE30
|
FileChooser.cancelButtonToolTip.textAndMnemonic=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790 \uC911\uB2E8
|
||||||
FileChooser.updateButtonText=\uAC31\uC2E0(U)
|
FileChooser.saveButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C \uC800\uC7A5
|
||||||
FileChooser.updateButtonMnemonic=85
|
FileChooser.openButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C \uC5F4\uAE30
|
||||||
FileChooser.helpButtonText=\uB3C4\uC6C0\uB9D0(H)
|
FileChooser.updateButtonToolTip.textAndMnemonic=\uB514\uB809\uD1A0\uB9AC \uBAA9\uB85D \uAC31\uC2E0
|
||||||
FileChooser.helpButtonMnemonic=72
|
FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser \uB3C4\uC6C0\uB9D0
|
||||||
FileChooser.directoryOpenButtonText=\uC5F4\uAE30(O)
|
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uB514\uB809\uD1A0\uB9AC \uC5F4\uAE30
|
||||||
FileChooser.directoryOpenButtonMnemonic=79
|
|
||||||
|
FileChooser.filesListAccessibleName=Files List
|
||||||
# File Size Units
|
FileChooser.filesDetailsAccessibleName=Files Details
|
||||||
FileChooser.fileSizeKiloBytes={0} KB
|
|
||||||
FileChooser.fileSizeMegaBytes={0} MB
|
############ COLOR CHOOSER STRINGS #############
|
||||||
FileChooser.fileSizeGigaBytes={0} GB
|
ColorChooser.preview.textAndMnemonic=\uBBF8\uB9AC\uBCF4\uAE30
|
||||||
|
ColorChooser.ok.textAndMnemonic=\uD655\uC778
|
||||||
# These strings are platform dependent not look and feel dependent.
|
ColorChooser.cancel.textAndMnemonic=\uCDE8\uC18C
|
||||||
FileChooser.win32.newFolder=\uC0C8 \uD3F4\uB354
|
ColorChooser.reset.textAndMnemonic=\uC7AC\uC124\uC815(&R)
|
||||||
FileChooser.win32.newFolder.subsequent=\uC0C8 \uD3F4\uB354({0})
|
ColorChooser.sample.textAndMnemonic=\uC0D8\uD50C \uD14D\uC2A4\uD2B8 \uC0D8\uD50C \uD14D\uC2A4\uD2B8
|
||||||
FileChooser.other.newFolder=NewFolder
|
ColorChooser.swatches.textAndMnemonic=\uACAC\uBCF8(&S)
|
||||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
ColorChooser.swatchesRecent.textAndMnemonic=\uCD5C\uADFC \uBAA9\uB85D:
|
||||||
|
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||||
|
ColorChooser.hsvHue.textAndMnemonic=\uC0C9\uC870
|
||||||
## file chooser tooltips ###
|
ColorChooser.hsvSaturation.textAndMnemonic=\uCC44\uB3C4
|
||||||
FileChooser.cancelButtonToolTipText=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790 \uC911\uB2E8
|
ColorChooser.hsvValue.textAndMnemonic=\uAC12
|
||||||
FileChooser.saveButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C \uC800\uC7A5
|
ColorChooser.hsvTransparency.textAndMnemonic=\uD22C\uBA85
|
||||||
FileChooser.openButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C \uC5F4\uAE30
|
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||||
FileChooser.updateButtonToolTipText=\uB514\uB809\uD1A0\uB9AC \uBAA9\uB85D \uAC31\uC2E0
|
ColorChooser.hslHue.textAndMnemonic=\uC0C9\uC870
|
||||||
FileChooser.helpButtonToolTipText=FileChooser \uB3C4\uC6C0\uB9D0
|
ColorChooser.hslSaturation.textAndMnemonic=\uCC44\uB3C4
|
||||||
FileChooser.directoryOpenButtonToolTipText=\uC120\uD0DD\uB41C \uB514\uB809\uD1A0\uB9AC \uC5F4\uAE30
|
ColorChooser.hslLightness.textAndMnemonic=\uBC1D\uAE30
|
||||||
|
ColorChooser.hslTransparency.textAndMnemonic=\uD22C\uBA85
|
||||||
FileChooser.filesListAccessibleName=Files List
|
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||||
FileChooser.filesDetailsAccessibleName=Files Details
|
ColorChooser.rgbRed.textAndMnemonic=\uBE68\uAC04\uC0C9(&D)
|
||||||
|
ColorChooser.rgbGreen.textAndMnemonic=\uB179\uC0C9(&N)
|
||||||
############ COLOR CHOOSER STRINGS #############
|
ColorChooser.rgbBlue.textAndMnemonic=\uD30C\uB780\uC0C9(&B)
|
||||||
ColorChooser.previewText=\uBBF8\uB9AC\uBCF4\uAE30
|
ColorChooser.rgbAlpha.textAndMnemonic=\uC54C\uD30C
|
||||||
ColorChooser.okText=\uD655\uC778
|
ColorChooser.rgbHexCode.textAndMnemonic=\uC0C9\uC0C1 \uCF54\uB4DC(&C)
|
||||||
ColorChooser.cancelText=\uCDE8\uC18C
|
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||||
ColorChooser.resetText=\uC7AC\uC124\uC815(R)
|
ColorChooser.cmykCyan.textAndMnemonic=\uCCAD\uB85D\uC0C9
|
||||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
ColorChooser.cmykMagenta.textAndMnemonic=\uC9C4\uD64D\uC0C9
|
||||||
ColorChooser.resetMnemonic=82
|
ColorChooser.cmykYellow.textAndMnemonic=\uB178\uB780\uC0C9
|
||||||
ColorChooser.sampleText=\uC0D8\uD50C \uD14D\uC2A4\uD2B8 \uC0D8\uD50C \uD14D\uC2A4\uD2B8
|
ColorChooser.cmykBlack.textAndMnemonic=\uAC80\uC815\uC0C9
|
||||||
ColorChooser.swatchesNameText=\uACAC\uBCF8(S)
|
ColorChooser.cmykAlpha.textAndMnemonic=\uC54C\uD30C
|
||||||
ColorChooser.swatchesMnemonic=83
|
|
||||||
ColorChooser.swatchesRecentText=\uCD5C\uADFC \uBAA9\uB85D:
|
############ OPTION PANE STRINGS #############
|
||||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
# We only define mnemonics for YES/NO, but for completeness you can
|
||||||
# constant, and an index into the text to render the mnemonic as. The
|
# define mnemonics for any of the buttons.
|
||||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
OptionPane.yesButton.textAndMnemonic=\uC608(&Y)
|
||||||
# xxxDisplayedMnemonicIndex.
|
OptionPane.noButton.textAndMnemonic=\uC544\uB2C8\uC624(&N)
|
||||||
ColorChooser.hsvNameText=HSV
|
OptionPane.okButton.textAndMnemonic=\uD655\uC778(&O)
|
||||||
ColorChooser.hsvMnemonic=72
|
OptionPane.cancelButton.textAndMnemonic=\uCDE8\uC18C
|
||||||
ColorChooser.hsvHueText=\uC0C9\uC870
|
OptionPane.title.textAndMnemonic=\uC635\uC158 \uC120\uD0DD
|
||||||
ColorChooser.hsvSaturationText=\uCC44\uB3C4
|
# Title for the dialog for the showInputDialog methods. Only used if
|
||||||
ColorChooser.hsvValueText=\uAC12
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hsvTransparencyText=\uD22C\uBA85
|
OptionPane.inputDialog.titleAndMnemonic=\uC785\uB825
|
||||||
ColorChooser.hslNameText=HSL
|
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||||
ColorChooser.hslMnemonic=76
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hslHueText=\uC0C9\uC870
|
OptionPane.messageDialog.titleAndMnemonic=\uBA54\uC2DC\uC9C0
|
||||||
ColorChooser.hslSaturationText=\uCC44\uB3C4
|
|
||||||
ColorChooser.hslLightnessText=\uBC1D\uAE30
|
############ Printing Dialog Strings ############
|
||||||
ColorChooser.hslTransparencyText=\uD22C\uBA85
|
PrintingDialog.titleProgress.textAndMnemonic=\uC778\uC1C4
|
||||||
ColorChooser.rgbNameText=RGB
|
PrintingDialog.titleAborting.textAndMnemonic=\uC778\uC1C4(\uC911\uB2E8 \uC911)
|
||||||
ColorChooser.rgbMnemonic=71
|
|
||||||
ColorChooser.rgbRedText=\uBE68\uAC04\uC0C9
|
PrintingDialog.contentInitial.textAndMnemonic=\uC778\uC1C4 \uC9C4\uD589 \uC911...
|
||||||
ColorChooser.rgbRedMnemonic=68
|
|
||||||
ColorChooser.rgbGreenText=\uB179\uC0C9
|
# The following string will be formatted by a MessageFormat
|
||||||
ColorChooser.rgbGreenMnemonic=78
|
# and {0} will be replaced by page number being printed
|
||||||
ColorChooser.rgbBlueText=\uD30C\uB780\uC0C9
|
PrintingDialog.contentProgress.textAndMnemonic=\uC778\uC1C4\uB41C \uD398\uC774\uC9C0 {0}...
|
||||||
ColorChooser.rgbBlueMnemonic=66
|
|
||||||
ColorChooser.rgbAlphaText=\uC54C\uD30C
|
PrintingDialog.contentAborting.textAndMnemonic=\uC778\uC1C4 \uC911\uB2E8 \uC911...
|
||||||
ColorChooser.rgbHexCodeText=\uC0C9\uC0C1 \uCF54\uB4DC(C)
|
|
||||||
ColorChooser.rgbHexCodeMnemonic=67
|
PrintingDialog.abortButton.textAndMnemonic=\uC911\uB2E8(&A)
|
||||||
ColorChooser.cmykNameText=CMYK
|
PrintingDialog.abortButtonToolTip.textAndMnemonic=\uC778\uC1C4 \uC911\uB2E8
|
||||||
ColorChooser.cmykMnemonic=77
|
|
||||||
ColorChooser.cmykCyanText=\uCCAD\uB85D\uC0C9
|
############ Internal Frame Strings ############
|
||||||
ColorChooser.cmykMagentaText=\uC9C4\uD64D\uC0C9
|
InternalFrame.iconButtonToolTip=\uCD5C\uC18C\uD654
|
||||||
ColorChooser.cmykYellowText=\uB178\uB780\uC0C9
|
InternalFrame.maxButtonToolTip=\uCD5C\uB300\uD654
|
||||||
ColorChooser.cmykBlackText=\uAC80\uC815\uC0C9
|
InternalFrame.restoreButtonToolTip=\uBCF5\uC6D0
|
||||||
ColorChooser.cmykAlphaText=\uC54C\uD30C
|
InternalFrame.closeButtonToolTip=\uB2EB\uAE30
|
||||||
|
|
||||||
############ OPTION PANE STRINGS #############
|
############ Internal Frame Title Pane Strings ############
|
||||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
InternalFrameTitlePane.restoreButton.textAndMnemonic=\uBCF5\uC6D0
|
||||||
# We only define mnemonics for YES/NO, but for completeness you can
|
InternalFrameTitlePane.moveButton.textAndMnemonic=\uC774\uB3D9
|
||||||
# define mnemonics for any of the buttons.
|
InternalFrameTitlePane.sizeButton.textAndMnemonic=\uD06C\uAE30
|
||||||
OptionPane.yesButtonText=\uC608(Y)
|
InternalFrameTitlePane.minimizeButton.textAndMnemonic=\uCD5C\uC18C\uD654
|
||||||
OptionPane.yesButtonMnemonic=89
|
InternalFrameTitlePane.maximizeButton.textAndMnemonic=\uCD5C\uB300\uD654
|
||||||
OptionPane.noButtonText=\uC544\uB2C8\uC624(N)
|
InternalFrameTitlePane.closeButton.textAndMnemonic=\uB2EB\uAE30
|
||||||
OptionPane.noButtonMnemonic=78
|
|
||||||
OptionPane.okButtonText=\uD655\uC778
|
############ Text strings #############
|
||||||
OptionPane.okButtonMnemonic=O
|
# Used for html forms
|
||||||
OptionPane.cancelButtonText=\uCDE8\uC18C
|
FormView.submitButton.textAndMnemonic=\uC9C8\uC758 \uC81C\uCD9C
|
||||||
OptionPane.cancelButtonMnemonic=0
|
FormView.resetButton.textAndMnemonic=\uC7AC\uC124\uC815
|
||||||
OptionPane.titleText=\uC635\uC158 \uC120\uD0DD
|
FormView.browseFileButton.textAndMnemonic=\uCC3E\uC544\uBCF4\uAE30...
|
||||||
# Title for the dialog for the showInputDialog methods. Only used if
|
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
############ Abstract Document Strings ############
|
||||||
OptionPane.inputDialogTitle=\uC785\uB825
|
AbstractDocument.styleChange.textAndMnemonic=\uC2A4\uD0C0\uC77C \uBCC0\uACBD
|
||||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
AbstractDocument.addition.textAndMnemonic=\uCD94\uAC00
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
AbstractDocument.deletion.textAndMnemonic=\uC0AD\uC81C
|
||||||
OptionPane.messageDialogTitle=\uBA54\uC2DC\uC9C0
|
AbstractDocument.undo.textAndMnemonic=\uC2E4\uD589 \uCDE8\uC18C
|
||||||
|
AbstractDocument.redo.textAndMnemonic=\uC7AC\uC2E4\uD589
|
||||||
############ Printing Dialog Strings ############
|
|
||||||
PrintingDialog.titleProgressText=\uC778\uC1C4
|
############ Abstract Button Strings ############
|
||||||
PrintingDialog.titleAbortingText=\uC778\uC1C4(\uC911\uB2E8 \uC911)
|
AbstractButton.click.textAndMnemonic=\uB204\uB974\uAE30
|
||||||
|
|
||||||
PrintingDialog.contentInitialText=\uC778\uC1C4 \uC9C4\uD589 \uC911...
|
############ Abstract Undoable Edit Strings ############
|
||||||
|
AbstractUndoableEdit.undo.textAndMnemonic=\uC2E4\uD589 \uCDE8\uC18C
|
||||||
# The following string will be formatted by a MessageFormat
|
AbstractUndoableEdit.redo.textAndMnemonic=\uC7AC\uC2E4\uD589
|
||||||
# and {0} will be replaced by page number being printed
|
|
||||||
PrintingDialog.contentProgressText=\uC778\uC1C4\uB41C \uD398\uC774\uC9C0 {0}...
|
############ Combo Box Strings ############
|
||||||
|
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||||
PrintingDialog.contentAbortingText=\uC778\uC1C4 \uC911\uB2E8 \uC911...
|
|
||||||
|
############ Progress Monitor Strings ############
|
||||||
PrintingDialog.abortButtonText=\uC911\uB2E8(A)
|
ProgressMonitor.progress.textAndMnemonic=\uC9C4\uD589...
|
||||||
PrintingDialog.abortButtonMnemonic=65
|
|
||||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
############ Split Pane Strings ############
|
||||||
PrintingDialog.abortButtonToolTipText=\uC778\uC1C4 \uC911\uB2E8
|
SplitPane.leftButton.textAndMnemonic=\uC67C\uCABD \uB2E8\uCD94
|
||||||
|
SplitPane.rightButton.textAndMnemonic=\uC624\uB978\uCABD \uB2E8\uCD94
|
||||||
############ Internal Frame Strings ############
|
# Used for Isindex
|
||||||
InternalFrame.iconButtonToolTip=\uCD5C\uC18C\uD654
|
IsindexView.prompt=\uB2E4\uC74C\uC740 \uAC80\uC0C9 \uAC00\uB2A5\uD55C \uC778\uB371\uC2A4\uC785\uB2C8\uB2E4. \uAC80\uC0C9 \uD0A4\uC6CC\uB4DC \uC785\uB825:
|
||||||
InternalFrame.maxButtonToolTip=\uCD5C\uB300\uD654
|
|
||||||
InternalFrame.restoreButtonToolTip=\uBCF5\uC6D0
|
############ InternalFrameTitlePane Strings ############
|
||||||
InternalFrame.closeButtonToolTip=\uB2EB\uAE30
|
InternalFrameTitlePane.iconifyButtonAccessibleName=\uC544\uC774\uCF58\uD654
|
||||||
|
InternalFrameTitlePane.maximizeButtonAccessibleName=\uCD5C\uB300\uD654
|
||||||
############ Internal Frame Title Pane Strings ############
|
InternalFrameTitlePane.closeButtonAccessibleName=\uB2EB\uAE30
|
||||||
InternalFrameTitlePane.restoreButtonText=\uBCF5\uC6D0
|
|
||||||
InternalFrameTitlePane.moveButtonText=\uC774\uB3D9
|
|
||||||
InternalFrameTitlePane.sizeButtonText=\uD06C\uAE30
|
|
||||||
InternalFrameTitlePane.minimizeButtonText=\uCD5C\uC18C\uD654
|
|
||||||
InternalFrameTitlePane.maximizeButtonText=\uCD5C\uB300\uD654
|
|
||||||
InternalFrameTitlePane.closeButtonText=\uB2EB\uAE30
|
|
||||||
|
|
||||||
############ Text strings #############
|
|
||||||
# Used for html forms
|
|
||||||
FormView.submitButtonText=\uC9C8\uC758 \uC81C\uCD9C
|
|
||||||
FormView.resetButtonText=\uC7AC\uC124\uC815
|
|
||||||
FormView.browseFileButtonText=\uCC3E\uC544\uBCF4\uAE30...
|
|
||||||
|
|
||||||
############ Abstract Document Strings ############
|
|
||||||
AbstractDocument.styleChangeText=\uC2A4\uD0C0\uC77C \uBCC0\uACBD
|
|
||||||
AbstractDocument.additionText=\uCD94\uAC00
|
|
||||||
AbstractDocument.deletionText=\uC0AD\uC81C
|
|
||||||
AbstractDocument.undoText=\uC2E4\uD589 \uCDE8\uC18C
|
|
||||||
AbstractDocument.redoText=\uC7AC\uC2E4\uD589
|
|
||||||
|
|
||||||
############ Abstract Button Strings ############
|
|
||||||
AbstractButton.clickText=\uB204\uB974\uAE30
|
|
||||||
|
|
||||||
############ Abstract Undoable Edit Strings ############
|
|
||||||
AbstractUndoableEdit.undoText=\uC2E4\uD589 \uCDE8\uC18C
|
|
||||||
AbstractUndoableEdit.redoText=\uC7AC\uC2E4\uD589
|
|
||||||
|
|
||||||
############ Combo Box Strings ############
|
|
||||||
ComboBox.togglePopupText=togglePopup
|
|
||||||
|
|
||||||
############ Progress Monitor Strings ############
|
|
||||||
ProgressMonitor.progressText=\uC9C4\uD589...
|
|
||||||
|
|
||||||
############ Split Pane Strings ############
|
|
||||||
SplitPane.leftButtonText=\uC67C\uCABD \uB2E8\uCD94
|
|
||||||
SplitPane.rightButtonText=\uC624\uB978\uCABD \uB2E8\uCD94
|
|
||||||
# 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:
|
|
||||||
|
|
||||||
############ InternalFrameTitlePane Strings ############
|
|
||||||
InternalFrameTitlePane.iconifyButtonAccessibleName=\uC544\uC774\uCF58\uD654
|
|
||||||
InternalFrameTitlePane.maximizeButtonAccessibleName=\uCD5C\uB300\uD654
|
|
||||||
InternalFrameTitlePane.closeButtonAccessibleName=\uB2EB\uAE30
|
|
||||||
|
|
||||||
|
@ -1,229 +1,186 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used in Swing
|
# It contains Locale specific strings used in Swing
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# ColorChooser
|
# ColorChooser
|
||||||
# FileChooser
|
# FileChooser
|
||||||
# OptionPane
|
# OptionPane
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# MNEMONIC NOTE:
|
# MNEMONIC NOTE:
|
||||||
# Many of strings in this file are used by widgets that have a
|
# Many of strings in this file are used by widgets that have a
|
||||||
# mnemonic, for example:
|
# mnemonic, for example:
|
||||||
# ColorChooser.rgbNameText=RGB
|
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||||
# ColorChooser.rgbMnemonic=71
|
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
# a decoration will be provided under the 'G'. This will typically
|
||||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
# look like: RGB
|
||||||
# a decoration will be provided under the 'G'. This will typically
|
# -
|
||||||
# look like: RGB
|
#
|
||||||
# -
|
# One important thing to remember is that the mnemonic MUST exist in
|
||||||
# 71 corresponds to the decimal value of the VK constant defined
|
# the String, if it does not exist you should add text that makes it
|
||||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
# exist. This will typically take the form 'XXXX (M)' where M is the
|
||||||
#
|
# character for the mnemonic.
|
||||||
# public static final int VK_G = 0x47;
|
#
|
||||||
#
|
# @author Steve Wilson
|
||||||
# 0x47 is a hex number and needs to be converted to decimal.
|
|
||||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
############ FILE CHOOSER STRINGS #############
|
||||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
FileChooser.fileDescription.textAndMnemonic=Arquivo Gen\u00E9rico
|
||||||
# for 'a' is 65, 'b' is 66...
|
FileChooser.directoryDescription.textAndMnemonic=Diret\u00F3rio
|
||||||
#
|
FileChooser.newFolderError.textAndMnemonic=Erro ao criar nova pasta
|
||||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
FileChooser.newFolderErrorSeparator= :
|
||||||
# character that should be underlined in the String, with 0
|
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel criar a pasta
|
||||||
# corresponding to the first character in the String.
|
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
|
||||||
# One important thing to remember is that the mnemonic MUST exist in
|
FileChooser.renameError.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel renomear {0}
|
||||||
# the String, if it does not exist you should add text that makes it
|
FileChooser.renameErrorFileExists.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel renomear {0}: Um arquivo com o nome especificado j\u00E1 existe. Especifique outro nome de arquivo.
|
||||||
# exist. This will typically take the form 'XXXX (M)' where M is the
|
FileChooser.acceptAllFileFilter.textAndMnemonic=Todos os Arquivos
|
||||||
# character for the mnemonic.
|
FileChooser.cancelButton.textAndMnemonic=&Cancelar
|
||||||
#
|
FileChooser.saveButton.textAndMnemonic=&Salvar
|
||||||
# @author Steve Wilson
|
FileChooser.openButton.textAndMnemonic=A&brir
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=Salvar
|
||||||
############ FILE CHOOSER STRINGS #############
|
FileChooser.openDialogTitle.textAndMnemonic=Abrir
|
||||||
FileChooser.fileDescriptionText=Arquivo Gen\u00E9rico
|
FileChooser.updateButton.textAndMnemonic=At&ualizar
|
||||||
FileChooser.directoryDescriptionText=Diret\u00F3rio
|
FileChooser.helpButton.textAndMnemonic=Aj&uda
|
||||||
FileChooser.newFolderErrorText=Erro ao criar nova pasta
|
FileChooser.directoryOpenButton.textAndMnemonic=A&brir
|
||||||
FileChooser.newFolderErrorSeparator= :
|
|
||||||
FileChooser.newFolderParentDoesntExistTitleText=N\u00E3o \u00E9 poss\u00EDvel criar a pasta
|
# File Size Units
|
||||||
FileChooser.newFolderParentDoesntExistText=N\u00E3o \u00E9 poss\u00EDvel criar a pasta.\n\nO sistema n\u00E3o pode localizar o caminho especificado.
|
FileChooser.fileSizeKiloBytes={0} KB
|
||||||
FileChooser.renameErrorTitleText=Erro ao Renomear o Arquivo ou a Pasta
|
FileChooser.fileSizeMegaBytes={0} MB
|
||||||
FileChooser.renameErrorText=N\u00E3o \u00E9 poss\u00EDvel renomear {0}
|
FileChooser.fileSizeGigaBytes={0} GB
|
||||||
FileChooser.renameErrorFileExistsText=N\u00E3o \u00E9 poss\u00EDvel renomear {0}: Um arquivo com o nome especificado j\u00E1 existe. Especifique outro nome de arquivo.
|
|
||||||
FileChooser.acceptAllFileFilterText=Todos os Arquivos
|
# These strings are platform dependent not look and feel dependent.
|
||||||
FileChooser.cancelButtonText=Cancelar
|
FileChooser.win32.newFolder=Nova Pasta
|
||||||
FileChooser.cancelButtonMnemonic=67
|
FileChooser.win32.newFolder.subsequent=Nova Pasta ({0})
|
||||||
FileChooser.saveButtonText=Salvar
|
FileChooser.other.newFolder=NewFolder
|
||||||
FileChooser.saveButtonMnemonic=83
|
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||||
FileChooser.openButtonText=Abrir
|
|
||||||
FileChooser.openButtonMnemonic=66
|
|
||||||
FileChooser.saveDialogTitleText=Salvar
|
## file chooser tooltips ###
|
||||||
FileChooser.openDialogTitleText=Abrir
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Abortar caixa de di\u00E1logo do seletor de arquivos
|
||||||
FileChooser.updateButtonText=Atualizar
|
FileChooser.saveButtonToolTip.textAndMnemonic=Salvar arquivo selecionado
|
||||||
FileChooser.updateButtonMnemonic=85
|
FileChooser.openButtonToolTip.textAndMnemonic=Abrir arquivo selecionado
|
||||||
FileChooser.helpButtonText=Ajuda
|
FileChooser.updateButtonToolTip.textAndMnemonic=Atualizar lista de diret\u00F3rios
|
||||||
FileChooser.helpButtonMnemonic=85
|
FileChooser.helpButtonToolTip.textAndMnemonic=Ajuda do FileChooser
|
||||||
FileChooser.directoryOpenButtonText=Abrir
|
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Abrir diret\u00F3rio selecionado
|
||||||
FileChooser.directoryOpenButtonMnemonic=66
|
|
||||||
|
FileChooser.filesListAccessibleName=Files List
|
||||||
# File Size Units
|
FileChooser.filesDetailsAccessibleName=Files Details
|
||||||
FileChooser.fileSizeKiloBytes={0} KB
|
|
||||||
FileChooser.fileSizeMegaBytes={0} MB
|
############ COLOR CHOOSER STRINGS #############
|
||||||
FileChooser.fileSizeGigaBytes={0} GB
|
ColorChooser.preview.textAndMnemonic=Visualizar
|
||||||
|
ColorChooser.ok.textAndMnemonic=OK
|
||||||
# These strings are platform dependent not look and feel dependent.
|
ColorChooser.cancel.textAndMnemonic=Cancelar
|
||||||
FileChooser.win32.newFolder=Nova Pasta
|
ColorChooser.reset.textAndMnemonic=&Redefinir
|
||||||
FileChooser.win32.newFolder.subsequent=Nova Pasta ({0})
|
ColorChooser.sample.textAndMnemonic=Texto de Amostra Texto de Amostra
|
||||||
FileChooser.other.newFolder=NewFolder
|
ColorChooser.swatches.textAndMnemonic=Amo&stras
|
||||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
ColorChooser.swatchesRecent.textAndMnemonic=Recente:
|
||||||
|
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||||
|
ColorChooser.hsvHue.textAndMnemonic=Matiz
|
||||||
## file chooser tooltips ###
|
ColorChooser.hsvSaturation.textAndMnemonic=Satura\u00E7\u00E3o
|
||||||
FileChooser.cancelButtonToolTipText=Abortar caixa de di\u00E1logo do seletor de arquivos
|
ColorChooser.hsvValue.textAndMnemonic=Valor
|
||||||
FileChooser.saveButtonToolTipText=Salvar arquivo selecionado
|
ColorChooser.hsvTransparency.textAndMnemonic=Transpar\u00EAncia
|
||||||
FileChooser.openButtonToolTipText=Abrir arquivo selecionado
|
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||||
FileChooser.updateButtonToolTipText=Atualizar lista de diret\u00F3rios
|
ColorChooser.hslHue.textAndMnemonic=Matiz
|
||||||
FileChooser.helpButtonToolTipText=Ajuda do FileChooser
|
ColorChooser.hslSaturation.textAndMnemonic=Satura\u00E7\u00E3o
|
||||||
FileChooser.directoryOpenButtonToolTipText=Abrir diret\u00F3rio selecionado
|
ColorChooser.hslLightness.textAndMnemonic=Clareza
|
||||||
|
ColorChooser.hslTransparency.textAndMnemonic=Transpar\u00EAncia
|
||||||
FileChooser.filesListAccessibleName=Files List
|
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||||
FileChooser.filesDetailsAccessibleName=Files Details
|
ColorChooser.rgbRed.textAndMnemonic=&Vermelho
|
||||||
|
ColorChooser.rgbGreen.textAndMnemonic=&Verde
|
||||||
############ COLOR CHOOSER STRINGS #############
|
ColorChooser.rgbBlue.textAndMnemonic=&Azul
|
||||||
ColorChooser.previewText=Visualizar
|
ColorChooser.rgbAlpha.textAndMnemonic=Alfa
|
||||||
ColorChooser.okText=OK
|
ColorChooser.rgbHexCode.textAndMnemonic=C\u00F3digo da Cor(&C)
|
||||||
ColorChooser.cancelText=Cancelar
|
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||||
ColorChooser.resetText=Redefinir
|
ColorChooser.cmykCyan.textAndMnemonic=Ciano
|
||||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
ColorChooser.cmykMagenta.textAndMnemonic=Magenta
|
||||||
ColorChooser.resetMnemonic=82
|
ColorChooser.cmykYellow.textAndMnemonic=Amarelo
|
||||||
ColorChooser.sampleText=Texto de Amostra Texto de Amostra
|
ColorChooser.cmykBlack.textAndMnemonic=Preto
|
||||||
ColorChooser.swatchesNameText=Amostras
|
ColorChooser.cmykAlpha.textAndMnemonic=Alfa
|
||||||
ColorChooser.swatchesMnemonic=83
|
|
||||||
ColorChooser.swatchesRecentText=Recente:
|
############ OPTION PANE STRINGS #############
|
||||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
# We only define mnemonics for YES/NO, but for completeness you can
|
||||||
# constant, and an index into the text to render the mnemonic as. The
|
# define mnemonics for any of the buttons.
|
||||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
OptionPane.yesButton.textAndMnemonic=&Sim
|
||||||
# xxxDisplayedMnemonicIndex.
|
OptionPane.noButton.textAndMnemonic=N\u00E3o(&N)
|
||||||
ColorChooser.hsvNameText=HSV
|
OptionPane.okButton.textAndMnemonic=&OK
|
||||||
ColorChooser.hsvMnemonic=72
|
OptionPane.cancelButton.textAndMnemonic=&Cancelar
|
||||||
ColorChooser.hsvHueText=Matiz
|
OptionPane.title.textAndMnemonic=Selecionar uma Op\u00E7\u00E3o
|
||||||
ColorChooser.hsvSaturationText=Satura\u00E7\u00E3o
|
# Title for the dialog for the showInputDialog methods. Only used if
|
||||||
ColorChooser.hsvValueText=Valor
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hsvTransparencyText=Transpar\u00EAncia
|
OptionPane.inputDialog.titleAndMnemonic=Entrada
|
||||||
ColorChooser.hslNameText=HSL
|
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||||
ColorChooser.hslMnemonic=76
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hslHueText=Matiz
|
OptionPane.messageDialog.titleAndMnemonic=Mensagem
|
||||||
ColorChooser.hslSaturationText=Satura\u00E7\u00E3o
|
|
||||||
ColorChooser.hslLightnessText=Clareza
|
############ Printing Dialog Strings ############
|
||||||
ColorChooser.hslTransparencyText=Transpar\u00EAncia
|
PrintingDialog.titleProgress.textAndMnemonic=Impress\u00E3o
|
||||||
ColorChooser.rgbNameText=RGB
|
PrintingDialog.titleAborting.textAndMnemonic=Impress\u00E3o (Abortando)
|
||||||
ColorChooser.rgbMnemonic=71
|
|
||||||
ColorChooser.rgbRedText=Vermelho
|
PrintingDialog.contentInitial.textAndMnemonic=Impress\u00E3o em andamento...
|
||||||
ColorChooser.rgbRedMnemonic=86
|
|
||||||
ColorChooser.rgbGreenText=Verde
|
# The following string will be formatted by a MessageFormat
|
||||||
ColorChooser.rgbGreenMnemonic=86
|
# and {0} will be replaced by page number being printed
|
||||||
ColorChooser.rgbBlueText=Azul
|
PrintingDialog.contentProgress.textAndMnemonic=P\u00E1gina impressa {0}...
|
||||||
ColorChooser.rgbBlueMnemonic=65
|
|
||||||
ColorChooser.rgbAlphaText=Alfa
|
PrintingDialog.contentAborting.textAndMnemonic=Abortando impress\u00E3o...
|
||||||
ColorChooser.rgbHexCodeText=C\u00F3digo da Cor
|
|
||||||
ColorChooser.rgbHexCodeMnemonic=67
|
PrintingDialog.abortButton.textAndMnemonic=&Abortar
|
||||||
ColorChooser.cmykNameText=CMYK
|
PrintingDialog.abortButtonToolTip.textAndMnemonic=Abortar Impress\u00E3o
|
||||||
ColorChooser.cmykMnemonic=77
|
|
||||||
ColorChooser.cmykCyanText=Ciano
|
############ Internal Frame Strings ############
|
||||||
ColorChooser.cmykMagentaText=Magenta
|
InternalFrame.iconButtonToolTip=Minimizar
|
||||||
ColorChooser.cmykYellowText=Amarelo
|
InternalFrame.maxButtonToolTip=Maximizar
|
||||||
ColorChooser.cmykBlackText=Preto
|
InternalFrame.restoreButtonToolTip=Restaurar
|
||||||
ColorChooser.cmykAlphaText=Alfa
|
InternalFrame.closeButtonToolTip=Fechar
|
||||||
|
|
||||||
############ OPTION PANE STRINGS #############
|
############ Internal Frame Title Pane Strings ############
|
||||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurar
|
||||||
# We only define mnemonics for YES/NO, but for completeness you can
|
InternalFrameTitlePane.moveButton.textAndMnemonic=Mover
|
||||||
# define mnemonics for any of the buttons.
|
InternalFrameTitlePane.sizeButton.textAndMnemonic=Tamanho
|
||||||
OptionPane.yesButtonText=Sim
|
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimizar
|
||||||
OptionPane.yesButtonMnemonic=83
|
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximizar
|
||||||
OptionPane.noButtonText=N\u00E3o
|
InternalFrameTitlePane.closeButton.textAndMnemonic=Fechar
|
||||||
OptionPane.noButtonMnemonic=78
|
|
||||||
OptionPane.okButtonText=OK
|
############ Text strings #############
|
||||||
OptionPane.okButtonMnemonic=O
|
# Used for html forms
|
||||||
OptionPane.cancelButtonText=Cancelar
|
FormView.submitButton.textAndMnemonic=Submeter Consulta
|
||||||
OptionPane.cancelButtonMnemonic=C
|
FormView.resetButton.textAndMnemonic=Redefinir
|
||||||
OptionPane.titleText=Selecionar uma Op\u00E7\u00E3o
|
FormView.browseFileButton.textAndMnemonic=Procurar...
|
||||||
# Title for the dialog for the showInputDialog methods. Only used if
|
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
############ Abstract Document Strings ############
|
||||||
OptionPane.inputDialogTitle=Entrada
|
AbstractDocument.styleChange.textAndMnemonic=altera\u00E7\u00E3o de estilo
|
||||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
AbstractDocument.addition.textAndMnemonic=adi\u00E7\u00E3o
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
AbstractDocument.deletion.textAndMnemonic=dele\u00E7\u00E3o
|
||||||
OptionPane.messageDialogTitle=Mensagem
|
AbstractDocument.undo.textAndMnemonic=Desfazer
|
||||||
|
AbstractDocument.redo.textAndMnemonic=Refazer
|
||||||
############ Printing Dialog Strings ############
|
|
||||||
PrintingDialog.titleProgressText=Impress\u00E3o
|
############ Abstract Button Strings ############
|
||||||
PrintingDialog.titleAbortingText=Impress\u00E3o (Abortando)
|
AbstractButton.click.textAndMnemonic=clicar
|
||||||
|
|
||||||
PrintingDialog.contentInitialText=Impress\u00E3o em andamento...
|
############ Abstract Undoable Edit Strings ############
|
||||||
|
AbstractUndoableEdit.undo.textAndMnemonic=Desfazer
|
||||||
# The following string will be formatted by a MessageFormat
|
AbstractUndoableEdit.redo.textAndMnemonic=Refazer
|
||||||
# and {0} will be replaced by page number being printed
|
|
||||||
PrintingDialog.contentProgressText=P\u00E1gina impressa {0}...
|
############ Combo Box Strings ############
|
||||||
|
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||||
PrintingDialog.contentAbortingText=Abortando impress\u00E3o...
|
|
||||||
|
############ Progress Monitor Strings ############
|
||||||
PrintingDialog.abortButtonText=Abortar
|
ProgressMonitor.progress.textAndMnemonic=Progresso...
|
||||||
PrintingDialog.abortButtonMnemonic=65
|
|
||||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
############ Split Pane Strings ############
|
||||||
PrintingDialog.abortButtonToolTipText=Abortar Impress\u00E3o
|
SplitPane.leftButton.textAndMnemonic=bot\u00E3o esquerdo
|
||||||
|
SplitPane.rightButton.textAndMnemonic=bot\u00E3o direito
|
||||||
############ Internal Frame Strings ############
|
# Used for Isindex
|
||||||
InternalFrame.iconButtonToolTip=Minimizar
|
IsindexView.prompt=Trata-se de um \u00EDndice pesquis\u00E1vel. Informe as palavras-chave de pesquisa:
|
||||||
InternalFrame.maxButtonToolTip=Maximizar
|
|
||||||
InternalFrame.restoreButtonToolTip=Restaurar
|
############ InternalFrameTitlePane Strings ############
|
||||||
InternalFrame.closeButtonToolTip=Fechar
|
InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify
|
||||||
|
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar
|
||||||
############ Internal Frame Title Pane Strings ############
|
InternalFrameTitlePane.closeButtonAccessibleName=Fechar
|
||||||
InternalFrameTitlePane.restoreButtonText=Restaurar
|
|
||||||
InternalFrameTitlePane.moveButtonText=Mover
|
|
||||||
InternalFrameTitlePane.sizeButtonText=Tamanho
|
|
||||||
InternalFrameTitlePane.minimizeButtonText=Minimizar
|
|
||||||
InternalFrameTitlePane.maximizeButtonText=Maximizar
|
|
||||||
InternalFrameTitlePane.closeButtonText=Fechar
|
|
||||||
|
|
||||||
############ Text strings #############
|
|
||||||
# Used for html forms
|
|
||||||
FormView.submitButtonText=Submeter Consulta
|
|
||||||
FormView.resetButtonText=Redefinir
|
|
||||||
FormView.browseFileButtonText=Procurar...
|
|
||||||
|
|
||||||
############ Abstract Document Strings ############
|
|
||||||
AbstractDocument.styleChangeText=altera\u00E7\u00E3o de estilo
|
|
||||||
AbstractDocument.additionText=adi\u00E7\u00E3o
|
|
||||||
AbstractDocument.deletionText=dele\u00E7\u00E3o
|
|
||||||
AbstractDocument.undoText=Desfazer
|
|
||||||
AbstractDocument.redoText=Refazer
|
|
||||||
|
|
||||||
############ Abstract Button Strings ############
|
|
||||||
AbstractButton.clickText=clicar
|
|
||||||
|
|
||||||
############ Abstract Undoable Edit Strings ############
|
|
||||||
AbstractUndoableEdit.undoText=Desfazer
|
|
||||||
AbstractUndoableEdit.redoText=Refazer
|
|
||||||
|
|
||||||
############ Combo Box Strings ############
|
|
||||||
ComboBox.togglePopupText=togglePopup
|
|
||||||
|
|
||||||
############ Progress Monitor Strings ############
|
|
||||||
ProgressMonitor.progressText=Progresso...
|
|
||||||
|
|
||||||
############ Split Pane Strings ############
|
|
||||||
SplitPane.leftButtonText=bot\u00E3o esquerdo
|
|
||||||
SplitPane.rightButtonText=bot\u00E3o direito
|
|
||||||
# Used for Isindex
|
|
||||||
IsindexView.prompt=Trata-se de um \u00EDndice pesquis\u00E1vel. Informe as palavras-chave de pesquisa:
|
|
||||||
|
|
||||||
############ InternalFrameTitlePane Strings ############
|
|
||||||
InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify
|
|
||||||
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar
|
|
||||||
InternalFrameTitlePane.closeButtonAccessibleName=Fechar
|
|
||||||
|
|
||||||
|
@ -1,229 +1,186 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used in Swing
|
# It contains Locale specific strings used in Swing
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# ColorChooser
|
# ColorChooser
|
||||||
# FileChooser
|
# FileChooser
|
||||||
# OptionPane
|
# OptionPane
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# MNEMONIC NOTE:
|
# MNEMONIC NOTE:
|
||||||
# Many of strings in this file are used by widgets that have a
|
# Many of strings in this file are used by widgets that have a
|
||||||
# mnemonic, for example:
|
# mnemonic, for example:
|
||||||
# ColorChooser.rgbNameText=RGB
|
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||||
# ColorChooser.rgbMnemonic=71
|
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
# a decoration will be provided under the 'G'. This will typically
|
||||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
# look like: RGB
|
||||||
# a decoration will be provided under the 'G'. This will typically
|
# -
|
||||||
# look like: RGB
|
#
|
||||||
# -
|
# One important thing to remember is that the mnemonic MUST exist in
|
||||||
# 71 corresponds to the decimal value of the VK constant defined
|
# the String, if it does not exist you should add text that makes it
|
||||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
# exist. This will typically take the form 'XXXX (M)' where M is the
|
||||||
#
|
# character for the mnemonic.
|
||||||
# public static final int VK_G = 0x47;
|
#
|
||||||
#
|
# @author Steve Wilson
|
||||||
# 0x47 is a hex number and needs to be converted to decimal.
|
|
||||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
############ FILE CHOOSER STRINGS #############
|
||||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
FileChooser.fileDescription.textAndMnemonic=Generisk fil
|
||||||
# for 'a' is 65, 'b' is 66...
|
FileChooser.directoryDescription.textAndMnemonic=Katalog
|
||||||
#
|
FileChooser.newFolderError.textAndMnemonic=Fel uppstod n\u00E4r ny mapp skapades
|
||||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
FileChooser.newFolderErrorSeparator= :
|
||||||
# character that should be underlined in the String, with 0
|
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Kan inte skapa mappen
|
||||||
# corresponding to the first character in the String.
|
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
|
||||||
# One important thing to remember is that the mnemonic MUST exist in
|
FileChooser.renameError.textAndMnemonic=Kan inte namn\u00E4ndra {0}
|
||||||
# the String, if it does not exist you should add text that makes it
|
FileChooser.renameErrorFileExists.textAndMnemonic=Kan inte namn\u00E4ndra {0}: En fil med angivet namn finns redan. Ange ett annat filnamn.
|
||||||
# exist. This will typically take the form 'XXXX (M)' where M is the
|
FileChooser.acceptAllFileFilter.textAndMnemonic=Alla filer
|
||||||
# character for the mnemonic.
|
FileChooser.cancelButton.textAndMnemonic=&Avbryt
|
||||||
#
|
FileChooser.saveButton.textAndMnemonic=&Spara
|
||||||
# @author Steve Wilson
|
FileChooser.openButton.textAndMnemonic=\u00D6ppna(&P)
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=Spara
|
||||||
############ FILE CHOOSER STRINGS #############
|
FileChooser.openDialogTitle.textAndMnemonic=\u00D6ppna
|
||||||
FileChooser.fileDescriptionText=Generisk fil
|
FileChooser.updateButton.textAndMnemonic=Upp&datera
|
||||||
FileChooser.directoryDescriptionText=Katalog
|
FileChooser.helpButton.textAndMnemonic=Hj\u00E4lp(&H)
|
||||||
FileChooser.newFolderErrorText=Fel uppstod n\u00E4r ny mapp skapades
|
FileChooser.directoryOpenButton.textAndMnemonic=\u00D6ppna(&P)
|
||||||
FileChooser.newFolderErrorSeparator= :
|
|
||||||
FileChooser.newFolderParentDoesntExistTitleText=Kan inte skapa mappen
|
# File Size Units
|
||||||
FileChooser.newFolderParentDoesntExistText=Kan inte skapa mappen.\n\nSystemet kan inte hitta angiven s\u00F6kv\u00E4g.
|
FileChooser.fileSizeKiloBytes={0} KB
|
||||||
FileChooser.renameErrorTitleText=Ett fel intr\u00E4ffade vid f\u00F6rs\u00F6k att \u00E4ndra namn p\u00E5 fil eller mapp
|
FileChooser.fileSizeMegaBytes={0} MB
|
||||||
FileChooser.renameErrorText=Kan inte namn\u00E4ndra {0}
|
FileChooser.fileSizeGigaBytes={0} GB
|
||||||
FileChooser.renameErrorFileExistsText=Kan inte namn\u00E4ndra {0}: En fil med angivet namn finns redan. Ange ett annat filnamn.
|
|
||||||
FileChooser.acceptAllFileFilterText=Alla filer
|
# These strings are platform dependent not look and feel dependent.
|
||||||
FileChooser.cancelButtonText=Avbryt
|
FileChooser.win32.newFolder=Ny mapp
|
||||||
FileChooser.cancelButtonMnemonic=65
|
FileChooser.win32.newFolder.subsequent=Ny mapp ({0})
|
||||||
FileChooser.saveButtonText=Spara
|
FileChooser.other.newFolder=Ny mapp
|
||||||
FileChooser.saveButtonMnemonic=83
|
FileChooser.other.newFolder.subsequent=Ny mapp.{0}
|
||||||
FileChooser.openButtonText=\u00D6ppna
|
|
||||||
FileChooser.openButtonMnemonic=80
|
|
||||||
FileChooser.saveDialogTitleText=Spara
|
## file chooser tooltips ###
|
||||||
FileChooser.openDialogTitleText=\u00D6ppna
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt filvalsdialogruta
|
||||||
FileChooser.updateButtonText=Uppdatera
|
FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil
|
||||||
FileChooser.updateButtonMnemonic=68
|
FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil
|
||||||
FileChooser.helpButtonText=Hj\u00E4lp
|
FileChooser.updateButtonToolTip.textAndMnemonic=Uppdatera kataloglistan
|
||||||
FileChooser.helpButtonMnemonic=72
|
FileChooser.helpButtonToolTip.textAndMnemonic=Hj\u00E4lp - Filv\u00E4ljare
|
||||||
FileChooser.directoryOpenButtonText=\u00D6ppna
|
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\u00D6ppna vald katalog
|
||||||
FileChooser.directoryOpenButtonMnemonic=80
|
|
||||||
|
FileChooser.filesListAccessibleName=Files List
|
||||||
# File Size Units
|
FileChooser.filesDetailsAccessibleName=Files Details
|
||||||
FileChooser.fileSizeKiloBytes={0} KB
|
|
||||||
FileChooser.fileSizeMegaBytes={0} MB
|
############ COLOR CHOOSER STRINGS #############
|
||||||
FileChooser.fileSizeGigaBytes={0} GB
|
ColorChooser.preview.textAndMnemonic=Granska
|
||||||
|
ColorChooser.ok.textAndMnemonic=OK
|
||||||
# These strings are platform dependent not look and feel dependent.
|
ColorChooser.cancel.textAndMnemonic=Avbryt
|
||||||
FileChooser.win32.newFolder=Ny mapp
|
ColorChooser.reset.textAndMnemonic=\u00C5terst\u00E4ll(&T)
|
||||||
FileChooser.win32.newFolder.subsequent=Ny mapp ({0})
|
ColorChooser.sample.textAndMnemonic=Exempeltext Exempeltext
|
||||||
FileChooser.other.newFolder=Ny mapp
|
ColorChooser.swatches.textAndMnemonic=&Prov
|
||||||
FileChooser.other.newFolder.subsequent=Ny mapp.{0}
|
ColorChooser.swatchesRecent.textAndMnemonic=Senaste:
|
||||||
|
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||||
|
ColorChooser.hsvHue.textAndMnemonic=Nyans
|
||||||
## file chooser tooltips ###
|
ColorChooser.hsvSaturation.textAndMnemonic=M\u00E4ttnad
|
||||||
FileChooser.cancelButtonToolTipText=Avbryt filvalsdialogruta
|
ColorChooser.hsvValue.textAndMnemonic=V\u00E4rde
|
||||||
FileChooser.saveButtonToolTipText=Spara vald fil
|
ColorChooser.hsvTransparency.textAndMnemonic=Transparens
|
||||||
FileChooser.openButtonToolTipText=\u00D6ppna vald fil
|
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||||
FileChooser.updateButtonToolTipText=Uppdatera kataloglistan
|
ColorChooser.hslHue.textAndMnemonic=Nyans
|
||||||
FileChooser.helpButtonToolTipText=Hj\u00E4lp - Filv\u00E4ljare
|
ColorChooser.hslSaturation.textAndMnemonic=M\u00E4ttnad
|
||||||
FileChooser.directoryOpenButtonToolTipText=\u00D6ppna vald katalog
|
ColorChooser.hslLightness.textAndMnemonic=Ljusstyrka
|
||||||
|
ColorChooser.hslTransparency.textAndMnemonic=Transparens
|
||||||
FileChooser.filesListAccessibleName=Files List
|
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||||
FileChooser.filesDetailsAccessibleName=Files Details
|
ColorChooser.rgbRed.textAndMnemonic=R\u00F6d(&D)
|
||||||
|
ColorChooser.rgbGreen.textAndMnemonic=Gr\u00F6n(&N)
|
||||||
############ COLOR CHOOSER STRINGS #############
|
ColorChooser.rgbBlue.textAndMnemonic=Bl\u00E5(&B)
|
||||||
ColorChooser.previewText=Granska
|
ColorChooser.rgbAlpha.textAndMnemonic=Alfa
|
||||||
ColorChooser.okText=OK
|
ColorChooser.rgbHexCode.textAndMnemonic=F\u00E4rgkod(&F)
|
||||||
ColorChooser.cancelText=Avbryt
|
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||||
ColorChooser.resetText=\u00C5terst\u00E4ll
|
ColorChooser.cmykCyan.textAndMnemonic=Cyan
|
||||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
ColorChooser.cmykMagenta.textAndMnemonic=Magenta
|
||||||
ColorChooser.resetMnemonic=84
|
ColorChooser.cmykYellow.textAndMnemonic=Gul
|
||||||
ColorChooser.sampleText=Exempeltext Exempeltext
|
ColorChooser.cmykBlack.textAndMnemonic=Svart
|
||||||
ColorChooser.swatchesNameText=Prov
|
ColorChooser.cmykAlpha.textAndMnemonic=Alfa
|
||||||
ColorChooser.swatchesMnemonic=80
|
|
||||||
ColorChooser.swatchesRecentText=Senaste:
|
############ OPTION PANE STRINGS #############
|
||||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
# We only define mnemonics for YES/NO, but for completeness you can
|
||||||
# constant, and an index into the text to render the mnemonic as. The
|
# define mnemonics for any of the buttons.
|
||||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
OptionPane.yesButton.textAndMnemonic=&Ja
|
||||||
# xxxDisplayedMnemonicIndex.
|
OptionPane.noButton.textAndMnemonic=&Nej
|
||||||
ColorChooser.hsvNameText=HSV
|
OptionPane.okButton.textAndMnemonic=&OK
|
||||||
ColorChooser.hsvMnemonic=72
|
OptionPane.cancelButton.textAndMnemonic=&Avbryt
|
||||||
ColorChooser.hsvHueText=Nyans
|
OptionPane.title.textAndMnemonic=V\u00E4lj ett alternativ
|
||||||
ColorChooser.hsvSaturationText=M\u00E4ttnad
|
# Title for the dialog for the showInputDialog methods. Only used if
|
||||||
ColorChooser.hsvValueText=V\u00E4rde
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hsvTransparencyText=Transparens
|
OptionPane.inputDialog.titleAndMnemonic=Indata
|
||||||
ColorChooser.hslNameText=HSL
|
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||||
ColorChooser.hslMnemonic=76
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hslHueText=Nyans
|
OptionPane.messageDialog.titleAndMnemonic=Meddelande
|
||||||
ColorChooser.hslSaturationText=M\u00E4ttnad
|
|
||||||
ColorChooser.hslLightnessText=Ljusstyrka
|
############ Printing Dialog Strings ############
|
||||||
ColorChooser.hslTransparencyText=Transparens
|
PrintingDialog.titleProgress.textAndMnemonic=Skriver ut
|
||||||
ColorChooser.rgbNameText=RGB
|
PrintingDialog.titleAborting.textAndMnemonic=Skriver ut (avbryter)
|
||||||
ColorChooser.rgbMnemonic=71
|
|
||||||
ColorChooser.rgbRedText=R\u00F6d
|
PrintingDialog.contentInitial.textAndMnemonic=Utskrift p\u00E5g\u00E5r...
|
||||||
ColorChooser.rgbRedMnemonic=68
|
|
||||||
ColorChooser.rgbGreenText=Gr\u00F6n
|
# The following string will be formatted by a MessageFormat
|
||||||
ColorChooser.rgbGreenMnemonic=78
|
# and {0} will be replaced by page number being printed
|
||||||
ColorChooser.rgbBlueText=Bl\u00E5
|
PrintingDialog.contentProgress.textAndMnemonic=Utskriven sida {0}...
|
||||||
ColorChooser.rgbBlueMnemonic=66
|
|
||||||
ColorChooser.rgbAlphaText=Alfa
|
PrintingDialog.contentAborting.textAndMnemonic=Utskriften avbryts...
|
||||||
ColorChooser.rgbHexCodeText=F\u00E4rgkod
|
|
||||||
ColorChooser.rgbHexCodeMnemonic=70
|
PrintingDialog.abortButton.textAndMnemonic=&Avbryt
|
||||||
ColorChooser.cmykNameText=CMYK
|
PrintingDialog.abortButtonToolTip.textAndMnemonic=Avbryt utskrift
|
||||||
ColorChooser.cmykMnemonic=77
|
|
||||||
ColorChooser.cmykCyanText=Cyan
|
############ Internal Frame Strings ############
|
||||||
ColorChooser.cmykMagentaText=Magenta
|
InternalFrame.iconButtonToolTip=Minimera
|
||||||
ColorChooser.cmykYellowText=Gul
|
InternalFrame.maxButtonToolTip=Maximera
|
||||||
ColorChooser.cmykBlackText=Svart
|
InternalFrame.restoreButtonToolTip=\u00C5terst\u00E4ll
|
||||||
ColorChooser.cmykAlphaText=Alfa
|
InternalFrame.closeButtonToolTip=St\u00E4ng
|
||||||
|
|
||||||
############ OPTION PANE STRINGS #############
|
############ Internal Frame Title Pane Strings ############
|
||||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
InternalFrameTitlePane.restoreButton.textAndMnemonic=\u00C5terst\u00E4ll
|
||||||
# We only define mnemonics for YES/NO, but for completeness you can
|
InternalFrameTitlePane.moveButton.textAndMnemonic=Flytta
|
||||||
# define mnemonics for any of the buttons.
|
InternalFrameTitlePane.sizeButton.textAndMnemonic=Storlek
|
||||||
OptionPane.yesButtonText=Ja
|
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimera
|
||||||
OptionPane.yesButtonMnemonic=74
|
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximera
|
||||||
OptionPane.noButtonText=Nej
|
InternalFrameTitlePane.closeButton.textAndMnemonic=St\u00E4ng
|
||||||
OptionPane.noButtonMnemonic=78
|
|
||||||
OptionPane.okButtonText=OK
|
############ Text strings #############
|
||||||
OptionPane.okButtonMnemonic=O
|
# Used for html forms
|
||||||
OptionPane.cancelButtonText=Avbryt
|
FormView.submitButton.textAndMnemonic=Skicka fr\u00E5ga
|
||||||
OptionPane.cancelButtonMnemonic=A
|
FormView.resetButton.textAndMnemonic=\u00C5terst\u00E4ll
|
||||||
OptionPane.titleText=V\u00E4lj ett alternativ
|
FormView.browseFileButton.textAndMnemonic=Bl\u00E4ddra...
|
||||||
# Title for the dialog for the showInputDialog methods. Only used if
|
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
############ Abstract Document Strings ############
|
||||||
OptionPane.inputDialogTitle=Indata
|
AbstractDocument.styleChange.textAndMnemonic=format\u00E4ndring
|
||||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
AbstractDocument.addition.textAndMnemonic=till\u00E4gg
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
AbstractDocument.deletion.textAndMnemonic=borttagning
|
||||||
OptionPane.messageDialogTitle=Meddelande
|
AbstractDocument.undo.textAndMnemonic=\u00C5ngra
|
||||||
|
AbstractDocument.redo.textAndMnemonic=G\u00F6r om
|
||||||
############ Printing Dialog Strings ############
|
|
||||||
PrintingDialog.titleProgressText=Skriver ut
|
############ Abstract Button Strings ############
|
||||||
PrintingDialog.titleAbortingText=Skriver ut (avbryter)
|
AbstractButton.click.textAndMnemonic=klicka
|
||||||
|
|
||||||
PrintingDialog.contentInitialText=Utskrift p\u00E5g\u00E5r...
|
############ Abstract Undoable Edit Strings ############
|
||||||
|
AbstractUndoableEdit.undo.textAndMnemonic=\u00C5ngra
|
||||||
# The following string will be formatted by a MessageFormat
|
AbstractUndoableEdit.redo.textAndMnemonic=G\u00F6r om
|
||||||
# and {0} will be replaced by page number being printed
|
|
||||||
PrintingDialog.contentProgressText=Utskriven sida {0}...
|
############ Combo Box Strings ############
|
||||||
|
ComboBox.togglePopup.textAndMnemonic=v\u00E4xlaPopup
|
||||||
PrintingDialog.contentAbortingText=Utskriften avbryts...
|
|
||||||
|
############ Progress Monitor Strings ############
|
||||||
PrintingDialog.abortButtonText=Avbryt
|
ProgressMonitor.progress.textAndMnemonic=P\u00E5g\u00E5r...
|
||||||
PrintingDialog.abortButtonMnemonic=65
|
|
||||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
############ Split Pane Strings ############
|
||||||
PrintingDialog.abortButtonToolTipText=Avbryt utskrift
|
SplitPane.leftButton.textAndMnemonic=v\u00E4nster knapp
|
||||||
|
SplitPane.rightButton.textAndMnemonic=h\u00F6ger knapp
|
||||||
############ Internal Frame Strings ############
|
# Used for Isindex
|
||||||
InternalFrame.iconButtonToolTip=Minimera
|
IsindexView.prompt=Detta \u00E4r ett s\u00F6kbart index. Ange s\u00F6kord:
|
||||||
InternalFrame.maxButtonToolTip=Maximera
|
|
||||||
InternalFrame.restoreButtonToolTip=\u00C5terst\u00E4ll
|
############ InternalFrameTitlePane Strings ############
|
||||||
InternalFrame.closeButtonToolTip=St\u00E4ng
|
InternalFrameTitlePane.iconifyButtonAccessibleName=Minimera
|
||||||
|
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximera
|
||||||
############ Internal Frame Title Pane Strings ############
|
InternalFrameTitlePane.closeButtonAccessibleName=St\u00E4ng
|
||||||
InternalFrameTitlePane.restoreButtonText=\u00C5terst\u00E4ll
|
|
||||||
InternalFrameTitlePane.moveButtonText=Flytta
|
|
||||||
InternalFrameTitlePane.sizeButtonText=Storlek
|
|
||||||
InternalFrameTitlePane.minimizeButtonText=Minimera
|
|
||||||
InternalFrameTitlePane.maximizeButtonText=Maximera
|
|
||||||
InternalFrameTitlePane.closeButtonText=St\u00E4ng
|
|
||||||
|
|
||||||
############ Text strings #############
|
|
||||||
# Used for html forms
|
|
||||||
FormView.submitButtonText=Skicka fr\u00E5ga
|
|
||||||
FormView.resetButtonText=\u00C5terst\u00E4ll
|
|
||||||
FormView.browseFileButtonText=Bl\u00E4ddra...
|
|
||||||
|
|
||||||
############ Abstract Document Strings ############
|
|
||||||
AbstractDocument.styleChangeText=format\u00E4ndring
|
|
||||||
AbstractDocument.additionText=till\u00E4gg
|
|
||||||
AbstractDocument.deletionText=borttagning
|
|
||||||
AbstractDocument.undoText=\u00C5ngra
|
|
||||||
AbstractDocument.redoText=G\u00F6r om
|
|
||||||
|
|
||||||
############ Abstract Button Strings ############
|
|
||||||
AbstractButton.clickText=klicka
|
|
||||||
|
|
||||||
############ Abstract Undoable Edit Strings ############
|
|
||||||
AbstractUndoableEdit.undoText=\u00C5ngra
|
|
||||||
AbstractUndoableEdit.redoText=G\u00F6r om
|
|
||||||
|
|
||||||
############ Combo Box Strings ############
|
|
||||||
ComboBox.togglePopupText=v\u00E4xlaPopup
|
|
||||||
|
|
||||||
############ Progress Monitor Strings ############
|
|
||||||
ProgressMonitor.progressText=P\u00E5g\u00E5r...
|
|
||||||
|
|
||||||
############ Split Pane Strings ############
|
|
||||||
SplitPane.leftButtonText=v\u00E4nster knapp
|
|
||||||
SplitPane.rightButtonText=h\u00F6ger knapp
|
|
||||||
# Used for Isindex
|
|
||||||
IsindexView.prompt=Detta \u00E4r ett s\u00F6kbart index. Ange s\u00F6kord:
|
|
||||||
|
|
||||||
############ InternalFrameTitlePane Strings ############
|
|
||||||
InternalFrameTitlePane.iconifyButtonAccessibleName=Minimera
|
|
||||||
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximera
|
|
||||||
InternalFrameTitlePane.closeButtonAccessibleName=St\u00E4ng
|
|
||||||
|
|
||||||
|
@ -1,229 +1,186 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used in Swing
|
# It contains Locale specific strings used in Swing
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# ColorChooser
|
# ColorChooser
|
||||||
# FileChooser
|
# FileChooser
|
||||||
# OptionPane
|
# OptionPane
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# MNEMONIC NOTE:
|
# MNEMONIC NOTE:
|
||||||
# Many of strings in this file are used by widgets that have a
|
# Many of strings in this file are used by widgets that have a
|
||||||
# mnemonic, for example:
|
# mnemonic, for example:
|
||||||
# ColorChooser.rgbNameText=RGB
|
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||||
# ColorChooser.rgbMnemonic=71
|
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
# a decoration will be provided under the 'G'. This will typically
|
||||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
# look like: RGB
|
||||||
# a decoration will be provided under the 'G'. This will typically
|
# -
|
||||||
# look like: RGB
|
#
|
||||||
# -
|
# One important thing to remember is that the mnemonic MUST exist in
|
||||||
# 71 corresponds to the decimal value of the VK constant defined
|
# the String, if it does not exist you should add text that makes it
|
||||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
# exist. This will typically take the form 'XXXX (M)' where M is the
|
||||||
#
|
# character for the mnemonic.
|
||||||
# public static final int VK_G = 0x47;
|
#
|
||||||
#
|
# @author Steve Wilson
|
||||||
# 0x47 is a hex number and needs to be converted to decimal.
|
|
||||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
############ FILE CHOOSER STRINGS #############
|
||||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
FileChooser.fileDescription.textAndMnemonic=\u666E\u901A\u7684\u6587\u4EF6
|
||||||
# for 'a' is 65, 'b' is 66...
|
FileChooser.directoryDescription.textAndMnemonic=\u76EE\u5F55
|
||||||
#
|
FileChooser.newFolderError.textAndMnemonic=\u521B\u5EFA\u65B0\u7684\u6587\u4EF6\u5939\u65F6\u51FA\u9519
|
||||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
FileChooser.newFolderErrorSeparator= :
|
||||||
# character that should be underlined in the String, with 0
|
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939
|
||||||
# corresponding to the first character in the String.
|
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
|
||||||
# One important thing to remember is that the mnemonic MUST exist in
|
FileChooser.renameError.textAndMnemonic=\u65E0\u6CD5\u91CD\u547D\u540D{0}
|
||||||
# the String, if it does not exist you should add text that makes it
|
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
|
||||||
# exist. This will typically take the form 'XXXX (M)' where M is the
|
FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6587\u4EF6
|
||||||
# character for the mnemonic.
|
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
|
||||||
#
|
FileChooser.saveButton.textAndMnemonic=\u4FDD\u5B58(&S)
|
||||||
# @author Steve Wilson
|
FileChooser.openButton.textAndMnemonic=\u6253\u5F00(&O)
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
|
||||||
############ FILE CHOOSER STRINGS #############
|
FileChooser.openDialogTitle.textAndMnemonic=\u6253\u5F00
|
||||||
FileChooser.fileDescriptionText=\u666E\u901A\u7684\u6587\u4EF6
|
FileChooser.updateButton.textAndMnemonic=\u66F4\u65B0(&U)
|
||||||
FileChooser.directoryDescriptionText=\u76EE\u5F55
|
FileChooser.helpButton.textAndMnemonic=\u5E2E\u52A9(&H)
|
||||||
FileChooser.newFolderErrorText=\u521B\u5EFA\u65B0\u7684\u6587\u4EF6\u5939\u65F6\u51FA\u9519
|
FileChooser.directoryOpenButton.textAndMnemonic=\u6253\u5F00(&O)
|
||||||
FileChooser.newFolderErrorSeparator= :
|
|
||||||
FileChooser.newFolderParentDoesntExistTitleText=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939
|
# File Size Units
|
||||||
FileChooser.newFolderParentDoesntExistText=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939\u3002\n\n\u7CFB\u7EDF\u627E\u4E0D\u5230\u6307\u5B9A\u7684\u8DEF\u5F84\u3002
|
FileChooser.fileSizeKiloBytes={0} KB
|
||||||
FileChooser.renameErrorTitleText=\u91CD\u547D\u540D\u6587\u4EF6\u6216\u6587\u4EF6\u5939\u65F6\u51FA\u9519
|
FileChooser.fileSizeMegaBytes={0} MB
|
||||||
FileChooser.renameErrorText=\u65E0\u6CD5\u91CD\u547D\u540D{0}
|
FileChooser.fileSizeGigaBytes={0} GB
|
||||||
FileChooser.renameErrorFileExistsText=\u65E0\u6CD5\u91CD\u547D\u540D{0}: \u5DF2\u5B58\u5728\u5177\u6709\u6240\u6307\u5B9A\u540D\u79F0\u7684\u6587\u4EF6\u3002\u8BF7\u6307\u5B9A\u5176\u4ED6\u6587\u4EF6\u540D\u3002
|
|
||||||
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6587\u4EF6
|
# These strings are platform dependent not look and feel dependent.
|
||||||
FileChooser.cancelButtonText=\u53D6\u6D88
|
FileChooser.win32.newFolder=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||||
FileChooser.cancelButtonMnemonic=67
|
FileChooser.win32.newFolder.subsequent=\u65B0\u5EFA\u6587\u4EF6\u5939 ({0})
|
||||||
FileChooser.saveButtonText=\u4FDD\u5B58
|
FileChooser.other.newFolder=NewFolder
|
||||||
FileChooser.saveButtonMnemonic=83
|
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||||
FileChooser.openButtonText=\u6253\u5F00
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=\u4FDD\u5B58
|
## file chooser tooltips ###
|
||||||
FileChooser.openDialogTitleText=\u6253\u5F00
|
FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846
|
||||||
FileChooser.updateButtonText=\u66F4\u65B0(U)
|
FileChooser.saveButtonToolTip.textAndMnemonic=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6
|
||||||
FileChooser.updateButtonMnemonic=85
|
FileChooser.openButtonToolTip.textAndMnemonic=\u6253\u5F00\u6240\u9009\u6587\u4EF6
|
||||||
FileChooser.helpButtonText=\u5E2E\u52A9(H)
|
FileChooser.updateButtonToolTip.textAndMnemonic=\u66F4\u65B0\u76EE\u5F55\u5217\u8868
|
||||||
FileChooser.helpButtonMnemonic=72
|
FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser \u5E2E\u52A9
|
||||||
FileChooser.directoryOpenButtonText=\u6253\u5F00(O)
|
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\u6253\u5F00\u9009\u62E9\u7684\u76EE\u5F55
|
||||||
FileChooser.directoryOpenButtonMnemonic=79
|
|
||||||
|
FileChooser.filesListAccessibleName=Files List
|
||||||
# File Size Units
|
FileChooser.filesDetailsAccessibleName=Files Details
|
||||||
FileChooser.fileSizeKiloBytes={0} KB
|
|
||||||
FileChooser.fileSizeMegaBytes={0} MB
|
############ COLOR CHOOSER STRINGS #############
|
||||||
FileChooser.fileSizeGigaBytes={0} GB
|
ColorChooser.preview.textAndMnemonic=\u9884\u89C8
|
||||||
|
ColorChooser.ok.textAndMnemonic=\u786E\u5B9A
|
||||||
# These strings are platform dependent not look and feel dependent.
|
ColorChooser.cancel.textAndMnemonic=\u53D6\u6D88
|
||||||
FileChooser.win32.newFolder=\u65B0\u5EFA\u6587\u4EF6\u5939
|
ColorChooser.reset.textAndMnemonic=\u91CD\u7F6E(&R)
|
||||||
FileChooser.win32.newFolder.subsequent=\u65B0\u5EFA\u6587\u4EF6\u5939 ({0})
|
ColorChooser.sample.textAndMnemonic=\u793A\u4F8B\u6587\u672C \u793A\u4F8B\u6587\u672C
|
||||||
FileChooser.other.newFolder=NewFolder
|
ColorChooser.swatches.textAndMnemonic=\u793A\u4F8B(&S)
|
||||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
ColorChooser.swatchesRecent.textAndMnemonic=\u6700\u8FD1:
|
||||||
|
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||||
|
ColorChooser.hsvHue.textAndMnemonic=\u8272\u8C03
|
||||||
## file chooser tooltips ###
|
ColorChooser.hsvSaturation.textAndMnemonic=\u9971\u548C\u5EA6
|
||||||
FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846
|
ColorChooser.hsvValue.textAndMnemonic=\u503C
|
||||||
FileChooser.saveButtonToolTipText=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6
|
ColorChooser.hsvTransparency.textAndMnemonic=\u900F\u660E\u5EA6
|
||||||
FileChooser.openButtonToolTipText=\u6253\u5F00\u6240\u9009\u6587\u4EF6
|
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||||
FileChooser.updateButtonToolTipText=\u66F4\u65B0\u76EE\u5F55\u5217\u8868
|
ColorChooser.hslHue.textAndMnemonic=\u8272\u8C03
|
||||||
FileChooser.helpButtonToolTipText=FileChooser \u5E2E\u52A9
|
ColorChooser.hslSaturation.textAndMnemonic=\u9971\u548C\u5EA6
|
||||||
FileChooser.directoryOpenButtonToolTipText=\u6253\u5F00\u9009\u62E9\u7684\u76EE\u5F55
|
ColorChooser.hslLightness.textAndMnemonic=\u4EAE\u5EA6
|
||||||
|
ColorChooser.hslTransparency.textAndMnemonic=\u900F\u660E\u5EA6
|
||||||
FileChooser.filesListAccessibleName=Files List
|
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||||
FileChooser.filesDetailsAccessibleName=Files Details
|
ColorChooser.rgbRed.textAndMnemonic=\u7EA2\u8272(&D)
|
||||||
|
ColorChooser.rgbGreen.textAndMnemonic=\u7EFF\u8272(&N)
|
||||||
############ COLOR CHOOSER STRINGS #############
|
ColorChooser.rgbBlue.textAndMnemonic=\u84DD\u8272(&B)
|
||||||
ColorChooser.previewText=\u9884\u89C8
|
ColorChooser.rgbAlpha.textAndMnemonic=Alpha
|
||||||
ColorChooser.okText=\u786E\u5B9A
|
ColorChooser.rgbHexCode.textAndMnemonic=\u989C\u8272\u4EE3\u7801(&C)
|
||||||
ColorChooser.cancelText=\u53D6\u6D88
|
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||||
ColorChooser.resetText=\u91CD\u7F6E(R)
|
ColorChooser.cmykCyan.textAndMnemonic=\u9752\u8272
|
||||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
ColorChooser.cmykMagenta.textAndMnemonic=\u7D2B\u7EA2\u8272
|
||||||
ColorChooser.resetMnemonic=82
|
ColorChooser.cmykYellow.textAndMnemonic=\u9EC4\u8272
|
||||||
ColorChooser.sampleText=\u793A\u4F8B\u6587\u672C \u793A\u4F8B\u6587\u672C
|
ColorChooser.cmykBlack.textAndMnemonic=\u9ED1\u8272
|
||||||
ColorChooser.swatchesNameText=\u793A\u4F8B(S)
|
ColorChooser.cmykAlpha.textAndMnemonic=Alpha
|
||||||
ColorChooser.swatchesMnemonic=83
|
|
||||||
ColorChooser.swatchesRecentText=\u6700\u8FD1:
|
############ OPTION PANE STRINGS #############
|
||||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
# We only define mnemonics for YES/NO, but for completeness you can
|
||||||
# constant, and an index into the text to render the mnemonic as. The
|
# define mnemonics for any of the buttons.
|
||||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
OptionPane.yesButton.textAndMnemonic=\u662F(&Y)
|
||||||
# xxxDisplayedMnemonicIndex.
|
OptionPane.noButton.textAndMnemonic=\u5426(&N)
|
||||||
ColorChooser.hsvNameText=HSV
|
OptionPane.okButton.textAndMnemonic=\u786E\u5B9A(&O)
|
||||||
ColorChooser.hsvMnemonic=72
|
OptionPane.cancelButton.textAndMnemonic=\u53D6\u6D88
|
||||||
ColorChooser.hsvHueText=\u8272\u8C03
|
OptionPane.title.textAndMnemonic=\u9009\u62E9\u4E00\u4E2A\u9009\u9879
|
||||||
ColorChooser.hsvSaturationText=\u9971\u548C\u5EA6
|
# Title for the dialog for the showInputDialog methods. Only used if
|
||||||
ColorChooser.hsvValueText=\u503C
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hsvTransparencyText=\u900F\u660E\u5EA6
|
OptionPane.inputDialog.titleAndMnemonic=\u8F93\u5165
|
||||||
ColorChooser.hslNameText=HSL
|
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||||
ColorChooser.hslMnemonic=76
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hslHueText=\u8272\u8C03
|
OptionPane.messageDialog.titleAndMnemonic=\u6D88\u606F
|
||||||
ColorChooser.hslSaturationText=\u9971\u548C\u5EA6
|
|
||||||
ColorChooser.hslLightnessText=\u4EAE\u5EA6
|
############ Printing Dialog Strings ############
|
||||||
ColorChooser.hslTransparencyText=\u900F\u660E\u5EA6
|
PrintingDialog.titleProgress.textAndMnemonic=\u6253\u5370
|
||||||
ColorChooser.rgbNameText=RGB
|
PrintingDialog.titleAborting.textAndMnemonic=\u6253\u5370 (\u6B63\u5728\u4E2D\u6B62)
|
||||||
ColorChooser.rgbMnemonic=71
|
|
||||||
ColorChooser.rgbRedText=\u7EA2\u8272
|
PrintingDialog.contentInitial.textAndMnemonic=\u6B63\u5728\u8FDB\u884C\u6253\u5370...
|
||||||
ColorChooser.rgbRedMnemonic=68
|
|
||||||
ColorChooser.rgbGreenText=\u7EFF\u8272
|
# The following string will be formatted by a MessageFormat
|
||||||
ColorChooser.rgbGreenMnemonic=78
|
# and {0} will be replaced by page number being printed
|
||||||
ColorChooser.rgbBlueText=\u84DD\u8272
|
PrintingDialog.contentProgress.textAndMnemonic=\u5DF2\u6253\u5370\u9875 {0}...
|
||||||
ColorChooser.rgbBlueMnemonic=66
|
|
||||||
ColorChooser.rgbAlphaText=Alpha
|
PrintingDialog.contentAborting.textAndMnemonic=\u6B63\u5728\u4E2D\u6B62\u6253\u5370...
|
||||||
ColorChooser.rgbHexCodeText=\u989C\u8272\u4EE3\u7801(C)
|
|
||||||
ColorChooser.rgbHexCodeMnemonic=67
|
PrintingDialog.abortButton.textAndMnemonic=\u4E2D\u6B62(&A)
|
||||||
ColorChooser.cmykNameText=CMYK
|
PrintingDialog.abortButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6253\u5370
|
||||||
ColorChooser.cmykMnemonic=77
|
|
||||||
ColorChooser.cmykCyanText=\u9752\u8272
|
############ Internal Frame Strings ############
|
||||||
ColorChooser.cmykMagentaText=\u7D2B\u7EA2\u8272
|
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
|
||||||
ColorChooser.cmykYellowText=\u9EC4\u8272
|
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
|
||||||
ColorChooser.cmykBlackText=\u9ED1\u8272
|
InternalFrame.restoreButtonToolTip=\u8FD8\u539F
|
||||||
ColorChooser.cmykAlphaText=Alpha
|
InternalFrame.closeButtonToolTip=\u5173\u95ED
|
||||||
|
|
||||||
############ OPTION PANE STRINGS #############
|
############ Internal Frame Title Pane Strings ############
|
||||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
InternalFrameTitlePane.restoreButton.textAndMnemonic=\u8FD8\u539F
|
||||||
# We only define mnemonics for YES/NO, but for completeness you can
|
InternalFrameTitlePane.moveButton.textAndMnemonic=\u79FB\u52A8
|
||||||
# define mnemonics for any of the buttons.
|
InternalFrameTitlePane.sizeButton.textAndMnemonic=\u5927\u5C0F
|
||||||
OptionPane.yesButtonText=\u662F(Y)
|
InternalFrameTitlePane.minimizeButton.textAndMnemonic=\u6700\u5C0F\u5316
|
||||||
OptionPane.yesButtonMnemonic=89
|
InternalFrameTitlePane.maximizeButton.textAndMnemonic=\u6700\u5927\u5316
|
||||||
OptionPane.noButtonText=\u5426(N)
|
InternalFrameTitlePane.closeButton.textAndMnemonic=\u5173\u95ED
|
||||||
OptionPane.noButtonMnemonic=78
|
|
||||||
OptionPane.okButtonText=\u786E\u5B9A
|
############ Text strings #############
|
||||||
OptionPane.okButtonMnemonic=O
|
# Used for html forms
|
||||||
OptionPane.cancelButtonText=\u53D6\u6D88
|
FormView.submitButton.textAndMnemonic=\u63D0\u4EA4\u67E5\u8BE2
|
||||||
OptionPane.cancelButtonMnemonic=0
|
FormView.resetButton.textAndMnemonic=\u91CD\u8BBE
|
||||||
OptionPane.titleText=\u9009\u62E9\u4E00\u4E2A\u9009\u9879
|
FormView.browseFileButton.textAndMnemonic=\u6D4F\u89C8...
|
||||||
# Title for the dialog for the showInputDialog methods. Only used if
|
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
############ Abstract Document Strings ############
|
||||||
OptionPane.inputDialogTitle=\u8F93\u5165
|
AbstractDocument.styleChange.textAndMnemonic=\u6837\u5F0F\u66F4\u6539
|
||||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
AbstractDocument.addition.textAndMnemonic=\u6DFB\u52A0
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
AbstractDocument.deletion.textAndMnemonic=\u5220\u9664
|
||||||
OptionPane.messageDialogTitle=\u6D88\u606F
|
AbstractDocument.undo.textAndMnemonic=\u64A4\u6D88
|
||||||
|
AbstractDocument.redo.textAndMnemonic=\u91CD\u505A
|
||||||
############ Printing Dialog Strings ############
|
|
||||||
PrintingDialog.titleProgressText=\u6253\u5370
|
############ Abstract Button Strings ############
|
||||||
PrintingDialog.titleAbortingText=\u6253\u5370 (\u6B63\u5728\u4E2D\u6B62)
|
AbstractButton.click.textAndMnemonic=\u5355\u51FB
|
||||||
|
|
||||||
PrintingDialog.contentInitialText=\u6B63\u5728\u8FDB\u884C\u6253\u5370...
|
############ Abstract Undoable Edit Strings ############
|
||||||
|
AbstractUndoableEdit.undo.textAndMnemonic=\u64A4\u6D88
|
||||||
# The following string will be formatted by a MessageFormat
|
AbstractUndoableEdit.redo.textAndMnemonic=\u91CD\u505A
|
||||||
# and {0} will be replaced by page number being printed
|
|
||||||
PrintingDialog.contentProgressText=\u5DF2\u6253\u5370\u9875 {0}...
|
############ Combo Box Strings ############
|
||||||
|
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||||
PrintingDialog.contentAbortingText=\u6B63\u5728\u4E2D\u6B62\u6253\u5370...
|
|
||||||
|
############ Progress Monitor Strings ############
|
||||||
PrintingDialog.abortButtonText=\u4E2D\u6B62(A)
|
ProgressMonitor.progress.textAndMnemonic=\u8FDB\u5EA6...
|
||||||
PrintingDialog.abortButtonMnemonic=65
|
|
||||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
############ Split Pane Strings ############
|
||||||
PrintingDialog.abortButtonToolTipText=\u4E2D\u6B62\u6253\u5370
|
SplitPane.leftButton.textAndMnemonic=\u5DE6\u952E
|
||||||
|
SplitPane.rightButton.textAndMnemonic=\u53F3\u952E
|
||||||
############ Internal Frame Strings ############
|
# Used for Isindex
|
||||||
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
|
IsindexView.prompt=\u8FD9\u662F\u53EF\u641C\u7D22\u7D22\u5F15\u3002\u8BF7\u8F93\u5165\u641C\u7D22\u5173\u952E\u5B57:
|
||||||
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
|
|
||||||
InternalFrame.restoreButtonToolTip=\u8FD8\u539F
|
############ InternalFrameTitlePane Strings ############
|
||||||
InternalFrame.closeButtonToolTip=\u5173\u95ED
|
InternalFrameTitlePane.iconifyButtonAccessibleName=\u56FE\u6807\u5316
|
||||||
|
InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316
|
||||||
############ Internal Frame Title Pane Strings ############
|
InternalFrameTitlePane.closeButtonAccessibleName=\u5173\u95ED
|
||||||
InternalFrameTitlePane.restoreButtonText=\u8FD8\u539F
|
|
||||||
InternalFrameTitlePane.moveButtonText=\u79FB\u52A8
|
|
||||||
InternalFrameTitlePane.sizeButtonText=\u5927\u5C0F
|
|
||||||
InternalFrameTitlePane.minimizeButtonText=\u6700\u5C0F\u5316
|
|
||||||
InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316
|
|
||||||
InternalFrameTitlePane.closeButtonText=\u5173\u95ED
|
|
||||||
|
|
||||||
############ Text strings #############
|
|
||||||
# Used for html forms
|
|
||||||
FormView.submitButtonText=\u63D0\u4EA4\u67E5\u8BE2
|
|
||||||
FormView.resetButtonText=\u91CD\u8BBE
|
|
||||||
FormView.browseFileButtonText=\u6D4F\u89C8...
|
|
||||||
|
|
||||||
############ Abstract Document Strings ############
|
|
||||||
AbstractDocument.styleChangeText=\u6837\u5F0F\u66F4\u6539
|
|
||||||
AbstractDocument.additionText=\u6DFB\u52A0
|
|
||||||
AbstractDocument.deletionText=\u5220\u9664
|
|
||||||
AbstractDocument.undoText=\u64A4\u6D88
|
|
||||||
AbstractDocument.redoText=\u91CD\u505A
|
|
||||||
|
|
||||||
############ Abstract Button Strings ############
|
|
||||||
AbstractButton.clickText=\u5355\u51FB
|
|
||||||
|
|
||||||
############ Abstract Undoable Edit Strings ############
|
|
||||||
AbstractUndoableEdit.undoText=\u64A4\u6D88
|
|
||||||
AbstractUndoableEdit.redoText=\u91CD\u505A
|
|
||||||
|
|
||||||
############ Combo Box Strings ############
|
|
||||||
ComboBox.togglePopupText=togglePopup
|
|
||||||
|
|
||||||
############ Progress Monitor Strings ############
|
|
||||||
ProgressMonitor.progressText=\u8FDB\u5EA6...
|
|
||||||
|
|
||||||
############ Split Pane Strings ############
|
|
||||||
SplitPane.leftButtonText=\u5DE6\u952E
|
|
||||||
SplitPane.rightButtonText=\u53F3\u952E
|
|
||||||
# Used for Isindex
|
|
||||||
IsindexView.prompt=\u8FD9\u662F\u53EF\u641C\u7D22\u7D22\u5F15\u3002\u8BF7\u8F93\u5165\u641C\u7D22\u5173\u952E\u5B57:
|
|
||||||
|
|
||||||
############ InternalFrameTitlePane Strings ############
|
|
||||||
InternalFrameTitlePane.iconifyButtonAccessibleName=\u56FE\u6807\u5316
|
|
||||||
InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316
|
|
||||||
InternalFrameTitlePane.closeButtonAccessibleName=\u5173\u95ED
|
|
||||||
|
|
||||||
|
@ -1,229 +1,186 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used in Swing
|
# It contains Locale specific strings used in Swing
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# ColorChooser
|
# ColorChooser
|
||||||
# FileChooser
|
# FileChooser
|
||||||
# OptionPane
|
# OptionPane
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# MNEMONIC NOTE:
|
# MNEMONIC NOTE:
|
||||||
# Many of strings in this file are used by widgets that have a
|
# Many of strings in this file are used by widgets that have a
|
||||||
# mnemonic, for example:
|
# mnemonic, for example:
|
||||||
# ColorChooser.rgbNameText=RGB
|
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||||
# ColorChooser.rgbMnemonic=71
|
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
# a decoration will be provided under the 'G'. This will typically
|
||||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
# look like: RGB
|
||||||
# a decoration will be provided under the 'G'. This will typically
|
# -
|
||||||
# look like: RGB
|
#
|
||||||
# -
|
# One important thing to remember is that the mnemonic MUST exist in
|
||||||
# 71 corresponds to the decimal value of the VK constant defined
|
# the String, if it does not exist you should add text that makes it
|
||||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
# exist. This will typically take the form 'XXXX (M)' where M is the
|
||||||
#
|
# character for the mnemonic.
|
||||||
# public static final int VK_G = 0x47;
|
#
|
||||||
#
|
# @author Steve Wilson
|
||||||
# 0x47 is a hex number and needs to be converted to decimal.
|
|
||||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
############ FILE CHOOSER STRINGS #############
|
||||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
FileChooser.fileDescription.textAndMnemonic=\u4E00\u822C\u6A94\u6848
|
||||||
# for 'a' is 65, 'b' is 66...
|
FileChooser.directoryDescription.textAndMnemonic=\u76EE\u9304
|
||||||
#
|
FileChooser.newFolderError.textAndMnemonic=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E\u6642\u767C\u751F\u932F\u8AA4
|
||||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
FileChooser.newFolderErrorSeparator= :
|
||||||
# character that should be underlined in the String, with 0
|
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E
|
||||||
# corresponding to the first character in the String.
|
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
|
||||||
# One important thing to remember is that the mnemonic MUST exist in
|
FileChooser.renameError.textAndMnemonic=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0}
|
||||||
# the String, if it does not exist you should add text that makes it
|
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
|
||||||
# exist. This will typically take the form 'XXXX (M)' where M is the
|
FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6A94\u6848
|
||||||
# character for the mnemonic.
|
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
|
||||||
#
|
FileChooser.saveButton.textAndMnemonic=\u5132\u5B58(&S)
|
||||||
# @author Steve Wilson
|
FileChooser.openButton.textAndMnemonic=\u958B\u555F(&O)
|
||||||
|
FileChooser.saveDialogTitle.textAndMnemonic=\u5132\u5B58
|
||||||
############ FILE CHOOSER STRINGS #############
|
FileChooser.openDialogTitle.textAndMnemonic=\u958B\u555F
|
||||||
FileChooser.fileDescriptionText=\u4E00\u822C\u6A94\u6848
|
FileChooser.updateButton.textAndMnemonic=\u66F4\u65B0(&U)
|
||||||
FileChooser.directoryDescriptionText=\u76EE\u9304
|
FileChooser.helpButton.textAndMnemonic=\u8AAA\u660E(&H)
|
||||||
FileChooser.newFolderErrorText=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E\u6642\u767C\u751F\u932F\u8AA4
|
FileChooser.directoryOpenButton.textAndMnemonic=\u958B\u555F(&O)
|
||||||
FileChooser.newFolderErrorSeparator= :
|
|
||||||
FileChooser.newFolderParentDoesntExistTitleText=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E
|
# File Size Units
|
||||||
FileChooser.newFolderParentDoesntExistText=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E\u3002\n\n\u7CFB\u7D71\u627E\u4E0D\u5230\u6307\u5B9A\u7684\u8DEF\u5F91\u3002
|
FileChooser.fileSizeKiloBytes={0} KB
|
||||||
FileChooser.renameErrorTitleText=\u91CD\u65B0\u547D\u540D\u6A94\u6848\u6216\u8CC7\u6599\u593E\u6642\u767C\u751F\u932F\u8AA4\u3002
|
FileChooser.fileSizeMegaBytes={0} MB
|
||||||
FileChooser.renameErrorText=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0}
|
FileChooser.fileSizeGigaBytes={0} GB
|
||||||
FileChooser.renameErrorFileExistsText=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0}: \u5DF2\u7D93\u5B58\u5728\u60A8\u6240\u6307\u5B9A\u540D\u7A31\u7684\u6A94\u6848\u3002\u8ACB\u6307\u5B9A\u4E0D\u540C\u7684\u540D\u7A31\u3002
|
|
||||||
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6A94\u6848
|
# These strings are platform dependent not look and feel dependent.
|
||||||
FileChooser.cancelButtonText=\u53D6\u6D88
|
FileChooser.win32.newFolder=\u65B0\u8CC7\u6599\u593E
|
||||||
FileChooser.cancelButtonMnemonic=67
|
FileChooser.win32.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E ({0})
|
||||||
FileChooser.saveButtonText=\u5132\u5B58
|
FileChooser.other.newFolder=\u65B0\u8CC7\u6599\u593E
|
||||||
FileChooser.saveButtonMnemonic=83
|
FileChooser.other.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E.{0}
|
||||||
FileChooser.openButtonText=\u958B\u555F
|
|
||||||
FileChooser.openButtonMnemonic=79
|
|
||||||
FileChooser.saveDialogTitleText=\u5132\u5B58
|
## file chooser tooltips ###
|
||||||
FileChooser.openDialogTitleText=\u958B\u555F
|
FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6A94\u6848\u9078\u64C7\u5668\u5C0D\u8A71\u65B9\u584A
|
||||||
FileChooser.updateButtonText=\u66F4\u65B0(U)
|
FileChooser.saveButtonToolTip.textAndMnemonic=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848
|
||||||
FileChooser.updateButtonMnemonic=85
|
FileChooser.openButtonToolTip.textAndMnemonic=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848
|
||||||
FileChooser.helpButtonText=\u8AAA\u660E(H)
|
FileChooser.updateButtonToolTip.textAndMnemonic=\u66F4\u65B0\u76EE\u9304\u6E05\u55AE
|
||||||
FileChooser.helpButtonMnemonic=72
|
FileChooser.helpButtonToolTip.textAndMnemonic=\u300C\u6A94\u6848\u9078\u64C7\u5668\u300D\u8AAA\u660E
|
||||||
FileChooser.directoryOpenButtonText=\u958B\u555F(O)
|
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\u958B\u555F\u9078\u53D6\u7684\u76EE\u9304
|
||||||
FileChooser.directoryOpenButtonMnemonic=79
|
|
||||||
|
FileChooser.filesListAccessibleName=Files List
|
||||||
# File Size Units
|
FileChooser.filesDetailsAccessibleName=Files Details
|
||||||
FileChooser.fileSizeKiloBytes={0} KB
|
|
||||||
FileChooser.fileSizeMegaBytes={0} MB
|
############ COLOR CHOOSER STRINGS #############
|
||||||
FileChooser.fileSizeGigaBytes={0} GB
|
ColorChooser.preview.textAndMnemonic=\u9810\u89BD
|
||||||
|
ColorChooser.ok.textAndMnemonic=\u78BA\u5B9A
|
||||||
# These strings are platform dependent not look and feel dependent.
|
ColorChooser.cancel.textAndMnemonic=\u53D6\u6D88
|
||||||
FileChooser.win32.newFolder=\u65B0\u8CC7\u6599\u593E
|
ColorChooser.reset.textAndMnemonic=\u91CD\u8A2D(&R)
|
||||||
FileChooser.win32.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E ({0})
|
ColorChooser.sample.textAndMnemonic=\u7BC4\u4F8B\u6587\u5B57 \u7BC4\u4F8B\u6587\u5B57
|
||||||
FileChooser.other.newFolder=\u65B0\u8CC7\u6599\u593E
|
ColorChooser.swatches.textAndMnemonic=\u8ABF\u8272\u677F(&S)
|
||||||
FileChooser.other.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E.{0}
|
ColorChooser.swatchesRecent.textAndMnemonic=\u6700\u65B0\u9078\u64C7:
|
||||||
|
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||||
|
ColorChooser.hsvHue.textAndMnemonic=\u8272\u8ABF
|
||||||
## file chooser tooltips ###
|
ColorChooser.hsvSaturation.textAndMnemonic=\u5F69\u5EA6
|
||||||
FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6A94\u6848\u9078\u64C7\u5668\u5C0D\u8A71\u65B9\u584A
|
ColorChooser.hsvValue.textAndMnemonic=\u6578\u503C
|
||||||
FileChooser.saveButtonToolTipText=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848
|
ColorChooser.hsvTransparency.textAndMnemonic=\u900F\u660E\u5EA6
|
||||||
FileChooser.openButtonToolTipText=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848
|
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||||
FileChooser.updateButtonToolTipText=\u66F4\u65B0\u76EE\u9304\u6E05\u55AE
|
ColorChooser.hslHue.textAndMnemonic=\u8272\u8ABF
|
||||||
FileChooser.helpButtonToolTipText=\u300C\u6A94\u6848\u9078\u64C7\u5668\u300D\u8AAA\u660E
|
ColorChooser.hslSaturation.textAndMnemonic=\u5F69\u5EA6
|
||||||
FileChooser.directoryOpenButtonToolTipText=\u958B\u555F\u9078\u53D6\u7684\u76EE\u9304
|
ColorChooser.hslLightness.textAndMnemonic=\u4EAE\u5EA6
|
||||||
|
ColorChooser.hslTransparency.textAndMnemonic=\u900F\u660E\u5EA6
|
||||||
FileChooser.filesListAccessibleName=Files List
|
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||||
FileChooser.filesDetailsAccessibleName=Files Details
|
ColorChooser.rgbRed.textAndMnemonic=\u7D05(&D)
|
||||||
|
ColorChooser.rgbGreen.textAndMnemonic=\u7DA0(&N)
|
||||||
############ COLOR CHOOSER STRINGS #############
|
ColorChooser.rgbBlue.textAndMnemonic=\u85CD(&B)
|
||||||
ColorChooser.previewText=\u9810\u89BD
|
ColorChooser.rgbAlpha.textAndMnemonic=Alpha
|
||||||
ColorChooser.okText=\u78BA\u5B9A
|
ColorChooser.rgbHexCode.textAndMnemonic=\u984F\u8272\u4EE3\u78BC(&C)
|
||||||
ColorChooser.cancelText=\u53D6\u6D88
|
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||||
ColorChooser.resetText=\u91CD\u8A2D(R)
|
ColorChooser.cmykCyan.textAndMnemonic=\u85CD\u7DA0\u8272
|
||||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
ColorChooser.cmykMagenta.textAndMnemonic=\u7D2B\u7D05\u8272
|
||||||
ColorChooser.resetMnemonic=82
|
ColorChooser.cmykYellow.textAndMnemonic=\u9EC3\u8272
|
||||||
ColorChooser.sampleText=\u7BC4\u4F8B\u6587\u5B57 \u7BC4\u4F8B\u6587\u5B57
|
ColorChooser.cmykBlack.textAndMnemonic=\u9ED1\u8272
|
||||||
ColorChooser.swatchesNameText=\u8ABF\u8272\u677F(S)
|
ColorChooser.cmykAlpha.textAndMnemonic=Alpha
|
||||||
ColorChooser.swatchesMnemonic=83
|
|
||||||
ColorChooser.swatchesRecentText=\u6700\u65B0\u9078\u64C7:
|
############ OPTION PANE STRINGS #############
|
||||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
# We only define mnemonics for YES/NO, but for completeness you can
|
||||||
# constant, and an index into the text to render the mnemonic as. The
|
# define mnemonics for any of the buttons.
|
||||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
OptionPane.yesButton.textAndMnemonic=\u662F(&Y)
|
||||||
# xxxDisplayedMnemonicIndex.
|
OptionPane.noButton.textAndMnemonic=\u5426(&N)
|
||||||
ColorChooser.hsvNameText=HSV
|
OptionPane.okButton.textAndMnemonic=\u78BA\u5B9A(&O)
|
||||||
ColorChooser.hsvMnemonic=72
|
OptionPane.cancelButton.textAndMnemonic=\u53D6\u6D88
|
||||||
ColorChooser.hsvHueText=\u8272\u8ABF
|
OptionPane.title.textAndMnemonic=\u9078\u53D6\u4E00\u500B\u9078\u9805
|
||||||
ColorChooser.hsvSaturationText=\u5F69\u5EA6
|
# Title for the dialog for the showInputDialog methods. Only used if
|
||||||
ColorChooser.hsvValueText=\u6578\u503C
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hsvTransparencyText=\u900F\u660E\u5EA6
|
OptionPane.inputDialog.titleAndMnemonic=\u8F38\u5165
|
||||||
ColorChooser.hslNameText=HSL
|
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||||
ColorChooser.hslMnemonic=76
|
# the developer uses one of the variants that doesn't take a title.
|
||||||
ColorChooser.hslHueText=\u8272\u8ABF
|
OptionPane.messageDialog.titleAndMnemonic=\u8A0A\u606F
|
||||||
ColorChooser.hslSaturationText=\u5F69\u5EA6
|
|
||||||
ColorChooser.hslLightnessText=\u4EAE\u5EA6
|
############ Printing Dialog Strings ############
|
||||||
ColorChooser.hslTransparencyText=\u900F\u660E\u5EA6
|
PrintingDialog.titleProgress.textAndMnemonic=\u5217\u5370
|
||||||
ColorChooser.rgbNameText=RGB
|
PrintingDialog.titleAborting.textAndMnemonic=\u5217\u5370 (\u4E2D\u6B62)
|
||||||
ColorChooser.rgbMnemonic=71
|
|
||||||
ColorChooser.rgbRedText=\u7D05
|
PrintingDialog.contentInitial.textAndMnemonic=\u6B63\u5728\u5217\u5370...
|
||||||
ColorChooser.rgbRedMnemonic=68
|
|
||||||
ColorChooser.rgbGreenText=\u7DA0
|
# The following string will be formatted by a MessageFormat
|
||||||
ColorChooser.rgbGreenMnemonic=78
|
# and {0} will be replaced by page number being printed
|
||||||
ColorChooser.rgbBlueText=\u85CD
|
PrintingDialog.contentProgress.textAndMnemonic=\u5DF2\u5217\u5370\u7684\u9801\u9762 {0}...
|
||||||
ColorChooser.rgbBlueMnemonic=66
|
|
||||||
ColorChooser.rgbAlphaText=Alpha
|
PrintingDialog.contentAborting.textAndMnemonic=\u6B63\u5728\u4E2D\u6B62\u5217\u5370...
|
||||||
ColorChooser.rgbHexCodeText=\u984F\u8272\u4EE3\u78BC(C)
|
|
||||||
ColorChooser.rgbHexCodeMnemonic=67
|
PrintingDialog.abortButton.textAndMnemonic=\u4E2D\u6B62(&A)
|
||||||
ColorChooser.cmykNameText=CMYK
|
PrintingDialog.abortButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u5217\u5370
|
||||||
ColorChooser.cmykMnemonic=77
|
|
||||||
ColorChooser.cmykCyanText=\u85CD\u7DA0\u8272
|
############ Internal Frame Strings ############
|
||||||
ColorChooser.cmykMagentaText=\u7D2B\u7D05\u8272
|
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
|
||||||
ColorChooser.cmykYellowText=\u9EC3\u8272
|
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
|
||||||
ColorChooser.cmykBlackText=\u9ED1\u8272
|
InternalFrame.restoreButtonToolTip=\u5FA9\u539F
|
||||||
ColorChooser.cmykAlphaText=Alpha
|
InternalFrame.closeButtonToolTip=\u95DC\u9589
|
||||||
|
|
||||||
############ OPTION PANE STRINGS #############
|
############ Internal Frame Title Pane Strings ############
|
||||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
InternalFrameTitlePane.restoreButton.textAndMnemonic=\u5FA9\u539F
|
||||||
# We only define mnemonics for YES/NO, but for completeness you can
|
InternalFrameTitlePane.moveButton.textAndMnemonic=\u79FB\u52D5
|
||||||
# define mnemonics for any of the buttons.
|
InternalFrameTitlePane.sizeButton.textAndMnemonic=\u5927\u5C0F
|
||||||
OptionPane.yesButtonText=\u662F(Y)
|
InternalFrameTitlePane.minimizeButton.textAndMnemonic=\u6700\u5C0F\u5316
|
||||||
OptionPane.yesButtonMnemonic=89
|
InternalFrameTitlePane.maximizeButton.textAndMnemonic=\u6700\u5927\u5316
|
||||||
OptionPane.noButtonText=\u5426(N)
|
InternalFrameTitlePane.closeButton.textAndMnemonic=\u95DC\u9589
|
||||||
OptionPane.noButtonMnemonic=78
|
|
||||||
OptionPane.okButtonText=\u78BA\u5B9A
|
############ Text strings #############
|
||||||
OptionPane.okButtonMnemonic=O
|
# Used for html forms
|
||||||
OptionPane.cancelButtonText=\u53D6\u6D88
|
FormView.submitButton.textAndMnemonic=\u9001\u51FA\u67E5\u8A62
|
||||||
OptionPane.cancelButtonMnemonic=0
|
FormView.resetButton.textAndMnemonic=\u91CD\u8A2D
|
||||||
OptionPane.titleText=\u9078\u53D6\u4E00\u500B\u9078\u9805
|
FormView.browseFileButton.textAndMnemonic=\u700F\u89BD...
|
||||||
# Title for the dialog for the showInputDialog methods. Only used if
|
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
############ Abstract Document Strings ############
|
||||||
OptionPane.inputDialogTitle=\u8F38\u5165
|
AbstractDocument.styleChange.textAndMnemonic=\u6A23\u5F0F\u8B8A\u66F4
|
||||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
AbstractDocument.addition.textAndMnemonic=\u9644\u52A0
|
||||||
# the developer uses one of the variants that doesn't take a title.
|
AbstractDocument.deletion.textAndMnemonic=\u522A\u9664
|
||||||
OptionPane.messageDialogTitle=\u8A0A\u606F
|
AbstractDocument.undo.textAndMnemonic=\u9084\u539F
|
||||||
|
AbstractDocument.redo.textAndMnemonic=\u91CD\u505A
|
||||||
############ Printing Dialog Strings ############
|
|
||||||
PrintingDialog.titleProgressText=\u5217\u5370
|
############ Abstract Button Strings ############
|
||||||
PrintingDialog.titleAbortingText=\u5217\u5370 (\u4E2D\u6B62)
|
AbstractButton.click.textAndMnemonic=\u6309\u4E00\u4E0B
|
||||||
|
|
||||||
PrintingDialog.contentInitialText=\u6B63\u5728\u5217\u5370...
|
############ Abstract Undoable Edit Strings ############
|
||||||
|
AbstractUndoableEdit.undo.textAndMnemonic=\u9084\u539F
|
||||||
# The following string will be formatted by a MessageFormat
|
AbstractUndoableEdit.redo.textAndMnemonic=\u91CD\u505A
|
||||||
# and {0} will be replaced by page number being printed
|
|
||||||
PrintingDialog.contentProgressText=\u5DF2\u5217\u5370\u7684\u9801\u9762 {0}...
|
############ Combo Box Strings ############
|
||||||
|
ComboBox.togglePopup.textAndMnemonic=\u5207\u63DB\u5373\u73FE\u5F0F\u8996\u7A97
|
||||||
PrintingDialog.contentAbortingText=\u6B63\u5728\u4E2D\u6B62\u5217\u5370...
|
|
||||||
|
############ Progress Monitor Strings ############
|
||||||
PrintingDialog.abortButtonText=\u4E2D\u6B62(A)
|
ProgressMonitor.progress.textAndMnemonic=\u9032\u5EA6...
|
||||||
PrintingDialog.abortButtonMnemonic=65
|
|
||||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
############ Split Pane Strings ############
|
||||||
PrintingDialog.abortButtonToolTipText=\u4E2D\u6B62\u5217\u5370
|
SplitPane.leftButton.textAndMnemonic=\u5DE6\u6309\u9215
|
||||||
|
SplitPane.rightButton.textAndMnemonic=\u53F3\u6309\u9215
|
||||||
############ Internal Frame Strings ############
|
# Used for Isindex
|
||||||
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
|
IsindexView.prompt=\u9019\u662F\u4E00\u500B\u53EF\u641C\u5C0B\u7684\u7D22\u5F15\u3002\u8F38\u5165\u641C\u5C0B\u95DC\u9375\u5B57:
|
||||||
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
|
|
||||||
InternalFrame.restoreButtonToolTip=\u5FA9\u539F
|
############ InternalFrameTitlePane Strings ############
|
||||||
InternalFrame.closeButtonToolTip=\u95DC\u9589
|
InternalFrameTitlePane.iconifyButtonAccessibleName=\u5716\u793A\u5316
|
||||||
|
InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316
|
||||||
############ Internal Frame Title Pane Strings ############
|
InternalFrameTitlePane.closeButtonAccessibleName=\u95DC\u9589
|
||||||
InternalFrameTitlePane.restoreButtonText=\u5FA9\u539F
|
|
||||||
InternalFrameTitlePane.moveButtonText=\u79FB\u52D5
|
|
||||||
InternalFrameTitlePane.sizeButtonText=\u5927\u5C0F
|
|
||||||
InternalFrameTitlePane.minimizeButtonText=\u6700\u5C0F\u5316
|
|
||||||
InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316
|
|
||||||
InternalFrameTitlePane.closeButtonText=\u95DC\u9589
|
|
||||||
|
|
||||||
############ Text strings #############
|
|
||||||
# Used for html forms
|
|
||||||
FormView.submitButtonText=\u9001\u51FA\u67E5\u8A62
|
|
||||||
FormView.resetButtonText=\u91CD\u8A2D
|
|
||||||
FormView.browseFileButtonText=\u700F\u89BD...
|
|
||||||
|
|
||||||
############ Abstract Document Strings ############
|
|
||||||
AbstractDocument.styleChangeText=\u6A23\u5F0F\u8B8A\u66F4
|
|
||||||
AbstractDocument.additionText=\u9644\u52A0
|
|
||||||
AbstractDocument.deletionText=\u522A\u9664
|
|
||||||
AbstractDocument.undoText=\u9084\u539F
|
|
||||||
AbstractDocument.redoText=\u91CD\u505A
|
|
||||||
|
|
||||||
############ Abstract Button Strings ############
|
|
||||||
AbstractButton.clickText=\u6309\u4E00\u4E0B
|
|
||||||
|
|
||||||
############ Abstract Undoable Edit Strings ############
|
|
||||||
AbstractUndoableEdit.undoText=\u9084\u539F
|
|
||||||
AbstractUndoableEdit.redoText=\u91CD\u505A
|
|
||||||
|
|
||||||
############ Combo Box Strings ############
|
|
||||||
ComboBox.togglePopupText=\u5207\u63DB\u5373\u73FE\u5F0F\u8996\u7A97
|
|
||||||
|
|
||||||
############ Progress Monitor Strings ############
|
|
||||||
ProgressMonitor.progressText=\u9032\u5EA6...
|
|
||||||
|
|
||||||
############ Split Pane Strings ############
|
|
||||||
SplitPane.leftButtonText=\u5DE6\u6309\u9215
|
|
||||||
SplitPane.rightButtonText=\u53F3\u6309\u9215
|
|
||||||
# Used for Isindex
|
|
||||||
IsindexView.prompt=\u9019\u662F\u4E00\u500B\u53EF\u641C\u5C0B\u7684\u7D22\u5F15\u3002\u8F38\u5165\u641C\u5C0B\u95DC\u9375\u5B57:
|
|
||||||
|
|
||||||
############ InternalFrameTitlePane Strings ############
|
|
||||||
InternalFrameTitlePane.iconifyButtonAccessibleName=\u5716\u793A\u5316
|
|
||||||
InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316
|
|
||||||
InternalFrameTitlePane.closeButtonAccessibleName=\u95DC\u9589
|
|
||||||
|
|
||||||
|
@ -1,60 +1,51 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=Look In:
|
FileChooser.lookInLabel.textAndMnemonic=Look &In:
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=Save In:
|
||||||
FileChooser.saveInLabelText=Save In:
|
FileChooser.fileNameLabel.textAndMnemonic=File &Name:
|
||||||
FileChooser.fileNameLabelText=File Name:
|
FileChooser.folderNameLabel.textAndMnemonic=Folder &name:
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Files of &Type:
|
||||||
FileChooser.folderNameLabelText=Folder name:
|
FileChooser.upFolderToolTip.textAndMnemonic=Up One Level
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=Up
|
||||||
FileChooser.filesOfTypeLabelText=Files of Type:
|
FileChooser.homeFolderToolTip.textAndMnemonic=Home
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=Home
|
||||||
FileChooser.upFolderToolTipText=Up One Level
|
FileChooser.newFolderToolTip.textAndMnemonic=Create New Folder
|
||||||
FileChooser.upFolderAccessibleName=Up
|
FileChooser.newFolderAccessibleName=New Folder
|
||||||
FileChooser.homeFolderToolTipText=Home
|
FileChooser.newFolderActionLabel.textAndMnemonic=New Folder
|
||||||
FileChooser.homeFolderAccessibleName=Home
|
FileChooser.listViewButtonToolTip.textAndMnemonic=List
|
||||||
FileChooser.newFolderToolTipText=Create New Folder
|
FileChooser.listViewButtonAccessibleName=List
|
||||||
FileChooser.newFolderAccessibleName=New Folder
|
FileChooser.listViewActionLabel.textAndMnemonic=List
|
||||||
FileChooser.newFolderActionLabelText=New Folder
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Details
|
||||||
FileChooser.listViewButtonToolTipText=List
|
FileChooser.detailsViewButtonAccessibleName=Details
|
||||||
FileChooser.listViewButtonAccessibleName=List
|
FileChooser.detailsViewActionLabel.textAndMnemonic=Details
|
||||||
FileChooser.listViewActionLabelText=List
|
FileChooser.refreshActionLabel.textAndMnemonic=Refresh
|
||||||
FileChooser.detailsViewButtonToolTipText=Details
|
FileChooser.viewMenuLabel.textAndMnemonic=View
|
||||||
FileChooser.detailsViewButtonAccessibleName=Details
|
FileChooser.fileNameHeader.textAndMnemonic=Name
|
||||||
FileChooser.detailsViewActionLabelText=Details
|
FileChooser.fileSizeHeader.textAndMnemonic=Size
|
||||||
FileChooser.refreshActionLabelText=Refresh
|
FileChooser.fileTypeHeader.textAndMnemonic=Type
|
||||||
FileChooser.viewMenuLabelText=View
|
FileChooser.fileDateHeader.textAndMnemonic=Modified
|
||||||
FileChooser.fileNameHeaderText=Name
|
FileChooser.fileAttrHeader.textAndMnemonic=Attributes
|
||||||
FileChooser.fileSizeHeaderText=Size
|
|
||||||
FileChooser.fileTypeHeaderText=Type
|
############ Used by MetalTitlePane if rendering window decorations############
|
||||||
FileChooser.fileDateHeaderText=Modified
|
MetalTitlePane.restore.titleAndMnemonic=&Restore
|
||||||
FileChooser.fileAttrHeaderText=Attributes
|
MetalTitlePane.iconify.titleAndMnemonic=Minimiz&e
|
||||||
|
MetalTitlePane.maximize.titleAndMnemonic=Ma&ximize
|
||||||
############ Used by MetalTitlePane if rendering window decorations############
|
MetalTitlePane.close.titleAndMnemonic=&Close
|
||||||
# All mnemonics are KeyEvent.VK_XXX as integers
|
|
||||||
MetalTitlePane.restoreTitle=Restore
|
|
||||||
MetalTitlePane.restoreMnemonic=82
|
|
||||||
MetalTitlePane.iconifyTitle=Minimize
|
|
||||||
MetalTitlePane.iconifyMnemonic=69
|
|
||||||
MetalTitlePane.maximizeTitle=Maximize
|
|
||||||
MetalTitlePane.maximizeMnemonic=88
|
|
||||||
MetalTitlePane.closeTitle=Close
|
|
||||||
MetalTitlePane.closeMnemonic=67
|
|
||||||
|
@ -1,61 +1,52 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=Suchen in:
|
FileChooser.lookInLabel.textAndMnemonic=Suchen &in:
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=Speichern in:
|
||||||
FileChooser.saveInLabelText=Speichern in:
|
FileChooser.fileNameLabel.textAndMnemonic=Datei&name:
|
||||||
FileChooser.fileNameLabelText=Dateiname:
|
FileChooser.folderNameLabel.textAndMnemonic=Ord&nername:
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Da&teityp:
|
||||||
FileChooser.folderNameLabelText=Ordnername:
|
FileChooser.upFolderToolTip.textAndMnemonic=Eine Ebene h\u00F6her
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=Nach oben
|
||||||
FileChooser.filesOfTypeLabelText=Dateityp:
|
FileChooser.homeFolderToolTip.textAndMnemonic=Home
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=Home
|
||||||
FileChooser.upFolderToolTipText=Eine Ebene h\u00F6her
|
FileChooser.newFolderToolTip.textAndMnemonic=Neuen Ordner erstellen
|
||||||
FileChooser.upFolderAccessibleName=Nach oben
|
FileChooser.newFolderAccessibleName=Neuer Ordner
|
||||||
FileChooser.homeFolderToolTipText=Home
|
FileChooser.newFolderActionLabel.textAndMnemonic=Neuer Ordner
|
||||||
FileChooser.homeFolderAccessibleName=Home
|
FileChooser.listViewButtonToolTip.textAndMnemonic=Liste
|
||||||
FileChooser.newFolderToolTipText=Neuen Ordner erstellen
|
FileChooser.listViewButtonAccessibleName=Liste
|
||||||
FileChooser.newFolderAccessibleName=Neuer Ordner
|
FileChooser.listViewActionLabel.textAndMnemonic=Liste
|
||||||
FileChooser.newFolderActionLabelText=Neuer Ordner
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Details
|
||||||
FileChooser.listViewButtonToolTipText=Liste
|
FileChooser.detailsViewButtonAccessibleName=Details
|
||||||
FileChooser.listViewButtonAccessibleName=Liste
|
FileChooser.detailsViewActionLabel.textAndMnemonic=Details
|
||||||
FileChooser.listViewActionLabelText=Liste
|
FileChooser.refreshActionLabel.textAndMnemonic=Aktualisieren
|
||||||
FileChooser.detailsViewButtonToolTipText=Details
|
FileChooser.viewMenuLabel.textAndMnemonic=Ansicht
|
||||||
FileChooser.detailsViewButtonAccessibleName=Details
|
FileChooser.fileNameHeader.textAndMnemonic=Name
|
||||||
FileChooser.detailsViewActionLabelText=Details
|
FileChooser.fileSizeHeader.textAndMnemonic=Gr\u00F6\u00DFe
|
||||||
FileChooser.refreshActionLabelText=Aktualisieren
|
FileChooser.fileTypeHeader.textAndMnemonic=Typ
|
||||||
FileChooser.viewMenuLabelText=Ansicht
|
FileChooser.fileDateHeader.textAndMnemonic=Ge\u00E4ndert
|
||||||
FileChooser.fileNameHeaderText=Name
|
FileChooser.fileAttrHeader.textAndMnemonic=Attribute
|
||||||
FileChooser.fileSizeHeaderText=Gr\u00F6\u00DFe
|
|
||||||
FileChooser.fileTypeHeaderText=Typ
|
############ Used by MetalTitlePane if rendering window decorations############
|
||||||
FileChooser.fileDateHeaderText=Ge\u00E4ndert
|
MetalTitlePane.restore.titleAndMnemonic=&Wiederherstellen
|
||||||
FileChooser.fileAttrHeaderText=Attribute
|
MetalTitlePane.iconify.titleAndMnemonic=Minimie&ren
|
||||||
|
MetalTitlePane.maximize.titleAndMnemonic=Ma&ximieren
|
||||||
############ Used by MetalTitlePane if rendering window decorations############
|
MetalTitlePane.close.titleAndMnemonic=Schlie\u00DFen(&S)
|
||||||
# All mnemonics are KeyEvent.VK_XXX as integers
|
|
||||||
MetalTitlePane.restoreTitle=Wiederherstellen
|
|
||||||
MetalTitlePane.restoreMnemonic=87
|
|
||||||
MetalTitlePane.iconifyTitle=Minimieren
|
|
||||||
MetalTitlePane.iconifyMnemonic=82
|
|
||||||
MetalTitlePane.maximizeTitle=Maximieren
|
|
||||||
MetalTitlePane.maximizeMnemonic=88
|
|
||||||
MetalTitlePane.closeTitle=Schlie\u00DFen
|
|
||||||
MetalTitlePane.closeMnemonic=83
|
|
||||||
|
|
||||||
|
@ -1,61 +1,52 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=Buscar en:
|
FileChooser.lookInLabel.textAndMnemonic=Buscar en(&I):
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=Guardar en:
|
||||||
FileChooser.saveInLabelText=Guardar en:
|
FileChooser.fileNameLabel.textAndMnemonic=&Nombre de Archivo:
|
||||||
FileChooser.fileNameLabelText=Nombre de Archivo:
|
FileChooser.folderNameLabel.textAndMnemonic=&Nombre de la Carpeta:
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Archivos de &Tipo:
|
||||||
FileChooser.folderNameLabelText=Nombre de la Carpeta:
|
FileChooser.upFolderToolTip.textAndMnemonic=Subir un Nivel
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=Arriba
|
||||||
FileChooser.filesOfTypeLabelText=Archivos de Tipo:
|
FileChooser.homeFolderToolTip.textAndMnemonic=Inicio
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=Inicio
|
||||||
FileChooser.upFolderToolTipText=Subir un Nivel
|
FileChooser.newFolderToolTip.textAndMnemonic=Crear Nueva Carpeta
|
||||||
FileChooser.upFolderAccessibleName=Arriba
|
FileChooser.newFolderAccessibleName=Nueva Carpeta
|
||||||
FileChooser.homeFolderToolTipText=Inicio
|
FileChooser.newFolderActionLabel.textAndMnemonic=Nueva Carpeta
|
||||||
FileChooser.homeFolderAccessibleName=Inicio
|
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderToolTipText=Crear Nueva Carpeta
|
FileChooser.listViewButtonAccessibleName=Lista
|
||||||
FileChooser.newFolderAccessibleName=Nueva Carpeta
|
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderActionLabelText=Nueva Carpeta
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Detalles
|
||||||
FileChooser.listViewButtonToolTipText=Lista
|
FileChooser.detailsViewButtonAccessibleName=Detalles
|
||||||
FileChooser.listViewButtonAccessibleName=Lista
|
FileChooser.detailsViewActionLabel.textAndMnemonic=Detalles
|
||||||
FileChooser.listViewActionLabelText=Lista
|
FileChooser.refreshActionLabel.textAndMnemonic=Refrescar
|
||||||
FileChooser.detailsViewButtonToolTipText=Detalles
|
FileChooser.viewMenuLabel.textAndMnemonic=Ver
|
||||||
FileChooser.detailsViewButtonAccessibleName=Detalles
|
FileChooser.fileNameHeader.textAndMnemonic=Nombre
|
||||||
FileChooser.detailsViewActionLabelText=Detalles
|
FileChooser.fileSizeHeader.textAndMnemonic=Tama\u00F1o
|
||||||
FileChooser.refreshActionLabelText=Refrescar
|
FileChooser.fileTypeHeader.textAndMnemonic=Tipo
|
||||||
FileChooser.viewMenuLabelText=Ver
|
FileChooser.fileDateHeader.textAndMnemonic=Modificado
|
||||||
FileChooser.fileNameHeaderText=Nombre
|
FileChooser.fileAttrHeader.textAndMnemonic=Atributos
|
||||||
FileChooser.fileSizeHeaderText=Tama\u00F1o
|
|
||||||
FileChooser.fileTypeHeaderText=Tipo
|
############ Used by MetalTitlePane if rendering window decorations############
|
||||||
FileChooser.fileDateHeaderText=Modificado
|
MetalTitlePane.restore.titleAndMnemonic=&Restaurar
|
||||||
FileChooser.fileAttrHeaderText=Atributos
|
MetalTitlePane.iconify.titleAndMnemonic=Minimi&zar
|
||||||
|
MetalTitlePane.maximize.titleAndMnemonic=Ma&ximizar
|
||||||
############ Used by MetalTitlePane if rendering window decorations############
|
MetalTitlePane.close.titleAndMnemonic=&Cerrar
|
||||||
# All mnemonics are KeyEvent.VK_XXX as integers
|
|
||||||
MetalTitlePane.restoreTitle=Restaurar
|
|
||||||
MetalTitlePane.restoreMnemonic=82
|
|
||||||
MetalTitlePane.iconifyTitle=Minimizar
|
|
||||||
MetalTitlePane.iconifyMnemonic=90
|
|
||||||
MetalTitlePane.maximizeTitle=Maximizar
|
|
||||||
MetalTitlePane.maximizeMnemonic=88
|
|
||||||
MetalTitlePane.closeTitle=Cerrar
|
|
||||||
MetalTitlePane.closeMnemonic=67
|
|
||||||
|
|
||||||
|
@ -1,61 +1,52 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=Rechercher dans :
|
FileChooser.lookInLabel.textAndMnemonic=Rechercher dans (&I):
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=Enregistrer dans :
|
||||||
FileChooser.saveInLabelText=Enregistrer dans :
|
FileChooser.fileNameLabel.textAndMnemonic=&Nom du fichier :
|
||||||
FileChooser.fileNameLabelText=Nom du fichier :
|
FileChooser.folderNameLabel.textAndMnemonic=&Nom du dossier :
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Fichiers de &type :
|
||||||
FileChooser.folderNameLabelText=Nom du dossier :
|
FileChooser.upFolderToolTip.textAndMnemonic=Remonte d'un niveau.
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=Monter
|
||||||
FileChooser.filesOfTypeLabelText=Fichiers de type :
|
FileChooser.homeFolderToolTip.textAndMnemonic=R\u00E9pertoire d'origine
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
|
||||||
FileChooser.upFolderToolTipText=Remonte d'un niveau.
|
FileChooser.newFolderToolTip.textAndMnemonic=Cr\u00E9e un dossier.
|
||||||
FileChooser.upFolderAccessibleName=Monter
|
FileChooser.newFolderAccessibleName=Nouveau dossier
|
||||||
FileChooser.homeFolderToolTipText=R\u00E9pertoire d'origine
|
FileChooser.newFolderActionLabel.textAndMnemonic=Nouveau dossier
|
||||||
FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
|
FileChooser.listViewButtonToolTip.textAndMnemonic=Liste
|
||||||
FileChooser.newFolderToolTipText=Cr\u00E9e un dossier.
|
FileChooser.listViewButtonAccessibleName=Liste
|
||||||
FileChooser.newFolderAccessibleName=Nouveau dossier
|
FileChooser.listViewActionLabel.textAndMnemonic=Liste
|
||||||
FileChooser.newFolderActionLabelText=Nouveau dossier
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=D\u00E9tails
|
||||||
FileChooser.listViewButtonToolTipText=Liste
|
FileChooser.detailsViewButtonAccessibleName=D\u00E9tails
|
||||||
FileChooser.listViewButtonAccessibleName=Liste
|
FileChooser.detailsViewActionLabel.textAndMnemonic=D\u00E9tails
|
||||||
FileChooser.listViewActionLabelText=Liste
|
FileChooser.refreshActionLabel.textAndMnemonic=Actualiser
|
||||||
FileChooser.detailsViewButtonToolTipText=D\u00E9tails
|
FileChooser.viewMenuLabel.textAndMnemonic=Affichage
|
||||||
FileChooser.detailsViewButtonAccessibleName=D\u00E9tails
|
FileChooser.fileNameHeader.textAndMnemonic=Nom
|
||||||
FileChooser.detailsViewActionLabelText=D\u00E9tails
|
FileChooser.fileSizeHeader.textAndMnemonic=Taille
|
||||||
FileChooser.refreshActionLabelText=Actualiser
|
FileChooser.fileTypeHeader.textAndMnemonic=Type
|
||||||
FileChooser.viewMenuLabelText=Affichage
|
FileChooser.fileDateHeader.textAndMnemonic=Modifi\u00E9
|
||||||
FileChooser.fileNameHeaderText=Nom
|
FileChooser.fileAttrHeader.textAndMnemonic=Attributs
|
||||||
FileChooser.fileSizeHeaderText=Taille
|
|
||||||
FileChooser.fileTypeHeaderText=Type
|
############ Used by MetalTitlePane if rendering window decorations############
|
||||||
FileChooser.fileDateHeaderText=Modifi\u00E9
|
MetalTitlePane.restore.titleAndMnemonic=&Restaurer
|
||||||
FileChooser.fileAttrHeaderText=Attributs
|
MetalTitlePane.iconify.titleAndMnemonic=R\u00E9duire(&D)
|
||||||
|
MetalTitlePane.maximize.titleAndMnemonic=&Agrandir
|
||||||
############ Used by MetalTitlePane if rendering window decorations############
|
MetalTitlePane.close.titleAndMnemonic=&Fermer
|
||||||
# All mnemonics are KeyEvent.VK_XXX as integers
|
|
||||||
MetalTitlePane.restoreTitle=Restaurer
|
|
||||||
MetalTitlePane.restoreMnemonic=82
|
|
||||||
MetalTitlePane.iconifyTitle=R\u00E9duire
|
|
||||||
MetalTitlePane.iconifyMnemonic=68
|
|
||||||
MetalTitlePane.maximizeTitle=Agrandir
|
|
||||||
MetalTitlePane.maximizeMnemonic=65
|
|
||||||
MetalTitlePane.closeTitle=Fermer
|
|
||||||
MetalTitlePane.closeMnemonic=70
|
|
||||||
|
|
||||||
|
@ -1,61 +1,52 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=Cerca in:
|
FileChooser.lookInLabel.textAndMnemonic=Cerca &in:
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=Salva in:
|
||||||
FileChooser.saveInLabelText=Salva in:
|
FileChooser.fileNameLabel.textAndMnemonic=&Nome file:
|
||||||
FileChooser.fileNameLabelText=Nome file:
|
FileChooser.folderNameLabel.textAndMnemonic=&Nome della cartella:
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=&Tipo file:
|
||||||
FileChooser.folderNameLabelText=Nome della cartella:
|
FileChooser.upFolderToolTip.textAndMnemonic=Cartella superiore
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=Superiore
|
||||||
FileChooser.filesOfTypeLabelText=Tipo file:
|
FileChooser.homeFolderToolTip.textAndMnemonic=Home
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=Home
|
||||||
FileChooser.upFolderToolTipText=Cartella superiore
|
FileChooser.newFolderToolTip.textAndMnemonic=Crea nuova cartella
|
||||||
FileChooser.upFolderAccessibleName=Superiore
|
FileChooser.newFolderAccessibleName=Nuova cartella
|
||||||
FileChooser.homeFolderToolTipText=Home
|
FileChooser.newFolderActionLabel.textAndMnemonic=Nuova cartella
|
||||||
FileChooser.homeFolderAccessibleName=Home
|
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderToolTipText=Crea nuova cartella
|
FileChooser.listViewButtonAccessibleName=Lista
|
||||||
FileChooser.newFolderAccessibleName=Nuova cartella
|
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderActionLabelText=Nuova cartella
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Dettagli
|
||||||
FileChooser.listViewButtonToolTipText=Lista
|
FileChooser.detailsViewButtonAccessibleName=Dettagli
|
||||||
FileChooser.listViewButtonAccessibleName=Lista
|
FileChooser.detailsViewActionLabel.textAndMnemonic=Dettagli
|
||||||
FileChooser.listViewActionLabelText=Lista
|
FileChooser.refreshActionLabel.textAndMnemonic=Aggiorna
|
||||||
FileChooser.detailsViewButtonToolTipText=Dettagli
|
FileChooser.viewMenuLabel.textAndMnemonic=Visualizza
|
||||||
FileChooser.detailsViewButtonAccessibleName=Dettagli
|
FileChooser.fileNameHeader.textAndMnemonic=Nome
|
||||||
FileChooser.detailsViewActionLabelText=Dettagli
|
FileChooser.fileSizeHeader.textAndMnemonic=Dimensioni
|
||||||
FileChooser.refreshActionLabelText=Aggiorna
|
FileChooser.fileTypeHeader.textAndMnemonic=Tipo
|
||||||
FileChooser.viewMenuLabelText=Visualizza
|
FileChooser.fileDateHeader.textAndMnemonic=Modificato
|
||||||
FileChooser.fileNameHeaderText=Nome
|
FileChooser.fileAttrHeader.textAndMnemonic=Attributi
|
||||||
FileChooser.fileSizeHeaderText=Dimensioni
|
|
||||||
FileChooser.fileTypeHeaderText=Tipo
|
############ Used by MetalTitlePane if rendering window decorations############
|
||||||
FileChooser.fileDateHeaderText=Modificato
|
MetalTitlePane.restore.titleAndMnemonic=&Ripristina
|
||||||
FileChooser.fileAttrHeaderText=Attributi
|
MetalTitlePane.iconify.titleAndMnemonic=Rid&uci a icona
|
||||||
|
MetalTitlePane.maximize.titleAndMnemonic=In&grandisci
|
||||||
############ Used by MetalTitlePane if rendering window decorations############
|
MetalTitlePane.close.titleAndMnemonic=&Chiudi
|
||||||
# All mnemonics are KeyEvent.VK_XXX as integers
|
|
||||||
MetalTitlePane.restoreTitle=Ripristina
|
|
||||||
MetalTitlePane.restoreMnemonic=82
|
|
||||||
MetalTitlePane.iconifyTitle=Riduci a icona
|
|
||||||
MetalTitlePane.iconifyMnemonic=85
|
|
||||||
MetalTitlePane.maximizeTitle=Ingrandisci
|
|
||||||
MetalTitlePane.maximizeMnemonic=71
|
|
||||||
MetalTitlePane.closeTitle=Chiudi
|
|
||||||
MetalTitlePane.closeMnemonic=67
|
|
||||||
|
|
||||||
|
@ -1,61 +1,52 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=\u53C2\u7167:
|
FileChooser.lookInLabel.textAndMnemonic=\u53C2\u7167(&I):
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=\u4FDD\u5B58:
|
||||||
FileChooser.saveInLabelText=\u4FDD\u5B58:
|
FileChooser.fileNameLabel.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u540D(&N):
|
||||||
FileChooser.fileNameLabelText=\u30D5\u30A1\u30A4\u30EB\u540D:
|
FileChooser.folderNameLabel.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0\u540D(&N):
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u306E\u30BF\u30A4\u30D7(&T):
|
||||||
FileChooser.folderNameLabelText=\u30D5\u30A9\u30EB\u30C0\u540D:
|
FileChooser.upFolderToolTip.textAndMnemonic=1\u30EC\u30D9\u30EB\u4E0A\u3078
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=\u4E0A\u3078
|
||||||
FileChooser.filesOfTypeLabelText=\u30D5\u30A1\u30A4\u30EB\u306E\u30BF\u30A4\u30D7:
|
FileChooser.homeFolderToolTip.textAndMnemonic=\u30DB\u30FC\u30E0
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=\u30DB\u30FC\u30E0
|
||||||
FileChooser.upFolderToolTipText=1\u30EC\u30D9\u30EB\u4E0A\u3078
|
FileChooser.newFolderToolTip.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210
|
||||||
FileChooser.upFolderAccessibleName=\u4E0A\u3078
|
FileChooser.newFolderAccessibleName=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||||
FileChooser.homeFolderToolTipText=\u30DB\u30FC\u30E0
|
FileChooser.newFolderActionLabel.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||||
FileChooser.homeFolderAccessibleName=\u30DB\u30FC\u30E0
|
FileChooser.listViewButtonToolTip.textAndMnemonic=\u30EA\u30B9\u30C8
|
||||||
FileChooser.newFolderToolTipText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210
|
FileChooser.listViewButtonAccessibleName=\u30EA\u30B9\u30C8
|
||||||
FileChooser.newFolderAccessibleName=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
FileChooser.listViewActionLabel.textAndMnemonic=\u30EA\u30B9\u30C8
|
||||||
FileChooser.newFolderActionLabelText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\u8A73\u7D30
|
||||||
FileChooser.listViewButtonToolTipText=\u30EA\u30B9\u30C8
|
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30
|
||||||
FileChooser.listViewButtonAccessibleName=\u30EA\u30B9\u30C8
|
FileChooser.detailsViewActionLabel.textAndMnemonic=\u8A73\u7D30
|
||||||
FileChooser.listViewActionLabelText=\u30EA\u30B9\u30C8
|
FileChooser.refreshActionLabel.textAndMnemonic=\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5
|
||||||
FileChooser.detailsViewButtonToolTipText=\u8A73\u7D30
|
FileChooser.viewMenuLabel.textAndMnemonic=\u8868\u793A
|
||||||
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30
|
FileChooser.fileNameHeader.textAndMnemonic=\u540D\u524D
|
||||||
FileChooser.detailsViewActionLabelText=\u8A73\u7D30
|
FileChooser.fileSizeHeader.textAndMnemonic=\u30B5\u30A4\u30BA
|
||||||
FileChooser.refreshActionLabelText=\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5
|
FileChooser.fileTypeHeader.textAndMnemonic=\u30BF\u30A4\u30D7
|
||||||
FileChooser.viewMenuLabelText=\u8868\u793A
|
FileChooser.fileDateHeader.textAndMnemonic=\u4FEE\u6B63\u65E5
|
||||||
FileChooser.fileNameHeaderText=\u540D\u524D
|
FileChooser.fileAttrHeader.textAndMnemonic=\u5C5E\u6027
|
||||||
FileChooser.fileSizeHeaderText=\u30B5\u30A4\u30BA
|
|
||||||
FileChooser.fileTypeHeaderText=\u30BF\u30A4\u30D7
|
############ Used by MetalTitlePane if rendering window decorations############
|
||||||
FileChooser.fileDateHeaderText=\u4FEE\u6B63\u65E5
|
MetalTitlePane.restore.titleAndMnemonic=\u5FA9\u5143(&R)
|
||||||
FileChooser.fileAttrHeaderText=\u5C5E\u6027
|
MetalTitlePane.iconify.titleAndMnemonic=\u6700\u5C0F\u5316(&E)
|
||||||
|
MetalTitlePane.maximize.titleAndMnemonic=\u6700\u5927\u5316(&X)
|
||||||
############ Used by MetalTitlePane if rendering window decorations############
|
MetalTitlePane.close.titleAndMnemonic=\u9589\u3058\u308B(&C)
|
||||||
# All mnemonics are KeyEvent.VK_XXX as integers
|
|
||||||
MetalTitlePane.restoreTitle=\u5FA9\u5143(R)
|
|
||||||
MetalTitlePane.restoreMnemonic=82
|
|
||||||
MetalTitlePane.iconifyTitle=\u6700\u5C0F\u5316(E)
|
|
||||||
MetalTitlePane.iconifyMnemonic=69
|
|
||||||
MetalTitlePane.maximizeTitle=\u6700\u5927\u5316(X)
|
|
||||||
MetalTitlePane.maximizeMnemonic=88
|
|
||||||
MetalTitlePane.closeTitle=\u9589\u3058\u308B(C)
|
|
||||||
MetalTitlePane.closeMnemonic=67
|
|
||||||
|
|
||||||
|
@ -1,61 +1,52 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=\uAC80\uC0C9 \uC704\uCE58:
|
FileChooser.lookInLabel.textAndMnemonic=\uAC80\uC0C9 \uC704\uCE58(&I):
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=\uC800\uC7A5 \uC704\uCE58:
|
||||||
FileChooser.saveInLabelText=\uC800\uC7A5 \uC704\uCE58:
|
FileChooser.fileNameLabel.textAndMnemonic=\uD30C\uC77C \uC774\uB984(&N):
|
||||||
FileChooser.fileNameLabelText=\uD30C\uC77C \uC774\uB984:
|
FileChooser.folderNameLabel.textAndMnemonic=\uD3F4\uB354 \uC774\uB984(&N):
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=\uD30C\uC77C \uC720\uD615(&T):
|
||||||
FileChooser.folderNameLabelText=\uD3F4\uB354 \uC774\uB984:
|
FileChooser.upFolderToolTip.textAndMnemonic=\uD55C \uB808\uBCA8 \uC704\uB85C
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=\uC704\uB85C
|
||||||
FileChooser.filesOfTypeLabelText=\uD30C\uC77C \uC720\uD615:
|
FileChooser.homeFolderToolTip.textAndMnemonic=\uD648
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=\uD648
|
||||||
FileChooser.upFolderToolTipText=\uD55C \uB808\uBCA8 \uC704\uB85C
|
FileChooser.newFolderToolTip.textAndMnemonic=\uC0C8 \uD3F4\uB354 \uC0DD\uC131
|
||||||
FileChooser.upFolderAccessibleName=\uC704\uB85C
|
FileChooser.newFolderAccessibleName=\uC0C8 \uD3F4\uB354
|
||||||
FileChooser.homeFolderToolTipText=\uD648
|
FileChooser.newFolderActionLabel.textAndMnemonic=\uC0C8 \uD3F4\uB354
|
||||||
FileChooser.homeFolderAccessibleName=\uD648
|
FileChooser.listViewButtonToolTip.textAndMnemonic=\uBAA9\uB85D
|
||||||
FileChooser.newFolderToolTipText=\uC0C8 \uD3F4\uB354 \uC0DD\uC131
|
FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
|
||||||
FileChooser.newFolderAccessibleName=\uC0C8 \uD3F4\uB354
|
FileChooser.listViewActionLabel.textAndMnemonic=\uBAA9\uB85D
|
||||||
FileChooser.newFolderActionLabelText=\uC0C8 \uD3F4\uB354
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\uC138\uBD80 \uC815\uBCF4
|
||||||
FileChooser.listViewButtonToolTipText=\uBAA9\uB85D
|
FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80 \uC815\uBCF4
|
||||||
FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
|
FileChooser.detailsViewActionLabel.textAndMnemonic=\uC138\uBD80 \uC815\uBCF4
|
||||||
FileChooser.listViewActionLabelText=\uBAA9\uB85D
|
FileChooser.refreshActionLabel.textAndMnemonic=\uC0C8\uB85C \uACE0\uCE68
|
||||||
FileChooser.detailsViewButtonToolTipText=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.viewMenuLabel.textAndMnemonic=\uBCF4\uAE30
|
||||||
FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.fileNameHeader.textAndMnemonic=\uC774\uB984
|
||||||
FileChooser.detailsViewActionLabelText=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.fileSizeHeader.textAndMnemonic=\uD06C\uAE30
|
||||||
FileChooser.refreshActionLabelText=\uC0C8\uB85C \uACE0\uCE68
|
FileChooser.fileTypeHeader.textAndMnemonic=\uC720\uD615
|
||||||
FileChooser.viewMenuLabelText=\uBCF4\uAE30
|
FileChooser.fileDateHeader.textAndMnemonic=\uC218\uC815 \uB0A0\uC9DC
|
||||||
FileChooser.fileNameHeaderText=\uC774\uB984
|
FileChooser.fileAttrHeader.textAndMnemonic=\uC18D\uC131
|
||||||
FileChooser.fileSizeHeaderText=\uD06C\uAE30
|
|
||||||
FileChooser.fileTypeHeaderText=\uC720\uD615
|
############ Used by MetalTitlePane if rendering window decorations############
|
||||||
FileChooser.fileDateHeaderText=\uC218\uC815 \uB0A0\uC9DC
|
MetalTitlePane.restore.titleAndMnemonic=\uBCF5\uC6D0(&R)
|
||||||
FileChooser.fileAttrHeaderText=\uC18D\uC131
|
MetalTitlePane.iconify.titleAndMnemonic=\uCD5C\uC18C\uD654(&E)
|
||||||
|
MetalTitlePane.maximize.titleAndMnemonic=\uCD5C\uB300\uD654(&X)
|
||||||
############ Used by MetalTitlePane if rendering window decorations############
|
MetalTitlePane.close.titleAndMnemonic=\uB2EB\uAE30(&C)
|
||||||
# All mnemonics are KeyEvent.VK_XXX as integers
|
|
||||||
MetalTitlePane.restoreTitle=\uBCF5\uC6D0(R)
|
|
||||||
MetalTitlePane.restoreMnemonic=82
|
|
||||||
MetalTitlePane.iconifyTitle=\uCD5C\uC18C\uD654(E)
|
|
||||||
MetalTitlePane.iconifyMnemonic=69
|
|
||||||
MetalTitlePane.maximizeTitle=\uCD5C\uB300\uD654(X)
|
|
||||||
MetalTitlePane.maximizeMnemonic=88
|
|
||||||
MetalTitlePane.closeTitle=\uB2EB\uAE30(C)
|
|
||||||
MetalTitlePane.closeMnemonic=67
|
|
||||||
|
|
||||||
|
@ -1,61 +1,52 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=Consultar Em:
|
FileChooser.lookInLabel.textAndMnemonic=Consultar Em(&I):
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=Salvar Em:
|
||||||
FileChooser.saveInLabelText=Salvar Em:
|
FileChooser.fileNameLabel.textAndMnemonic=&Nome do Arquivo:
|
||||||
FileChooser.fileNameLabelText=Nome do Arquivo:
|
FileChooser.folderNameLabel.textAndMnemonic=&Nome da pasta:
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Arquivos do &Tipo:
|
||||||
FileChooser.folderNameLabelText=Nome da pasta:
|
FileChooser.upFolderToolTip.textAndMnemonic=Um N\u00EDvel Acima
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=Acima
|
||||||
FileChooser.filesOfTypeLabelText=Arquivos do Tipo:
|
FileChooser.homeFolderToolTip.textAndMnemonic=In\u00EDcio
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=In\u00EDcio
|
||||||
FileChooser.upFolderToolTipText=Um N\u00EDvel Acima
|
FileChooser.newFolderToolTip.textAndMnemonic=Criar Nova Pasta
|
||||||
FileChooser.upFolderAccessibleName=Acima
|
FileChooser.newFolderAccessibleName=Nova Pasta
|
||||||
FileChooser.homeFolderToolTipText=In\u00EDcio
|
FileChooser.newFolderActionLabel.textAndMnemonic=Nova Pasta
|
||||||
FileChooser.homeFolderAccessibleName=In\u00EDcio
|
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderToolTipText=Criar Nova Pasta
|
FileChooser.listViewButtonAccessibleName=Lista
|
||||||
FileChooser.newFolderAccessibleName=Nova Pasta
|
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderActionLabelText=Nova Pasta
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Detalhes
|
||||||
FileChooser.listViewButtonToolTipText=Lista
|
FileChooser.detailsViewButtonAccessibleName=Detalhes
|
||||||
FileChooser.listViewButtonAccessibleName=Lista
|
FileChooser.detailsViewActionLabel.textAndMnemonic=Detalhes
|
||||||
FileChooser.listViewActionLabelText=Lista
|
FileChooser.refreshActionLabel.textAndMnemonic=Atualizar
|
||||||
FileChooser.detailsViewButtonToolTipText=Detalhes
|
FileChooser.viewMenuLabel.textAndMnemonic=Exibir
|
||||||
FileChooser.detailsViewButtonAccessibleName=Detalhes
|
FileChooser.fileNameHeader.textAndMnemonic=Nome
|
||||||
FileChooser.detailsViewActionLabelText=Detalhes
|
FileChooser.fileSizeHeader.textAndMnemonic=Tamanho
|
||||||
FileChooser.refreshActionLabelText=Atualizar
|
FileChooser.fileTypeHeader.textAndMnemonic=Tipo
|
||||||
FileChooser.viewMenuLabelText=Exibir
|
FileChooser.fileDateHeader.textAndMnemonic=Modificado
|
||||||
FileChooser.fileNameHeaderText=Nome
|
FileChooser.fileAttrHeader.textAndMnemonic=Atributos
|
||||||
FileChooser.fileSizeHeaderText=Tamanho
|
|
||||||
FileChooser.fileTypeHeaderText=Tipo
|
############ Used by MetalTitlePane if rendering window decorations############
|
||||||
FileChooser.fileDateHeaderText=Modificado
|
MetalTitlePane.restore.titleAndMnemonic=&Restaurar
|
||||||
FileChooser.fileAttrHeaderText=Atributos
|
MetalTitlePane.iconify.titleAndMnemonic=&Minimizar
|
||||||
|
MetalTitlePane.maximize.titleAndMnemonic=Ma&ximizar
|
||||||
############ Used by MetalTitlePane if rendering window decorations############
|
MetalTitlePane.close.titleAndMnemonic=&Fechar
|
||||||
# All mnemonics are KeyEvent.VK_XXX as integers
|
|
||||||
MetalTitlePane.restoreTitle=Restaurar
|
|
||||||
MetalTitlePane.restoreMnemonic=82
|
|
||||||
MetalTitlePane.iconifyTitle=Minimizar
|
|
||||||
MetalTitlePane.iconifyMnemonic=77
|
|
||||||
MetalTitlePane.maximizeTitle=Maximizar
|
|
||||||
MetalTitlePane.maximizeMnemonic=88
|
|
||||||
MetalTitlePane.closeTitle=Fechar
|
|
||||||
MetalTitlePane.closeMnemonic=70
|
|
||||||
|
|
||||||
|
@ -1,61 +1,52 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=Leta i:
|
FileChooser.lookInLabel.textAndMnemonic=Leta &i:
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=Spara i:
|
||||||
FileChooser.saveInLabelText=Spara i:
|
FileChooser.fileNameLabel.textAndMnemonic=Fil&namn:
|
||||||
FileChooser.fileNameLabelText=Filnamn:
|
FileChooser.folderNameLabel.textAndMnemonic=Mapp(&N):
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Filforma&t:
|
||||||
FileChooser.folderNameLabelText=Mapp:
|
FileChooser.upFolderToolTip.textAndMnemonic=Upp en niv\u00E5
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=Upp
|
||||||
FileChooser.filesOfTypeLabelText=Filformat:
|
FileChooser.homeFolderToolTip.textAndMnemonic=Hem
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=Hem
|
||||||
FileChooser.upFolderToolTipText=Upp en niv\u00E5
|
FileChooser.newFolderToolTip.textAndMnemonic=Skapa ny mapp
|
||||||
FileChooser.upFolderAccessibleName=Upp
|
FileChooser.newFolderAccessibleName=Ny mapp
|
||||||
FileChooser.homeFolderToolTipText=Hem
|
FileChooser.newFolderActionLabel.textAndMnemonic=Ny mapp
|
||||||
FileChooser.homeFolderAccessibleName=Hem
|
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderToolTipText=Skapa ny mapp
|
FileChooser.listViewButtonAccessibleName=Lista
|
||||||
FileChooser.newFolderAccessibleName=Ny mapp
|
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderActionLabelText=Ny mapp
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Detaljer
|
||||||
FileChooser.listViewButtonToolTipText=Lista
|
FileChooser.detailsViewButtonAccessibleName=Detaljer
|
||||||
FileChooser.listViewButtonAccessibleName=Lista
|
FileChooser.detailsViewActionLabel.textAndMnemonic=Detaljer
|
||||||
FileChooser.listViewActionLabelText=Lista
|
FileChooser.refreshActionLabel.textAndMnemonic=F\u00F6rnya
|
||||||
FileChooser.detailsViewButtonToolTipText=Detaljer
|
FileChooser.viewMenuLabel.textAndMnemonic=Vy
|
||||||
FileChooser.detailsViewButtonAccessibleName=Detaljer
|
FileChooser.fileNameHeader.textAndMnemonic=Namn
|
||||||
FileChooser.detailsViewActionLabelText=Detaljer
|
FileChooser.fileSizeHeader.textAndMnemonic=Storlek
|
||||||
FileChooser.refreshActionLabelText=F\u00F6rnya
|
FileChooser.fileTypeHeader.textAndMnemonic=Typ
|
||||||
FileChooser.viewMenuLabelText=Vy
|
FileChooser.fileDateHeader.textAndMnemonic=\u00C4ndrad
|
||||||
FileChooser.fileNameHeaderText=Namn
|
FileChooser.fileAttrHeader.textAndMnemonic=Attribut
|
||||||
FileChooser.fileSizeHeaderText=Storlek
|
|
||||||
FileChooser.fileTypeHeaderText=Typ
|
############ Used by MetalTitlePane if rendering window decorations############
|
||||||
FileChooser.fileDateHeaderText=\u00C4ndrad
|
MetalTitlePane.restore.titleAndMnemonic=\u00C5terst\u00E4ll(&R)
|
||||||
FileChooser.fileAttrHeaderText=Attribut
|
MetalTitlePane.iconify.titleAndMnemonic=Minim&era
|
||||||
|
MetalTitlePane.maximize.titleAndMnemonic=Ma&ximera
|
||||||
############ Used by MetalTitlePane if rendering window decorations############
|
MetalTitlePane.close.titleAndMnemonic=St\u00E4ng(&S)
|
||||||
# All mnemonics are KeyEvent.VK_XXX as integers
|
|
||||||
MetalTitlePane.restoreTitle=\u00C5terst\u00E4ll
|
|
||||||
MetalTitlePane.restoreMnemonic=82
|
|
||||||
MetalTitlePane.iconifyTitle=Minimera
|
|
||||||
MetalTitlePane.iconifyMnemonic=69
|
|
||||||
MetalTitlePane.maximizeTitle=Maximera
|
|
||||||
MetalTitlePane.maximizeMnemonic=88
|
|
||||||
MetalTitlePane.closeTitle=St\u00E4ng
|
|
||||||
MetalTitlePane.closeMnemonic=83
|
|
||||||
|
|
||||||
|
@ -1,61 +1,52 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=\u67E5\u770B:
|
FileChooser.lookInLabel.textAndMnemonic=\u67E5\u770B(&I):
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=\u4FDD\u5B58:
|
||||||
FileChooser.saveInLabelText=\u4FDD\u5B58:
|
FileChooser.fileNameLabel.textAndMnemonic=\u6587\u4EF6\u540D(&N):
|
||||||
FileChooser.fileNameLabelText=\u6587\u4EF6\u540D:
|
FileChooser.folderNameLabel.textAndMnemonic=\u6587\u4EF6\u5939\u540D(&N):
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=\u6587\u4EF6\u7C7B\u578B(&T):
|
||||||
FileChooser.folderNameLabelText=\u6587\u4EF6\u5939\u540D:
|
FileChooser.upFolderToolTip.textAndMnemonic=\u5411\u4E0A\u4E00\u7EA7
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=\u5411\u4E0A
|
||||||
FileChooser.filesOfTypeLabelText=\u6587\u4EF6\u7C7B\u578B:
|
FileChooser.homeFolderToolTip.textAndMnemonic=\u4E3B\u76EE\u5F55
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u5F55
|
||||||
FileChooser.upFolderToolTipText=\u5411\u4E0A\u4E00\u7EA7
|
FileChooser.newFolderToolTip.textAndMnemonic=\u521B\u5EFA\u65B0\u6587\u4EF6\u5939
|
||||||
FileChooser.upFolderAccessibleName=\u5411\u4E0A
|
FileChooser.newFolderAccessibleName=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||||
FileChooser.homeFolderToolTipText=\u4E3B\u76EE\u5F55
|
FileChooser.newFolderActionLabel.textAndMnemonic=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||||
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u5F55
|
FileChooser.listViewButtonToolTip.textAndMnemonic=\u5217\u8868
|
||||||
FileChooser.newFolderToolTipText=\u521B\u5EFA\u65B0\u6587\u4EF6\u5939
|
FileChooser.listViewButtonAccessibleName=\u5217\u8868
|
||||||
FileChooser.newFolderAccessibleName=\u65B0\u5EFA\u6587\u4EF6\u5939
|
FileChooser.listViewActionLabel.textAndMnemonic=\u5217\u8868
|
||||||
FileChooser.newFolderActionLabelText=\u65B0\u5EFA\u6587\u4EF6\u5939
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\u8BE6\u7EC6\u8D44\u6599
|
||||||
FileChooser.listViewButtonToolTipText=\u5217\u8868
|
FileChooser.detailsViewButtonAccessibleName=\u8BE6\u7EC6\u8D44\u6599
|
||||||
FileChooser.listViewButtonAccessibleName=\u5217\u8868
|
FileChooser.detailsViewActionLabel.textAndMnemonic=\u8BE6\u7EC6\u8D44\u6599
|
||||||
FileChooser.listViewActionLabelText=\u5217\u8868
|
FileChooser.refreshActionLabel.textAndMnemonic=\u5237\u65B0
|
||||||
FileChooser.detailsViewButtonToolTipText=\u8BE6\u7EC6\u8D44\u6599
|
FileChooser.viewMenuLabel.textAndMnemonic=\u89C6\u56FE
|
||||||
FileChooser.detailsViewButtonAccessibleName=\u8BE6\u7EC6\u8D44\u6599
|
FileChooser.fileNameHeader.textAndMnemonic=\u540D\u79F0
|
||||||
FileChooser.detailsViewActionLabelText=\u8BE6\u7EC6\u8D44\u6599
|
FileChooser.fileSizeHeader.textAndMnemonic=\u5927\u5C0F
|
||||||
FileChooser.refreshActionLabelText=\u5237\u65B0
|
FileChooser.fileTypeHeader.textAndMnemonic=\u7C7B\u578B
|
||||||
FileChooser.viewMenuLabelText=\u89C6\u56FE
|
FileChooser.fileDateHeader.textAndMnemonic=\u4FEE\u6539\u65E5\u671F
|
||||||
FileChooser.fileNameHeaderText=\u540D\u79F0
|
FileChooser.fileAttrHeader.textAndMnemonic=\u5C5E\u6027
|
||||||
FileChooser.fileSizeHeaderText=\u5927\u5C0F
|
|
||||||
FileChooser.fileTypeHeaderText=\u7C7B\u578B
|
############ Used by MetalTitlePane if rendering window decorations############
|
||||||
FileChooser.fileDateHeaderText=\u4FEE\u6539\u65E5\u671F
|
MetalTitlePane.restore.titleAndMnemonic=\u8FD8\u539F(&R)
|
||||||
FileChooser.fileAttrHeaderText=\u5C5E\u6027
|
MetalTitlePane.iconify.titleAndMnemonic=\u6700\u5C0F\u5316(&E)
|
||||||
|
MetalTitlePane.maximize.titleAndMnemonic=\u6700\u5927\u5316(&X)
|
||||||
############ Used by MetalTitlePane if rendering window decorations############
|
MetalTitlePane.close.titleAndMnemonic=\u5173\u95ED(&C)
|
||||||
# All mnemonics are KeyEvent.VK_XXX as integers
|
|
||||||
MetalTitlePane.restoreTitle=\u8FD8\u539F(R)
|
|
||||||
MetalTitlePane.restoreMnemonic=82
|
|
||||||
MetalTitlePane.iconifyTitle=\u6700\u5C0F\u5316(E)
|
|
||||||
MetalTitlePane.iconifyMnemonic=69
|
|
||||||
MetalTitlePane.maximizeTitle=\u6700\u5927\u5316(X)
|
|
||||||
MetalTitlePane.maximizeMnemonic=88
|
|
||||||
MetalTitlePane.closeTitle=\u5173\u95ED(C)
|
|
||||||
MetalTitlePane.closeMnemonic=67
|
|
||||||
|
|
||||||
|
@ -1,61 +1,52 @@
|
|||||||
# This properties file is used to create a PropertyResourceBundle
|
# This properties file is used to create a PropertyResourceBundle
|
||||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=\u67E5\u8A62:
|
FileChooser.lookInLabel.textAndMnemonic=\u67E5\u8A62(&I):
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=\u5132\u5B58\u65BC:
|
||||||
FileChooser.saveInLabelText=\u5132\u5B58\u65BC:
|
FileChooser.fileNameLabel.textAndMnemonic=\u6A94\u6848\u540D\u7A31(&N):
|
||||||
FileChooser.fileNameLabelText=\u6A94\u6848\u540D\u7A31:
|
FileChooser.folderNameLabel.textAndMnemonic=\u8CC7\u6599\u593E\u540D\u7A31(&N):
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=\u6A94\u6848\u985E\u578B(&T):
|
||||||
FileChooser.folderNameLabelText=\u8CC7\u6599\u593E\u540D\u7A31:
|
FileChooser.upFolderToolTip.textAndMnemonic=\u5F80\u4E0A\u4E00\u5C64
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=\u5F80\u4E0A
|
||||||
FileChooser.filesOfTypeLabelText=\u6A94\u6848\u985E\u578B:
|
FileChooser.homeFolderToolTip.textAndMnemonic=\u4E3B\u76EE\u9304
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u9304
|
||||||
FileChooser.upFolderToolTipText=\u5F80\u4E0A\u4E00\u5C64
|
FileChooser.newFolderToolTip.textAndMnemonic=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E
|
||||||
FileChooser.upFolderAccessibleName=\u5F80\u4E0A
|
FileChooser.newFolderAccessibleName=\u65B0\u8CC7\u6599\u593E
|
||||||
FileChooser.homeFolderToolTipText=\u4E3B\u76EE\u9304
|
FileChooser.newFolderActionLabel.textAndMnemonic=\u65B0\u8CC7\u6599\u593E
|
||||||
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u9304
|
FileChooser.listViewButtonToolTip.textAndMnemonic=\u6E05\u55AE
|
||||||
FileChooser.newFolderToolTipText=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E
|
FileChooser.listViewButtonAccessibleName=\u6E05\u55AE
|
||||||
FileChooser.newFolderAccessibleName=\u65B0\u8CC7\u6599\u593E
|
FileChooser.listViewActionLabel.textAndMnemonic=\u6E05\u55AE
|
||||||
FileChooser.newFolderActionLabelText=\u65B0\u8CC7\u6599\u593E
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\u8A73\u7D30\u8CC7\u8A0A
|
||||||
FileChooser.listViewButtonToolTipText=\u6E05\u55AE
|
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30\u8CC7\u8A0A
|
||||||
FileChooser.listViewButtonAccessibleName=\u6E05\u55AE
|
FileChooser.detailsViewActionLabel.textAndMnemonic=\u8A73\u7D30\u8CC7\u8A0A
|
||||||
FileChooser.listViewActionLabelText=\u6E05\u55AE
|
FileChooser.refreshActionLabel.textAndMnemonic=\u91CD\u65B0\u6574\u7406
|
||||||
FileChooser.detailsViewButtonToolTipText=\u8A73\u7D30\u8CC7\u8A0A
|
FileChooser.viewMenuLabel.textAndMnemonic=\u6AA2\u8996
|
||||||
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30\u8CC7\u8A0A
|
FileChooser.fileNameHeader.textAndMnemonic=\u540D\u7A31
|
||||||
FileChooser.detailsViewActionLabelText=\u8A73\u7D30\u8CC7\u8A0A
|
FileChooser.fileSizeHeader.textAndMnemonic=\u5927\u5C0F
|
||||||
FileChooser.refreshActionLabelText=\u91CD\u65B0\u6574\u7406
|
FileChooser.fileTypeHeader.textAndMnemonic=\u985E\u578B
|
||||||
FileChooser.viewMenuLabelText=\u6AA2\u8996
|
FileChooser.fileDateHeader.textAndMnemonic=\u4FEE\u6539\u65E5\u671F
|
||||||
FileChooser.fileNameHeaderText=\u540D\u7A31
|
FileChooser.fileAttrHeader.textAndMnemonic=\u5C6C\u6027
|
||||||
FileChooser.fileSizeHeaderText=\u5927\u5C0F
|
|
||||||
FileChooser.fileTypeHeaderText=\u985E\u578B
|
############ Used by MetalTitlePane if rendering window decorations############
|
||||||
FileChooser.fileDateHeaderText=\u4FEE\u6539\u65E5\u671F
|
MetalTitlePane.restore.titleAndMnemonic=\u56DE\u5FA9(&R)
|
||||||
FileChooser.fileAttrHeaderText=\u5C6C\u6027
|
MetalTitlePane.iconify.titleAndMnemonic=\u6700\u5C0F\u5316(&E)
|
||||||
|
MetalTitlePane.maximize.titleAndMnemonic=\u6700\u5927\u5316(&X)
|
||||||
############ Used by MetalTitlePane if rendering window decorations############
|
MetalTitlePane.close.titleAndMnemonic=\u95DC\u9589(&C)
|
||||||
# All mnemonics are KeyEvent.VK_XXX as integers
|
|
||||||
MetalTitlePane.restoreTitle=\u56DE\u5FA9(R)
|
|
||||||
MetalTitlePane.restoreMnemonic=82
|
|
||||||
MetalTitlePane.iconifyTitle=\u6700\u5C0F\u5316(E)
|
|
||||||
MetalTitlePane.iconifyMnemonic=69
|
|
||||||
MetalTitlePane.maximizeTitle=\u6700\u5927\u5316(X)
|
|
||||||
MetalTitlePane.maximizeMnemonic=88
|
|
||||||
MetalTitlePane.closeTitle=\u95DC\u9589(C)
|
|
||||||
MetalTitlePane.closeMnemonic=67
|
|
||||||
|
|
||||||
|
@ -1,49 +1,45 @@
|
|||||||
# 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 Synth Look and Feel.
|
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=Look In:
|
FileChooser.lookInLabel.textAndMnemonic=Look &In:
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=Save In:
|
||||||
FileChooser.saveInLabelText=Save In:
|
FileChooser.fileNameLabel.textAndMnemonic=File &Name:
|
||||||
FileChooser.fileNameLabelText=File Name:
|
FileChooser.folderNameLabel.textAndMnemonic=Folder &Name:
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Files of &Type:
|
||||||
FileChooser.folderNameLabelText=Folder Name:
|
FileChooser.upFolderToolTip.textAndMnemonic=Up One Level
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=Up
|
||||||
FileChooser.filesOfTypeLabelText=Files of Type:
|
FileChooser.homeFolderToolTip.textAndMnemonic=Home
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=Home
|
||||||
FileChooser.upFolderToolTipText=Up One Level
|
FileChooser.newFolderToolTip.textAndMnemonic=Create New Folder
|
||||||
FileChooser.upFolderAccessibleName=Up
|
FileChooser.newFolderAccessibleName=New Folder
|
||||||
FileChooser.homeFolderToolTipText=Home
|
FileChooser.newFolderActionLabel.textAndMnemonic=New Folder
|
||||||
FileChooser.homeFolderAccessibleName=Home
|
FileChooser.listViewButtonToolTip.textAndMnemonic=List
|
||||||
FileChooser.newFolderToolTipText=Create New Folder
|
FileChooser.listViewButtonAccessibleName=List
|
||||||
FileChooser.newFolderAccessibleName=New Folder
|
FileChooser.listViewActionLabel.textAndMnemonic=List
|
||||||
FileChooser.newFolderActionLabelText=New Folder
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Details
|
||||||
FileChooser.listViewButtonToolTipText=List
|
FileChooser.detailsViewButtonAccessibleName=Details
|
||||||
FileChooser.listViewButtonAccessibleName=List
|
FileChooser.detailsViewActionLabel.textAndMnemonic=Details
|
||||||
FileChooser.listViewActionLabelText=List
|
FileChooser.refreshActionLabel.textAndMnemonic=Refresh
|
||||||
FileChooser.detailsViewButtonToolTipText=Details
|
FileChooser.viewMenuLabel.textAndMnemonic=View
|
||||||
FileChooser.detailsViewButtonAccessibleName=Details
|
FileChooser.fileNameHeader.textAndMnemonic=Name
|
||||||
FileChooser.detailsViewActionLabelText=Details
|
FileChooser.fileSizeHeader.textAndMnemonic=Size
|
||||||
FileChooser.refreshActionLabelText=Refresh
|
FileChooser.fileTypeHeader.textAndMnemonic=Type
|
||||||
FileChooser.viewMenuLabelText=View
|
FileChooser.fileDateHeader.textAndMnemonic=Modified
|
||||||
FileChooser.fileNameHeaderText=Name
|
FileChooser.fileAttrHeader.textAndMnemonic=Attributes
|
||||||
FileChooser.fileSizeHeaderText=Size
|
|
||||||
FileChooser.fileTypeHeaderText=Type
|
|
||||||
FileChooser.fileDateHeaderText=Modified
|
|
||||||
FileChooser.fileAttrHeaderText=Attributes
|
|
||||||
|
@ -1,49 +1,45 @@
|
|||||||
# 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 Synth Look and Feel.
|
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=Suchen in:
|
FileChooser.lookInLabel.textAndMnemonic=Suchen &in:
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=Speichern in:
|
||||||
FileChooser.saveInLabelText=Speichern in:
|
FileChooser.fileNameLabel.textAndMnemonic=Datei&name:
|
||||||
FileChooser.fileNameLabelText=Dateiname:
|
FileChooser.folderNameLabel.textAndMnemonic=Ord&nername:
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Da&teityp:
|
||||||
FileChooser.folderNameLabelText=Ordnername:
|
FileChooser.upFolderToolTip.textAndMnemonic=Eine Ebene h\u00F6her
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=Nach oben
|
||||||
FileChooser.filesOfTypeLabelText=Dateityp:
|
FileChooser.homeFolderToolTip.textAndMnemonic=Home
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=Home
|
||||||
FileChooser.upFolderToolTipText=Eine Ebene h\u00F6her
|
FileChooser.newFolderToolTip.textAndMnemonic=Neuen Ordner erstellen
|
||||||
FileChooser.upFolderAccessibleName=Nach oben
|
FileChooser.newFolderAccessibleName=Neuer Ordner
|
||||||
FileChooser.homeFolderToolTipText=Home
|
FileChooser.newFolderActionLabel.textAndMnemonic=Neuer Ordner
|
||||||
FileChooser.homeFolderAccessibleName=Home
|
FileChooser.listViewButtonToolTip.textAndMnemonic=Liste
|
||||||
FileChooser.newFolderToolTipText=Neuen Ordner erstellen
|
FileChooser.listViewButtonAccessibleName=Liste
|
||||||
FileChooser.newFolderAccessibleName=Neuer Ordner
|
FileChooser.listViewActionLabel.textAndMnemonic=Liste
|
||||||
FileChooser.newFolderActionLabelText=Neuer Ordner
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Details
|
||||||
FileChooser.listViewButtonToolTipText=Liste
|
FileChooser.detailsViewButtonAccessibleName=Details
|
||||||
FileChooser.listViewButtonAccessibleName=Liste
|
FileChooser.detailsViewActionLabel.textAndMnemonic=Details
|
||||||
FileChooser.listViewActionLabelText=Liste
|
FileChooser.refreshActionLabel.textAndMnemonic=Aktualisieren
|
||||||
FileChooser.detailsViewButtonToolTipText=Details
|
FileChooser.viewMenuLabel.textAndMnemonic=Ansicht
|
||||||
FileChooser.detailsViewButtonAccessibleName=Details
|
FileChooser.fileNameHeader.textAndMnemonic=Name
|
||||||
FileChooser.detailsViewActionLabelText=Details
|
FileChooser.fileSizeHeader.textAndMnemonic=Gr\u00F6\u00DFe
|
||||||
FileChooser.refreshActionLabelText=Aktualisieren
|
FileChooser.fileTypeHeader.textAndMnemonic=Typ
|
||||||
FileChooser.viewMenuLabelText=Ansicht
|
FileChooser.fileDateHeader.textAndMnemonic=Ge\u00E4ndert
|
||||||
FileChooser.fileNameHeaderText=Name
|
FileChooser.fileAttrHeader.textAndMnemonic=Attribute
|
||||||
FileChooser.fileSizeHeaderText=Gr\u00F6\u00DFe
|
|
||||||
FileChooser.fileTypeHeaderText=Typ
|
|
||||||
FileChooser.fileDateHeaderText=Ge\u00E4ndert
|
|
||||||
FileChooser.fileAttrHeaderText=Attribute
|
|
||||||
|
@ -1,49 +1,45 @@
|
|||||||
# 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 Synth Look and Feel.
|
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=Buscar en:
|
FileChooser.lookInLabel.textAndMnemonic=Buscar en(&I):
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=Guardar en:
|
||||||
FileChooser.saveInLabelText=Guardar en:
|
FileChooser.fileNameLabel.textAndMnemonic=&Nombre de Archivo:
|
||||||
FileChooser.fileNameLabelText=Nombre de Archivo:
|
FileChooser.folderNameLabel.textAndMnemonic=&Nombre de la Carpeta:
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Archivos de &Tipo:
|
||||||
FileChooser.folderNameLabelText=Nombre de la Carpeta:
|
FileChooser.upFolderToolTip.textAndMnemonic=Subir un Nivel
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=Arriba
|
||||||
FileChooser.filesOfTypeLabelText=Archivos de Tipo:
|
FileChooser.homeFolderToolTip.textAndMnemonic=Inicio
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=Inicio
|
||||||
FileChooser.upFolderToolTipText=Subir un Nivel
|
FileChooser.newFolderToolTip.textAndMnemonic=Crear Nueva Carpeta
|
||||||
FileChooser.upFolderAccessibleName=Arriba
|
FileChooser.newFolderAccessibleName=Nueva Carpeta
|
||||||
FileChooser.homeFolderToolTipText=Inicio
|
FileChooser.newFolderActionLabel.textAndMnemonic=Nueva Carpeta
|
||||||
FileChooser.homeFolderAccessibleName=Inicio
|
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderToolTipText=Crear Nueva Carpeta
|
FileChooser.listViewButtonAccessibleName=Lista
|
||||||
FileChooser.newFolderAccessibleName=Nueva Carpeta
|
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderActionLabelText=Nueva Carpeta
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Detalles
|
||||||
FileChooser.listViewButtonToolTipText=Lista
|
FileChooser.detailsViewButtonAccessibleName=Detalles
|
||||||
FileChooser.listViewButtonAccessibleName=Lista
|
FileChooser.detailsViewActionLabel.textAndMnemonic=Detalles
|
||||||
FileChooser.listViewActionLabelText=Lista
|
FileChooser.refreshActionLabel.textAndMnemonic=Refrescar
|
||||||
FileChooser.detailsViewButtonToolTipText=Detalles
|
FileChooser.viewMenuLabel.textAndMnemonic=Ver
|
||||||
FileChooser.detailsViewButtonAccessibleName=Detalles
|
FileChooser.fileNameHeader.textAndMnemonic=Nombre
|
||||||
FileChooser.detailsViewActionLabelText=Detalles
|
FileChooser.fileSizeHeader.textAndMnemonic=Tama\u00F1o
|
||||||
FileChooser.refreshActionLabelText=Refrescar
|
FileChooser.fileTypeHeader.textAndMnemonic=Tipo
|
||||||
FileChooser.viewMenuLabelText=Ver
|
FileChooser.fileDateHeader.textAndMnemonic=Modificado
|
||||||
FileChooser.fileNameHeaderText=Nombre
|
FileChooser.fileAttrHeader.textAndMnemonic=Atributos
|
||||||
FileChooser.fileSizeHeaderText=Tama\u00F1o
|
|
||||||
FileChooser.fileTypeHeaderText=Tipo
|
|
||||||
FileChooser.fileDateHeaderText=Modificado
|
|
||||||
FileChooser.fileAttrHeaderText=Atributos
|
|
||||||
|
@ -1,49 +1,45 @@
|
|||||||
# 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 Synth Look and Feel.
|
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=Rechercher dans :
|
FileChooser.lookInLabel.textAndMnemonic=Rechercher dans (&I):
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=Enregistrer dans :
|
||||||
FileChooser.saveInLabelText=Enregistrer dans :
|
FileChooser.fileNameLabel.textAndMnemonic=&Nom du fichier :
|
||||||
FileChooser.fileNameLabelText=Nom du fichier :
|
FileChooser.folderNameLabel.textAndMnemonic=&Nom du dossier :
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Fichiers de &type :
|
||||||
FileChooser.folderNameLabelText=Nom du dossier :
|
FileChooser.upFolderToolTip.textAndMnemonic=Remonte d'un niveau.
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=Monter
|
||||||
FileChooser.filesOfTypeLabelText=Fichiers de type :
|
FileChooser.homeFolderToolTip.textAndMnemonic=R\u00E9pertoire d'origine
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
|
||||||
FileChooser.upFolderToolTipText=Remonte d'un niveau.
|
FileChooser.newFolderToolTip.textAndMnemonic=Cr\u00E9e un dossier.
|
||||||
FileChooser.upFolderAccessibleName=Monter
|
FileChooser.newFolderAccessibleName=Nouveau dossier
|
||||||
FileChooser.homeFolderToolTipText=R\u00E9pertoire d'origine
|
FileChooser.newFolderActionLabel.textAndMnemonic=Nouveau dossier
|
||||||
FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
|
FileChooser.listViewButtonToolTip.textAndMnemonic=Liste
|
||||||
FileChooser.newFolderToolTipText=Cr\u00E9e un dossier.
|
FileChooser.listViewButtonAccessibleName=Liste
|
||||||
FileChooser.newFolderAccessibleName=Nouveau dossier
|
FileChooser.listViewActionLabel.textAndMnemonic=Liste
|
||||||
FileChooser.newFolderActionLabelText=Nouveau dossier
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=D\u00E9tails
|
||||||
FileChooser.listViewButtonToolTipText=Liste
|
FileChooser.detailsViewButtonAccessibleName=D\u00E9tails
|
||||||
FileChooser.listViewButtonAccessibleName=Liste
|
FileChooser.detailsViewActionLabel.textAndMnemonic=D\u00E9tails
|
||||||
FileChooser.listViewActionLabelText=Liste
|
FileChooser.refreshActionLabel.textAndMnemonic=Actualiser
|
||||||
FileChooser.detailsViewButtonToolTipText=D\u00E9tails
|
FileChooser.viewMenuLabel.textAndMnemonic=Affichage
|
||||||
FileChooser.detailsViewButtonAccessibleName=D\u00E9tails
|
FileChooser.fileNameHeader.textAndMnemonic=Nom
|
||||||
FileChooser.detailsViewActionLabelText=D\u00E9tails
|
FileChooser.fileSizeHeader.textAndMnemonic=Taille
|
||||||
FileChooser.refreshActionLabelText=Actualiser
|
FileChooser.fileTypeHeader.textAndMnemonic=Type
|
||||||
FileChooser.viewMenuLabelText=Affichage
|
FileChooser.fileDateHeader.textAndMnemonic=Modifi\u00E9
|
||||||
FileChooser.fileNameHeaderText=Nom
|
FileChooser.fileAttrHeader.textAndMnemonic=Attributs
|
||||||
FileChooser.fileSizeHeaderText=Taille
|
|
||||||
FileChooser.fileTypeHeaderText=Type
|
|
||||||
FileChooser.fileDateHeaderText=Modifi\u00E9
|
|
||||||
FileChooser.fileAttrHeaderText=Attributs
|
|
||||||
|
@ -1,49 +1,45 @@
|
|||||||
# 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 Synth Look and Feel.
|
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=Cerca in:
|
FileChooser.lookInLabel.textAndMnemonic=Cerca &in:
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=Salva in:
|
||||||
FileChooser.saveInLabelText=Salva in:
|
FileChooser.fileNameLabel.textAndMnemonic=&Nome file:
|
||||||
FileChooser.fileNameLabelText=Nome file:
|
FileChooser.folderNameLabel.textAndMnemonic=&Nome della cartella:
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=&Tipo file:
|
||||||
FileChooser.folderNameLabelText=Nome della cartella:
|
FileChooser.upFolderToolTip.textAndMnemonic=Cartella superiore
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=Superiore
|
||||||
FileChooser.filesOfTypeLabelText=Tipo file:
|
FileChooser.homeFolderToolTip.textAndMnemonic=Home
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=Home
|
||||||
FileChooser.upFolderToolTipText=Cartella superiore
|
FileChooser.newFolderToolTip.textAndMnemonic=Crea nuova cartella
|
||||||
FileChooser.upFolderAccessibleName=Superiore
|
FileChooser.newFolderAccessibleName=Nuova cartella
|
||||||
FileChooser.homeFolderToolTipText=Home
|
FileChooser.newFolderActionLabel.textAndMnemonic=Nuova cartella
|
||||||
FileChooser.homeFolderAccessibleName=Home
|
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderToolTipText=Crea nuova cartella
|
FileChooser.listViewButtonAccessibleName=Lista
|
||||||
FileChooser.newFolderAccessibleName=Nuova cartella
|
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderActionLabelText=Nuova cartella
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Dettagli
|
||||||
FileChooser.listViewButtonToolTipText=Lista
|
FileChooser.detailsViewButtonAccessibleName=Dettagli
|
||||||
FileChooser.listViewButtonAccessibleName=Lista
|
FileChooser.detailsViewActionLabel.textAndMnemonic=Dettagli
|
||||||
FileChooser.listViewActionLabelText=Lista
|
FileChooser.refreshActionLabel.textAndMnemonic=Aggiorna
|
||||||
FileChooser.detailsViewButtonToolTipText=Dettagli
|
FileChooser.viewMenuLabel.textAndMnemonic=Visualizza
|
||||||
FileChooser.detailsViewButtonAccessibleName=Dettagli
|
FileChooser.fileNameHeader.textAndMnemonic=Nome
|
||||||
FileChooser.detailsViewActionLabelText=Dettagli
|
FileChooser.fileSizeHeader.textAndMnemonic=Dimensioni
|
||||||
FileChooser.refreshActionLabelText=Aggiorna
|
FileChooser.fileTypeHeader.textAndMnemonic=Tipo
|
||||||
FileChooser.viewMenuLabelText=Visualizza
|
FileChooser.fileDateHeader.textAndMnemonic=Modificato
|
||||||
FileChooser.fileNameHeaderText=Nome
|
FileChooser.fileAttrHeader.textAndMnemonic=Attributi
|
||||||
FileChooser.fileSizeHeaderText=Dimensioni
|
|
||||||
FileChooser.fileTypeHeaderText=Tipo
|
|
||||||
FileChooser.fileDateHeaderText=Modificato
|
|
||||||
FileChooser.fileAttrHeaderText=Attributi
|
|
||||||
|
@ -1,49 +1,45 @@
|
|||||||
# 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 Synth Look and Feel.
|
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=\u53C2\u7167:
|
FileChooser.lookInLabel.textAndMnemonic=\u53C2\u7167(&I):
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=\u4FDD\u5B58:
|
||||||
FileChooser.saveInLabelText=\u4FDD\u5B58:
|
FileChooser.fileNameLabel.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u540D(&N):
|
||||||
FileChooser.fileNameLabelText=\u30D5\u30A1\u30A4\u30EB\u540D:
|
FileChooser.folderNameLabel.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0\u540D(&N):
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u306E\u30BF\u30A4\u30D7(&T):
|
||||||
FileChooser.folderNameLabelText=\u30D5\u30A9\u30EB\u30C0\u540D:
|
FileChooser.upFolderToolTip.textAndMnemonic=1\u30EC\u30D9\u30EB\u4E0A\u3078
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=\u4E0A\u3078
|
||||||
FileChooser.filesOfTypeLabelText=\u30D5\u30A1\u30A4\u30EB\u306E\u30BF\u30A4\u30D7:
|
FileChooser.homeFolderToolTip.textAndMnemonic=\u30DB\u30FC\u30E0
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=\u30DB\u30FC\u30E0
|
||||||
FileChooser.upFolderToolTipText=1\u30EC\u30D9\u30EB\u4E0A\u3078
|
FileChooser.newFolderToolTip.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210
|
||||||
FileChooser.upFolderAccessibleName=\u4E0A\u3078
|
FileChooser.newFolderAccessibleName=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||||
FileChooser.homeFolderToolTipText=\u30DB\u30FC\u30E0
|
FileChooser.newFolderActionLabel.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||||
FileChooser.homeFolderAccessibleName=\u30DB\u30FC\u30E0
|
FileChooser.listViewButtonToolTip.textAndMnemonic=\u30EA\u30B9\u30C8
|
||||||
FileChooser.newFolderToolTipText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210
|
FileChooser.listViewButtonAccessibleName=\u30EA\u30B9\u30C8
|
||||||
FileChooser.newFolderAccessibleName=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
FileChooser.listViewActionLabel.textAndMnemonic=\u30EA\u30B9\u30C8
|
||||||
FileChooser.newFolderActionLabelText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\u8A73\u7D30
|
||||||
FileChooser.listViewButtonToolTipText=\u30EA\u30B9\u30C8
|
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30
|
||||||
FileChooser.listViewButtonAccessibleName=\u30EA\u30B9\u30C8
|
FileChooser.detailsViewActionLabel.textAndMnemonic=\u8A73\u7D30
|
||||||
FileChooser.listViewActionLabelText=\u30EA\u30B9\u30C8
|
FileChooser.refreshActionLabel.textAndMnemonic=\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5
|
||||||
FileChooser.detailsViewButtonToolTipText=\u8A73\u7D30
|
FileChooser.viewMenuLabel.textAndMnemonic=\u8868\u793A
|
||||||
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30
|
FileChooser.fileNameHeader.textAndMnemonic=\u540D\u524D
|
||||||
FileChooser.detailsViewActionLabelText=\u8A73\u7D30
|
FileChooser.fileSizeHeader.textAndMnemonic=\u30B5\u30A4\u30BA
|
||||||
FileChooser.refreshActionLabelText=\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5
|
FileChooser.fileTypeHeader.textAndMnemonic=\u30BF\u30A4\u30D7
|
||||||
FileChooser.viewMenuLabelText=\u8868\u793A
|
FileChooser.fileDateHeader.textAndMnemonic=\u4FEE\u6B63\u65E5
|
||||||
FileChooser.fileNameHeaderText=\u540D\u524D
|
FileChooser.fileAttrHeader.textAndMnemonic=\u5C5E\u6027
|
||||||
FileChooser.fileSizeHeaderText=\u30B5\u30A4\u30BA
|
|
||||||
FileChooser.fileTypeHeaderText=\u30BF\u30A4\u30D7
|
|
||||||
FileChooser.fileDateHeaderText=\u4FEE\u6B63\u65E5
|
|
||||||
FileChooser.fileAttrHeaderText=\u5C5E\u6027
|
|
||||||
|
@ -1,49 +1,45 @@
|
|||||||
# 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 Synth Look and Feel.
|
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=\uAC80\uC0C9 \uC704\uCE58:
|
FileChooser.lookInLabel.textAndMnemonic=\uAC80\uC0C9 \uC704\uCE58(&I):
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=\uC800\uC7A5 \uC704\uCE58:
|
||||||
FileChooser.saveInLabelText=\uC800\uC7A5 \uC704\uCE58:
|
FileChooser.fileNameLabel.textAndMnemonic=\uD30C\uC77C \uC774\uB984(&N):
|
||||||
FileChooser.fileNameLabelText=\uD30C\uC77C \uC774\uB984:
|
FileChooser.folderNameLabel.textAndMnemonic=\uD3F4\uB354 \uC774\uB984(&N):
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=\uD30C\uC77C \uC720\uD615(&T):
|
||||||
FileChooser.folderNameLabelText=\uD3F4\uB354 \uC774\uB984:
|
FileChooser.upFolderToolTip.textAndMnemonic=\uD55C \uB808\uBCA8 \uC704\uB85C
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=\uC704\uB85C
|
||||||
FileChooser.filesOfTypeLabelText=\uD30C\uC77C \uC720\uD615:
|
FileChooser.homeFolderToolTip.textAndMnemonic=\uD648
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=\uD648
|
||||||
FileChooser.upFolderToolTipText=\uD55C \uB808\uBCA8 \uC704\uB85C
|
FileChooser.newFolderToolTip.textAndMnemonic=\uC0C8 \uD3F4\uB354 \uC0DD\uC131
|
||||||
FileChooser.upFolderAccessibleName=\uC704\uB85C
|
FileChooser.newFolderAccessibleName=\uC0C8 \uD3F4\uB354
|
||||||
FileChooser.homeFolderToolTipText=\uD648
|
FileChooser.newFolderActionLabel.textAndMnemonic=\uC0C8 \uD3F4\uB354
|
||||||
FileChooser.homeFolderAccessibleName=\uD648
|
FileChooser.listViewButtonToolTip.textAndMnemonic=\uBAA9\uB85D
|
||||||
FileChooser.newFolderToolTipText=\uC0C8 \uD3F4\uB354 \uC0DD\uC131
|
FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
|
||||||
FileChooser.newFolderAccessibleName=\uC0C8 \uD3F4\uB354
|
FileChooser.listViewActionLabel.textAndMnemonic=\uBAA9\uB85D
|
||||||
FileChooser.newFolderActionLabelText=\uC0C8 \uD3F4\uB354
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\uC138\uBD80 \uC815\uBCF4
|
||||||
FileChooser.listViewButtonToolTipText=\uBAA9\uB85D
|
FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80 \uC815\uBCF4
|
||||||
FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
|
FileChooser.detailsViewActionLabel.textAndMnemonic=\uC138\uBD80 \uC815\uBCF4
|
||||||
FileChooser.listViewActionLabelText=\uBAA9\uB85D
|
FileChooser.refreshActionLabel.textAndMnemonic=\uC0C8\uB85C \uACE0\uCE68
|
||||||
FileChooser.detailsViewButtonToolTipText=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.viewMenuLabel.textAndMnemonic=\uBCF4\uAE30
|
||||||
FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.fileNameHeader.textAndMnemonic=\uC774\uB984
|
||||||
FileChooser.detailsViewActionLabelText=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.fileSizeHeader.textAndMnemonic=\uD06C\uAE30
|
||||||
FileChooser.refreshActionLabelText=\uC0C8\uB85C \uACE0\uCE68
|
FileChooser.fileTypeHeader.textAndMnemonic=\uC720\uD615
|
||||||
FileChooser.viewMenuLabelText=\uBCF4\uAE30
|
FileChooser.fileDateHeader.textAndMnemonic=\uC218\uC815 \uB0A0\uC9DC
|
||||||
FileChooser.fileNameHeaderText=\uC774\uB984
|
FileChooser.fileAttrHeader.textAndMnemonic=\uC18D\uC131
|
||||||
FileChooser.fileSizeHeaderText=\uD06C\uAE30
|
|
||||||
FileChooser.fileTypeHeaderText=\uC720\uD615
|
|
||||||
FileChooser.fileDateHeaderText=\uC218\uC815 \uB0A0\uC9DC
|
|
||||||
FileChooser.fileAttrHeaderText=\uC18D\uC131
|
|
||||||
|
@ -1,49 +1,45 @@
|
|||||||
# 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 Synth Look and Feel.
|
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=Consultar Em:
|
FileChooser.lookInLabel.textAndMnemonic=Consultar Em(&I):
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=Salvar Em:
|
||||||
FileChooser.saveInLabelText=Salvar Em:
|
FileChooser.fileNameLabel.textAndMnemonic=&Nome do Arquivo:
|
||||||
FileChooser.fileNameLabelText=Nome do Arquivo:
|
FileChooser.folderNameLabel.textAndMnemonic=&Nome da pasta:
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Arquivos do &Tipo:
|
||||||
FileChooser.folderNameLabelText=Nome da pasta:
|
FileChooser.upFolderToolTip.textAndMnemonic=Um N\u00EDvel Acima
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=Acima
|
||||||
FileChooser.filesOfTypeLabelText=Arquivos do Tipo:
|
FileChooser.homeFolderToolTip.textAndMnemonic=In\u00EDcio
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=In\u00EDcio
|
||||||
FileChooser.upFolderToolTipText=Um N\u00EDvel Acima
|
FileChooser.newFolderToolTip.textAndMnemonic=Criar Nova Pasta
|
||||||
FileChooser.upFolderAccessibleName=Acima
|
FileChooser.newFolderAccessibleName=Nova Pasta
|
||||||
FileChooser.homeFolderToolTipText=In\u00EDcio
|
FileChooser.newFolderActionLabel.textAndMnemonic=Nova Pasta
|
||||||
FileChooser.homeFolderAccessibleName=In\u00EDcio
|
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderToolTipText=Criar Nova Pasta
|
FileChooser.listViewButtonAccessibleName=Lista
|
||||||
FileChooser.newFolderAccessibleName=Nova Pasta
|
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderActionLabelText=Nova Pasta
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Detalhes
|
||||||
FileChooser.listViewButtonToolTipText=Lista
|
FileChooser.detailsViewButtonAccessibleName=Detalhes
|
||||||
FileChooser.listViewButtonAccessibleName=Lista
|
FileChooser.detailsViewActionLabel.textAndMnemonic=Detalhes
|
||||||
FileChooser.listViewActionLabelText=Lista
|
FileChooser.refreshActionLabel.textAndMnemonic=Atualizar
|
||||||
FileChooser.detailsViewButtonToolTipText=Detalhes
|
FileChooser.viewMenuLabel.textAndMnemonic=Exibir
|
||||||
FileChooser.detailsViewButtonAccessibleName=Detalhes
|
FileChooser.fileNameHeader.textAndMnemonic=Nome
|
||||||
FileChooser.detailsViewActionLabelText=Detalhes
|
FileChooser.fileSizeHeader.textAndMnemonic=Tamanho
|
||||||
FileChooser.refreshActionLabelText=Atualizar
|
FileChooser.fileTypeHeader.textAndMnemonic=Tipo
|
||||||
FileChooser.viewMenuLabelText=Exibir
|
FileChooser.fileDateHeader.textAndMnemonic=Modificado
|
||||||
FileChooser.fileNameHeaderText=Nome
|
FileChooser.fileAttrHeader.textAndMnemonic=Atributos
|
||||||
FileChooser.fileSizeHeaderText=Tamanho
|
|
||||||
FileChooser.fileTypeHeaderText=Tipo
|
|
||||||
FileChooser.fileDateHeaderText=Modificado
|
|
||||||
FileChooser.fileAttrHeaderText=Atributos
|
|
||||||
|
@ -1,49 +1,45 @@
|
|||||||
# 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 Synth Look and Feel.
|
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=Leta i:
|
FileChooser.lookInLabel.textAndMnemonic=Leta &i:
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=Spara i:
|
||||||
FileChooser.saveInLabelText=Spara i:
|
FileChooser.fileNameLabel.textAndMnemonic=Fil&namn:
|
||||||
FileChooser.fileNameLabelText=Filnamn:
|
FileChooser.folderNameLabel.textAndMnemonic=Mapp(&N):
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Filforma&t:
|
||||||
FileChooser.folderNameLabelText=Mapp:
|
FileChooser.upFolderToolTip.textAndMnemonic=Upp en niv\u00E5
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=Upp
|
||||||
FileChooser.filesOfTypeLabelText=Filformat:
|
FileChooser.homeFolderToolTip.textAndMnemonic=Hem
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=Hem
|
||||||
FileChooser.upFolderToolTipText=Upp en niv\u00E5
|
FileChooser.newFolderToolTip.textAndMnemonic=Skapa ny mapp
|
||||||
FileChooser.upFolderAccessibleName=Upp
|
FileChooser.newFolderAccessibleName=Ny mapp
|
||||||
FileChooser.homeFolderToolTipText=Hem
|
FileChooser.newFolderActionLabel.textAndMnemonic=Ny mapp
|
||||||
FileChooser.homeFolderAccessibleName=Hem
|
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderToolTipText=Skapa ny mapp
|
FileChooser.listViewButtonAccessibleName=Lista
|
||||||
FileChooser.newFolderAccessibleName=Ny mapp
|
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||||
FileChooser.newFolderActionLabelText=Ny mapp
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Detaljer
|
||||||
FileChooser.listViewButtonToolTipText=Lista
|
FileChooser.detailsViewButtonAccessibleName=Detaljer
|
||||||
FileChooser.listViewButtonAccessibleName=Lista
|
FileChooser.detailsViewActionLabel.textAndMnemonic=Detaljer
|
||||||
FileChooser.listViewActionLabelText=Lista
|
FileChooser.refreshActionLabel.textAndMnemonic=F\u00F6rnya
|
||||||
FileChooser.detailsViewButtonToolTipText=Detaljer
|
FileChooser.viewMenuLabel.textAndMnemonic=Vy
|
||||||
FileChooser.detailsViewButtonAccessibleName=Detaljer
|
FileChooser.fileNameHeader.textAndMnemonic=Namn
|
||||||
FileChooser.detailsViewActionLabelText=Detaljer
|
FileChooser.fileSizeHeader.textAndMnemonic=Storlek
|
||||||
FileChooser.refreshActionLabelText=F\u00F6rnya
|
FileChooser.fileTypeHeader.textAndMnemonic=Typ
|
||||||
FileChooser.viewMenuLabelText=Vy
|
FileChooser.fileDateHeader.textAndMnemonic=\u00C4ndrad
|
||||||
FileChooser.fileNameHeaderText=Namn
|
FileChooser.fileAttrHeader.textAndMnemonic=Attribut
|
||||||
FileChooser.fileSizeHeaderText=Storlek
|
|
||||||
FileChooser.fileTypeHeaderText=Typ
|
|
||||||
FileChooser.fileDateHeaderText=\u00C4ndrad
|
|
||||||
FileChooser.fileAttrHeaderText=Attribut
|
|
||||||
|
@ -1,49 +1,45 @@
|
|||||||
# 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 Synth Look and Feel.
|
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=\u67E5\u770B:
|
FileChooser.lookInLabel.textAndMnemonic=\u67E5\u770B(&I):
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=\u4FDD\u5B58:
|
||||||
FileChooser.saveInLabelText=\u4FDD\u5B58:
|
FileChooser.fileNameLabel.textAndMnemonic=\u6587\u4EF6\u540D(&N):
|
||||||
FileChooser.fileNameLabelText=\u6587\u4EF6\u540D:
|
FileChooser.folderNameLabel.textAndMnemonic=\u6587\u4EF6\u5939\u540D(&N):
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=\u6587\u4EF6\u7C7B\u578B(&T):
|
||||||
FileChooser.folderNameLabelText=\u6587\u4EF6\u5939\u540D:
|
FileChooser.upFolderToolTip.textAndMnemonic=\u5411\u4E0A\u4E00\u7EA7
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=\u5411\u4E0A
|
||||||
FileChooser.filesOfTypeLabelText=\u6587\u4EF6\u7C7B\u578B:
|
FileChooser.homeFolderToolTip.textAndMnemonic=\u4E3B\u76EE\u5F55
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u5F55
|
||||||
FileChooser.upFolderToolTipText=\u5411\u4E0A\u4E00\u7EA7
|
FileChooser.newFolderToolTip.textAndMnemonic=\u521B\u5EFA\u65B0\u6587\u4EF6\u5939
|
||||||
FileChooser.upFolderAccessibleName=\u5411\u4E0A
|
FileChooser.newFolderAccessibleName=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||||
FileChooser.homeFolderToolTipText=\u4E3B\u76EE\u5F55
|
FileChooser.newFolderActionLabel.textAndMnemonic=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||||
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u5F55
|
FileChooser.listViewButtonToolTip.textAndMnemonic=\u5217\u8868
|
||||||
FileChooser.newFolderToolTipText=\u521B\u5EFA\u65B0\u6587\u4EF6\u5939
|
FileChooser.listViewButtonAccessibleName=\u5217\u8868
|
||||||
FileChooser.newFolderAccessibleName=\u65B0\u5EFA\u6587\u4EF6\u5939
|
FileChooser.listViewActionLabel.textAndMnemonic=\u5217\u8868
|
||||||
FileChooser.newFolderActionLabelText=\u65B0\u5EFA\u6587\u4EF6\u5939
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\u8BE6\u7EC6\u8D44\u6599
|
||||||
FileChooser.listViewButtonToolTipText=\u5217\u8868
|
FileChooser.detailsViewButtonAccessibleName=\u8BE6\u7EC6\u8D44\u6599
|
||||||
FileChooser.listViewButtonAccessibleName=\u5217\u8868
|
FileChooser.detailsViewActionLabel.textAndMnemonic=\u8BE6\u7EC6\u8D44\u6599
|
||||||
FileChooser.listViewActionLabelText=\u5217\u8868
|
FileChooser.refreshActionLabel.textAndMnemonic=\u5237\u65B0
|
||||||
FileChooser.detailsViewButtonToolTipText=\u8BE6\u7EC6\u8D44\u6599
|
FileChooser.viewMenuLabel.textAndMnemonic=\u89C6\u56FE
|
||||||
FileChooser.detailsViewButtonAccessibleName=\u8BE6\u7EC6\u8D44\u6599
|
FileChooser.fileNameHeader.textAndMnemonic=\u540D\u79F0
|
||||||
FileChooser.detailsViewActionLabelText=\u8BE6\u7EC6\u8D44\u6599
|
FileChooser.fileSizeHeader.textAndMnemonic=\u5927\u5C0F
|
||||||
FileChooser.refreshActionLabelText=\u5237\u65B0
|
FileChooser.fileTypeHeader.textAndMnemonic=\u7C7B\u578B
|
||||||
FileChooser.viewMenuLabelText=\u89C6\u56FE
|
FileChooser.fileDateHeader.textAndMnemonic=\u4FEE\u6539\u65E5\u671F
|
||||||
FileChooser.fileNameHeaderText=\u540D\u79F0
|
FileChooser.fileAttrHeader.textAndMnemonic=\u5C5E\u6027
|
||||||
FileChooser.fileSizeHeaderText=\u5927\u5C0F
|
|
||||||
FileChooser.fileTypeHeaderText=\u7C7B\u578B
|
|
||||||
FileChooser.fileDateHeaderText=\u4FEE\u6539\u65E5\u671F
|
|
||||||
FileChooser.fileAttrHeaderText=\u5C5E\u6027
|
|
||||||
|
@ -1,49 +1,45 @@
|
|||||||
# 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 Synth Look and Feel.
|
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||||
# Currently, the following components need this for support:
|
# Currently, the following components need this for support:
|
||||||
#
|
#
|
||||||
# FileChooser
|
# FileChooser
|
||||||
#
|
#
|
||||||
# When this file is read in, the strings are put into the
|
# When this file is read in, the strings are put into the
|
||||||
# defaults table. This is an implementation detail of the current
|
# defaults table. This is an implementation detail of the current
|
||||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||||
# This may change in future versions of Swing as we improve localization
|
# This may change in future versions of Swing as we improve localization
|
||||||
# support.
|
# support.
|
||||||
#
|
#
|
||||||
# Refer to the note in basic.properties for a description as to what
|
# Refer to the note in basic.properties for a description as to what
|
||||||
# the mnemonics correspond to and how to calculate them.
|
# the mnemonics correspond to and how to calculate them.
|
||||||
#
|
#
|
||||||
# @author Steve Wilson
|
# @author Steve Wilson
|
||||||
|
|
||||||
|
|
||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
|
|
||||||
FileChooser.lookInLabelText=\u67E5\u8A62:
|
FileChooser.lookInLabel.textAndMnemonic=\u67E5\u8A62(&I):
|
||||||
FileChooser.lookInLabelMnemonic=73
|
FileChooser.saveInLabel.textAndMnemonic=\u5132\u5B58\u65BC:
|
||||||
FileChooser.saveInLabelText=\u5132\u5B58\u65BC:
|
FileChooser.fileNameLabel.textAndMnemonic=\u6A94\u6848\u540D\u7A31(&N):
|
||||||
FileChooser.fileNameLabelText=\u6A94\u6848\u540D\u7A31:
|
FileChooser.folderNameLabel.textAndMnemonic=\u8CC7\u6599\u593E\u540D\u7A31(&N):
|
||||||
FileChooser.fileNameLabelMnemonic=78
|
FileChooser.filesOfTypeLabel.textAndMnemonic=\u6A94\u6848\u985E\u578B(&T):
|
||||||
FileChooser.folderNameLabelText=\u8CC7\u6599\u593E\u540D\u7A31:
|
FileChooser.upFolderToolTip.textAndMnemonic=\u5F80\u4E0A\u4E00\u5C64
|
||||||
FileChooser.folderNameLabelMnemonic=78
|
FileChooser.upFolderAccessibleName=\u5F80\u4E0A
|
||||||
FileChooser.filesOfTypeLabelText=\u6A94\u6848\u985E\u578B:
|
FileChooser.homeFolderToolTip.textAndMnemonic=\u4E3B\u76EE\u9304
|
||||||
FileChooser.filesOfTypeLabelMnemonic=84
|
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u9304
|
||||||
FileChooser.upFolderToolTipText=\u5F80\u4E0A\u4E00\u5C64
|
FileChooser.newFolderToolTip.textAndMnemonic=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E
|
||||||
FileChooser.upFolderAccessibleName=\u5F80\u4E0A
|
FileChooser.newFolderAccessibleName=\u65B0\u8CC7\u6599\u593E
|
||||||
FileChooser.homeFolderToolTipText=\u4E3B\u76EE\u9304
|
FileChooser.newFolderActionLabel.textAndMnemonic=\u65B0\u8CC7\u6599\u593E
|
||||||
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u9304
|
FileChooser.listViewButtonToolTip.textAndMnemonic=\u6E05\u55AE
|
||||||
FileChooser.newFolderToolTipText=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E
|
FileChooser.listViewButtonAccessibleName=\u6E05\u55AE
|
||||||
FileChooser.newFolderAccessibleName=\u65B0\u8CC7\u6599\u593E
|
FileChooser.listViewActionLabel.textAndMnemonic=\u6E05\u55AE
|
||||||
FileChooser.newFolderActionLabelText=\u65B0\u8CC7\u6599\u593E
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\u8A73\u7D30\u8CC7\u8A0A
|
||||||
FileChooser.listViewButtonToolTipText=\u6E05\u55AE
|
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30\u8CC7\u8A0A
|
||||||
FileChooser.listViewButtonAccessibleName=\u6E05\u55AE
|
FileChooser.detailsViewActionLabel.textAndMnemonic=\u8A73\u7D30\u8CC7\u8A0A
|
||||||
FileChooser.listViewActionLabelText=\u6E05\u55AE
|
FileChooser.refreshActionLabel.textAndMnemonic=\u91CD\u65B0\u6574\u7406
|
||||||
FileChooser.detailsViewButtonToolTipText=\u8A73\u7D30\u8CC7\u8A0A
|
FileChooser.viewMenuLabel.textAndMnemonic=\u6AA2\u8996
|
||||||
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30\u8CC7\u8A0A
|
FileChooser.fileNameHeader.textAndMnemonic=\u540D\u7A31
|
||||||
FileChooser.detailsViewActionLabelText=\u8A73\u7D30\u8CC7\u8A0A
|
FileChooser.fileSizeHeader.textAndMnemonic=\u5927\u5C0F
|
||||||
FileChooser.refreshActionLabelText=\u91CD\u65B0\u6574\u7406
|
FileChooser.fileTypeHeader.textAndMnemonic=\u985E\u578B
|
||||||
FileChooser.viewMenuLabelText=\u6AA2\u8996
|
FileChooser.fileDateHeader.textAndMnemonic=\u4FEE\u6539\u65E5\u671F
|
||||||
FileChooser.fileNameHeaderText=\u540D\u7A31
|
FileChooser.fileAttrHeader.textAndMnemonic=\u5C6C\u6027
|
||||||
FileChooser.fileSizeHeaderText=\u5927\u5C0F
|
|
||||||
FileChooser.fileTypeHeaderText=\u985E\u578B
|
|
||||||
FileChooser.fileDateHeaderText=\u4FEE\u6539\u65E5\u671F
|
|
||||||
FileChooser.fileAttrHeaderText=\u5C6C\u6027
|
|
||||||
|
@ -114,6 +114,23 @@ class VMConnection {
|
|||||||
String value = token.substring(index + 1,
|
String value = token.substring(index + 1,
|
||||||
token.length() - 1); // Remove comma delimiter
|
token.length() - 1); // Remove comma delimiter
|
||||||
|
|
||||||
|
/*
|
||||||
|
* for values enclosed in quotes (single and/or double quotes)
|
||||||
|
* strip off enclosing quote chars
|
||||||
|
* needed for quote enclosed delimited substrings
|
||||||
|
*/
|
||||||
|
if (name.equals("options")) {
|
||||||
|
StringBuilder sb = new StringBuilder();
|
||||||
|
for (String s : splitStringAtNonEnclosedWhiteSpace(value)) {
|
||||||
|
while (isEnclosed(s, "\"") || isEnclosed(s, "'")) {
|
||||||
|
s = s.substring(1, s.length() - 1);
|
||||||
|
}
|
||||||
|
sb.append(s);
|
||||||
|
sb.append(" ");
|
||||||
|
}
|
||||||
|
value = sb.toString();
|
||||||
|
}
|
||||||
|
|
||||||
Connector.Argument argument = arguments.get(name);
|
Connector.Argument argument = arguments.get(name);
|
||||||
if (argument == null) {
|
if (argument == null) {
|
||||||
throw new IllegalArgumentException
|
throw new IllegalArgumentException
|
||||||
@ -136,6 +153,152 @@ class VMConnection {
|
|||||||
return arguments;
|
return arguments;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static boolean isEnclosed(String value, String enclosingChar) {
|
||||||
|
if (value.indexOf(enclosingChar) == 0) {
|
||||||
|
int lastIndex = value.lastIndexOf(enclosingChar);
|
||||||
|
if (lastIndex > 0 && lastIndex == value.length() - 1) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static List<String> splitStringAtNonEnclosedWhiteSpace(String value) throws IllegalArgumentException {
|
||||||
|
List<String> al = new ArrayList<String>();
|
||||||
|
char[] arr;
|
||||||
|
int startPosition = 0;
|
||||||
|
int endPosition = 0;
|
||||||
|
final char SPACE = ' ';
|
||||||
|
final char DOUBLEQ = '"';
|
||||||
|
final char SINGLEQ = '\'';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* An "open" or "active" enclosing state is where
|
||||||
|
* the first valid start quote qualifier is found,
|
||||||
|
* and there is a search in progress for the
|
||||||
|
* relevant end matching quote
|
||||||
|
*
|
||||||
|
* enclosingTargetChar set to SPACE
|
||||||
|
* is used to signal a non open enclosing state
|
||||||
|
*/
|
||||||
|
char enclosingTargetChar = SPACE;
|
||||||
|
|
||||||
|
if (value == null) {
|
||||||
|
throw new IllegalArgumentException
|
||||||
|
(MessageOutput.format("value string is null"));
|
||||||
|
}
|
||||||
|
|
||||||
|
// split parameter string into individual chars
|
||||||
|
arr = value.toCharArray();
|
||||||
|
|
||||||
|
for (int i = 0; i < arr.length; i++) {
|
||||||
|
switch (arr[i]) {
|
||||||
|
case SPACE: {
|
||||||
|
// do nothing for spaces
|
||||||
|
// unless last in array
|
||||||
|
if (isLastChar(arr, i)) {
|
||||||
|
endPosition = i;
|
||||||
|
// break for substring creation
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
case DOUBLEQ:
|
||||||
|
case SINGLEQ: {
|
||||||
|
if (enclosingTargetChar == arr[i]) {
|
||||||
|
// potential match to close open enclosing
|
||||||
|
if (isNextCharWhitespace(arr, i)) {
|
||||||
|
// if peek next is whitespace
|
||||||
|
// then enclosing is a valid substring
|
||||||
|
endPosition = i;
|
||||||
|
// reset enclosing target char
|
||||||
|
enclosingTargetChar = SPACE;
|
||||||
|
// break for substring creation
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (enclosingTargetChar == SPACE) {
|
||||||
|
// no open enclosing state
|
||||||
|
// handle as normal char
|
||||||
|
if (isPreviousCharWhitespace(arr, i)) {
|
||||||
|
startPosition = i;
|
||||||
|
// peek forward for end candidates
|
||||||
|
if (value.indexOf(arr[i], i + 1) >= 0) {
|
||||||
|
// set open enclosing state by
|
||||||
|
// setting up the target char
|
||||||
|
enclosingTargetChar = arr[i];
|
||||||
|
} else {
|
||||||
|
// no more target chars left to match
|
||||||
|
// end enclosing, handle as normal char
|
||||||
|
if (isNextCharWhitespace(arr, i)) {
|
||||||
|
endPosition = i;
|
||||||
|
// break for substring creation
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
default: {
|
||||||
|
// normal non-space, non-" and non-' chars
|
||||||
|
if (enclosingTargetChar == SPACE) {
|
||||||
|
// no open enclosing state
|
||||||
|
if (isPreviousCharWhitespace(arr, i)) {
|
||||||
|
// start of space delim substring
|
||||||
|
startPosition = i;
|
||||||
|
}
|
||||||
|
if (isNextCharWhitespace(arr, i)) {
|
||||||
|
// end of space delim substring
|
||||||
|
endPosition = i;
|
||||||
|
// break for substring creation
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// break's end up here
|
||||||
|
if (startPosition > endPosition) {
|
||||||
|
throw new IllegalArgumentException
|
||||||
|
(MessageOutput.format("Illegal option values"));
|
||||||
|
}
|
||||||
|
|
||||||
|
// extract substring and add to List<String>
|
||||||
|
al.add(value.substring(startPosition, ++endPosition));
|
||||||
|
|
||||||
|
// set new start position
|
||||||
|
i = startPosition = endPosition;
|
||||||
|
|
||||||
|
} // for loop
|
||||||
|
|
||||||
|
return al;
|
||||||
|
}
|
||||||
|
|
||||||
|
static private boolean isPreviousCharWhitespace(char[] arr, int curr_pos) {
|
||||||
|
return isCharWhitespace(arr, curr_pos - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static private boolean isNextCharWhitespace(char[] arr, int curr_pos) {
|
||||||
|
return isCharWhitespace(arr, curr_pos + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static private boolean isCharWhitespace(char[] arr, int pos) {
|
||||||
|
if (pos < 0 || pos >= arr.length) {
|
||||||
|
// outside arraybounds is considered an implicit space
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (arr[pos] == ' ') {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
static private boolean isLastChar(char[] arr, int pos) {
|
||||||
|
return (pos + 1 == arr.length);
|
||||||
|
}
|
||||||
|
|
||||||
VMConnection(String connectSpec, int traceFlags) {
|
VMConnection(String connectSpec, int traceFlags) {
|
||||||
String nameString;
|
String nameString;
|
||||||
String argString;
|
String argString;
|
||||||
|
@ -269,7 +269,7 @@ public final class Files {
|
|||||||
* WritableByteChannel wbc = Files.newByteChannel(path, EnumSet.of(CREATE,APPEND));
|
* WritableByteChannel wbc = Files.newByteChannel(path, EnumSet.of(CREATE,APPEND));
|
||||||
*
|
*
|
||||||
* // create file with initial permissions, opening it for both reading and writing
|
* // create file with initial permissions, opening it for both reading and writing
|
||||||
* {@code FileAttribute<<SetPosixFilePermission>> perms = ...}
|
* {@code FileAttribute<Set<PosixFilePermission>> perms = ...}
|
||||||
* SeekableByteChannel sbc = Files.newByteChannel(path, EnumSet.of(CREATE_NEW,READ,WRITE), perms);
|
* SeekableByteChannel sbc = Files.newByteChannel(path, EnumSet.of(CREATE_NEW,READ,WRITE), perms);
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
|
@ -180,13 +180,21 @@ public abstract class AbstractCollection<E> implements Collection<E> {
|
|||||||
|
|
||||||
for (int i = 0; i < r.length; i++) {
|
for (int i = 0; i < r.length; i++) {
|
||||||
if (! it.hasNext()) { // fewer elements than expected
|
if (! it.hasNext()) { // fewer elements than expected
|
||||||
if (a != r)
|
if (a == r) {
|
||||||
|
r[i] = null; // null-terminate
|
||||||
|
} else if (a.length < i) {
|
||||||
return Arrays.copyOf(r, i);
|
return Arrays.copyOf(r, i);
|
||||||
r[i] = null; // null-terminate
|
} else {
|
||||||
return r;
|
System.arraycopy(r, 0, a, 0, i);
|
||||||
|
if (a.length > i) {
|
||||||
|
a[i] = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return a;
|
||||||
}
|
}
|
||||||
r[i] = (T)it.next();
|
r[i] = (T)it.next();
|
||||||
}
|
}
|
||||||
|
// more elements than expected
|
||||||
return it.hasNext() ? finishToArray(r, it) : r;
|
return it.hasNext() ? finishToArray(r, it) : r;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -759,16 +759,19 @@ public final class Matcher implements MatchResult {
|
|||||||
char nextChar = replacement.charAt(cursor);
|
char nextChar = replacement.charAt(cursor);
|
||||||
if (nextChar == '\\') {
|
if (nextChar == '\\') {
|
||||||
cursor++;
|
cursor++;
|
||||||
|
if (cursor == replacement.length())
|
||||||
|
throw new IllegalArgumentException(
|
||||||
|
"character to be escaped is missing");
|
||||||
nextChar = replacement.charAt(cursor);
|
nextChar = replacement.charAt(cursor);
|
||||||
result.append(nextChar);
|
result.append(nextChar);
|
||||||
cursor++;
|
cursor++;
|
||||||
} else if (nextChar == '$') {
|
} else if (nextChar == '$') {
|
||||||
// Skip past $
|
// Skip past $
|
||||||
cursor++;
|
cursor++;
|
||||||
// A StringIndexOutOfBoundsException is thrown if
|
// Throw IAE if this "$" is the last character in replacement
|
||||||
// this "$" is the last character in replacement
|
if (cursor == replacement.length())
|
||||||
// string in current implementation, a IAE might be
|
throw new IllegalArgumentException(
|
||||||
// more appropriate.
|
"Illegal group reference: group index is missing");
|
||||||
nextChar = replacement.charAt(cursor);
|
nextChar = replacement.charAt(cursor);
|
||||||
int refNum = -1;
|
int refNum = -1;
|
||||||
if (nextChar == '{') {
|
if (nextChar == '{') {
|
||||||
|
@ -359,17 +359,20 @@ public class JPopupMenu extends JComponent implements Accessible,MenuElement {
|
|||||||
int scrBottomY = scrBounds.y + scrHeight;
|
int scrBottomY = scrBounds.y + scrHeight;
|
||||||
|
|
||||||
// Ensure that popup menu fits the screen
|
// Ensure that popup menu fits the screen
|
||||||
if (popupRightX > (long)scrRightX) {
|
if (popupRightX > (long) scrRightX) {
|
||||||
popupLocation.x = scrRightX - popupSize.width;
|
popupLocation.x = scrRightX - popupSize.width;
|
||||||
if( popupLocation.x < scrBounds.x ) {
|
|
||||||
popupLocation.x = scrBounds.x ;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (popupBottomY > (long)scrBottomY) {
|
|
||||||
|
if (popupBottomY > (long) scrBottomY) {
|
||||||
popupLocation.y = scrBottomY - popupSize.height;
|
popupLocation.y = scrBottomY - popupSize.height;
|
||||||
if( popupLocation.y < scrBounds.y ) {
|
}
|
||||||
popupLocation.y = scrBounds.y;
|
|
||||||
}
|
if (popupLocation.x < scrBounds.x) {
|
||||||
|
popupLocation.x = scrBounds.x;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (popupLocation.y < scrBounds.y) {
|
||||||
|
popupLocation.y = scrBounds.y;
|
||||||
}
|
}
|
||||||
|
|
||||||
return popupLocation;
|
return popupLocation;
|
||||||
|
@ -297,7 +297,7 @@ public class UIDefaults extends Hashtable<Object,Object>
|
|||||||
Map<String, Object> values = resourceCache.get(l);
|
Map<String, Object> values = resourceCache.get(l);
|
||||||
|
|
||||||
if (values == null) {
|
if (values == null) {
|
||||||
values = new HashMap<String, Object>();
|
values = new TextAndMnemonicHashMap();
|
||||||
for (int i=resourceBundles.size()-1; i >= 0; i--) {
|
for (int i=resourceBundles.size()-1; i >= 0; i--) {
|
||||||
String bundleName = resourceBundles.get(i);
|
String bundleName = resourceBundles.get(i);
|
||||||
try {
|
try {
|
||||||
@ -1215,4 +1215,120 @@ public class UIDefaults extends Hashtable<Object,Object>
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <code>TextAndMnemonicHashMap</code> stores swing resource strings. Many of strings
|
||||||
|
* can have a mnemonic. For example:
|
||||||
|
* FileChooser.saveButton.textAndMnemonic=&Save
|
||||||
|
* For this case method get returns "Save" for the key "FileChooser.saveButtonText" and
|
||||||
|
* mnemonic "S" for the key "FileChooser.saveButtonMnemonic"
|
||||||
|
*
|
||||||
|
* There are several patterns for the text and mnemonic suffixes which are checked by the
|
||||||
|
* <code>TextAndMnemonicHashMap</code> class.
|
||||||
|
* Patterns which are converted to the xxx.textAndMnemonic key:
|
||||||
|
* (xxxNameText, xxxNameMnemonic)
|
||||||
|
* (xxxNameText, xxxMnemonic)
|
||||||
|
* (xxx.nameText, xxx.mnemonic)
|
||||||
|
* (xxxText, xxxMnemonic)
|
||||||
|
*
|
||||||
|
* These patterns can have a mnemonic index in format
|
||||||
|
* (xxxDisplayedMnemonicIndex)
|
||||||
|
*
|
||||||
|
* Pattern which is converted to the xxx.titleAndMnemonic key:
|
||||||
|
* (xxxTitle, xxxMnemonic)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
private static class TextAndMnemonicHashMap extends HashMap<String, Object> {
|
||||||
|
|
||||||
|
static final String AND_MNEMONIC = "AndMnemonic";
|
||||||
|
static final String TITLE_SUFFIX = ".titleAndMnemonic";
|
||||||
|
static final String TEXT_SUFFIX = ".textAndMnemonic";
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Object get(Object key) {
|
||||||
|
|
||||||
|
Object value = super.get(key);
|
||||||
|
|
||||||
|
if (value == null) {
|
||||||
|
|
||||||
|
boolean checkTitle = false;
|
||||||
|
|
||||||
|
String stringKey = key.toString();
|
||||||
|
String compositeKey = null;
|
||||||
|
|
||||||
|
if (stringKey.endsWith(AND_MNEMONIC)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stringKey.endsWith(".mnemonic")) {
|
||||||
|
compositeKey = composeKey(stringKey, 9, TEXT_SUFFIX);
|
||||||
|
} else if (stringKey.endsWith("NameMnemonic")) {
|
||||||
|
compositeKey = composeKey(stringKey, 12, TEXT_SUFFIX);
|
||||||
|
} else if (stringKey.endsWith("Mnemonic")) {
|
||||||
|
compositeKey = composeKey(stringKey, 8, TEXT_SUFFIX);
|
||||||
|
checkTitle = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (compositeKey != null) {
|
||||||
|
value = super.get(compositeKey);
|
||||||
|
if (value == null && checkTitle) {
|
||||||
|
compositeKey = composeKey(stringKey, 8, TITLE_SUFFIX);
|
||||||
|
value = super.get(compositeKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
return value == null ? null : getMnemonicFromProperty(value.toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stringKey.endsWith("NameText")) {
|
||||||
|
compositeKey = composeKey(stringKey, 8, TEXT_SUFFIX);
|
||||||
|
} else if (stringKey.endsWith(".nameText")) {
|
||||||
|
compositeKey = composeKey(stringKey, 9, TEXT_SUFFIX);
|
||||||
|
} else if (stringKey.endsWith("Text")) {
|
||||||
|
compositeKey = composeKey(stringKey, 4, TEXT_SUFFIX);
|
||||||
|
} else if (stringKey.endsWith("Title")) {
|
||||||
|
compositeKey = composeKey(stringKey, 5, TITLE_SUFFIX);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (compositeKey != null) {
|
||||||
|
value = super.get(compositeKey);
|
||||||
|
return value == null ? null : getTextFromProperty(value.toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stringKey.endsWith("DisplayedMnemonicIndex")) {
|
||||||
|
compositeKey = composeKey(stringKey, 22, TEXT_SUFFIX);
|
||||||
|
value = super.get(compositeKey);
|
||||||
|
if (value == null) {
|
||||||
|
compositeKey = composeKey(stringKey, 22, TITLE_SUFFIX);
|
||||||
|
value = super.get(compositeKey);
|
||||||
|
}
|
||||||
|
return value == null ? null : getIndexFromProperty(value.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
String composeKey(String key, int reduce, String sufix) {
|
||||||
|
return key.substring(0, key.length() - reduce) + sufix;
|
||||||
|
}
|
||||||
|
|
||||||
|
String getTextFromProperty(String text) {
|
||||||
|
return text.replace("&", "");
|
||||||
|
}
|
||||||
|
|
||||||
|
String getMnemonicFromProperty(String text) {
|
||||||
|
int index = text.indexOf('&');
|
||||||
|
if (0 <= index && index < text.length() - 1) {
|
||||||
|
char c = text.charAt(index + 1);
|
||||||
|
return Integer.toString((int) Character.toUpperCase(c));
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
String getIndexFromProperty(String text) {
|
||||||
|
int index = text.indexOf('&');
|
||||||
|
return (index == -1) ? null : Integer.toString(index);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -875,6 +875,8 @@ public class BasicTabbedPaneUI extends TabbedPaneUI implements SwingConstants {
|
|||||||
int availTextWidth = tabScroller.croppedEdge.getCropline() -
|
int availTextWidth = tabScroller.croppedEdge.getCropline() -
|
||||||
(textRect.x - tabRect.x) - tabScroller.croppedEdge.getCroppedSideWidth();
|
(textRect.x - tabRect.x) - tabScroller.croppedEdge.getCroppedSideWidth();
|
||||||
clippedTitle = SwingUtilities2.clipStringIfNecessary(null, metrics, title, availTextWidth);
|
clippedTitle = SwingUtilities2.clipStringIfNecessary(null, metrics, title, availTextWidth);
|
||||||
|
} else if (!scrollableTabLayoutEnabled() && isHorizontalTabPlacement()) {
|
||||||
|
clippedTitle = SwingUtilities2.clipStringIfNecessary(null, metrics, title, textRect.width);
|
||||||
}
|
}
|
||||||
|
|
||||||
paintText(g, tabPlacement, font, metrics,
|
paintText(g, tabPlacement, font, metrics,
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2008, 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
|
||||||
@ -31,6 +31,8 @@ import java.nio.charset.Charset;
|
|||||||
import java.nio.charset.CharsetEncoder;
|
import java.nio.charset.CharsetEncoder;
|
||||||
import java.nio.charset.CharsetDecoder;
|
import java.nio.charset.CharsetDecoder;
|
||||||
import java.nio.charset.CoderResult;
|
import java.nio.charset.CoderResult;
|
||||||
|
import java.security.AccessController;
|
||||||
|
import java.security.PrivilegedAction;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import sun.nio.cs.CharsetMapping;
|
import sun.nio.cs.CharsetMapping;
|
||||||
|
|
||||||
@ -73,8 +75,12 @@ public class SJIS_0213 extends Charset {
|
|||||||
return new Encoder(this);
|
return new Encoder(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
static CharsetMapping mapping =
|
static CharsetMapping mapping = AccessController.doPrivileged(
|
||||||
CharsetMapping.get(SJIS_0213.class.getResourceAsStream("sjis0213.dat"));
|
new PrivilegedAction<CharsetMapping>() {
|
||||||
|
public CharsetMapping run() {
|
||||||
|
return CharsetMapping.get(SJIS_0213.class.getResourceAsStream("sjis0213.dat"));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
protected static class Decoder extends CharsetDecoder {
|
protected static class Decoder extends CharsetDecoder {
|
||||||
protected static final char UNMAPPABLE = CharsetMapping.UNMAPPABLE_DECODING;
|
protected static final char UNMAPPABLE = CharsetMapping.UNMAPPABLE_DECODING;
|
||||||
|
@ -330,12 +330,17 @@ public class Credentials {
|
|||||||
CredentialsCache ccache =
|
CredentialsCache ccache =
|
||||||
CredentialsCache.getInstance(princ, ticketCache);
|
CredentialsCache.getInstance(princ, ticketCache);
|
||||||
|
|
||||||
if (ccache == null)
|
if (ccache == null) {
|
||||||
return null;
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
sun.security.krb5.internal.ccache.Credentials tgtCred =
|
sun.security.krb5.internal.ccache.Credentials tgtCred =
|
||||||
ccache.getDefaultCreds();
|
ccache.getDefaultCreds();
|
||||||
|
|
||||||
|
if (tgtCred == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
if (EType.isSupported(tgtCred.getEType())) {
|
if (EType.isSupported(tgtCred.getEType())) {
|
||||||
return tgtCred.setKrbCreds();
|
return tgtCred.setKrbCreds();
|
||||||
} else {
|
} else {
|
||||||
@ -375,19 +380,21 @@ public class Credentials {
|
|||||||
cache = CredentialsCache.getInstance();
|
cache = CredentialsCache.getInstance();
|
||||||
}
|
}
|
||||||
if (cache != null) {
|
if (cache != null) {
|
||||||
if (DEBUG) {
|
|
||||||
System.out.println(">>> KrbCreds found the default ticket " +
|
|
||||||
"granting ticket in credential cache.");
|
|
||||||
}
|
|
||||||
sun.security.krb5.internal.ccache.Credentials temp =
|
sun.security.krb5.internal.ccache.Credentials temp =
|
||||||
cache.getDefaultCreds();
|
cache.getDefaultCreds();
|
||||||
if (EType.isSupported(temp.getEType())) {
|
if (temp != null) {
|
||||||
result = temp.setKrbCreds();
|
|
||||||
} else {
|
|
||||||
if (DEBUG) {
|
if (DEBUG) {
|
||||||
System.out.println(
|
System.out.println(">>> KrbCreds found the default ticket"
|
||||||
">>> unsupported key type found the default TGT: " +
|
+ " granting ticket in credential cache.");
|
||||||
temp.getEType());
|
}
|
||||||
|
if (EType.isSupported(temp.getEType())) {
|
||||||
|
result = temp.setKrbCreds();
|
||||||
|
} else {
|
||||||
|
if (DEBUG) {
|
||||||
|
System.out.println(
|
||||||
|
">>> unsupported key type found the default TGT: " +
|
||||||
|
temp.getEType());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1996, 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
|
||||||
@ -91,9 +91,20 @@ class AppOutputStream extends OutputStream {
|
|||||||
// however they like; if we buffered here, they couldn't.
|
// however they like; if we buffered here, they couldn't.
|
||||||
try {
|
try {
|
||||||
do {
|
do {
|
||||||
|
boolean holdRecord = false;
|
||||||
int howmuch;
|
int howmuch;
|
||||||
if (isFirstRecordOfThePayload && c.needToSplitPayload()) {
|
if (isFirstRecordOfThePayload && c.needToSplitPayload()) {
|
||||||
howmuch = Math.min(0x01, r.availableDataBytes());
|
howmuch = Math.min(0x01, r.availableDataBytes());
|
||||||
|
/*
|
||||||
|
* Nagle's algorithm (TCP_NODELAY) was coming into
|
||||||
|
* play here when writing short (split) packets.
|
||||||
|
* Signal to the OutputRecord code to internally
|
||||||
|
* buffer this small packet until the next outbound
|
||||||
|
* packet (of any type) is written.
|
||||||
|
*/
|
||||||
|
if ((len != 1) && (howmuch == 1)) {
|
||||||
|
holdRecord = true;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
howmuch = Math.min(len, r.availableDataBytes());
|
howmuch = Math.min(len, r.availableDataBytes());
|
||||||
}
|
}
|
||||||
@ -108,7 +119,7 @@ class AppOutputStream extends OutputStream {
|
|||||||
off += howmuch;
|
off += howmuch;
|
||||||
len -= howmuch;
|
len -= howmuch;
|
||||||
}
|
}
|
||||||
c.writeRecord(r);
|
c.writeRecord(r, holdRecord);
|
||||||
c.checkWrite();
|
c.checkWrite();
|
||||||
} while (len > 0);
|
} while (len > 0);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* 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
|
||||||
@ -155,8 +155,9 @@ final class EngineOutputRecord extends OutputRecord {
|
|||||||
* data to be generated/output before the exception is ever
|
* data to be generated/output before the exception is ever
|
||||||
* generated.
|
* generated.
|
||||||
*/
|
*/
|
||||||
void writeBuffer(OutputStream s, byte [] buf, int off, int len)
|
@Override
|
||||||
throws IOException {
|
void writeBuffer(OutputStream s, byte [] buf, int off, int len,
|
||||||
|
int debugOffset) throws IOException {
|
||||||
/*
|
/*
|
||||||
* Copy data out of buffer, it's ready to go.
|
* Copy data out of buffer, it's ready to go.
|
||||||
*/
|
*/
|
||||||
@ -196,7 +197,8 @@ final class EngineOutputRecord extends OutputRecord {
|
|||||||
// compress(); // eventually
|
// compress(); // eventually
|
||||||
addMAC(writeMAC);
|
addMAC(writeMAC);
|
||||||
encrypt(writeCipher);
|
encrypt(writeCipher);
|
||||||
write((OutputStream)null); // send down for processing
|
write((OutputStream)null, false, // send down for processing
|
||||||
|
(ByteArrayOutputStream)null);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1996, 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
|
||||||
@ -28,6 +28,7 @@ package sun.security.ssl;
|
|||||||
|
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.nio.*;
|
import java.nio.*;
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
import javax.net.ssl.SSLException;
|
import javax.net.ssl.SSLException;
|
||||||
import sun.misc.HexDumpEncoder;
|
import sun.misc.HexDumpEncoder;
|
||||||
@ -226,6 +227,24 @@ class OutputRecord extends ByteArrayOutputStream implements Record {
|
|||||||
return maxDataSize - dataSize;
|
return maxDataSize - dataSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Increases the capacity if necessary to ensure that it can hold
|
||||||
|
* at least the number of elements specified by the minimum
|
||||||
|
* capacity argument.
|
||||||
|
*
|
||||||
|
* Note that the increased capacity is only can be used for held
|
||||||
|
* record buffer. Please DO NOT update the availableDataBytes()
|
||||||
|
* according to the expended buffer capacity.
|
||||||
|
*
|
||||||
|
* @see availableDataBytes()
|
||||||
|
*/
|
||||||
|
private void ensureCapacity(int minCapacity) {
|
||||||
|
// overflow-conscious code
|
||||||
|
if (minCapacity > buf.length) {
|
||||||
|
buf = Arrays.copyOf(buf, minCapacity);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Return the type of SSL record that's buffered here.
|
* Return the type of SSL record that's buffered here.
|
||||||
*/
|
*/
|
||||||
@ -243,7 +262,9 @@ class OutputRecord extends ByteArrayOutputStream implements Record {
|
|||||||
* that synchronization be done elsewhere. Also, this does its work
|
* that synchronization be done elsewhere. Also, this does its work
|
||||||
* in a single low level write, for efficiency.
|
* in a single low level write, for efficiency.
|
||||||
*/
|
*/
|
||||||
void write(OutputStream s) throws IOException {
|
void write(OutputStream s, boolean holdRecord,
|
||||||
|
ByteArrayOutputStream heldRecordBuffer) throws IOException {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Don't emit content-free records. (Even change cipher spec
|
* Don't emit content-free records. (Even change cipher spec
|
||||||
* messages have a byte of data!)
|
* messages have a byte of data!)
|
||||||
@ -300,7 +321,49 @@ class OutputRecord extends ByteArrayOutputStream implements Record {
|
|||||||
}
|
}
|
||||||
firstMessage = false;
|
firstMessage = false;
|
||||||
|
|
||||||
writeBuffer(s, buf, 0, count);
|
/*
|
||||||
|
* The upper levels may want us to delay sending this packet so
|
||||||
|
* multiple TLS Records can be sent in one (or more) TCP packets.
|
||||||
|
* If so, add this packet to the heldRecordBuffer.
|
||||||
|
*
|
||||||
|
* NOTE: all writes have been synchronized by upper levels.
|
||||||
|
*/
|
||||||
|
int debugOffset = 0;
|
||||||
|
if (holdRecord) {
|
||||||
|
/*
|
||||||
|
* If holdRecord is true, we must have a heldRecordBuffer.
|
||||||
|
*
|
||||||
|
* Don't worry about the override of writeBuffer(), because
|
||||||
|
* when holdRecord is true, the implementation in this class
|
||||||
|
* will be used.
|
||||||
|
*/
|
||||||
|
writeBuffer(heldRecordBuffer, buf, 0, count, debugOffset);
|
||||||
|
} else {
|
||||||
|
// It's time to send, do we have buffered data?
|
||||||
|
// May or may not have a heldRecordBuffer.
|
||||||
|
if (heldRecordBuffer != null && heldRecordBuffer.size() > 0) {
|
||||||
|
int heldLen = heldRecordBuffer.size();
|
||||||
|
|
||||||
|
// Ensure the capacity of this buffer.
|
||||||
|
ensureCapacity(count + heldLen);
|
||||||
|
|
||||||
|
// Slide everything in the buffer to the right.
|
||||||
|
System.arraycopy(buf, 0, buf, heldLen, count);
|
||||||
|
|
||||||
|
// Prepend the held record to the buffer.
|
||||||
|
System.arraycopy(
|
||||||
|
heldRecordBuffer.toByteArray(), 0, buf, 0, heldLen);
|
||||||
|
count += heldLen;
|
||||||
|
|
||||||
|
// Clear the held buffer.
|
||||||
|
heldRecordBuffer.reset();
|
||||||
|
|
||||||
|
// The held buffer has been dumped, set the debug dump offset.
|
||||||
|
debugOffset = heldLen;
|
||||||
|
}
|
||||||
|
writeBuffer(s, buf, 0, count, debugOffset);
|
||||||
|
}
|
||||||
|
|
||||||
reset();
|
reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -309,15 +372,17 @@ class OutputRecord extends ByteArrayOutputStream implements Record {
|
|||||||
* we'll override this method and let it take the appropriate
|
* we'll override this method and let it take the appropriate
|
||||||
* action.
|
* action.
|
||||||
*/
|
*/
|
||||||
void writeBuffer(OutputStream s, byte [] buf, int off, int len)
|
void writeBuffer(OutputStream s, byte [] buf, int off, int len,
|
||||||
throws IOException {
|
int debugOffset) throws IOException {
|
||||||
s.write(buf, off, len);
|
s.write(buf, off, len);
|
||||||
s.flush();
|
s.flush();
|
||||||
|
|
||||||
|
// Output only the record from the specified debug offset.
|
||||||
if (debug != null && Debug.isOn("packet")) {
|
if (debug != null && Debug.isOn("packet")) {
|
||||||
try {
|
try {
|
||||||
HexDumpEncoder hd = new HexDumpEncoder();
|
HexDumpEncoder hd = new HexDumpEncoder();
|
||||||
ByteBuffer bb = ByteBuffer.wrap(buf, off, len);
|
ByteBuffer bb = ByteBuffer.wrap(
|
||||||
|
buf, off + debugOffset, len - debugOffset);
|
||||||
|
|
||||||
System.out.println("[Raw write]: length = " +
|
System.out.println("[Raw write]: length = " +
|
||||||
bb.remaining());
|
bb.remaining());
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1996, 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
|
||||||
@ -374,6 +374,12 @@ final public class SSLSocketImpl extends BaseSSLSocketImpl {
|
|||||||
*/
|
*/
|
||||||
private boolean isFirstAppOutputRecord = true;
|
private boolean isFirstAppOutputRecord = true;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* If AppOutputStream needs to delay writes of small packets, we
|
||||||
|
* will use this to store the data until we actually do the write.
|
||||||
|
*/
|
||||||
|
private ByteArrayOutputStream heldRecordBuffer = null;
|
||||||
|
|
||||||
//
|
//
|
||||||
// CONSTRUCTORS AND INITIALIZATION CODE
|
// CONSTRUCTORS AND INITIALIZATION CODE
|
||||||
//
|
//
|
||||||
@ -653,6 +659,17 @@ final public class SSLSocketImpl extends BaseSSLSocketImpl {
|
|||||||
// READING AND WRITING RECORDS
|
// READING AND WRITING RECORDS
|
||||||
//
|
//
|
||||||
|
|
||||||
|
/*
|
||||||
|
* AppOutputStream calls may need to buffer multiple outbound
|
||||||
|
* application packets.
|
||||||
|
*
|
||||||
|
* All other writeRecord() calls will not buffer, so do not hold
|
||||||
|
* these records.
|
||||||
|
*/
|
||||||
|
void writeRecord(OutputRecord r) throws IOException {
|
||||||
|
writeRecord(r, false);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Record Output. Application data can't be sent until the first
|
* Record Output. Application data can't be sent until the first
|
||||||
* handshake establishes a session.
|
* handshake establishes a session.
|
||||||
@ -660,7 +677,7 @@ final public class SSLSocketImpl extends BaseSSLSocketImpl {
|
|||||||
* NOTE: we let empty records be written as a hook to force some
|
* NOTE: we let empty records be written as a hook to force some
|
||||||
* TCP-level activity, notably handshaking, to occur.
|
* TCP-level activity, notably handshaking, to occur.
|
||||||
*/
|
*/
|
||||||
void writeRecord(OutputRecord r) throws IOException {
|
void writeRecord(OutputRecord r, boolean holdRecord) throws IOException {
|
||||||
/*
|
/*
|
||||||
* The loop is in case of HANDSHAKE --> ERROR transitions, etc
|
* The loop is in case of HANDSHAKE --> ERROR transitions, etc
|
||||||
*/
|
*/
|
||||||
@ -731,7 +748,7 @@ final public class SSLSocketImpl extends BaseSSLSocketImpl {
|
|||||||
try {
|
try {
|
||||||
if (writeLock.tryLock(getSoLinger(), TimeUnit.SECONDS)) {
|
if (writeLock.tryLock(getSoLinger(), TimeUnit.SECONDS)) {
|
||||||
try {
|
try {
|
||||||
writeRecordInternal(r);
|
writeRecordInternal(r, holdRecord);
|
||||||
} finally {
|
} finally {
|
||||||
writeLock.unlock();
|
writeLock.unlock();
|
||||||
}
|
}
|
||||||
@ -779,7 +796,7 @@ final public class SSLSocketImpl extends BaseSSLSocketImpl {
|
|||||||
} else {
|
} else {
|
||||||
writeLock.lock();
|
writeLock.lock();
|
||||||
try {
|
try {
|
||||||
writeRecordInternal(r);
|
writeRecordInternal(r, holdRecord);
|
||||||
} finally {
|
} finally {
|
||||||
writeLock.unlock();
|
writeLock.unlock();
|
||||||
}
|
}
|
||||||
@ -787,11 +804,29 @@ final public class SSLSocketImpl extends BaseSSLSocketImpl {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void writeRecordInternal(OutputRecord r) throws IOException {
|
private void writeRecordInternal(OutputRecord r,
|
||||||
|
boolean holdRecord) throws IOException {
|
||||||
|
|
||||||
// r.compress(c);
|
// r.compress(c);
|
||||||
r.addMAC(writeMAC);
|
r.addMAC(writeMAC);
|
||||||
r.encrypt(writeCipher);
|
r.encrypt(writeCipher);
|
||||||
r.write(sockOutput);
|
|
||||||
|
if (holdRecord) {
|
||||||
|
// If we were requested to delay the record due to possibility
|
||||||
|
// of Nagle's being active when finally got to writing, and
|
||||||
|
// it's actually not, we don't really need to delay it.
|
||||||
|
if (getTcpNoDelay()) {
|
||||||
|
holdRecord = false;
|
||||||
|
} else {
|
||||||
|
// We need to hold the record, so let's provide
|
||||||
|
// a per-socket place to do it.
|
||||||
|
if (heldRecordBuffer == null) {
|
||||||
|
// Likely only need 37 bytes.
|
||||||
|
heldRecordBuffer = new ByteArrayOutputStream(40);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
r.write(sockOutput, holdRecord, heldRecordBuffer);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Check the sequence number state
|
* Check the sequence number state
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1994, 2007, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1994, 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
|
||||||
@ -141,7 +141,7 @@ class ClassPath {
|
|||||||
} else {
|
} else {
|
||||||
StringBuilder sb = new StringBuilder(patharray[0]);
|
StringBuilder sb = new StringBuilder(patharray[0]);
|
||||||
for (int i = 1; i < patharray.length; i++) {
|
for (int i = 1; i < patharray.length; i++) {
|
||||||
sb.append(File.separator);
|
sb.append(File.pathSeparatorChar);
|
||||||
sb.append(patharray[i]);
|
sb.append(patharray[i]);
|
||||||
}
|
}
|
||||||
this.pathstr = sb.toString();
|
this.pathstr = sb.toString();
|
||||||
|
@ -78,7 +78,7 @@ public class ZipFileSystemProvider extends FileSystemProvider {
|
|||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
// only support legacy JAR URL syntax jar:{uri}!/{entry} for now
|
// only support legacy JAR URL syntax jar:{uri}!/{entry} for now
|
||||||
String spec = uri.getSchemeSpecificPart();
|
String spec = uri.getRawSchemeSpecificPart();
|
||||||
int sep = spec.indexOf("!/");
|
int sep = spec.indexOf("!/");
|
||||||
if (sep != -1)
|
if (sep != -1)
|
||||||
spec = spec.substring(0, sep);
|
spec = spec.substring(0, sep);
|
||||||
|
@ -168,6 +168,8 @@ class XTextAreaPeer extends XComponentPeer implements TextAreaPeer {
|
|||||||
|
|
||||||
public void dispose() {
|
public void dispose() {
|
||||||
XToolkit.specialPeerMap.remove(jtext);
|
XToolkit.specialPeerMap.remove(jtext);
|
||||||
|
// visible caret has a timer thread which must be stopped
|
||||||
|
jtext.getCaret().setVisible(false);
|
||||||
jtext.removeNotify();
|
jtext.removeNotify();
|
||||||
textPane.removeNotify();
|
textPane.removeNotify();
|
||||||
super.dispose();
|
super.dispose();
|
||||||
|
@ -104,6 +104,8 @@ public class XTextFieldPeer extends XComponentPeer implements TextFieldPeer {
|
|||||||
|
|
||||||
public void dispose() {
|
public void dispose() {
|
||||||
XToolkit.specialPeerMap.remove(xtext);
|
XToolkit.specialPeerMap.remove(xtext);
|
||||||
|
// visible caret has a timer thread which must be stopped
|
||||||
|
xtext.getCaret().setVisible(false);
|
||||||
xtext.removeNotify();
|
xtext.removeNotify();
|
||||||
super.dispose();
|
super.dispose();
|
||||||
}
|
}
|
||||||
|
@ -252,6 +252,9 @@ java/rmi/transport/rapidExportUnexport/RapidExportUnexport.java linux-all
|
|||||||
# 7132247
|
# 7132247
|
||||||
java/rmi/registry/readTest/readTest.sh windows-all
|
java/rmi/registry/readTest/readTest.sh windows-all
|
||||||
|
|
||||||
|
# 7142596
|
||||||
|
java/rmi/transport/pinClientSocketFactory/PinClientSocketFactory.java generic-all
|
||||||
|
|
||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
# jdk_security
|
# jdk_security
|
||||||
|
56
jdk/test/demo/zipfs/ZFSTests.java
Normal file
56
jdk/test/demo/zipfs/ZFSTests.java
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
|
*
|
||||||
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
* under the terms of the GNU General Public License version 2 only, as
|
||||||
|
* published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
|
* version 2 for more details (a copy is included in the LICENSE file that
|
||||||
|
* accompanied this code).
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License version
|
||||||
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||||
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*
|
||||||
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||||
|
* or visit www.oracle.com if you need additional information or have any
|
||||||
|
* questions.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* @test
|
||||||
|
@bug 7156873
|
||||||
|
@summary ZipFileSystem regression tests
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
import java.net.URI;
|
||||||
|
import java.nio.file.*;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.HashMap;
|
||||||
|
|
||||||
|
public class ZFSTests {
|
||||||
|
|
||||||
|
public static void main(String[] args) throws Throwable {
|
||||||
|
test7156873();
|
||||||
|
}
|
||||||
|
|
||||||
|
static void test7156873() throws Throwable {
|
||||||
|
String DIRWITHSPACE = "testdir with spaces";
|
||||||
|
Path dir = Paths.get(DIRWITHSPACE);
|
||||||
|
Path path = Paths.get(DIRWITHSPACE, "file.zip");
|
||||||
|
try {
|
||||||
|
Files.createDirectory(dir);
|
||||||
|
URI uri = URI.create("jar:" + path.toUri());
|
||||||
|
Map<String, Object> env = new HashMap<String, Object>();
|
||||||
|
env.put("create", "true");
|
||||||
|
try (FileSystem fs = FileSystems.newFileSystem(uri, env)) {}
|
||||||
|
} finally {
|
||||||
|
Files.deleteIfExists(path);
|
||||||
|
Files.deleteIfExists(dir);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user