Merge
This commit is contained in:
commit
69983c74a6
@ -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.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
@ -53,6 +53,11 @@ ifndef PLATFORM_SRC
|
||||
PLATFORM_SRC = $(BUILDDIR)/../src/solaris
|
||||
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
|
||||
ifndef OPENJDK
|
||||
ifndef CLOSED_PLATFORM_SRC
|
||||
@ -73,55 +78,91 @@ SCRIPT_SUFFIX =
|
||||
# CC compiler object code output directive flag value
|
||||
CC_OBJECT_OUTPUT_FLAG = -o #trailing blank required!
|
||||
|
||||
# Default OBJCOPY comes from GNU Binutils on Linux:
|
||||
DEF_OBJCOPY=/usr/bin/objcopy
|
||||
ifdef CROSS_COMPILE_ARCH
|
||||
# don't try to generate .debuginfo files when cross compiling
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: cross compiling for ARCH $(CROSS_COMPILE_ARCH)," \
|
||||
"skipping .debuginfo generation.")
|
||||
OBJCOPY=
|
||||
# The Full Debug Symbols (FDS) default for VARIANT == OPT builds is
|
||||
# enabled with debug info files ZIP'ed to save space. For VARIANT !=
|
||||
# OPT builds, FDS is always enabled, after all a debug build without
|
||||
# debug info isn't very useful. The ZIP_DEBUGINFO_FILES option only has
|
||||
# meaning when FDS is enabled.
|
||||
#
|
||||
# If you invoke a build with FULL_DEBUG_SYMBOLS=0, then FDS will be
|
||||
# disabled for a VARIANT == OPT build.
|
||||
#
|
||||
# Note: Use of a different variable name for the FDS override option
|
||||
# versus the FDS enabled check is intentional (FULL_DEBUG_SYMBOLS
|
||||
# versus ENABLE_FULL_DEBUG_SYMBOLS). For auto build systems that pass
|
||||
# in options via environment variables, use of distinct variables
|
||||
# prevents strange behaviours. For example, in a VARIANT != OPT build,
|
||||
# the FULL_DEBUG_SYMBOLS environment variable will be 0, but the
|
||||
# ENABLE_FULL_DEBUG_SYMBOLS make variable will be 1. If the same
|
||||
# variable name is used, then different values can be picked up by
|
||||
# different parts of the build. Just to be clear, we only need two
|
||||
# variable names because the incoming option value can be overridden
|
||||
# in some situations, e.g., a VARIANT != OPT build.
|
||||
|
||||
ifeq ($(VARIANT), OPT)
|
||||
FULL_DEBUG_SYMBOLS ?= 1
|
||||
ENABLE_FULL_DEBUG_SYMBOLS = $(FULL_DEBUG_SYMBOLS)
|
||||
else
|
||||
OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY))
|
||||
ifneq ($(ALT_OBJCOPY),)
|
||||
_JUNK_ := $(shell echo >&2 "INFO: ALT_OBJCOPY=$(ALT_OBJCOPY)")
|
||||
# disable .debuginfo support by setting ALT_OBJCOPY to a non-existent path
|
||||
OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY))
|
||||
endif
|
||||
# debug variants always get Full Debug Symbols (if available)
|
||||
ENABLE_FULL_DEBUG_SYMBOLS = 1
|
||||
endif
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)")
|
||||
# since objcopy is optional, we set ZIP_DEBUGINFO_FILES later
|
||||
|
||||
ifdef LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS
|
||||
# The setting of OBJCOPY above enables the JDK build to import
|
||||
# .debuginfo files from the HotSpot build. However, adding FDS
|
||||
# support to the JDK build will occur in phases so a different
|
||||
# make variable is used to indicate that a particular library
|
||||
# supports FDS.
|
||||
|
||||
ifeq ($(OBJCOPY),)
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: no objcopy cmd found so cannot create .debuginfo files.")
|
||||
else
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: $(OBJCOPY) cmd found so will create .debuginfo files.")
|
||||
|
||||
# Library stripping policies for .debuginfo configs:
|
||||
# all_strip - strips everything from the library
|
||||
# min_strip - strips most stuff from the library; leaves minimum symbols
|
||||
# no_strip - does not strip the library at all
|
||||
#
|
||||
# Oracle security policy requires "all_strip". A waiver was granted on
|
||||
# 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE.
|
||||
#
|
||||
DEF_STRIP_POLICY="min_strip"
|
||||
ifeq ($(ALT_STRIP_POLICY),)
|
||||
STRIP_POLICY=$(DEF_STRIP_POLICY)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
# Default OBJCOPY comes from GNU Binutils on Linux:
|
||||
DEF_OBJCOPY=/usr/bin/objcopy
|
||||
ifdef CROSS_COMPILE_ARCH
|
||||
# don't try to generate .debuginfo files when cross compiling
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: cross compiling for ARCH $(CROSS_COMPILE_ARCH)," \
|
||||
"skipping .debuginfo generation.")
|
||||
OBJCOPY=
|
||||
else
|
||||
STRIP_POLICY=$(ALT_STRIP_POLICY)
|
||||
OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY))
|
||||
ifneq ($(ALT_OBJCOPY),)
|
||||
_JUNK_ := $(shell echo >&2 "INFO: ALT_OBJCOPY=$(ALT_OBJCOPY)")
|
||||
# disable .debuginfo support by setting ALT_OBJCOPY to a non-existent path
|
||||
OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY))
|
||||
endif
|
||||
endif
|
||||
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
|
||||
endif
|
||||
# Setting ENABLE_FULL_DEBUG_SYMBOLS=1 (and OBJCOPY) above enables the
|
||||
# JDK build to import .debuginfo or .diz files from the HotSpot build.
|
||||
# However, adding FDS support to the JDK build will occur in phases
|
||||
# so a different make variable (LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS)
|
||||
# is used to indicate that a particular library supports FDS.
|
||||
|
||||
ifeq ($(OBJCOPY),)
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: no objcopy cmd found so cannot create .debuginfo files.")
|
||||
ENABLE_FULL_DEBUG_SYMBOLS=0
|
||||
else
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: $(OBJCOPY) cmd found so will create .debuginfo files.")
|
||||
|
||||
# Library stripping policies for .debuginfo configs:
|
||||
# all_strip - strips everything from the library
|
||||
# min_strip - strips most stuff from the library; leaves minimum symbols
|
||||
# no_strip - does not strip the library at all
|
||||
#
|
||||
# Oracle security policy requires "all_strip". A waiver was granted on
|
||||
# 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE.
|
||||
#
|
||||
# Currently, STRIP_POLICY is only used when Full Debug Symbols is enabled.
|
||||
STRIP_POLICY ?= min_strip
|
||||
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
|
||||
|
||||
# HACK: disable ZIP_DEBUGINFO_FILES by default until install repo
|
||||
# changes are promoted
|
||||
ZIP_DEBUGINFO_FILES ?= 0
|
||||
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)")
|
||||
endif
|
||||
endif
|
||||
|
||||
#
|
||||
@ -412,6 +453,7 @@ JA_TARGET_ENCODINGS = UTF-8
|
||||
HOTSPOT_SALIB_PATH = $(HOTSPOT_IMPORT_PATH)/jre/lib/$(LIBARCH)
|
||||
SALIB_NAME = $(LIB_PREFIX)saproc.$(LIBRARY_SUFFIX)
|
||||
SA_DEBUGINFO_NAME = $(LIB_PREFIX)saproc.debuginfo
|
||||
SA_DIZ_NAME = $(LIB_PREFIX)saproc.diz
|
||||
|
||||
# The JDI - Serviceability Agent binding is not currently supported
|
||||
# on Linux-ia64.
|
||||
|
@ -53,6 +53,11 @@ ifndef PLATFORM_SRC
|
||||
PLATFORM_SRC = $(BUILDDIR)/../src/solaris
|
||||
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
|
||||
|
||||
# BSD build pulls its platform sources from the solaris tree.
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (c) 1995, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 1995, 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
|
||||
@ -51,6 +51,11 @@ ifndef PLATFORM_SRC
|
||||
PLATFORM_SRC = $(BUILDDIR)/../src/solaris
|
||||
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
|
||||
ifndef OPENJDK
|
||||
ifndef CLOSED_PLATFORM_SRC
|
||||
@ -73,67 +78,99 @@ SCRIPT_SUFFIX =
|
||||
# CC compiler object code output directive flag value
|
||||
CC_OBJECT_OUTPUT_FLAG = -o #trailing blank required!
|
||||
|
||||
ifdef ENABLE_FULL_DEBUG_SYMBOLS
|
||||
# Only check for Full Debug Symbols support on Solaris if it is
|
||||
# specifically enabled. Hopefully, it can be enabled by default
|
||||
# once the .debuginfo size issues are worked out.
|
||||
# The Full Debug Symbols (FDS) default for VARIANT == OPT builds is
|
||||
# enabled with debug info files ZIP'ed to save space. For VARIANT !=
|
||||
# OPT builds, FDS is always enabled, after all a debug build without
|
||||
# debug info isn't very useful. The ZIP_DEBUGINFO_FILES option only has
|
||||
# meaning when FDS is enabled.
|
||||
#
|
||||
# If you invoke a build with FULL_DEBUG_SYMBOLS=0, then FDS will be
|
||||
# disabled for a VARIANT == OPT build.
|
||||
#
|
||||
# Note: Use of a different variable name for the FDS override option
|
||||
# versus the FDS enabled check is intentional (FULL_DEBUG_SYMBOLS
|
||||
# versus ENABLE_FULL_DEBUG_SYMBOLS). For auto build systems that pass
|
||||
# in options via environment variables, use of distinct variables
|
||||
# prevents strange behaviours. For example, in a VARIANT != OPT build,
|
||||
# the FULL_DEBUG_SYMBOLS environment variable will be 0, but the
|
||||
# ENABLE_FULL_DEBUG_SYMBOLS make variable will be 1. If the same
|
||||
# variable name is used, then different values can be picked up by
|
||||
# different parts of the build. Just to be clear, we only need two
|
||||
# variable names because the incoming option value can be overridden
|
||||
# in some situations, e.g., a VARIANT != OPT build.
|
||||
|
||||
# Default OBJCOPY comes from the SUNWbinutils package:
|
||||
DEF_OBJCOPY=/usr/sfw/bin/gobjcopy
|
||||
ifeq ($(PLATFORM)-$(LIBARCH), solaris-amd64)
|
||||
# On Solaris AMD64/X64, gobjcopy is not happy and fails:
|
||||
#
|
||||
# usr/sfw/bin/gobjcopy --add-gnu-debuglink=<lib>.debuginfo <lib>.so
|
||||
# BFD: stKPaiop: Not enough room for program headers, try linking with -N
|
||||
# /usr/sfw/bin/gobjcopy: stKPaiop: Bad value
|
||||
# BFD: stKPaiop: Not enough room for program headers, try linking with -N
|
||||
# /usr/sfw/bin/gobjcopy: libsaproc.debuginfo: Bad value
|
||||
# BFD: stKPaiop: Not enough room for program headers, try linking with -N
|
||||
# /usr/sfw/bin/gobjcopy: stKPaiop: Bad value
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: $(DEF_OBJCOPY) is not working on Solaris AMD64/X64")
|
||||
OBJCOPY=
|
||||
ifeq ($(VARIANT), OPT)
|
||||
FULL_DEBUG_SYMBOLS ?= 1
|
||||
ENABLE_FULL_DEBUG_SYMBOLS = $(FULL_DEBUG_SYMBOLS)
|
||||
else
|
||||
OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY))
|
||||
ifneq ($(ALT_OBJCOPY),)
|
||||
_JUNK_ := $(shell echo >&2 "INFO: ALT_OBJCOPY=$(ALT_OBJCOPY)")
|
||||
# disable .debuginfo support by setting ALT_OBJCOPY to a non-existent path
|
||||
OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY))
|
||||
endif
|
||||
# debug variants always get Full Debug Symbols (if available)
|
||||
ENABLE_FULL_DEBUG_SYMBOLS = 1
|
||||
endif
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)")
|
||||
# since objcopy is optional, we set ZIP_DEBUGINFO_FILES later
|
||||
|
||||
ifdef LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS
|
||||
# The setting of OBJCOPY above enables the JDK build to import
|
||||
# .debuginfo files from the HotSpot build. However, adding FDS
|
||||
# support to the JDK build will occur in phases so a different
|
||||
# make variable is used to indicate that a particular library
|
||||
# supports FDS.
|
||||
|
||||
ifeq ($(OBJCOPY),)
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: no objcopy cmd found so cannot create .debuginfo files.")
|
||||
else
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: $(OBJCOPY) cmd found so will create .debuginfo files.")
|
||||
|
||||
# Library stripping policies for .debuginfo configs:
|
||||
# all_strip - strips everything from the library
|
||||
# min_strip - strips most stuff from the library; leaves minimum symbols
|
||||
# no_strip - does not strip the library at all
|
||||
#
|
||||
# Oracle security policy requires "all_strip". A waiver was granted on
|
||||
# 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE.
|
||||
#
|
||||
DEF_STRIP_POLICY="min_strip"
|
||||
ifeq ($(ALT_STRIP_POLICY),)
|
||||
STRIP_POLICY=$(DEF_STRIP_POLICY)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
# Default OBJCOPY comes from the SUNWbinutils package:
|
||||
DEF_OBJCOPY=/usr/sfw/bin/gobjcopy
|
||||
ifeq ($(PLATFORM)-$(LIBARCH), solaris-amd64)
|
||||
# On Solaris AMD64/X64, gobjcopy is not happy and fails:
|
||||
#
|
||||
# usr/sfw/bin/gobjcopy --add-gnu-debuglink=<lib>.debuginfo <lib>.so
|
||||
# BFD: stKPaiop: Not enough room for program headers, try linking with -N
|
||||
# /usr/sfw/bin/gobjcopy: stKPaiop: Bad value
|
||||
# BFD: stKPaiop: Not enough room for program headers, try linking with -N
|
||||
# /usr/sfw/bin/gobjcopy: libsaproc.debuginfo: Bad value
|
||||
# BFD: stKPaiop: Not enough room for program headers, try linking with -N
|
||||
# /usr/sfw/bin/gobjcopy: stKPaiop: Bad value
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: $(DEF_OBJCOPY) is not working on Solaris AMD64/X64")
|
||||
OBJCOPY=
|
||||
else
|
||||
STRIP_POLICY=$(ALT_STRIP_POLICY)
|
||||
OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY))
|
||||
ifneq ($(ALT_OBJCOPY),)
|
||||
_JUNK_ := $(shell echo >&2 "INFO: ALT_OBJCOPY=$(ALT_OBJCOPY)")
|
||||
# disable .debuginfo support by setting ALT_OBJCOPY to a non-existent path
|
||||
OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY))
|
||||
endif
|
||||
endif
|
||||
|
||||
# Setting ENABLE_FULL_DEBUG_SYMBOLS=1 (and OBJCOPY) above enables the
|
||||
# JDK build to import .debuginfo or .diz files from the HotSpot build.
|
||||
# However, adding FDS support to the JDK build will occur in phases
|
||||
# so a different make variable (LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS)
|
||||
# is used to indicate that a particular library supports FDS.
|
||||
|
||||
ifeq ($(OBJCOPY),)
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: no objcopy cmd found so cannot create .debuginfo files.")
|
||||
ENABLE_FULL_DEBUG_SYMBOLS=0
|
||||
else
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: $(OBJCOPY) cmd found so will create .debuginfo files.")
|
||||
|
||||
# Library stripping policies for .debuginfo configs:
|
||||
# all_strip - strips everything from the library
|
||||
# min_strip - strips most stuff from the library; leaves minimum symbols
|
||||
# no_strip - does not strip the library at all
|
||||
#
|
||||
# Oracle security policy requires "all_strip". A waiver was granted on
|
||||
# 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE.
|
||||
#
|
||||
#
|
||||
# Currently, STRIP_POLICY is only used when Full Debug Symbols is enabled.
|
||||
STRIP_POLICY ?= min_strip
|
||||
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
|
||||
|
||||
# HACK: disable ZIP_DEBUGINFO_FILES by default until install repo
|
||||
# changes are promoted
|
||||
ZIP_DEBUGINFO_FILES ?= 0
|
||||
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)")
|
||||
endif
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
#
|
||||
@ -753,5 +790,6 @@ JA_TARGET_ENCODINGS = eucJP UTF-8 PCK
|
||||
HOTSPOT_SALIB_PATH = $(HOTSPOT_IMPORT_PATH)/jre/lib/$(LIBARCH)
|
||||
SALIB_NAME = $(LIB_PREFIX)saproc.$(LIBRARY_SUFFIX)
|
||||
SA_DEBUGINFO_NAME = $(LIB_PREFIX)saproc.debuginfo
|
||||
SA_DIZ_NAME = $(LIB_PREFIX)saproc.diz
|
||||
INCLUDE_SA=true
|
||||
|
||||
|
@ -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.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
@ -52,6 +52,11 @@ ifndef PLATFORM_SRC
|
||||
PLATFORM_SRC = $(BUILDDIR)/../src/windows
|
||||
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
|
||||
ifndef OPENJDK
|
||||
ifndef CLOSED_PLATFORM_SRC
|
||||
@ -75,6 +80,47 @@ endif
|
||||
|
||||
EXTRA_LFLAGS += /LIBPATH:$(DXSDK_LIB_PATH)
|
||||
|
||||
# Full Debug Symbols has been enabled on Windows since JDK1.4.1.
|
||||
# The Full Debug Symbols (FDS) default for VARIANT == OPT builds is
|
||||
# enabled with debug info files ZIP'ed to save space. For VARIANT !=
|
||||
# OPT builds, FDS is always enabled, after all a debug build without
|
||||
# debug info isn't very useful. The ZIP_DEBUGINFO_FILES option only has
|
||||
# meaning when FDS is enabled.
|
||||
#
|
||||
# If you invoke a build with FULL_DEBUG_SYMBOLS=0, then FDS will be
|
||||
# disabled for a VARIANT == OPT build.
|
||||
#
|
||||
# Note: Use of a different variable name for the FDS override option
|
||||
# versus the FDS enabled check is intentional (FULL_DEBUG_SYMBOLS
|
||||
# versus ENABLE_FULL_DEBUG_SYMBOLS). For auto build systems that pass
|
||||
# in options via environment variables, use of distinct variables
|
||||
# prevents strange behaviours. For example, in a VARIANT != OPT build,
|
||||
# the FULL_DEBUG_SYMBOLS environment variable will be 0, but the
|
||||
# ENABLE_FULL_DEBUG_SYMBOLS make variable will be 1. If the same
|
||||
# variable name is used, then different values can be picked up by
|
||||
# different parts of the build. Just to be clear, we only need two
|
||||
# variable names because the incoming option value can be overridden
|
||||
# in some situations, e.g., a VARIANT != OPT build.
|
||||
|
||||
ifeq ($(VARIANT), OPT)
|
||||
FULL_DEBUG_SYMBOLS ?= 1
|
||||
ENABLE_FULL_DEBUG_SYMBOLS = $(FULL_DEBUG_SYMBOLS)
|
||||
else
|
||||
# debug variants always get Full Debug Symbols (if available)
|
||||
ENABLE_FULL_DEBUG_SYMBOLS = 1
|
||||
endif
|
||||
_JUNK_ := $(shell \
|
||||
echo >&2 "INFO: ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)")
|
||||
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
# HACK: disable ZIP_DEBUGINFO_FILES by default until install repo
|
||||
# changes are promoted
|
||||
ZIP_DEBUGINFO_FILES ?= 0
|
||||
else
|
||||
ZIP_DEBUGINFO_FILES=0
|
||||
endif
|
||||
_JUNK_ := $(shell echo >&2 "INFO: ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)")
|
||||
|
||||
# C Compiler flag definitions
|
||||
|
||||
#
|
||||
@ -201,7 +247,10 @@ ifeq ($(CC_VERSION),msvc)
|
||||
# /D _STATIC_CPPLIB
|
||||
# Use static link for the C++ runtime (so msvcpnn.dll not needed)
|
||||
#
|
||||
CFLAGS_COMMON += -Zi -nologo
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
CFLAGS_COMMON += -Zi
|
||||
endif
|
||||
CFLAGS_COMMON += -nologo
|
||||
CFLAGS_OPT = $(CC_OPT)
|
||||
CFLAGS_DBG = -Od $(MS_RUNTIME_DEBUG_OPTION)
|
||||
|
||||
@ -210,7 +259,9 @@ ifeq ($(CC_VERSION),msvc)
|
||||
# All builds get the same runtime setting
|
||||
CFLAGS_COMMON += $(MS_RUNTIME_OPTION) $(CFLAGS_$(COMPILER_VERSION))
|
||||
|
||||
LDEBUG = /debug
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
LDEBUG = /debug
|
||||
endif
|
||||
|
||||
ifeq ($(VTUNE_SUPPORT), true)
|
||||
OTHER_CFLAGS = -Z7 -Ox
|
||||
@ -244,7 +295,9 @@ CPPFLAGS_COMMON += -DWIN32_LEAN_AND_MEAN
|
||||
#
|
||||
# Output options (use specific filenames to avoid parallel compile errors)
|
||||
#
|
||||
CFLAGS_COMMON += -Fd$(OBJDIR)/$(basename $(@F)).pdb -Fm$(OBJDIR)/$(basename $(@F)).map
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
CFLAGS_COMMON += -Fd$(OBJDIR)/$(basename $(@F)).pdb -Fm$(OBJDIR)/$(basename $(@F)).map
|
||||
endif
|
||||
|
||||
#
|
||||
# Use -wdNNNN to disable warning NNNN.
|
||||
@ -305,6 +358,7 @@ HOTSPOT_SALIB_PATH = $(HOTSPOT_IMPORT_PATH)/jre/bin
|
||||
SALIB_NAME = $(LIB_PREFIX)sawindbg.$(LIBRARY_SUFFIX)
|
||||
SAMAP_NAME = $(LIB_PREFIX)sawindbg.map
|
||||
SAPDB_NAME = $(LIB_PREFIX)sawindbg.pdb
|
||||
SA_DIZ_NAME = $(LIB_PREFIX)sawindbg.diz
|
||||
|
||||
ifeq ($(ARCH), ia64)
|
||||
# SA will never be supported here.
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (c) 1995, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 1995, 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
|
||||
@ -167,17 +167,23 @@ else # LIBRARY
|
||||
# build it into $(OBJDIR) so that the other generated files get put
|
||||
# there, then copy just the DLL (and MAP file) to the requested directory.
|
||||
#
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
MAP_OPTION="-map:$(OBJDIR)/$(LIBRARY).map"
|
||||
endif
|
||||
|
||||
$(ACTUAL_LIBRARY):: $(OBJDIR)/$(LIBRARY).lcf
|
||||
@$(prep-target)
|
||||
@$(MKDIR) -p $(OBJDIR)
|
||||
$(LINK) -dll -out:$(OBJDIR)/$(@F) \
|
||||
-map:$(OBJDIR)/$(LIBRARY).map \
|
||||
$(MAP_OPTION) \
|
||||
$(LFLAGS) @$(OBJDIR)/$(LIBRARY).lcf \
|
||||
$(OTHER_LCF) $(LDLIBS)
|
||||
$(CP) $(OBJDIR)/$(@F) $@
|
||||
@$(call binary_file_verification,$@)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
$(CP) $(OBJDIR)/$(LIBRARY).map $(@D)
|
||||
$(CP) $(OBJDIR)/$(LIBRARY).pdb $(@D)
|
||||
endif
|
||||
|
||||
endif # LIBRARY
|
||||
|
||||
|
@ -171,6 +171,10 @@ ifeq ($(PLATFORM), windows)
|
||||
@$(prep-target)
|
||||
$(SED) 's%IMVERSION%$(IMVERSION)%g;s%PROGRAM%$(PROGRAM)%g' $< > $@
|
||||
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
MAP_OPTION="-map:$(OBJDIR)/$(PROGRAM).map"
|
||||
endif
|
||||
|
||||
# We used a hand-crafted manifest file for all executables.
|
||||
# It is tweaked to embed the build number and executable name.
|
||||
# Use ";#2" for .dll and ";#1" for .exe in the MT command below:
|
||||
@ -179,7 +183,7 @@ ifeq ($(PLATFORM), windows)
|
||||
@set -- $?; \
|
||||
$(ECHO) Rebuilding $@ because of $$1 $$2 $$3 $$4 $$5 $$6 $${7:+...};
|
||||
$(LINK) -out:$@ /STACK:$(STACK_SIZE) \
|
||||
-map:$(OBJDIR)/$(PROGRAM).map $(LFLAGS) $(LDFLAGS) \
|
||||
$(MAP_OPTION) $(LFLAGS) $(LDFLAGS) \
|
||||
@$(OBJDIR)/$(PROGRAM).lcf $(LDLIBS)
|
||||
ifdef MT
|
||||
$(MT) /manifest $(OBJDIR)/$(PROGRAM).exe.manifest /outputresource:$@;#1
|
||||
|
@ -144,6 +144,7 @@ JDK_MAN_PAGES = \
|
||||
javadoc.1 \
|
||||
javah.1 \
|
||||
javap.1 \
|
||||
jcmd.1 \
|
||||
jconsole.1 \
|
||||
jdb.1 \
|
||||
jhat.1 \
|
||||
@ -607,10 +608,6 @@ ifndef JAVASE_EMBEDDED
|
||||
$(ECHO) "oracle/jrockit/jfr/parser/" >> $@
|
||||
$(ECHO) "oracle/jrockit/jfr/settings/" >> $@
|
||||
$(ECHO) "oracle/jrockit/jfr/tools/" >> $@
|
||||
$(ECHO) "oracle/jrockit/jfr/util/" >> $@
|
||||
$(ECHO) "oracle/jrockit/jfr/util/log/" >> $@
|
||||
$(ECHO) "oracle/jrockit/jfr/util/os/" >> $@
|
||||
$(ECHO) "oracle/jrockit/jfr/util/text/" >> $@
|
||||
endif
|
||||
endif
|
||||
|
||||
@ -637,7 +634,7 @@ $(TOTAL_JAR_FILELIST): $(JARREORDER_JARFILE) $(NOT_RT_JAR_LIST)
|
||||
$(MV) $@.temp $@
|
||||
@($(CD) $(CLASSBINDIR) && $(java-vm-cleanup))
|
||||
|
||||
# Create the jfr.jar containing Java Flight Recorder implementation
|
||||
# Create jfr.jar
|
||||
JFR_JAR=
|
||||
ifndef OPENJDK
|
||||
ifndef JAVASE_EMBEDDED
|
||||
|
@ -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.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
@ -1037,11 +1037,22 @@ ifeq ($(PLATFORM), windows)
|
||||
" and/or check your value of ALT_HOTSPOT_LIB_PATH. \n" \
|
||||
"" >> $(ERROR_FILE) ; \
|
||||
fi
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
@#
|
||||
@# Check for the .map files - its OK if they are not there..
|
||||
@#
|
||||
ifeq ($(ARCH_DATA_MODEL), 32)
|
||||
ifeq ($(ARCH_DATA_MODEL), 32)
|
||||
@# There is no 64-bit HotSpot client VM
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
@if [ ! -r $(HOTSPOT_CLIENT_PATH)/jvm.diz ]; then \
|
||||
$(ECHO) "WARNING: HOTSPOT_CLIENT_PATH does not point to valid HotSpot .diz files. \n" \
|
||||
" These files are optional and aid in the debugging of the JVM. \n" \
|
||||
" Please check your access to \n" \
|
||||
" $(HOTSPOT_CLIENT_PATH)/jvm.diz \n" \
|
||||
" and/or check your value of ALT_HOTSPOT_CLIENT_PATH. \n" \
|
||||
"" >> $(WARNING_FILE) ; \
|
||||
fi
|
||||
else
|
||||
@if [ ! -r $(HOTSPOT_CLIENT_PATH)/jvm.map ]; then \
|
||||
$(ECHO) "WARNING: HOTSPOT_CLIENT_PATH does not point to valid HotSpot .map files. \n" \
|
||||
" These files are optional and aid in the debugging of the JVM. \n" \
|
||||
@ -1058,7 +1069,18 @@ ifeq ($(PLATFORM), windows)
|
||||
" and/or check your value of ALT_HOTSPOT_CLIENT_PATH. \n" \
|
||||
"" >> $(WARNING_FILE) ; \
|
||||
fi
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
@if [ ! -r $(HOTSPOT_SERVER_PATH)/jvm.diz ]; then \
|
||||
$(ECHO) "WARNING: HOTSPOT_SERVER_PATH does not point to valid HotSpot .diz files. \n" \
|
||||
" These files are optional and aid in the debugging of the JVM. \n" \
|
||||
" Please check your access to \n" \
|
||||
" $(HOTSPOT_SERVER_PATH)/jvm.diz \n" \
|
||||
" and/or check your value of ALT_HOTSPOT_SERVER_PATH. \n" \
|
||||
"" >> $(WARNING_FILE) ; \
|
||||
fi
|
||||
else
|
||||
@if [ ! -r $(HOTSPOT_SERVER_PATH)/jvm.map ]; then \
|
||||
$(ECHO) "WARNING: HOTSPOT_SERVER_PATH does not point to valid HotSpot .map files. \n" \
|
||||
" These files are optional and aid in the debugging of the JVM. \n" \
|
||||
@ -1075,6 +1097,8 @@ ifeq ($(PLATFORM), windows)
|
||||
" and/or check your value of ALT_HOTSPOT_SERVER_PATH. \n" \
|
||||
"" >> $(WARNING_FILE) ; \
|
||||
fi
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
|
@ -57,7 +57,7 @@ LIBPROPS = $(_LIBPROPS:%=$(LIBDIR)/%)
|
||||
|
||||
properties: $(LIBDIR) $(LIBPROPS)
|
||||
|
||||
$(LIBDIR)/%.properties: $(PLATFORM_SRC)/lib/%.properties
|
||||
$(LIBDIR)/%.properties: $(PLATFORM_PROPERTIES)/%.properties
|
||||
$(install-file)
|
||||
|
||||
properties.clean :
|
||||
|
@ -51,6 +51,7 @@ JAVA_JAVA_java = \
|
||||
java/lang/SuppressWarnings.java \
|
||||
java/lang/AbstractStringBuilder.java \
|
||||
java/lang/ClassLoader.java \
|
||||
java/lang/ClassLoaderHelper.java \
|
||||
java/lang/AssertionStatusDirectives.java \
|
||||
java/lang/Enum.java \
|
||||
java/lang/StrictMath.java \
|
||||
|
@ -68,7 +68,7 @@ ifeq ($(PLATFORM), windows)
|
||||
endif
|
||||
|
||||
# Add location of iconv header
|
||||
ifeq ($(PLATFORM), macosx))
|
||||
ifeq ($(PLATFORM), macosx)
|
||||
OTHER_LDLIBS += -liconv
|
||||
endif
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 1997, 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
|
||||
@ -61,9 +61,13 @@ JVMDB_NAME = $(LIB_PREFIX)jvm$(DB_SUFFIX).$(LIBRARY_SUFFIX)
|
||||
JVMDTRACE_NAME = $(LIB_PREFIX)jvm$(DTRACE_SUFFIX).$(LIBRARY_SUFFIX)
|
||||
|
||||
JVM_DEBUGINFO_NAME = $(LIB_PREFIX)jvm.debuginfo
|
||||
JVM_DIZ_NAME = $(LIB_PREFIX)jvm.diz
|
||||
LIBJSIG_DEBUGINFO_NAME = $(LIB_PREFIX)jsig.debuginfo
|
||||
LIBJSIG_DIZ_NAME = $(LIB_PREFIX)jsig.diz
|
||||
JVMDB_DEBUGINFO_NAME = $(LIB_PREFIX)jvm$(DB_SUFFIX).debuginfo
|
||||
JVMDB_DIZ_NAME = $(LIB_PREFIX)jvm$(DB_SUFFIX).diz
|
||||
JVMDTRACE_DEBUGINFO_NAME = $(LIB_PREFIX)jvm$(DTRACE_SUFFIX).debuginfo
|
||||
JVMDTRACE_DIZ_NAME = $(LIB_PREFIX)jvm$(DTRACE_SUFFIX).diz
|
||||
|
||||
CLASSSHARINGDATA_DIR = $(BUILDDIR)/tools/sharing
|
||||
|
||||
@ -86,10 +90,17 @@ INTERNAL_IMPORT_LIST = $(LIBDIR)/classlist
|
||||
ifndef BUILD_CLIENT_ONLY
|
||||
IMPORT_LIST = $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVM_NAME) \
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/Xusage.txt
|
||||
ifneq ($(OBJCOPY),)
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVM_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVM_DEBUGINFO_NAME)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain .diz files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVM_DIZ_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVM_DIZ_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVM_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVM_DEBUGINFO_NAME)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
else
|
||||
@ -101,10 +112,17 @@ ifneq ($(ZERO_BUILD), true)
|
||||
ifeq ($(ARCH_DATA_MODEL), 32)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_NAME) \
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/Xusage.txt
|
||||
ifneq ($(OBJCOPY),)
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVM_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_DEBUGINFO_NAME)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain .diz files
|
||||
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVM_DIZ_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_DIZ_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVM_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_DEBUGINFO_NAME)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
@ -121,20 +139,56 @@ $(BINDIR)/$(MSVCRNN_DLL): $(MSVCRNN_DLL_PATH)/$(MSVCRNN_DLL)
|
||||
|
||||
# Get the hotspot .map and .pdb files for client and server
|
||||
ifndef BUILD_CLIENT_ONLY
|
||||
IMPORT_LIST += \
|
||||
$(LIBDIR)/$(JVMLIB_NAME) \
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMMAP_NAME) \
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMPDB_NAME)
|
||||
IMPORT_LIST += $(LIBDIR)/$(JVMLIB_NAME)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain .diz files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVM_DIZ_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVM_DIZ_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain .pdb files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVMPDB_NAME)),)
|
||||
# assume .map file is present if .pdb file is preset
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMMAP_NAME) \
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMPDB_NAME)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
# Add .map and .pdb files to the import path for client and kernel VMs.
|
||||
# These are only available on 32-bit windows builds.
|
||||
ifeq ($(ARCH_DATA_MODEL), 32)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMMAP_NAME) \
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMPDB_NAME)
|
||||
ifeq ($(DO_KERNEL), true)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(KERNEL_LOCATION)/$(JVMMAP_NAME) \
|
||||
$(LIB_LOCATION)/$(KERNEL_LOCATION)/$(JVMPDB_NAME)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain .diz files
|
||||
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVM_DIZ_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_DIZ_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain .pdb files
|
||||
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVMPDB_NAME)),)
|
||||
# assume .map file is present if .pdb file is preset
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMMAP_NAME) \
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMPDB_NAME)
|
||||
endif
|
||||
endif
|
||||
ifeq ($(DO_KERNEL), true)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain .diz files
|
||||
ifneq ($(wildcard $(HOTSPOT_KERNEL_PATH)/$(JVM_DIZ_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(KERNEL_LOCATION)/$(JVM_DIZ_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain .pdb files
|
||||
ifneq ($(wildcard $(HOTSPOT_KERNEL_PATH)/$(JVMPDB_NAME)),)
|
||||
# assume .map file is present if .pdb file is preset
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(KERNEL_LOCATION)/$(JVMMAP_NAME) \
|
||||
$(LIB_LOCATION)/$(KERNEL_LOCATION)/$(JVMPDB_NAME)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
@ -165,10 +219,22 @@ $(LIB_LOCATION)/$(KERNEL_LOCATION)/$(JVMPDB_NAME):
|
||||
@$(prep-target)
|
||||
-$(CP) $(HOTSPOT_KERNEL_PATH)/$(JVMPDB_NAME) $@
|
||||
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_DIZ_NAME):
|
||||
@$(prep-target)
|
||||
-$(CP) $(HOTSPOT_CLIENT_PATH)/$(JVM_DIZ_NAME) $@
|
||||
|
||||
$(LIB_LOCATION)/$(KERNEL_LOCATION)/$(JVM_DIZ_NAME):
|
||||
@$(prep-target)
|
||||
-$(CP) $(HOTSPOT_KERNEL_PATH)/$(JVM_DIZ_NAME) $@
|
||||
|
||||
ifndef BUILD_CLIENT_ONLY
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMPDB_NAME):
|
||||
@$(prep-target)
|
||||
-$(CP) $(HOTSPOT_SERVER_PATH)/$(JVMPDB_NAME) $@
|
||||
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVM_DIZ_NAME):
|
||||
@$(prep-target)
|
||||
-$(CP) $(HOTSPOT_SERVER_PATH)/$(JVM_DIZ_NAME) $@
|
||||
endif
|
||||
|
||||
# Windows ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Windows
|
||||
@ -176,18 +242,33 @@ else # PLATFORM
|
||||
# NOT Windows vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv NOT Windows
|
||||
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(LIBJSIG_NAME)
|
||||
ifneq ($(OBJCOPY),)
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain .diz files
|
||||
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DIZ_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(LIBJSIG_DIZ_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifndef BUILD_CLIENT_ONLY
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(LIBJSIG_NAME)
|
||||
ifneq ($(OBJCOPY),)
|
||||
# the import JDK may not contain the target of the symlink
|
||||
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain the target of the symlink
|
||||
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DIZ_NAME)),)
|
||||
# check for the .diz file, but create the .debuginfo link
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain the target of the symlink
|
||||
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
@ -195,19 +276,33 @@ endif
|
||||
ifeq ($(PLATFORM), solaris)
|
||||
ifndef BUILD_CLIENT_ONLY
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDB_NAME)
|
||||
ifneq ($(OBJCOPY),)
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVMDB_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDB_DEBUGINFO_NAME)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain .diz files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVMDB_DIZ_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDB_DIZ_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVMDB_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDB_DEBUGINFO_NAME)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
# The conditional can be removed when import JDKs contain these files.
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVMDTRACE_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDTRACE_NAME)
|
||||
ifneq ($(OBJCOPY),)
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVMDTRACE_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDTRACE_DEBUGINFO_NAME)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain .diz files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVMDTRACE_DIZ_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDTRACE_DIZ_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVMDTRACE_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDTRACE_DEBUGINFO_NAME)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
else
|
||||
@ -220,10 +315,18 @@ ifneq ($(ZERO_BUILD), true)
|
||||
ifeq ($(ARCH_DATA_MODEL), 32)
|
||||
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(LIBJSIG_NAME)
|
||||
ifneq ($(OBJCOPY),)
|
||||
# the import JDK may not contain the target of the symlink
|
||||
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain the target of the symlink
|
||||
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DIZ_NAME)),)
|
||||
# check for the .diz file, but create the .debuginfo link
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain the target of the symlink
|
||||
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
@ -231,10 +334,17 @@ ifeq ($(PLATFORM), solaris)
|
||||
# solaris vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv solaris
|
||||
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDB_NAME)
|
||||
ifneq ($(OBJCOPY),)
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVMDB_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDB_DEBUGINFO_NAME)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain .diz files
|
||||
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVMDB_DIZ_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDB_DIZ_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVMDB_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDB_DEBUGINFO_NAME)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
@ -243,13 +353,22 @@ ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVMDTRACE_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDTRACE_NAME)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDB_NAME)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDTRACE_NAME)
|
||||
ifneq ($(OBJCOPY),)
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVMDTRACE_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDTRACE_DEBUGINFO_NAME)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDB_DEBUGINFO_NAME)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDTRACE_DEBUGINFO_NAME)
|
||||
endif
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain .diz files
|
||||
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVMDTRACE_DIZ_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDTRACE_DIZ_NAME)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDB_DIZ_NAME)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDTRACE_DIZ_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVMDTRACE_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDTRACE_DEBUGINFO_NAME)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDB_DEBUGINFO_NAME)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDTRACE_DEBUGINFO_NAME)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
else
|
||||
$(warning WARNING: $(HOTSPOT_CLIENT_PATH)/$(JVMDTRACE_NAME) not found!)
|
||||
@ -259,10 +378,17 @@ ifndef BUILD_CLIENT_ONLY
|
||||
# The conditional can be removed when import JDKs contain these files.
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/64/$(JVMDB_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDB_NAME)
|
||||
ifneq ($(OBJCOPY),)
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/64/$(JVMDB_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDB_DEBUGINFO_NAME)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain .diz files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/64/$(JVMDB_DIZ_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDB_DIZ_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/64/$(JVMDB_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDB_DEBUGINFO_NAME)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
else
|
||||
@ -272,10 +398,17 @@ ifndef BUILD_CLIENT_ONLY
|
||||
# The conditional can be removed when import JDKs contain these files.
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/64/$(JVMDTRACE_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDTRACE_NAME)
|
||||
ifneq ($(OBJCOPY),)
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/64/$(JVMDTRACE_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDTRACE_DEBUGINFO_NAME)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain .diz files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/64/$(JVMDTRACE_DIZ_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDTRACE_DIZ_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/64/$(JVMDTRACE_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDTRACE_DEBUGINFO_NAME)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
else
|
||||
@ -304,9 +437,14 @@ $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVM_NAM
|
||||
$(install-import-file)
|
||||
@$(call binary_file_verification,$@)
|
||||
|
||||
ifneq ($(OBJCOPY),)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_DIZ_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVM_DIZ_NAME)
|
||||
$(install-import-file)
|
||||
else
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_DEBUGINFO_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVM_DEBUGINFO_NAME)
|
||||
$(install-import-file)
|
||||
endif
|
||||
endif
|
||||
|
||||
$(LIB_LOCATION)/$(KERNEL_LOCATION)/$(JVM_NAME): $(HOTSPOT_KERNEL_PATH)/$(JVM_NAME)
|
||||
@ -317,9 +455,14 @@ $(LIB_LOCATION)/$(LIBJSIG_NAME): $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJ
|
||||
$(install-import-file)
|
||||
@$(call binary_file_verification,$@)
|
||||
|
||||
ifneq ($(OBJCOPY),)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
$(LIB_LOCATION)/$(LIBJSIG_DIZ_NAME): $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DIZ_NAME)
|
||||
$(install-import-file)
|
||||
else
|
||||
$(LIB_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME): $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DEBUGINFO_NAME)
|
||||
$(install-import-file)
|
||||
endif
|
||||
endif
|
||||
|
||||
ifndef BUILD_CLIENT_ONLY
|
||||
@ -328,22 +471,24 @@ $(LIB_LOCATION)/$(SERVER_LOCATION)/$(LIBJSIG_NAME):
|
||||
@$(prep-target)
|
||||
$(call install-sym-link, ../$(LIBJSIG_NAME))
|
||||
|
||||
ifneq ($(OBJCOPY),)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
# we don't create a symlink to a libjsig.diz file
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME) \
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME):
|
||||
@$(prep-target)
|
||||
$(call install-sym-link, ../$(LIBJSIG_DEBUGINFO_NAME))
|
||||
endif
|
||||
endif
|
||||
else
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(LIBJSIG_NAME):
|
||||
@$(prep-target)
|
||||
$(call install-sym-link, ../$(LIBJSIG_NAME))
|
||||
|
||||
ifneq ($(OBJCOPY),)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
# we don't create a symlink to a libjsig.diz file
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME):
|
||||
@$(prep-target)
|
||||
$(call install-sym-link, ../$(LIBJSIG_DEBUGINFO_NAME))
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDB_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVMDB_NAME)
|
||||
@ -354,12 +499,20 @@ $(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDB_NAME): $(HOTSPOT_CLIENT_PATH)/64/$
|
||||
$(install-import-file)
|
||||
@$(call binary_file_verification,$@)
|
||||
|
||||
ifneq ($(OBJCOPY),)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDB_DIZ_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVMDB_DIZ_NAME)
|
||||
$(install-import-file)
|
||||
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDB_DIZ_NAME): $(HOTSPOT_CLIENT_PATH)/64/$(JVMDB_DIZ_NAME)
|
||||
$(install-import-file)
|
||||
else
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDB_DEBUGINFO_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVMDB_DEBUGINFO_NAME)
|
||||
$(install-import-file)
|
||||
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDB_DEBUGINFO_NAME): $(HOTSPOT_CLIENT_PATH)/64/$(JVMDB_DEBUGINFO_NAME)
|
||||
$(install-import-file)
|
||||
endif
|
||||
endif
|
||||
|
||||
ifndef BUILD_CLIENT_ONLY
|
||||
@ -371,13 +524,21 @@ $(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDB_NAME): $(HOTSPOT_SERVER_PATH)/64/$
|
||||
$(install-import-file)
|
||||
@$(call binary_file_verification,$@)
|
||||
|
||||
ifneq ($(OBJCOPY),)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDB_DIZ_NAME): $(HOTSPOT_SERVER_PATH)/$(JVMDB_DIZ_NAME)
|
||||
$(install-import-file)
|
||||
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDB_DIZ_NAME): $(HOTSPOT_SERVER_PATH)/64/$(JVMDB_DIZ_NAME)
|
||||
$(install-import-file)
|
||||
else
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDB_DEBUGINFO_NAME): $(HOTSPOT_SERVER_PATH)/$(JVMDB_DEBUGINFO_NAME)
|
||||
$(install-import-file)
|
||||
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDB_DEBUGINFO_NAME): $(HOTSPOT_SERVER_PATH)/64/$(JVMDB_DEBUGINFO_NAME)
|
||||
$(install-import-file)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDTRACE_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVMDTRACE_NAME)
|
||||
@ -388,12 +549,20 @@ $(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDTRACE_NAME): $(HOTSPOT_CLIENT_PATH)/
|
||||
$(install-import-file)
|
||||
@$(call binary_file_verification,$@)
|
||||
|
||||
ifneq ($(OBJCOPY),)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDTRACE_DIZ_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVMDTRACE_DIZ_NAME)
|
||||
$(install-import-file)
|
||||
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDTRACE_DIZ_NAME): $(HOTSPOT_CLIENT_PATH)/64/$(JVMDTRACE_DIZ_NAME)
|
||||
$(install-import-file)
|
||||
else
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDTRACE_DEBUGINFO_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVMDTRACE_DEBUGINFO_NAME)
|
||||
$(install-import-file)
|
||||
|
||||
$(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDTRACE_DEBUGINFO_NAME): $(HOTSPOT_CLIENT_PATH)/64/$(JVMDTRACE_DEBUGINFO_NAME)
|
||||
$(install-import-file)
|
||||
endif
|
||||
endif
|
||||
|
||||
ifndef BUILD_CLIENT_ONLY
|
||||
@ -409,7 +578,17 @@ $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVM_NAME): $(HOTSPOT_SERVER_PATH)/$(JVM_NAM
|
||||
$(install-import-file)
|
||||
@$(call binary_file_verification,$@)
|
||||
|
||||
ifneq ($(OBJCOPY),)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDTRACE_DIZ_NAME): $(HOTSPOT_SERVER_PATH)/$(JVMDTRACE_DIZ_NAME)
|
||||
$(install-import-file)
|
||||
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDTRACE_DIZ_NAME): $(HOTSPOT_SERVER_PATH)/64/$(JVMDTRACE_DIZ_NAME)
|
||||
$(install-import-file)
|
||||
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVM_DIZ_NAME): $(HOTSPOT_SERVER_PATH)/$(JVM_DIZ_NAME)
|
||||
$(install-import-file)
|
||||
else
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDTRACE_DEBUGINFO_NAME): $(HOTSPOT_SERVER_PATH)/$(JVMDTRACE_DEBUGINFO_NAME)
|
||||
$(install-import-file)
|
||||
|
||||
@ -418,6 +597,7 @@ $(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDTRACE_DEBUGINFO_NAME): $(HOTSPOT_SER
|
||||
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVM_DEBUGINFO_NAME): $(HOTSPOT_SERVER_PATH)/$(JVM_DEBUGINFO_NAME)
|
||||
$(install-import-file)
|
||||
endif
|
||||
endif
|
||||
|
||||
$(LIB_LOCATION)/$(SERVER_LOCATION)/Xusage.txt : $(HOTSPOT_SERVER_PATH)/Xusage.txt
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 1997, 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
|
||||
@ -54,14 +54,26 @@ IMPORT_LIST =
|
||||
ifeq ($(INCLUDE_SA), true)
|
||||
IMPORT_LIST += $(LIBDIR)/sa-jdi.jar \
|
||||
$(LIB_LOCATION)/$(SALIB_NAME)
|
||||
ifeq ($(PLATFORM), windows)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SAMAP_NAME) \
|
||||
$(LIB_LOCATION)/$(SAPDB_NAME)
|
||||
endif
|
||||
ifneq ($(OBJCOPY),)
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(SA_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SA_DEBUGINFO_NAME)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
# the import JDK may not contain .diz files
|
||||
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(SA_DIZ_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SA_DIZ_NAME)
|
||||
endif
|
||||
else
|
||||
ifeq ($(PLATFORM), windows)
|
||||
# the import JDK may not contain .pdb files
|
||||
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(SAPDB_NAME)),)
|
||||
# assume .map file is present if .pdb is present
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SAMAP_NAME) \
|
||||
$(LIB_LOCATION)/$(SAPDB_NAME)
|
||||
endif
|
||||
else
|
||||
# the import JDK may not contain .debuginfo files
|
||||
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(SA_DEBUGINFO_NAME)),)
|
||||
IMPORT_LIST += $(LIB_LOCATION)/$(SA_DEBUGINFO_NAME)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif # INCLUDE_SA
|
||||
@ -80,17 +92,22 @@ $(LIBDIR)/sa-jdi.jar: $(HOTSPOT_IMPORT_PATH)/lib/sa-jdi.jar
|
||||
$(LIB_LOCATION)/$(SALIB_NAME): $(HOTSPOT_SALIB_PATH)/$(SALIB_NAME)
|
||||
$(install-import-file)
|
||||
|
||||
ifeq ($(PLATFORM), windows)
|
||||
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
||||
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
||||
$(LIB_LOCATION)/$(SA_DIZ_NAME): $(HOTSPOT_SALIB_PATH)/$(SA_DIZ_NAME)
|
||||
$(install-import-file)
|
||||
else
|
||||
ifeq ($(PLATFORM), windows)
|
||||
$(LIB_LOCATION)/$(SAPDB_NAME): $(HOTSPOT_SALIB_PATH)/$(SAPDB_NAME)
|
||||
$(install-import-file)
|
||||
|
||||
$(LIB_LOCATION)/$(SAMAP_NAME): $(HOTSPOT_SALIB_PATH)/$(SAMAP_NAME)
|
||||
$(install-import-file)
|
||||
endif # windows
|
||||
|
||||
ifneq ($(OBJCOPY),)
|
||||
else
|
||||
$(LIB_LOCATION)/$(SA_DEBUGINFO_NAME): $(HOTSPOT_SALIB_PATH)/$(SA_DEBUGINFO_NAME)
|
||||
$(install-import-file)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif # INCLUDE_SA
|
||||
|
||||
|
@ -40,7 +40,7 @@ ifeq ($(PLATFORM), linux)
|
||||
OTHER_LDLIBS += $(LIBNSL) $(LIBSOCKET) -lpthread
|
||||
endif
|
||||
|
||||
ifeq ($(PLATFORM), macosx))
|
||||
ifeq ($(PLATFORM), macosx)
|
||||
LIBSOCKET =
|
||||
OTHER_LDLIBS += -pthread
|
||||
endif
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (c) 2006, 2010, 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.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
@ -27,17 +27,24 @@
|
||||
|
||||
JPRT_ARCHIVE_BUNDLE=$(ABS_OUTPUTDIR)/$(JPRT_BUILD_FLAVOR)-bundle.zip
|
||||
|
||||
ifeq ($(PLATFORM),windows)
|
||||
ZIPFLAGS=-q
|
||||
else
|
||||
# store symbolic links as the link
|
||||
ZIPFLAGS=-q -y
|
||||
endif
|
||||
|
||||
jprt_build_product: all images
|
||||
( $(CD) $(OUTPUTDIR)/j2sdk-image && \
|
||||
$(ZIPEXE) -q -r $(JPRT_ARCHIVE_BUNDLE) . )
|
||||
$(ZIPEXE) $(ZIPFLAGS) -r $(JPRT_ARCHIVE_BUNDLE) . )
|
||||
|
||||
jprt_build_fastdebug: fastdebug images
|
||||
( $(CD) $(OUTPUTDIR)/j2sdk-image && \
|
||||
$(ZIPEXE) -q -r $(JPRT_ARCHIVE_BUNDLE) . )
|
||||
$(ZIPEXE) $(ZIPFLAGS) -r $(JPRT_ARCHIVE_BUNDLE) . )
|
||||
|
||||
jprt_build_debug: debug images
|
||||
( $(CD) $(OUTPUTDIR)/j2sdk-image && \
|
||||
$(ZIPEXE) -q -r $(JPRT_ARCHIVE_BUNDLE) . )
|
||||
$(ZIPEXE) $(ZIPFLAGS) -r $(JPRT_ARCHIVE_BUNDLE) . )
|
||||
|
||||
#
|
||||
# Phonies to avoid accidents.
|
||||
|
@ -155,8 +155,10 @@ endif
|
||||
# GUI tools
|
||||
ifeq ($(GUI_TOOL),true)
|
||||
ifneq ($(PLATFORM), windows)
|
||||
# Anything with a GUI needs X11 to be linked in.
|
||||
OTHER_LDLIBS += -L$(OPENWIN_LIB) -lX11
|
||||
ifneq ($(PLATFORM), macosx)
|
||||
# Anything with a GUI needs X11 to be linked in.
|
||||
OTHER_LDLIBS += -L$(OPENWIN_LIB) -lX11
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
|
@ -208,7 +208,7 @@ ifeq ($(PLATFORM), linux)
|
||||
$(wildcard /usr/include/X11/extensions))
|
||||
endif
|
||||
|
||||
ifeq ($(PLATFORM), macosx))
|
||||
ifeq ($(PLATFORM), macosx)
|
||||
CPPFLAGS += -I$(OPENWIN_HOME)/include/X11/extensions \
|
||||
-I$(OPENWIN_HOME)/include
|
||||
endif
|
||||
|
@ -172,7 +172,7 @@ else # PLATFORM
|
||||
# Libraries to link, and other C flags.
|
||||
#
|
||||
|
||||
ifeq ($(PLATFORM), macosx))
|
||||
ifeq ($(PLATFORM), macosx)
|
||||
OTHER_INCLUDES += -I$(X11_PATH)/include
|
||||
OTHER_LDLIBS += -lawt $(LIBM) $(LIBCXX)
|
||||
ifeq ($(OS_VENDOR),Apple)
|
||||
@ -197,7 +197,7 @@ endif # PLATFORM
|
||||
|
||||
# set up compile flags..
|
||||
|
||||
ifeq ($(PLATFORM), macosx))
|
||||
ifeq ($(PLATFORM), macosx)
|
||||
CPPFLAGS += -I$(CLASSHDRDIR)
|
||||
endif
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
||||
# or visit www.oracle.com if you need additional information or have any
|
||||
# questions.
|
||||
#
|
||||
tzdata2011l
|
||||
tzdata2012c
|
||||
|
@ -790,6 +790,37 @@ Zone Indian/Mayotte 3:00:56 - LMT 1911 Jul # Mamoutzou
|
||||
# wall clock time (i.e. 11pm UTC), but that's what I would assume. It has
|
||||
# also been like that in the past.
|
||||
|
||||
# From Alexander Krivenyshev (2012-03-09):
|
||||
# According to Infomédiaire web site from Morocco (infomediaire.ma),
|
||||
# on March 9, 2012, (in French) Heure légale:
|
||||
# Le Maroc adopte officiellement l'heure d'été
|
||||
# <a href="http://www.infomediaire.ma/news/maroc/heure-l%C3%A9gale-le-maroc-adopte-officiellement-lheure-d%C3%A9t%C3%A9">
|
||||
# http://www.infomediaire.ma/news/maroc/heure-l%C3%A9gale-le-maroc-adopte-officiellement-lheure-d%C3%A9t%C3%A9
|
||||
# </a>
|
||||
# Governing Council adopted draft decree, that Morocco DST starts on
|
||||
# the last Sunday of March (March 25, 2012) and ends on
|
||||
# last Sunday of September (September 30, 2012)
|
||||
# except the month of Ramadan.
|
||||
# or (brief)
|
||||
# <a href="http://www.worldtimezone.com/dst_news/dst_news_morocco06.html">
|
||||
# http://www.worldtimezone.com/dst_news/dst_news_morocco06.html
|
||||
# </a>
|
||||
|
||||
# From Arthur David Olson (2012-03-10):
|
||||
# The infomediaire.ma source indicates that the system is to be in
|
||||
# effect every year. It gives 03H00 as the "fall back" time of day;
|
||||
# it lacks a "spring forward" time of day; assume 2:00 XXX.
|
||||
# Wait on specifying the Ramadan exception for details about
|
||||
# start date, start time of day, end date, and end time of day XXX.
|
||||
|
||||
# From Christophe Tropamer (2012-03-16):
|
||||
# Seen Morocco change again:
|
||||
# <a href="http://www.le2uminutes.com/actualite.php">
|
||||
# http://www.le2uminutes.com/actualite.php
|
||||
# </a>
|
||||
# "...à partir du dernier dimance d'avril et non fins mars,
|
||||
# comme annoncé précédemment."
|
||||
|
||||
# RULE NAME FROM TO TYPE IN ON AT SAVE LETTER/S
|
||||
|
||||
Rule Morocco 1939 only - Sep 12 0:00 1:00 S
|
||||
@ -815,6 +846,9 @@ Rule Morocco 2010 only - May 2 0:00 1:00 S
|
||||
Rule Morocco 2010 only - Aug 8 0:00 0 -
|
||||
Rule Morocco 2011 only - Apr 3 0:00 1:00 S
|
||||
Rule Morocco 2011 only - Jul 31 0 0 -
|
||||
Rule Morocco 2012 max - Apr lastSun 2:00 1:00 S
|
||||
Rule Morocco 2012 max - Sep lastSun 3:00 0 -
|
||||
|
||||
# Zone NAME GMTOFF RULES FORMAT [UNTIL]
|
||||
Zone Africa/Casablanca -0:30:20 - LMT 1913 Oct 26
|
||||
0:00 Morocco WE%sT 1984 Mar 16
|
||||
|
@ -64,8 +64,19 @@ Rule ChileAQ 1997 only - Mar 30 3:00u 0 -
|
||||
Rule ChileAQ 1998 only - Mar Sun>=9 3:00u 0 -
|
||||
Rule ChileAQ 1998 only - Sep 27 4:00u 1:00 S
|
||||
Rule ChileAQ 1999 only - Apr 4 3:00u 0 -
|
||||
Rule ChileAQ 1999 max - Oct Sun>=9 4:00u 1:00 S
|
||||
Rule ChileAQ 2000 max - Mar Sun>=9 3:00u 0 -
|
||||
Rule ChileAQ 1999 2010 - Oct Sun>=9 4:00u 1:00 S
|
||||
Rule ChileAQ 2000 2007 - Mar Sun>=9 3:00u 0 -
|
||||
# N.B.: the end of March 29 in Chile is March 30 in Universal time,
|
||||
# which is used below in specifying the transition.
|
||||
Rule ChileAQ 2008 only - Mar 30 3:00u 0 -
|
||||
Rule ChileAQ 2009 only - Mar Sun>=9 3:00u 0 -
|
||||
Rule ChileAQ 2010 only - Apr Sun>=1 3:00u 0 -
|
||||
Rule ChileAQ 2011 only - May Sun>=2 3:00u 0 -
|
||||
Rule ChileAQ 2011 only - Aug Sun>=16 4:00u 1:00 S
|
||||
Rule ChileAQ 2012 only - Apr Sun>=23 3:00u 0 -
|
||||
Rule ChileAQ 2012 only - Sep Sun>=2 4:00u 1:00 S
|
||||
Rule ChileAQ 2013 max - Mar Sun>=9 3:00u 0 -
|
||||
Rule ChileAQ 2013 max - Oct Sun>=9 4:00u 1:00 S
|
||||
|
||||
# These rules are stolen from the `australasia' file.
|
||||
Rule AusAQ 1917 only - Jan 1 0:01 1:00 -
|
||||
@ -164,12 +175,16 @@ Zone Antarctica/Casey 0 - zzz 1969
|
||||
# Western (Aus) Standard Time
|
||||
11:00 - CAST 2010 Mar 5 2:00
|
||||
# Casey Time
|
||||
8:00 - WST 2011 Oct 28 2:00
|
||||
11:00 - CAST 2012 Feb 21 17:00u
|
||||
8:00 - WST
|
||||
Zone Antarctica/Davis 0 - zzz 1957 Jan 13
|
||||
7:00 - DAVT 1964 Nov # Davis Time
|
||||
0 - zzz 1969 Feb
|
||||
7:00 - DAVT 2009 Oct 18 2:00
|
||||
5:00 - DAVT 2010 Mar 10 20:00u
|
||||
7:00 - DAVT 2011 Oct 28 2:00
|
||||
5:00 - DAVT 2012 Feb 21 20:00u
|
||||
7:00 - DAVT
|
||||
Zone Antarctica/Mawson 0 - zzz 1954 Feb 13
|
||||
6:00 - MAWT 2009 Oct 18 2:00
|
||||
|
@ -21,6 +21,7 @@
|
||||
# or visit www.oracle.com if you need additional information or have any
|
||||
# questions.
|
||||
#
|
||||
# <pre>
|
||||
# This file is in the public domain, so clarified as of
|
||||
# 2009-05-17 by Arthur David Olson.
|
||||
|
||||
@ -99,10 +100,6 @@ Rule RussiaAsia 1993 max - Mar lastSun 2:00s 1:00 S
|
||||
Rule RussiaAsia 1993 1995 - Sep lastSun 2:00s 0 -
|
||||
Rule RussiaAsia 1996 max - Oct lastSun 2:00s 0 -
|
||||
|
||||
# From Arthur David Olson (2011-06-15):
|
||||
# While Russia abandoned DST in 2011, Armenia may choose to
|
||||
# follow Russia's "old" rules.
|
||||
|
||||
# Afghanistan
|
||||
# Zone NAME GMTOFF RULES FORMAT [UNTIL]
|
||||
Zone Asia/Kabul 4:36:48 - LMT 1890
|
||||
@ -119,6 +116,21 @@ Zone Asia/Kabul 4:36:48 - LMT 1890
|
||||
# in 1996, though it did use DST in 1995. IATA SSIM (1991/1998) reports that
|
||||
# Armenia switched from 3:00 to 4:00 in 1998 and observed DST after 1991,
|
||||
# but started switching at 3:00s in 1998.
|
||||
|
||||
# From Arthur David Olson (2011-06-15):
|
||||
# While Russia abandoned DST in 2011, Armenia may choose to
|
||||
# follow Russia's "old" rules.
|
||||
|
||||
# From Alexander Krivenyshev (2012-02-10):
|
||||
# According to News Armenia, on Feb 9, 2012,
|
||||
# http://newsarmenia.ru/society/20120209/42609695.html
|
||||
#
|
||||
# The Armenia National Assembly adopted final reading of Amendments to the
|
||||
# Law "On procedure of calculation time on the territory of the Republic of
|
||||
# Armenia" according to which Armenia [is] abolishing Daylight Saving Time.
|
||||
# or
|
||||
# (brief)
|
||||
# http://www.worldtimezone.com/dst_news/dst_news_armenia03.html
|
||||
# Zone NAME GMTOFF RULES FORMAT [UNTIL]
|
||||
Zone Asia/Yerevan 2:58:00 - LMT 1924 May 2
|
||||
3:00 - YERT 1957 Mar # Yerevan Time
|
||||
@ -126,7 +138,8 @@ Zone Asia/Yerevan 2:58:00 - LMT 1924 May 2
|
||||
3:00 1:00 YERST 1991 Sep 23 # independence
|
||||
3:00 RussiaAsia AM%sT 1995 Sep 24 2:00s
|
||||
4:00 - AMT 1997
|
||||
4:00 RussiaAsia AM%sT
|
||||
4:00 RussiaAsia AM%sT 2012 Mar 25 2:00s
|
||||
4:00 - AMT
|
||||
|
||||
# Azerbaijan
|
||||
# From Rustam Aliyev of the Azerbaijan Internet Forum (2005-10-23):
|
||||
@ -2257,6 +2270,29 @@ Zone Asia/Karachi 4:28:12 - LMT 1907
|
||||
# http://www.maannews.net/eng/ViewDetails.aspx?ID=424808
|
||||
# </a>
|
||||
|
||||
# From Steffen Thorsen (2012-03-26):
|
||||
# Palestinian news sources tell that both Gaza and West Bank will start DST
|
||||
# on Friday (Thursday midnight, 2012-03-29 24:00).
|
||||
# Some of many sources in Arabic:
|
||||
# <a href="http://www.samanews.com/index.php?act=Show&id=122638">
|
||||
# http://www.samanews.com/index.php?act=Show&id=122638
|
||||
# </a>
|
||||
#
|
||||
# <a href="http://safa.ps/details/news/74352/%D8%A8%D8%AF%D8%A1-%D8%A7%D9%84%D8%AA%D9%88%D9%82%D9%8A%D8%AA-%D8%A7%D9%84%D8%B5%D9%8A%D9%81%D9%8A-%D8%A8%D8%A7%D9%84%D8%B6%D9%81%D8%A9-%D9%88%D8%BA%D8%B2%D8%A9-%D9%84%D9%8A%D9%84%D8%A9-%D8%A7%D9%84%D8%AC%D9%85%D8%B9%D8%A9.html">
|
||||
# http://safa.ps/details/news/74352/%D8%A8%D8%AF%D8%A1-%D8%A7%D9%84%D8%AA%D9%88%D9%82%D9%8A%D8%AA-%D8%A7%D9%84%D8%B5%D9%8A%D9%81%D9%8A-%D8%A8%D8%A7%D9%84%D8%B6%D9%81%D8%A9-%D9%88%D8%BA%D8%B2%D8%A9-%D9%84%D9%8A%D9%84%D8%A9-%D8%A7%D9%84%D8%AC%D9%85%D8%B9%D8%A9.html
|
||||
# </a>
|
||||
#
|
||||
# Our brief summary:
|
||||
# <a href="http://www.timeanddate.com/news/time/gaza-west-bank-dst-2012.html">
|
||||
# http://www.timeanddate.com/news/time/gaza-west-bank-dst-2012.html
|
||||
# </a>
|
||||
|
||||
# From Arthur David Olson (2012-03-27):
|
||||
# The timeanddate article for 2012 says that "the end date has not yet been
|
||||
# announced" and that "Last year, both...paused daylight saving time during...
|
||||
# Ramadan. It is not yet known [for] 2012."
|
||||
# For now, assume both switch back on the last Friday in September. XXX
|
||||
|
||||
# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
|
||||
Rule EgyptAsia 1957 only - May 10 0:00 1:00 S
|
||||
Rule EgyptAsia 1957 1958 - Oct 1 0:00 0 -
|
||||
@ -2289,6 +2325,8 @@ Zone Asia/Gaza 2:17:52 - LMT 1900 Oct
|
||||
2:00 Jordan EE%sT 1999
|
||||
2:00 Palestine EE%sT 2011 Apr 2 12:01
|
||||
2:00 1:00 EEST 2011 Aug 1
|
||||
2:00 - EET 2012 Mar 30
|
||||
2:00 1:00 EEST 2012 Sep 28
|
||||
2:00 - EET
|
||||
|
||||
Zone Asia/Hebron 2:20:23 - LMT 1900 Oct
|
||||
@ -2302,6 +2340,8 @@ Zone Asia/Hebron 2:20:23 - LMT 1900 Oct
|
||||
2:00 1:00 EEST 2011 Aug 1
|
||||
2:00 - EET 2011 Aug 30
|
||||
2:00 1:00 EEST 2011 Sep 30 3:00
|
||||
2:00 - EET 2012 Mar 30
|
||||
2:00 1:00 EEST 2012 Sep 28 3:00
|
||||
2:00 - EET
|
||||
|
||||
# Paracel Is
|
||||
@ -2593,10 +2633,28 @@ Rule Syria 2007 only - Nov Fri>=1 0:00 0 -
|
||||
# http://sns.sy/sns/?path=news/read/11421 (Arabic)
|
||||
# </a>
|
||||
|
||||
# From Steffen Thorsen (2012-03-26):
|
||||
# Today, Syria's government announced that they will start DST early on Friday
|
||||
# (00:00). This is a bit earlier than the past two years.
|
||||
#
|
||||
# From Syrian Arab News Agency, in Arabic:
|
||||
# <a href="http://www.sana.sy/ara/2/2012/03/26/408215.htm">
|
||||
# http://www.sana.sy/ara/2/2012/03/26/408215.htm
|
||||
# </a>
|
||||
#
|
||||
# Our brief summary:
|
||||
# <a href="http://www.timeanddate.com/news/time/syria-dst-2012.html">
|
||||
# http://www.timeanddate.com/news/time/syria-dst-2012.html
|
||||
# </a>
|
||||
|
||||
# From Arthur David Olson (2012-03-27):
|
||||
# Assume last Friday in March going forward XXX.
|
||||
|
||||
Rule Syria 2008 only - Apr Fri>=1 0:00 1:00 S
|
||||
Rule Syria 2008 only - Nov 1 0:00 0 -
|
||||
Rule Syria 2009 only - Mar lastFri 0:00 1:00 S
|
||||
Rule Syria 2010 max - Apr Fri>=1 0:00 1:00 S
|
||||
Rule Syria 2010 2011 - Apr Fri>=1 0:00 1:00 S
|
||||
Rule Syria 2012 max - Mar lastFri 0:00 1:00 S
|
||||
Rule Syria 2009 max - Oct lastFri 0:00 0 -
|
||||
|
||||
# Zone NAME GMTOFF RULES FORMAT [UNTIL]
|
||||
|
@ -330,6 +330,20 @@ Zone Indian/Cocos 6:27:40 - LMT 1900
|
||||
# advance at 2am to 3am on October 23, 2011 and one hour back at 3am to
|
||||
# 2am on February 26 next year.
|
||||
|
||||
# From Ken Rylander (2011-10-24)
|
||||
# Another change to the Fiji DST end date. In the TZ database the end date for
|
||||
# Fiji DST 2012, is currently Feb 26. This has been changed to Jan 22.
|
||||
#
|
||||
# <a href="http://www.fiji.gov.fj/index.php?option=com_content&view=article&id=5017:amendments-to-daylight-savings&catid=71:press-releases&Itemid=155">
|
||||
# http://www.fiji.gov.fj/index.php?option=com_content&view=article&id=5017:amendments-to-daylight-savings&catid=71:press-releases&Itemid=155
|
||||
# </a>
|
||||
# states:
|
||||
#
|
||||
# The end of daylight saving scheduled initially for the 26th of February 2012
|
||||
# has been brought forward to the 22nd of January 2012.
|
||||
# The commencement of daylight saving will remain unchanged and start
|
||||
# on the 23rd of October, 2011.
|
||||
|
||||
# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
|
||||
Rule Fiji 1998 1999 - Nov Sun>=1 2:00 1:00 S
|
||||
Rule Fiji 1999 2000 - Feb lastSun 3:00 0 -
|
||||
@ -338,7 +352,7 @@ Rule Fiji 2010 only - Mar lastSun 3:00 0 -
|
||||
Rule Fiji 2010 only - Oct 24 2:00 1:00 S
|
||||
Rule Fiji 2011 only - Mar Sun>=1 3:00 0 -
|
||||
Rule Fiji 2011 only - Oct 23 2:00 1:00 S
|
||||
Rule Fiji 2012 only - Feb 26 3:00 0 -
|
||||
Rule Fiji 2012 only - Jan 22 3:00 0 -
|
||||
# Zone NAME GMTOFF RULES FORMAT [UNTIL]
|
||||
Zone Pacific/Fiji 11:53:40 - LMT 1915 Oct 26 # Suva
|
||||
12:00 Fiji FJ%sT # Fiji Time
|
||||
@ -624,6 +638,11 @@ Zone Pacific/Pago_Pago 12:37:12 - LMT 1879 Jul 5
|
||||
# Dateline Change skip Friday 30th Dec 2011
|
||||
# Thursday 29th December 2011 23:59:59 Hours
|
||||
# Saturday 31st December 2011 00:00:00 Hours
|
||||
#
|
||||
# Clarification by Tim Parenti (2012-01-03):
|
||||
# Although Samoa has used Daylight Saving Time in the 2010-2011 and 2011-2012
|
||||
# seasons, there is not yet any indication that this trend will continue on
|
||||
# a regular basis. For now, we have explicitly listed the transitions below.
|
||||
Zone Pacific/Apia 12:33:04 - LMT 1879 Jul 5
|
||||
-11:26:56 - LMT 1911
|
||||
-11:30 - SAMT 1950 # Samoa Time
|
||||
@ -641,9 +660,28 @@ Zone Pacific/Guadalcanal 10:39:48 - LMT 1912 Oct # Honiara
|
||||
11:00 - SBT # Solomon Is Time
|
||||
|
||||
# Tokelau Is
|
||||
#
|
||||
# From Gwillim Law (2011-12-29)
|
||||
# A correspondent informed me that Tokelau, like Samoa, will be skipping
|
||||
# December 31 this year, thereby changing its time zone from UTC-10 to
|
||||
# UTC+14. When I tried to verify this statement, I found a confirming
|
||||
# article in Time magazine online
|
||||
# <a href="http://www.time.com/time/world/article/0,8599,2103243,00.html">
|
||||
# (http://www.time.com/time/world/article/0,8599,2103243,00.html).
|
||||
# </a>
|
||||
#
|
||||
# From Jonathan Leffler (2011-12-29)
|
||||
# Information from the BBC to the same effect:
|
||||
# <a href="http://www.bbc.co.uk/news/world-asia-16351377">
|
||||
# http://www.bbc.co.uk/news/world-asia-16351377
|
||||
# </a>
|
||||
#
|
||||
# Patch supplied by Tim Parenti (2011-12-29)
|
||||
|
||||
# Zone NAME GMTOFF RULES FORMAT [UNTIL]
|
||||
Zone Pacific/Fakaofo -11:24:56 - LMT 1901
|
||||
-10:00 - TKT # Tokelau Time
|
||||
-10:00 - TKT 2011 Dec 30 # Tokelau Time
|
||||
14:00 - TKT
|
||||
|
||||
# Tonga
|
||||
# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
|
||||
|
@ -233,9 +233,15 @@
|
||||
# the history of summer time legislation in the United Kingdom.
|
||||
# Since 1998 Joseph S. Myers has been updating
|
||||
# and extending this list, which can be found in
|
||||
# <a href="http://student.cusu.cam.ac.uk/~jsm28/british-time/">
|
||||
# http://student.cusu.cam.ac.uk/~jsm28/british-time/
|
||||
# <a href="http://www.polyomino.org.uk/british-time/">
|
||||
# History of legal time in Britain
|
||||
# </a>
|
||||
# Rob Crowther (2012-01-04) reports that that URL no longer
|
||||
# exists, and the article can now be found at:
|
||||
# <a href="http://www.polyomino.org.uk/british-time/">
|
||||
# http://www.polyomino.org.uk/british-time/
|
||||
# </a>
|
||||
|
||||
# From Joseph S. Myers (1998-01-06):
|
||||
#
|
||||
@ -1173,10 +1179,10 @@ Rule France 1940 only - Feb 25 2:00 1:00 S
|
||||
# write that they were used in Monaco and in many French locations.
|
||||
# Le Corre writes that the upper limit of the free zone was Arneguy, Orthez,
|
||||
# Mont-de-Marsan, Bazas, Langon, Lamotte-Montravel, Marouil, La
|
||||
# Rochefoucault, Champagne-Mouton, La Roche-Posay, La Haye-Decartes,
|
||||
# Rochefoucault, Champagne-Mouton, La Roche-Posay, La Haye-Descartes,
|
||||
# Loches, Montrichard, Vierzon, Bourges, Moulins, Digoin,
|
||||
# Paray-le-Monial, Montceau-les-Mines, Chalons-sur-Saone, Arbois,
|
||||
# Dole, Morez, St-Claude, and Collognes (Haute-Savioe).
|
||||
# Dole, Morez, St-Claude, and Collonges (Haute-Savoie).
|
||||
Rule France 1941 only - May 5 0:00 2:00 M # Midsummer
|
||||
# Shanks & Pottenger say this transition occurred at Oct 6 1:00,
|
||||
# but go with Denis Excoffier (1997-12-12),
|
||||
@ -1677,6 +1683,41 @@ Zone Europe/Malta 0:58:04 - LMT 1893 Nov 2 0:00s # Valletta
|
||||
# But [two people] separately reported via
|
||||
# Jesper Norgaard that as of 2001-01-24 Tiraspol was like Chisinau.
|
||||
# The Tiraspol entry has therefore been removed for now.
|
||||
#
|
||||
# From Alexander Krivenyshev (2011-10-17):
|
||||
# Pridnestrovian Moldavian Republic (PMR, also known as
|
||||
# "Pridnestrovie") has abolished seasonal clock change (no transition
|
||||
# to the Winter Time).
|
||||
#
|
||||
# News (in Russian):
|
||||
# <a href="http://www.kyivpost.ua/russia/news/pridnestrove-otkazalos-ot-perehoda-na-zimnee-vremya-30954.html">
|
||||
# http://www.kyivpost.ua/russia/news/pridnestrove-otkazalos-ot-perehoda-na-zimnee-vremya-30954.html
|
||||
# </a>
|
||||
#
|
||||
# <a href="http://www.allmoldova.com/moldova-news/1249064116.html">
|
||||
# http://www.allmoldova.com/moldova-news/1249064116.html
|
||||
# </a>
|
||||
#
|
||||
# The substance of this change (reinstatement of the Tiraspol entry)
|
||||
# is from a patch from Petr Machata (2011-10-17)
|
||||
#
|
||||
# From Tim Parenti (2011-10-19)
|
||||
# In addition, being situated at +4651+2938 would give Tiraspol
|
||||
# a pre-1880 LMT offset of 1:58:32.
|
||||
#
|
||||
# (which agrees with the earlier entry that had been removed)
|
||||
#
|
||||
# From Alexander Krivenyshev (2011-10-26)
|
||||
# NO need to divide Moldova into two timezones at this point.
|
||||
# As of today, Transnistria (Pridnestrovie)- Tiraspol reversed its own
|
||||
# decision to abolish DST this winter.
|
||||
# Following Moldova and neighboring Ukraine- Transnistria (Pridnestrovie)-
|
||||
# Tiraspol will go back to winter time on October 30, 2011.
|
||||
# News from Moldova (in russian):
|
||||
# <a href="http://ru.publika.md/link_317061.html">
|
||||
# http://ru.publika.md/link_317061.html
|
||||
# </a>
|
||||
|
||||
|
||||
# Zone NAME GMTOFF RULES FORMAT [UNTIL]
|
||||
Zone Europe/Chisinau 1:55:20 - LMT 1880
|
||||
@ -2673,6 +2714,28 @@ Link Europe/Istanbul Asia/Istanbul # Istanbul is in both continents.
|
||||
# <a href="http://www.pravda.com.ua/rus/news/2011/09/20/6600616/">
|
||||
# http://www.pravda.com.ua/rus/news/2011/09/20/6600616/
|
||||
# </a>
|
||||
#
|
||||
# From Philip Pizzey (2011-10-18):
|
||||
# Today my Ukrainian colleagues have informed me that the
|
||||
# Ukrainian parliament have decided that they will go to winter
|
||||
# time this year after all.
|
||||
#
|
||||
# From Udo Schwedt (2011-10-18):
|
||||
# As far as I understand, the recent change to the Ukranian time zone
|
||||
# (Europe/Kiev) to introduce permanent daylight saving time (similar
|
||||
# to Russia) was reverted today:
|
||||
#
|
||||
# <a href="http://portal.rada.gov.ua/rada/control/en/publish/article/info_left?art_id=287324&cat_id=105995">
|
||||
# http://portal.rada.gov.ua/rada/control/en/publish/article/info_left?art_id=287324&cat_id=105995
|
||||
# </a>
|
||||
#
|
||||
# Also reported by Alexander Bokovoy (2011-10-18) who also noted:
|
||||
# The law documents themselves are at
|
||||
#
|
||||
# <a href="http://w1.c1.rada.gov.ua/pls/zweb_n/webproc4_1?id=&pf3511=41484">
|
||||
# http://w1.c1.rada.gov.ua/pls/zweb_n/webproc4_1?id=&pf3511=41484
|
||||
# </a>
|
||||
|
||||
|
||||
# Zone NAME GMTOFF RULES FORMAT [UNTIL]
|
||||
# Most of Ukraine since 1970 has been like Kiev.
|
||||
@ -2687,8 +2750,7 @@ Zone Europe/Kiev 2:02:04 - LMT 1880
|
||||
3:00 - MSK 1990 Jul 1 2:00
|
||||
2:00 - EET 1992
|
||||
2:00 E-Eur EE%sT 1995
|
||||
2:00 EU EE%sT 2011 Mar lastSun 1:00u
|
||||
3:00 - FET # Further-eastern European Time
|
||||
2:00 EU EE%sT
|
||||
# Ruthenia used CET 1990/1991.
|
||||
# "Uzhhorod" is the transliteration of the Ukrainian name, but
|
||||
# "Uzhgorod" is more common in English.
|
||||
@ -2702,8 +2764,7 @@ Zone Europe/Uzhgorod 1:29:12 - LMT 1890 Oct
|
||||
1:00 - CET 1991 Mar 31 3:00
|
||||
2:00 - EET 1992
|
||||
2:00 E-Eur EE%sT 1995
|
||||
2:00 EU EE%sT 2011 Mar lastSun 1:00u
|
||||
3:00 - FET # Further-eastern European Time
|
||||
2:00 EU EE%sT
|
||||
# Zaporozh'ye and eastern Lugansk oblasts observed DST 1990/1991.
|
||||
# "Zaporizhia" is the transliteration of the Ukrainian name, but
|
||||
# "Zaporozh'ye" is more common in English. Use the common English
|
||||
@ -2716,8 +2777,7 @@ Zone Europe/Zaporozhye 2:20:40 - LMT 1880
|
||||
1:00 C-Eur CE%sT 1943 Oct 25
|
||||
3:00 Russia MSK/MSD 1991 Mar 31 2:00
|
||||
2:00 E-Eur EE%sT 1995
|
||||
2:00 EU EE%sT 2011 Mar lastSun 1:00u
|
||||
3:00 - FET # Further-eastern European Time
|
||||
2:00 EU EE%sT
|
||||
# Central Crimea used Moscow time 1994/1997.
|
||||
Zone Europe/Simferopol 2:16:24 - LMT 1880
|
||||
2:16 - SMT 1924 May 2 # Simferopol Mean T
|
||||
@ -2742,8 +2802,7 @@ Zone Europe/Simferopol 2:16:24 - LMT 1880
|
||||
# Assume it happened in March by not changing the clocks.
|
||||
3:00 Russia MSK/MSD 1997
|
||||
3:00 - MSK 1997 Mar lastSun 1:00u
|
||||
2:00 EU EE%sT 2011 Mar lastSun 1:00u
|
||||
3:00 - FET # Further-eastern European Time
|
||||
2:00 EU EE%sT
|
||||
|
||||
###############################################################################
|
||||
|
||||
|
@ -70,40 +70,54 @@ Leap 1997 Jun 30 23:59:60 + S
|
||||
Leap 1998 Dec 31 23:59:60 + S
|
||||
Leap 2005 Dec 31 23:59:60 + S
|
||||
Leap 2008 Dec 31 23:59:60 + S
|
||||
Leap 2012 Jun 30 23:59:60 + S
|
||||
|
||||
# INTERNATIONAL EARTH ROTATION AND REFERENCE SYSTEMS SERVICE (IERS)
|
||||
#
|
||||
# SERVICE INTERNATIONAL DE LA ROTATION TERRESTRE ET DES SYSTEMES DE REFERENCE
|
||||
#
|
||||
#
|
||||
# SERVICE DE LA ROTATION TERRESTRE
|
||||
# OBSERVATOIRE DE PARIS
|
||||
# 61, Av. de l'Observatoire 75014 PARIS (France)
|
||||
# Tel. : 33 (0) 1 40 51 22 29
|
||||
# Tel. : 33 (0) 1 40 51 22 26
|
||||
# FAX : 33 (0) 1 40 51 22 91
|
||||
# Internet : services.iers@obspm.fr
|
||||
# e-mail : (E-Mail Removed)
|
||||
# http://hpiers.obspm.fr/eop-pc
|
||||
#
|
||||
# Paris, 2 February 2011
|
||||
# Paris, 5 January 2012
|
||||
#
|
||||
# Bulletin C 41
|
||||
#
|
||||
# Bulletin C 43
|
||||
#
|
||||
# To authorities responsible
|
||||
# for the measurement and
|
||||
# distribution of time
|
||||
#
|
||||
# INFORMATION ON UTC - TAI
|
||||
#
|
||||
# NO positive leap second will be introduced at the end of June 2011.
|
||||
# The difference between Coordinated Universal Time UTC and the
|
||||
# International Atomic Time TAI is :
|
||||
# UTC TIME STEP
|
||||
# on the 1st of July 2012
|
||||
#
|
||||
# from 2009 January 1, 0h UTC, until further notice : UTC-TAI = -34 s
|
||||
#
|
||||
# A positive leap second will be introduced at the end of June 2012.
|
||||
# The sequence of dates of the UTC second markers will be:
|
||||
#
|
||||
# 2012 June 30, 23h 59m 59s
|
||||
# 2012 June 30, 23h 59m 60s
|
||||
# 2012 July 1, 0h 0m 0s
|
||||
#
|
||||
# The difference between UTC and the International Atomic Time TAI is:
|
||||
#
|
||||
# from 2009 January 1, 0h UTC, to 2012 July 1 0h UTC : UTC-TAI = - 34s
|
||||
# from 2012 July 1, 0h UTC, until further notice : UTC-TAI = - 35s
|
||||
#
|
||||
# Leap seconds can be introduced in UTC at the end of the months of December
|
||||
# or June, depending on the evolution of UT1-TAI. Bulletin C is mailed every
|
||||
# six months, either to announce a time step in UTC, or to confirm that there
|
||||
# or June, depending on the evolution of UT1-TAI. Bulletin C is mailed every
|
||||
# six months, either to announce a time step in UTC or to confirm that there
|
||||
# will be no time step at the next possible date.
|
||||
#
|
||||
#
|
||||
# Daniel GAMBIS
|
||||
# Head
|
||||
# Earth Orientation Center of the IERS
|
||||
# Head
|
||||
# Earth Orientation Center of IERS
|
||||
# Observatoire de Paris, France
|
||||
|
@ -1142,9 +1142,26 @@ Zone America/Menominee -5:50:27 - LMT 1885 Sep 18 12:00
|
||||
# For now, assume all of DST-observing Canada will fall into line with the
|
||||
# new US DST rules,
|
||||
|
||||
# From Chris Walton (2011-12-01)
|
||||
# In the first of Tammy Hardwick's articles
|
||||
# <a href="http://www.ilovecreston.com/?p=articles&t=spec&ar=260">
|
||||
# http://www.ilovecreston.com/?p=articles&t=spec&ar=260
|
||||
# </a>
|
||||
# she quotes the Friday November 1/1918 edition of the Creston Review.
|
||||
# The quote includes these two statements:
|
||||
# 'Sunday the CPR went back to the old system of time...'
|
||||
# '... The daylight saving scheme was dropped all over Canada at the same time,'
|
||||
# These statements refer to a transition from daylight time to standard time
|
||||
# that occurred nationally on Sunday October 27/1918. This transition was
|
||||
# also documented in the Saturday October 26/1918 edition of the Toronto Star.
|
||||
|
||||
# In light of that evidence, we alter the date from the earlier believed
|
||||
# Oct 31, to Oct 27, 1918 (and Sunday is a more likely transition day
|
||||
# than Thursday) in all Canadian rulesets.
|
||||
|
||||
# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
|
||||
Rule Canada 1918 only - Apr 14 2:00 1:00 D
|
||||
Rule Canada 1918 only - Oct 31 2:00 0 S
|
||||
Rule Canada 1918 only - Oct 27 2:00 0 S
|
||||
Rule Canada 1942 only - Feb 9 2:00 1:00 W # War
|
||||
Rule Canada 1945 only - Aug 14 23:00u 1:00 P # Peace
|
||||
Rule Canada 1945 only - Sep 30 2:00 0 S
|
||||
@ -1667,7 +1684,7 @@ Zone America/Atikokan -6:06:28 - LMT 1895
|
||||
Rule Winn 1916 only - Apr 23 0:00 1:00 D
|
||||
Rule Winn 1916 only - Sep 17 0:00 0 S
|
||||
Rule Winn 1918 only - Apr 14 2:00 1:00 D
|
||||
Rule Winn 1918 only - Oct 31 2:00 0 S
|
||||
Rule Winn 1918 only - Oct 27 2:00 0 S
|
||||
Rule Winn 1937 only - May 16 2:00 1:00 D
|
||||
Rule Winn 1937 only - Sep 26 2:00 0 S
|
||||
Rule Winn 1942 only - Feb 9 2:00 1:00 W # War
|
||||
@ -1750,7 +1767,7 @@ Zone America/Winnipeg -6:28:36 - LMT 1887 Jul 16
|
||||
|
||||
# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
|
||||
Rule Regina 1918 only - Apr 14 2:00 1:00 D
|
||||
Rule Regina 1918 only - Oct 31 2:00 0 S
|
||||
Rule Regina 1918 only - Oct 27 2:00 0 S
|
||||
Rule Regina 1930 1934 - May Sun>=1 0:00 1:00 D
|
||||
Rule Regina 1930 1934 - Oct Sun>=1 0:00 0 S
|
||||
Rule Regina 1937 1941 - Apr Sun>=8 0:00 1:00 D
|
||||
@ -1787,7 +1804,7 @@ Zone America/Swift_Current -7:11:20 - LMT 1905 Sep
|
||||
|
||||
# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
|
||||
Rule Edm 1918 1919 - Apr Sun>=8 2:00 1:00 D
|
||||
Rule Edm 1918 only - Oct 31 2:00 0 S
|
||||
Rule Edm 1918 only - Oct 27 2:00 0 S
|
||||
Rule Edm 1919 only - May 27 2:00 0 S
|
||||
Rule Edm 1920 1923 - Apr lastSun 2:00 1:00 D
|
||||
Rule Edm 1920 only - Oct lastSun 2:00 0 S
|
||||
@ -1817,9 +1834,68 @@ Zone America/Edmonton -7:33:52 - LMT 1906 Sep
|
||||
# Dawson Creek uses MST. Much of east BC is like Edmonton.
|
||||
# Matthews and Vincent (1998) write that Creston is like Dawson Creek.
|
||||
|
||||
# It seems though that (re: Creston) is not entirely correct:
|
||||
|
||||
# From Chris Walton (2011-12-01):
|
||||
# There are two areas within the Canadian province of British Columbia
|
||||
# that do not currently observe daylight saving:
|
||||
# a) The Creston Valley (includes the town of Creston and surrounding area)
|
||||
# b) The eastern half of the Peace River Regional District
|
||||
# (includes the cities of Dawson Creek and Fort St. John)
|
||||
|
||||
# Earlier this year I stumbled across a detailed article about the time
|
||||
# keeping history of Creston; it was written by Tammy Hardwick who is the
|
||||
# manager of the Creston & District Museum. The article was written in May 2009.
|
||||
# <a href="http://www.ilovecreston.com/?p=articles&t=spec&ar=260">
|
||||
# http://www.ilovecreston.com/?p=articles&t=spec&ar=260
|
||||
# </a>
|
||||
# According to the article, Creston has not changed its clocks since June 1918.
|
||||
# i.e. Creston has been stuck on UTC-7 for 93 years.
|
||||
# Dawson Creek, on the other hand, changed its clocks as recently as April 1972.
|
||||
|
||||
# Unfortunately the exact date for the time change in June 1918 remains
|
||||
# unknown and will be difficult to ascertain. I e-mailed Tammy a few months
|
||||
# ago to ask if Sunday June 2 was a reasonable guess. She said it was just
|
||||
# as plausible as any other date (in June). She also said that after writing the
|
||||
# article she had discovered another time change in 1916; this is the subject
|
||||
# of another article which she wrote in October 2010.
|
||||
# <a href="http://www.creston.museum.bc.ca/index.php?module=comments&uop=view_comment&cm+id=56">
|
||||
# http://www.creston.museum.bc.ca/index.php?module=comments&uop=view_comment&cm+id=56
|
||||
# </a>
|
||||
|
||||
# Here is a summary of the three clock change events in Creston's history:
|
||||
# 1. 1884 or 1885: adoption of Mountain Standard Time (GMT-7)
|
||||
# Exact date unknown
|
||||
# 2. Oct 1916: switch to Pacific Standard Time (GMT-8)
|
||||
# Exact date in October unknown; Sunday October 1 is a reasonable guess.
|
||||
# 3. June 1918: switch to Pacific Daylight Time (GMT-7)
|
||||
# Exact date in June unknown; Sunday June 2 is a reasonable guess.
|
||||
# note#1:
|
||||
# On Oct 27/1918 when daylight saving ended in the rest of Canada,
|
||||
# Creston did not change its clocks.
|
||||
# note#2:
|
||||
# During WWII when the Federal Government legislated a mandatory clock change,
|
||||
# Creston did not oblige.
|
||||
# note#3:
|
||||
# There is no guarantee that Creston will remain on Mountain Standard Time
|
||||
# (UTC-7) forever.
|
||||
# The subject was debated at least once this year by the town Council.
|
||||
# <a href="http://www.bclocalnews.com/kootenay_rockies/crestonvalleyadvance/news/116760809.html">
|
||||
# http://www.bclocalnews.com/kootenay_rockies/crestonvalleyadvance/news/116760809.html
|
||||
# </a>
|
||||
|
||||
# During a period WWII, summer time (Daylight saying) was mandatory in Canada.
|
||||
# In Creston, that was handled by shifting the area to PST (-8:00) then applying
|
||||
# summer time to cause the offset to be -7:00, the same as it had been before
|
||||
# the change. It can be argued that the timezone abbreviation during this
|
||||
# period should be PDT rather than MST, but that doesn't seem important enough
|
||||
# (to anyone) to further complicate the rules.
|
||||
|
||||
# The transition dates (and times) are guesses.
|
||||
|
||||
# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
|
||||
Rule Vanc 1918 only - Apr 14 2:00 1:00 D
|
||||
Rule Vanc 1918 only - Oct 31 2:00 0 S
|
||||
Rule Vanc 1918 only - Oct 27 2:00 0 S
|
||||
Rule Vanc 1942 only - Feb 9 2:00 1:00 W # War
|
||||
Rule Vanc 1945 only - Aug 14 23:00u 1:00 P # Peace
|
||||
Rule Vanc 1945 only - Sep 30 2:00 0 S
|
||||
@ -1835,7 +1911,10 @@ Zone America/Dawson_Creek -8:00:56 - LMT 1884
|
||||
-8:00 Canada P%sT 1947
|
||||
-8:00 Vanc P%sT 1972 Aug 30 2:00
|
||||
-7:00 - MST
|
||||
|
||||
Zone America/Creston -7:46:04 - LMT 1884
|
||||
-7:00 - MST 1916 Oct 1
|
||||
-8:00 - PST 1918 Jun 2
|
||||
-7:00 - MST
|
||||
|
||||
# Northwest Territories, Nunavut, Yukon
|
||||
|
||||
@ -2712,6 +2791,34 @@ Zone America/Costa_Rica -5:36:20 - LMT 1890 # San Jose
|
||||
# <a href="http://www.timeanddate.com/news/time/cuba-starts-dst-2011.html">
|
||||
# http://www.timeanddate.com/news/time/cuba-starts-dst-2011.html
|
||||
# </a>
|
||||
#
|
||||
# From Steffen Thorsen (2011-10-30)
|
||||
# Cuba will end DST two weeks later this year. Instead of going back
|
||||
# tonight, it has been delayed to 2011-11-13 at 01:00.
|
||||
#
|
||||
# One source (Spanish)
|
||||
# <a href="http://www.radioangulo.cu/noticias/cuba/17105-cuba-restablecera-el-horario-del-meridiano-de-greenwich.html">
|
||||
# http://www.radioangulo.cu/noticias/cuba/17105-cuba-restablecera-el-horario-del-meridiano-de-greenwich.html
|
||||
# </a>
|
||||
#
|
||||
# Our page:
|
||||
# <a href="http://www.timeanddate.com/news/time/cuba-time-changes-2011.html">
|
||||
# http://www.timeanddate.com/news/time/cuba-time-changes-2011.html
|
||||
# </a>
|
||||
#
|
||||
# From Steffen Thorsen (2012-03-01)
|
||||
# According to Radio Reloj, Cuba will start DST on Midnight between March
|
||||
# 31 and April 1.
|
||||
#
|
||||
# Radio Reloj has the following info (Spanish):
|
||||
# <a href="http://www.radioreloj.cu/index.php/noticias-radio-reloj/71-miscelaneas/7529-cuba-aplicara-el-horario-de-verano-desde-el-1-de-abril">
|
||||
# http://www.radioreloj.cu/index.php/noticias-radio-reloj/71-miscelaneas/7529-cuba-aplicara-el-horario-de-verano-desde-el-1-de-abril
|
||||
# </a>
|
||||
#
|
||||
# Our info on it:
|
||||
# <a href="http://www.timeanddate.com/news/time/cuba-starts-dst-2012.html">
|
||||
# http://www.timeanddate.com/news/time/cuba-starts-dst-2012.html
|
||||
# </a>
|
||||
|
||||
# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
|
||||
Rule Cuba 1928 only - Jun 10 0:00 1:00 D
|
||||
@ -2743,12 +2850,15 @@ Rule Cuba 1997 only - Oct 12 0:00s 0 S
|
||||
Rule Cuba 1998 1999 - Mar lastSun 0:00s 1:00 D
|
||||
Rule Cuba 1998 2003 - Oct lastSun 0:00s 0 S
|
||||
Rule Cuba 2000 2004 - Apr Sun>=1 0:00s 1:00 D
|
||||
Rule Cuba 2006 max - Oct lastSun 0:00s 0 S
|
||||
Rule Cuba 2006 2010 - Oct lastSun 0:00s 0 S
|
||||
Rule Cuba 2007 only - Mar Sun>=8 0:00s 1:00 D
|
||||
Rule Cuba 2008 only - Mar Sun>=15 0:00s 1:00 D
|
||||
Rule Cuba 2009 2010 - Mar Sun>=8 0:00s 1:00 D
|
||||
Rule Cuba 2011 only - Mar Sun>=15 0:00s 1:00 D
|
||||
Rule Cuba 2012 max - Mar Sun>=8 0:00s 1:00 D
|
||||
Rule Cuba 2011 only - Nov 13 0:00s 0 S
|
||||
Rule Cuba 2012 only - Apr 1 0:00s 1:00 D
|
||||
Rule Cuba 2012 max - Oct lastSun 0:00s 0 S
|
||||
Rule Cuba 2013 max - Mar Sun>=8 0:00s 1:00 D
|
||||
|
||||
# Zone NAME GMTOFF RULES FORMAT [UNTIL]
|
||||
Zone America/Havana -5:29:28 - LMT 1890
|
||||
@ -2882,6 +2992,29 @@ Zone America/Guatemala -6:02:04 - LMT 1918 Oct 5
|
||||
# From Stephen Colebourne (2007-02-22):
|
||||
# Some IATA info: Haiti won't be having DST in 2007.
|
||||
|
||||
# From Steffen Thorsen (2012-03-11):
|
||||
# According to several news sources, Haiti will observe DST this year,
|
||||
# apparently using the same start and end date as USA/Canada.
|
||||
# So this means they have already changed their time.
|
||||
#
|
||||
# (Sources in French):
|
||||
# <a href="http://www.alterpresse.org/spip.php?article12510">
|
||||
# http://www.alterpresse.org/spip.php?article12510
|
||||
# </a>
|
||||
# <a href="http://radiovision2000haiti.net/home/?p=13253">
|
||||
# http://radiovision2000haiti.net/home/?p=13253
|
||||
# </a>
|
||||
#
|
||||
# Our coverage:
|
||||
# <a href="http://www.timeanddate.com/news/time/haiti-dst-2012.html">
|
||||
# http://www.timeanddate.com/news/time/haiti-dst-2012.html
|
||||
# </a>
|
||||
|
||||
# From Arthur David Olson (2012-03-11):
|
||||
# The alterpresse.org source seems to show a US-style leap from 2:00 a.m. to
|
||||
# 3:00 a.m. rather than the traditional Haitian jump at midnight.
|
||||
# Assume a US-style fall back as well XXX.
|
||||
# Do not yet assume that the change carries forward past 2012 XXX.
|
||||
|
||||
# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
|
||||
Rule Haiti 1983 only - May 8 0:00 1:00 D
|
||||
@ -2893,6 +3026,8 @@ Rule Haiti 1988 1997 - Apr Sun>=1 1:00s 1:00 D
|
||||
Rule Haiti 1988 1997 - Oct lastSun 1:00s 0 S
|
||||
Rule Haiti 2005 2006 - Apr Sun>=1 0:00 1:00 D
|
||||
Rule Haiti 2005 2006 - Oct lastSun 0:00 0 S
|
||||
Rule Haiti 2012 only - Mar Sun>=8 2:00 1:00 D
|
||||
Rule Haiti 2012 only - Nov Sun>=1 2:00 0 S
|
||||
# Zone NAME GMTOFF RULES FORMAT [UNTIL]
|
||||
Zone America/Port-au-Prince -4:49:20 - LMT 1890
|
||||
-4:49 - PPMT 1917 Jan 24 12:00 # P-a-P MT
|
||||
|
@ -840,6 +840,19 @@ Zone America/La_Paz -4:32:36 - LMT 1890
|
||||
# oficial agency about time in Brazil, and she confirmed that the old rule is
|
||||
# still in force.
|
||||
|
||||
# From Guilherme Bernardes Rodrigues (2011-10-14)
|
||||
# It's official, the President signed a decree that includes Bahia in summer
|
||||
# time.
|
||||
# [ and in a second message (same day): ]
|
||||
# I found the decree.
|
||||
#
|
||||
# DECRETO No- 7.584, DE 13 DE OUTUBRO DE 2011
|
||||
# Link :
|
||||
# <a href="http://www.in.gov.br/visualiza/index.jsp?data=13/10/2011&jornal=1000&pagina=6&totalArquivos=6">
|
||||
# http://www.in.gov.br/visualiza/index.jsp?data=13/10/2011&jornal=1000&pagina=6&totalArquivos=6
|
||||
# </a>
|
||||
|
||||
|
||||
# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
|
||||
# Decree <a href="http://pcdsh01.on.br/HV20466.htm">20,466</a> (1931-10-01)
|
||||
# Decree <a href="http://pcdsh01.on.br/HV21896.htm">21,896</a> (1932-01-10)
|
||||
@ -1076,10 +1089,8 @@ Zone America/Maceio -2:22:52 - LMT 1914
|
||||
# of America/Salvador.
|
||||
Zone America/Bahia -2:34:04 - LMT 1914
|
||||
-3:00 Brazil BR%sT 2003 Sep 24
|
||||
-3:00 - BRT
|
||||
# as noted above, not yet in operation.
|
||||
# -3:00 - BRT 2011 Oct 16
|
||||
# -3:00 Brazil BR%sT
|
||||
-3:00 - BRT 2011 Oct 16
|
||||
-3:00 Brazil BR%sT
|
||||
#
|
||||
# Goias (GO), Distrito Federal (DF), Minas Gerais (MG),
|
||||
# Espirito Santo (ES), Rio de Janeiro (RJ), Sao Paulo (SP), Parana (PR),
|
||||
@ -1229,6 +1240,28 @@ Zone America/Rio_Branco -4:31:12 - LMT 1914
|
||||
# August, not in October as they have since 1968. This is a pilot plan
|
||||
# which will be reevaluated in 2012.
|
||||
|
||||
# From Mauricio Parada (2012-02-22), translated by Glenn Eychaner (2012-02-23):
|
||||
# As stated in the website of the Chilean Energy Ministry
|
||||
# http://www.minenergia.cl/ministerio/noticias/generales/gobierno-anuncia-fechas-de-cambio-de.html
|
||||
# The Chilean Government has decided to postpone the entrance into winter time
|
||||
# (to leave DST) from March 11 2012 to April 28th 2012. The decision has not
|
||||
# been yet formalized but it will within the next days.
|
||||
# Quote from the website communication:
|
||||
#
|
||||
# 6. For the year 2012, the dates of entry into winter time will be as follows:
|
||||
# a. Saturday April 28, 2012, clocks should go back 60 minutes; that is, at
|
||||
# 23:59:59, instead of passing to 0:00, the time should be adjusted to be 23:00
|
||||
# of the same day.
|
||||
# b. Saturday, September 1, 2012, clocks should go forward 60 minutes; that is,
|
||||
# at 23:59:59, instead of passing to 0:00, the time should be adjusted to be
|
||||
# 01:00 on September 2.
|
||||
#
|
||||
# Note that...this is yet another "temporary" change that will be reevaluated
|
||||
# AGAIN in 2013.
|
||||
|
||||
# NOTE: ChileAQ rules for Antarctic bases are stored separately in the
|
||||
# 'antarctica' file.
|
||||
|
||||
# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
|
||||
Rule Chile 1927 1932 - Sep 1 0:00 1:00 S
|
||||
Rule Chile 1928 1932 - Apr 1 0:00 0 -
|
||||
@ -1259,8 +1292,6 @@ Rule Chile 1998 only - Mar Sun>=9 3:00u 0 -
|
||||
Rule Chile 1998 only - Sep 27 4:00u 1:00 S
|
||||
Rule Chile 1999 only - Apr 4 3:00u 0 -
|
||||
Rule Chile 1999 2010 - Oct Sun>=9 4:00u 1:00 S
|
||||
Rule Chile 2011 only - Aug Sun>=16 4:00u 1:00 S
|
||||
Rule Chile 2012 max - Oct Sun>=9 4:00u 1:00 S
|
||||
Rule Chile 2000 2007 - Mar Sun>=9 3:00u 0 -
|
||||
# N.B.: the end of March 29 in Chile is March 30 in Universal time,
|
||||
# which is used below in specifying the transition.
|
||||
@ -1268,7 +1299,11 @@ Rule Chile 2008 only - Mar 30 3:00u 0 -
|
||||
Rule Chile 2009 only - Mar Sun>=9 3:00u 0 -
|
||||
Rule Chile 2010 only - Apr Sun>=1 3:00u 0 -
|
||||
Rule Chile 2011 only - May Sun>=2 3:00u 0 -
|
||||
Rule Chile 2012 max - Mar Sun>=9 3:00u 0 -
|
||||
Rule Chile 2011 only - Aug Sun>=16 4:00u 1:00 S
|
||||
Rule Chile 2012 only - Apr Sun>=23 3:00u 0 -
|
||||
Rule Chile 2012 only - Sep Sun>=2 4:00u 1:00 S
|
||||
Rule Chile 2013 max - Mar Sun>=9 3:00u 0 -
|
||||
Rule Chile 2013 max - Oct Sun>=9 4:00u 1:00 S
|
||||
# IATA SSIM anomalies: (1992-02) says 1992-03-14;
|
||||
# (1996-09) says 1998-03-08. Ignore these.
|
||||
# Zone NAME GMTOFF RULES FORMAT [UNTIL]
|
||||
@ -1414,6 +1449,21 @@ Zone Pacific/Galapagos -5:58:24 - LMT 1931 # Puerto Baquerizo Moreno
|
||||
# will not revert to local mean time, but clocks will remain on Summer
|
||||
# time (UTC/GMT - 3 hours) throughout the whole of 2011. Any long term
|
||||
# change to local time following the trial period will be notified.
|
||||
#
|
||||
# From Andrew Newman (2012-02-24)
|
||||
# A letter from Justin McPhee, Chief Executive,
|
||||
# Cable & Wireless Falkland Islands (dated 2012-02-22)
|
||||
# states...
|
||||
# The current Atlantic/Stanley entry under South America expects the
|
||||
# clocks to go back to standard Falklands Time (FKT) on the 15th April.
|
||||
# The database entry states that in 2011 Stanley was staying on fixed
|
||||
# summer time on a trial basis only. FIG need to contact IANA and/or
|
||||
# the maintainers of the database to inform them we're adopting
|
||||
# the same policy this year and suggest recommendations for future years.
|
||||
#
|
||||
# For now we will assume permanent summer time for the Falklands
|
||||
# until advised differently (to apply for 2012 and beyond, after the 2011
|
||||
# experiment was apparently successful.)
|
||||
# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S
|
||||
Rule Falk 1937 1938 - Sep lastSun 0:00 1:00 S
|
||||
Rule Falk 1938 1942 - Mar Sun>=19 0:00 0 -
|
||||
@ -1426,14 +1476,14 @@ Rule Falk 1984 only - Sep 16 0:00 1:00 S
|
||||
Rule Falk 1985 2000 - Sep Sun>=9 0:00 1:00 S
|
||||
Rule Falk 1986 2000 - Apr Sun>=16 0:00 0 -
|
||||
Rule Falk 2001 2010 - Apr Sun>=15 2:00 0 -
|
||||
Rule Falk 2012 max - Apr Sun>=15 2:00 0 -
|
||||
Rule Falk 2001 max - Sep Sun>=1 2:00 1:00 S
|
||||
Rule Falk 2001 2010 - Sep Sun>=1 2:00 1:00 S
|
||||
# Zone NAME GMTOFF RULES FORMAT [UNTIL]
|
||||
Zone Atlantic/Stanley -3:51:24 - LMT 1890
|
||||
-3:51:24 - SMT 1912 Mar 12 # Stanley Mean Time
|
||||
-4:00 Falk FK%sT 1983 May # Falkland Is Time
|
||||
-3:00 Falk FK%sT 1985 Sep 15
|
||||
-4:00 Falk FK%sT
|
||||
-4:00 Falk FK%sT 2010 Sep 5 02:00
|
||||
-3:00 - FKST
|
||||
|
||||
# French Guiana
|
||||
# Zone NAME GMTOFF RULES FORMAT [UNTIL]
|
||||
|
@ -153,6 +153,7 @@ CA +5333-11328 America/Edmonton Mountain Time - Alberta, east British Columbia &
|
||||
CA +690650-1050310 America/Cambridge_Bay Mountain Time - west Nunavut
|
||||
CA +6227-11421 America/Yellowknife Mountain Time - central Northwest Territories
|
||||
CA +682059-1334300 America/Inuvik Mountain Time - west Northwest Territories
|
||||
CA +4906-11631 America/Creston Mountain Standard Time - Creston, British Columbia
|
||||
CA +5946-12014 America/Dawson_Creek Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia
|
||||
CA +4916-12307 America/Vancouver Pacific Time - west British Columbia
|
||||
CA +6043-13503 America/Whitehorse Pacific Time - south Yukon
|
||||
@ -355,7 +356,7 @@ RS +4450+02030 Europe/Belgrade
|
||||
RU +5443+02030 Europe/Kaliningrad Moscow-01 - Kaliningrad
|
||||
RU +5545+03735 Europe/Moscow Moscow+00 - west Russia
|
||||
RU +4844+04425 Europe/Volgograd Moscow+00 - Caspian Sea
|
||||
RU +5312+05009 Europe/Samara Moscow - Samara, Udmurtia
|
||||
RU +5312+05009 Europe/Samara Moscow+00 - Samara, Udmurtia
|
||||
RU +5651+06036 Asia/Yekaterinburg Moscow+02 - Urals
|
||||
RU +5500+07324 Asia/Omsk Moscow+03 - west Siberia
|
||||
RU +5502+08255 Asia/Novosibirsk Moscow+03 - Novosibirsk
|
||||
|
@ -56,7 +56,7 @@ LDFLAGS += -lpthread
|
||||
dummy := $(shell $(MKDIR) -p $(LIB_LOCATION))
|
||||
endif
|
||||
|
||||
ifeq ($(PLATFORM), macosx))
|
||||
ifeq ($(PLATFORM), macosx)
|
||||
LDFLAGS += -pthread
|
||||
dummy := $(shell $(MKDIR) -p $(LIB_LOCATION))
|
||||
endif
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -211,6 +211,8 @@ class CharacterData00 extends CharacterData {
|
||||
case 0x10C3 : mapChar = 0x2D23; break;
|
||||
case 0x10C4 : mapChar = 0x2D24; break;
|
||||
case 0x10C5 : mapChar = 0x2D25; break;
|
||||
case 0x10C7 : mapChar = 0x2D27; break;
|
||||
case 0x10CD : mapChar = 0x2D2D; break;
|
||||
case 0x1E9E : mapChar = 0x00DF; break;
|
||||
case 0x2C62 : mapChar = 0x026B; break;
|
||||
case 0x2C63 : mapChar = 0x1D7D; break;
|
||||
@ -223,6 +225,7 @@ class CharacterData00 extends CharacterData {
|
||||
case 0x2C7F : mapChar = 0x0240; break;
|
||||
case 0xA77D : mapChar = 0x1D79; break;
|
||||
case 0xA78D : mapChar = 0x0265; break;
|
||||
case 0xA7AA : mapChar = 0x0266; break;
|
||||
// default mapChar is already set, so no
|
||||
// need to redo it here.
|
||||
// default : mapChar = ch;
|
||||
@ -282,6 +285,7 @@ class CharacterData00 extends CharacterData {
|
||||
case 0x0251 : mapChar = 0x2C6D; break;
|
||||
case 0x0252 : mapChar = 0x2C70; break;
|
||||
case 0x0265 : mapChar = 0xA78D; break;
|
||||
case 0x0266 : mapChar = 0xA7AA; break;
|
||||
case 0x026B : mapChar = 0x2C62; break;
|
||||
case 0x0271 : mapChar = 0x2C6E; break;
|
||||
case 0x027D : mapChar = 0x2C64; break;
|
||||
@ -327,6 +331,8 @@ class CharacterData00 extends CharacterData {
|
||||
case 0x2D23 : mapChar = 0x10C3; break;
|
||||
case 0x2D24 : mapChar = 0x10C4; break;
|
||||
case 0x2D25 : mapChar = 0x10C5; break;
|
||||
case 0x2D27 : mapChar = 0x10C7; break;
|
||||
case 0x2D2D : mapChar = 0x10CD; break;
|
||||
// ch must have a 1:M case mapping, but we
|
||||
// can't handle it here. Return ch.
|
||||
// since mapChar is already set, no need
|
||||
@ -425,6 +431,11 @@ class CharacterData00 extends CharacterData {
|
||||
case 0x2181: retval = 5000; break; // ROMAN NUMERAL FIVE THOUSAND
|
||||
case 0x2182: retval = 10000; break; // ROMAN NUMERAL TEN THOUSAND
|
||||
|
||||
case 0x324B: retval = 40; break;
|
||||
case 0x324C: retval = 50; break;
|
||||
case 0x324D: retval = 60; break;
|
||||
case 0x324E: retval = 70; break;
|
||||
case 0x324F: retval = 80; break;
|
||||
case 0x325C: retval = 32; break;
|
||||
|
||||
case 0x325D: retval = 33; break; // CIRCLED NUMBER THIRTY THREE
|
||||
@ -527,6 +538,7 @@ class CharacterData00 extends CharacterData {
|
||||
case 0x0251 : mapChar = 0x2C6D; break;
|
||||
case 0x0252 : mapChar = 0x2C70; break;
|
||||
case 0x0265 : mapChar = 0xA78D; break;
|
||||
case 0x0266 : mapChar = 0xA7AA; break;
|
||||
case 0x026B : mapChar = 0x2C62; break;
|
||||
case 0x0271 : mapChar = 0x2C6E; break;
|
||||
case 0x027D : mapChar = 0x2C64; break;
|
||||
@ -572,6 +584,8 @@ class CharacterData00 extends CharacterData {
|
||||
case 0x2D23 : mapChar = 0x10C3; break;
|
||||
case 0x2D24 : mapChar = 0x10C4; break;
|
||||
case 0x2D25 : mapChar = 0x10C5; break;
|
||||
case 0x2D27 : mapChar = 0x10C7; break;
|
||||
case 0x2D2D : mapChar = 0x10CD; break;
|
||||
default : mapChar = Character.ERROR; break;
|
||||
}
|
||||
}
|
||||
|
@ -1,8 +1,8 @@
|
||||
# PropList-6.0.0.txt
|
||||
# Date: 2010-08-19, 00:48:28 GMT [MD]
|
||||
# PropList-6.1.0.txt
|
||||
# Date: 2011-11-30, 01:49:54 GMT [MD]
|
||||
#
|
||||
# Unicode Character Database
|
||||
# Copyright (c) 1991-2010 Unicode, Inc.
|
||||
# Copyright (c) 1991-2011 Unicode, Inc.
|
||||
# For terms of use, see http://www.unicode.org/terms_of_use.html
|
||||
# For documentation, see http://www.unicode.org/reports/tr44/
|
||||
|
||||
@ -50,6 +50,7 @@
|
||||
2212 ; Dash # Sm MINUS SIGN
|
||||
2E17 ; Dash # Pd DOUBLE OBLIQUE HYPHEN
|
||||
2E1A ; Dash # Pd HYPHEN WITH DIAERESIS
|
||||
2E3A..2E3B ; Dash # Pd [2] TWO-EM DASH..THREE-EM DASH
|
||||
301C ; Dash # Pd WAVE DASH
|
||||
3030 ; Dash # Pd WAVY DASH
|
||||
30A0 ; Dash # Pd KATAKANA-HIRAGANA DOUBLE HYPHEN
|
||||
@ -58,7 +59,7 @@ FE58 ; Dash # Pd SMALL EM DASH
|
||||
FE63 ; Dash # Pd SMALL HYPHEN-MINUS
|
||||
FF0D ; Dash # Pd FULLWIDTH HYPHEN-MINUS
|
||||
|
||||
# Total code points: 25
|
||||
# Total code points: 27
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -158,6 +159,7 @@ A92F ; Terminal_Punctuation # Po KAYAH LI SIGN SHYA
|
||||
A9C7..A9C9 ; Terminal_Punctuation # Po [3] JAVANESE PADA PANGKAT..JAVANESE PADA LUNGSI
|
||||
AA5D..AA5F ; Terminal_Punctuation # Po [3] CHAM PUNCTUATION DANDA..CHAM PUNCTUATION TRIPLE DANDA
|
||||
AADF ; Terminal_Punctuation # Po TAI VIET SYMBOL KOI KOI
|
||||
AAF0..AAF1 ; Terminal_Punctuation # Po [2] MEETEI MAYEK CHEIKHAN..MEETEI MAYEK AHANG KHUDAM
|
||||
ABEB ; Terminal_Punctuation # Po MEETEI MAYEK CHEIKHEI
|
||||
FE50..FE52 ; Terminal_Punctuation # Po [3] SMALL COMMA..SMALL FULL STOP
|
||||
FE54..FE57 ; Terminal_Punctuation # Po [4] SMALL SEMICOLON..SMALL EXCLAMATION MARK
|
||||
@ -175,9 +177,11 @@ FF64 ; Terminal_Punctuation # Po HALFWIDTH IDEOGRAPHIC COMMA
|
||||
10B3A..10B3F ; Terminal_Punctuation # Po [6] TINY TWO DOTS OVER ONE DOT PUNCTUATION..LARGE ONE RING OVER TWO RINGS PUNCTUATION
|
||||
11047..1104D ; Terminal_Punctuation # Po [7] BRAHMI DANDA..BRAHMI PUNCTUATION LOTUS
|
||||
110BE..110C1 ; Terminal_Punctuation # Po [4] KAITHI SECTION MARK..KAITHI DOUBLE DANDA
|
||||
11141..11143 ; Terminal_Punctuation # Po [3] CHAKMA DANDA..CHAKMA QUESTION MARK
|
||||
111C5..111C6 ; Terminal_Punctuation # Po [2] SHARADA DANDA..SHARADA DOUBLE DANDA
|
||||
12470..12473 ; Terminal_Punctuation # Po [4] CUNEIFORM PUNCTUATION SIGN OLD ASSYRIAN WORD DIVIDER..CUNEIFORM PUNCTUATION SIGN DIAGONAL TRICOLON
|
||||
|
||||
# Total code points: 169
|
||||
# Total code points: 176
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -320,8 +324,41 @@ FF3E ; Other_Math # Sk FULLWIDTH CIRCUMFLEX ACCENT
|
||||
1D7AA..1D7C2 ; Other_Math # L& [25] MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA..MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA
|
||||
1D7C4..1D7CB ; Other_Math # L& [8] MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL..MATHEMATICAL BOLD SMALL DIGAMMA
|
||||
1D7CE..1D7FF ; Other_Math # Nd [50] MATHEMATICAL BOLD DIGIT ZERO..MATHEMATICAL MONOSPACE DIGIT NINE
|
||||
1EE00..1EE03 ; Other_Math # Lo [4] ARABIC MATHEMATICAL ALEF..ARABIC MATHEMATICAL DAL
|
||||
1EE05..1EE1F ; Other_Math # Lo [27] ARABIC MATHEMATICAL WAW..ARABIC MATHEMATICAL DOTLESS QAF
|
||||
1EE21..1EE22 ; Other_Math # Lo [2] ARABIC MATHEMATICAL INITIAL BEH..ARABIC MATHEMATICAL INITIAL JEEM
|
||||
1EE24 ; Other_Math # Lo ARABIC MATHEMATICAL INITIAL HEH
|
||||
1EE27 ; Other_Math # Lo ARABIC MATHEMATICAL INITIAL HAH
|
||||
1EE29..1EE32 ; Other_Math # Lo [10] ARABIC MATHEMATICAL INITIAL YEH..ARABIC MATHEMATICAL INITIAL QAF
|
||||
1EE34..1EE37 ; Other_Math # Lo [4] ARABIC MATHEMATICAL INITIAL SHEEN..ARABIC MATHEMATICAL INITIAL KHAH
|
||||
1EE39 ; Other_Math # Lo ARABIC MATHEMATICAL INITIAL DAD
|
||||
1EE3B ; Other_Math # Lo ARABIC MATHEMATICAL INITIAL GHAIN
|
||||
1EE42 ; Other_Math # Lo ARABIC MATHEMATICAL TAILED JEEM
|
||||
1EE47 ; Other_Math # Lo ARABIC MATHEMATICAL TAILED HAH
|
||||
1EE49 ; Other_Math # Lo ARABIC MATHEMATICAL TAILED YEH
|
||||
1EE4B ; Other_Math # Lo ARABIC MATHEMATICAL TAILED LAM
|
||||
1EE4D..1EE4F ; Other_Math # Lo [3] ARABIC MATHEMATICAL TAILED NOON..ARABIC MATHEMATICAL TAILED AIN
|
||||
1EE51..1EE52 ; Other_Math # Lo [2] ARABIC MATHEMATICAL TAILED SAD..ARABIC MATHEMATICAL TAILED QAF
|
||||
1EE54 ; Other_Math # Lo ARABIC MATHEMATICAL TAILED SHEEN
|
||||
1EE57 ; Other_Math # Lo ARABIC MATHEMATICAL TAILED KHAH
|
||||
1EE59 ; Other_Math # Lo ARABIC MATHEMATICAL TAILED DAD
|
||||
1EE5B ; Other_Math # Lo ARABIC MATHEMATICAL TAILED GHAIN
|
||||
1EE5D ; Other_Math # Lo ARABIC MATHEMATICAL TAILED DOTLESS NOON
|
||||
1EE5F ; Other_Math # Lo ARABIC MATHEMATICAL TAILED DOTLESS QAF
|
||||
1EE61..1EE62 ; Other_Math # Lo [2] ARABIC MATHEMATICAL STRETCHED BEH..ARABIC MATHEMATICAL STRETCHED JEEM
|
||||
1EE64 ; Other_Math # Lo ARABIC MATHEMATICAL STRETCHED HEH
|
||||
1EE67..1EE6A ; Other_Math # Lo [4] ARABIC MATHEMATICAL STRETCHED HAH..ARABIC MATHEMATICAL STRETCHED KAF
|
||||
1EE6C..1EE72 ; Other_Math # Lo [7] ARABIC MATHEMATICAL STRETCHED MEEM..ARABIC MATHEMATICAL STRETCHED QAF
|
||||
1EE74..1EE77 ; Other_Math # Lo [4] ARABIC MATHEMATICAL STRETCHED SHEEN..ARABIC MATHEMATICAL STRETCHED KHAH
|
||||
1EE79..1EE7C ; Other_Math # Lo [4] ARABIC MATHEMATICAL STRETCHED DAD..ARABIC MATHEMATICAL STRETCHED DOTLESS BEH
|
||||
1EE7E ; Other_Math # Lo ARABIC MATHEMATICAL STRETCHED DOTLESS FEH
|
||||
1EE80..1EE89 ; Other_Math # Lo [10] ARABIC MATHEMATICAL LOOPED ALEF..ARABIC MATHEMATICAL LOOPED YEH
|
||||
1EE8B..1EE9B ; Other_Math # Lo [17] ARABIC MATHEMATICAL LOOPED LAM..ARABIC MATHEMATICAL LOOPED GHAIN
|
||||
1EEA1..1EEA3 ; Other_Math # Lo [3] ARABIC MATHEMATICAL DOUBLE-STRUCK BEH..ARABIC MATHEMATICAL DOUBLE-STRUCK DAL
|
||||
1EEA5..1EEA9 ; Other_Math # Lo [5] ARABIC MATHEMATICAL DOUBLE-STRUCK WAW..ARABIC MATHEMATICAL DOUBLE-STRUCK YEH
|
||||
1EEAB..1EEBB ; Other_Math # Lo [17] ARABIC MATHEMATICAL DOUBLE-STRUCK LAM..ARABIC MATHEMATICAL DOUBLE-STRUCK GHAIN
|
||||
|
||||
# Total code points: 1217
|
||||
# Total code points: 1358
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -365,6 +402,8 @@ FF41..FF46 ; Hex_Digit # L& [6] FULLWIDTH LATIN SMALL LETTER A..FULLWIDTH L
|
||||
081B..0823 ; Other_Alphabetic # Mn [9] SAMARITAN MARK EPENTHETIC YUT..SAMARITAN VOWEL SIGN A
|
||||
0825..0827 ; Other_Alphabetic # Mn [3] SAMARITAN VOWEL SIGN SHORT A..SAMARITAN VOWEL SIGN U
|
||||
0829..082C ; Other_Alphabetic # Mn [4] SAMARITAN VOWEL SIGN LONG I..SAMARITAN VOWEL SIGN SUKUN
|
||||
08E4..08E9 ; Other_Alphabetic # Mn [6] ARABIC CURLY FATHA..ARABIC CURLY KASRATAN
|
||||
08F0..08FE ; Other_Alphabetic # Mn [15] ARABIC OPEN FATHATAN..ARABIC DAMMA WITH DOT
|
||||
0900..0902 ; Other_Alphabetic # Mn [3] DEVANAGARI SIGN INVERTED CANDRABINDU..DEVANAGARI SIGN ANUSVARA
|
||||
0903 ; Other_Alphabetic # Mc DEVANAGARI SIGN VISARGA
|
||||
093A ; Other_Alphabetic # Mn DEVANAGARI VOWEL SIGN OE
|
||||
@ -525,6 +564,7 @@ FF41..FF46 ; Hex_Digit # L& [6] FULLWIDTH LATIN SMALL LETTER A..FULLWIDTH L
|
||||
1BA2..1BA5 ; Other_Alphabetic # Mn [4] SUNDANESE CONSONANT SIGN PANYAKRA..SUNDANESE VOWEL SIGN PANYUKU
|
||||
1BA6..1BA7 ; Other_Alphabetic # Mc [2] SUNDANESE VOWEL SIGN PANAELAENG..SUNDANESE VOWEL SIGN PANOLONG
|
||||
1BA8..1BA9 ; Other_Alphabetic # Mn [2] SUNDANESE VOWEL SIGN PAMEPET..SUNDANESE VOWEL SIGN PANEULEUNG
|
||||
1BAC..1BAD ; Other_Alphabetic # Mc [2] SUNDANESE CONSONANT SIGN PASANGAN MA..SUNDANESE CONSONANT SIGN PASANGAN WA
|
||||
1BE7 ; Other_Alphabetic # Mc BATAK VOWEL SIGN E
|
||||
1BE8..1BE9 ; Other_Alphabetic # Mn [2] BATAK VOWEL SIGN PAKPAK E..BATAK VOWEL SIGN EE
|
||||
1BEA..1BEC ; Other_Alphabetic # Mc [3] BATAK VOWEL SIGN I..BATAK VOWEL SIGN O
|
||||
@ -534,9 +574,11 @@ FF41..FF46 ; Hex_Digit # L& [6] FULLWIDTH LATIN SMALL LETTER A..FULLWIDTH L
|
||||
1C24..1C2B ; Other_Alphabetic # Mc [8] LEPCHA SUBJOINED LETTER YA..LEPCHA VOWEL SIGN UU
|
||||
1C2C..1C33 ; Other_Alphabetic # Mn [8] LEPCHA VOWEL SIGN E..LEPCHA CONSONANT SIGN T
|
||||
1C34..1C35 ; Other_Alphabetic # Mc [2] LEPCHA CONSONANT SIGN NYIN-DO..LEPCHA CONSONANT SIGN KANG
|
||||
1CF2 ; Other_Alphabetic # Mc VEDIC SIGN ARDHAVISARGA
|
||||
1CF2..1CF3 ; Other_Alphabetic # Mc [2] VEDIC SIGN ARDHAVISARGA..VEDIC SIGN ROTATED ARDHAVISARGA
|
||||
24B6..24E9 ; Other_Alphabetic # So [52] CIRCLED LATIN CAPITAL LETTER A..CIRCLED LATIN SMALL LETTER Z
|
||||
2DE0..2DFF ; Other_Alphabetic # Mn [32] COMBINING CYRILLIC LETTER BE..COMBINING CYRILLIC LETTER IOTIFIED BIG YUS
|
||||
A674..A67B ; Other_Alphabetic # Mn [8] COMBINING CYRILLIC LETTER UKRAINIAN IE..COMBINING CYRILLIC LETTER OMEGA
|
||||
A69F ; Other_Alphabetic # Mn COMBINING CYRILLIC LETTER IOTIFIED E
|
||||
A823..A824 ; Other_Alphabetic # Mc [2] SYLOTI NAGRI VOWEL SIGN A..SYLOTI NAGRI VOWEL SIGN I
|
||||
A825..A826 ; Other_Alphabetic # Mn [2] SYLOTI NAGRI VOWEL SIGN U..SYLOTI NAGRI VOWEL SIGN E
|
||||
A827 ; Other_Alphabetic # Mc SYLOTI NAGRI VOWEL SIGN OO
|
||||
@ -564,6 +606,10 @@ AAB0 ; Other_Alphabetic # Mn TAI VIET MAI KANG
|
||||
AAB2..AAB4 ; Other_Alphabetic # Mn [3] TAI VIET VOWEL I..TAI VIET VOWEL U
|
||||
AAB7..AAB8 ; Other_Alphabetic # Mn [2] TAI VIET MAI KHIT..TAI VIET VOWEL IA
|
||||
AABE ; Other_Alphabetic # Mn TAI VIET VOWEL AM
|
||||
AAEB ; Other_Alphabetic # Mc MEETEI MAYEK VOWEL SIGN II
|
||||
AAEC..AAED ; Other_Alphabetic # Mn [2] MEETEI MAYEK VOWEL SIGN UU..MEETEI MAYEK VOWEL SIGN AAI
|
||||
AAEE..AAEF ; Other_Alphabetic # Mc [2] MEETEI MAYEK VOWEL SIGN AU..MEETEI MAYEK VOWEL SIGN AAU
|
||||
AAF5 ; Other_Alphabetic # Mc MEETEI MAYEK VOWEL SIGN VISARGA
|
||||
ABE3..ABE4 ; Other_Alphabetic # Mc [2] MEETEI MAYEK VOWEL SIGN ONAP..MEETEI MAYEK VOWEL SIGN INAP
|
||||
ABE5 ; Other_Alphabetic # Mn MEETEI MAYEK VOWEL SIGN ANAP
|
||||
ABE6..ABE7 ; Other_Alphabetic # Mc [2] MEETEI MAYEK VOWEL SIGN YENAP..MEETEI MAYEK VOWEL SIGN SOUNAP
|
||||
@ -581,8 +627,23 @@ FB1E ; Other_Alphabetic # Mn HEBREW POINT JUDEO-SPANISH VARIKA
|
||||
110B0..110B2 ; Other_Alphabetic # Mc [3] KAITHI VOWEL SIGN AA..KAITHI VOWEL SIGN II
|
||||
110B3..110B6 ; Other_Alphabetic # Mn [4] KAITHI VOWEL SIGN U..KAITHI VOWEL SIGN AI
|
||||
110B7..110B8 ; Other_Alphabetic # Mc [2] KAITHI VOWEL SIGN O..KAITHI VOWEL SIGN AU
|
||||
11100..11102 ; Other_Alphabetic # Mn [3] CHAKMA SIGN CANDRABINDU..CHAKMA SIGN VISARGA
|
||||
11127..1112B ; Other_Alphabetic # Mn [5] CHAKMA VOWEL SIGN A..CHAKMA VOWEL SIGN UU
|
||||
1112C ; Other_Alphabetic # Mc CHAKMA VOWEL SIGN E
|
||||
1112D..11132 ; Other_Alphabetic # Mn [6] CHAKMA VOWEL SIGN AI..CHAKMA AU MARK
|
||||
11180..11181 ; Other_Alphabetic # Mn [2] SHARADA SIGN CANDRABINDU..SHARADA SIGN ANUSVARA
|
||||
11182 ; Other_Alphabetic # Mc SHARADA SIGN VISARGA
|
||||
111B3..111B5 ; Other_Alphabetic # Mc [3] SHARADA VOWEL SIGN AA..SHARADA VOWEL SIGN II
|
||||
111B6..111BE ; Other_Alphabetic # Mn [9] SHARADA VOWEL SIGN U..SHARADA VOWEL SIGN O
|
||||
111BF ; Other_Alphabetic # Mc SHARADA VOWEL SIGN AU
|
||||
116AB ; Other_Alphabetic # Mn TAKRI SIGN ANUSVARA
|
||||
116AC ; Other_Alphabetic # Mc TAKRI SIGN VISARGA
|
||||
116AD ; Other_Alphabetic # Mn TAKRI VOWEL SIGN AA
|
||||
116AE..116AF ; Other_Alphabetic # Mc [2] TAKRI VOWEL SIGN I..TAKRI VOWEL SIGN II
|
||||
116B0..116B5 ; Other_Alphabetic # Mn [6] TAKRI VOWEL SIGN U..TAKRI VOWEL SIGN AU
|
||||
16F51..16F7E ; Other_Alphabetic # Mc [46] MIAO SIGN ASPIRATION..MIAO VOWEL SIGN NG
|
||||
|
||||
# Total code points: 795
|
||||
# Total code points: 922
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -591,16 +652,15 @@ FB1E ; Other_Alphabetic # Mn HEBREW POINT JUDEO-SPANISH VARIKA
|
||||
3021..3029 ; Ideographic # Nl [9] HANGZHOU NUMERAL ONE..HANGZHOU NUMERAL NINE
|
||||
3038..303A ; Ideographic # Nl [3] HANGZHOU NUMERAL TEN..HANGZHOU NUMERAL THIRTY
|
||||
3400..4DB5 ; Ideographic # Lo [6582] CJK UNIFIED IDEOGRAPH-3400..CJK UNIFIED IDEOGRAPH-4DB5
|
||||
4E00..9FCB ; Ideographic # Lo [20940] CJK UNIFIED IDEOGRAPH-4E00..CJK UNIFIED IDEOGRAPH-9FCB
|
||||
F900..FA2D ; Ideographic # Lo [302] CJK COMPATIBILITY IDEOGRAPH-F900..CJK COMPATIBILITY IDEOGRAPH-FA2D
|
||||
FA30..FA6D ; Ideographic # Lo [62] CJK COMPATIBILITY IDEOGRAPH-FA30..CJK COMPATIBILITY IDEOGRAPH-FA6D
|
||||
4E00..9FCC ; Ideographic # Lo [20941] CJK UNIFIED IDEOGRAPH-4E00..CJK UNIFIED IDEOGRAPH-9FCC
|
||||
F900..FA6D ; Ideographic # Lo [366] CJK COMPATIBILITY IDEOGRAPH-F900..CJK COMPATIBILITY IDEOGRAPH-FA6D
|
||||
FA70..FAD9 ; Ideographic # Lo [106] CJK COMPATIBILITY IDEOGRAPH-FA70..CJK COMPATIBILITY IDEOGRAPH-FAD9
|
||||
20000..2A6D6 ; Ideographic # Lo [42711] CJK UNIFIED IDEOGRAPH-20000..CJK UNIFIED IDEOGRAPH-2A6D6
|
||||
2A700..2B734 ; Ideographic # Lo [4149] CJK UNIFIED IDEOGRAPH-2A700..CJK UNIFIED IDEOGRAPH-2B734
|
||||
2B740..2B81D ; Ideographic # Lo [222] CJK UNIFIED IDEOGRAPH-2B740..CJK UNIFIED IDEOGRAPH-2B81D
|
||||
2F800..2FA1D ; Ideographic # Lo [542] CJK COMPATIBILITY IDEOGRAPH-2F800..CJK COMPATIBILITY IDEOGRAPH-2FA1D
|
||||
|
||||
# Total code points: 75630
|
||||
# Total code points: 75633
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -645,6 +705,7 @@ FA70..FAD9 ; Ideographic # Lo [106] CJK COMPATIBILITY IDEOGRAPH-FA70..CJK COM
|
||||
07EB..07F3 ; Diacritic # Mn [9] NKO COMBINING SHORT HIGH TONE..NKO COMBINING DOUBLE DOT ABOVE
|
||||
07F4..07F5 ; Diacritic # Lm [2] NKO HIGH TONE APOSTROPHE..NKO LOW TONE APOSTROPHE
|
||||
0818..0819 ; Diacritic # Mn [2] SAMARITAN MARK OCCLUSION..SAMARITAN MARK DAGESH
|
||||
08E4..08FE ; Diacritic # Mn [27] ARABIC CURLY FATHA..ARABIC DAMMA WITH DOT
|
||||
093C ; Diacritic # Mn DEVANAGARI SIGN NUKTA
|
||||
094D ; Diacritic # Mn DEVANAGARI SIGN VIRAMA
|
||||
0951..0954 ; Diacritic # Mn [4] DEVANAGARI STRESS SIGN UDATTA..DEVANAGARI ACUTE ACCENT
|
||||
@ -689,6 +750,7 @@ FA70..FAD9 ; Ideographic # Lo [106] CJK COMPATIBILITY IDEOGRAPH-FA70..CJK COM
|
||||
1B44 ; Diacritic # Mc BALINESE ADEG ADEG
|
||||
1B6B..1B73 ; Diacritic # Mn [9] BALINESE MUSICAL SYMBOL COMBINING TEGEH..BALINESE MUSICAL SYMBOL COMBINING GONG
|
||||
1BAA ; Diacritic # Mc SUNDANESE SIGN PAMAAEH
|
||||
1BAB ; Diacritic # Mn SUNDANESE SIGN VIRAMA
|
||||
1C36..1C37 ; Diacritic # Mn [2] LEPCHA SIGN RAN..LEPCHA SIGN NUKTA
|
||||
1C78..1C7D ; Diacritic # Lm [6] OL CHIKI MU TTUDDAG..OL CHIKI AHAD
|
||||
1CD0..1CD2 ; Diacritic # Mn [3] VEDIC TONE KARSHANA..VEDIC TONE PRENKHA
|
||||
@ -697,8 +759,8 @@ FA70..FAD9 ; Ideographic # Lo [106] CJK COMPATIBILITY IDEOGRAPH-FA70..CJK COM
|
||||
1CE1 ; Diacritic # Mc VEDIC TONE ATHARVAVEDIC INDEPENDENT SVARITA
|
||||
1CE2..1CE8 ; Diacritic # Mn [7] VEDIC SIGN VISARGA SVARITA..VEDIC SIGN VISARGA ANUDATTA WITH TAIL
|
||||
1CED ; Diacritic # Mn VEDIC SIGN TIRYAK
|
||||
1D2C..1D61 ; Diacritic # Lm [54] MODIFIER LETTER CAPITAL A..MODIFIER LETTER SMALL CHI
|
||||
1D62..1D6A ; Diacritic # L& [9] LATIN SUBSCRIPT SMALL LETTER I..GREEK SUBSCRIPT SMALL LETTER CHI
|
||||
1CF4 ; Diacritic # Mn VEDIC TONE CANDRA ABOVE
|
||||
1D2C..1D6A ; Diacritic # Lm [63] MODIFIER LETTER CAPITAL A..GREEK SUBSCRIPT SMALL LETTER CHI
|
||||
1DC4..1DCF ; Diacritic # Mn [12] COMBINING MACRON-ACUTE..COMBINING ZIGZAG BELOW
|
||||
1DFD..1DFF ; Diacritic # Mn [3] COMBINING ALMOST EQUAL TO BELOW..COMBINING RIGHT ARROWHEAD AND DOWN ARROWHEAD BELOW
|
||||
1FBD ; Diacritic # Sk GREEK KORONIS
|
||||
@ -709,7 +771,8 @@ FA70..FAD9 ; Ideographic # Lo [106] CJK COMPATIBILITY IDEOGRAPH-FA70..CJK COM
|
||||
1FFD..1FFE ; Diacritic # Sk [2] GREEK OXIA..GREEK DASIA
|
||||
2CEF..2CF1 ; Diacritic # Mn [3] COPTIC COMBINING NI ABOVE..COPTIC COMBINING SPIRITUS LENIS
|
||||
2E2F ; Diacritic # Lm VERTICAL TILDE
|
||||
302A..302F ; Diacritic # Mn [6] IDEOGRAPHIC LEVEL TONE MARK..HANGUL DOUBLE DOT TONE MARK
|
||||
302A..302D ; Diacritic # Mn [4] IDEOGRAPHIC LEVEL TONE MARK..IDEOGRAPHIC ENTERING TONE MARK
|
||||
302E..302F ; Diacritic # Mc [2] HANGUL SINGLE DOT TONE MARK..HANGUL DOUBLE DOT TONE MARK
|
||||
3099..309A ; Diacritic # Mn [2] COMBINING KATAKANA-HIRAGANA VOICED SOUND MARK..COMBINING KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK
|
||||
309B..309C ; Diacritic # Sk [2] KATAKANA-HIRAGANA VOICED SOUND MARK..KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK
|
||||
30FC ; Diacritic # Lm KATAKANA-HIRAGANA PROLONGED SOUND MARK
|
||||
@ -720,6 +783,7 @@ A6F0..A6F1 ; Diacritic # Mn [2] BAMUM COMBINING MARK KOQNDON..BAMUM COMBINI
|
||||
A717..A71F ; Diacritic # Lm [9] MODIFIER LETTER DOT VERTICAL BAR..MODIFIER LETTER LOW INVERTED EXCLAMATION MARK
|
||||
A720..A721 ; Diacritic # Sk [2] MODIFIER LETTER STRESS AND HIGH TONE..MODIFIER LETTER STRESS AND LOW TONE
|
||||
A788 ; Diacritic # Lm MODIFIER LETTER LOW CIRCUMFLEX ACCENT
|
||||
A7F8..A7F9 ; Diacritic # Lm [2] MODIFIER LETTER CAPITAL H WITH STROKE..MODIFIER LETTER SMALL LIGATURE OE
|
||||
A8C4 ; Diacritic # Mn SAURASHTRA SIGN VIRAMA
|
||||
A8E0..A8F1 ; Diacritic # Mn [18] COMBINING DEVANAGARI DIGIT ZERO..COMBINING DEVANAGARI SIGN AVAGRAHA
|
||||
A92B..A92D ; Diacritic # Mn [3] KAYAH LI TONE PLOPHU..KAYAH LI TONE CALYA PLOPHU
|
||||
@ -732,6 +796,7 @@ AABF ; Diacritic # Mn TAI VIET TONE MAI EK
|
||||
AAC0 ; Diacritic # Lo TAI VIET TONE MAI NUENG
|
||||
AAC1 ; Diacritic # Mn TAI VIET TONE MAI THO
|
||||
AAC2 ; Diacritic # Lo TAI VIET TONE MAI SONG
|
||||
AAF6 ; Diacritic # Mn MEETEI MAYEK VIRAMA
|
||||
ABEC ; Diacritic # Mc MEETEI MAYEK LUM IYEK
|
||||
ABED ; Diacritic # Mn MEETEI MAYEK APUN IYEK
|
||||
FB1E ; Diacritic # Mn HEBREW POINT JUDEO-SPANISH VARIKA
|
||||
@ -742,13 +807,19 @@ FF70 ; Diacritic # Lm HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND
|
||||
FF9E..FF9F ; Diacritic # Lm [2] HALFWIDTH KATAKANA VOICED SOUND MARK..HALFWIDTH KATAKANA SEMI-VOICED SOUND MARK
|
||||
FFE3 ; Diacritic # Sk FULLWIDTH MACRON
|
||||
110B9..110BA ; Diacritic # Mn [2] KAITHI SIGN VIRAMA..KAITHI SIGN NUKTA
|
||||
11133..11134 ; Diacritic # Mn [2] CHAKMA VIRAMA..CHAKMA MAAYYAA
|
||||
111C0 ; Diacritic # Mc SHARADA SIGN VIRAMA
|
||||
116B6 ; Diacritic # Mc TAKRI SIGN VIRAMA
|
||||
116B7 ; Diacritic # Mn TAKRI SIGN NUKTA
|
||||
16F8F..16F92 ; Diacritic # Mn [4] MIAO TONE RIGHT..MIAO TONE BELOW
|
||||
16F93..16F9F ; Diacritic # Lm [13] MIAO LETTER TONE-2..MIAO LETTER REFORMED TONE-8
|
||||
1D167..1D169 ; Diacritic # Mn [3] MUSICAL SYMBOL COMBINING TREMOLO-1..MUSICAL SYMBOL COMBINING TREMOLO-3
|
||||
1D16D..1D172 ; Diacritic # Mc [6] MUSICAL SYMBOL COMBINING AUGMENTATION DOT..MUSICAL SYMBOL COMBINING FLAG-5
|
||||
1D17B..1D182 ; Diacritic # Mn [8] MUSICAL SYMBOL COMBINING ACCENT..MUSICAL SYMBOL COMBINING LOURE
|
||||
1D185..1D18B ; Diacritic # Mn [7] MUSICAL SYMBOL COMBINING DOIT..MUSICAL SYMBOL COMBINING TRIPLE TONGUE
|
||||
1D1AA..1D1AD ; Diacritic # Mn [4] MUSICAL SYMBOL COMBINING DOWN BOW..MUSICAL SYMBOL COMBINING SNAP PIZZICATO
|
||||
|
||||
# Total code points: 639
|
||||
# Total code points: 693
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -758,6 +829,7 @@ FFE3 ; Diacritic # Sk FULLWIDTH MACRON
|
||||
07FA ; Extender # Lm NKO LAJANYALAN
|
||||
0E46 ; Extender # Lm THAI CHARACTER MAIYAMOK
|
||||
0EC6 ; Extender # Lm LAO KO LA
|
||||
180A ; Extender # Po MONGOLIAN NIRUGU
|
||||
1843 ; Extender # Lm MONGOLIAN LETTER TODO LONG VOWEL SIGN
|
||||
1AA7 ; Extender # Lm TAI THAM SIGN MAI YAMOK
|
||||
1C36 ; Extender # Mn LEPCHA SIGN RAN
|
||||
@ -771,27 +843,33 @@ A60C ; Extender # Lm VAI SYLLABLE LENGTHENER
|
||||
A9CF ; Extender # Lm JAVANESE PANGRANGKEP
|
||||
AA70 ; Extender # Lm MYANMAR MODIFIER LETTER KHAMTI REDUPLICATION
|
||||
AADD ; Extender # Lm TAI VIET SYMBOL SAM
|
||||
AAF3..AAF4 ; Extender # Lm [2] MEETEI MAYEK SYLLABLE REPETITION MARK..MEETEI MAYEK WORD REPETITION MARK
|
||||
FF70 ; Extender # Lm HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND MARK
|
||||
|
||||
# Total code points: 28
|
||||
# Total code points: 31
|
||||
|
||||
# ================================================
|
||||
|
||||
00AA ; Other_Lowercase # Lo FEMININE ORDINAL INDICATOR
|
||||
00BA ; Other_Lowercase # Lo MASCULINE ORDINAL INDICATOR
|
||||
02B0..02B8 ; Other_Lowercase # Lm [9] MODIFIER LETTER SMALL H..MODIFIER LETTER SMALL Y
|
||||
02C0..02C1 ; Other_Lowercase # Lm [2] MODIFIER LETTER GLOTTAL STOP..MODIFIER LETTER REVERSED GLOTTAL STOP
|
||||
02E0..02E4 ; Other_Lowercase # Lm [5] MODIFIER LETTER SMALL GAMMA..MODIFIER LETTER SMALL REVERSED GLOTTAL STOP
|
||||
0345 ; Other_Lowercase # Mn COMBINING GREEK YPOGEGRAMMENI
|
||||
037A ; Other_Lowercase # Lm GREEK YPOGEGRAMMENI
|
||||
1D2C..1D61 ; Other_Lowercase # Lm [54] MODIFIER LETTER CAPITAL A..MODIFIER LETTER SMALL CHI
|
||||
1D2C..1D6A ; Other_Lowercase # Lm [63] MODIFIER LETTER CAPITAL A..GREEK SUBSCRIPT SMALL LETTER CHI
|
||||
1D78 ; Other_Lowercase # Lm MODIFIER LETTER CYRILLIC EN
|
||||
1D9B..1DBF ; Other_Lowercase # Lm [37] MODIFIER LETTER SMALL TURNED ALPHA..MODIFIER LETTER SMALL THETA
|
||||
2090..2094 ; Other_Lowercase # Lm [5] LATIN SUBSCRIPT SMALL LETTER A..LATIN SUBSCRIPT SMALL LETTER SCHWA
|
||||
2071 ; Other_Lowercase # Lm SUPERSCRIPT LATIN SMALL LETTER I
|
||||
207F ; Other_Lowercase # Lm SUPERSCRIPT LATIN SMALL LETTER N
|
||||
2090..209C ; Other_Lowercase # Lm [13] LATIN SUBSCRIPT SMALL LETTER A..LATIN SUBSCRIPT SMALL LETTER T
|
||||
2170..217F ; Other_Lowercase # Nl [16] SMALL ROMAN NUMERAL ONE..SMALL ROMAN NUMERAL ONE THOUSAND
|
||||
24D0..24E9 ; Other_Lowercase # So [26] CIRCLED LATIN SMALL LETTER A..CIRCLED LATIN SMALL LETTER Z
|
||||
2C7D ; Other_Lowercase # Lm MODIFIER LETTER CAPITAL V
|
||||
2C7C..2C7D ; Other_Lowercase # Lm [2] LATIN SUBSCRIPT SMALL LETTER J..MODIFIER LETTER CAPITAL V
|
||||
A770 ; Other_Lowercase # Lm MODIFIER LETTER US
|
||||
A7F8..A7F9 ; Other_Lowercase # Lm [2] MODIFIER LETTER CAPITAL H WITH STROKE..MODIFIER LETTER SMALL LIGATURE OE
|
||||
|
||||
# Total code points: 159
|
||||
# Total code points: 183
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -838,11 +916,12 @@ FFFFE..FFFFF ; Noncharacter_Code_Point # Cn [2] <noncharacter-FFFFE>..<noncha
|
||||
0DCF ; Other_Grapheme_Extend # Mc SINHALA VOWEL SIGN AELA-PILLA
|
||||
0DDF ; Other_Grapheme_Extend # Mc SINHALA VOWEL SIGN GAYANUKITTA
|
||||
200C..200D ; Other_Grapheme_Extend # Cf [2] ZERO WIDTH NON-JOINER..ZERO WIDTH JOINER
|
||||
302E..302F ; Other_Grapheme_Extend # Mc [2] HANGUL SINGLE DOT TONE MARK..HANGUL DOUBLE DOT TONE MARK
|
||||
FF9E..FF9F ; Other_Grapheme_Extend # Lm [2] HALFWIDTH KATAKANA VOICED SOUND MARK..HALFWIDTH KATAKANA SEMI-VOICED SOUND MARK
|
||||
1D165 ; Other_Grapheme_Extend # Mc MUSICAL SYMBOL COMBINING STEM
|
||||
1D16E..1D172 ; Other_Grapheme_Extend # Mc [5] MUSICAL SYMBOL COMBINING FLAG-1..MUSICAL SYMBOL COMBINING FLAG-5
|
||||
|
||||
# Total code points: 23
|
||||
# Total code points: 25
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -868,7 +947,7 @@ FF9E..FF9F ; Other_Grapheme_Extend # Lm [2] HALFWIDTH KATAKANA VOICED SOUND
|
||||
# ================================================
|
||||
|
||||
3400..4DB5 ; Unified_Ideograph # Lo [6582] CJK UNIFIED IDEOGRAPH-3400..CJK UNIFIED IDEOGRAPH-4DB5
|
||||
4E00..9FCB ; Unified_Ideograph # Lo [20940] CJK UNIFIED IDEOGRAPH-4E00..CJK UNIFIED IDEOGRAPH-9FCB
|
||||
4E00..9FCC ; Unified_Ideograph # Lo [20941] CJK UNIFIED IDEOGRAPH-4E00..CJK UNIFIED IDEOGRAPH-9FCC
|
||||
FA0E..FA0F ; Unified_Ideograph # Lo [2] CJK COMPATIBILITY IDEOGRAPH-FA0E..CJK COMPATIBILITY IDEOGRAPH-FA0F
|
||||
FA11 ; Unified_Ideograph # Lo CJK COMPATIBILITY IDEOGRAPH-FA11
|
||||
FA13..FA14 ; Unified_Ideograph # Lo [2] CJK COMPATIBILITY IDEOGRAPH-FA13..CJK COMPATIBILITY IDEOGRAPH-FA14
|
||||
@ -880,12 +959,13 @@ FA27..FA29 ; Unified_Ideograph # Lo [3] CJK COMPATIBILITY IDEOGRAPH-FA27..C
|
||||
2A700..2B734 ; Unified_Ideograph # Lo [4149] CJK UNIFIED IDEOGRAPH-2A700..CJK UNIFIED IDEOGRAPH-2B734
|
||||
2B740..2B81D ; Unified_Ideograph # Lo [222] CJK UNIFIED IDEOGRAPH-2B740..CJK UNIFIED IDEOGRAPH-2B81D
|
||||
|
||||
# Total code points: 74616
|
||||
# Total code points: 74617
|
||||
|
||||
# ================================================
|
||||
|
||||
034F ; Other_Default_Ignorable_Code_Point # Mn COMBINING GRAPHEME JOINER
|
||||
115F..1160 ; Other_Default_Ignorable_Code_Point # Lo [2] HANGUL CHOSEONG FILLER..HANGUL JUNGSEONG FILLER
|
||||
17B4..17B5 ; Other_Default_Ignorable_Code_Point # Mn [2] KHMER VOWEL INHERENT AQ..KHMER VOWEL INHERENT AA
|
||||
2065..2069 ; Other_Default_Ignorable_Code_Point # Cn [5] <reserved-2065>..<reserved-2069>
|
||||
3164 ; Other_Default_Ignorable_Code_Point # Lo HANGUL FILLER
|
||||
FFA0 ; Other_Default_Ignorable_Code_Point # Lo HALFWIDTH HANGUL FILLER
|
||||
@ -895,7 +975,7 @@ E0002..E001F ; Other_Default_Ignorable_Code_Point # Cn [30] <reserved-E0002>..
|
||||
E0080..E00FF ; Other_Default_Ignorable_Code_Point # Cn [128] <reserved-E0080>..<reserved-E00FF>
|
||||
E01F0..E0FFF ; Other_Default_Ignorable_Code_Point # Cn [3600] <reserved-E01F0>..<reserved-E0FFF>
|
||||
|
||||
# Total code points: 3778
|
||||
# Total code points: 3780
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -923,7 +1003,7 @@ E0020..E007F ; Deprecated # Cf [96] TAG SPACE..CANCEL TAG
|
||||
03F3 ; Soft_Dotted # L& GREEK LETTER YOT
|
||||
0456 ; Soft_Dotted # L& CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I
|
||||
0458 ; Soft_Dotted # L& CYRILLIC SMALL LETTER JE
|
||||
1D62 ; Soft_Dotted # L& LATIN SUBSCRIPT SMALL LETTER I
|
||||
1D62 ; Soft_Dotted # Lm LATIN SUBSCRIPT SMALL LETTER I
|
||||
1D96 ; Soft_Dotted # L& LATIN SMALL LETTER I WITH RETROFLEX HOOK
|
||||
1DA4 ; Soft_Dotted # Lm MODIFIER LETTER SMALL I WITH STROKE
|
||||
1DA8 ; Soft_Dotted # Lm MODIFIER LETTER SMALL J WITH CROSSED-TAIL
|
||||
@ -931,7 +1011,7 @@ E0020..E007F ; Deprecated # Cf [96] TAG SPACE..CANCEL TAG
|
||||
1ECB ; Soft_Dotted # L& LATIN SMALL LETTER I WITH DOT BELOW
|
||||
2071 ; Soft_Dotted # Lm SUPERSCRIPT LATIN SMALL LETTER I
|
||||
2148..2149 ; Soft_Dotted # L& [2] DOUBLE-STRUCK ITALIC SMALL I..DOUBLE-STRUCK ITALIC SMALL J
|
||||
2C7C ; Soft_Dotted # L& LATIN SUBSCRIPT SMALL LETTER J
|
||||
2C7C ; Soft_Dotted # Lm LATIN SUBSCRIPT SMALL LETTER J
|
||||
1D422..1D423 ; Soft_Dotted # L& [2] MATHEMATICAL BOLD SMALL I..MATHEMATICAL BOLD SMALL J
|
||||
1D456..1D457 ; Soft_Dotted # L& [2] MATHEMATICAL ITALIC SMALL I..MATHEMATICAL ITALIC SMALL J
|
||||
1D48A..1D48B ; Soft_Dotted # L& [2] MATHEMATICAL BOLD ITALIC SMALL I..MATHEMATICAL BOLD ITALIC SMALL J
|
||||
@ -1014,6 +1094,7 @@ A8CE..A8CF ; STerm # Po [2] SAURASHTRA DANDA..SAURASHTRA DOUBLE DANDA
|
||||
A92F ; STerm # Po KAYAH LI SIGN SHYA
|
||||
A9C8..A9C9 ; STerm # Po [2] JAVANESE PADA LINGSA..JAVANESE PADA LUNGSI
|
||||
AA5D..AA5F ; STerm # Po [3] CHAM PUNCTUATION DANDA..CHAM PUNCTUATION TRIPLE DANDA
|
||||
AAF0..AAF1 ; STerm # Po [2] MEETEI MAYEK CHEIKHAN..MEETEI MAYEK AHANG KHUDAM
|
||||
ABEB ; STerm # Po MEETEI MAYEK CHEIKHEI
|
||||
FE52 ; STerm # Po SMALL FULL STOP
|
||||
FE56..FE57 ; STerm # Po [2] SMALL QUESTION MARK..SMALL EXCLAMATION MARK
|
||||
@ -1024,8 +1105,10 @@ FF61 ; STerm # Po HALFWIDTH IDEOGRAPHIC FULL STOP
|
||||
10A56..10A57 ; STerm # Po [2] KHAROSHTHI PUNCTUATION DANDA..KHAROSHTHI PUNCTUATION DOUBLE DANDA
|
||||
11047..11048 ; STerm # Po [2] BRAHMI DANDA..BRAHMI DOUBLE DANDA
|
||||
110BE..110C1 ; STerm # Po [4] KAITHI SECTION MARK..KAITHI DOUBLE DANDA
|
||||
11141..11143 ; STerm # Po [3] CHAKMA DANDA..CHAKMA QUESTION MARK
|
||||
111C5..111C6 ; STerm # Po [2] SHARADA DANDA..SHARADA DOUBLE DANDA
|
||||
|
||||
# Total code points: 76
|
||||
# Total code points: 83
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -1072,14 +1155,15 @@ E0100..E01EF ; Variation_Selector # Mn [240] VARIATION SELECTOR-17..VARIATION S
|
||||
007E ; Pattern_Syntax # Sm TILDE
|
||||
00A1 ; Pattern_Syntax # Po INVERTED EXCLAMATION MARK
|
||||
00A2..00A5 ; Pattern_Syntax # Sc [4] CENT SIGN..YEN SIGN
|
||||
00A6..00A7 ; Pattern_Syntax # So [2] BROKEN BAR..SECTION SIGN
|
||||
00A6 ; Pattern_Syntax # So BROKEN BAR
|
||||
00A7 ; Pattern_Syntax # Po SECTION SIGN
|
||||
00A9 ; Pattern_Syntax # So COPYRIGHT SIGN
|
||||
00AB ; Pattern_Syntax # Pi LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
|
||||
00AC ; Pattern_Syntax # Sm NOT SIGN
|
||||
00AE ; Pattern_Syntax # So REGISTERED SIGN
|
||||
00B0 ; Pattern_Syntax # So DEGREE SIGN
|
||||
00B1 ; Pattern_Syntax # Sm PLUS-MINUS SIGN
|
||||
00B6 ; Pattern_Syntax # So PILCROW SIGN
|
||||
00B6 ; Pattern_Syntax # Po PILCROW SIGN
|
||||
00BB ; Pattern_Syntax # Pf RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
|
||||
00BF ; Pattern_Syntax # Po INVERTED QUESTION MARK
|
||||
00D7 ; Pattern_Syntax # Sm MULTIPLICATION SIGN
|
||||
@ -1173,11 +1257,7 @@ E0100..E01EF ; Variation_Selector # Mn [240] VARIATION SELECTOR-17..VARIATION S
|
||||
27C0..27C4 ; Pattern_Syntax # Sm [5] THREE DIMENSIONAL ANGLE..OPEN SUPERSET
|
||||
27C5 ; Pattern_Syntax # Ps LEFT S-SHAPED BAG DELIMITER
|
||||
27C6 ; Pattern_Syntax # Pe RIGHT S-SHAPED BAG DELIMITER
|
||||
27C7..27CA ; Pattern_Syntax # Sm [4] OR WITH DOT INSIDE..VERTICAL BAR WITH HORIZONTAL STROKE
|
||||
27CB ; Pattern_Syntax # Cn <reserved-27CB>
|
||||
27CC ; Pattern_Syntax # Sm LONG DIVISION
|
||||
27CD ; Pattern_Syntax # Cn <reserved-27CD>
|
||||
27CE..27E5 ; Pattern_Syntax # Sm [24] SQUARED LOGICAL AND..WHITE SQUARE WITH RIGHTWARDS TICK
|
||||
27C7..27E5 ; Pattern_Syntax # Sm [31] OR WITH DOT INSIDE..WHITE SQUARE WITH RIGHTWARDS TICK
|
||||
27E6 ; Pattern_Syntax # Ps MATHEMATICAL LEFT WHITE SQUARE BRACKET
|
||||
27E7 ; Pattern_Syntax # Pe MATHEMATICAL RIGHT WHITE SQUARE BRACKET
|
||||
27E8 ; Pattern_Syntax # Ps MATHEMATICAL LEFT ANGLE BRACKET
|
||||
@ -1260,8 +1340,9 @@ E0100..E01EF ; Variation_Selector # Mn [240] VARIATION SELECTOR-17..VARIATION S
|
||||
2E29 ; Pattern_Syntax # Pe RIGHT DOUBLE PARENTHESIS
|
||||
2E2A..2E2E ; Pattern_Syntax # Po [5] TWO DOTS OVER ONE DOT PUNCTUATION..REVERSED QUESTION MARK
|
||||
2E2F ; Pattern_Syntax # Lm VERTICAL TILDE
|
||||
2E30..2E31 ; Pattern_Syntax # Po [2] RING POINT..WORD SEPARATOR MIDDLE DOT
|
||||
2E32..2E7F ; Pattern_Syntax # Cn [78] <reserved-2E32>..<reserved-2E7F>
|
||||
2E30..2E39 ; Pattern_Syntax # Po [10] RING POINT..TOP HALF SECTION SIGN
|
||||
2E3A..2E3B ; Pattern_Syntax # Pd [2] TWO-EM DASH..THREE-EM DASH
|
||||
2E3C..2E7F ; Pattern_Syntax # Cn [68] <reserved-2E3C>..<reserved-2E7F>
|
||||
3001..3003 ; Pattern_Syntax # Po [3] IDEOGRAPHIC COMMA..DITTO MARK
|
||||
3008 ; Pattern_Syntax # Ps LEFT ANGLE BRACKET
|
||||
3009 ; Pattern_Syntax # Pe RIGHT ANGLE BRACKET
|
||||
|
@ -1,8 +1,8 @@
|
||||
# Scripts-6.0.0.txt
|
||||
# Date: 2010-08-19, 00:48:47 GMT [MD]
|
||||
# Scripts-6.1.0.txt
|
||||
# Date: 2011-11-27, 05:10:50 GMT [MD]
|
||||
#
|
||||
# Unicode Character Database
|
||||
# Copyright (c) 1991-2010 Unicode, Inc.
|
||||
# Copyright (c) 1991-2011 Unicode, Inc.
|
||||
# For terms of use, see http://www.unicode.org/terms_of_use.html
|
||||
# For documentation, see http://www.unicode.org/reports/tr44/
|
||||
|
||||
@ -47,7 +47,8 @@
|
||||
00A0 ; Common # Zs NO-BREAK SPACE
|
||||
00A1 ; Common # Po INVERTED EXCLAMATION MARK
|
||||
00A2..00A5 ; Common # Sc [4] CENT SIGN..YEN SIGN
|
||||
00A6..00A7 ; Common # So [2] BROKEN BAR..SECTION SIGN
|
||||
00A6 ; Common # So BROKEN BAR
|
||||
00A7 ; Common # Po SECTION SIGN
|
||||
00A8 ; Common # Sk DIAERESIS
|
||||
00A9 ; Common # So COPYRIGHT SIGN
|
||||
00AB ; Common # Pi LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
|
||||
@ -60,8 +61,7 @@
|
||||
00B2..00B3 ; Common # No [2] SUPERSCRIPT TWO..SUPERSCRIPT THREE
|
||||
00B4 ; Common # Sk ACUTE ACCENT
|
||||
00B5 ; Common # L& MICRO SIGN
|
||||
00B6 ; Common # So PILCROW SIGN
|
||||
00B7 ; Common # Po MIDDLE DOT
|
||||
00B6..00B7 ; Common # Po [2] PILCROW SIGN..MIDDLE DOT
|
||||
00B8 ; Common # Sk CEDILLA
|
||||
00B9 ; Common # No SUPERSCRIPT ONE
|
||||
00BB ; Common # Pf RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
|
||||
@ -90,7 +90,6 @@
|
||||
0660..0669 ; Common # Nd [10] ARABIC-INDIC DIGIT ZERO..ARABIC-INDIC DIGIT NINE
|
||||
06DD ; Common # Cf ARABIC END OF AYAH
|
||||
0964..0965 ; Common # Po [2] DEVANAGARI DANDA..DEVANAGARI DOUBLE DANDA
|
||||
0970 ; Common # Po DEVANAGARI ABBREVIATION SIGN
|
||||
0E3F ; Common # Sc THAI CURRENCY SYMBOL BAHT
|
||||
0FD5..0FD8 ; Common # So [4] RIGHT-FACING SVASTI SIGN..LEFT-FACING SVASTI SIGN WITH DOTS
|
||||
10FB ; Common # Po GEORGIAN PARAGRAPH SEPARATOR
|
||||
@ -102,7 +101,8 @@
|
||||
1CE1 ; Common # Mc VEDIC TONE ATHARVAVEDIC INDEPENDENT SVARITA
|
||||
1CE9..1CEC ; Common # Lo [4] VEDIC SIGN ANUSVARA ANTARGOMUKHA..VEDIC SIGN ANUSVARA VAMAGOMUKHA WITH TAIL
|
||||
1CEE..1CF1 ; Common # Lo [4] VEDIC SIGN HEXIFORM LONG ANUSVARA..VEDIC SIGN ANUSVARA UBHAYATO MUKHA
|
||||
1CF2 ; Common # Mc VEDIC SIGN ARDHAVISARGA
|
||||
1CF2..1CF3 ; Common # Mc [2] VEDIC SIGN ARDHAVISARGA..VEDIC SIGN ROTATED ARDHAVISARGA
|
||||
1CF5..1CF6 ; Common # Lo [2] VEDIC SIGN JIHVAMULIYA..VEDIC SIGN UPADHMANIYA
|
||||
2000..200A ; Common # Zs [11] EN QUAD..HAIR SPACE
|
||||
200B ; Common # Cf ZERO WIDTH SPACE
|
||||
200E..200F ; Common # Cf [2] LEFT-TO-RIGHT MARK..RIGHT-TO-LEFT MARK
|
||||
@ -247,9 +247,7 @@
|
||||
27C0..27C4 ; Common # Sm [5] THREE DIMENSIONAL ANGLE..OPEN SUPERSET
|
||||
27C5 ; Common # Ps LEFT S-SHAPED BAG DELIMITER
|
||||
27C6 ; Common # Pe RIGHT S-SHAPED BAG DELIMITER
|
||||
27C7..27CA ; Common # Sm [4] OR WITH DOT INSIDE..VERTICAL BAR WITH HORIZONTAL STROKE
|
||||
27CC ; Common # Sm LONG DIVISION
|
||||
27CE..27E5 ; Common # Sm [24] SQUARED LOGICAL AND..WHITE SQUARE WITH RIGHTWARDS TICK
|
||||
27C7..27E5 ; Common # Sm [31] OR WITH DOT INSIDE..WHITE SQUARE WITH RIGHTWARDS TICK
|
||||
27E6 ; Common # Ps MATHEMATICAL LEFT WHITE SQUARE BRACKET
|
||||
27E7 ; Common # Pe MATHEMATICAL RIGHT WHITE SQUARE BRACKET
|
||||
27E8 ; Common # Ps MATHEMATICAL LEFT ANGLE BRACKET
|
||||
@ -329,7 +327,8 @@
|
||||
2E29 ; Common # Pe RIGHT DOUBLE PARENTHESIS
|
||||
2E2A..2E2E ; Common # Po [5] TWO DOTS OVER ONE DOT PUNCTUATION..REVERSED QUESTION MARK
|
||||
2E2F ; Common # Lm VERTICAL TILDE
|
||||
2E30..2E31 ; Common # Po [2] RING POINT..WORD SEPARATOR MIDDLE DOT
|
||||
2E30..2E39 ; Common # Po [10] RING POINT..TOP HALF SECTION SIGN
|
||||
2E3A..2E3B ; Common # Pd [2] TWO-EM DASH..THREE-EM DASH
|
||||
2FF0..2FFB ; Common # So [12] IDEOGRAPHIC DESCRIPTION CHARACTER LEFT TO RIGHT..IDEOGRAPHIC DESCRIPTION CHARACTER OVERLAID
|
||||
3000 ; Common # Zs IDEOGRAPHIC SPACE
|
||||
3001..3003 ; Common # Po [3] IDEOGRAPHIC COMMA..DITTO MARK
|
||||
@ -373,7 +372,9 @@
|
||||
3196..319F ; Common # So [10] IDEOGRAPHIC ANNOTATION TOP MARK..IDEOGRAPHIC ANNOTATION MAN MARK
|
||||
31C0..31E3 ; Common # So [36] CJK STROKE T..CJK STROKE Q
|
||||
3220..3229 ; Common # No [10] PARENTHESIZED IDEOGRAPH ONE..PARENTHESIZED IDEOGRAPH TEN
|
||||
322A..3250 ; Common # So [39] PARENTHESIZED IDEOGRAPH MOON..PARTNERSHIP SIGN
|
||||
322A..3247 ; Common # So [30] PARENTHESIZED IDEOGRAPH MOON..CIRCLED IDEOGRAPH KOTO
|
||||
3248..324F ; Common # No [8] CIRCLED NUMBER TEN ON BLACK SQUARE..CIRCLED NUMBER EIGHTY ON BLACK SQUARE
|
||||
3250 ; Common # So PARTNERSHIP SIGN
|
||||
3251..325F ; Common # No [15] CIRCLED NUMBER TWENTY ONE..CIRCLED NUMBER THIRTY FIVE
|
||||
327F ; Common # So KOREAN STANDARD SYMBOL
|
||||
3280..3289 ; Common # No [10] CIRCLED IDEOGRAPH ONE..CIRCLED IDEOGRAPH TEN
|
||||
@ -481,8 +482,7 @@ FFE9..FFEC ; Common # Sm [4] HALFWIDTH LEFTWARDS ARROW..HALFWIDTH DOWNWARDS
|
||||
FFED..FFEE ; Common # So [2] HALFWIDTH BLACK SQUARE..HALFWIDTH WHITE CIRCLE
|
||||
FFF9..FFFB ; Common # Cf [3] INTERLINEAR ANNOTATION ANCHOR..INTERLINEAR ANNOTATION TERMINATOR
|
||||
FFFC..FFFD ; Common # So [2] OBJECT REPLACEMENT CHARACTER..REPLACEMENT CHARACTER
|
||||
10100..10101 ; Common # Po [2] AEGEAN WORD SEPARATOR LINE..AEGEAN WORD SEPARATOR DOT
|
||||
10102 ; Common # So AEGEAN CHECK MARK
|
||||
10100..10102 ; Common # Po [3] AEGEAN WORD SEPARATOR LINE..AEGEAN CHECK MARK
|
||||
10107..10133 ; Common # No [45] AEGEAN NUMBER ONE..AEGEAN NUMBER NINETY THOUSAND
|
||||
10137..1013F ; Common # So [9] AEGEAN WEIGHT BASE UNIT..AEGEAN MEASURE THIRD SUBUNIT
|
||||
10190..1019B ; Common # So [12] ROMAN SEXTANS SIGN..ROMAN CENTURIAL SIGN
|
||||
@ -548,7 +548,7 @@ FFFC..FFFD ; Common # So [2] OBJECT REPLACEMENT CHARACTER..REPLACEMENT CHAR
|
||||
1F0D1..1F0DF ; Common # So [15] PLAYING CARD ACE OF CLUBS..PLAYING CARD WHITE JOKER
|
||||
1F100..1F10A ; Common # No [11] DIGIT ZERO FULL STOP..DIGIT NINE COMMA
|
||||
1F110..1F12E ; Common # So [31] PARENTHESIZED LATIN CAPITAL LETTER A..CIRCLED WZ
|
||||
1F130..1F169 ; Common # So [58] SQUARED LATIN CAPITAL LETTER A..NEGATIVE CIRCLED LATIN CAPITAL LETTER Z
|
||||
1F130..1F16B ; Common # So [60] SQUARED LATIN CAPITAL LETTER A..RAISED MD SIGN
|
||||
1F170..1F19A ; Common # So [43] NEGATIVE SQUARED LATIN CAPITAL LETTER A..SQUARED VS
|
||||
1F1E6..1F1FF ; Common # So [26] REGIONAL INDICATOR SYMBOL LETTER A..REGIONAL INDICATOR SYMBOL LETTER Z
|
||||
1F201..1F202 ; Common # So [2] SQUARED KATAKANA KOKO..SQUARED KATAKANA SA
|
||||
@ -567,33 +567,23 @@ FFFC..FFFD ; Common # So [2] OBJECT REPLACEMENT CHARACTER..REPLACEMENT CHAR
|
||||
1F442..1F4F7 ; Common # So [182] EAR..CAMERA
|
||||
1F4F9..1F4FC ; Common # So [4] VIDEO CAMERA..VIDEOCASSETTE
|
||||
1F500..1F53D ; Common # So [62] TWISTED RIGHTWARDS ARROWS..DOWN-POINTING SMALL RED TRIANGLE
|
||||
1F540..1F543 ; Common # So [4] CIRCLED CROSS POMMEE..NOTCHED LEFT SEMICIRCLE WITH THREE DOTS
|
||||
1F550..1F567 ; Common # So [24] CLOCK FACE ONE OCLOCK..CLOCK FACE TWELVE-THIRTY
|
||||
1F5FB..1F5FF ; Common # So [5] MOUNT FUJI..MOYAI
|
||||
1F601..1F610 ; Common # So [16] GRINNING FACE WITH SMILING EYES..NEUTRAL FACE
|
||||
1F612..1F614 ; Common # So [3] UNAMUSED FACE..PENSIVE FACE
|
||||
1F616 ; Common # So CONFOUNDED FACE
|
||||
1F618 ; Common # So FACE THROWING A KISS
|
||||
1F61A ; Common # So KISSING FACE WITH CLOSED EYES
|
||||
1F61C..1F61E ; Common # So [3] FACE WITH STUCK-OUT TONGUE AND WINKING EYE..DISAPPOINTED FACE
|
||||
1F620..1F625 ; Common # So [6] ANGRY FACE..DISAPPOINTED BUT RELIEVED FACE
|
||||
1F628..1F62B ; Common # So [4] FEARFUL FACE..TIRED FACE
|
||||
1F62D ; Common # So LOUDLY CRYING FACE
|
||||
1F630..1F633 ; Common # So [4] FACE WITH OPEN MOUTH AND COLD SWEAT..FLUSHED FACE
|
||||
1F635..1F640 ; Common # So [12] DIZZY FACE..WEARY CAT FACE
|
||||
1F5FB..1F640 ; Common # So [70] MOUNT FUJI..WEARY CAT FACE
|
||||
1F645..1F64F ; Common # So [11] FACE WITH NO GOOD GESTURE..PERSON WITH FOLDED HANDS
|
||||
1F680..1F6C5 ; Common # So [70] ROCKET..LEFT LUGGAGE
|
||||
1F700..1F773 ; Common # So [116] ALCHEMICAL SYMBOL FOR QUINTESSENCE..ALCHEMICAL SYMBOL FOR HALF OUNCE
|
||||
E0001 ; Common # Cf LANGUAGE TAG
|
||||
E0020..E007F ; Common # Cf [96] TAG SPACE..CANCEL TAG
|
||||
|
||||
# Total code points: 6379
|
||||
# Total code points: 6412
|
||||
|
||||
# ================================================
|
||||
|
||||
0041..005A ; Latin # L& [26] LATIN CAPITAL LETTER A..LATIN CAPITAL LETTER Z
|
||||
0061..007A ; Latin # L& [26] LATIN SMALL LETTER A..LATIN SMALL LETTER Z
|
||||
00AA ; Latin # L& FEMININE ORDINAL INDICATOR
|
||||
00BA ; Latin # L& MASCULINE ORDINAL INDICATOR
|
||||
00AA ; Latin # Lo FEMININE ORDINAL INDICATOR
|
||||
00BA ; Latin # Lo MASCULINE ORDINAL INDICATOR
|
||||
00C0..00D6 ; Latin # L& [23] LATIN CAPITAL LETTER A WITH GRAVE..LATIN CAPITAL LETTER O WITH DIAERESIS
|
||||
00D8..00F6 ; Latin # L& [31] LATIN CAPITAL LETTER O WITH STROKE..LATIN SMALL LETTER O WITH DIAERESIS
|
||||
00F8..01BA ; Latin # L& [195] LATIN SMALL LETTER O WITH STROKE..LATIN SMALL LETTER EZH WITH TAIL
|
||||
@ -607,7 +597,7 @@ E0020..E007F ; Common # Cf [96] TAG SPACE..CANCEL TAG
|
||||
02E0..02E4 ; Latin # Lm [5] MODIFIER LETTER SMALL GAMMA..MODIFIER LETTER SMALL REVERSED GLOTTAL STOP
|
||||
1D00..1D25 ; Latin # L& [38] LATIN LETTER SMALL CAPITAL A..LATIN LETTER AIN
|
||||
1D2C..1D5C ; Latin # Lm [49] MODIFIER LETTER CAPITAL A..MODIFIER LETTER SMALL AIN
|
||||
1D62..1D65 ; Latin # L& [4] LATIN SUBSCRIPT SMALL LETTER I..LATIN SUBSCRIPT SMALL LETTER V
|
||||
1D62..1D65 ; Latin # Lm [4] LATIN SUBSCRIPT SMALL LETTER I..LATIN SUBSCRIPT SMALL LETTER V
|
||||
1D6B..1D77 ; Latin # L& [13] LATIN SMALL LETTER UE..LATIN SMALL LETTER TURNED G
|
||||
1D79..1D9A ; Latin # L& [34] LATIN SMALL LETTER INSULAR G..LATIN SMALL LETTER EZH WITH RETROFLEX HOOK
|
||||
1D9B..1DBE ; Latin # Lm [36] MODIFIER LETTER SMALL TURNED ALPHA..MODIFIER LETTER SMALL EZH
|
||||
@ -621,22 +611,23 @@ E0020..E007F ; Common # Cf [96] TAG SPACE..CANCEL TAG
|
||||
2160..2182 ; Latin # Nl [35] ROMAN NUMERAL ONE..ROMAN NUMERAL TEN THOUSAND
|
||||
2183..2184 ; Latin # L& [2] ROMAN NUMERAL REVERSED ONE HUNDRED..LATIN SMALL LETTER REVERSED C
|
||||
2185..2188 ; Latin # Nl [4] ROMAN NUMERAL SIX LATE FORM..ROMAN NUMERAL ONE HUNDRED THOUSAND
|
||||
2C60..2C7C ; Latin # L& [29] LATIN CAPITAL LETTER L WITH DOUBLE BAR..LATIN SUBSCRIPT SMALL LETTER J
|
||||
2C7D ; Latin # Lm MODIFIER LETTER CAPITAL V
|
||||
2C60..2C7B ; Latin # L& [28] LATIN CAPITAL LETTER L WITH DOUBLE BAR..LATIN LETTER SMALL CAPITAL TURNED E
|
||||
2C7C..2C7D ; Latin # Lm [2] LATIN SUBSCRIPT SMALL LETTER J..MODIFIER LETTER CAPITAL V
|
||||
2C7E..2C7F ; Latin # L& [2] LATIN CAPITAL LETTER S WITH SWASH TAIL..LATIN CAPITAL LETTER Z WITH SWASH TAIL
|
||||
A722..A76F ; Latin # L& [78] LATIN CAPITAL LETTER EGYPTOLOGICAL ALEF..LATIN SMALL LETTER CON
|
||||
A770 ; Latin # Lm MODIFIER LETTER US
|
||||
A771..A787 ; Latin # L& [23] LATIN SMALL LETTER DUM..LATIN SMALL LETTER INSULAR T
|
||||
A78B..A78E ; Latin # L& [4] LATIN CAPITAL LETTER SALTILLO..LATIN SMALL LETTER L WITH RETROFLEX HOOK AND BELT
|
||||
A790..A791 ; Latin # L& [2] LATIN CAPITAL LETTER N WITH DESCENDER..LATIN SMALL LETTER N WITH DESCENDER
|
||||
A7A0..A7A9 ; Latin # L& [10] LATIN CAPITAL LETTER G WITH OBLIQUE STROKE..LATIN SMALL LETTER S WITH OBLIQUE STROKE
|
||||
A790..A793 ; Latin # L& [4] LATIN CAPITAL LETTER N WITH DESCENDER..LATIN SMALL LETTER C WITH BAR
|
||||
A7A0..A7AA ; Latin # L& [11] LATIN CAPITAL LETTER G WITH OBLIQUE STROKE..LATIN CAPITAL LETTER H WITH HOOK
|
||||
A7F8..A7F9 ; Latin # Lm [2] MODIFIER LETTER CAPITAL H WITH STROKE..MODIFIER LETTER SMALL LIGATURE OE
|
||||
A7FA ; Latin # L& LATIN LETTER SMALL CAPITAL TURNED M
|
||||
A7FB..A7FF ; Latin # Lo [5] LATIN EPIGRAPHIC LETTER REVERSED F..LATIN EPIGRAPHIC LETTER ARCHAIC M
|
||||
FB00..FB06 ; Latin # L& [7] LATIN SMALL LIGATURE FF..LATIN SMALL LIGATURE ST
|
||||
FF21..FF3A ; Latin # L& [26] FULLWIDTH LATIN CAPITAL LETTER A..FULLWIDTH LATIN CAPITAL LETTER Z
|
||||
FF41..FF5A ; Latin # L& [26] FULLWIDTH LATIN SMALL LETTER A..FULLWIDTH LATIN SMALL LETTER Z
|
||||
|
||||
# Total code points: 1267
|
||||
# Total code points: 1272
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -656,7 +647,7 @@ FF41..FF5A ; Latin # L& [26] FULLWIDTH LATIN SMALL LETTER A..FULLWIDTH LATIN
|
||||
03F7..03FF ; Greek # L& [9] GREEK CAPITAL LETTER SHO..GREEK CAPITAL REVERSED DOTTED LUNATE SIGMA SYMBOL
|
||||
1D26..1D2A ; Greek # L& [5] GREEK LETTER SMALL CAPITAL GAMMA..GREEK LETTER SMALL CAPITAL PSI
|
||||
1D5D..1D61 ; Greek # Lm [5] MODIFIER LETTER SMALL BETA..MODIFIER LETTER SMALL CHI
|
||||
1D66..1D6A ; Greek # L& [5] GREEK SUBSCRIPT SMALL LETTER BETA..GREEK SUBSCRIPT SMALL LETTER CHI
|
||||
1D66..1D6A ; Greek # Lm [5] GREEK SUBSCRIPT SMALL LETTER BETA..GREEK SUBSCRIPT SMALL LETTER CHI
|
||||
1DBF ; Greek # Lm MODIFIER LETTER SMALL THETA
|
||||
1F00..1F15 ; Greek # L& [22] GREEK SMALL LETTER ALPHA WITH PSILI..GREEK SMALL LETTER EPSILON WITH DASIA AND OXIA
|
||||
1F18..1F1D ; Greek # L& [6] GREEK CAPITAL LETTER EPSILON WITH PSILI..GREEK CAPITAL LETTER EPSILON WITH DASIA AND OXIA
|
||||
@ -710,12 +701,13 @@ A66E ; Cyrillic # Lo CYRILLIC LETTER MULTIOCULAR O
|
||||
A66F ; Cyrillic # Mn COMBINING CYRILLIC VZMET
|
||||
A670..A672 ; Cyrillic # Me [3] COMBINING CYRILLIC TEN MILLIONS SIGN..COMBINING CYRILLIC THOUSAND MILLIONS SIGN
|
||||
A673 ; Cyrillic # Po SLAVONIC ASTERISK
|
||||
A67C..A67D ; Cyrillic # Mn [2] COMBINING CYRILLIC KAVYKA..COMBINING CYRILLIC PAYEROK
|
||||
A674..A67D ; Cyrillic # Mn [10] COMBINING CYRILLIC LETTER UKRAINIAN IE..COMBINING CYRILLIC PAYEROK
|
||||
A67E ; Cyrillic # Po CYRILLIC KAVYKA
|
||||
A67F ; Cyrillic # Lm CYRILLIC PAYEROK
|
||||
A680..A697 ; Cyrillic # L& [24] CYRILLIC CAPITAL LETTER DWE..CYRILLIC SMALL LETTER SHWE
|
||||
A69F ; Cyrillic # Mn COMBINING CYRILLIC LETTER IOTIFIED E
|
||||
|
||||
# Total code points: 408
|
||||
# Total code points: 417
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -724,9 +716,10 @@ A680..A697 ; Cyrillic # L& [24] CYRILLIC CAPITAL LETTER DWE..CYRILLIC SMALL
|
||||
055A..055F ; Armenian # Po [6] ARMENIAN APOSTROPHE..ARMENIAN ABBREVIATION MARK
|
||||
0561..0587 ; Armenian # L& [39] ARMENIAN SMALL LETTER AYB..ARMENIAN SMALL LIGATURE ECH YIWN
|
||||
058A ; Armenian # Pd ARMENIAN HYPHEN
|
||||
058F ; Armenian # Sc ARMENIAN DRAM SIGN
|
||||
FB13..FB17 ; Armenian # L& [5] ARMENIAN SMALL LIGATURE MEN NOW..ARMENIAN SMALL LIGATURE MEN XEH
|
||||
|
||||
# Total code points: 90
|
||||
# Total code points: 91
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -757,7 +750,7 @@ FB46..FB4F ; Hebrew # Lo [10] HEBREW LETTER TSADI WITH DAGESH..HEBREW LIGATU
|
||||
|
||||
# ================================================
|
||||
|
||||
0600..0603 ; Arabic # Cf [4] ARABIC NUMBER SIGN..ARABIC SIGN SAFHA
|
||||
0600..0604 ; Arabic # Cf [5] ARABIC NUMBER SIGN..ARABIC SIGN SAMVAT
|
||||
0606..0608 ; Arabic # Sm [3] ARABIC-INDIC CUBE ROOT..ARABIC RAY
|
||||
0609..060A ; Arabic # Po [2] ARABIC-INDIC PER MILLE SIGN..ARABIC-INDIC PER TEN THOUSAND SIGN
|
||||
060B ; Arabic # Sc AFGHANI SIGN
|
||||
@ -786,6 +779,9 @@ FB46..FB4F ; Hebrew # Lo [10] HEBREW LETTER TSADI WITH DAGESH..HEBREW LIGATU
|
||||
06FD..06FE ; Arabic # So [2] ARABIC SIGN SINDHI AMPERSAND..ARABIC SIGN SINDHI POSTPOSITION MEN
|
||||
06FF ; Arabic # Lo ARABIC LETTER HEH WITH INVERTED V
|
||||
0750..077F ; Arabic # Lo [48] ARABIC LETTER BEH WITH THREE DOTS HORIZONTALLY BELOW..ARABIC LETTER KAF WITH TWO DOTS ABOVE
|
||||
08A0 ; Arabic # Lo ARABIC LETTER BEH WITH SMALL V BELOW
|
||||
08A2..08AC ; Arabic # Lo [11] ARABIC LETTER JEEM WITH TWO DOTS ABOVE..ARABIC LETTER ROHINGYA YEH
|
||||
08E4..08FE ; Arabic # Mn [27] ARABIC CURLY FATHA..ARABIC DAMMA WITH DOT
|
||||
FB50..FBB1 ; Arabic # Lo [98] ARABIC LETTER ALEF WASLA ISOLATED FORM..ARABIC LETTER YEH BARREE WITH HAMZA ABOVE FINAL FORM
|
||||
FBB2..FBC1 ; Arabic # Sk [16] ARABIC SYMBOL DOT ABOVE..ARABIC SYMBOL SMALL TAH BELOW
|
||||
FBD3..FD3D ; Arabic # Lo [363] ARABIC LETTER NG ISOLATED FORM..ARABIC LIGATURE ALEF WITH FATHATAN ISOLATED FORM
|
||||
@ -796,8 +792,42 @@ FDFC ; Arabic # Sc RIAL SIGN
|
||||
FE70..FE74 ; Arabic # Lo [5] ARABIC FATHATAN ISOLATED FORM..ARABIC KASRATAN ISOLATED FORM
|
||||
FE76..FEFC ; Arabic # Lo [135] ARABIC FATHA ISOLATED FORM..ARABIC LIGATURE LAM WITH ALEF FINAL FORM
|
||||
10E60..10E7E ; Arabic # No [31] RUMI DIGIT ONE..RUMI FRACTION TWO THIRDS
|
||||
1EE00..1EE03 ; Arabic # Lo [4] ARABIC MATHEMATICAL ALEF..ARABIC MATHEMATICAL DAL
|
||||
1EE05..1EE1F ; Arabic # Lo [27] ARABIC MATHEMATICAL WAW..ARABIC MATHEMATICAL DOTLESS QAF
|
||||
1EE21..1EE22 ; Arabic # Lo [2] ARABIC MATHEMATICAL INITIAL BEH..ARABIC MATHEMATICAL INITIAL JEEM
|
||||
1EE24 ; Arabic # Lo ARABIC MATHEMATICAL INITIAL HEH
|
||||
1EE27 ; Arabic # Lo ARABIC MATHEMATICAL INITIAL HAH
|
||||
1EE29..1EE32 ; Arabic # Lo [10] ARABIC MATHEMATICAL INITIAL YEH..ARABIC MATHEMATICAL INITIAL QAF
|
||||
1EE34..1EE37 ; Arabic # Lo [4] ARABIC MATHEMATICAL INITIAL SHEEN..ARABIC MATHEMATICAL INITIAL KHAH
|
||||
1EE39 ; Arabic # Lo ARABIC MATHEMATICAL INITIAL DAD
|
||||
1EE3B ; Arabic # Lo ARABIC MATHEMATICAL INITIAL GHAIN
|
||||
1EE42 ; Arabic # Lo ARABIC MATHEMATICAL TAILED JEEM
|
||||
1EE47 ; Arabic # Lo ARABIC MATHEMATICAL TAILED HAH
|
||||
1EE49 ; Arabic # Lo ARABIC MATHEMATICAL TAILED YEH
|
||||
1EE4B ; Arabic # Lo ARABIC MATHEMATICAL TAILED LAM
|
||||
1EE4D..1EE4F ; Arabic # Lo [3] ARABIC MATHEMATICAL TAILED NOON..ARABIC MATHEMATICAL TAILED AIN
|
||||
1EE51..1EE52 ; Arabic # Lo [2] ARABIC MATHEMATICAL TAILED SAD..ARABIC MATHEMATICAL TAILED QAF
|
||||
1EE54 ; Arabic # Lo ARABIC MATHEMATICAL TAILED SHEEN
|
||||
1EE57 ; Arabic # Lo ARABIC MATHEMATICAL TAILED KHAH
|
||||
1EE59 ; Arabic # Lo ARABIC MATHEMATICAL TAILED DAD
|
||||
1EE5B ; Arabic # Lo ARABIC MATHEMATICAL TAILED GHAIN
|
||||
1EE5D ; Arabic # Lo ARABIC MATHEMATICAL TAILED DOTLESS NOON
|
||||
1EE5F ; Arabic # Lo ARABIC MATHEMATICAL TAILED DOTLESS QAF
|
||||
1EE61..1EE62 ; Arabic # Lo [2] ARABIC MATHEMATICAL STRETCHED BEH..ARABIC MATHEMATICAL STRETCHED JEEM
|
||||
1EE64 ; Arabic # Lo ARABIC MATHEMATICAL STRETCHED HEH
|
||||
1EE67..1EE6A ; Arabic # Lo [4] ARABIC MATHEMATICAL STRETCHED HAH..ARABIC MATHEMATICAL STRETCHED KAF
|
||||
1EE6C..1EE72 ; Arabic # Lo [7] ARABIC MATHEMATICAL STRETCHED MEEM..ARABIC MATHEMATICAL STRETCHED QAF
|
||||
1EE74..1EE77 ; Arabic # Lo [4] ARABIC MATHEMATICAL STRETCHED SHEEN..ARABIC MATHEMATICAL STRETCHED KHAH
|
||||
1EE79..1EE7C ; Arabic # Lo [4] ARABIC MATHEMATICAL STRETCHED DAD..ARABIC MATHEMATICAL STRETCHED DOTLESS BEH
|
||||
1EE7E ; Arabic # Lo ARABIC MATHEMATICAL STRETCHED DOTLESS FEH
|
||||
1EE80..1EE89 ; Arabic # Lo [10] ARABIC MATHEMATICAL LOOPED ALEF..ARABIC MATHEMATICAL LOOPED YEH
|
||||
1EE8B..1EE9B ; Arabic # Lo [17] ARABIC MATHEMATICAL LOOPED LAM..ARABIC MATHEMATICAL LOOPED GHAIN
|
||||
1EEA1..1EEA3 ; Arabic # Lo [3] ARABIC MATHEMATICAL DOUBLE-STRUCK BEH..ARABIC MATHEMATICAL DOUBLE-STRUCK DAL
|
||||
1EEA5..1EEA9 ; Arabic # Lo [5] ARABIC MATHEMATICAL DOUBLE-STRUCK WAW..ARABIC MATHEMATICAL DOUBLE-STRUCK YEH
|
||||
1EEAB..1EEBB ; Arabic # Lo [17] ARABIC MATHEMATICAL DOUBLE-STRUCK LAM..ARABIC MATHEMATICAL DOUBLE-STRUCK GHAIN
|
||||
1EEF0..1EEF1 ; Arabic # Sm [2] ARABIC MATHEMATICAL OPERATOR MEEM WITH HAH WITH TATWEEL..ARABIC MATHEMATICAL OPERATOR HAH WITH DAL
|
||||
|
||||
# Total code points: 1051
|
||||
# Total code points: 1234
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -838,6 +868,7 @@ FE76..FEFC ; Arabic # Lo [135] ARABIC FATHA ISOLATED FORM..ARABIC LIGATURE LA
|
||||
0958..0961 ; Devanagari # Lo [10] DEVANAGARI LETTER QA..DEVANAGARI LETTER VOCALIC LL
|
||||
0962..0963 ; Devanagari # Mn [2] DEVANAGARI VOWEL SIGN VOCALIC L..DEVANAGARI VOWEL SIGN VOCALIC LL
|
||||
0966..096F ; Devanagari # Nd [10] DEVANAGARI DIGIT ZERO..DEVANAGARI DIGIT NINE
|
||||
0970 ; Devanagari # Po DEVANAGARI ABBREVIATION SIGN
|
||||
0971 ; Devanagari # Lm DEVANAGARI SIGN HIGH SPACING DOT
|
||||
0972..0977 ; Devanagari # Lo [6] DEVANAGARI LETTER CANDRA A..DEVANAGARI LETTER UUE
|
||||
0979..097F ; Devanagari # Lo [7] DEVANAGARI LETTER ZHA..DEVANAGARI LETTER BBA
|
||||
@ -846,7 +877,7 @@ A8F2..A8F7 ; Devanagari # Lo [6] DEVANAGARI SIGN SPACING CANDRABINDU..DEVAN
|
||||
A8F8..A8FA ; Devanagari # Po [3] DEVANAGARI SIGN PUSHPIKA..DEVANAGARI CARET
|
||||
A8FB ; Devanagari # Lo DEVANAGARI HEADSTROKE
|
||||
|
||||
# Total code points: 150
|
||||
# Total code points: 151
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -927,9 +958,10 @@ A8FB ; Devanagari # Lo DEVANAGARI HEADSTROKE
|
||||
0AE0..0AE1 ; Gujarati # Lo [2] GUJARATI LETTER VOCALIC RR..GUJARATI LETTER VOCALIC LL
|
||||
0AE2..0AE3 ; Gujarati # Mn [2] GUJARATI VOWEL SIGN VOCALIC L..GUJARATI VOWEL SIGN VOCALIC LL
|
||||
0AE6..0AEF ; Gujarati # Nd [10] GUJARATI DIGIT ZERO..GUJARATI DIGIT NINE
|
||||
0AF0 ; Gujarati # Po GUJARATI ABBREVIATION SIGN
|
||||
0AF1 ; Gujarati # Sc GUJARATI RUPEE SIGN
|
||||
|
||||
# Total code points: 83
|
||||
# Total code points: 84
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -1119,16 +1151,18 @@ A8FB ; Devanagari # Lo DEVANAGARI HEADSTROKE
|
||||
0EC6 ; Lao # Lm LAO KO LA
|
||||
0EC8..0ECD ; Lao # Mn [6] LAO TONE MAI EK..LAO NIGGAHITA
|
||||
0ED0..0ED9 ; Lao # Nd [10] LAO DIGIT ZERO..LAO DIGIT NINE
|
||||
0EDC..0EDD ; Lao # Lo [2] LAO HO NO..LAO HO MO
|
||||
0EDC..0EDF ; Lao # Lo [4] LAO HO NO..LAO LETTER KHMU NYO
|
||||
|
||||
# Total code points: 65
|
||||
# Total code points: 67
|
||||
|
||||
# ================================================
|
||||
|
||||
0F00 ; Tibetan # Lo TIBETAN SYLLABLE OM
|
||||
0F01..0F03 ; Tibetan # So [3] TIBETAN MARK GTER YIG MGO TRUNCATED A..TIBETAN MARK GTER YIG MGO -UM GTER TSHEG MA
|
||||
0F04..0F12 ; Tibetan # Po [15] TIBETAN MARK INITIAL YIG MGO MDUN MA..TIBETAN MARK RGYA GRAM SHAD
|
||||
0F13..0F17 ; Tibetan # So [5] TIBETAN MARK CARET -DZUD RTAGS ME LONG CAN..TIBETAN ASTROLOGICAL SIGN SGRA GCAN -CHAR RTAGS
|
||||
0F13 ; Tibetan # So TIBETAN MARK CARET -DZUD RTAGS ME LONG CAN
|
||||
0F14 ; Tibetan # Po TIBETAN MARK GTER TSHEG
|
||||
0F15..0F17 ; Tibetan # So [3] TIBETAN LOGOTYPE SIGN CHAD RTAGS..TIBETAN ASTROLOGICAL SIGN SGRA GCAN -CHAR RTAGS
|
||||
0F18..0F19 ; Tibetan # Mn [2] TIBETAN ASTROLOGICAL SIGN -KHYUD PA..TIBETAN ASTROLOGICAL SIGN SDONG TSHUGS
|
||||
0F1A..0F1F ; Tibetan # So [6] TIBETAN SIGN RDEL DKAR GCIG..TIBETAN SIGN RDEL DKAR RDEL NAG
|
||||
0F20..0F29 ; Tibetan # Nd [10] TIBETAN DIGIT ZERO..TIBETAN DIGIT NINE
|
||||
@ -1212,16 +1246,21 @@ AA7B ; Myanmar # Mc MYANMAR SIGN PAO KAREN TONE
|
||||
# ================================================
|
||||
|
||||
10A0..10C5 ; Georgian # L& [38] GEORGIAN CAPITAL LETTER AN..GEORGIAN CAPITAL LETTER HOE
|
||||
10C7 ; Georgian # L& GEORGIAN CAPITAL LETTER YN
|
||||
10CD ; Georgian # L& GEORGIAN CAPITAL LETTER AEN
|
||||
10D0..10FA ; Georgian # Lo [43] GEORGIAN LETTER AN..GEORGIAN LETTER AIN
|
||||
10FC ; Georgian # Lm MODIFIER LETTER GEORGIAN NAR
|
||||
10FD..10FF ; Georgian # Lo [3] GEORGIAN LETTER AEN..GEORGIAN LETTER LABIAL SIGN
|
||||
2D00..2D25 ; Georgian # L& [38] GEORGIAN SMALL LETTER AN..GEORGIAN SMALL LETTER HOE
|
||||
2D27 ; Georgian # L& GEORGIAN SMALL LETTER YN
|
||||
2D2D ; Georgian # L& GEORGIAN SMALL LETTER AEN
|
||||
|
||||
# Total code points: 120
|
||||
# Total code points: 127
|
||||
|
||||
# ================================================
|
||||
|
||||
1100..11FF ; Hangul # Lo [256] HANGUL CHOSEONG KIYEOK..HANGUL JONGSEONG SSANGNIEUN
|
||||
302E..302F ; Hangul # Mn [2] HANGUL SINGLE DOT TONE MARK..HANGUL DOUBLE DOT TONE MARK
|
||||
302E..302F ; Hangul # Mc [2] HANGUL SINGLE DOT TONE MARK..HANGUL DOUBLE DOT TONE MARK
|
||||
3131..318E ; Hangul # Lo [94] HANGUL LETTER KIYEOK..HANGUL LETTER ARAEAE
|
||||
3200..321E ; Hangul # So [31] PARENTHESIZED HANGUL KIYEOK..PARENTHESIZED KOREAN CHARACTER O HU
|
||||
3260..327E ; Hangul # So [31] CIRCLED HANGUL KIYEOK..CIRCLED HANGUL IEUNG U
|
||||
@ -1256,8 +1295,7 @@ FFDA..FFDC ; Hangul # Lo [3] HALFWIDTH HANGUL LETTER EU..HALFWIDTH HANGUL L
|
||||
1312..1315 ; Ethiopic # Lo [4] ETHIOPIC SYLLABLE GWI..ETHIOPIC SYLLABLE GWE
|
||||
1318..135A ; Ethiopic # Lo [67] ETHIOPIC SYLLABLE GGA..ETHIOPIC SYLLABLE FYA
|
||||
135D..135F ; Ethiopic # Mn [3] ETHIOPIC COMBINING GEMINATION AND VOWEL LENGTH MARK..ETHIOPIC COMBINING GEMINATION MARK
|
||||
1360 ; Ethiopic # So ETHIOPIC SECTION MARK
|
||||
1361..1368 ; Ethiopic # Po [8] ETHIOPIC WORDSPACE..ETHIOPIC PARAGRAPH SEPARATOR
|
||||
1360..1368 ; Ethiopic # Po [9] ETHIOPIC SECTION MARK..ETHIOPIC PARAGRAPH SEPARATOR
|
||||
1369..137C ; Ethiopic # No [20] ETHIOPIC DIGIT ONE..ETHIOPIC NUMBER TEN THOUSAND
|
||||
1380..138F ; Ethiopic # Lo [16] ETHIOPIC SYLLABLE SEBATBEIT MWA..ETHIOPIC SYLLABLE PWE
|
||||
1390..1399 ; Ethiopic # So [10] ETHIOPIC TONAL MARK YIZET..ETHIOPIC TONAL MARK KURT
|
||||
@ -1313,7 +1351,7 @@ AB28..AB2E ; Ethiopic # Lo [7] ETHIOPIC SYLLABLE BBA..ETHIOPIC SYLLABLE BBO
|
||||
# ================================================
|
||||
|
||||
1780..17B3 ; Khmer # Lo [52] KHMER LETTER KA..KHMER INDEPENDENT VOWEL QAU
|
||||
17B4..17B5 ; Khmer # Cf [2] KHMER VOWEL INHERENT AQ..KHMER VOWEL INHERENT AA
|
||||
17B4..17B5 ; Khmer # Mn [2] KHMER VOWEL INHERENT AQ..KHMER VOWEL INHERENT AA
|
||||
17B6 ; Khmer # Mc KHMER VOWEL SIGN AA
|
||||
17B7..17BD ; Khmer # Mn [7] KHMER VOWEL SIGN I..KHMER VOWEL SIGN UA
|
||||
17BE..17C5 ; Khmer # Mc [8] KHMER VOWEL SIGN OE..KHMER VOWEL SIGN AU
|
||||
@ -1393,16 +1431,15 @@ FF71..FF9D ; Katakana # Lo [45] HALFWIDTH KATAKANA LETTER A..HALFWIDTH KATAK
|
||||
3038..303A ; Han # Nl [3] HANGZHOU NUMERAL TEN..HANGZHOU NUMERAL THIRTY
|
||||
303B ; Han # Lm VERTICAL IDEOGRAPHIC ITERATION MARK
|
||||
3400..4DB5 ; Han # Lo [6582] CJK UNIFIED IDEOGRAPH-3400..CJK UNIFIED IDEOGRAPH-4DB5
|
||||
4E00..9FCB ; Han # Lo [20940] CJK UNIFIED IDEOGRAPH-4E00..CJK UNIFIED IDEOGRAPH-9FCB
|
||||
F900..FA2D ; Han # Lo [302] CJK COMPATIBILITY IDEOGRAPH-F900..CJK COMPATIBILITY IDEOGRAPH-FA2D
|
||||
FA30..FA6D ; Han # Lo [62] CJK COMPATIBILITY IDEOGRAPH-FA30..CJK COMPATIBILITY IDEOGRAPH-FA6D
|
||||
4E00..9FCC ; Han # Lo [20941] CJK UNIFIED IDEOGRAPH-4E00..CJK UNIFIED IDEOGRAPH-9FCC
|
||||
F900..FA6D ; Han # Lo [366] CJK COMPATIBILITY IDEOGRAPH-F900..CJK COMPATIBILITY IDEOGRAPH-FA6D
|
||||
FA70..FAD9 ; Han # Lo [106] CJK COMPATIBILITY IDEOGRAPH-FA70..CJK COMPATIBILITY IDEOGRAPH-FAD9
|
||||
20000..2A6D6 ; Han # Lo [42711] CJK UNIFIED IDEOGRAPH-20000..CJK UNIFIED IDEOGRAPH-2A6D6
|
||||
2A700..2B734 ; Han # Lo [4149] CJK UNIFIED IDEOGRAPH-2A700..CJK UNIFIED IDEOGRAPH-2B734
|
||||
2B740..2B81D ; Han # Lo [222] CJK UNIFIED IDEOGRAPH-2B740..CJK UNIFIED IDEOGRAPH-2B81D
|
||||
2F800..2FA1D ; Han # Lo [542] CJK COMPATIBILITY IDEOGRAPH-2F800..CJK COMPATIBILITY IDEOGRAPH-2FA1D
|
||||
|
||||
# Total code points: 75960
|
||||
# Total code points: 75963
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -1447,6 +1484,7 @@ A490..A4C6 ; Yi # So [55] YI RADICAL QOT..YI RADICAL KE
|
||||
1CD4..1CE0 ; Inherited # Mn [13] VEDIC SIGN YAJURVEDIC MIDLINE SVARITA..VEDIC TONE RIGVEDIC KASHMIRI INDEPENDENT SVARITA
|
||||
1CE2..1CE8 ; Inherited # Mn [7] VEDIC SIGN VISARGA SVARITA..VEDIC SIGN VISARGA ANUDATTA WITH TAIL
|
||||
1CED ; Inherited # Mn VEDIC SIGN TIRYAK
|
||||
1CF4 ; Inherited # Mn VEDIC TONE CANDRA ABOVE
|
||||
1DC0..1DE6 ; Inherited # Mn [39] COMBINING DOTTED GRAVE ACCENT..COMBINING LATIN SMALL LETTER Z
|
||||
1DFC..1DFF ; Inherited # Mn [4] COMBINING DOUBLE INVERTED BREVE BELOW..COMBINING RIGHT ARROWHEAD AND DOWN ARROWHEAD BELOW
|
||||
200C..200D ; Inherited # Cf [2] ZERO WIDTH NON-JOINER..ZERO WIDTH JOINER
|
||||
@ -1466,7 +1504,7 @@ FE20..FE26 ; Inherited # Mn [7] COMBINING LIGATURE LEFT HALF..COMBINING CON
|
||||
1D1AA..1D1AD ; Inherited # Mn [4] MUSICAL SYMBOL COMBINING DOWN BOW..MUSICAL SYMBOL COMBINING SNAP PIZZICATO
|
||||
E0100..E01EF ; Inherited # Mn [240] VARIATION SELECTOR-17..VARIATION SELECTOR-256
|
||||
|
||||
# Total code points: 523
|
||||
# Total code points: 524
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -1587,11 +1625,12 @@ E0100..E01EF ; Inherited # Mn [240] VARIATION SELECTOR-17..VARIATION SELECTOR-2
|
||||
2CE5..2CEA ; Coptic # So [6] COPTIC SYMBOL MI RO..COPTIC SYMBOL SHIMA SIMA
|
||||
2CEB..2CEE ; Coptic # L& [4] COPTIC CAPITAL LETTER CRYPTOGRAMMIC SHEI..COPTIC SMALL LETTER CRYPTOGRAMMIC GANGIA
|
||||
2CEF..2CF1 ; Coptic # Mn [3] COPTIC COMBINING NI ABOVE..COPTIC COMBINING SPIRITUS LENIS
|
||||
2CF2..2CF3 ; Coptic # L& [2] COPTIC CAPITAL LETTER BOHAIRIC KHEI..COPTIC SMALL LETTER BOHAIRIC KHEI
|
||||
2CF9..2CFC ; Coptic # Po [4] COPTIC OLD NUBIAN FULL STOP..COPTIC OLD NUBIAN VERSE DIVIDER
|
||||
2CFD ; Coptic # No COPTIC FRACTION ONE HALF
|
||||
2CFE..2CFF ; Coptic # Po [2] COPTIC FULL STOP..COPTIC MORPHOLOGICAL DIVIDER
|
||||
|
||||
# Total code points: 135
|
||||
# Total code points: 137
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -1614,12 +1653,12 @@ E0100..E01EF ; Inherited # Mn [240] VARIATION SELECTOR-17..VARIATION SELECTOR-2
|
||||
|
||||
# ================================================
|
||||
|
||||
2D30..2D65 ; Tifinagh # Lo [54] TIFINAGH LETTER YA..TIFINAGH LETTER YAZZ
|
||||
2D30..2D67 ; Tifinagh # Lo [56] TIFINAGH LETTER YA..TIFINAGH LETTER YO
|
||||
2D6F ; Tifinagh # Lm TIFINAGH MODIFIER LETTER LABIALIZATION MARK
|
||||
2D70 ; Tifinagh # Po TIFINAGH SEPARATOR MARK
|
||||
2D7F ; Tifinagh # Mn TIFINAGH CONSONANT JOINER
|
||||
|
||||
# Total code points: 57
|
||||
# Total code points: 59
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -1729,10 +1768,14 @@ A874..A877 ; Phags_Pa # Po [4] PHAGS-PA SINGLE HEAD MARK..PHAGS-PA MARK DOU
|
||||
1BA6..1BA7 ; Sundanese # Mc [2] SUNDANESE VOWEL SIGN PANAELAENG..SUNDANESE VOWEL SIGN PANOLONG
|
||||
1BA8..1BA9 ; Sundanese # Mn [2] SUNDANESE VOWEL SIGN PAMEPET..SUNDANESE VOWEL SIGN PANEULEUNG
|
||||
1BAA ; Sundanese # Mc SUNDANESE SIGN PAMAAEH
|
||||
1BAB ; Sundanese # Mn SUNDANESE SIGN VIRAMA
|
||||
1BAC..1BAD ; Sundanese # Mc [2] SUNDANESE CONSONANT SIGN PASANGAN MA..SUNDANESE CONSONANT SIGN PASANGAN WA
|
||||
1BAE..1BAF ; Sundanese # Lo [2] SUNDANESE LETTER KHA..SUNDANESE LETTER SYA
|
||||
1BB0..1BB9 ; Sundanese # Nd [10] SUNDANESE DIGIT ZERO..SUNDANESE DIGIT NINE
|
||||
1BBA..1BBF ; Sundanese # Lo [6] SUNDANESE AVAGRAHA..SUNDANESE LETTER FINAL M
|
||||
1CC0..1CC7 ; Sundanese # Po [8] SUNDANESE PUNCTUATION BINDU SURYA..SUNDANESE PUNCTUATION BINDU BA SATANGA
|
||||
|
||||
# Total code points: 55
|
||||
# Total code points: 72
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -1940,6 +1983,15 @@ A9DE..A9DF ; Javanese # Po [2] JAVANESE PADA TIRTA TUMETES..JAVANESE PADA I
|
||||
|
||||
# ================================================
|
||||
|
||||
AAE0..AAEA ; Meetei_Mayek # Lo [11] MEETEI MAYEK LETTER E..MEETEI MAYEK LETTER SSA
|
||||
AAEB ; Meetei_Mayek # Mc MEETEI MAYEK VOWEL SIGN II
|
||||
AAEC..AAED ; Meetei_Mayek # Mn [2] MEETEI MAYEK VOWEL SIGN UU..MEETEI MAYEK VOWEL SIGN AAI
|
||||
AAEE..AAEF ; Meetei_Mayek # Mc [2] MEETEI MAYEK VOWEL SIGN AU..MEETEI MAYEK VOWEL SIGN AAU
|
||||
AAF0..AAF1 ; Meetei_Mayek # Po [2] MEETEI MAYEK CHEIKHAN..MEETEI MAYEK AHANG KHUDAM
|
||||
AAF2 ; Meetei_Mayek # Lo MEETEI MAYEK ANJI
|
||||
AAF3..AAF4 ; Meetei_Mayek # Lm [2] MEETEI MAYEK SYLLABLE REPETITION MARK..MEETEI MAYEK WORD REPETITION MARK
|
||||
AAF5 ; Meetei_Mayek # Mc MEETEI MAYEK VOWEL SIGN VISARGA
|
||||
AAF6 ; Meetei_Mayek # Mn MEETEI MAYEK VIRAMA
|
||||
ABC0..ABE2 ; Meetei_Mayek # Lo [35] MEETEI MAYEK LETTER KOK..MEETEI MAYEK LETTER I LONSUM
|
||||
ABE3..ABE4 ; Meetei_Mayek # Mc [2] MEETEI MAYEK VOWEL SIGN ONAP..MEETEI MAYEK VOWEL SIGN INAP
|
||||
ABE5 ; Meetei_Mayek # Mn MEETEI MAYEK VOWEL SIGN ANAP
|
||||
@ -1951,7 +2003,7 @@ ABEC ; Meetei_Mayek # Mc MEETEI MAYEK LUM IYEK
|
||||
ABED ; Meetei_Mayek # Mn MEETEI MAYEK APUN IYEK
|
||||
ABF0..ABF9 ; Meetei_Mayek # Nd [10] MEETEI MAYEK DIGIT ZERO..MEETEI MAYEK DIGIT NINE
|
||||
|
||||
# Total code points: 56
|
||||
# Total code points: 79
|
||||
|
||||
# ================================================
|
||||
|
||||
@ -2040,4 +2092,74 @@ ABF0..ABF9 ; Meetei_Mayek # Nd [10] MEETEI MAYEK DIGIT ZERO..MEETEI MAYEK DI
|
||||
|
||||
# Total code points: 29
|
||||
|
||||
# ================================================
|
||||
|
||||
11100..11102 ; Chakma # Mn [3] CHAKMA SIGN CANDRABINDU..CHAKMA SIGN VISARGA
|
||||
11103..11126 ; Chakma # Lo [36] CHAKMA LETTER AA..CHAKMA LETTER HAA
|
||||
11127..1112B ; Chakma # Mn [5] CHAKMA VOWEL SIGN A..CHAKMA VOWEL SIGN UU
|
||||
1112C ; Chakma # Mc CHAKMA VOWEL SIGN E
|
||||
1112D..11134 ; Chakma # Mn [8] CHAKMA VOWEL SIGN AI..CHAKMA MAAYYAA
|
||||
11136..1113F ; Chakma # Nd [10] CHAKMA DIGIT ZERO..CHAKMA DIGIT NINE
|
||||
11140..11143 ; Chakma # Po [4] CHAKMA SECTION MARK..CHAKMA QUESTION MARK
|
||||
|
||||
# Total code points: 67
|
||||
|
||||
# ================================================
|
||||
|
||||
109A0..109B7 ; Meroitic_Cursive # Lo [24] MEROITIC CURSIVE LETTER A..MEROITIC CURSIVE LETTER DA
|
||||
109BE..109BF ; Meroitic_Cursive # Lo [2] MEROITIC CURSIVE LOGOGRAM RMT..MEROITIC CURSIVE LOGOGRAM IMN
|
||||
|
||||
# Total code points: 26
|
||||
|
||||
# ================================================
|
||||
|
||||
10980..1099F ; Meroitic_Hieroglyphs # Lo [32] MEROITIC HIEROGLYPHIC LETTER A..MEROITIC HIEROGLYPHIC SYMBOL VIDJ-2
|
||||
|
||||
# Total code points: 32
|
||||
|
||||
# ================================================
|
||||
|
||||
16F00..16F44 ; Miao # Lo [69] MIAO LETTER PA..MIAO LETTER HHA
|
||||
16F50 ; Miao # Lo MIAO LETTER NASALIZATION
|
||||
16F51..16F7E ; Miao # Mc [46] MIAO SIGN ASPIRATION..MIAO VOWEL SIGN NG
|
||||
16F8F..16F92 ; Miao # Mn [4] MIAO TONE RIGHT..MIAO TONE BELOW
|
||||
16F93..16F9F ; Miao # Lm [13] MIAO LETTER TONE-2..MIAO LETTER REFORMED TONE-8
|
||||
|
||||
# Total code points: 133
|
||||
|
||||
# ================================================
|
||||
|
||||
11180..11181 ; Sharada # Mn [2] SHARADA SIGN CANDRABINDU..SHARADA SIGN ANUSVARA
|
||||
11182 ; Sharada # Mc SHARADA SIGN VISARGA
|
||||
11183..111B2 ; Sharada # Lo [48] SHARADA LETTER A..SHARADA LETTER HA
|
||||
111B3..111B5 ; Sharada # Mc [3] SHARADA VOWEL SIGN AA..SHARADA VOWEL SIGN II
|
||||
111B6..111BE ; Sharada # Mn [9] SHARADA VOWEL SIGN U..SHARADA VOWEL SIGN O
|
||||
111BF..111C0 ; Sharada # Mc [2] SHARADA VOWEL SIGN AU..SHARADA SIGN VIRAMA
|
||||
111C1..111C4 ; Sharada # Lo [4] SHARADA SIGN AVAGRAHA..SHARADA OM
|
||||
111C5..111C8 ; Sharada # Po [4] SHARADA DANDA..SHARADA SEPARATOR
|
||||
111D0..111D9 ; Sharada # Nd [10] SHARADA DIGIT ZERO..SHARADA DIGIT NINE
|
||||
|
||||
# Total code points: 83
|
||||
|
||||
# ================================================
|
||||
|
||||
110D0..110E8 ; Sora_Sompeng # Lo [25] SORA SOMPENG LETTER SAH..SORA SOMPENG LETTER MAE
|
||||
110F0..110F9 ; Sora_Sompeng # Nd [10] SORA SOMPENG DIGIT ZERO..SORA SOMPENG DIGIT NINE
|
||||
|
||||
# Total code points: 35
|
||||
|
||||
# ================================================
|
||||
|
||||
11680..116AA ; Takri # Lo [43] TAKRI LETTER A..TAKRI LETTER RRA
|
||||
116AB ; Takri # Mn TAKRI SIGN ANUSVARA
|
||||
116AC ; Takri # Mc TAKRI SIGN VISARGA
|
||||
116AD ; Takri # Mn TAKRI VOWEL SIGN AA
|
||||
116AE..116AF ; Takri # Mc [2] TAKRI VOWEL SIGN I..TAKRI VOWEL SIGN II
|
||||
116B0..116B5 ; Takri # Mn [6] TAKRI VOWEL SIGN U..TAKRI VOWEL SIGN AU
|
||||
116B6 ; Takri # Mc TAKRI SIGN VIRAMA
|
||||
116B7 ; Takri # Mn TAKRI SIGN NUKTA
|
||||
116C0..116C9 ; Takri # Nd [10] TAKRI DIGIT ZERO..TAKRI DIGIT NINE
|
||||
|
||||
# Total code points: 66
|
||||
|
||||
# EOF
|
||||
|
@ -1,8 +1,8 @@
|
||||
# SpecialCasing-6.0.0.txt
|
||||
# Date: 2010-05-18, 00:49:39 GMT [MD]
|
||||
# SpecialCasing-6.1.0.txt
|
||||
# Date: 2011-11-27, 05:10:51 GMT [MD]
|
||||
#
|
||||
# Unicode Character Database
|
||||
# Copyright (c) 1991-2010 Unicode, Inc.
|
||||
# Copyright (c) 1991-2011 Unicode, Inc.
|
||||
# For terms of use, see http://www.unicode.org/terms_of_use.html
|
||||
# For documentation, see http://www.unicode.org/reports/tr44/
|
||||
#
|
||||
@ -47,7 +47,9 @@
|
||||
# * Additional contexts
|
||||
# * Additional fields
|
||||
# ================================================================================
|
||||
# @missing 0000..10FFFF; <slc>; <stc>; <suc>
|
||||
|
||||
# @missing: 0000..10FFFF; <slc>; <stc>; <suc>;
|
||||
|
||||
# ================================================================================
|
||||
# Unconditional mappings
|
||||
# ================================================================================
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1 +1 @@
|
||||
6.0.0
|
||||
6.1.0
|
||||
|
@ -157,7 +157,10 @@ class _AppEventHandler {
|
||||
}
|
||||
});
|
||||
} 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);
|
||||
}
|
||||
}
|
||||
|
||||
|
47
jdk/src/macosx/classes/java/lang/ClassLoaderHelper.java
Normal file
47
jdk/src/macosx/classes/java/lang/ClassLoaderHelper.java
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
* 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. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
package java.lang;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
class ClassLoaderHelper {
|
||||
|
||||
private ClassLoaderHelper() {}
|
||||
|
||||
/**
|
||||
* Returns an alternate path name for the given file
|
||||
* such that if the original pathname did not exist, then the
|
||||
* file may be located at the alternate location.
|
||||
* For mac, this replaces the final .dylib suffix with .jnilib
|
||||
*/
|
||||
static File mapAlternativeName(File lib) {
|
||||
String name = lib.toString();
|
||||
int index = name.lastIndexOf('.');
|
||||
if (index < 0) {
|
||||
return null;
|
||||
}
|
||||
return new File(name.substring(0, index) + ".jnilib");
|
||||
}
|
||||
}
|
@ -29,6 +29,7 @@ import java.awt.BufferCapabilities.FlipContents;
|
||||
import java.awt.*;
|
||||
import java.awt.Dialog.ModalityType;
|
||||
import java.awt.event.*;
|
||||
import java.awt.peer.WindowPeer;
|
||||
import java.beans.*;
|
||||
import java.util.List;
|
||||
|
||||
@ -202,6 +203,9 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
||||
private LWWindowPeer peer;
|
||||
private CPlatformView contentView;
|
||||
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) {
|
||||
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.
|
||||
{
|
||||
final boolean undecorated = isFrame ? ((Frame)target).isUndecorated() : (isDialog ? ((Dialog)target).isUndecorated() : true);
|
||||
if (undecorated) styleBits = SET(styleBits, DECORATED, false);
|
||||
this.undecorated = isFrame ? ((Frame)target).isUndecorated() : (isDialog ? ((Dialog)target).isUndecorated() : true);
|
||||
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
|
||||
@ -466,19 +470,62 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
||||
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
|
||||
public void setVisible(boolean visible) {
|
||||
final long nsWindowPtr = getNSWindowPtr();
|
||||
|
||||
if (owner != null) {
|
||||
if (!visible) {
|
||||
// 1. Process parent-child relationship when hiding
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
// 2. Configure stuff
|
||||
updateIconImages();
|
||||
updateFocusabilityForAutoRequestFocus(false);
|
||||
|
||||
// 3. Manage the extended state when hiding
|
||||
if (!visible) {
|
||||
// Cancel out the current native state of the window
|
||||
switch (peer.getState()) {
|
||||
@ -486,11 +533,12 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
||||
CWrapper.NSWindow.deminiaturize(nsWindowPtr);
|
||||
break;
|
||||
case Frame.MAXIMIZED_BOTH:
|
||||
CWrapper.NSWindow.zoom(nsWindowPtr);
|
||||
zoom();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// 4. Actually show or hide the window
|
||||
LWWindowPeer blocker = peer.getBlocker();
|
||||
if (blocker == null || !visible) {
|
||||
// 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,
|
||||
((CPlatformWindow)blocker.getPlatformWindow()).getNSWindowPtr());
|
||||
}
|
||||
this.visible = visible;
|
||||
|
||||
// 5. Manage the extended state when showing
|
||||
if (visible) {
|
||||
// Re-apply the extended state as expected in shared code
|
||||
if (target instanceof Frame) {
|
||||
@ -526,23 +576,41 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
||||
CWrapper.NSWindow.miniaturize(nsWindowPtr);
|
||||
break;
|
||||
case Frame.MAXIMIZED_BOTH:
|
||||
CWrapper.NSWindow.zoom(nsWindowPtr);
|
||||
zoom();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 6. Configure stuff #2
|
||||
updateFocusabilityForAutoRequestFocus(true);
|
||||
|
||||
if (owner != null) {
|
||||
if (visible) {
|
||||
// 7. Manage parent-child relationship when showing
|
||||
if (visible) {
|
||||
// 7a. Add myself as a child
|
||||
if (owner != null && owner.isVisible()) {
|
||||
CWrapper.NSWindow.addChildWindow(owner.getNSWindowPtr(), nsWindowPtr, CWrapper.NSWindow.NSWindowAbove);
|
||||
if (target.isAlwaysOnTop()) {
|
||||
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) {
|
||||
// Make sure the blocker is above its siblings
|
||||
((CPlatformWindow)blocker.getPlatformWindow()).orderAboveSiblings();
|
||||
@ -692,7 +760,7 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
||||
if (prevWindowState == Frame.MAXIMIZED_BOTH) {
|
||||
// let's return into the normal states first
|
||||
// the zoom call toggles between the normal and the max states
|
||||
CWrapper.NSWindow.zoom(nsWindowPtr);
|
||||
zoom();
|
||||
}
|
||||
CWrapper.NSWindow.miniaturize(nsWindowPtr);
|
||||
break;
|
||||
@ -701,14 +769,14 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
||||
// let's return into the normal states first
|
||||
CWrapper.NSWindow.deminiaturize(nsWindowPtr);
|
||||
}
|
||||
CWrapper.NSWindow.zoom(nsWindowPtr);
|
||||
zoom();
|
||||
break;
|
||||
case Frame.NORMAL:
|
||||
if (prevWindowState == Frame.ICONIFIED) {
|
||||
CWrapper.NSWindow.deminiaturize(nsWindowPtr);
|
||||
} else if (prevWindowState == Frame.MAXIMIZED_BOTH) {
|
||||
// the zoom call toggles between the normal and the max states
|
||||
CWrapper.NSWindow.zoom(nsWindowPtr);
|
||||
zoom();
|
||||
}
|
||||
break;
|
||||
default:
|
||||
@ -849,15 +917,23 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
||||
return;
|
||||
}
|
||||
|
||||
// Recursively pop up the windows from the very bottom so that only
|
||||
// the very top-most one becomes the main window
|
||||
owner.orderAboveSiblings();
|
||||
// NOTE: the logic will fail if we have a hierarchy like:
|
||||
// visible root owner
|
||||
// invisible owner
|
||||
// visible dialog
|
||||
// However, this is an unlikely scenario for real life apps
|
||||
if (owner.isVisible()) {
|
||||
// Recursively pop up the windows from the very bottom so that only
|
||||
// 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()) {
|
||||
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:^(){
|
||||
AWT_ASSERT_APPKIT_THREAD;
|
||||
|
||||
if (![theKeyEquivalent isEqualToString:@""]) {
|
||||
[fMenuItem setKeyEquivalent:theKeyEquivalent];
|
||||
[fMenuItem setKeyEquivalentModifierMask:modifierMask];
|
||||
}
|
||||
[fMenuItem setKeyEquivalent:theKeyEquivalent];
|
||||
[fMenuItem setKeyEquivalentModifierMask:modifierMask];
|
||||
[fMenuItem setTitle:theLabel];
|
||||
}];
|
||||
}
|
||||
|
@ -306,6 +306,18 @@ AWT_ASSERT_APPKIT_THREAD;
|
||||
// AWT gets here AFTER +[AWTStarter appKitIsRunning:] is called.
|
||||
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 {
|
||||
@ -340,10 +352,6 @@ AWT_ASSERT_APPKIT_THREAD;
|
||||
// AppKit Application.
|
||||
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.
|
||||
if (![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
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.nameText=GTK Color Chooser
|
||||
# mnemonic as a VK_ constant
|
||||
GTKColorChooserPanel.mnemonic=71
|
||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
||||
# want an index other than would normally be underlined by
|
||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
||||
# than once and you want a character other than the first underlined.
|
||||
|
||||
# Text and mnemonics for the spinner. You can also defined a different
|
||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
||||
# represent the mnemonic.
|
||||
GTKColorChooserPanel.hueText=Hue:
|
||||
GTKColorChooserPanel.hueMnemonic=72
|
||||
|
||||
GTKColorChooserPanel.redText=Red:
|
||||
GTKColorChooserPanel.redMnemonic=69
|
||||
|
||||
GTKColorChooserPanel.saturationText=Saturation:
|
||||
GTKColorChooserPanel.saturationMnemonic=83
|
||||
|
||||
GTKColorChooserPanel.greenText=Green:
|
||||
GTKColorChooserPanel.greenMnemonic=71
|
||||
|
||||
GTKColorChooserPanel.valueText=Value:
|
||||
GTKColorChooserPanel.valueMnemonic=86
|
||||
|
||||
GTKColorChooserPanel.blueText=Blue:
|
||||
GTKColorChooserPanel.blueMnemonic=66
|
||||
|
||||
GTKColorChooserPanel.colorNameText=Color Name:
|
||||
GTKColorChooserPanel.colorNameMnemonic=78
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilterText=All Files
|
||||
FileChooser.newFolderButtonText=New Folder
|
||||
FileChooser.newFolderButtonMnemonic=78
|
||||
FileChooser.newFolderDialogText=Folder name:
|
||||
FileChooser.newFolderNoDirectoryErrorTitleText=Error
|
||||
FileChooser.newFolderNoDirectoryErrorText=Error creating directory "{0}": No such file or directory
|
||||
FileChooser.deleteFileButtonText=Delete File
|
||||
FileChooser.deleteFileButtonMnemonic=76
|
||||
FileChooser.renameFileButtonText=Rename File
|
||||
FileChooser.renameFileButtonMnemonic=82
|
||||
FileChooser.cancelButtonText=Cancel
|
||||
FileChooser.cancelButtonMnemonic=67
|
||||
FileChooser.saveButtonText=OK
|
||||
FileChooser.saveButtonMnemonic=79
|
||||
FileChooser.openButtonText=OK
|
||||
FileChooser.openButtonMnemonic=79
|
||||
FileChooser.saveDialogTitleText=Save
|
||||
FileChooser.openDialogTitleText=Open
|
||||
FileChooser.pathLabelText=Selection:
|
||||
FileChooser.filterLabelText=Filter:
|
||||
FileChooser.pathLabelMnemonic=83
|
||||
FileChooser.foldersLabelText=Folders
|
||||
FileChooser.foldersLabelMnemonic=68
|
||||
FileChooser.filesLabelText=Files
|
||||
FileChooser.filesLabelMnemonic=70
|
||||
|
||||
FileChooser.cancelButtonToolTipText=Abort file chooser dialog.
|
||||
FileChooser.saveButtonToolTipText=Save selected file.
|
||||
FileChooser.openButtonToolTipText=Open selected file.
|
||||
|
||||
FileChooser.renameFileDialogText=Rename file "{0}" to
|
||||
FileChooser.renameFileErrorTitle=Error
|
||||
FileChooser.renameFileErrorText=Error renaming file "{0}" to "{1}"
|
||||
|
||||
OptionPane.okButtonMnemonic=79
|
||||
OptionPane.cancelButtonMnemonic=67
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.textAndMnemonic=>K Color Chooser
|
||||
# mnemonic as a VK_ constant
|
||||
|
||||
GTKColorChooserPanel.hue.textAndMnemonic=&Hue:
|
||||
|
||||
GTKColorChooserPanel.red.textAndMnemonic=R&ed:
|
||||
|
||||
GTKColorChooserPanel.saturation.textAndMnemonic=&Saturation:
|
||||
|
||||
GTKColorChooserPanel.green.textAndMnemonic=&Green:
|
||||
|
||||
GTKColorChooserPanel.value.textAndMnemonic=&Value:
|
||||
|
||||
GTKColorChooserPanel.blue.textAndMnemonic=&Blue:
|
||||
|
||||
GTKColorChooserPanel.color.textAndMnemonic=Color &Name:
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=All Files
|
||||
FileChooser.newFolderButton.textAndMnemonic=&New Folder
|
||||
FileChooser.newFolderDialog.textAndMnemonic=Folder name:
|
||||
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Error
|
||||
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Error creating directory "{0}": No such file or directory
|
||||
FileChooser.deleteFileButton.textAndMnemonic=De&lete File
|
||||
FileChooser.renameFileButton.textAndMnemonic=&Rename File
|
||||
FileChooser.cancelButton.textAndMnemonic=&Cancel
|
||||
FileChooser.saveButton.textAndMnemonic=&OK
|
||||
FileChooser.openButton.textAndMnemonic=&OK
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=Save
|
||||
FileChooser.openDialogTitle.textAndMnemonic=Open
|
||||
FileChooser.pathLabel.textAndMnemonic=&Selection:
|
||||
FileChooser.filterLabel.textAndMnemonic=Filter:
|
||||
FileChooser.foldersLabel.textAndMnemonic=Fol&ders
|
||||
FileChooser.filesLabel.textAndMnemonic=&Files
|
||||
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Abort file chooser dialog.
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=Save selected file.
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=Open selected file.
|
||||
|
||||
FileChooser.renameFileDialog.textAndMnemonic=Rename file "{0}" to
|
||||
FileChooser.renameFileError.titleAndMnemonic=Error
|
||||
FileChooser.renameFileError.textAndMnemonic=Error renaming file "{0}" to "{1}"
|
||||
|
||||
|
@ -1,88 +1,59 @@
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.nameText=GTK-Farbauswahl
|
||||
# mnemonic as a VK_ constant
|
||||
GTKColorChooserPanel.mnemonic=71
|
||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
||||
# want an index other than would normally be underlined by
|
||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
||||
# than once and you want a character other than the first underlined.
|
||||
|
||||
# Text and mnemonics for the spinner. You can also defined a different
|
||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
||||
# represent the mnemonic.
|
||||
GTKColorChooserPanel.hueText=Farbton:
|
||||
GTKColorChooserPanel.hueMnemonic=70
|
||||
|
||||
GTKColorChooserPanel.redText=Rot:
|
||||
GTKColorChooserPanel.redMnemonic=82
|
||||
|
||||
GTKColorChooserPanel.saturationText=S\u00E4ttigung:
|
||||
GTKColorChooserPanel.saturationMnemonic=83
|
||||
|
||||
GTKColorChooserPanel.greenText=Gr\u00FCn:
|
||||
GTKColorChooserPanel.greenMnemonic=71
|
||||
|
||||
GTKColorChooserPanel.valueText=Wert:
|
||||
GTKColorChooserPanel.valueMnemonic=87
|
||||
|
||||
GTKColorChooserPanel.blueText=Blau:
|
||||
GTKColorChooserPanel.blueMnemonic=66
|
||||
|
||||
GTKColorChooserPanel.colorNameText=Farbname:
|
||||
GTKColorChooserPanel.colorNameMnemonic=78
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilterText=Alle Dateien
|
||||
FileChooser.newFolderButtonText=Neuer Ordner
|
||||
FileChooser.newFolderButtonMnemonic=78
|
||||
FileChooser.newFolderDialogText=Ordnername:
|
||||
FileChooser.newFolderNoDirectoryErrorTitleText=Fehler
|
||||
FileChooser.newFolderNoDirectoryErrorText=Fehler beim Erstellen von Verzeichnis "{0}": Datei oder Verzeichnis nicht vorhanden
|
||||
FileChooser.deleteFileButtonText=Datei l\u00F6schen
|
||||
FileChooser.deleteFileButtonMnemonic=76
|
||||
FileChooser.renameFileButtonText=Datei umbenennen
|
||||
FileChooser.renameFileButtonMnemonic=85
|
||||
FileChooser.cancelButtonText=Abbrechen
|
||||
FileChooser.cancelButtonMnemonic=65
|
||||
FileChooser.saveButtonText=OK
|
||||
FileChooser.saveButtonMnemonic=79
|
||||
FileChooser.openButtonText=OK
|
||||
FileChooser.openButtonMnemonic=79
|
||||
FileChooser.saveDialogTitleText=Speichern
|
||||
FileChooser.openDialogTitleText=\u00D6ffnen
|
||||
FileChooser.pathLabelText=Auswahl:
|
||||
FileChooser.filterLabelText=Filter:
|
||||
FileChooser.pathLabelMnemonic=87
|
||||
FileChooser.foldersLabelText=Ordner
|
||||
FileChooser.foldersLabelMnemonic=79
|
||||
FileChooser.filesLabelText=Dateien
|
||||
FileChooser.filesLabelMnemonic=68
|
||||
|
||||
FileChooser.cancelButtonToolTipText=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen.
|
||||
FileChooser.saveButtonToolTipText=Ausgew\u00E4hlte Datei speichern.
|
||||
FileChooser.openButtonToolTipText=Ausgew\u00E4hlte Datei \u00F6ffnen.
|
||||
|
||||
FileChooser.renameFileDialogText=Datei "{0}" umbenennen in
|
||||
FileChooser.renameFileErrorTitle=Fehler
|
||||
FileChooser.renameFileErrorText=Fehler beim Umbenennen der Datei "{0}" in "{1}"
|
||||
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.okButtonText=OK
|
||||
OptionPane.okButtonMnemonic=79
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.cancelButtonText=Abbrechen
|
||||
OptionPane.cancelButtonMnemonic=65
|
||||
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.textAndMnemonic=>K-Farbauswahl
|
||||
# mnemonic as a VK_ constant
|
||||
|
||||
GTKColorChooserPanel.hue.textAndMnemonic=&Farbton:
|
||||
|
||||
GTKColorChooserPanel.red.textAndMnemonic=&Rot:
|
||||
|
||||
GTKColorChooserPanel.saturation.textAndMnemonic=S\u00E4ttigung(&S):
|
||||
|
||||
GTKColorChooserPanel.green.textAndMnemonic=Gr\u00FCn(&G):
|
||||
|
||||
GTKColorChooserPanel.value.textAndMnemonic=&Wert:
|
||||
|
||||
GTKColorChooserPanel.blue.textAndMnemonic=&Blau:
|
||||
|
||||
GTKColorChooserPanel.color.textAndMnemonic=Farb&name:
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=Alle Dateien
|
||||
FileChooser.newFolderButton.textAndMnemonic=&Neuer Ordner
|
||||
FileChooser.newFolderDialog.textAndMnemonic=Ordnername:
|
||||
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Fehler
|
||||
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Fehler beim Erstellen von Verzeichnis "{0}": Datei oder Verzeichnis nicht vorhanden
|
||||
FileChooser.deleteFileButton.textAndMnemonic=Datei l\u00F6schen(&L)
|
||||
FileChooser.renameFileButton.textAndMnemonic=Datei &umbenennen
|
||||
FileChooser.cancelButton.textAndMnemonic=&Abbrechen
|
||||
FileChooser.saveButton.textAndMnemonic=&OK
|
||||
FileChooser.openButton.textAndMnemonic=&OK
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=Speichern
|
||||
FileChooser.openDialogTitle.textAndMnemonic=\u00D6ffnen
|
||||
FileChooser.pathLabel.textAndMnemonic=Aus&wahl:
|
||||
FileChooser.filterLabel.textAndMnemonic=Filter:
|
||||
FileChooser.foldersLabel.textAndMnemonic=&Ordner
|
||||
FileChooser.filesLabel.textAndMnemonic=&Dateien
|
||||
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen.
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei speichern.
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei \u00F6ffnen.
|
||||
|
||||
FileChooser.renameFileDialog.textAndMnemonic=Datei "{0}" umbenennen in
|
||||
FileChooser.renameFileError.titleAndMnemonic=Fehler
|
||||
FileChooser.renameFileError.textAndMnemonic=Fehler beim Umbenennen der Datei "{0}" in "{1}"
|
||||
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.okButton.textAndMnemonic=&OK
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.cancelButton.textAndMnemonic=&Abbrechen
|
||||
|
||||
|
@ -1,88 +1,59 @@
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.nameText=Selector de Color para GTK
|
||||
# mnemonic as a VK_ constant
|
||||
GTKColorChooserPanel.mnemonic=71
|
||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
||||
# want an index other than would normally be underlined by
|
||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
||||
# than once and you want a character other than the first underlined.
|
||||
|
||||
# Text and mnemonics for the spinner. You can also defined a different
|
||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
||||
# represent the mnemonic.
|
||||
GTKColorChooserPanel.hueText=Mat:
|
||||
GTKColorChooserPanel.hueMnemonic=77
|
||||
|
||||
GTKColorChooserPanel.redText=Rojo:
|
||||
GTKColorChooserPanel.redMnemonic=74
|
||||
|
||||
GTKColorChooserPanel.saturationText=Saturaci\u00F3n:
|
||||
GTKColorChooserPanel.saturationMnemonic=83
|
||||
|
||||
GTKColorChooserPanel.greenText=Verde:
|
||||
GTKColorChooserPanel.greenMnemonic=69
|
||||
|
||||
GTKColorChooserPanel.valueText=Valor:
|
||||
GTKColorChooserPanel.valueMnemonic=86
|
||||
|
||||
GTKColorChooserPanel.blueText=Azul:
|
||||
GTKColorChooserPanel.blueMnemonic=65
|
||||
|
||||
GTKColorChooserPanel.colorNameText=Nombre del Color:
|
||||
GTKColorChooserPanel.colorNameMnemonic=78
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilterText=Todos los Archivos
|
||||
FileChooser.newFolderButtonText=Nueva Carpeta
|
||||
FileChooser.newFolderButtonMnemonic=78
|
||||
FileChooser.newFolderDialogText=Nombre de la Carpeta:
|
||||
FileChooser.newFolderNoDirectoryErrorTitleText=Error
|
||||
FileChooser.newFolderNoDirectoryErrorText=Error al crear el directorio "{0}": no existe dicho archivo o directorio
|
||||
FileChooser.deleteFileButtonText=Suprimir Archivo
|
||||
FileChooser.deleteFileButtonMnemonic=80
|
||||
FileChooser.renameFileButtonText=Cambiar Nombre de Archivo
|
||||
FileChooser.renameFileButtonMnemonic=82
|
||||
FileChooser.cancelButtonText=Cancelar
|
||||
FileChooser.cancelButtonMnemonic=67
|
||||
FileChooser.saveButtonText=Aceptar
|
||||
FileChooser.saveButtonMnemonic=65
|
||||
FileChooser.openButtonText=Aceptar
|
||||
FileChooser.openButtonMnemonic=65
|
||||
FileChooser.saveDialogTitleText=Guardar
|
||||
FileChooser.openDialogTitleText=Abrir
|
||||
FileChooser.pathLabelText=Selecci\u00F3n:
|
||||
FileChooser.filterLabelText=Filtro:
|
||||
FileChooser.pathLabelMnemonic=83
|
||||
FileChooser.foldersLabelText=Carpetas
|
||||
FileChooser.foldersLabelMnemonic=84
|
||||
FileChooser.filesLabelText=Archivos
|
||||
FileChooser.filesLabelMnemonic=65
|
||||
|
||||
FileChooser.cancelButtonToolTipText=Abortar cuadro de di\u00E1logo del selector de archivos.
|
||||
FileChooser.saveButtonToolTipText=Guardar el archivo seleccionado.
|
||||
FileChooser.openButtonToolTipText=Abrir el archivo seleccionado.
|
||||
|
||||
FileChooser.renameFileDialogText=Cambiar el nombre del archivo "{0}" por
|
||||
FileChooser.renameFileErrorTitle=Error
|
||||
FileChooser.renameFileErrorText=Error al cambiar el nombre del archivo "{0}" a "{1}"
|
||||
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.okButtonText=Aceptar
|
||||
OptionPane.okButtonMnemonic=65
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.cancelButtonText=Cancelar
|
||||
OptionPane.cancelButtonMnemonic=67
|
||||
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.textAndMnemonic=Selector de Color para >K
|
||||
# mnemonic as a VK_ constant
|
||||
|
||||
GTKColorChooserPanel.hue.textAndMnemonic=&Mat:
|
||||
|
||||
GTKColorChooserPanel.red.textAndMnemonic=Ro&jo:
|
||||
|
||||
GTKColorChooserPanel.saturation.textAndMnemonic=Saturaci\u00F3n(&S):
|
||||
|
||||
GTKColorChooserPanel.green.textAndMnemonic=V&erde:
|
||||
|
||||
GTKColorChooserPanel.value.textAndMnemonic=&Valor:
|
||||
|
||||
GTKColorChooserPanel.blue.textAndMnemonic=&Azul:
|
||||
|
||||
GTKColorChooserPanel.color.textAndMnemonic=&Nombre del Color:
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=Todos los Archivos
|
||||
FileChooser.newFolderButton.textAndMnemonic=&Nueva Carpeta
|
||||
FileChooser.newFolderDialog.textAndMnemonic=Nombre de la Carpeta:
|
||||
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Error
|
||||
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Error al crear el directorio "{0}": no existe dicho archivo o directorio
|
||||
FileChooser.deleteFileButton.textAndMnemonic=Su&primir Archivo
|
||||
FileChooser.renameFileButton.textAndMnemonic=Cambia&r Nombre de Archivo
|
||||
FileChooser.cancelButton.textAndMnemonic=&Cancelar
|
||||
FileChooser.saveButton.textAndMnemonic=&Aceptar
|
||||
FileChooser.openButton.textAndMnemonic=&Aceptar
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=Guardar
|
||||
FileChooser.openDialogTitle.textAndMnemonic=Abrir
|
||||
FileChooser.pathLabel.textAndMnemonic=Selecci\u00F3n(&S):
|
||||
FileChooser.filterLabel.textAndMnemonic=Filtro:
|
||||
FileChooser.foldersLabel.textAndMnemonic=Carpe&tas
|
||||
FileChooser.filesLabel.textAndMnemonic=&Archivos
|
||||
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Abortar cuadro de di\u00E1logo del selector de archivos.
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=Guardar el archivo seleccionado.
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=Abrir el archivo seleccionado.
|
||||
|
||||
FileChooser.renameFileDialog.textAndMnemonic=Cambiar el nombre del archivo "{0}" por
|
||||
FileChooser.renameFileError.titleAndMnemonic=Error
|
||||
FileChooser.renameFileError.textAndMnemonic=Error al cambiar el nombre del archivo "{0}" a "{1}"
|
||||
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.okButton.textAndMnemonic=&Aceptar
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.cancelButton.textAndMnemonic=&Cancelar
|
||||
|
||||
|
@ -1,88 +1,59 @@
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.nameText=S\u00E9lecteur de couleurs GTK
|
||||
# mnemonic as a VK_ constant
|
||||
GTKColorChooserPanel.mnemonic=71
|
||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
||||
# want an index other than would normally be underlined by
|
||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
||||
# than once and you want a character other than the first underlined.
|
||||
|
||||
# Text and mnemonics for the spinner. You can also defined a different
|
||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
||||
# represent the mnemonic.
|
||||
GTKColorChooserPanel.hueText=Teinte :
|
||||
GTKColorChooserPanel.hueMnemonic=84
|
||||
|
||||
GTKColorChooserPanel.redText=Rouge\u00A0:
|
||||
GTKColorChooserPanel.redMnemonic=69
|
||||
|
||||
GTKColorChooserPanel.saturationText=Saturation :
|
||||
GTKColorChooserPanel.saturationMnemonic=83
|
||||
|
||||
GTKColorChooserPanel.greenText=Vert :
|
||||
GTKColorChooserPanel.greenMnemonic=69
|
||||
|
||||
GTKColorChooserPanel.valueText=Valeur :
|
||||
GTKColorChooserPanel.valueMnemonic=86
|
||||
|
||||
GTKColorChooserPanel.blueText=Bleu :
|
||||
GTKColorChooserPanel.blueMnemonic=66
|
||||
|
||||
GTKColorChooserPanel.colorNameText=Nom de couleur :
|
||||
GTKColorChooserPanel.colorNameMnemonic=78
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilterText=Tous les fichiers
|
||||
FileChooser.newFolderButtonText=Nouveau dossier
|
||||
FileChooser.newFolderButtonMnemonic=78
|
||||
FileChooser.newFolderDialogText=Nom du dossier :
|
||||
FileChooser.newFolderNoDirectoryErrorTitleText=Erreur
|
||||
FileChooser.newFolderNoDirectoryErrorText=Erreur lors de la cr\u00E9ation du r\u00E9pertoire "{0}" : ce fichier ou r\u00E9pertoire n''existe pas
|
||||
FileChooser.deleteFileButtonText=Supprimer le fichier
|
||||
FileChooser.deleteFileButtonMnemonic=76
|
||||
FileChooser.renameFileButtonText=Renommer le fichier
|
||||
FileChooser.renameFileButtonMnemonic=82
|
||||
FileChooser.cancelButtonText=Annuler
|
||||
FileChooser.cancelButtonMnemonic=65
|
||||
FileChooser.saveButtonText=OK
|
||||
FileChooser.saveButtonMnemonic=79
|
||||
FileChooser.openButtonText=OK
|
||||
FileChooser.openButtonMnemonic=79
|
||||
FileChooser.saveDialogTitleText=Enregistrer
|
||||
FileChooser.openDialogTitleText=Ouvrir
|
||||
FileChooser.pathLabelText=S\u00E9lection :
|
||||
FileChooser.filterLabelText=Filtre :
|
||||
FileChooser.pathLabelMnemonic=83
|
||||
FileChooser.foldersLabelText=Dossiers
|
||||
FileChooser.foldersLabelMnemonic=68
|
||||
FileChooser.filesLabelText=Fichiers
|
||||
FileChooser.filesLabelMnemonic=70
|
||||
|
||||
FileChooser.cancelButtonToolTipText=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers.
|
||||
FileChooser.saveButtonToolTipText=Enregistre le fichier s\u00E9lectionn\u00E9.
|
||||
FileChooser.openButtonToolTipText=Ouvre le fichier s\u00E9lectionn\u00E9.
|
||||
|
||||
FileChooser.renameFileDialogText=Renomme le fichier "{0}" en
|
||||
FileChooser.renameFileErrorTitle=Erreur
|
||||
FileChooser.renameFileErrorText=Erreur lors du changement de nom du fichier "{0}" en "{1}"
|
||||
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.okButtonText=OK
|
||||
OptionPane.okButtonMnemonic=79
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.cancelButtonText=Annuler
|
||||
OptionPane.cancelButtonMnemonic=65
|
||||
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.textAndMnemonic=S\u00E9lecteur de couleurs GTK(&G)
|
||||
# mnemonic as a VK_ constant
|
||||
|
||||
GTKColorChooserPanel.hue.textAndMnemonic=&Teinte :
|
||||
|
||||
GTKColorChooserPanel.red.textAndMnemonic=Rouge\u00A0(&E):
|
||||
|
||||
GTKColorChooserPanel.saturation.textAndMnemonic=&Saturation :
|
||||
|
||||
GTKColorChooserPanel.green.textAndMnemonic=V&ert :
|
||||
|
||||
GTKColorChooserPanel.value.textAndMnemonic=&Valeur :
|
||||
|
||||
GTKColorChooserPanel.blue.textAndMnemonic=&Bleu :
|
||||
|
||||
GTKColorChooserPanel.color.textAndMnemonic=&Nom de couleur :
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=Tous les fichiers
|
||||
FileChooser.newFolderButton.textAndMnemonic=&Nouveau dossier
|
||||
FileChooser.newFolderDialog.textAndMnemonic=Nom du dossier :
|
||||
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
|
||||
FileChooser.deleteFileButton.textAndMnemonic=Supprimer &le fichier
|
||||
FileChooser.renameFileButton.textAndMnemonic=&Renommer le fichier
|
||||
FileChooser.cancelButton.textAndMnemonic=&Annuler
|
||||
FileChooser.saveButton.textAndMnemonic=&OK
|
||||
FileChooser.openButton.textAndMnemonic=&OK
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=Enregistrer
|
||||
FileChooser.openDialogTitle.textAndMnemonic=Ouvrir
|
||||
FileChooser.pathLabel.textAndMnemonic=S\u00E9lection (&S):
|
||||
FileChooser.filterLabel.textAndMnemonic=Filtre :
|
||||
FileChooser.foldersLabel.textAndMnemonic=&Dossiers
|
||||
FileChooser.filesLabel.textAndMnemonic=&Fichiers
|
||||
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers.
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=Enregistre le fichier s\u00E9lectionn\u00E9.
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=Ouvre le fichier s\u00E9lectionn\u00E9.
|
||||
|
||||
FileChooser.renameFileDialog.textAndMnemonic=Renomme le fichier "{0}" en
|
||||
FileChooser.renameFileError.titleAndMnemonic=Erreur
|
||||
FileChooser.renameFileError.textAndMnemonic=Erreur lors du changement de nom du fichier "{0}" en "{1}"
|
||||
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.okButton.textAndMnemonic=&OK
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.cancelButton.textAndMnemonic=&Annuler
|
||||
|
||||
|
@ -1,88 +1,59 @@
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.nameText=Selezione colore GTK
|
||||
# mnemonic as a VK_ constant
|
||||
GTKColorChooserPanel.mnemonic=71
|
||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
||||
# want an index other than would normally be underlined by
|
||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
||||
# than once and you want a character other than the first underlined.
|
||||
|
||||
# Text and mnemonics for the spinner. You can also defined a different
|
||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
||||
# represent the mnemonic.
|
||||
GTKColorChooserPanel.hueText=Ton.:
|
||||
GTKColorChooserPanel.hueMnemonic=84
|
||||
|
||||
GTKColorChooserPanel.redText=Rosso:
|
||||
GTKColorChooserPanel.redMnemonic=79
|
||||
|
||||
GTKColorChooserPanel.saturationText=Saturazione:
|
||||
GTKColorChooserPanel.saturationMnemonic=83
|
||||
|
||||
GTKColorChooserPanel.greenText=Verde:
|
||||
GTKColorChooserPanel.greenMnemonic=69
|
||||
|
||||
GTKColorChooserPanel.valueText=Valore:
|
||||
GTKColorChooserPanel.valueMnemonic=86
|
||||
|
||||
GTKColorChooserPanel.blueText=Blu:
|
||||
GTKColorChooserPanel.blueMnemonic=66
|
||||
|
||||
GTKColorChooserPanel.colorNameText=Nome colore:
|
||||
GTKColorChooserPanel.colorNameMnemonic=78
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilterText=Tutti i file
|
||||
FileChooser.newFolderButtonText=Nuova cartella
|
||||
FileChooser.newFolderButtonMnemonic=78
|
||||
FileChooser.newFolderDialogText=Nome della cartella:
|
||||
FileChooser.newFolderNoDirectoryErrorTitleText=Errore
|
||||
FileChooser.newFolderNoDirectoryErrorText=Errore durante la creazione della directory "{0}": file o directory inesistente
|
||||
FileChooser.deleteFileButtonText=Elimina file
|
||||
FileChooser.deleteFileButtonMnemonic=76
|
||||
FileChooser.renameFileButtonText=Rinomina file
|
||||
FileChooser.renameFileButtonMnemonic=82
|
||||
FileChooser.cancelButtonText=Annulla
|
||||
FileChooser.cancelButtonMnemonic=65
|
||||
FileChooser.saveButtonText=OK
|
||||
FileChooser.saveButtonMnemonic=79
|
||||
FileChooser.openButtonText=OK
|
||||
FileChooser.openButtonMnemonic=79
|
||||
FileChooser.saveDialogTitleText=Salva
|
||||
FileChooser.openDialogTitleText=Apri
|
||||
FileChooser.pathLabelText=Selezione:
|
||||
FileChooser.filterLabelText=Filtro:
|
||||
FileChooser.pathLabelMnemonic=83
|
||||
FileChooser.foldersLabelText=Cartelle
|
||||
FileChooser.foldersLabelMnemonic=84
|
||||
FileChooser.filesLabelText=File
|
||||
FileChooser.filesLabelMnemonic=70
|
||||
|
||||
FileChooser.cancelButtonToolTipText=Chiude la finestra di dialogo di selezione file.
|
||||
FileChooser.saveButtonToolTipText=Salva il file selezionato.
|
||||
FileChooser.openButtonToolTipText=Apre il file selezionato.
|
||||
|
||||
FileChooser.renameFileDialogText=Rinomina file "{0}" in
|
||||
FileChooser.renameFileErrorTitle=Errore
|
||||
FileChooser.renameFileErrorText=Errore durante la ridenominazione del file "{0}" in "{1}"
|
||||
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.okButtonText=OK
|
||||
OptionPane.okButtonMnemonic=79
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.cancelButtonText=Annulla
|
||||
OptionPane.cancelButtonMnemonic=65
|
||||
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.textAndMnemonic=Selezione colore >K
|
||||
# mnemonic as a VK_ constant
|
||||
|
||||
GTKColorChooserPanel.hue.textAndMnemonic=&Ton.:
|
||||
|
||||
GTKColorChooserPanel.red.textAndMnemonic=R&osso:
|
||||
|
||||
GTKColorChooserPanel.saturation.textAndMnemonic=&Saturazione:
|
||||
|
||||
GTKColorChooserPanel.green.textAndMnemonic=V&erde:
|
||||
|
||||
GTKColorChooserPanel.value.textAndMnemonic=&Valore:
|
||||
|
||||
GTKColorChooserPanel.blue.textAndMnemonic=&Blu:
|
||||
|
||||
GTKColorChooserPanel.color.textAndMnemonic=&Nome colore:
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=Tutti i file
|
||||
FileChooser.newFolderButton.textAndMnemonic=&Nuova cartella
|
||||
FileChooser.newFolderDialog.textAndMnemonic=Nome della cartella:
|
||||
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Errore
|
||||
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Errore durante la creazione della directory "{0}": file o directory inesistente
|
||||
FileChooser.deleteFileButton.textAndMnemonic=E&limina file
|
||||
FileChooser.renameFileButton.textAndMnemonic=&Rinomina file
|
||||
FileChooser.cancelButton.textAndMnemonic=&Annulla
|
||||
FileChooser.saveButton.textAndMnemonic=&OK
|
||||
FileChooser.openButton.textAndMnemonic=&OK
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=Salva
|
||||
FileChooser.openDialogTitle.textAndMnemonic=Apri
|
||||
FileChooser.pathLabel.textAndMnemonic=&Selezione:
|
||||
FileChooser.filterLabel.textAndMnemonic=Filtro:
|
||||
FileChooser.foldersLabel.textAndMnemonic=Car&telle
|
||||
FileChooser.filesLabel.textAndMnemonic=&File
|
||||
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Chiude la finestra di dialogo di selezione file.
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=Salva il file selezionato.
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=Apre il file selezionato.
|
||||
|
||||
FileChooser.renameFileDialog.textAndMnemonic=Rinomina file "{0}" in
|
||||
FileChooser.renameFileError.titleAndMnemonic=Errore
|
||||
FileChooser.renameFileError.textAndMnemonic=Errore durante la ridenominazione del file "{0}" in "{1}"
|
||||
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.okButton.textAndMnemonic=&OK
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.cancelButton.textAndMnemonic=&Annulla
|
||||
|
||||
|
@ -1,84 +1,55 @@
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.nameText=GTK\u30AB\u30E9\u30FC\u30FB\u30C1\u30E5\u30FC\u30B6(G)
|
||||
# mnemonic as a VK_ constant
|
||||
GTKColorChooserPanel.mnemonic=71
|
||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
||||
# want an index other than would normally be underlined by
|
||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
||||
# than once and you want a character other than the first underlined.
|
||||
|
||||
# Text and mnemonics for the spinner. You can also defined a different
|
||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
||||
# represent the mnemonic.
|
||||
GTKColorChooserPanel.hueText=\u8272\u76F8(H):
|
||||
GTKColorChooserPanel.hueMnemonic=72
|
||||
|
||||
GTKColorChooserPanel.redText=\u8D64(E):
|
||||
GTKColorChooserPanel.redMnemonic=69
|
||||
|
||||
GTKColorChooserPanel.saturationText=\u5F69\u5EA6(S):
|
||||
GTKColorChooserPanel.saturationMnemonic=83
|
||||
|
||||
GTKColorChooserPanel.greenText=\u7DD1(G):
|
||||
GTKColorChooserPanel.greenMnemonic=71
|
||||
|
||||
GTKColorChooserPanel.valueText=\u5024(V):
|
||||
GTKColorChooserPanel.valueMnemonic=86
|
||||
|
||||
GTKColorChooserPanel.blueText=\u9752(B):
|
||||
GTKColorChooserPanel.blueMnemonic=66
|
||||
|
||||
GTKColorChooserPanel.colorNameText=\u8272\u540D(N):
|
||||
GTKColorChooserPanel.colorNameMnemonic=78
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilterText=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB
|
||||
FileChooser.newFolderButtonText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0(N)
|
||||
FileChooser.newFolderButtonMnemonic=78
|
||||
FileChooser.newFolderDialogText=\u30D5\u30A9\u30EB\u30C0\u540D:
|
||||
FileChooser.newFolderNoDirectoryErrorTitleText=\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.deleteFileButtonText=\u30D5\u30A1\u30A4\u30EB\u306E\u524A\u9664(L)
|
||||
FileChooser.deleteFileButtonMnemonic=76
|
||||
FileChooser.renameFileButtonText=\u30D5\u30A1\u30A4\u30EB\u306E\u540D\u524D\u5909\u66F4(R)
|
||||
FileChooser.renameFileButtonMnemonic=82
|
||||
FileChooser.cancelButtonText=\u53D6\u6D88
|
||||
FileChooser.cancelButtonMnemonic=67
|
||||
FileChooser.saveButtonText=OK
|
||||
FileChooser.saveButtonMnemonic=79
|
||||
FileChooser.openButtonText=OK
|
||||
FileChooser.openButtonMnemonic=79
|
||||
FileChooser.saveDialogTitleText=\u4FDD\u5B58
|
||||
FileChooser.openDialogTitleText=\u958B\u304F
|
||||
FileChooser.pathLabelText=\u9078\u629E(S):
|
||||
FileChooser.filterLabelText=\u30D5\u30A3\u30EB\u30BF:
|
||||
FileChooser.pathLabelMnemonic=83
|
||||
FileChooser.foldersLabelText=\u30D5\u30A9\u30EB\u30C0(D)
|
||||
FileChooser.foldersLabelMnemonic=68
|
||||
FileChooser.filesLabelText=\u30D5\u30A1\u30A4\u30EB(F)
|
||||
FileChooser.filesLabelMnemonic=70
|
||||
|
||||
FileChooser.cancelButtonToolTipText=\u30D5\u30A1\u30A4\u30EB\u30FB\u30C1\u30E5\u30FC\u30B6\u30FB\u30C0\u30A4\u30A2\u30ED\u30B0\u3092\u7D42\u4E86\u3057\u307E\u3059\u3002
|
||||
FileChooser.saveButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059\u3002
|
||||
FileChooser.openButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059\u3002
|
||||
|
||||
FileChooser.renameFileDialogText=\u30D5\u30A1\u30A4\u30EB"{0}"\u3092\u6B21\u306E\u540D\u524D\u306B\u5909\u66F4:
|
||||
FileChooser.renameFileErrorTitle=\u30A8\u30E9\u30FC
|
||||
FileChooser.renameFileErrorText=\u30D5\u30A1\u30A4\u30EB"{0}"\u306E"{1}"\u3078\u306E\u5909\u66F4\u4E2D\u306B\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F
|
||||
|
||||
#OptionPane.okButtonMnemonic=79
|
||||
#OptionPane.cancelButtonMnemonic=67
|
||||
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.textAndMnemonic=GTK\u30AB\u30E9\u30FC\u30FB\u30C1\u30E5\u30FC\u30B6(&G)
|
||||
# mnemonic as a VK_ constant
|
||||
|
||||
GTKColorChooserPanel.hue.textAndMnemonic=\u8272\u76F8(&H):
|
||||
|
||||
GTKColorChooserPanel.red.textAndMnemonic=\u8D64(&E):
|
||||
|
||||
GTKColorChooserPanel.saturation.textAndMnemonic=\u5F69\u5EA6(&S):
|
||||
|
||||
GTKColorChooserPanel.green.textAndMnemonic=\u7DD1(&G):
|
||||
|
||||
GTKColorChooserPanel.value.textAndMnemonic=\u5024(&V):
|
||||
|
||||
GTKColorChooserPanel.blue.textAndMnemonic=\u9752(&B):
|
||||
|
||||
GTKColorChooserPanel.color.textAndMnemonic=\u8272\u540D(&N):
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB
|
||||
FileChooser.newFolderButton.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0(&N)
|
||||
FileChooser.newFolderDialog.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0\u540D:
|
||||
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
|
||||
FileChooser.deleteFileButton.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u306E\u524A\u9664(&L)
|
||||
FileChooser.renameFileButton.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u306E\u540D\u524D\u5909\u66F4(&R)
|
||||
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
|
||||
FileChooser.saveButton.textAndMnemonic=&OK
|
||||
FileChooser.openButton.textAndMnemonic=&OK
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
|
||||
FileChooser.openDialogTitle.textAndMnemonic=\u958B\u304F
|
||||
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)
|
||||
|
||||
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.saveButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059\u3002
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059\u3002
|
||||
|
||||
FileChooser.renameFileDialog.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB"{0}"\u3092\u6B21\u306E\u540D\u524D\u306B\u5909\u66F4:
|
||||
FileChooser.renameFileError.titleAndMnemonic=\u30A8\u30E9\u30FC
|
||||
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
|
||||
|
||||
|
||||
|
@ -1,84 +1,55 @@
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.nameText=GTK \uC0C9\uC0C1 \uC120\uD0DD\uAE30(G)
|
||||
# mnemonic as a VK_ constant
|
||||
GTKColorChooserPanel.mnemonic=71
|
||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
||||
# want an index other than would normally be underlined by
|
||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
||||
# than once and you want a character other than the first underlined.
|
||||
|
||||
# Text and mnemonics for the spinner. You can also defined a different
|
||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
||||
# represent the mnemonic.
|
||||
GTKColorChooserPanel.hueText=\uC0C9\uC870(H):
|
||||
GTKColorChooserPanel.hueMnemonic=72
|
||||
|
||||
GTKColorChooserPanel.redText=\uBE68\uAC04\uC0C9(E):
|
||||
GTKColorChooserPanel.redMnemonic=69
|
||||
|
||||
GTKColorChooserPanel.saturationText=\uCC44\uB3C4(S):
|
||||
GTKColorChooserPanel.saturationMnemonic=83
|
||||
|
||||
GTKColorChooserPanel.greenText=\uB179\uC0C9(G):
|
||||
GTKColorChooserPanel.greenMnemonic=71
|
||||
|
||||
GTKColorChooserPanel.valueText=\uAC12(V):
|
||||
GTKColorChooserPanel.valueMnemonic=86
|
||||
|
||||
GTKColorChooserPanel.blueText=\uD30C\uB780\uC0C9(B):
|
||||
GTKColorChooserPanel.blueMnemonic=66
|
||||
|
||||
GTKColorChooserPanel.colorNameText=\uC0C9\uC0C1 \uC774\uB984(N):
|
||||
GTKColorChooserPanel.colorNameMnemonic=78
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilterText=\uBAA8\uB4E0 \uD30C\uC77C
|
||||
FileChooser.newFolderButtonText=\uC0C8 \uD3F4\uB354(N)
|
||||
FileChooser.newFolderButtonMnemonic=78
|
||||
FileChooser.newFolderDialogText=\uD3F4\uB354 \uC774\uB984:
|
||||
FileChooser.newFolderNoDirectoryErrorTitleText=\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.deleteFileButtonText=\uD30C\uC77C \uC0AD\uC81C(L)
|
||||
FileChooser.deleteFileButtonMnemonic=76
|
||||
FileChooser.renameFileButtonText=\uD30C\uC77C \uC774\uB984 \uBC14\uAFB8\uAE30(R)
|
||||
FileChooser.renameFileButtonMnemonic=82
|
||||
FileChooser.cancelButtonText=\uCDE8\uC18C
|
||||
FileChooser.cancelButtonMnemonic=67
|
||||
FileChooser.saveButtonText=\uD655\uC778
|
||||
FileChooser.saveButtonMnemonic=79
|
||||
FileChooser.openButtonText=\uD655\uC778
|
||||
FileChooser.openButtonMnemonic=79
|
||||
FileChooser.saveDialogTitleText=\uC800\uC7A5
|
||||
FileChooser.openDialogTitleText=\uC5F4\uAE30
|
||||
FileChooser.pathLabelText=\uC120\uD0DD \uC0AC\uD56D(S):
|
||||
FileChooser.filterLabelText=\uD544\uD130:
|
||||
FileChooser.pathLabelMnemonic=83
|
||||
FileChooser.foldersLabelText=\uD3F4\uB354(D)
|
||||
FileChooser.foldersLabelMnemonic=68
|
||||
FileChooser.filesLabelText=\uD30C\uC77C(F)
|
||||
FileChooser.filesLabelMnemonic=70
|
||||
|
||||
FileChooser.cancelButtonToolTipText=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790\uB97C \uC911\uB2E8\uD569\uB2C8\uB2E4.
|
||||
FileChooser.saveButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC800\uC7A5\uD569\uB2C8\uB2E4.
|
||||
FileChooser.openButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC5FD\uB2C8\uB2E4.
|
||||
|
||||
FileChooser.renameFileDialogText="{0}" \uD30C\uC77C\uC758 \uC774\uB984 \uBC14\uAFB8\uAE30
|
||||
FileChooser.renameFileErrorTitle=\uC624\uB958
|
||||
FileChooser.renameFileErrorText="{0}" \uD30C\uC77C\uC758 \uC774\uB984\uC744 "{1}"(\uC73C)\uB85C \uBC14\uAFB8\uB294 \uC911 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4.
|
||||
|
||||
#OptionPane.okButtonMnemonic=79
|
||||
#OptionPane.cancelButtonMnemonic=67
|
||||
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.textAndMnemonic=GTK \uC0C9\uC0C1 \uC120\uD0DD\uAE30(&G)
|
||||
# mnemonic as a VK_ constant
|
||||
|
||||
GTKColorChooserPanel.hue.textAndMnemonic=\uC0C9\uC870(&H):
|
||||
|
||||
GTKColorChooserPanel.red.textAndMnemonic=\uBE68\uAC04\uC0C9(&E):
|
||||
|
||||
GTKColorChooserPanel.saturation.textAndMnemonic=\uCC44\uB3C4(&S):
|
||||
|
||||
GTKColorChooserPanel.green.textAndMnemonic=\uB179\uC0C9(&G):
|
||||
|
||||
GTKColorChooserPanel.value.textAndMnemonic=\uAC12(&V):
|
||||
|
||||
GTKColorChooserPanel.blue.textAndMnemonic=\uD30C\uB780\uC0C9(&B):
|
||||
|
||||
GTKColorChooserPanel.color.textAndMnemonic=\uC0C9\uC0C1 \uC774\uB984(&N):
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=\uBAA8\uB4E0 \uD30C\uC77C
|
||||
FileChooser.newFolderButton.textAndMnemonic=\uC0C8 \uD3F4\uB354(&N)
|
||||
FileChooser.newFolderDialog.textAndMnemonic=\uD3F4\uB354 \uC774\uB984:
|
||||
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.
|
||||
FileChooser.deleteFileButton.textAndMnemonic=\uD30C\uC77C \uC0AD\uC81C(&L)
|
||||
FileChooser.renameFileButton.textAndMnemonic=\uD30C\uC77C \uC774\uB984 \uBC14\uAFB8\uAE30(&R)
|
||||
FileChooser.cancelButton.textAndMnemonic=\uCDE8\uC18C(&C)
|
||||
FileChooser.saveButton.textAndMnemonic=\uD655\uC778(&O)
|
||||
FileChooser.openButton.textAndMnemonic=\uD655\uC778(&O)
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=\uC800\uC7A5
|
||||
FileChooser.openDialogTitle.textAndMnemonic=\uC5F4\uAE30
|
||||
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)
|
||||
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790\uB97C \uC911\uB2E8\uD569\uB2C8\uB2E4.
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC800\uC7A5\uD569\uB2C8\uB2E4.
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC5FD\uB2C8\uB2E4.
|
||||
|
||||
FileChooser.renameFileDialog.textAndMnemonic="{0}" \uD30C\uC77C\uC758 \uC774\uB984 \uBC14\uAFB8\uAE30
|
||||
FileChooser.renameFileError.titleAndMnemonic=\uC624\uB958
|
||||
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.
|
||||
|
||||
|
||||
|
@ -1,88 +1,59 @@
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.nameText=Seletor de Cores do GTK
|
||||
# mnemonic as a VK_ constant
|
||||
GTKColorChooserPanel.mnemonic=71
|
||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
||||
# want an index other than would normally be underlined by
|
||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
||||
# than once and you want a character other than the first underlined.
|
||||
|
||||
# Text and mnemonics for the spinner. You can also defined a different
|
||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
||||
# represent the mnemonic.
|
||||
GTKColorChooserPanel.hueText=Matiz:
|
||||
GTKColorChooserPanel.hueMnemonic=77
|
||||
|
||||
GTKColorChooserPanel.redText=Vermelho:
|
||||
GTKColorChooserPanel.redMnemonic=69
|
||||
|
||||
GTKColorChooserPanel.saturationText=Satura\u00E7\u00E3o:
|
||||
GTKColorChooserPanel.saturationMnemonic=83
|
||||
|
||||
GTKColorChooserPanel.greenText=Verde:
|
||||
GTKColorChooserPanel.greenMnemonic=68
|
||||
|
||||
GTKColorChooserPanel.valueText=Valor:
|
||||
GTKColorChooserPanel.valueMnemonic=86
|
||||
|
||||
GTKColorChooserPanel.blueText=Azul:
|
||||
GTKColorChooserPanel.blueMnemonic=65
|
||||
|
||||
GTKColorChooserPanel.colorNameText=Nome da Cor:
|
||||
GTKColorChooserPanel.colorNameMnemonic=78
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilterText=Todos os Arquivos
|
||||
FileChooser.newFolderButtonText=Nova Pasta
|
||||
FileChooser.newFolderButtonMnemonic=78
|
||||
FileChooser.newFolderDialogText=Nome da pasta:
|
||||
FileChooser.newFolderNoDirectoryErrorTitleText=Erro
|
||||
FileChooser.newFolderNoDirectoryErrorText=Erro ao criar o diret\u00F3rio "{0}": N\u00E3o h\u00E1 arquivo ou diret\u00F3rio
|
||||
FileChooser.deleteFileButtonText=Deletar Arquivo
|
||||
FileChooser.deleteFileButtonMnemonic=76
|
||||
FileChooser.renameFileButtonText=Renomear Arquivo
|
||||
FileChooser.renameFileButtonMnemonic=82
|
||||
FileChooser.cancelButtonText=Cancelar
|
||||
FileChooser.cancelButtonMnemonic=67
|
||||
FileChooser.saveButtonText=OK
|
||||
FileChooser.saveButtonMnemonic=79
|
||||
FileChooser.openButtonText=OK
|
||||
FileChooser.openButtonMnemonic=79
|
||||
FileChooser.saveDialogTitleText=Salvar
|
||||
FileChooser.openDialogTitleText=Abrir
|
||||
FileChooser.pathLabelText=Sele\u00E7\u00E3o:
|
||||
FileChooser.filterLabelText=Filtro:
|
||||
FileChooser.pathLabelMnemonic=83
|
||||
FileChooser.foldersLabelText=Pastas
|
||||
FileChooser.foldersLabelMnemonic=80
|
||||
FileChooser.filesLabelText=Arquivos
|
||||
FileChooser.filesLabelMnemonic=65
|
||||
|
||||
FileChooser.cancelButtonToolTipText=Abortar caixa de di\u00E1logo do seletor de arquivos.
|
||||
FileChooser.saveButtonToolTipText=Salvar arquivo selecionado.
|
||||
FileChooser.openButtonToolTipText=Abrir arquivo selecionado.
|
||||
|
||||
FileChooser.renameFileDialogText=Renomear arquivo "{0}" por
|
||||
FileChooser.renameFileErrorTitle=Erro
|
||||
FileChooser.renameFileErrorText=Erro ao renomear o arquivo "{0}" por "{1}"
|
||||
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.okButtonText=OK
|
||||
OptionPane.okButtonMnemonic=79
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.cancelButtonText=Cancelar
|
||||
OptionPane.cancelButtonMnemonic=67
|
||||
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.textAndMnemonic=Seletor de Cores do >K
|
||||
# mnemonic as a VK_ constant
|
||||
|
||||
GTKColorChooserPanel.hue.textAndMnemonic=&Matiz:
|
||||
|
||||
GTKColorChooserPanel.red.textAndMnemonic=V&ermelho:
|
||||
|
||||
GTKColorChooserPanel.saturation.textAndMnemonic=Satura\u00E7\u00E3o(&S):
|
||||
|
||||
GTKColorChooserPanel.green.textAndMnemonic=Ver&de:
|
||||
|
||||
GTKColorChooserPanel.value.textAndMnemonic=&Valor:
|
||||
|
||||
GTKColorChooserPanel.blue.textAndMnemonic=&Azul:
|
||||
|
||||
GTKColorChooserPanel.color.textAndMnemonic=&Nome da Cor:
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=Todos os Arquivos
|
||||
FileChooser.newFolderButton.textAndMnemonic=&Nova Pasta
|
||||
FileChooser.newFolderDialog.textAndMnemonic=Nome da pasta:
|
||||
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Erro
|
||||
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Erro ao criar o diret\u00F3rio "{0}": N\u00E3o h\u00E1 arquivo ou diret\u00F3rio
|
||||
FileChooser.deleteFileButton.textAndMnemonic=De&letar Arquivo
|
||||
FileChooser.renameFileButton.textAndMnemonic=&Renomear Arquivo
|
||||
FileChooser.cancelButton.textAndMnemonic=&Cancelar
|
||||
FileChooser.saveButton.textAndMnemonic=&OK
|
||||
FileChooser.openButton.textAndMnemonic=&OK
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=Salvar
|
||||
FileChooser.openDialogTitle.textAndMnemonic=Abrir
|
||||
FileChooser.pathLabel.textAndMnemonic=Sele\u00E7\u00E3o(&S):
|
||||
FileChooser.filterLabel.textAndMnemonic=Filtro:
|
||||
FileChooser.foldersLabel.textAndMnemonic=&Pastas
|
||||
FileChooser.filesLabel.textAndMnemonic=&Arquivos
|
||||
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Abortar caixa de di\u00E1logo do seletor de arquivos.
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=Salvar arquivo selecionado.
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=Abrir arquivo selecionado.
|
||||
|
||||
FileChooser.renameFileDialog.textAndMnemonic=Renomear arquivo "{0}" por
|
||||
FileChooser.renameFileError.titleAndMnemonic=Erro
|
||||
FileChooser.renameFileError.textAndMnemonic=Erro ao renomear o arquivo "{0}" por "{1}"
|
||||
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.okButton.textAndMnemonic=&OK
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.cancelButton.textAndMnemonic=&Cancelar
|
||||
|
||||
|
@ -1,88 +1,59 @@
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.nameText=GTK-f\u00E4rgv\u00E4ljaren
|
||||
# mnemonic as a VK_ constant
|
||||
GTKColorChooserPanel.mnemonic=71
|
||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
||||
# want an index other than would normally be underlined by
|
||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
||||
# than once and you want a character other than the first underlined.
|
||||
|
||||
# Text and mnemonics for the spinner. You can also defined a different
|
||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
||||
# represent the mnemonic.
|
||||
GTKColorChooserPanel.hueText=Nyans:
|
||||
GTKColorChooserPanel.hueMnemonic=78
|
||||
|
||||
GTKColorChooserPanel.redText=R\u00F6d:
|
||||
GTKColorChooserPanel.redMnemonic=82
|
||||
|
||||
GTKColorChooserPanel.saturationText=M\u00E4ttnad:
|
||||
GTKColorChooserPanel.saturationMnemonic=77
|
||||
|
||||
GTKColorChooserPanel.greenText=Gr\u00F6n:
|
||||
GTKColorChooserPanel.greenMnemonic=71
|
||||
|
||||
GTKColorChooserPanel.valueText=V\u00E4rde:
|
||||
GTKColorChooserPanel.valueMnemonic=86
|
||||
|
||||
GTKColorChooserPanel.blueText=Bl\u00E5:
|
||||
GTKColorChooserPanel.blueMnemonic=66
|
||||
|
||||
GTKColorChooserPanel.colorNameText=F\u00E4rgnamn:
|
||||
GTKColorChooserPanel.colorNameMnemonic=70
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilterText=Alla filer
|
||||
FileChooser.newFolderButtonText=Ny mapp
|
||||
FileChooser.newFolderButtonMnemonic=78
|
||||
FileChooser.newFolderDialogText=Mapp:
|
||||
FileChooser.newFolderNoDirectoryErrorTitleText=Fel
|
||||
FileChooser.newFolderNoDirectoryErrorText=Ett fel intr\u00E4ffade vid f\u00F6rs\u00F6k att skapa katalogen "{0}": Filen eller katalogen finns inte
|
||||
FileChooser.deleteFileButtonText=Ta bort fil
|
||||
FileChooser.deleteFileButtonMnemonic=66
|
||||
FileChooser.renameFileButtonText=\u00C4ndra namn p\u00E5 filen
|
||||
FileChooser.renameFileButtonMnemonic=82
|
||||
FileChooser.cancelButtonText=Avbryt
|
||||
FileChooser.cancelButtonMnemonic=65
|
||||
FileChooser.saveButtonText=OK
|
||||
FileChooser.saveButtonMnemonic=79
|
||||
FileChooser.openButtonText=OK
|
||||
FileChooser.openButtonMnemonic=79
|
||||
FileChooser.saveDialogTitleText=Spara
|
||||
FileChooser.openDialogTitleText=\u00D6ppna
|
||||
FileChooser.pathLabelText=Urval:
|
||||
FileChooser.filterLabelText=Filter:
|
||||
FileChooser.pathLabelMnemonic=85
|
||||
FileChooser.foldersLabelText=Mappar
|
||||
FileChooser.foldersLabelMnemonic=80
|
||||
FileChooser.filesLabelText=Filer
|
||||
FileChooser.filesLabelMnemonic=70
|
||||
|
||||
FileChooser.cancelButtonToolTipText=Avbryt dialogrutan Filv\u00E4ljare.
|
||||
FileChooser.saveButtonToolTipText=Spara vald fil.
|
||||
FileChooser.openButtonToolTipText=\u00D6ppna vald fil.
|
||||
|
||||
FileChooser.renameFileDialogText=Namn\u00E4ndra fil "{0}" till
|
||||
FileChooser.renameFileErrorTitle=Fel
|
||||
FileChooser.renameFileErrorText=Fel vid namn\u00E4ndring av fil "{0}" till "{1}"
|
||||
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.okButtonText=OK
|
||||
OptionPane.okButtonMnemonic=79
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.cancelButtonText=Avbryt
|
||||
OptionPane.cancelButtonMnemonic=65
|
||||
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.textAndMnemonic=GTK-f\u00E4rgv\u00E4ljaren(&G)
|
||||
# mnemonic as a VK_ constant
|
||||
|
||||
GTKColorChooserPanel.hue.textAndMnemonic=&Nyans:
|
||||
|
||||
GTKColorChooserPanel.red.textAndMnemonic=R\u00F6d(&R):
|
||||
|
||||
GTKColorChooserPanel.saturation.textAndMnemonic=M\u00E4ttnad(&M):
|
||||
|
||||
GTKColorChooserPanel.green.textAndMnemonic=Gr\u00F6n(&G):
|
||||
|
||||
GTKColorChooserPanel.value.textAndMnemonic=V\u00E4rde(&V):
|
||||
|
||||
GTKColorChooserPanel.blue.textAndMnemonic=Bl\u00E5(&B):
|
||||
|
||||
GTKColorChooserPanel.color.textAndMnemonic=F\u00E4rgnamn(&F):
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=Alla filer
|
||||
FileChooser.newFolderButton.textAndMnemonic=&Ny mapp
|
||||
FileChooser.newFolderDialog.textAndMnemonic=Mapp:
|
||||
FileChooser.newFolderNoDirectoryErrorTitle.textAndMnemonic=Fel
|
||||
FileChooser.newFolderNoDirectoryError.textAndMnemonic=Ett fel intr\u00E4ffade vid f\u00F6rs\u00F6k att skapa katalogen "{0}": Filen eller katalogen finns inte
|
||||
FileChooser.deleteFileButton.textAndMnemonic=Ta &bort fil
|
||||
FileChooser.renameFileButton.textAndMnemonic=\u00C4ndra namn p\u00E5 filen(&R)
|
||||
FileChooser.cancelButton.textAndMnemonic=&Avbryt
|
||||
FileChooser.saveButton.textAndMnemonic=&OK
|
||||
FileChooser.openButton.textAndMnemonic=&OK
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=Spara
|
||||
FileChooser.openDialogTitle.textAndMnemonic=\u00D6ppna
|
||||
FileChooser.pathLabel.textAndMnemonic=&Urval:
|
||||
FileChooser.filterLabel.textAndMnemonic=Filter:
|
||||
FileChooser.foldersLabel.textAndMnemonic=Ma&ppar
|
||||
FileChooser.filesLabel.textAndMnemonic=&Filer
|
||||
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt dialogrutan Filv\u00E4ljare.
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil.
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil.
|
||||
|
||||
FileChooser.renameFileDialog.textAndMnemonic=Namn\u00E4ndra fil "{0}" till
|
||||
FileChooser.renameFileError.titleAndMnemonic=Fel
|
||||
FileChooser.renameFileError.textAndMnemonic=Fel vid namn\u00E4ndring av fil "{0}" till "{1}"
|
||||
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.okButton.textAndMnemonic=&OK
|
||||
# dummy resource added for translation automation
|
||||
OptionPane.cancelButton.textAndMnemonic=&Avbryt
|
||||
|
||||
|
@ -1,84 +1,55 @@
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.nameText=GTK \u989C\u8272\u9009\u62E9\u5668(G)
|
||||
# mnemonic as a VK_ constant
|
||||
GTKColorChooserPanel.mnemonic=71
|
||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
||||
# want an index other than would normally be underlined by
|
||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
||||
# than once and you want a character other than the first underlined.
|
||||
|
||||
# Text and mnemonics for the spinner. You can also defined a different
|
||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
||||
# represent the mnemonic.
|
||||
GTKColorChooserPanel.hueText=\u8272\u8C03(H):
|
||||
GTKColorChooserPanel.hueMnemonic=72
|
||||
|
||||
GTKColorChooserPanel.redText=\u7EA2\u8272(E):
|
||||
GTKColorChooserPanel.redMnemonic=69
|
||||
|
||||
GTKColorChooserPanel.saturationText=\u9971\u548C\u5EA6(S):
|
||||
GTKColorChooserPanel.saturationMnemonic=83
|
||||
|
||||
GTKColorChooserPanel.greenText=\u7EFF\u8272(G):
|
||||
GTKColorChooserPanel.greenMnemonic=71
|
||||
|
||||
GTKColorChooserPanel.valueText=\u503C(V):
|
||||
GTKColorChooserPanel.valueMnemonic=86
|
||||
|
||||
GTKColorChooserPanel.blueText=\u84DD\u8272(B):
|
||||
GTKColorChooserPanel.blueMnemonic=66
|
||||
|
||||
GTKColorChooserPanel.colorNameText=\u989C\u8272\u540D(N):
|
||||
GTKColorChooserPanel.colorNameMnemonic=78
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6587\u4EF6
|
||||
FileChooser.newFolderButtonText=\u65B0\u6587\u4EF6\u5939(N)
|
||||
FileChooser.newFolderButtonMnemonic=78
|
||||
FileChooser.newFolderDialogText=\u6587\u4EF6\u5939\u540D:
|
||||
FileChooser.newFolderNoDirectoryErrorTitleText=\u9519\u8BEF
|
||||
FileChooser.newFolderNoDirectoryErrorText=\u521B\u5EFA\u76EE\u5F55 "{0}" \u65F6\u51FA\u9519: \u6CA1\u6709\u6B64\u7C7B\u6587\u4EF6\u6216\u76EE\u5F55
|
||||
FileChooser.deleteFileButtonText=\u5220\u9664\u6587\u4EF6(L)
|
||||
FileChooser.deleteFileButtonMnemonic=76
|
||||
FileChooser.renameFileButtonText=\u91CD\u547D\u540D\u6587\u4EF6(R)
|
||||
FileChooser.renameFileButtonMnemonic=82
|
||||
FileChooser.cancelButtonText=\u53D6\u6D88
|
||||
FileChooser.cancelButtonMnemonic=67
|
||||
FileChooser.saveButtonText=\u786E\u5B9A
|
||||
FileChooser.saveButtonMnemonic=79
|
||||
FileChooser.openButtonText=\u786E\u5B9A
|
||||
FileChooser.openButtonMnemonic=79
|
||||
FileChooser.saveDialogTitleText=\u4FDD\u5B58
|
||||
FileChooser.openDialogTitleText=\u6253\u5F00
|
||||
FileChooser.pathLabelText=\u9009\u5B9A\u5185\u5BB9(S):
|
||||
FileChooser.filterLabelText=\u7B5B\u9009\u5668:
|
||||
FileChooser.pathLabelMnemonic=83
|
||||
FileChooser.foldersLabelText=\u6587\u4EF6\u5939(D)
|
||||
FileChooser.foldersLabelMnemonic=68
|
||||
FileChooser.filesLabelText=\u6587\u4EF6(F)
|
||||
FileChooser.filesLabelMnemonic=70
|
||||
|
||||
FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846\u3002
|
||||
FileChooser.saveButtonToolTipText=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6\u3002
|
||||
FileChooser.openButtonToolTipText=\u6253\u5F00\u6240\u9009\u6587\u4EF6\u3002
|
||||
|
||||
FileChooser.renameFileDialogText=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A
|
||||
FileChooser.renameFileErrorTitle=\u9519\u8BEF
|
||||
FileChooser.renameFileErrorText=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A "{1}" \u65F6\u51FA\u9519
|
||||
|
||||
#OptionPane.okButtonMnemonic=79
|
||||
#OptionPane.cancelButtonMnemonic=67
|
||||
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.textAndMnemonic=GTK \u989C\u8272\u9009\u62E9\u5668(&G)
|
||||
# mnemonic as a VK_ constant
|
||||
|
||||
GTKColorChooserPanel.hue.textAndMnemonic=\u8272\u8C03(&H):
|
||||
|
||||
GTKColorChooserPanel.red.textAndMnemonic=\u7EA2\u8272(&E):
|
||||
|
||||
GTKColorChooserPanel.saturation.textAndMnemonic=\u9971\u548C\u5EA6(&S):
|
||||
|
||||
GTKColorChooserPanel.green.textAndMnemonic=\u7EFF\u8272(&G):
|
||||
|
||||
GTKColorChooserPanel.value.textAndMnemonic=\u503C(&V):
|
||||
|
||||
GTKColorChooserPanel.blue.textAndMnemonic=\u84DD\u8272(&B):
|
||||
|
||||
GTKColorChooserPanel.color.textAndMnemonic=\u989C\u8272\u540D(&N):
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6587\u4EF6
|
||||
FileChooser.newFolderButton.textAndMnemonic=\u65B0\u6587\u4EF6\u5939(&N)
|
||||
FileChooser.newFolderDialog.textAndMnemonic=\u6587\u4EF6\u5939\u540D:
|
||||
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
|
||||
FileChooser.deleteFileButton.textAndMnemonic=\u5220\u9664\u6587\u4EF6(&L)
|
||||
FileChooser.renameFileButton.textAndMnemonic=\u91CD\u547D\u540D\u6587\u4EF6(&R)
|
||||
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
|
||||
FileChooser.saveButton.textAndMnemonic=\u786E\u5B9A(&O)
|
||||
FileChooser.openButton.textAndMnemonic=\u786E\u5B9A(&O)
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
|
||||
FileChooser.openDialogTitle.textAndMnemonic=\u6253\u5F00
|
||||
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)
|
||||
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846\u3002
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6\u3002
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=\u6253\u5F00\u6240\u9009\u6587\u4EF6\u3002
|
||||
|
||||
FileChooser.renameFileDialog.textAndMnemonic=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A
|
||||
FileChooser.renameFileError.titleAndMnemonic=\u9519\u8BEF
|
||||
FileChooser.renameFileError.textAndMnemonic=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A "{1}" \u65F6\u51FA\u9519
|
||||
|
||||
|
||||
|
@ -1,84 +1,55 @@
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.nameText=GTK \u8272\u5F69\u9078\u64C7\u5668(G)
|
||||
# mnemonic as a VK_ constant
|
||||
GTKColorChooserPanel.mnemonic=71
|
||||
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
|
||||
# want an index other than would normally be underlined by
|
||||
# GTKColorChooserPanel.mnemonic to be underlined. This is only useful
|
||||
# if GTKColorChooserPanel.nameText defines the mnemonic character more
|
||||
# than once and you want a character other than the first underlined.
|
||||
|
||||
# Text and mnemonics for the spinner. You can also defined a different
|
||||
# index for the mnemonic via xxxMnemonicIndex, for example
|
||||
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
|
||||
# character of GTKColorChooserPanel.hueText should be underlined to
|
||||
# represent the mnemonic.
|
||||
GTKColorChooserPanel.hueText=\u8272\u8ABF(H)\uFF1A
|
||||
GTKColorChooserPanel.hueMnemonic=72
|
||||
|
||||
GTKColorChooserPanel.redText=\u7D05(E):
|
||||
GTKColorChooserPanel.redMnemonic=69
|
||||
|
||||
GTKColorChooserPanel.saturationText=\u5F69\u5EA6(S):
|
||||
GTKColorChooserPanel.saturationMnemonic=83
|
||||
|
||||
GTKColorChooserPanel.greenText=\u7DA0(G):
|
||||
GTKColorChooserPanel.greenMnemonic=71
|
||||
|
||||
GTKColorChooserPanel.valueText=\u503C(V):
|
||||
GTKColorChooserPanel.valueMnemonic=86
|
||||
|
||||
GTKColorChooserPanel.blueText=\u85CD(B):
|
||||
GTKColorChooserPanel.blueMnemonic=66
|
||||
|
||||
GTKColorChooserPanel.colorNameText=\u984F\u8272\u540D\u7A31(N):
|
||||
GTKColorChooserPanel.colorNameMnemonic=78
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6A94\u6848
|
||||
FileChooser.newFolderButtonText=\u65B0\u5EFA\u8CC7\u6599\u593E(N)
|
||||
FileChooser.newFolderButtonMnemonic=78
|
||||
FileChooser.newFolderDialogText=\u8CC7\u6599\u593E\u540D\u7A31:
|
||||
FileChooser.newFolderNoDirectoryErrorTitleText=\u932F\u8AA4
|
||||
FileChooser.newFolderNoDirectoryErrorText=\u5EFA\u7ACB\u76EE\u9304 "{0}" \u6642\u767C\u751F\u932F\u8AA4: \u6C92\u6709\u6B64\u6A94\u6848\u6216\u76EE\u9304
|
||||
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
|
||||
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
|
||||
|
||||
|
||||
# GTK specific properties
|
||||
|
||||
# GTK color chooser properties:
|
||||
GTKColorChooserPanel.textAndMnemonic=GTK \u8272\u5F69\u9078\u64C7\u5668(&G)
|
||||
# mnemonic as a VK_ constant
|
||||
|
||||
GTKColorChooserPanel.hue.textAndMnemonic=\u8272\u8ABF(&H)\uFF1A
|
||||
|
||||
GTKColorChooserPanel.red.textAndMnemonic=\u7D05(&E):
|
||||
|
||||
GTKColorChooserPanel.saturation.textAndMnemonic=\u5F69\u5EA6(&S):
|
||||
|
||||
GTKColorChooserPanel.green.textAndMnemonic=\u7DA0(&G):
|
||||
|
||||
GTKColorChooserPanel.value.textAndMnemonic=\u503C(&V):
|
||||
|
||||
GTKColorChooserPanel.blue.textAndMnemonic=\u85CD(&B):
|
||||
|
||||
GTKColorChooserPanel.color.textAndMnemonic=\u984F\u8272\u540D\u7A31(&N):
|
||||
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6A94\u6848
|
||||
FileChooser.newFolderButton.textAndMnemonic=\u65B0\u5EFA\u8CC7\u6599\u593E(&N)
|
||||
FileChooser.newFolderDialog.textAndMnemonic=\u8CC7\u6599\u593E\u540D\u7A31:
|
||||
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
|
||||
FileChooser.deleteFileButton.textAndMnemonic=\u522A\u9664\u6A94\u6848(&L)
|
||||
FileChooser.renameFileButton.textAndMnemonic=\u91CD\u65B0\u547D\u540D\u6A94\u6848(&R)
|
||||
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
|
||||
FileChooser.saveButton.textAndMnemonic=\u78BA\u5B9A(&O)
|
||||
FileChooser.openButton.textAndMnemonic=\u78BA\u5B9A(&O)
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=\u5132\u5B58
|
||||
FileChooser.openDialogTitle.textAndMnemonic=\u958B\u555F
|
||||
FileChooser.pathLabel.textAndMnemonic=\u9078\u53D6(&S):
|
||||
FileChooser.filterLabel.textAndMnemonic=\u7BE9\u9078:
|
||||
FileChooser.foldersLabel.textAndMnemonic=\u8CC7\u6599\u593E(&D)
|
||||
FileChooser.filesLabel.textAndMnemonic=\u6A94\u6848(&F)
|
||||
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6A94\u6848\u9078\u64C7\u5668\u5C0D\u8A71\u65B9\u584A\u3002
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848\u3002
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848\u3002
|
||||
|
||||
FileChooser.renameFileDialog.textAndMnemonic=\u5C07\u6A94\u6848 "{0}" \u91CD\u65B0\u547D\u540D\u70BA
|
||||
FileChooser.renameFileError.titleAndMnemonic=\u932F\u8AA4
|
||||
FileChooser.renameFileError.textAndMnemonic=\u5C07\u6A94\u6848 "{0}" \u91CD\u65B0\u547D\u540D\u70BA "{1}" \u6642\u51FA\u73FE\u932F\u8AA4
|
||||
|
||||
|
||||
|
@ -577,8 +577,8 @@ public class DnsClient {
|
||||
// enqueue only the first response, responses for retries are ignored.
|
||||
//
|
||||
synchronized (queuesLock) {
|
||||
if (reqs.contains(xid)) { // enqueue only the first response
|
||||
resps.put(xid, pkt);
|
||||
if (reqs.contains(hdr.xid)) { // enqueue only the first response
|
||||
resps.put(hdr.xid, pkt);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,229 +1,189 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameText=RGB
|
||||
# ColorChooser.rgbMnemonic=71
|
||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# a decoration will be provided under the 'G'. This will typically
|
||||
# look like: RGB
|
||||
# -
|
||||
# 71 corresponds to the decimal value of the VK constant defined
|
||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
||||
#
|
||||
# public static final int VK_G = 0x47;
|
||||
#
|
||||
# 0x47 is a hex number and needs to be converted to decimal.
|
||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
||||
# for 'a' is 65, 'b' is 66...
|
||||
#
|
||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
||||
# character that should be underlined in the String, with 0
|
||||
# corresponding to the first character in the String.
|
||||
#
|
||||
# One important thing to remember is that the mnemonic MUST exist in
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescriptionText=Generic File
|
||||
FileChooser.directoryDescriptionText=Directory
|
||||
FileChooser.newFolderErrorText=Error creating new folder
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitleText=Unable to create folder
|
||||
FileChooser.newFolderParentDoesntExistText=Unable to create the folder.\n\nThe system cannot find the path specified.
|
||||
FileChooser.renameErrorTitleText=Error Renaming File or Folder
|
||||
FileChooser.renameErrorText=Cannot rename {0}
|
||||
FileChooser.renameErrorFileExistsText=Cannot rename {0}: A file with the name you specified already exists. \
|
||||
Specify a different file name.
|
||||
FileChooser.acceptAllFileFilterText=All Files
|
||||
FileChooser.cancelButtonText=Cancel
|
||||
#FileChooser.cancelButtonMnemonic=67 // not needed?
|
||||
FileChooser.saveButtonText=Save
|
||||
FileChooser.saveButtonMnemonic=83 // not needed?
|
||||
FileChooser.openButtonText=Open
|
||||
FileChooser.openButtonMnemonic=79 //not needed?
|
||||
FileChooser.saveDialogTitleText=Save
|
||||
FileChooser.openDialogTitleText=Open
|
||||
FileChooser.updateButtonText=Update
|
||||
FileChooser.updateButtonMnemonic=85
|
||||
FileChooser.helpButtonText=Help
|
||||
FileChooser.helpButtonMnemonic=72
|
||||
FileChooser.directoryOpenButtonText=Open
|
||||
FileChooser.directoryOpenButtonMnemonic=79
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=New Folder
|
||||
FileChooser.win32.newFolder.subsequent=New Folder ({0})
|
||||
FileChooser.other.newFolder=NewFolder
|
||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTipText=Abort file chooser dialog
|
||||
FileChooser.saveButtonToolTipText=Save selected file
|
||||
FileChooser.openButtonToolTipText=Open selected file
|
||||
FileChooser.updateButtonToolTipText=Update directory listing
|
||||
FileChooser.helpButtonToolTipText=FileChooser help
|
||||
FileChooser.directoryOpenButtonToolTipText=Open selected directory
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.previewText=Preview
|
||||
ColorChooser.okText=OK
|
||||
ColorChooser.cancelText=Cancel
|
||||
ColorChooser.resetText=Reset
|
||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
||||
ColorChooser.resetMnemonic=82
|
||||
ColorChooser.sampleText=Sample Text Sample Text
|
||||
ColorChooser.swatchesNameText=Swatches
|
||||
ColorChooser.swatchesMnemonic=83
|
||||
ColorChooser.swatchesRecentText=Recent:
|
||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
||||
# constant, and an index into the text to render the mnemonic as. The
|
||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
||||
# xxxDisplayedMnemonicIndex.
|
||||
ColorChooser.hsvNameText=HSV
|
||||
ColorChooser.hsvMnemonic=72
|
||||
ColorChooser.hsvHueText=Hue
|
||||
ColorChooser.hsvSaturationText=Saturation
|
||||
ColorChooser.hsvValueText=Value
|
||||
ColorChooser.hsvTransparencyText=Transparency
|
||||
ColorChooser.hslNameText=HSL
|
||||
ColorChooser.hslMnemonic=76
|
||||
ColorChooser.hslHueText=Hue
|
||||
ColorChooser.hslSaturationText=Saturation
|
||||
ColorChooser.hslLightnessText=Lightness
|
||||
ColorChooser.hslTransparencyText=Transparency
|
||||
ColorChooser.rgbNameText=RGB
|
||||
ColorChooser.rgbMnemonic=71
|
||||
ColorChooser.rgbRedText=Red
|
||||
ColorChooser.rgbRedMnemonic=68 // not needed?
|
||||
ColorChooser.rgbGreenText=Green
|
||||
ColorChooser.rgbGreenMnemonic=78 // not needed?
|
||||
ColorChooser.rgbBlueText=Blue
|
||||
ColorChooser.rgbBlueMnemonic=66 // not needed?
|
||||
ColorChooser.rgbAlphaText=Alpha
|
||||
ColorChooser.rgbHexCodeText=Color Code
|
||||
ColorChooser.rgbHexCodeMnemonic=67
|
||||
ColorChooser.cmykNameText=CMYK
|
||||
ColorChooser.cmykMnemonic=77
|
||||
ColorChooser.cmykCyanText=Cyan
|
||||
ColorChooser.cmykMagentaText=Magenta
|
||||
ColorChooser.cmykYellowText=Yellow
|
||||
ColorChooser.cmykBlackText=Black
|
||||
ColorChooser.cmykAlphaText=Alpha
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButtonText=Yes
|
||||
OptionPane.yesButtonMnemonic=89
|
||||
OptionPane.noButtonText=No
|
||||
OptionPane.noButtonMnemonic=78
|
||||
OptionPane.okButtonText=OK
|
||||
#OptionPane.okButtonMnemonic=0
|
||||
OptionPane.cancelButtonText=Cancel
|
||||
#OptionPane.cancelButtonMnemonic=0
|
||||
OptionPane.titleText=Select an Option
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialogTitle=Input
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialogTitle=Message
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgressText=Printing
|
||||
PrintingDialog.titleAbortingText=Printing (Aborting)
|
||||
|
||||
PrintingDialog.contentInitialText=Printing in progress...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgressText=Printed page {0}...
|
||||
|
||||
PrintingDialog.contentAbortingText=Printing aborting...
|
||||
|
||||
PrintingDialog.abortButtonText=Abort
|
||||
PrintingDialog.abortButtonMnemonic=65
|
||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
||||
PrintingDialog.abortButtonToolTipText=Abort Printing
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=Minimize
|
||||
InternalFrame.maxButtonToolTip=Maximize
|
||||
InternalFrame.restoreButtonToolTip=Restore
|
||||
InternalFrame.closeButtonToolTip=Close
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButtonText=Restore
|
||||
InternalFrameTitlePane.moveButtonText=Move
|
||||
InternalFrameTitlePane.sizeButtonText=Size
|
||||
InternalFrameTitlePane.minimizeButtonText=Minimize
|
||||
InternalFrameTitlePane.maximizeButtonText=Maximize
|
||||
InternalFrameTitlePane.closeButtonText=Close
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButtonText=Submit Query
|
||||
FormView.resetButtonText=Reset
|
||||
FormView.browseFileButtonText=Browse...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChangeText=style change
|
||||
AbstractDocument.additionText=addition
|
||||
AbstractDocument.deletionText=deletion
|
||||
AbstractDocument.undoText=Undo
|
||||
AbstractDocument.redoText=Redo
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.clickText=click
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undoText=Undo
|
||||
AbstractUndoableEdit.redoText=Redo
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopupText=togglePopup
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progressText=Progress...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButtonText=left button
|
||||
SplitPane.rightButtonText=right button
|
||||
# Used for Isindex
|
||||
IsindexView.prompt=This is a searchable index. Enter search keywords:
|
||||
|
||||
############ InternalFrameTitlePane Strings ############
|
||||
InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify
|
||||
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximize
|
||||
InternalFrameTitlePane.closeButtonAccessibleName=Close
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||
#
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# 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
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescription.textAndMnemonic=Generic File
|
||||
FileChooser.directoryDescription.textAndMnemonic=Directory
|
||||
FileChooser.newFolderError.textAndMnemonic=Error creating new folder
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Unable to create folder
|
||||
FileChooser.newFolderParentDoesntExist.textAndMnemonic=Unable to create the folder.\n\nThe system cannot find the path specified.
|
||||
FileChooser.renameErrorTitle.textAndMnemonic=Error Renaming File or Folder
|
||||
FileChooser.renameError.textAndMnemonic=Cannot rename {0}
|
||||
FileChooser.renameErrorFileExists.textAndMnemonic=Cannot rename {0}: A file with the name you specified already exists. \
|
||||
Specify a different file name.
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=All Files
|
||||
FileChooser.cancelButton.textAndMnemonic=Cancel
|
||||
FileChooser.saveButton.textAndMnemonic=&Save
|
||||
FileChooser.openButton.textAndMnemonic=&Open
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=Save
|
||||
FileChooser.openDialogTitle.textAndMnemonic=Open
|
||||
FileChooser.updateButton.textAndMnemonic=&Update
|
||||
FileChooser.helpButton.textAndMnemonic=&Help
|
||||
FileChooser.directoryOpenButton.textAndMnemonic=&Open
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=New Folder
|
||||
FileChooser.win32.newFolder.subsequent=New Folder ({0})
|
||||
FileChooser.other.newFolder=NewFolder
|
||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Abort file chooser dialog
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=Save selected file
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=Open selected file
|
||||
FileChooser.updateButtonToolTip.textAndMnemonic=Update directory listing
|
||||
FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser help
|
||||
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Open selected directory
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.preview.textAndMnemonic=Preview
|
||||
ColorChooser.ok.textAndMnemonic=OK
|
||||
ColorChooser.cancel.textAndMnemonic=Cancel
|
||||
ColorChooser.reset.textAndMnemonic=&Reset
|
||||
ColorChooser.sample.textAndMnemonic=Sample Text Sample Text
|
||||
ColorChooser.swatches.textAndMnemonic=&Swatches
|
||||
ColorChooser.swatchesRecent.textAndMnemonic=Recent:
|
||||
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||
ColorChooser.hsvHue.textAndMnemonic=Hue
|
||||
ColorChooser.hsvSaturation.textAndMnemonic=Saturation
|
||||
ColorChooser.hsvValue.textAndMnemonic=Value
|
||||
ColorChooser.hsvTransparency.textAndMnemonic=Transparency
|
||||
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||
ColorChooser.hslHue.textAndMnemonic=Hue
|
||||
ColorChooser.hslSaturation.textAndMnemonic=Saturation
|
||||
ColorChooser.hslLightness.textAndMnemonic=Lightness
|
||||
ColorChooser.hslTransparency.textAndMnemonic=Transparency
|
||||
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||
ColorChooser.rgbRed.textAndMnemonic=Re&d
|
||||
ColorChooser.rgbGreen.textAndMnemonic=Gree&n
|
||||
ColorChooser.rgbBlue.textAndMnemonic=&Blue
|
||||
ColorChooser.rgbAlpha.textAndMnemonic=Alpha
|
||||
ColorChooser.rgbHexCode.textAndMnemonic=&Color Code
|
||||
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||
ColorChooser.cmykCyan.textAndMnemonic=Cyan
|
||||
ColorChooser.cmykMagenta.textAndMnemonic=Magenta
|
||||
ColorChooser.cmykYellow.textAndMnemonic=Yellow
|
||||
ColorChooser.cmykBlack.textAndMnemonic=Black
|
||||
ColorChooser.cmykAlpha.textAndMnemonic=Alpha
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButton.textAndMnemonic=&Yes
|
||||
OptionPane.noButton.textAndMnemonic=&No
|
||||
OptionPane.okButton.textAndMnemonic=OK
|
||||
#OptionPane.okButtonMnemonic=0
|
||||
OptionPane.cancelButton.textAndMnemonic=Cancel
|
||||
#OptionPane.cancelButtonMnemonic=0
|
||||
OptionPane.title.textAndMnemonic=Select an Option
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialog.titleAndMnemonic=Input
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialog.titleAndMnemonic=Message
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgress.textAndMnemonic=Printing
|
||||
PrintingDialog.titleAborting.textAndMnemonic=Printing (Aborting)
|
||||
|
||||
PrintingDialog.contentInitial.textAndMnemonic=Printing in progress...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgress.textAndMnemonic=Printed page {0}...
|
||||
|
||||
PrintingDialog.contentAborting.textAndMnemonic=Printing aborting...
|
||||
|
||||
PrintingDialog.abortButton.textAndMnemonic=&Abort
|
||||
PrintingDialog.abortButtonToolTip.textAndMnemonic=Abort Printing
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=Minimize
|
||||
InternalFrame.maxButtonToolTip=Maximize
|
||||
InternalFrame.restoreButtonToolTip=Restore
|
||||
InternalFrame.closeButtonToolTip=Close
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButton.textAndMnemonic=Restore
|
||||
InternalFrameTitlePane.moveButton.textAndMnemonic=Move
|
||||
InternalFrameTitlePane.sizeButton.textAndMnemonic=Size
|
||||
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimize
|
||||
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximize
|
||||
InternalFrameTitlePane.closeButton.textAndMnemonic=Close
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButton.textAndMnemonic=Submit Query
|
||||
FormView.resetButton.textAndMnemonic=Reset
|
||||
FormView.browseFileButton.textAndMnemonic=Browse...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChange.textAndMnemonic=style change
|
||||
AbstractDocument.addition.textAndMnemonic=addition
|
||||
AbstractDocument.deletion.textAndMnemonic=deletion
|
||||
AbstractDocument.undo.textAndMnemonic=Undo
|
||||
AbstractDocument.redo.textAndMnemonic=Redo
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.click.textAndMnemonic=click
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undo.textAndMnemonic=Undo
|
||||
AbstractUndoableEdit.redo.textAndMnemonic=Redo
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progress.textAndMnemonic=Progress...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButton.textAndMnemonic=left button
|
||||
SplitPane.rightButton.textAndMnemonic=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
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameText=RGB
|
||||
# ColorChooser.rgbMnemonic=71
|
||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# a decoration will be provided under the 'G'. This will typically
|
||||
# look like: RGB
|
||||
# -
|
||||
# 71 corresponds to the decimal value of the VK constant defined
|
||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
||||
#
|
||||
# public static final int VK_G = 0x47;
|
||||
#
|
||||
# 0x47 is a hex number and needs to be converted to decimal.
|
||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
||||
# for 'a' is 65, 'b' is 66...
|
||||
#
|
||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
||||
# character that should be underlined in the String, with 0
|
||||
# corresponding to the first character in the String.
|
||||
#
|
||||
# One important thing to remember is that the mnemonic MUST exist in
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescriptionText=Allgemeine Datei
|
||||
FileChooser.directoryDescriptionText=Verzeichnis
|
||||
FileChooser.newFolderErrorText=Fehler beim Erstellen eines neuen Ordners
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitleText=Ordner kann nicht erstellt werden
|
||||
FileChooser.newFolderParentDoesntExistText=Ordner kann nicht erstellt werden.\n\nSystem kann den angegebenen Pfad nicht finden.
|
||||
FileChooser.renameErrorTitleText=Fehler beim Umbenennen von Datei oder Ordner
|
||||
FileChooser.renameErrorText={0} kann nicht umbenannt werden
|
||||
FileChooser.renameErrorFileExistsText={0} kann nicht umbenannt werden: Es ist bereits eine Datei mit dem angegebenen Namen vorhanden. Geben Sie einen anderen Dateinamen an.
|
||||
FileChooser.acceptAllFileFilterText=Alle Dateien
|
||||
FileChooser.cancelButtonText=Abbrechen
|
||||
FileChooser.cancelButtonMnemonic=65
|
||||
FileChooser.saveButtonText=Speichern
|
||||
FileChooser.saveButtonMnemonic=83
|
||||
FileChooser.openButtonText=\u00D6ffnen
|
||||
FileChooser.openButtonMnemonic=70
|
||||
FileChooser.saveDialogTitleText=Speichern
|
||||
FileChooser.openDialogTitleText=\u00D6ffnen
|
||||
FileChooser.updateButtonText=Aktualisieren
|
||||
FileChooser.updateButtonMnemonic=75
|
||||
FileChooser.helpButtonText=Hilfe
|
||||
FileChooser.helpButtonMnemonic=72
|
||||
FileChooser.directoryOpenButtonText=\u00D6ffnen
|
||||
FileChooser.directoryOpenButtonMnemonic=70
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=Neuer Ordner
|
||||
FileChooser.win32.newFolder.subsequent=Neuer Ordner ({0})
|
||||
FileChooser.other.newFolder=NewFolder
|
||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTipText=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen
|
||||
FileChooser.saveButtonToolTipText=Ausgew\u00E4hlte Datei speichern
|
||||
FileChooser.openButtonToolTipText=Ausgew\u00E4hlte Datei \u00F6ffnen
|
||||
FileChooser.updateButtonToolTipText=Verzeichnisliste aktualisieren
|
||||
FileChooser.helpButtonToolTipText=FileChooser-Hilfe
|
||||
FileChooser.directoryOpenButtonToolTipText=Ausgew\u00E4hltes Verzeichnis \u00F6ffnen
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.previewText=Vorschau
|
||||
ColorChooser.okText=OK
|
||||
ColorChooser.cancelText=Abbrechen
|
||||
ColorChooser.resetText=Zur\u00FCcksetzen
|
||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
||||
ColorChooser.resetMnemonic=90
|
||||
ColorChooser.sampleText=Beispieltext Beispieltext
|
||||
ColorChooser.swatchesNameText=Swatches
|
||||
ColorChooser.swatchesMnemonic=83
|
||||
ColorChooser.swatchesRecentText=Aktuell:
|
||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
||||
# constant, and an index into the text to render the mnemonic as. The
|
||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
||||
# xxxDisplayedMnemonicIndex.
|
||||
ColorChooser.hsvNameText=HSV
|
||||
ColorChooser.hsvMnemonic=72
|
||||
ColorChooser.hsvHueText=Farbton
|
||||
ColorChooser.hsvSaturationText=S\u00E4ttigung
|
||||
ColorChooser.hsvValueText=Wert
|
||||
ColorChooser.hsvTransparencyText=Transparenz
|
||||
ColorChooser.hslNameText=HSL
|
||||
ColorChooser.hslMnemonic=76
|
||||
ColorChooser.hslHueText=Farbton
|
||||
ColorChooser.hslSaturationText=S\u00E4ttigung
|
||||
ColorChooser.hslLightnessText=Helligkeit
|
||||
ColorChooser.hslTransparencyText=Transparenz
|
||||
ColorChooser.rgbNameText=RGB
|
||||
ColorChooser.rgbMnemonic=71
|
||||
ColorChooser.rgbRedText=Rot
|
||||
ColorChooser.rgbRedMnemonic=84
|
||||
ColorChooser.rgbGreenText=Gr\u00FCn
|
||||
ColorChooser.rgbGreenMnemonic=78
|
||||
ColorChooser.rgbBlueText=Blau
|
||||
ColorChooser.rgbBlueMnemonic=66
|
||||
ColorChooser.rgbAlphaText=Alpha
|
||||
ColorChooser.rgbHexCodeText=Farbcode
|
||||
ColorChooser.rgbHexCodeMnemonic=70
|
||||
ColorChooser.cmykNameText=CMYK
|
||||
ColorChooser.cmykMnemonic=77
|
||||
ColorChooser.cmykCyanText=Zyan
|
||||
ColorChooser.cmykMagentaText=Magenta
|
||||
ColorChooser.cmykYellowText=Gelb
|
||||
ColorChooser.cmykBlackText=Schwarz
|
||||
ColorChooser.cmykAlphaText=Alpha
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButtonText=Ja
|
||||
OptionPane.yesButtonMnemonic=74
|
||||
OptionPane.noButtonText=Nein
|
||||
OptionPane.noButtonMnemonic=78
|
||||
OptionPane.okButtonText=OK
|
||||
OptionPane.okButtonMnemonic=O
|
||||
OptionPane.cancelButtonText=Abbrechen
|
||||
OptionPane.cancelButtonMnemonic=A
|
||||
OptionPane.titleText=Option ausw\u00E4hlen
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialogTitle=Eingabe
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialogTitle=Meldung
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgressText=Drucken
|
||||
PrintingDialog.titleAbortingText=Drucken (Abbruch)
|
||||
|
||||
PrintingDialog.contentInitialText=Druckvorgang l\u00E4uft...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgressText=Seite {0} wurde gedruckt...
|
||||
|
||||
PrintingDialog.contentAbortingText=Druckvorgang wird abgebrochen...
|
||||
|
||||
PrintingDialog.abortButtonText=Abbruch
|
||||
PrintingDialog.abortButtonMnemonic=65
|
||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
||||
PrintingDialog.abortButtonToolTipText=Druckvorgang abbrechen
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=Minimieren
|
||||
InternalFrame.maxButtonToolTip=Maximieren
|
||||
InternalFrame.restoreButtonToolTip=Wiederherstellen
|
||||
InternalFrame.closeButtonToolTip=Schlie\u00DFen
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButtonText=Wiederherstellen
|
||||
InternalFrameTitlePane.moveButtonText=Verschieben
|
||||
InternalFrameTitlePane.sizeButtonText=Gr\u00F6\u00DFe
|
||||
InternalFrameTitlePane.minimizeButtonText=Minimieren
|
||||
InternalFrameTitlePane.maximizeButtonText=Maximieren
|
||||
InternalFrameTitlePane.closeButtonText=Schlie\u00DFen
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButtonText=Abfrage weiterleiten
|
||||
FormView.resetButtonText=Zur\u00FCcksetzen
|
||||
FormView.browseFileButtonText=Durchsuchen...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChangeText=Formatvorlagen\u00E4nderung
|
||||
AbstractDocument.additionText=Hinzuf\u00FCgen
|
||||
AbstractDocument.deletionText=L\u00F6schen
|
||||
AbstractDocument.undoText=R\u00FCckg\u00E4ngig
|
||||
AbstractDocument.redoText=Wiederherstellen
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.clickText=Klicken
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undoText=R\u00FCckg\u00E4ngig
|
||||
AbstractUndoableEdit.redoText=Wiederherstellen
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopupText=togglePopup
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progressText=Fortschritt...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButtonText=linke Schaltfl\u00E4che
|
||||
SplitPane.rightButtonText=rechte Schaltfl\u00E4che
|
||||
# Used for Isindex
|
||||
IsindexView.prompt=Dieser Index kann durchsucht werden. Geben Sie Schl\u00FCsselw\u00F6rter f\u00FCr die Suche ein:
|
||||
|
||||
############ InternalFrameTitlePane Strings ############
|
||||
InternalFrameTitlePane.iconifyButtonAccessibleName=Als Symbol darstellen
|
||||
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximieren
|
||||
InternalFrameTitlePane.closeButtonAccessibleName=Schlie\u00DFen
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||
#
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# 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
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescription.textAndMnemonic=Allgemeine Datei
|
||||
FileChooser.directoryDescription.textAndMnemonic=Verzeichnis
|
||||
FileChooser.newFolderError.textAndMnemonic=Fehler beim Erstellen eines neuen Ordners
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Ordner kann nicht erstellt werden
|
||||
FileChooser.newFolderParentDoesntExist.textAndMnemonic=Ordner kann nicht erstellt werden.\n\nSystem kann den angegebenen Pfad nicht finden.
|
||||
FileChooser.renameErrorTitle.textAndMnemonic=Fehler beim Umbenennen von Datei oder Ordner
|
||||
FileChooser.renameError.textAndMnemonic={0} kann nicht umbenannt werden
|
||||
FileChooser.renameErrorFileExists.textAndMnemonic={0} kann nicht umbenannt werden: Es ist bereits eine Datei mit dem angegebenen Namen vorhanden. Geben Sie einen anderen Dateinamen an.
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=Alle Dateien
|
||||
FileChooser.cancelButton.textAndMnemonic=&Abbrechen
|
||||
FileChooser.saveButton.textAndMnemonic=&Speichern
|
||||
FileChooser.openButton.textAndMnemonic=\u00D6ffnen(&F)
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=Speichern
|
||||
FileChooser.openDialogTitle.textAndMnemonic=\u00D6ffnen
|
||||
FileChooser.updateButton.textAndMnemonic=A&ktualisieren
|
||||
FileChooser.helpButton.textAndMnemonic=&Hilfe
|
||||
FileChooser.directoryOpenButton.textAndMnemonic=\u00D6ffnen(&F)
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=Neuer Ordner
|
||||
FileChooser.win32.newFolder.subsequent=Neuer Ordner ({0})
|
||||
FileChooser.other.newFolder=NewFolder
|
||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei speichern
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=Ausgew\u00E4hlte Datei \u00F6ffnen
|
||||
FileChooser.updateButtonToolTip.textAndMnemonic=Verzeichnisliste aktualisieren
|
||||
FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser-Hilfe
|
||||
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Ausgew\u00E4hltes Verzeichnis \u00F6ffnen
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.preview.textAndMnemonic=Vorschau
|
||||
ColorChooser.ok.textAndMnemonic=OK
|
||||
ColorChooser.cancel.textAndMnemonic=Abbrechen
|
||||
ColorChooser.reset.textAndMnemonic=Zur\u00FCcksetzen(&Z)
|
||||
ColorChooser.sample.textAndMnemonic=Beispieltext Beispieltext
|
||||
ColorChooser.swatches.textAndMnemonic=&Swatches
|
||||
ColorChooser.swatchesRecent.textAndMnemonic=Aktuell:
|
||||
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||
ColorChooser.hsvHue.textAndMnemonic=Farbton
|
||||
ColorChooser.hsvSaturation.textAndMnemonic=S\u00E4ttigung
|
||||
ColorChooser.hsvValue.textAndMnemonic=Wert
|
||||
ColorChooser.hsvTransparency.textAndMnemonic=Transparenz
|
||||
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||
ColorChooser.hslHue.textAndMnemonic=Farbton
|
||||
ColorChooser.hslSaturation.textAndMnemonic=S\u00E4ttigung
|
||||
ColorChooser.hslLightness.textAndMnemonic=Helligkeit
|
||||
ColorChooser.hslTransparency.textAndMnemonic=Transparenz
|
||||
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||
ColorChooser.rgbRed.textAndMnemonic=Ro&t
|
||||
ColorChooser.rgbGreen.textAndMnemonic=Gr\u00FCn(&N)
|
||||
ColorChooser.rgbBlue.textAndMnemonic=&Blau
|
||||
ColorChooser.rgbAlpha.textAndMnemonic=Alpha
|
||||
ColorChooser.rgbHexCode.textAndMnemonic=&Farbcode
|
||||
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||
ColorChooser.cmykCyan.textAndMnemonic=Zyan
|
||||
ColorChooser.cmykMagenta.textAndMnemonic=Magenta
|
||||
ColorChooser.cmykYellow.textAndMnemonic=Gelb
|
||||
ColorChooser.cmykBlack.textAndMnemonic=Schwarz
|
||||
ColorChooser.cmykAlpha.textAndMnemonic=Alpha
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButton.textAndMnemonic=&Ja
|
||||
OptionPane.noButton.textAndMnemonic=&Nein
|
||||
OptionPane.okButton.textAndMnemonic=&OK
|
||||
OptionPane.cancelButton.textAndMnemonic=&Abbrechen
|
||||
OptionPane.title.textAndMnemonic=Option ausw\u00E4hlen
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialog.titleAndMnemonic=Eingabe
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialog.titleAndMnemonic=Meldung
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgress.textAndMnemonic=Drucken
|
||||
PrintingDialog.titleAborting.textAndMnemonic=Drucken (Abbruch)
|
||||
|
||||
PrintingDialog.contentInitial.textAndMnemonic=Druckvorgang l\u00E4uft...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgress.textAndMnemonic=Seite {0} wurde gedruckt...
|
||||
|
||||
PrintingDialog.contentAborting.textAndMnemonic=Druckvorgang wird abgebrochen...
|
||||
|
||||
PrintingDialog.abortButton.textAndMnemonic=&Abbruch
|
||||
PrintingDialog.abortButtonToolTip.textAndMnemonic=Druckvorgang abbrechen
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=Minimieren
|
||||
InternalFrame.maxButtonToolTip=Maximieren
|
||||
InternalFrame.restoreButtonToolTip=Wiederherstellen
|
||||
InternalFrame.closeButtonToolTip=Schlie\u00DFen
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButton.textAndMnemonic=Wiederherstellen
|
||||
InternalFrameTitlePane.moveButton.textAndMnemonic=Verschieben
|
||||
InternalFrameTitlePane.sizeButton.textAndMnemonic=Gr\u00F6\u00DFe
|
||||
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimieren
|
||||
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximieren
|
||||
InternalFrameTitlePane.closeButton.textAndMnemonic=Schlie\u00DFen
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButton.textAndMnemonic=Abfrage weiterleiten
|
||||
FormView.resetButton.textAndMnemonic=Zur\u00FCcksetzen
|
||||
FormView.browseFileButton.textAndMnemonic=Durchsuchen...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChange.textAndMnemonic=Formatvorlagen\u00E4nderung
|
||||
AbstractDocument.addition.textAndMnemonic=Hinzuf\u00FCgen
|
||||
AbstractDocument.deletion.textAndMnemonic=L\u00F6schen
|
||||
AbstractDocument.undo.textAndMnemonic=R\u00FCckg\u00E4ngig
|
||||
AbstractDocument.redo.textAndMnemonic=Wiederherstellen
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.click.textAndMnemonic=Klicken
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undo.textAndMnemonic=R\u00FCckg\u00E4ngig
|
||||
AbstractUndoableEdit.redo.textAndMnemonic=Wiederherstellen
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progress.textAndMnemonic=Fortschritt...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButton.textAndMnemonic=linke Schaltfl\u00E4che
|
||||
SplitPane.rightButton.textAndMnemonic=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
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameText=RGB
|
||||
# ColorChooser.rgbMnemonic=71
|
||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# a decoration will be provided under the 'G'. This will typically
|
||||
# look like: RGB
|
||||
# -
|
||||
# 71 corresponds to the decimal value of the VK constant defined
|
||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
||||
#
|
||||
# public static final int VK_G = 0x47;
|
||||
#
|
||||
# 0x47 is a hex number and needs to be converted to decimal.
|
||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
||||
# for 'a' is 65, 'b' is 66...
|
||||
#
|
||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
||||
# character that should be underlined in the String, with 0
|
||||
# corresponding to the first character in the String.
|
||||
#
|
||||
# One important thing to remember is that the mnemonic MUST exist in
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescriptionText=Archivo Gen\u00E9rico
|
||||
FileChooser.directoryDescriptionText=Directorio
|
||||
FileChooser.newFolderErrorText=Error al crear una nueva carpeta
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitleText=No se ha podido crear la carpeta
|
||||
FileChooser.newFolderParentDoesntExistText=No se ha podido crear la carpeta.\n\nEl sistema no puede encontrar la ruta de acceso especificada.
|
||||
FileChooser.renameErrorTitleText=Error al cambiar el nombre del archivo o carpeta
|
||||
FileChooser.renameErrorText=No se puede cambiar el nombre de {0}
|
||||
FileChooser.renameErrorFileExistsText=No se puede cambiar el nombre de {0}: ya existe un archivo con el nombre especificado. Especifique otro nombre de archivo.
|
||||
FileChooser.acceptAllFileFilterText=Todos los Archivos
|
||||
FileChooser.cancelButtonText=Cancelar
|
||||
FileChooser.cancelButtonMnemonic=67
|
||||
FileChooser.saveButtonText=Guardar
|
||||
FileChooser.saveButtonMnemonic=71
|
||||
FileChooser.openButtonText=Abrir
|
||||
FileChooser.openButtonMnemonic=66
|
||||
FileChooser.saveDialogTitleText=Guardar
|
||||
FileChooser.openDialogTitleText=Abrir
|
||||
FileChooser.updateButtonText=Actualizar
|
||||
FileChooser.updateButtonMnemonic=85
|
||||
FileChooser.helpButtonText=Ayuda
|
||||
FileChooser.helpButtonMnemonic=89
|
||||
FileChooser.directoryOpenButtonText=Abrir
|
||||
FileChooser.directoryOpenButtonMnemonic=65
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=Nueva Carpeta
|
||||
FileChooser.win32.newFolder.subsequent=Nueva Carpeta ({0})
|
||||
FileChooser.other.newFolder=Nueva Carpeta
|
||||
FileChooser.other.newFolder.subsequent=Nueva Carpeta.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTipText=Cuadro de di\u00E1logo para abortar el selector de archivos
|
||||
FileChooser.saveButtonToolTipText=Guardar archivo seleccionado
|
||||
FileChooser.openButtonToolTipText=Abrir archivo seleccionado
|
||||
FileChooser.updateButtonToolTipText=Actualizar lista de directorios
|
||||
FileChooser.helpButtonToolTipText=Ayuda del Selector de Archivos
|
||||
FileChooser.directoryOpenButtonToolTipText=Abrir directorio seleccionado
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.previewText=Presentaci\u00F3n Preliminar
|
||||
ColorChooser.okText=Aceptar
|
||||
ColorChooser.cancelText=Cancelar
|
||||
ColorChooser.resetText=Restablecer
|
||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
||||
ColorChooser.resetMnemonic=82
|
||||
ColorChooser.sampleText=Texto de Ejemplo Texto de Ejemplo
|
||||
ColorChooser.swatchesNameText=Muestras
|
||||
ColorChooser.swatchesMnemonic=83
|
||||
ColorChooser.swatchesRecentText=Reciente:
|
||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
||||
# constant, and an index into the text to render the mnemonic as. The
|
||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
||||
# xxxDisplayedMnemonicIndex.
|
||||
ColorChooser.hsvNameText=HSV
|
||||
ColorChooser.hsvMnemonic=72
|
||||
ColorChooser.hsvHueText=Matiz
|
||||
ColorChooser.hsvSaturationText=Saturaci\u00F3n
|
||||
ColorChooser.hsvValueText=Valor
|
||||
ColorChooser.hsvTransparencyText=Transparencia
|
||||
ColorChooser.hslNameText=HSL
|
||||
ColorChooser.hslMnemonic=76
|
||||
ColorChooser.hslHueText=Matiz
|
||||
ColorChooser.hslSaturationText=Saturaci\u00F3n
|
||||
ColorChooser.hslLightnessText=Iluminaci\u00F3n
|
||||
ColorChooser.hslTransparencyText=Transparencia
|
||||
ColorChooser.rgbNameText=RGB
|
||||
ColorChooser.rgbMnemonic=71
|
||||
ColorChooser.rgbRedText=Rojo
|
||||
ColorChooser.rgbRedMnemonic=74
|
||||
ColorChooser.rgbGreenText=Verde
|
||||
ColorChooser.rgbGreenMnemonic=86
|
||||
ColorChooser.rgbBlueText=Azul
|
||||
ColorChooser.rgbBlueMnemonic=90
|
||||
ColorChooser.rgbAlphaText=Alfa
|
||||
ColorChooser.rgbHexCodeText=C\u00F3digo de Color
|
||||
ColorChooser.rgbHexCodeMnemonic=67
|
||||
ColorChooser.cmykNameText=CMYK
|
||||
ColorChooser.cmykMnemonic=77
|
||||
ColorChooser.cmykCyanText=Cian
|
||||
ColorChooser.cmykMagentaText=Magenta
|
||||
ColorChooser.cmykYellowText=Amarillo
|
||||
ColorChooser.cmykBlackText=Negro
|
||||
ColorChooser.cmykAlphaText=Alfa
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButtonText=S\u00ED
|
||||
OptionPane.yesButtonMnemonic=83
|
||||
OptionPane.noButtonText=No
|
||||
OptionPane.noButtonMnemonic=78
|
||||
OptionPane.okButtonText=Aceptar
|
||||
OptionPane.okButtonMnemonic=O
|
||||
OptionPane.cancelButtonText=Cancelar
|
||||
OptionPane.cancelButtonMnemonic=C
|
||||
OptionPane.titleText=Seleccionar una Opci\u00F3n
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialogTitle=Entrada
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialogTitle=Mensaje
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgressText=Impresi\u00F3n
|
||||
PrintingDialog.titleAbortingText=Impresi\u00F3n (Abortando)
|
||||
|
||||
PrintingDialog.contentInitialText=Impresi\u00F3n en curso...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgressText=P\u00E1gina impresa {0}...
|
||||
|
||||
PrintingDialog.contentAbortingText=Abortando la impresi\u00F3n...
|
||||
|
||||
PrintingDialog.abortButtonText=Abortar
|
||||
PrintingDialog.abortButtonMnemonic=65
|
||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
||||
PrintingDialog.abortButtonToolTipText=Abortar Impresi\u00F3n
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=Minimizar
|
||||
InternalFrame.maxButtonToolTip=Maximizar
|
||||
InternalFrame.restoreButtonToolTip=Restaurar
|
||||
InternalFrame.closeButtonToolTip=Cerrar
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButtonText=Restaurar
|
||||
InternalFrameTitlePane.moveButtonText=Mover
|
||||
InternalFrameTitlePane.sizeButtonText=Tama\u00F1o
|
||||
InternalFrameTitlePane.minimizeButtonText=Minimizar
|
||||
InternalFrameTitlePane.maximizeButtonText=Maximizar
|
||||
InternalFrameTitlePane.closeButtonText=Cerrar
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButtonText=Enviar Consulta
|
||||
FormView.resetButtonText=Restablecer
|
||||
FormView.browseFileButtonText=Examinar...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChangeText=cambio de estilo
|
||||
AbstractDocument.additionText=agregaci\u00F3n
|
||||
AbstractDocument.deletionText=supresi\u00F3n
|
||||
AbstractDocument.undoText=Deshacer
|
||||
AbstractDocument.redoText=Rehacer
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.clickText=hacer clic
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undoText=Deshacer
|
||||
AbstractUndoableEdit.redoText=Rehacer
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopupText=togglePopup
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progressText=Progreso...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButtonText=bot\u00F3n izquierdo
|
||||
SplitPane.rightButtonText=bot\u00F3n derecho
|
||||
# Used for Isindex
|
||||
IsindexView.prompt=En este \u00EDndice se pueden efectuar b\u00FAsquedas. Escriba las palabras clave de b\u00FAsqueda:
|
||||
|
||||
############ InternalFrameTitlePane Strings ############
|
||||
InternalFrameTitlePane.iconifyButtonAccessibleName=Convertir en Icono
|
||||
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar
|
||||
InternalFrameTitlePane.closeButtonAccessibleName=Cerrar
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# 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
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescription.textAndMnemonic=Archivo Gen\u00E9rico
|
||||
FileChooser.directoryDescription.textAndMnemonic=Directorio
|
||||
FileChooser.newFolderError.textAndMnemonic=Error al crear una nueva carpeta
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=No se ha podido crear la carpeta
|
||||
FileChooser.newFolderParentDoesntExist.textAndMnemonic=No se ha podido crear la carpeta.\n\nEl sistema no puede encontrar la ruta de acceso especificada.
|
||||
FileChooser.renameErrorTitle.textAndMnemonic=Error al cambiar el nombre del archivo o carpeta
|
||||
FileChooser.renameError.textAndMnemonic=No se puede cambiar el nombre de {0}
|
||||
FileChooser.renameErrorFileExists.textAndMnemonic=No se puede cambiar el nombre de {0}: ya existe un archivo con el nombre especificado. Especifique otro nombre de archivo.
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=Todos los Archivos
|
||||
FileChooser.cancelButton.textAndMnemonic=&Cancelar
|
||||
FileChooser.saveButton.textAndMnemonic=&Guardar
|
||||
FileChooser.openButton.textAndMnemonic=A&brir
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=Guardar
|
||||
FileChooser.openDialogTitle.textAndMnemonic=Abrir
|
||||
FileChooser.updateButton.textAndMnemonic=Act&ualizar
|
||||
FileChooser.helpButton.textAndMnemonic=A&yuda
|
||||
FileChooser.directoryOpenButton.textAndMnemonic=&Abrir
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=Nueva Carpeta
|
||||
FileChooser.win32.newFolder.subsequent=Nueva Carpeta ({0})
|
||||
FileChooser.other.newFolder=Nueva Carpeta
|
||||
FileChooser.other.newFolder.subsequent=Nueva Carpeta.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Cuadro de di\u00E1logo para abortar el selector de archivos
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=Guardar archivo seleccionado
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=Abrir archivo seleccionado
|
||||
FileChooser.updateButtonToolTip.textAndMnemonic=Actualizar lista de directorios
|
||||
FileChooser.helpButtonToolTip.textAndMnemonic=Ayuda del Selector de Archivos
|
||||
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Abrir directorio seleccionado
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.preview.textAndMnemonic=Presentaci\u00F3n Preliminar
|
||||
ColorChooser.ok.textAndMnemonic=Aceptar
|
||||
ColorChooser.cancel.textAndMnemonic=Cancelar
|
||||
ColorChooser.reset.textAndMnemonic=&Restablecer
|
||||
ColorChooser.sample.textAndMnemonic=Texto de Ejemplo Texto de Ejemplo
|
||||
ColorChooser.swatches.textAndMnemonic=Mue&stras
|
||||
ColorChooser.swatchesRecent.textAndMnemonic=Reciente:
|
||||
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||
ColorChooser.hsvHue.textAndMnemonic=Matiz
|
||||
ColorChooser.hsvSaturation.textAndMnemonic=Saturaci\u00F3n
|
||||
ColorChooser.hsvValue.textAndMnemonic=Valor
|
||||
ColorChooser.hsvTransparency.textAndMnemonic=Transparencia
|
||||
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||
ColorChooser.hslHue.textAndMnemonic=Matiz
|
||||
ColorChooser.hslSaturation.textAndMnemonic=Saturaci\u00F3n
|
||||
ColorChooser.hslLightness.textAndMnemonic=Iluminaci\u00F3n
|
||||
ColorChooser.hslTransparency.textAndMnemonic=Transparencia
|
||||
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||
ColorChooser.rgbRed.textAndMnemonic=Ro&jo
|
||||
ColorChooser.rgbGreen.textAndMnemonic=&Verde
|
||||
ColorChooser.rgbBlue.textAndMnemonic=A&zul
|
||||
ColorChooser.rgbAlpha.textAndMnemonic=Alfa
|
||||
ColorChooser.rgbHexCode.textAndMnemonic=C\u00F3digo de Color(&C)
|
||||
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||
ColorChooser.cmykCyan.textAndMnemonic=Cian
|
||||
ColorChooser.cmykMagenta.textAndMnemonic=Magenta
|
||||
ColorChooser.cmykYellow.textAndMnemonic=Amarillo
|
||||
ColorChooser.cmykBlack.textAndMnemonic=Negro
|
||||
ColorChooser.cmykAlpha.textAndMnemonic=Alfa
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButton.textAndMnemonic=S\u00ED(&S)
|
||||
OptionPane.noButton.textAndMnemonic=&No
|
||||
OptionPane.okButton.textAndMnemonic=Aceptar(&O)
|
||||
OptionPane.cancelButton.textAndMnemonic=&Cancelar
|
||||
OptionPane.title.textAndMnemonic=Seleccionar una Opci\u00F3n
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialog.titleAndMnemonic=Entrada
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialog.titleAndMnemonic=Mensaje
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgress.textAndMnemonic=Impresi\u00F3n
|
||||
PrintingDialog.titleAborting.textAndMnemonic=Impresi\u00F3n (Abortando)
|
||||
|
||||
PrintingDialog.contentInitial.textAndMnemonic=Impresi\u00F3n en curso...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgress.textAndMnemonic=P\u00E1gina impresa {0}...
|
||||
|
||||
PrintingDialog.contentAborting.textAndMnemonic=Abortando la impresi\u00F3n...
|
||||
|
||||
PrintingDialog.abortButton.textAndMnemonic=&Abortar
|
||||
PrintingDialog.abortButtonToolTip.textAndMnemonic=Abortar Impresi\u00F3n
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=Minimizar
|
||||
InternalFrame.maxButtonToolTip=Maximizar
|
||||
InternalFrame.restoreButtonToolTip=Restaurar
|
||||
InternalFrame.closeButtonToolTip=Cerrar
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurar
|
||||
InternalFrameTitlePane.moveButton.textAndMnemonic=Mover
|
||||
InternalFrameTitlePane.sizeButton.textAndMnemonic=Tama\u00F1o
|
||||
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimizar
|
||||
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximizar
|
||||
InternalFrameTitlePane.closeButton.textAndMnemonic=Cerrar
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButton.textAndMnemonic=Enviar Consulta
|
||||
FormView.resetButton.textAndMnemonic=Restablecer
|
||||
FormView.browseFileButton.textAndMnemonic=Examinar...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChange.textAndMnemonic=cambio de estilo
|
||||
AbstractDocument.addition.textAndMnemonic=agregaci\u00F3n
|
||||
AbstractDocument.deletion.textAndMnemonic=supresi\u00F3n
|
||||
AbstractDocument.undo.textAndMnemonic=Deshacer
|
||||
AbstractDocument.redo.textAndMnemonic=Rehacer
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.click.textAndMnemonic=hacer clic
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undo.textAndMnemonic=Deshacer
|
||||
AbstractUndoableEdit.redo.textAndMnemonic=Rehacer
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progress.textAndMnemonic=Progreso...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButton.textAndMnemonic=bot\u00F3n izquierdo
|
||||
SplitPane.rightButton.textAndMnemonic=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
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameText=RGB
|
||||
# ColorChooser.rgbMnemonic=71
|
||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# a decoration will be provided under the 'G'. This will typically
|
||||
# look like: RGB
|
||||
# -
|
||||
# 71 corresponds to the decimal value of the VK constant defined
|
||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
||||
#
|
||||
# public static final int VK_G = 0x47;
|
||||
#
|
||||
# 0x47 is a hex number and needs to be converted to decimal.
|
||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
||||
# for 'a' is 65, 'b' is 66...
|
||||
#
|
||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
||||
# character that should be underlined in the String, with 0
|
||||
# corresponding to the first character in the String.
|
||||
#
|
||||
# One important thing to remember is that the mnemonic MUST exist in
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescriptionText=Fichier g\u00E9n\u00E9rique
|
||||
FileChooser.directoryDescriptionText=R\u00E9pertoire
|
||||
FileChooser.newFolderErrorText=Erreur lors de la cr\u00E9ation du dossier
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitleText=Impossible de cr\u00E9er le dossier
|
||||
FileChooser.newFolderParentDoesntExistText=Impossible de cr\u00E9er le dossier.\n\nLe syst\u00E8me ne parvient pas \u00E0 trouver le chemin indiqu\u00E9.
|
||||
FileChooser.renameErrorTitleText=Erreur lors du changement de nom du fichier ou du dossier
|
||||
FileChooser.renameErrorText=Impossible de renommer {0}
|
||||
FileChooser.renameErrorFileExistsText=Impossible de renommer {0} : il existe d\u00E9j\u00E0 un fichier portant le nom indiqu\u00E9. Indiquez-en un autre.
|
||||
FileChooser.acceptAllFileFilterText=Tous les fichiers
|
||||
FileChooser.cancelButtonText=Annuler
|
||||
FileChooser.cancelButtonMnemonic=65
|
||||
FileChooser.saveButtonText=Enregistrer
|
||||
FileChooser.saveButtonMnemonic=83
|
||||
FileChooser.openButtonText=Ouvrir
|
||||
FileChooser.openButtonMnemonic=79
|
||||
FileChooser.saveDialogTitleText=Enregistrer
|
||||
FileChooser.openDialogTitleText=Ouvrir
|
||||
FileChooser.updateButtonText=Mettre \u00E0 jour
|
||||
FileChooser.updateButtonMnemonic=85
|
||||
FileChooser.helpButtonText=Aide
|
||||
FileChooser.helpButtonMnemonic=65
|
||||
FileChooser.directoryOpenButtonText=Ouvrir
|
||||
FileChooser.directoryOpenButtonMnemonic=79
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=Nouveau dossier
|
||||
FileChooser.win32.newFolder.subsequent=Nouveau dossier ({0})
|
||||
FileChooser.other.newFolder=NewFolder
|
||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
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.updateButtonToolTipText=Met \u00E0 jour la liste des r\u00E9pertoires
|
||||
FileChooser.helpButtonToolTipText=Aide du s\u00E9lecteur de fichiers
|
||||
FileChooser.directoryOpenButtonToolTipText=Ouvre le r\u00E9pertoire s\u00E9lectionn\u00E9
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.previewText=Aper\u00E7u
|
||||
ColorChooser.okText=OK
|
||||
ColorChooser.cancelText=Annuler
|
||||
ColorChooser.resetText=R\u00E9initialiser
|
||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
||||
ColorChooser.resetMnemonic=82
|
||||
ColorChooser.sampleText=Echantillon de texte Echantillon de texte
|
||||
ColorChooser.swatchesNameText=Echantillons
|
||||
ColorChooser.swatchesMnemonic=69
|
||||
ColorChooser.swatchesRecentText=Dernier :
|
||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
||||
# constant, and an index into the text to render the mnemonic as. The
|
||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
||||
# xxxDisplayedMnemonicIndex.
|
||||
ColorChooser.hsvNameText=TSV
|
||||
ColorChooser.hsvMnemonic=84
|
||||
ColorChooser.hsvHueText=Teinte
|
||||
ColorChooser.hsvSaturationText=Saturation
|
||||
ColorChooser.hsvValueText=Valeur
|
||||
ColorChooser.hsvTransparencyText=Transparence
|
||||
ColorChooser.hslNameText=TSL
|
||||
ColorChooser.hslMnemonic=76
|
||||
ColorChooser.hslHueText=Teinte
|
||||
ColorChooser.hslSaturationText=Saturation
|
||||
ColorChooser.hslLightnessText=Lumi\u00E8re
|
||||
ColorChooser.hslTransparencyText=Transparence
|
||||
ColorChooser.rgbNameText=RVB
|
||||
ColorChooser.rgbMnemonic=86
|
||||
ColorChooser.rgbRedText=Rouge
|
||||
ColorChooser.rgbRedMnemonic=79
|
||||
ColorChooser.rgbGreenText=Vert
|
||||
ColorChooser.rgbGreenMnemonic=86
|
||||
ColorChooser.rgbBlueText=Bleu
|
||||
ColorChooser.rgbBlueMnemonic=66
|
||||
ColorChooser.rgbAlphaText=Alpha
|
||||
ColorChooser.rgbHexCodeText=Code couleur
|
||||
ColorChooser.rgbHexCodeMnemonic=67
|
||||
ColorChooser.cmykNameText=CMYK
|
||||
ColorChooser.cmykMnemonic=77
|
||||
ColorChooser.cmykCyanText=Cyan
|
||||
ColorChooser.cmykMagentaText=Magenta
|
||||
ColorChooser.cmykYellowText=Jaune
|
||||
ColorChooser.cmykBlackText=Noir
|
||||
ColorChooser.cmykAlphaText=Alpha
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButtonText=Oui
|
||||
OptionPane.yesButtonMnemonic=79
|
||||
OptionPane.noButtonText=Non
|
||||
OptionPane.noButtonMnemonic=78
|
||||
OptionPane.okButtonText=OK
|
||||
OptionPane.okButtonMnemonic=O
|
||||
OptionPane.cancelButtonText=Annuler
|
||||
OptionPane.cancelButtonMnemonic=A
|
||||
OptionPane.titleText=S\u00E9lectionner une option
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialogTitle=Entr\u00E9e
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialogTitle=Message
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgressText=Impression
|
||||
PrintingDialog.titleAbortingText=Impression (abandon)
|
||||
|
||||
PrintingDialog.contentInitialText=Impression en cours...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgressText=Page {0} imprim\u00E9e...
|
||||
|
||||
PrintingDialog.contentAbortingText=Abandon de l'impression...
|
||||
|
||||
PrintingDialog.abortButtonText=Abandonner
|
||||
PrintingDialog.abortButtonMnemonic=65
|
||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
||||
PrintingDialog.abortButtonToolTipText=Abandonner l'impression
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=R\u00E9duire
|
||||
InternalFrame.maxButtonToolTip=Agrandir
|
||||
InternalFrame.restoreButtonToolTip=Restaurer
|
||||
InternalFrame.closeButtonToolTip=Fermer
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButtonText=Restaurer
|
||||
InternalFrameTitlePane.moveButtonText=D\u00E9placer
|
||||
InternalFrameTitlePane.sizeButtonText=Taille
|
||||
InternalFrameTitlePane.minimizeButtonText=R\u00E9duire
|
||||
InternalFrameTitlePane.maximizeButtonText=Agrandir
|
||||
InternalFrameTitlePane.closeButtonText=Fermer
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButtonText=Soumettre la requ\u00EAte
|
||||
FormView.resetButtonText=R\u00E9initialiser
|
||||
FormView.browseFileButtonText=Parcourir...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChangeText=modification de style
|
||||
AbstractDocument.additionText=ajout
|
||||
AbstractDocument.deletionText=suppression
|
||||
AbstractDocument.undoText=Annuler
|
||||
AbstractDocument.redoText=R\u00E9tablir
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.clickText=cliquer
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undoText=Annuler
|
||||
AbstractUndoableEdit.redoText=R\u00E9tablir
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopupText=togglePopup
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progressText=Progression...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButtonText=bouton gauche
|
||||
SplitPane.rightButtonText=bouton droit
|
||||
# Used for Isindex
|
||||
IsindexView.prompt=Ceci est un index de recherche. Tapez des mots-cl\u00E9s pour la recherche :
|
||||
|
||||
############ InternalFrameTitlePane Strings ############
|
||||
InternalFrameTitlePane.iconifyButtonAccessibleName=R\u00E9duire
|
||||
InternalFrameTitlePane.maximizeButtonAccessibleName=Agrandir
|
||||
InternalFrameTitlePane.closeButtonAccessibleName=Fermer
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# 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
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescription.textAndMnemonic=Fichier g\u00E9n\u00E9rique
|
||||
FileChooser.directoryDescription.textAndMnemonic=R\u00E9pertoire
|
||||
FileChooser.newFolderError.textAndMnemonic=Erreur lors de la cr\u00E9ation du dossier
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Impossible de cr\u00E9er le dossier
|
||||
FileChooser.newFolderParentDoesntExist.textAndMnemonic=Impossible de cr\u00E9er le dossier.\n\nLe syst\u00E8me ne parvient pas \u00E0 trouver le chemin indiqu\u00E9.
|
||||
FileChooser.renameErrorTitle.textAndMnemonic=Erreur lors du changement de nom du fichier ou du dossier
|
||||
FileChooser.renameError.textAndMnemonic=Impossible de renommer {0}
|
||||
FileChooser.renameErrorFileExists.textAndMnemonic=Impossible de renommer {0} : il existe d\u00E9j\u00E0 un fichier portant le nom indiqu\u00E9. Indiquez-en un autre.
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=Tous les fichiers
|
||||
FileChooser.cancelButton.textAndMnemonic=&Annuler
|
||||
FileChooser.saveButton.textAndMnemonic=Enregi&strer
|
||||
FileChooser.openButton.textAndMnemonic=&Ouvrir
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=Enregistrer
|
||||
FileChooser.openDialogTitle.textAndMnemonic=Ouvrir
|
||||
FileChooser.updateButton.textAndMnemonic=Mettre \u00E0 jour(&U)
|
||||
FileChooser.helpButton.textAndMnemonic=&Aide
|
||||
FileChooser.directoryOpenButton.textAndMnemonic=&Ouvrir
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=Nouveau dossier
|
||||
FileChooser.win32.newFolder.subsequent=Nouveau dossier ({0})
|
||||
FileChooser.other.newFolder=NewFolder
|
||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=Enregistre le fichier s\u00E9lectionn\u00E9
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=Ouvre le fichier s\u00E9lectionn\u00E9
|
||||
FileChooser.updateButtonToolTip.textAndMnemonic=Met \u00E0 jour la liste des r\u00E9pertoires
|
||||
FileChooser.helpButtonToolTip.textAndMnemonic=Aide du s\u00E9lecteur de fichiers
|
||||
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Ouvre le r\u00E9pertoire s\u00E9lectionn\u00E9
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.preview.textAndMnemonic=Aper\u00E7u
|
||||
ColorChooser.ok.textAndMnemonic=OK
|
||||
ColorChooser.cancel.textAndMnemonic=Annuler
|
||||
ColorChooser.reset.textAndMnemonic=R\u00E9initialiser(&R)
|
||||
ColorChooser.sample.textAndMnemonic=Echantillon de texte Echantillon de texte
|
||||
ColorChooser.swatches.textAndMnemonic=&Echantillons
|
||||
ColorChooser.swatchesRecent.textAndMnemonic=Dernier :
|
||||
ColorChooser.hsv.textAndMnemonic=&TSV
|
||||
ColorChooser.hsvHue.textAndMnemonic=Teinte
|
||||
ColorChooser.hsvSaturation.textAndMnemonic=Saturation
|
||||
ColorChooser.hsvValue.textAndMnemonic=Valeur
|
||||
ColorChooser.hsvTransparency.textAndMnemonic=Transparence
|
||||
ColorChooser.hsl.textAndMnemonic=TS&L
|
||||
ColorChooser.hslHue.textAndMnemonic=Teinte
|
||||
ColorChooser.hslSaturation.textAndMnemonic=Saturation
|
||||
ColorChooser.hslLightness.textAndMnemonic=Lumi\u00E8re
|
||||
ColorChooser.hslTransparency.textAndMnemonic=Transparence
|
||||
ColorChooser.rgb.textAndMnemonic=R&VB
|
||||
ColorChooser.rgbRed.textAndMnemonic=R&ouge
|
||||
ColorChooser.rgbGreen.textAndMnemonic=&Vert
|
||||
ColorChooser.rgbBlue.textAndMnemonic=&Bleu
|
||||
ColorChooser.rgbAlpha.textAndMnemonic=Alpha
|
||||
ColorChooser.rgbHexCode.textAndMnemonic=&Code couleur
|
||||
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||
ColorChooser.cmykCyan.textAndMnemonic=Cyan
|
||||
ColorChooser.cmykMagenta.textAndMnemonic=Magenta
|
||||
ColorChooser.cmykYellow.textAndMnemonic=Jaune
|
||||
ColorChooser.cmykBlack.textAndMnemonic=Noir
|
||||
ColorChooser.cmykAlpha.textAndMnemonic=Alpha
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButton.textAndMnemonic=&Oui
|
||||
OptionPane.noButton.textAndMnemonic=&Non
|
||||
OptionPane.okButton.textAndMnemonic=&OK
|
||||
OptionPane.cancelButton.textAndMnemonic=&Annuler
|
||||
OptionPane.title.textAndMnemonic=S\u00E9lectionner une option
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialog.titleAndMnemonic=Entr\u00E9e
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialog.titleAndMnemonic=Message
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgress.textAndMnemonic=Impression
|
||||
PrintingDialog.titleAborting.textAndMnemonic=Impression (abandon)
|
||||
|
||||
PrintingDialog.contentInitial.textAndMnemonic=Impression en cours...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgress.textAndMnemonic=Page {0} imprim\u00E9e...
|
||||
|
||||
PrintingDialog.contentAborting.textAndMnemonic=Abandon de l'impression...
|
||||
|
||||
PrintingDialog.abortButton.textAndMnemonic=&Abandonner
|
||||
PrintingDialog.abortButtonToolTip.textAndMnemonic=Abandonner l'impression
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=R\u00E9duire
|
||||
InternalFrame.maxButtonToolTip=Agrandir
|
||||
InternalFrame.restoreButtonToolTip=Restaurer
|
||||
InternalFrame.closeButtonToolTip=Fermer
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurer
|
||||
InternalFrameTitlePane.moveButton.textAndMnemonic=D\u00E9placer
|
||||
InternalFrameTitlePane.sizeButton.textAndMnemonic=Taille
|
||||
InternalFrameTitlePane.minimizeButton.textAndMnemonic=R\u00E9duire
|
||||
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Agrandir
|
||||
InternalFrameTitlePane.closeButton.textAndMnemonic=Fermer
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButton.textAndMnemonic=Soumettre la requ\u00EAte
|
||||
FormView.resetButton.textAndMnemonic=R\u00E9initialiser
|
||||
FormView.browseFileButton.textAndMnemonic=Parcourir...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChange.textAndMnemonic=modification de style
|
||||
AbstractDocument.addition.textAndMnemonic=ajout
|
||||
AbstractDocument.deletion.textAndMnemonic=suppression
|
||||
AbstractDocument.undo.textAndMnemonic=Annuler
|
||||
AbstractDocument.redo.textAndMnemonic=R\u00E9tablir
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.click.textAndMnemonic=cliquer
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undo.textAndMnemonic=Annuler
|
||||
AbstractUndoableEdit.redo.textAndMnemonic=R\u00E9tablir
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progress.textAndMnemonic=Progression...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButton.textAndMnemonic=bouton gauche
|
||||
SplitPane.rightButton.textAndMnemonic=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
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameText=RGB
|
||||
# ColorChooser.rgbMnemonic=71
|
||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# a decoration will be provided under the 'G'. This will typically
|
||||
# look like: RGB
|
||||
# -
|
||||
# 71 corresponds to the decimal value of the VK constant defined
|
||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
||||
#
|
||||
# public static final int VK_G = 0x47;
|
||||
#
|
||||
# 0x47 is a hex number and needs to be converted to decimal.
|
||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
||||
# for 'a' is 65, 'b' is 66...
|
||||
#
|
||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
||||
# character that should be underlined in the String, with 0
|
||||
# corresponding to the first character in the String.
|
||||
#
|
||||
# One important thing to remember is that the mnemonic MUST exist in
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescriptionText=File generico
|
||||
FileChooser.directoryDescriptionText=Directory
|
||||
FileChooser.newFolderErrorText=Errore durante la creazione della nuova cartella
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitleText=Impossibile creare la cartella
|
||||
FileChooser.newFolderParentDoesntExistText=Impossibile creare la cartella.\n\nIl sistema non \u00E8 in grado di trovare il percorso specificato.
|
||||
FileChooser.renameErrorTitleText=Errore durante la ridenominazione del file o della cartella
|
||||
FileChooser.renameErrorText=Impossibile rinominare {0}
|
||||
FileChooser.renameErrorFileExistsText=Impossibile rinominare {0}: esiste gi\u00E0 un file con il nome specificato. Specificare un altro nome.
|
||||
FileChooser.acceptAllFileFilterText=Tutti i file
|
||||
FileChooser.cancelButtonText=Annulla
|
||||
FileChooser.cancelButtonMnemonic=65
|
||||
FileChooser.saveButtonText=Salva
|
||||
FileChooser.saveButtonMnemonic=86
|
||||
FileChooser.openButtonText=Apri
|
||||
FileChooser.openButtonMnemonic=80
|
||||
FileChooser.saveDialogTitleText=Salva
|
||||
FileChooser.openDialogTitleText=Apri
|
||||
FileChooser.updateButtonText=Aggiorna
|
||||
FileChooser.updateButtonMnemonic=71
|
||||
FileChooser.helpButtonText=?(H)
|
||||
FileChooser.helpButtonMnemonic=72
|
||||
FileChooser.directoryOpenButtonText=Apri
|
||||
FileChooser.directoryOpenButtonMnemonic=65
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=Nuova cartella
|
||||
FileChooser.win32.newFolder.subsequent=Nuova cartella ({0})
|
||||
FileChooser.other.newFolder=NewFolder
|
||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTipText=Chiude la finestra di dialogo di selezione file
|
||||
FileChooser.saveButtonToolTipText=Salva il file selezionato
|
||||
FileChooser.openButtonToolTipText=Apre il file selezionato
|
||||
FileChooser.updateButtonToolTipText=Aggiorna la lista directory
|
||||
FileChooser.helpButtonToolTipText=Guida FileChooser
|
||||
FileChooser.directoryOpenButtonToolTipText=Apre la directory selezionata
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.previewText=Anteprima
|
||||
ColorChooser.okText=OK
|
||||
ColorChooser.cancelText=Annulla
|
||||
ColorChooser.resetText=Reimposta
|
||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
||||
ColorChooser.resetMnemonic=82
|
||||
ColorChooser.sampleText=Testo di prova Testo di prova
|
||||
ColorChooser.swatchesNameText=Colori campione
|
||||
ColorChooser.swatchesMnemonic=80
|
||||
ColorChooser.swatchesRecentText=Recenti:
|
||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
||||
# constant, and an index into the text to render the mnemonic as. The
|
||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
||||
# xxxDisplayedMnemonicIndex.
|
||||
ColorChooser.hsvNameText=HSV
|
||||
ColorChooser.hsvMnemonic=72
|
||||
ColorChooser.hsvHueText=Tonalit\u00E0
|
||||
ColorChooser.hsvSaturationText=Saturazione
|
||||
ColorChooser.hsvValueText=Valore
|
||||
ColorChooser.hsvTransparencyText=Trasparenza
|
||||
ColorChooser.hslNameText=HSL
|
||||
ColorChooser.hslMnemonic=76
|
||||
ColorChooser.hslHueText=Tonalit\u00E0
|
||||
ColorChooser.hslSaturationText=Saturazione
|
||||
ColorChooser.hslLightnessText=Luminosit\u00E0
|
||||
ColorChooser.hslTransparencyText=Trasparenza
|
||||
ColorChooser.rgbNameText=RGB
|
||||
ColorChooser.rgbMnemonic=71
|
||||
ColorChooser.rgbRedText=Rosso
|
||||
ColorChooser.rgbRedMnemonic=83
|
||||
ColorChooser.rgbGreenText=Verde
|
||||
ColorChooser.rgbGreenMnemonic=68
|
||||
ColorChooser.rgbBlueText=Blu
|
||||
ColorChooser.rgbBlueMnemonic=66
|
||||
ColorChooser.rgbAlphaText=Alfa
|
||||
ColorChooser.rgbHexCodeText=Codice colori
|
||||
ColorChooser.rgbHexCodeMnemonic=67
|
||||
ColorChooser.cmykNameText=CMYK
|
||||
ColorChooser.cmykMnemonic=77
|
||||
ColorChooser.cmykCyanText=Ciano
|
||||
ColorChooser.cmykMagentaText=Magenta
|
||||
ColorChooser.cmykYellowText=Giallo
|
||||
ColorChooser.cmykBlackText=Nero
|
||||
ColorChooser.cmykAlphaText=Alfa
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButtonText=S\u00EC
|
||||
OptionPane.yesButtonMnemonic=83
|
||||
OptionPane.noButtonText=No
|
||||
OptionPane.noButtonMnemonic=78
|
||||
OptionPane.okButtonText=OK
|
||||
OptionPane.okButtonMnemonic=O
|
||||
OptionPane.cancelButtonText=Annulla
|
||||
OptionPane.cancelButtonMnemonic=A
|
||||
OptionPane.titleText=Selezionare una opzione
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialogTitle=Input
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialogTitle=Messaggio
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgressText=Stampa in corso
|
||||
PrintingDialog.titleAbortingText=Stampa in corso (operazione interrotta)
|
||||
|
||||
PrintingDialog.contentInitialText=Stampa in corso...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgressText=Pagina stampata {0}...
|
||||
|
||||
PrintingDialog.contentAbortingText=Interruzione della stampa...
|
||||
|
||||
PrintingDialog.abortButtonText=Interrompi
|
||||
PrintingDialog.abortButtonMnemonic=78
|
||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
||||
PrintingDialog.abortButtonToolTipText=Interrompi la stampa
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=Riduci a icona
|
||||
InternalFrame.maxButtonToolTip=Ingrandisci
|
||||
InternalFrame.restoreButtonToolTip=Ripristina
|
||||
InternalFrame.closeButtonToolTip=Chiudi
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButtonText=Ripristina
|
||||
InternalFrameTitlePane.moveButtonText=Sposta
|
||||
InternalFrameTitlePane.sizeButtonText=Dimensioni
|
||||
InternalFrameTitlePane.minimizeButtonText=Riduci a icona
|
||||
InternalFrameTitlePane.maximizeButtonText=Ingrandisci
|
||||
InternalFrameTitlePane.closeButtonText=Chiudi
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButtonText=Sottometti query
|
||||
FormView.resetButtonText=Reimposta
|
||||
FormView.browseFileButtonText=Sfoglia...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChangeText=modifica di stile
|
||||
AbstractDocument.additionText=aggiunta
|
||||
AbstractDocument.deletionText=eliminazione
|
||||
AbstractDocument.undoText=Annulla
|
||||
AbstractDocument.redoText=Ripeti
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.clickText=fare clic
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undoText=Annulla
|
||||
AbstractUndoableEdit.redoText=Ripeti
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopupText=togglePopup
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progressText=Avanzamento...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButtonText=tasto sinistro
|
||||
SplitPane.rightButtonText=tasto destro
|
||||
# Used for Isindex
|
||||
IsindexView.prompt=Questo \u00E8 un indice di ricerca. Immettere le parole chiave:
|
||||
|
||||
############ InternalFrameTitlePane Strings ############
|
||||
InternalFrameTitlePane.iconifyButtonAccessibleName=Riduci a icona
|
||||
InternalFrameTitlePane.maximizeButtonAccessibleName=Ingrandisci
|
||||
InternalFrameTitlePane.closeButtonAccessibleName=Chiudi
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# 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
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescription.textAndMnemonic=File generico
|
||||
FileChooser.directoryDescription.textAndMnemonic=Directory
|
||||
FileChooser.newFolderError.textAndMnemonic=Errore durante la creazione della nuova cartella
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Impossibile creare la cartella
|
||||
FileChooser.newFolderParentDoesntExist.textAndMnemonic=Impossibile creare la cartella.\n\nIl sistema non \u00E8 in grado di trovare il percorso specificato.
|
||||
FileChooser.renameErrorTitle.textAndMnemonic=Errore durante la ridenominazione del file o della cartella
|
||||
FileChooser.renameError.textAndMnemonic=Impossibile rinominare {0}
|
||||
FileChooser.renameErrorFileExists.textAndMnemonic=Impossibile rinominare {0}: esiste gi\u00E0 un file con il nome specificato. Specificare un altro nome.
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=Tutti i file
|
||||
FileChooser.cancelButton.textAndMnemonic=&Annulla
|
||||
FileChooser.saveButton.textAndMnemonic=Sal&va
|
||||
FileChooser.openButton.textAndMnemonic=A&pri
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=Salva
|
||||
FileChooser.openDialogTitle.textAndMnemonic=Apri
|
||||
FileChooser.updateButton.textAndMnemonic=A&ggiorna
|
||||
FileChooser.helpButton.textAndMnemonic=?(&H)
|
||||
FileChooser.directoryOpenButton.textAndMnemonic=&Apri
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=Nuova cartella
|
||||
FileChooser.win32.newFolder.subsequent=Nuova cartella ({0})
|
||||
FileChooser.other.newFolder=NewFolder
|
||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Chiude la finestra di dialogo di selezione file
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=Salva il file selezionato
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=Apre il file selezionato
|
||||
FileChooser.updateButtonToolTip.textAndMnemonic=Aggiorna la lista directory
|
||||
FileChooser.helpButtonToolTip.textAndMnemonic=Guida FileChooser
|
||||
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Apre la directory selezionata
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.preview.textAndMnemonic=Anteprima
|
||||
ColorChooser.ok.textAndMnemonic=OK
|
||||
ColorChooser.cancel.textAndMnemonic=Annulla
|
||||
ColorChooser.reset.textAndMnemonic=&Reimposta
|
||||
ColorChooser.sample.textAndMnemonic=Testo di prova Testo di prova
|
||||
ColorChooser.swatches.textAndMnemonic=Colori cam&pione
|
||||
ColorChooser.swatchesRecent.textAndMnemonic=Recenti:
|
||||
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||
ColorChooser.hsvHue.textAndMnemonic=Tonalit\u00E0
|
||||
ColorChooser.hsvSaturation.textAndMnemonic=Saturazione
|
||||
ColorChooser.hsvValue.textAndMnemonic=Valore
|
||||
ColorChooser.hsvTransparency.textAndMnemonic=Trasparenza
|
||||
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||
ColorChooser.hslHue.textAndMnemonic=Tonalit\u00E0
|
||||
ColorChooser.hslSaturation.textAndMnemonic=Saturazione
|
||||
ColorChooser.hslLightness.textAndMnemonic=Luminosit\u00E0
|
||||
ColorChooser.hslTransparency.textAndMnemonic=Trasparenza
|
||||
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||
ColorChooser.rgbRed.textAndMnemonic=Ro&sso
|
||||
ColorChooser.rgbGreen.textAndMnemonic=Ver&de
|
||||
ColorChooser.rgbBlue.textAndMnemonic=&Blu
|
||||
ColorChooser.rgbAlpha.textAndMnemonic=Alfa
|
||||
ColorChooser.rgbHexCode.textAndMnemonic=&Codice colori
|
||||
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||
ColorChooser.cmykCyan.textAndMnemonic=Ciano
|
||||
ColorChooser.cmykMagenta.textAndMnemonic=Magenta
|
||||
ColorChooser.cmykYellow.textAndMnemonic=Giallo
|
||||
ColorChooser.cmykBlack.textAndMnemonic=Nero
|
||||
ColorChooser.cmykAlpha.textAndMnemonic=Alfa
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButton.textAndMnemonic=S\u00EC(&S)
|
||||
OptionPane.noButton.textAndMnemonic=&No
|
||||
OptionPane.okButton.textAndMnemonic=&OK
|
||||
OptionPane.cancelButton.textAndMnemonic=&Annulla
|
||||
OptionPane.title.textAndMnemonic=Selezionare una opzione
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialog.titleAndMnemonic=Input
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialog.titleAndMnemonic=Messaggio
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgress.textAndMnemonic=Stampa in corso
|
||||
PrintingDialog.titleAborting.textAndMnemonic=Stampa in corso (operazione interrotta)
|
||||
|
||||
PrintingDialog.contentInitial.textAndMnemonic=Stampa in corso...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgress.textAndMnemonic=Pagina stampata {0}...
|
||||
|
||||
PrintingDialog.contentAborting.textAndMnemonic=Interruzione della stampa...
|
||||
|
||||
PrintingDialog.abortButton.textAndMnemonic=I&nterrompi
|
||||
PrintingDialog.abortButtonToolTip.textAndMnemonic=Interrompi la stampa
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=Riduci a icona
|
||||
InternalFrame.maxButtonToolTip=Ingrandisci
|
||||
InternalFrame.restoreButtonToolTip=Ripristina
|
||||
InternalFrame.closeButtonToolTip=Chiudi
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButton.textAndMnemonic=Ripristina
|
||||
InternalFrameTitlePane.moveButton.textAndMnemonic=Sposta
|
||||
InternalFrameTitlePane.sizeButton.textAndMnemonic=Dimensioni
|
||||
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Riduci a icona
|
||||
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Ingrandisci
|
||||
InternalFrameTitlePane.closeButton.textAndMnemonic=Chiudi
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButton.textAndMnemonic=Sottometti query
|
||||
FormView.resetButton.textAndMnemonic=Reimposta
|
||||
FormView.browseFileButton.textAndMnemonic=Sfoglia...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChange.textAndMnemonic=modifica di stile
|
||||
AbstractDocument.addition.textAndMnemonic=aggiunta
|
||||
AbstractDocument.deletion.textAndMnemonic=eliminazione
|
||||
AbstractDocument.undo.textAndMnemonic=Annulla
|
||||
AbstractDocument.redo.textAndMnemonic=Ripeti
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.click.textAndMnemonic=fare clic
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undo.textAndMnemonic=Annulla
|
||||
AbstractUndoableEdit.redo.textAndMnemonic=Ripeti
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progress.textAndMnemonic=Avanzamento...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButton.textAndMnemonic=tasto sinistro
|
||||
SplitPane.rightButton.textAndMnemonic=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
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameText=RGB
|
||||
# ColorChooser.rgbMnemonic=71
|
||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# a decoration will be provided under the 'G'. This will typically
|
||||
# look like: RGB
|
||||
# -
|
||||
# 71 corresponds to the decimal value of the VK constant defined
|
||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
||||
#
|
||||
# public static final int VK_G = 0x47;
|
||||
#
|
||||
# 0x47 is a hex number and needs to be converted to decimal.
|
||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
||||
# for 'a' is 65, 'b' is 66...
|
||||
#
|
||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
||||
# character that should be underlined in the String, with 0
|
||||
# corresponding to the first character in the String.
|
||||
#
|
||||
# One important thing to remember is that the mnemonic MUST exist in
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescriptionText=\u6C4E\u7528\u30D5\u30A1\u30A4\u30EB
|
||||
FileChooser.directoryDescriptionText=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA
|
||||
FileChooser.newFolderErrorText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210\u30A8\u30E9\u30FC
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitleText=\u30D5\u30A9\u30EB\u30C0\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093
|
||||
FileChooser.newFolderParentDoesntExistText=\u30D5\u30A9\u30EB\u30C0\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093\u3002\n\n\u6307\u5B9A\u3057\u305F\u30D1\u30B9\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3002
|
||||
FileChooser.renameErrorTitleText=\u30D5\u30A1\u30A4\u30EB\u307E\u305F\u306F\u30D5\u30A9\u30EB\u30C0\u306E\u540D\u524D\u5909\u66F4\u30A8\u30E9\u30FC
|
||||
FileChooser.renameErrorText={0}\u306E\u540D\u524D\u3092\u5909\u66F4\u3067\u304D\u307E\u305B\u3093
|
||||
FileChooser.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
|
||||
FileChooser.cancelButtonText=\u53D6\u6D88
|
||||
FileChooser.cancelButtonMnemonic=67
|
||||
FileChooser.saveButtonText=\u4FDD\u5B58
|
||||
FileChooser.saveButtonMnemonic=83
|
||||
FileChooser.openButtonText=\u958B\u304F
|
||||
FileChooser.openButtonMnemonic=79
|
||||
FileChooser.saveDialogTitleText=\u4FDD\u5B58
|
||||
FileChooser.openDialogTitleText=\u958B\u304F
|
||||
FileChooser.updateButtonText=\u66F4\u65B0(U)
|
||||
FileChooser.updateButtonMnemonic=85
|
||||
FileChooser.helpButtonText=\u30D8\u30EB\u30D7(H)
|
||||
FileChooser.helpButtonMnemonic=72
|
||||
FileChooser.directoryOpenButtonText=\u958B\u304F(O)
|
||||
FileChooser.directoryOpenButtonMnemonic=79
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||
FileChooser.win32.newFolder.subsequent=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0({0})
|
||||
FileChooser.other.newFolder=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||
FileChooser.other.newFolder.subsequent=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTipText=\u30D5\u30A1\u30A4\u30EB\u30FB\u30C1\u30E5\u30FC\u30B6\u30FB\u30C0\u30A4\u30A2\u30ED\u30B0\u3092\u7D42\u4E86\u3057\u307E\u3059
|
||||
FileChooser.saveButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059
|
||||
FileChooser.openButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059
|
||||
FileChooser.updateButtonToolTipText=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306E\u30EA\u30B9\u30C8\u3092\u66F4\u65B0\u3057\u307E\u3059
|
||||
FileChooser.helpButtonToolTipText=FileChooser\u306E\u30D8\u30EB\u30D7\u3067\u3059
|
||||
FileChooser.directoryOpenButtonToolTipText=\u9078\u629E\u3057\u305F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u958B\u304D\u307E\u3059
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.previewText=\u30D7\u30EC\u30D3\u30E5\u30FC
|
||||
ColorChooser.okText=OK
|
||||
ColorChooser.cancelText=\u53D6\u6D88
|
||||
ColorChooser.resetText=\u30EA\u30BB\u30C3\u30C8(R)
|
||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
||||
ColorChooser.resetMnemonic=82
|
||||
ColorChooser.sampleText=\u30B5\u30F3\u30D7\u30EB\u30FB\u30C6\u30AD\u30B9\u30C8 \u30B5\u30F3\u30D7\u30EB\u30FB\u30C6\u30AD\u30B9\u30C8
|
||||
ColorChooser.swatchesNameText=\u30B5\u30F3\u30D7\u30EB(S)
|
||||
ColorChooser.swatchesMnemonic=83
|
||||
ColorChooser.swatchesRecentText=\u6700\u65B0:
|
||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
||||
# constant, and an index into the text to render the mnemonic as. The
|
||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
||||
# xxxDisplayedMnemonicIndex.
|
||||
ColorChooser.hsvNameText=HSV
|
||||
ColorChooser.hsvMnemonic=72
|
||||
ColorChooser.hsvHueText=\u8272\u76F8
|
||||
ColorChooser.hsvSaturationText=\u5F69\u5EA6
|
||||
ColorChooser.hsvValueText=\u5024
|
||||
ColorChooser.hsvTransparencyText=\u900F\u660E\u5EA6
|
||||
ColorChooser.hslNameText=HSL
|
||||
ColorChooser.hslMnemonic=76
|
||||
ColorChooser.hslHueText=\u8272\u76F8
|
||||
ColorChooser.hslSaturationText=\u5F69\u5EA6
|
||||
ColorChooser.hslLightnessText=\u660E\u5EA6
|
||||
ColorChooser.hslTransparencyText=\u900F\u660E\u5EA6
|
||||
ColorChooser.rgbNameText=RGB
|
||||
ColorChooser.rgbMnemonic=71
|
||||
ColorChooser.rgbRedText=\u8D64
|
||||
ColorChooser.rgbRedMnemonic=68
|
||||
ColorChooser.rgbGreenText=\u7DD1
|
||||
ColorChooser.rgbGreenMnemonic=78
|
||||
ColorChooser.rgbBlueText=\u9752
|
||||
ColorChooser.rgbBlueMnemonic=66
|
||||
ColorChooser.rgbAlphaText=\u30A2\u30EB\u30D5\u30A1
|
||||
ColorChooser.rgbHexCodeText=\u8272\u30B3\u30FC\u30C9(C)
|
||||
ColorChooser.rgbHexCodeMnemonic=67
|
||||
ColorChooser.cmykNameText=CMYK
|
||||
ColorChooser.cmykMnemonic=77
|
||||
ColorChooser.cmykCyanText=\u30B7\u30A2\u30F3
|
||||
ColorChooser.cmykMagentaText=\u30DE\u30BC\u30F3\u30BF
|
||||
ColorChooser.cmykYellowText=\u9EC4
|
||||
ColorChooser.cmykBlackText=\u9ED2
|
||||
ColorChooser.cmykAlphaText=\u30A2\u30EB\u30D5\u30A1
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButtonText=\u306F\u3044(Y)
|
||||
OptionPane.yesButtonMnemonic=89
|
||||
OptionPane.noButtonText=\u3044\u3044\u3048(N)
|
||||
OptionPane.noButtonMnemonic=78
|
||||
OptionPane.okButtonText=OK
|
||||
OptionPane.okButtonMnemonic=O
|
||||
OptionPane.cancelButtonText=\u53D6\u6D88
|
||||
OptionPane.cancelButtonMnemonic=0
|
||||
OptionPane.titleText=\u30AA\u30D7\u30B7\u30E7\u30F3\u306E\u9078\u629E
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialogTitle=\u5165\u529B
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialogTitle=\u30E1\u30C3\u30BB\u30FC\u30B8
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgressText=\u5370\u5237\u3057\u3066\u3044\u307E\u3059
|
||||
PrintingDialog.titleAbortingText=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059
|
||||
|
||||
PrintingDialog.contentInitialText=\u5370\u5237\u4E2D...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgressText=\u30DA\u30FC\u30B8{0}\u3092\u5370\u5237\u3057\u307E\u3057\u305F...
|
||||
|
||||
PrintingDialog.contentAbortingText=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059...
|
||||
|
||||
PrintingDialog.abortButtonText=\u4E2D\u6B62(A)
|
||||
PrintingDialog.abortButtonMnemonic=65
|
||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
||||
PrintingDialog.abortButtonToolTipText=\u5370\u5237\u306E\u4E2D\u6B62
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
|
||||
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
|
||||
InternalFrame.restoreButtonToolTip=\u5FA9\u5143
|
||||
InternalFrame.closeButtonToolTip=\u9589\u3058\u308B
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# 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
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescription.textAndMnemonic=\u6C4E\u7528\u30D5\u30A1\u30A4\u30EB
|
||||
FileChooser.directoryDescription.textAndMnemonic=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA
|
||||
FileChooser.newFolderError.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210\u30A8\u30E9\u30FC
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093
|
||||
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
|
||||
FileChooser.renameError.textAndMnemonic={0}\u306E\u540D\u524D\u3092\u5909\u66F4\u3067\u304D\u307E\u305B\u3093
|
||||
FileChooser.renameErrorFileExists.textAndMnemonic={0}\u306E\u540D\u524D\u3092\u5909\u66F4\u3067\u304D\u307E\u305B\u3093: \u6307\u5B9A\u3057\u305F\u540D\u524D\u306E\u30D5\u30A1\u30A4\u30EB\u306F\u3059\u3067\u306B\u5B58\u5728\u3057\u307E\u3059\u3002\u5225\u306E\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u6307\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044\u3002
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB
|
||||
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
|
||||
FileChooser.saveButton.textAndMnemonic=\u4FDD\u5B58(&S)
|
||||
FileChooser.openButton.textAndMnemonic=\u958B\u304F(&O)
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
|
||||
FileChooser.openDialogTitle.textAndMnemonic=\u958B\u304F
|
||||
FileChooser.updateButton.textAndMnemonic=\u66F4\u65B0(&U)
|
||||
FileChooser.helpButton.textAndMnemonic=\u30D8\u30EB\u30D7(&H)
|
||||
FileChooser.directoryOpenButton.textAndMnemonic=\u958B\u304F(&O)
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||
FileChooser.win32.newFolder.subsequent=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0({0})
|
||||
FileChooser.other.newFolder=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||
FileChooser.other.newFolder.subsequent=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
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.saveButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059
|
||||
FileChooser.updateButtonToolTip.textAndMnemonic=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306E\u30EA\u30B9\u30C8\u3092\u66F4\u65B0\u3057\u307E\u3059
|
||||
FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser\u306E\u30D8\u30EB\u30D7\u3067\u3059
|
||||
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\u9078\u629E\u3057\u305F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u958B\u304D\u307E\u3059
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.preview.textAndMnemonic=\u30D7\u30EC\u30D3\u30E5\u30FC
|
||||
ColorChooser.ok.textAndMnemonic=OK
|
||||
ColorChooser.cancel.textAndMnemonic=\u53D6\u6D88
|
||||
ColorChooser.reset.textAndMnemonic=\u30EA\u30BB\u30C3\u30C8(&R)
|
||||
ColorChooser.sample.textAndMnemonic=\u30B5\u30F3\u30D7\u30EB\u30FB\u30C6\u30AD\u30B9\u30C8 \u30B5\u30F3\u30D7\u30EB\u30FB\u30C6\u30AD\u30B9\u30C8
|
||||
ColorChooser.swatches.textAndMnemonic=\u30B5\u30F3\u30D7\u30EB(&S)
|
||||
ColorChooser.swatchesRecent.textAndMnemonic=\u6700\u65B0:
|
||||
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||
ColorChooser.hsvHue.textAndMnemonic=\u8272\u76F8
|
||||
ColorChooser.hsvSaturation.textAndMnemonic=\u5F69\u5EA6
|
||||
ColorChooser.hsvValue.textAndMnemonic=\u5024
|
||||
ColorChooser.hsvTransparency.textAndMnemonic=\u900F\u660E\u5EA6
|
||||
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||
ColorChooser.hslHue.textAndMnemonic=\u8272\u76F8
|
||||
ColorChooser.hslSaturation.textAndMnemonic=\u5F69\u5EA6
|
||||
ColorChooser.hslLightness.textAndMnemonic=\u660E\u5EA6
|
||||
ColorChooser.hslTransparency.textAndMnemonic=\u900F\u660E\u5EA6
|
||||
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||
ColorChooser.rgbRed.textAndMnemonic=\u8D64(&D)
|
||||
ColorChooser.rgbGreen.textAndMnemonic=\u7DD1(&N)
|
||||
ColorChooser.rgbBlue.textAndMnemonic=\u9752(&B)
|
||||
ColorChooser.rgbAlpha.textAndMnemonic=\u30A2\u30EB\u30D5\u30A1
|
||||
ColorChooser.rgbHexCode.textAndMnemonic=\u8272\u30B3\u30FC\u30C9(&C)
|
||||
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||
ColorChooser.cmykCyan.textAndMnemonic=\u30B7\u30A2\u30F3
|
||||
ColorChooser.cmykMagenta.textAndMnemonic=\u30DE\u30BC\u30F3\u30BF
|
||||
ColorChooser.cmykYellow.textAndMnemonic=\u9EC4
|
||||
ColorChooser.cmykBlack.textAndMnemonic=\u9ED2
|
||||
ColorChooser.cmykAlpha.textAndMnemonic=\u30A2\u30EB\u30D5\u30A1
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButton.textAndMnemonic=\u306F\u3044(&Y)
|
||||
OptionPane.noButton.textAndMnemonic=\u3044\u3044\u3048(&N)
|
||||
OptionPane.okButton.textAndMnemonic=&OK
|
||||
OptionPane.cancelButton.textAndMnemonic=\u53D6\u6D88
|
||||
OptionPane.title.textAndMnemonic=\u30AA\u30D7\u30B7\u30E7\u30F3\u306E\u9078\u629E
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialog.titleAndMnemonic=\u5165\u529B
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialog.titleAndMnemonic=\u30E1\u30C3\u30BB\u30FC\u30B8
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgress.textAndMnemonic=\u5370\u5237\u3057\u3066\u3044\u307E\u3059
|
||||
PrintingDialog.titleAborting.textAndMnemonic=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059
|
||||
|
||||
PrintingDialog.contentInitial.textAndMnemonic=\u5370\u5237\u4E2D...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgress.textAndMnemonic=\u30DA\u30FC\u30B8{0}\u3092\u5370\u5237\u3057\u307E\u3057\u305F...
|
||||
|
||||
PrintingDialog.contentAborting.textAndMnemonic=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059...
|
||||
|
||||
PrintingDialog.abortButton.textAndMnemonic=\u4E2D\u6B62(&A)
|
||||
PrintingDialog.abortButtonToolTip.textAndMnemonic=\u5370\u5237\u306E\u4E2D\u6B62
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
|
||||
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
|
||||
InternalFrame.restoreButtonToolTip=\u5FA9\u5143
|
||||
InternalFrame.closeButtonToolTip=\u9589\u3058\u308B
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButton.textAndMnemonic=\u5FA9\u5143
|
||||
InternalFrameTitlePane.moveButton.textAndMnemonic=\u79FB\u52D5
|
||||
InternalFrameTitlePane.sizeButton.textAndMnemonic=\u30B5\u30A4\u30BA
|
||||
InternalFrameTitlePane.minimizeButton.textAndMnemonic=\u6700\u5C0F\u5316
|
||||
InternalFrameTitlePane.maximizeButton.textAndMnemonic=\u6700\u5927\u5316
|
||||
InternalFrameTitlePane.closeButton.textAndMnemonic=\u9589\u3058\u308B
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButton.textAndMnemonic=\u554F\u5408\u305B\u306E\u5B9F\u884C
|
||||
FormView.resetButton.textAndMnemonic=\u30EA\u30BB\u30C3\u30C8
|
||||
FormView.browseFileButton.textAndMnemonic=\u53C2\u7167...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChange.textAndMnemonic=\u30B9\u30BF\u30A4\u30EB\u5909\u66F4
|
||||
AbstractDocument.addition.textAndMnemonic=\u8FFD\u52A0
|
||||
AbstractDocument.deletion.textAndMnemonic=\u524A\u9664
|
||||
AbstractDocument.undo.textAndMnemonic=\u5143\u306B\u623B\u3059
|
||||
AbstractDocument.redo.textAndMnemonic=\u3084\u308A\u76F4\u3057
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.click.textAndMnemonic=\u30AF\u30EA\u30C3\u30AF
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undo.textAndMnemonic=\u5143\u306B\u623B\u3059
|
||||
AbstractUndoableEdit.redo.textAndMnemonic=\u3084\u308A\u76F4\u3057
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopup.textAndMnemonic=\u30C8\u30B0\u30EB\u30FB\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progress.textAndMnemonic=\u9032\u884C\u4E2D...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButton.textAndMnemonic=\u5DE6\u30DC\u30BF\u30F3
|
||||
SplitPane.rightButton.textAndMnemonic=\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
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameText=RGB
|
||||
# ColorChooser.rgbMnemonic=71
|
||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# a decoration will be provided under the 'G'. This will typically
|
||||
# look like: RGB
|
||||
# -
|
||||
# 71 corresponds to the decimal value of the VK constant defined
|
||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
||||
#
|
||||
# public static final int VK_G = 0x47;
|
||||
#
|
||||
# 0x47 is a hex number and needs to be converted to decimal.
|
||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
||||
# for 'a' is 65, 'b' is 66...
|
||||
#
|
||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
||||
# character that should be underlined in the String, with 0
|
||||
# corresponding to the first character in the String.
|
||||
#
|
||||
# One important thing to remember is that the mnemonic MUST exist in
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescriptionText=\uC77C\uBC18 \uD30C\uC77C
|
||||
FileChooser.directoryDescriptionText=\uB514\uB809\uD1A0\uB9AC
|
||||
FileChooser.newFolderErrorText=\uC0C8 \uD3F4\uB354\uB97C \uC0DD\uC131\uD558\uB294 \uC911 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4.
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitleText=\uD3F4\uB354\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC74C
|
||||
FileChooser.newFolderParentDoesntExistText=\uD3F4\uB354\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.\n\n\uC2DC\uC2A4\uD15C\uC5D0\uC11C \uC9C0\uC815\uB41C \uACBD\uB85C\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
FileChooser.renameErrorTitleText=\uD30C\uC77C \uB610\uB294 \uD3F4\uB354 \uC774\uB984 \uBC14\uAFB8\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD
|
||||
FileChooser.renameErrorText={0}\uC758 \uC774\uB984\uC744 \uBC14\uAFC0 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
FileChooser.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
|
||||
FileChooser.cancelButtonText=\uCDE8\uC18C
|
||||
FileChooser.cancelButtonMnemonic=67
|
||||
FileChooser.saveButtonText=\uC800\uC7A5
|
||||
FileChooser.saveButtonMnemonic=83
|
||||
FileChooser.openButtonText=\uC5F4\uAE30
|
||||
FileChooser.openButtonMnemonic=79
|
||||
FileChooser.saveDialogTitleText=\uC800\uC7A5
|
||||
FileChooser.openDialogTitleText=\uC5F4\uAE30
|
||||
FileChooser.updateButtonText=\uAC31\uC2E0(U)
|
||||
FileChooser.updateButtonMnemonic=85
|
||||
FileChooser.helpButtonText=\uB3C4\uC6C0\uB9D0(H)
|
||||
FileChooser.helpButtonMnemonic=72
|
||||
FileChooser.directoryOpenButtonText=\uC5F4\uAE30(O)
|
||||
FileChooser.directoryOpenButtonMnemonic=79
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=\uC0C8 \uD3F4\uB354
|
||||
FileChooser.win32.newFolder.subsequent=\uC0C8 \uD3F4\uB354({0})
|
||||
FileChooser.other.newFolder=NewFolder
|
||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTipText=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790 \uC911\uB2E8
|
||||
FileChooser.saveButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C \uC800\uC7A5
|
||||
FileChooser.openButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C \uC5F4\uAE30
|
||||
FileChooser.updateButtonToolTipText=\uB514\uB809\uD1A0\uB9AC \uBAA9\uB85D \uAC31\uC2E0
|
||||
FileChooser.helpButtonToolTipText=FileChooser \uB3C4\uC6C0\uB9D0
|
||||
FileChooser.directoryOpenButtonToolTipText=\uC120\uD0DD\uB41C \uB514\uB809\uD1A0\uB9AC \uC5F4\uAE30
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.previewText=\uBBF8\uB9AC\uBCF4\uAE30
|
||||
ColorChooser.okText=\uD655\uC778
|
||||
ColorChooser.cancelText=\uCDE8\uC18C
|
||||
ColorChooser.resetText=\uC7AC\uC124\uC815(R)
|
||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
||||
ColorChooser.resetMnemonic=82
|
||||
ColorChooser.sampleText=\uC0D8\uD50C \uD14D\uC2A4\uD2B8 \uC0D8\uD50C \uD14D\uC2A4\uD2B8
|
||||
ColorChooser.swatchesNameText=\uACAC\uBCF8(S)
|
||||
ColorChooser.swatchesMnemonic=83
|
||||
ColorChooser.swatchesRecentText=\uCD5C\uADFC \uBAA9\uB85D:
|
||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
||||
# constant, and an index into the text to render the mnemonic as. The
|
||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
||||
# xxxDisplayedMnemonicIndex.
|
||||
ColorChooser.hsvNameText=HSV
|
||||
ColorChooser.hsvMnemonic=72
|
||||
ColorChooser.hsvHueText=\uC0C9\uC870
|
||||
ColorChooser.hsvSaturationText=\uCC44\uB3C4
|
||||
ColorChooser.hsvValueText=\uAC12
|
||||
ColorChooser.hsvTransparencyText=\uD22C\uBA85
|
||||
ColorChooser.hslNameText=HSL
|
||||
ColorChooser.hslMnemonic=76
|
||||
ColorChooser.hslHueText=\uC0C9\uC870
|
||||
ColorChooser.hslSaturationText=\uCC44\uB3C4
|
||||
ColorChooser.hslLightnessText=\uBC1D\uAE30
|
||||
ColorChooser.hslTransparencyText=\uD22C\uBA85
|
||||
ColorChooser.rgbNameText=RGB
|
||||
ColorChooser.rgbMnemonic=71
|
||||
ColorChooser.rgbRedText=\uBE68\uAC04\uC0C9
|
||||
ColorChooser.rgbRedMnemonic=68
|
||||
ColorChooser.rgbGreenText=\uB179\uC0C9
|
||||
ColorChooser.rgbGreenMnemonic=78
|
||||
ColorChooser.rgbBlueText=\uD30C\uB780\uC0C9
|
||||
ColorChooser.rgbBlueMnemonic=66
|
||||
ColorChooser.rgbAlphaText=\uC54C\uD30C
|
||||
ColorChooser.rgbHexCodeText=\uC0C9\uC0C1 \uCF54\uB4DC(C)
|
||||
ColorChooser.rgbHexCodeMnemonic=67
|
||||
ColorChooser.cmykNameText=CMYK
|
||||
ColorChooser.cmykMnemonic=77
|
||||
ColorChooser.cmykCyanText=\uCCAD\uB85D\uC0C9
|
||||
ColorChooser.cmykMagentaText=\uC9C4\uD64D\uC0C9
|
||||
ColorChooser.cmykYellowText=\uB178\uB780\uC0C9
|
||||
ColorChooser.cmykBlackText=\uAC80\uC815\uC0C9
|
||||
ColorChooser.cmykAlphaText=\uC54C\uD30C
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButtonText=\uC608(Y)
|
||||
OptionPane.yesButtonMnemonic=89
|
||||
OptionPane.noButtonText=\uC544\uB2C8\uC624(N)
|
||||
OptionPane.noButtonMnemonic=78
|
||||
OptionPane.okButtonText=\uD655\uC778
|
||||
OptionPane.okButtonMnemonic=O
|
||||
OptionPane.cancelButtonText=\uCDE8\uC18C
|
||||
OptionPane.cancelButtonMnemonic=0
|
||||
OptionPane.titleText=\uC635\uC158 \uC120\uD0DD
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialogTitle=\uC785\uB825
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialogTitle=\uBA54\uC2DC\uC9C0
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgressText=\uC778\uC1C4
|
||||
PrintingDialog.titleAbortingText=\uC778\uC1C4(\uC911\uB2E8 \uC911)
|
||||
|
||||
PrintingDialog.contentInitialText=\uC778\uC1C4 \uC9C4\uD589 \uC911...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgressText=\uC778\uC1C4\uB41C \uD398\uC774\uC9C0 {0}...
|
||||
|
||||
PrintingDialog.contentAbortingText=\uC778\uC1C4 \uC911\uB2E8 \uC911...
|
||||
|
||||
PrintingDialog.abortButtonText=\uC911\uB2E8(A)
|
||||
PrintingDialog.abortButtonMnemonic=65
|
||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
||||
PrintingDialog.abortButtonToolTipText=\uC778\uC1C4 \uC911\uB2E8
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=\uCD5C\uC18C\uD654
|
||||
InternalFrame.maxButtonToolTip=\uCD5C\uB300\uD654
|
||||
InternalFrame.restoreButtonToolTip=\uBCF5\uC6D0
|
||||
InternalFrame.closeButtonToolTip=\uB2EB\uAE30
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# 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
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescription.textAndMnemonic=\uC77C\uBC18 \uD30C\uC77C
|
||||
FileChooser.directoryDescription.textAndMnemonic=\uB514\uB809\uD1A0\uB9AC
|
||||
FileChooser.newFolderError.textAndMnemonic=\uC0C8 \uD3F4\uB354\uB97C \uC0DD\uC131\uD558\uB294 \uC911 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4.
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\uD3F4\uB354\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC74C
|
||||
FileChooser.newFolderParentDoesntExist.textAndMnemonic=\uD3F4\uB354\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.\n\n\uC2DC\uC2A4\uD15C\uC5D0\uC11C \uC9C0\uC815\uB41C \uACBD\uB85C\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
FileChooser.renameErrorTitle.textAndMnemonic=\uD30C\uC77C \uB610\uB294 \uD3F4\uB354 \uC774\uB984 \uBC14\uAFB8\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD
|
||||
FileChooser.renameError.textAndMnemonic={0}\uC758 \uC774\uB984\uC744 \uBC14\uAFC0 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||
FileChooser.renameErrorFileExists.textAndMnemonic={0}\uC758 \uC774\uB984\uC744 \uBC14\uAFC0 \uC218 \uC5C6\uC74C: \uC9C0\uC815\uD55C \uC774\uB984\uC744 \uC0AC\uC6A9\uD558\uB294 \uD30C\uC77C\uC774 \uC874\uC7AC\uD569\uB2C8\uB2E4. \uB2E4\uB978 \uD30C\uC77C \uC774\uB984\uC744 \uC9C0\uC815\uD558\uC2ED\uC2DC\uC624.
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=\uBAA8\uB4E0 \uD30C\uC77C
|
||||
FileChooser.cancelButton.textAndMnemonic=\uCDE8\uC18C(&C)
|
||||
FileChooser.saveButton.textAndMnemonic=\uC800\uC7A5(&S)
|
||||
FileChooser.openButton.textAndMnemonic=\uC5F4\uAE30(&O)
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=\uC800\uC7A5
|
||||
FileChooser.openDialogTitle.textAndMnemonic=\uC5F4\uAE30
|
||||
FileChooser.updateButton.textAndMnemonic=\uAC31\uC2E0(&U)
|
||||
FileChooser.helpButton.textAndMnemonic=\uB3C4\uC6C0\uB9D0(&H)
|
||||
FileChooser.directoryOpenButton.textAndMnemonic=\uC5F4\uAE30(&O)
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=\uC0C8 \uD3F4\uB354
|
||||
FileChooser.win32.newFolder.subsequent=\uC0C8 \uD3F4\uB354({0})
|
||||
FileChooser.other.newFolder=NewFolder
|
||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790 \uC911\uB2E8
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C \uC800\uC7A5
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uD30C\uC77C \uC5F4\uAE30
|
||||
FileChooser.updateButtonToolTip.textAndMnemonic=\uB514\uB809\uD1A0\uB9AC \uBAA9\uB85D \uAC31\uC2E0
|
||||
FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser \uB3C4\uC6C0\uB9D0
|
||||
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uB514\uB809\uD1A0\uB9AC \uC5F4\uAE30
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.preview.textAndMnemonic=\uBBF8\uB9AC\uBCF4\uAE30
|
||||
ColorChooser.ok.textAndMnemonic=\uD655\uC778
|
||||
ColorChooser.cancel.textAndMnemonic=\uCDE8\uC18C
|
||||
ColorChooser.reset.textAndMnemonic=\uC7AC\uC124\uC815(&R)
|
||||
ColorChooser.sample.textAndMnemonic=\uC0D8\uD50C \uD14D\uC2A4\uD2B8 \uC0D8\uD50C \uD14D\uC2A4\uD2B8
|
||||
ColorChooser.swatches.textAndMnemonic=\uACAC\uBCF8(&S)
|
||||
ColorChooser.swatchesRecent.textAndMnemonic=\uCD5C\uADFC \uBAA9\uB85D:
|
||||
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||
ColorChooser.hsvHue.textAndMnemonic=\uC0C9\uC870
|
||||
ColorChooser.hsvSaturation.textAndMnemonic=\uCC44\uB3C4
|
||||
ColorChooser.hsvValue.textAndMnemonic=\uAC12
|
||||
ColorChooser.hsvTransparency.textAndMnemonic=\uD22C\uBA85
|
||||
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||
ColorChooser.hslHue.textAndMnemonic=\uC0C9\uC870
|
||||
ColorChooser.hslSaturation.textAndMnemonic=\uCC44\uB3C4
|
||||
ColorChooser.hslLightness.textAndMnemonic=\uBC1D\uAE30
|
||||
ColorChooser.hslTransparency.textAndMnemonic=\uD22C\uBA85
|
||||
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||
ColorChooser.rgbRed.textAndMnemonic=\uBE68\uAC04\uC0C9(&D)
|
||||
ColorChooser.rgbGreen.textAndMnemonic=\uB179\uC0C9(&N)
|
||||
ColorChooser.rgbBlue.textAndMnemonic=\uD30C\uB780\uC0C9(&B)
|
||||
ColorChooser.rgbAlpha.textAndMnemonic=\uC54C\uD30C
|
||||
ColorChooser.rgbHexCode.textAndMnemonic=\uC0C9\uC0C1 \uCF54\uB4DC(&C)
|
||||
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||
ColorChooser.cmykCyan.textAndMnemonic=\uCCAD\uB85D\uC0C9
|
||||
ColorChooser.cmykMagenta.textAndMnemonic=\uC9C4\uD64D\uC0C9
|
||||
ColorChooser.cmykYellow.textAndMnemonic=\uB178\uB780\uC0C9
|
||||
ColorChooser.cmykBlack.textAndMnemonic=\uAC80\uC815\uC0C9
|
||||
ColorChooser.cmykAlpha.textAndMnemonic=\uC54C\uD30C
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButton.textAndMnemonic=\uC608(&Y)
|
||||
OptionPane.noButton.textAndMnemonic=\uC544\uB2C8\uC624(&N)
|
||||
OptionPane.okButton.textAndMnemonic=\uD655\uC778(&O)
|
||||
OptionPane.cancelButton.textAndMnemonic=\uCDE8\uC18C
|
||||
OptionPane.title.textAndMnemonic=\uC635\uC158 \uC120\uD0DD
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialog.titleAndMnemonic=\uC785\uB825
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialog.titleAndMnemonic=\uBA54\uC2DC\uC9C0
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgress.textAndMnemonic=\uC778\uC1C4
|
||||
PrintingDialog.titleAborting.textAndMnemonic=\uC778\uC1C4(\uC911\uB2E8 \uC911)
|
||||
|
||||
PrintingDialog.contentInitial.textAndMnemonic=\uC778\uC1C4 \uC9C4\uD589 \uC911...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgress.textAndMnemonic=\uC778\uC1C4\uB41C \uD398\uC774\uC9C0 {0}...
|
||||
|
||||
PrintingDialog.contentAborting.textAndMnemonic=\uC778\uC1C4 \uC911\uB2E8 \uC911...
|
||||
|
||||
PrintingDialog.abortButton.textAndMnemonic=\uC911\uB2E8(&A)
|
||||
PrintingDialog.abortButtonToolTip.textAndMnemonic=\uC778\uC1C4 \uC911\uB2E8
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=\uCD5C\uC18C\uD654
|
||||
InternalFrame.maxButtonToolTip=\uCD5C\uB300\uD654
|
||||
InternalFrame.restoreButtonToolTip=\uBCF5\uC6D0
|
||||
InternalFrame.closeButtonToolTip=\uB2EB\uAE30
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButton.textAndMnemonic=\uBCF5\uC6D0
|
||||
InternalFrameTitlePane.moveButton.textAndMnemonic=\uC774\uB3D9
|
||||
InternalFrameTitlePane.sizeButton.textAndMnemonic=\uD06C\uAE30
|
||||
InternalFrameTitlePane.minimizeButton.textAndMnemonic=\uCD5C\uC18C\uD654
|
||||
InternalFrameTitlePane.maximizeButton.textAndMnemonic=\uCD5C\uB300\uD654
|
||||
InternalFrameTitlePane.closeButton.textAndMnemonic=\uB2EB\uAE30
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButton.textAndMnemonic=\uC9C8\uC758 \uC81C\uCD9C
|
||||
FormView.resetButton.textAndMnemonic=\uC7AC\uC124\uC815
|
||||
FormView.browseFileButton.textAndMnemonic=\uCC3E\uC544\uBCF4\uAE30...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChange.textAndMnemonic=\uC2A4\uD0C0\uC77C \uBCC0\uACBD
|
||||
AbstractDocument.addition.textAndMnemonic=\uCD94\uAC00
|
||||
AbstractDocument.deletion.textAndMnemonic=\uC0AD\uC81C
|
||||
AbstractDocument.undo.textAndMnemonic=\uC2E4\uD589 \uCDE8\uC18C
|
||||
AbstractDocument.redo.textAndMnemonic=\uC7AC\uC2E4\uD589
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.click.textAndMnemonic=\uB204\uB974\uAE30
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undo.textAndMnemonic=\uC2E4\uD589 \uCDE8\uC18C
|
||||
AbstractUndoableEdit.redo.textAndMnemonic=\uC7AC\uC2E4\uD589
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progress.textAndMnemonic=\uC9C4\uD589...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButton.textAndMnemonic=\uC67C\uCABD \uB2E8\uCD94
|
||||
SplitPane.rightButton.textAndMnemonic=\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
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameText=RGB
|
||||
# ColorChooser.rgbMnemonic=71
|
||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# a decoration will be provided under the 'G'. This will typically
|
||||
# look like: RGB
|
||||
# -
|
||||
# 71 corresponds to the decimal value of the VK constant defined
|
||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
||||
#
|
||||
# public static final int VK_G = 0x47;
|
||||
#
|
||||
# 0x47 is a hex number and needs to be converted to decimal.
|
||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
||||
# for 'a' is 65, 'b' is 66...
|
||||
#
|
||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
||||
# character that should be underlined in the String, with 0
|
||||
# corresponding to the first character in the String.
|
||||
#
|
||||
# One important thing to remember is that the mnemonic MUST exist in
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescriptionText=Arquivo Gen\u00E9rico
|
||||
FileChooser.directoryDescriptionText=Diret\u00F3rio
|
||||
FileChooser.newFolderErrorText=Erro ao criar nova pasta
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitleText=N\u00E3o \u00E9 poss\u00EDvel criar a pasta
|
||||
FileChooser.newFolderParentDoesntExistText=N\u00E3o \u00E9 poss\u00EDvel criar a pasta.\n\nO sistema n\u00E3o pode localizar o caminho especificado.
|
||||
FileChooser.renameErrorTitleText=Erro ao Renomear o Arquivo ou a Pasta
|
||||
FileChooser.renameErrorText=N\u00E3o \u00E9 poss\u00EDvel renomear {0}
|
||||
FileChooser.renameErrorFileExistsText=N\u00E3o \u00E9 poss\u00EDvel renomear {0}: Um arquivo com o nome especificado j\u00E1 existe. Especifique outro nome de arquivo.
|
||||
FileChooser.acceptAllFileFilterText=Todos os Arquivos
|
||||
FileChooser.cancelButtonText=Cancelar
|
||||
FileChooser.cancelButtonMnemonic=67
|
||||
FileChooser.saveButtonText=Salvar
|
||||
FileChooser.saveButtonMnemonic=83
|
||||
FileChooser.openButtonText=Abrir
|
||||
FileChooser.openButtonMnemonic=66
|
||||
FileChooser.saveDialogTitleText=Salvar
|
||||
FileChooser.openDialogTitleText=Abrir
|
||||
FileChooser.updateButtonText=Atualizar
|
||||
FileChooser.updateButtonMnemonic=85
|
||||
FileChooser.helpButtonText=Ajuda
|
||||
FileChooser.helpButtonMnemonic=85
|
||||
FileChooser.directoryOpenButtonText=Abrir
|
||||
FileChooser.directoryOpenButtonMnemonic=66
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=Nova Pasta
|
||||
FileChooser.win32.newFolder.subsequent=Nova Pasta ({0})
|
||||
FileChooser.other.newFolder=NewFolder
|
||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTipText=Abortar caixa de di\u00E1logo do seletor de arquivos
|
||||
FileChooser.saveButtonToolTipText=Salvar arquivo selecionado
|
||||
FileChooser.openButtonToolTipText=Abrir arquivo selecionado
|
||||
FileChooser.updateButtonToolTipText=Atualizar lista de diret\u00F3rios
|
||||
FileChooser.helpButtonToolTipText=Ajuda do FileChooser
|
||||
FileChooser.directoryOpenButtonToolTipText=Abrir diret\u00F3rio selecionado
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.previewText=Visualizar
|
||||
ColorChooser.okText=OK
|
||||
ColorChooser.cancelText=Cancelar
|
||||
ColorChooser.resetText=Redefinir
|
||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
||||
ColorChooser.resetMnemonic=82
|
||||
ColorChooser.sampleText=Texto de Amostra Texto de Amostra
|
||||
ColorChooser.swatchesNameText=Amostras
|
||||
ColorChooser.swatchesMnemonic=83
|
||||
ColorChooser.swatchesRecentText=Recente:
|
||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
||||
# constant, and an index into the text to render the mnemonic as. The
|
||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
||||
# xxxDisplayedMnemonicIndex.
|
||||
ColorChooser.hsvNameText=HSV
|
||||
ColorChooser.hsvMnemonic=72
|
||||
ColorChooser.hsvHueText=Matiz
|
||||
ColorChooser.hsvSaturationText=Satura\u00E7\u00E3o
|
||||
ColorChooser.hsvValueText=Valor
|
||||
ColorChooser.hsvTransparencyText=Transpar\u00EAncia
|
||||
ColorChooser.hslNameText=HSL
|
||||
ColorChooser.hslMnemonic=76
|
||||
ColorChooser.hslHueText=Matiz
|
||||
ColorChooser.hslSaturationText=Satura\u00E7\u00E3o
|
||||
ColorChooser.hslLightnessText=Clareza
|
||||
ColorChooser.hslTransparencyText=Transpar\u00EAncia
|
||||
ColorChooser.rgbNameText=RGB
|
||||
ColorChooser.rgbMnemonic=71
|
||||
ColorChooser.rgbRedText=Vermelho
|
||||
ColorChooser.rgbRedMnemonic=86
|
||||
ColorChooser.rgbGreenText=Verde
|
||||
ColorChooser.rgbGreenMnemonic=86
|
||||
ColorChooser.rgbBlueText=Azul
|
||||
ColorChooser.rgbBlueMnemonic=65
|
||||
ColorChooser.rgbAlphaText=Alfa
|
||||
ColorChooser.rgbHexCodeText=C\u00F3digo da Cor
|
||||
ColorChooser.rgbHexCodeMnemonic=67
|
||||
ColorChooser.cmykNameText=CMYK
|
||||
ColorChooser.cmykMnemonic=77
|
||||
ColorChooser.cmykCyanText=Ciano
|
||||
ColorChooser.cmykMagentaText=Magenta
|
||||
ColorChooser.cmykYellowText=Amarelo
|
||||
ColorChooser.cmykBlackText=Preto
|
||||
ColorChooser.cmykAlphaText=Alfa
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButtonText=Sim
|
||||
OptionPane.yesButtonMnemonic=83
|
||||
OptionPane.noButtonText=N\u00E3o
|
||||
OptionPane.noButtonMnemonic=78
|
||||
OptionPane.okButtonText=OK
|
||||
OptionPane.okButtonMnemonic=O
|
||||
OptionPane.cancelButtonText=Cancelar
|
||||
OptionPane.cancelButtonMnemonic=C
|
||||
OptionPane.titleText=Selecionar uma Op\u00E7\u00E3o
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialogTitle=Entrada
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialogTitle=Mensagem
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgressText=Impress\u00E3o
|
||||
PrintingDialog.titleAbortingText=Impress\u00E3o (Abortando)
|
||||
|
||||
PrintingDialog.contentInitialText=Impress\u00E3o em andamento...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgressText=P\u00E1gina impressa {0}...
|
||||
|
||||
PrintingDialog.contentAbortingText=Abortando impress\u00E3o...
|
||||
|
||||
PrintingDialog.abortButtonText=Abortar
|
||||
PrintingDialog.abortButtonMnemonic=65
|
||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
||||
PrintingDialog.abortButtonToolTipText=Abortar Impress\u00E3o
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=Minimizar
|
||||
InternalFrame.maxButtonToolTip=Maximizar
|
||||
InternalFrame.restoreButtonToolTip=Restaurar
|
||||
InternalFrame.closeButtonToolTip=Fechar
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# 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
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescription.textAndMnemonic=Arquivo Gen\u00E9rico
|
||||
FileChooser.directoryDescription.textAndMnemonic=Diret\u00F3rio
|
||||
FileChooser.newFolderError.textAndMnemonic=Erro ao criar nova pasta
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel criar a pasta
|
||||
FileChooser.newFolderParentDoesntExist.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel criar a pasta.\n\nO sistema n\u00E3o pode localizar o caminho especificado.
|
||||
FileChooser.renameErrorTitle.textAndMnemonic=Erro ao Renomear o Arquivo ou a Pasta
|
||||
FileChooser.renameError.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel renomear {0}
|
||||
FileChooser.renameErrorFileExists.textAndMnemonic=N\u00E3o \u00E9 poss\u00EDvel renomear {0}: Um arquivo com o nome especificado j\u00E1 existe. Especifique outro nome de arquivo.
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=Todos os Arquivos
|
||||
FileChooser.cancelButton.textAndMnemonic=&Cancelar
|
||||
FileChooser.saveButton.textAndMnemonic=&Salvar
|
||||
FileChooser.openButton.textAndMnemonic=A&brir
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=Salvar
|
||||
FileChooser.openDialogTitle.textAndMnemonic=Abrir
|
||||
FileChooser.updateButton.textAndMnemonic=At&ualizar
|
||||
FileChooser.helpButton.textAndMnemonic=Aj&uda
|
||||
FileChooser.directoryOpenButton.textAndMnemonic=A&brir
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=Nova Pasta
|
||||
FileChooser.win32.newFolder.subsequent=Nova Pasta ({0})
|
||||
FileChooser.other.newFolder=NewFolder
|
||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Abortar caixa de di\u00E1logo do seletor de arquivos
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=Salvar arquivo selecionado
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=Abrir arquivo selecionado
|
||||
FileChooser.updateButtonToolTip.textAndMnemonic=Atualizar lista de diret\u00F3rios
|
||||
FileChooser.helpButtonToolTip.textAndMnemonic=Ajuda do FileChooser
|
||||
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Abrir diret\u00F3rio selecionado
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.preview.textAndMnemonic=Visualizar
|
||||
ColorChooser.ok.textAndMnemonic=OK
|
||||
ColorChooser.cancel.textAndMnemonic=Cancelar
|
||||
ColorChooser.reset.textAndMnemonic=&Redefinir
|
||||
ColorChooser.sample.textAndMnemonic=Texto de Amostra Texto de Amostra
|
||||
ColorChooser.swatches.textAndMnemonic=Amo&stras
|
||||
ColorChooser.swatchesRecent.textAndMnemonic=Recente:
|
||||
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||
ColorChooser.hsvHue.textAndMnemonic=Matiz
|
||||
ColorChooser.hsvSaturation.textAndMnemonic=Satura\u00E7\u00E3o
|
||||
ColorChooser.hsvValue.textAndMnemonic=Valor
|
||||
ColorChooser.hsvTransparency.textAndMnemonic=Transpar\u00EAncia
|
||||
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||
ColorChooser.hslHue.textAndMnemonic=Matiz
|
||||
ColorChooser.hslSaturation.textAndMnemonic=Satura\u00E7\u00E3o
|
||||
ColorChooser.hslLightness.textAndMnemonic=Clareza
|
||||
ColorChooser.hslTransparency.textAndMnemonic=Transpar\u00EAncia
|
||||
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||
ColorChooser.rgbRed.textAndMnemonic=&Vermelho
|
||||
ColorChooser.rgbGreen.textAndMnemonic=&Verde
|
||||
ColorChooser.rgbBlue.textAndMnemonic=&Azul
|
||||
ColorChooser.rgbAlpha.textAndMnemonic=Alfa
|
||||
ColorChooser.rgbHexCode.textAndMnemonic=C\u00F3digo da Cor(&C)
|
||||
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||
ColorChooser.cmykCyan.textAndMnemonic=Ciano
|
||||
ColorChooser.cmykMagenta.textAndMnemonic=Magenta
|
||||
ColorChooser.cmykYellow.textAndMnemonic=Amarelo
|
||||
ColorChooser.cmykBlack.textAndMnemonic=Preto
|
||||
ColorChooser.cmykAlpha.textAndMnemonic=Alfa
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButton.textAndMnemonic=&Sim
|
||||
OptionPane.noButton.textAndMnemonic=N\u00E3o(&N)
|
||||
OptionPane.okButton.textAndMnemonic=&OK
|
||||
OptionPane.cancelButton.textAndMnemonic=&Cancelar
|
||||
OptionPane.title.textAndMnemonic=Selecionar uma Op\u00E7\u00E3o
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialog.titleAndMnemonic=Entrada
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialog.titleAndMnemonic=Mensagem
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgress.textAndMnemonic=Impress\u00E3o
|
||||
PrintingDialog.titleAborting.textAndMnemonic=Impress\u00E3o (Abortando)
|
||||
|
||||
PrintingDialog.contentInitial.textAndMnemonic=Impress\u00E3o em andamento...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgress.textAndMnemonic=P\u00E1gina impressa {0}...
|
||||
|
||||
PrintingDialog.contentAborting.textAndMnemonic=Abortando impress\u00E3o...
|
||||
|
||||
PrintingDialog.abortButton.textAndMnemonic=&Abortar
|
||||
PrintingDialog.abortButtonToolTip.textAndMnemonic=Abortar Impress\u00E3o
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=Minimizar
|
||||
InternalFrame.maxButtonToolTip=Maximizar
|
||||
InternalFrame.restoreButtonToolTip=Restaurar
|
||||
InternalFrame.closeButtonToolTip=Fechar
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButton.textAndMnemonic=Restaurar
|
||||
InternalFrameTitlePane.moveButton.textAndMnemonic=Mover
|
||||
InternalFrameTitlePane.sizeButton.textAndMnemonic=Tamanho
|
||||
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimizar
|
||||
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximizar
|
||||
InternalFrameTitlePane.closeButton.textAndMnemonic=Fechar
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButton.textAndMnemonic=Submeter Consulta
|
||||
FormView.resetButton.textAndMnemonic=Redefinir
|
||||
FormView.browseFileButton.textAndMnemonic=Procurar...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChange.textAndMnemonic=altera\u00E7\u00E3o de estilo
|
||||
AbstractDocument.addition.textAndMnemonic=adi\u00E7\u00E3o
|
||||
AbstractDocument.deletion.textAndMnemonic=dele\u00E7\u00E3o
|
||||
AbstractDocument.undo.textAndMnemonic=Desfazer
|
||||
AbstractDocument.redo.textAndMnemonic=Refazer
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.click.textAndMnemonic=clicar
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undo.textAndMnemonic=Desfazer
|
||||
AbstractUndoableEdit.redo.textAndMnemonic=Refazer
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progress.textAndMnemonic=Progresso...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButton.textAndMnemonic=bot\u00E3o esquerdo
|
||||
SplitPane.rightButton.textAndMnemonic=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
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameText=RGB
|
||||
# ColorChooser.rgbMnemonic=71
|
||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# a decoration will be provided under the 'G'. This will typically
|
||||
# look like: RGB
|
||||
# -
|
||||
# 71 corresponds to the decimal value of the VK constant defined
|
||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
||||
#
|
||||
# public static final int VK_G = 0x47;
|
||||
#
|
||||
# 0x47 is a hex number and needs to be converted to decimal.
|
||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
||||
# for 'a' is 65, 'b' is 66...
|
||||
#
|
||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
||||
# character that should be underlined in the String, with 0
|
||||
# corresponding to the first character in the String.
|
||||
#
|
||||
# One important thing to remember is that the mnemonic MUST exist in
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescriptionText=Generisk fil
|
||||
FileChooser.directoryDescriptionText=Katalog
|
||||
FileChooser.newFolderErrorText=Fel uppstod n\u00E4r ny mapp skapades
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitleText=Kan inte skapa mappen
|
||||
FileChooser.newFolderParentDoesntExistText=Kan inte skapa mappen.\n\nSystemet kan inte hitta angiven s\u00F6kv\u00E4g.
|
||||
FileChooser.renameErrorTitleText=Ett fel intr\u00E4ffade vid f\u00F6rs\u00F6k att \u00E4ndra namn p\u00E5 fil eller mapp
|
||||
FileChooser.renameErrorText=Kan inte namn\u00E4ndra {0}
|
||||
FileChooser.renameErrorFileExistsText=Kan inte namn\u00E4ndra {0}: En fil med angivet namn finns redan. Ange ett annat filnamn.
|
||||
FileChooser.acceptAllFileFilterText=Alla filer
|
||||
FileChooser.cancelButtonText=Avbryt
|
||||
FileChooser.cancelButtonMnemonic=65
|
||||
FileChooser.saveButtonText=Spara
|
||||
FileChooser.saveButtonMnemonic=83
|
||||
FileChooser.openButtonText=\u00D6ppna
|
||||
FileChooser.openButtonMnemonic=80
|
||||
FileChooser.saveDialogTitleText=Spara
|
||||
FileChooser.openDialogTitleText=\u00D6ppna
|
||||
FileChooser.updateButtonText=Uppdatera
|
||||
FileChooser.updateButtonMnemonic=68
|
||||
FileChooser.helpButtonText=Hj\u00E4lp
|
||||
FileChooser.helpButtonMnemonic=72
|
||||
FileChooser.directoryOpenButtonText=\u00D6ppna
|
||||
FileChooser.directoryOpenButtonMnemonic=80
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=Ny mapp
|
||||
FileChooser.win32.newFolder.subsequent=Ny mapp ({0})
|
||||
FileChooser.other.newFolder=Ny mapp
|
||||
FileChooser.other.newFolder.subsequent=Ny mapp.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTipText=Avbryt filvalsdialogruta
|
||||
FileChooser.saveButtonToolTipText=Spara vald fil
|
||||
FileChooser.openButtonToolTipText=\u00D6ppna vald fil
|
||||
FileChooser.updateButtonToolTipText=Uppdatera kataloglistan
|
||||
FileChooser.helpButtonToolTipText=Hj\u00E4lp - Filv\u00E4ljare
|
||||
FileChooser.directoryOpenButtonToolTipText=\u00D6ppna vald katalog
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.previewText=Granska
|
||||
ColorChooser.okText=OK
|
||||
ColorChooser.cancelText=Avbryt
|
||||
ColorChooser.resetText=\u00C5terst\u00E4ll
|
||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
||||
ColorChooser.resetMnemonic=84
|
||||
ColorChooser.sampleText=Exempeltext Exempeltext
|
||||
ColorChooser.swatchesNameText=Prov
|
||||
ColorChooser.swatchesMnemonic=80
|
||||
ColorChooser.swatchesRecentText=Senaste:
|
||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
||||
# constant, and an index into the text to render the mnemonic as. The
|
||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
||||
# xxxDisplayedMnemonicIndex.
|
||||
ColorChooser.hsvNameText=HSV
|
||||
ColorChooser.hsvMnemonic=72
|
||||
ColorChooser.hsvHueText=Nyans
|
||||
ColorChooser.hsvSaturationText=M\u00E4ttnad
|
||||
ColorChooser.hsvValueText=V\u00E4rde
|
||||
ColorChooser.hsvTransparencyText=Transparens
|
||||
ColorChooser.hslNameText=HSL
|
||||
ColorChooser.hslMnemonic=76
|
||||
ColorChooser.hslHueText=Nyans
|
||||
ColorChooser.hslSaturationText=M\u00E4ttnad
|
||||
ColorChooser.hslLightnessText=Ljusstyrka
|
||||
ColorChooser.hslTransparencyText=Transparens
|
||||
ColorChooser.rgbNameText=RGB
|
||||
ColorChooser.rgbMnemonic=71
|
||||
ColorChooser.rgbRedText=R\u00F6d
|
||||
ColorChooser.rgbRedMnemonic=68
|
||||
ColorChooser.rgbGreenText=Gr\u00F6n
|
||||
ColorChooser.rgbGreenMnemonic=78
|
||||
ColorChooser.rgbBlueText=Bl\u00E5
|
||||
ColorChooser.rgbBlueMnemonic=66
|
||||
ColorChooser.rgbAlphaText=Alfa
|
||||
ColorChooser.rgbHexCodeText=F\u00E4rgkod
|
||||
ColorChooser.rgbHexCodeMnemonic=70
|
||||
ColorChooser.cmykNameText=CMYK
|
||||
ColorChooser.cmykMnemonic=77
|
||||
ColorChooser.cmykCyanText=Cyan
|
||||
ColorChooser.cmykMagentaText=Magenta
|
||||
ColorChooser.cmykYellowText=Gul
|
||||
ColorChooser.cmykBlackText=Svart
|
||||
ColorChooser.cmykAlphaText=Alfa
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButtonText=Ja
|
||||
OptionPane.yesButtonMnemonic=74
|
||||
OptionPane.noButtonText=Nej
|
||||
OptionPane.noButtonMnemonic=78
|
||||
OptionPane.okButtonText=OK
|
||||
OptionPane.okButtonMnemonic=O
|
||||
OptionPane.cancelButtonText=Avbryt
|
||||
OptionPane.cancelButtonMnemonic=A
|
||||
OptionPane.titleText=V\u00E4lj ett alternativ
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialogTitle=Indata
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialogTitle=Meddelande
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgressText=Skriver ut
|
||||
PrintingDialog.titleAbortingText=Skriver ut (avbryter)
|
||||
|
||||
PrintingDialog.contentInitialText=Utskrift p\u00E5g\u00E5r...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgressText=Utskriven sida {0}...
|
||||
|
||||
PrintingDialog.contentAbortingText=Utskriften avbryts...
|
||||
|
||||
PrintingDialog.abortButtonText=Avbryt
|
||||
PrintingDialog.abortButtonMnemonic=65
|
||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
||||
PrintingDialog.abortButtonToolTipText=Avbryt utskrift
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=Minimera
|
||||
InternalFrame.maxButtonToolTip=Maximera
|
||||
InternalFrame.restoreButtonToolTip=\u00C5terst\u00E4ll
|
||||
InternalFrame.closeButtonToolTip=St\u00E4ng
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# 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
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescription.textAndMnemonic=Generisk fil
|
||||
FileChooser.directoryDescription.textAndMnemonic=Katalog
|
||||
FileChooser.newFolderError.textAndMnemonic=Fel uppstod n\u00E4r ny mapp skapades
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Kan inte skapa mappen
|
||||
FileChooser.newFolderParentDoesntExist.textAndMnemonic=Kan inte skapa mappen.\n\nSystemet kan inte hitta angiven s\u00F6kv\u00E4g.
|
||||
FileChooser.renameErrorTitle.textAndMnemonic=Ett fel intr\u00E4ffade vid f\u00F6rs\u00F6k att \u00E4ndra namn p\u00E5 fil eller mapp
|
||||
FileChooser.renameError.textAndMnemonic=Kan inte namn\u00E4ndra {0}
|
||||
FileChooser.renameErrorFileExists.textAndMnemonic=Kan inte namn\u00E4ndra {0}: En fil med angivet namn finns redan. Ange ett annat filnamn.
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=Alla filer
|
||||
FileChooser.cancelButton.textAndMnemonic=&Avbryt
|
||||
FileChooser.saveButton.textAndMnemonic=&Spara
|
||||
FileChooser.openButton.textAndMnemonic=\u00D6ppna(&P)
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=Spara
|
||||
FileChooser.openDialogTitle.textAndMnemonic=\u00D6ppna
|
||||
FileChooser.updateButton.textAndMnemonic=Upp&datera
|
||||
FileChooser.helpButton.textAndMnemonic=Hj\u00E4lp(&H)
|
||||
FileChooser.directoryOpenButton.textAndMnemonic=\u00D6ppna(&P)
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=Ny mapp
|
||||
FileChooser.win32.newFolder.subsequent=Ny mapp ({0})
|
||||
FileChooser.other.newFolder=Ny mapp
|
||||
FileChooser.other.newFolder.subsequent=Ny mapp.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt filvalsdialogruta
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil
|
||||
FileChooser.updateButtonToolTip.textAndMnemonic=Uppdatera kataloglistan
|
||||
FileChooser.helpButtonToolTip.textAndMnemonic=Hj\u00E4lp - Filv\u00E4ljare
|
||||
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\u00D6ppna vald katalog
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.preview.textAndMnemonic=Granska
|
||||
ColorChooser.ok.textAndMnemonic=OK
|
||||
ColorChooser.cancel.textAndMnemonic=Avbryt
|
||||
ColorChooser.reset.textAndMnemonic=\u00C5terst\u00E4ll(&T)
|
||||
ColorChooser.sample.textAndMnemonic=Exempeltext Exempeltext
|
||||
ColorChooser.swatches.textAndMnemonic=&Prov
|
||||
ColorChooser.swatchesRecent.textAndMnemonic=Senaste:
|
||||
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||
ColorChooser.hsvHue.textAndMnemonic=Nyans
|
||||
ColorChooser.hsvSaturation.textAndMnemonic=M\u00E4ttnad
|
||||
ColorChooser.hsvValue.textAndMnemonic=V\u00E4rde
|
||||
ColorChooser.hsvTransparency.textAndMnemonic=Transparens
|
||||
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||
ColorChooser.hslHue.textAndMnemonic=Nyans
|
||||
ColorChooser.hslSaturation.textAndMnemonic=M\u00E4ttnad
|
||||
ColorChooser.hslLightness.textAndMnemonic=Ljusstyrka
|
||||
ColorChooser.hslTransparency.textAndMnemonic=Transparens
|
||||
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||
ColorChooser.rgbRed.textAndMnemonic=R\u00F6d(&D)
|
||||
ColorChooser.rgbGreen.textAndMnemonic=Gr\u00F6n(&N)
|
||||
ColorChooser.rgbBlue.textAndMnemonic=Bl\u00E5(&B)
|
||||
ColorChooser.rgbAlpha.textAndMnemonic=Alfa
|
||||
ColorChooser.rgbHexCode.textAndMnemonic=F\u00E4rgkod(&F)
|
||||
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||
ColorChooser.cmykCyan.textAndMnemonic=Cyan
|
||||
ColorChooser.cmykMagenta.textAndMnemonic=Magenta
|
||||
ColorChooser.cmykYellow.textAndMnemonic=Gul
|
||||
ColorChooser.cmykBlack.textAndMnemonic=Svart
|
||||
ColorChooser.cmykAlpha.textAndMnemonic=Alfa
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButton.textAndMnemonic=&Ja
|
||||
OptionPane.noButton.textAndMnemonic=&Nej
|
||||
OptionPane.okButton.textAndMnemonic=&OK
|
||||
OptionPane.cancelButton.textAndMnemonic=&Avbryt
|
||||
OptionPane.title.textAndMnemonic=V\u00E4lj ett alternativ
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialog.titleAndMnemonic=Indata
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialog.titleAndMnemonic=Meddelande
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgress.textAndMnemonic=Skriver ut
|
||||
PrintingDialog.titleAborting.textAndMnemonic=Skriver ut (avbryter)
|
||||
|
||||
PrintingDialog.contentInitial.textAndMnemonic=Utskrift p\u00E5g\u00E5r...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgress.textAndMnemonic=Utskriven sida {0}...
|
||||
|
||||
PrintingDialog.contentAborting.textAndMnemonic=Utskriften avbryts...
|
||||
|
||||
PrintingDialog.abortButton.textAndMnemonic=&Avbryt
|
||||
PrintingDialog.abortButtonToolTip.textAndMnemonic=Avbryt utskrift
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=Minimera
|
||||
InternalFrame.maxButtonToolTip=Maximera
|
||||
InternalFrame.restoreButtonToolTip=\u00C5terst\u00E4ll
|
||||
InternalFrame.closeButtonToolTip=St\u00E4ng
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButton.textAndMnemonic=\u00C5terst\u00E4ll
|
||||
InternalFrameTitlePane.moveButton.textAndMnemonic=Flytta
|
||||
InternalFrameTitlePane.sizeButton.textAndMnemonic=Storlek
|
||||
InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimera
|
||||
InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximera
|
||||
InternalFrameTitlePane.closeButton.textAndMnemonic=St\u00E4ng
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButton.textAndMnemonic=Skicka fr\u00E5ga
|
||||
FormView.resetButton.textAndMnemonic=\u00C5terst\u00E4ll
|
||||
FormView.browseFileButton.textAndMnemonic=Bl\u00E4ddra...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChange.textAndMnemonic=format\u00E4ndring
|
||||
AbstractDocument.addition.textAndMnemonic=till\u00E4gg
|
||||
AbstractDocument.deletion.textAndMnemonic=borttagning
|
||||
AbstractDocument.undo.textAndMnemonic=\u00C5ngra
|
||||
AbstractDocument.redo.textAndMnemonic=G\u00F6r om
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.click.textAndMnemonic=klicka
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undo.textAndMnemonic=\u00C5ngra
|
||||
AbstractUndoableEdit.redo.textAndMnemonic=G\u00F6r om
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopup.textAndMnemonic=v\u00E4xlaPopup
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progress.textAndMnemonic=P\u00E5g\u00E5r...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButton.textAndMnemonic=v\u00E4nster knapp
|
||||
SplitPane.rightButton.textAndMnemonic=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
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameText=RGB
|
||||
# ColorChooser.rgbMnemonic=71
|
||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# a decoration will be provided under the 'G'. This will typically
|
||||
# look like: RGB
|
||||
# -
|
||||
# 71 corresponds to the decimal value of the VK constant defined
|
||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
||||
#
|
||||
# public static final int VK_G = 0x47;
|
||||
#
|
||||
# 0x47 is a hex number and needs to be converted to decimal.
|
||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
||||
# for 'a' is 65, 'b' is 66...
|
||||
#
|
||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
||||
# character that should be underlined in the String, with 0
|
||||
# corresponding to the first character in the String.
|
||||
#
|
||||
# One important thing to remember is that the mnemonic MUST exist in
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescriptionText=\u666E\u901A\u7684\u6587\u4EF6
|
||||
FileChooser.directoryDescriptionText=\u76EE\u5F55
|
||||
FileChooser.newFolderErrorText=\u521B\u5EFA\u65B0\u7684\u6587\u4EF6\u5939\u65F6\u51FA\u9519
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitleText=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939
|
||||
FileChooser.newFolderParentDoesntExistText=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939\u3002\n\n\u7CFB\u7EDF\u627E\u4E0D\u5230\u6307\u5B9A\u7684\u8DEF\u5F84\u3002
|
||||
FileChooser.renameErrorTitleText=\u91CD\u547D\u540D\u6587\u4EF6\u6216\u6587\u4EF6\u5939\u65F6\u51FA\u9519
|
||||
FileChooser.renameErrorText=\u65E0\u6CD5\u91CD\u547D\u540D{0}
|
||||
FileChooser.renameErrorFileExistsText=\u65E0\u6CD5\u91CD\u547D\u540D{0}: \u5DF2\u5B58\u5728\u5177\u6709\u6240\u6307\u5B9A\u540D\u79F0\u7684\u6587\u4EF6\u3002\u8BF7\u6307\u5B9A\u5176\u4ED6\u6587\u4EF6\u540D\u3002
|
||||
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6587\u4EF6
|
||||
FileChooser.cancelButtonText=\u53D6\u6D88
|
||||
FileChooser.cancelButtonMnemonic=67
|
||||
FileChooser.saveButtonText=\u4FDD\u5B58
|
||||
FileChooser.saveButtonMnemonic=83
|
||||
FileChooser.openButtonText=\u6253\u5F00
|
||||
FileChooser.openButtonMnemonic=79
|
||||
FileChooser.saveDialogTitleText=\u4FDD\u5B58
|
||||
FileChooser.openDialogTitleText=\u6253\u5F00
|
||||
FileChooser.updateButtonText=\u66F4\u65B0(U)
|
||||
FileChooser.updateButtonMnemonic=85
|
||||
FileChooser.helpButtonText=\u5E2E\u52A9(H)
|
||||
FileChooser.helpButtonMnemonic=72
|
||||
FileChooser.directoryOpenButtonText=\u6253\u5F00(O)
|
||||
FileChooser.directoryOpenButtonMnemonic=79
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||
FileChooser.win32.newFolder.subsequent=\u65B0\u5EFA\u6587\u4EF6\u5939 ({0})
|
||||
FileChooser.other.newFolder=NewFolder
|
||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846
|
||||
FileChooser.saveButtonToolTipText=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6
|
||||
FileChooser.openButtonToolTipText=\u6253\u5F00\u6240\u9009\u6587\u4EF6
|
||||
FileChooser.updateButtonToolTipText=\u66F4\u65B0\u76EE\u5F55\u5217\u8868
|
||||
FileChooser.helpButtonToolTipText=FileChooser \u5E2E\u52A9
|
||||
FileChooser.directoryOpenButtonToolTipText=\u6253\u5F00\u9009\u62E9\u7684\u76EE\u5F55
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.previewText=\u9884\u89C8
|
||||
ColorChooser.okText=\u786E\u5B9A
|
||||
ColorChooser.cancelText=\u53D6\u6D88
|
||||
ColorChooser.resetText=\u91CD\u7F6E(R)
|
||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
||||
ColorChooser.resetMnemonic=82
|
||||
ColorChooser.sampleText=\u793A\u4F8B\u6587\u672C \u793A\u4F8B\u6587\u672C
|
||||
ColorChooser.swatchesNameText=\u793A\u4F8B(S)
|
||||
ColorChooser.swatchesMnemonic=83
|
||||
ColorChooser.swatchesRecentText=\u6700\u8FD1:
|
||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
||||
# constant, and an index into the text to render the mnemonic as. The
|
||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
||||
# xxxDisplayedMnemonicIndex.
|
||||
ColorChooser.hsvNameText=HSV
|
||||
ColorChooser.hsvMnemonic=72
|
||||
ColorChooser.hsvHueText=\u8272\u8C03
|
||||
ColorChooser.hsvSaturationText=\u9971\u548C\u5EA6
|
||||
ColorChooser.hsvValueText=\u503C
|
||||
ColorChooser.hsvTransparencyText=\u900F\u660E\u5EA6
|
||||
ColorChooser.hslNameText=HSL
|
||||
ColorChooser.hslMnemonic=76
|
||||
ColorChooser.hslHueText=\u8272\u8C03
|
||||
ColorChooser.hslSaturationText=\u9971\u548C\u5EA6
|
||||
ColorChooser.hslLightnessText=\u4EAE\u5EA6
|
||||
ColorChooser.hslTransparencyText=\u900F\u660E\u5EA6
|
||||
ColorChooser.rgbNameText=RGB
|
||||
ColorChooser.rgbMnemonic=71
|
||||
ColorChooser.rgbRedText=\u7EA2\u8272
|
||||
ColorChooser.rgbRedMnemonic=68
|
||||
ColorChooser.rgbGreenText=\u7EFF\u8272
|
||||
ColorChooser.rgbGreenMnemonic=78
|
||||
ColorChooser.rgbBlueText=\u84DD\u8272
|
||||
ColorChooser.rgbBlueMnemonic=66
|
||||
ColorChooser.rgbAlphaText=Alpha
|
||||
ColorChooser.rgbHexCodeText=\u989C\u8272\u4EE3\u7801(C)
|
||||
ColorChooser.rgbHexCodeMnemonic=67
|
||||
ColorChooser.cmykNameText=CMYK
|
||||
ColorChooser.cmykMnemonic=77
|
||||
ColorChooser.cmykCyanText=\u9752\u8272
|
||||
ColorChooser.cmykMagentaText=\u7D2B\u7EA2\u8272
|
||||
ColorChooser.cmykYellowText=\u9EC4\u8272
|
||||
ColorChooser.cmykBlackText=\u9ED1\u8272
|
||||
ColorChooser.cmykAlphaText=Alpha
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButtonText=\u662F(Y)
|
||||
OptionPane.yesButtonMnemonic=89
|
||||
OptionPane.noButtonText=\u5426(N)
|
||||
OptionPane.noButtonMnemonic=78
|
||||
OptionPane.okButtonText=\u786E\u5B9A
|
||||
OptionPane.okButtonMnemonic=O
|
||||
OptionPane.cancelButtonText=\u53D6\u6D88
|
||||
OptionPane.cancelButtonMnemonic=0
|
||||
OptionPane.titleText=\u9009\u62E9\u4E00\u4E2A\u9009\u9879
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialogTitle=\u8F93\u5165
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialogTitle=\u6D88\u606F
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgressText=\u6253\u5370
|
||||
PrintingDialog.titleAbortingText=\u6253\u5370 (\u6B63\u5728\u4E2D\u6B62)
|
||||
|
||||
PrintingDialog.contentInitialText=\u6B63\u5728\u8FDB\u884C\u6253\u5370...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgressText=\u5DF2\u6253\u5370\u9875 {0}...
|
||||
|
||||
PrintingDialog.contentAbortingText=\u6B63\u5728\u4E2D\u6B62\u6253\u5370...
|
||||
|
||||
PrintingDialog.abortButtonText=\u4E2D\u6B62(A)
|
||||
PrintingDialog.abortButtonMnemonic=65
|
||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
||||
PrintingDialog.abortButtonToolTipText=\u4E2D\u6B62\u6253\u5370
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
|
||||
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
|
||||
InternalFrame.restoreButtonToolTip=\u8FD8\u539F
|
||||
InternalFrame.closeButtonToolTip=\u5173\u95ED
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# 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
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescription.textAndMnemonic=\u666E\u901A\u7684\u6587\u4EF6
|
||||
FileChooser.directoryDescription.textAndMnemonic=\u76EE\u5F55
|
||||
FileChooser.newFolderError.textAndMnemonic=\u521B\u5EFA\u65B0\u7684\u6587\u4EF6\u5939\u65F6\u51FA\u9519
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939
|
||||
FileChooser.newFolderParentDoesntExist.textAndMnemonic=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939\u3002\n\n\u7CFB\u7EDF\u627E\u4E0D\u5230\u6307\u5B9A\u7684\u8DEF\u5F84\u3002
|
||||
FileChooser.renameErrorTitle.textAndMnemonic=\u91CD\u547D\u540D\u6587\u4EF6\u6216\u6587\u4EF6\u5939\u65F6\u51FA\u9519
|
||||
FileChooser.renameError.textAndMnemonic=\u65E0\u6CD5\u91CD\u547D\u540D{0}
|
||||
FileChooser.renameErrorFileExists.textAndMnemonic=\u65E0\u6CD5\u91CD\u547D\u540D{0}: \u5DF2\u5B58\u5728\u5177\u6709\u6240\u6307\u5B9A\u540D\u79F0\u7684\u6587\u4EF6\u3002\u8BF7\u6307\u5B9A\u5176\u4ED6\u6587\u4EF6\u540D\u3002
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6587\u4EF6
|
||||
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
|
||||
FileChooser.saveButton.textAndMnemonic=\u4FDD\u5B58(&S)
|
||||
FileChooser.openButton.textAndMnemonic=\u6253\u5F00(&O)
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=\u4FDD\u5B58
|
||||
FileChooser.openDialogTitle.textAndMnemonic=\u6253\u5F00
|
||||
FileChooser.updateButton.textAndMnemonic=\u66F4\u65B0(&U)
|
||||
FileChooser.helpButton.textAndMnemonic=\u5E2E\u52A9(&H)
|
||||
FileChooser.directoryOpenButton.textAndMnemonic=\u6253\u5F00(&O)
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||
FileChooser.win32.newFolder.subsequent=\u65B0\u5EFA\u6587\u4EF6\u5939 ({0})
|
||||
FileChooser.other.newFolder=NewFolder
|
||||
FileChooser.other.newFolder.subsequent=NewFolder.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=\u6253\u5F00\u6240\u9009\u6587\u4EF6
|
||||
FileChooser.updateButtonToolTip.textAndMnemonic=\u66F4\u65B0\u76EE\u5F55\u5217\u8868
|
||||
FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser \u5E2E\u52A9
|
||||
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\u6253\u5F00\u9009\u62E9\u7684\u76EE\u5F55
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.preview.textAndMnemonic=\u9884\u89C8
|
||||
ColorChooser.ok.textAndMnemonic=\u786E\u5B9A
|
||||
ColorChooser.cancel.textAndMnemonic=\u53D6\u6D88
|
||||
ColorChooser.reset.textAndMnemonic=\u91CD\u7F6E(&R)
|
||||
ColorChooser.sample.textAndMnemonic=\u793A\u4F8B\u6587\u672C \u793A\u4F8B\u6587\u672C
|
||||
ColorChooser.swatches.textAndMnemonic=\u793A\u4F8B(&S)
|
||||
ColorChooser.swatchesRecent.textAndMnemonic=\u6700\u8FD1:
|
||||
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||
ColorChooser.hsvHue.textAndMnemonic=\u8272\u8C03
|
||||
ColorChooser.hsvSaturation.textAndMnemonic=\u9971\u548C\u5EA6
|
||||
ColorChooser.hsvValue.textAndMnemonic=\u503C
|
||||
ColorChooser.hsvTransparency.textAndMnemonic=\u900F\u660E\u5EA6
|
||||
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||
ColorChooser.hslHue.textAndMnemonic=\u8272\u8C03
|
||||
ColorChooser.hslSaturation.textAndMnemonic=\u9971\u548C\u5EA6
|
||||
ColorChooser.hslLightness.textAndMnemonic=\u4EAE\u5EA6
|
||||
ColorChooser.hslTransparency.textAndMnemonic=\u900F\u660E\u5EA6
|
||||
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||
ColorChooser.rgbRed.textAndMnemonic=\u7EA2\u8272(&D)
|
||||
ColorChooser.rgbGreen.textAndMnemonic=\u7EFF\u8272(&N)
|
||||
ColorChooser.rgbBlue.textAndMnemonic=\u84DD\u8272(&B)
|
||||
ColorChooser.rgbAlpha.textAndMnemonic=Alpha
|
||||
ColorChooser.rgbHexCode.textAndMnemonic=\u989C\u8272\u4EE3\u7801(&C)
|
||||
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||
ColorChooser.cmykCyan.textAndMnemonic=\u9752\u8272
|
||||
ColorChooser.cmykMagenta.textAndMnemonic=\u7D2B\u7EA2\u8272
|
||||
ColorChooser.cmykYellow.textAndMnemonic=\u9EC4\u8272
|
||||
ColorChooser.cmykBlack.textAndMnemonic=\u9ED1\u8272
|
||||
ColorChooser.cmykAlpha.textAndMnemonic=Alpha
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButton.textAndMnemonic=\u662F(&Y)
|
||||
OptionPane.noButton.textAndMnemonic=\u5426(&N)
|
||||
OptionPane.okButton.textAndMnemonic=\u786E\u5B9A(&O)
|
||||
OptionPane.cancelButton.textAndMnemonic=\u53D6\u6D88
|
||||
OptionPane.title.textAndMnemonic=\u9009\u62E9\u4E00\u4E2A\u9009\u9879
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialog.titleAndMnemonic=\u8F93\u5165
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialog.titleAndMnemonic=\u6D88\u606F
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgress.textAndMnemonic=\u6253\u5370
|
||||
PrintingDialog.titleAborting.textAndMnemonic=\u6253\u5370 (\u6B63\u5728\u4E2D\u6B62)
|
||||
|
||||
PrintingDialog.contentInitial.textAndMnemonic=\u6B63\u5728\u8FDB\u884C\u6253\u5370...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgress.textAndMnemonic=\u5DF2\u6253\u5370\u9875 {0}...
|
||||
|
||||
PrintingDialog.contentAborting.textAndMnemonic=\u6B63\u5728\u4E2D\u6B62\u6253\u5370...
|
||||
|
||||
PrintingDialog.abortButton.textAndMnemonic=\u4E2D\u6B62(&A)
|
||||
PrintingDialog.abortButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6253\u5370
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
|
||||
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
|
||||
InternalFrame.restoreButtonToolTip=\u8FD8\u539F
|
||||
InternalFrame.closeButtonToolTip=\u5173\u95ED
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButton.textAndMnemonic=\u8FD8\u539F
|
||||
InternalFrameTitlePane.moveButton.textAndMnemonic=\u79FB\u52A8
|
||||
InternalFrameTitlePane.sizeButton.textAndMnemonic=\u5927\u5C0F
|
||||
InternalFrameTitlePane.minimizeButton.textAndMnemonic=\u6700\u5C0F\u5316
|
||||
InternalFrameTitlePane.maximizeButton.textAndMnemonic=\u6700\u5927\u5316
|
||||
InternalFrameTitlePane.closeButton.textAndMnemonic=\u5173\u95ED
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButton.textAndMnemonic=\u63D0\u4EA4\u67E5\u8BE2
|
||||
FormView.resetButton.textAndMnemonic=\u91CD\u8BBE
|
||||
FormView.browseFileButton.textAndMnemonic=\u6D4F\u89C8...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChange.textAndMnemonic=\u6837\u5F0F\u66F4\u6539
|
||||
AbstractDocument.addition.textAndMnemonic=\u6DFB\u52A0
|
||||
AbstractDocument.deletion.textAndMnemonic=\u5220\u9664
|
||||
AbstractDocument.undo.textAndMnemonic=\u64A4\u6D88
|
||||
AbstractDocument.redo.textAndMnemonic=\u91CD\u505A
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.click.textAndMnemonic=\u5355\u51FB
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undo.textAndMnemonic=\u64A4\u6D88
|
||||
AbstractUndoableEdit.redo.textAndMnemonic=\u91CD\u505A
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progress.textAndMnemonic=\u8FDB\u5EA6...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButton.textAndMnemonic=\u5DE6\u952E
|
||||
SplitPane.rightButton.textAndMnemonic=\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
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameText=RGB
|
||||
# ColorChooser.rgbMnemonic=71
|
||||
# ColorChooser.rgbDisplayedMnemonicIndex=1
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# a decoration will be provided under the 'G'. This will typically
|
||||
# look like: RGB
|
||||
# -
|
||||
# 71 corresponds to the decimal value of the VK constant defined
|
||||
# in java/awt/KeyEvent.java. VK_G is defined as:
|
||||
#
|
||||
# public static final int VK_G = 0x47;
|
||||
#
|
||||
# 0x47 is a hex number and needs to be converted to decimal.
|
||||
# A simple way to calculate this for a-z is to add 64 to the index of
|
||||
# the letter in the alphabet. As 'a' is in the 1st letter the mnemonic
|
||||
# for 'a' is 65, 'b' is 66...
|
||||
#
|
||||
# The xxDisplayedMnemonicIndex is used to indicate the index of the
|
||||
# character that should be underlined in the String, with 0
|
||||
# corresponding to the first character in the String.
|
||||
#
|
||||
# One important thing to remember is that the mnemonic MUST exist in
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescriptionText=\u4E00\u822C\u6A94\u6848
|
||||
FileChooser.directoryDescriptionText=\u76EE\u9304
|
||||
FileChooser.newFolderErrorText=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E\u6642\u767C\u751F\u932F\u8AA4
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitleText=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E
|
||||
FileChooser.newFolderParentDoesntExistText=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E\u3002\n\n\u7CFB\u7D71\u627E\u4E0D\u5230\u6307\u5B9A\u7684\u8DEF\u5F91\u3002
|
||||
FileChooser.renameErrorTitleText=\u91CD\u65B0\u547D\u540D\u6A94\u6848\u6216\u8CC7\u6599\u593E\u6642\u767C\u751F\u932F\u8AA4\u3002
|
||||
FileChooser.renameErrorText=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0}
|
||||
FileChooser.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
|
||||
FileChooser.cancelButtonText=\u53D6\u6D88
|
||||
FileChooser.cancelButtonMnemonic=67
|
||||
FileChooser.saveButtonText=\u5132\u5B58
|
||||
FileChooser.saveButtonMnemonic=83
|
||||
FileChooser.openButtonText=\u958B\u555F
|
||||
FileChooser.openButtonMnemonic=79
|
||||
FileChooser.saveDialogTitleText=\u5132\u5B58
|
||||
FileChooser.openDialogTitleText=\u958B\u555F
|
||||
FileChooser.updateButtonText=\u66F4\u65B0(U)
|
||||
FileChooser.updateButtonMnemonic=85
|
||||
FileChooser.helpButtonText=\u8AAA\u660E(H)
|
||||
FileChooser.helpButtonMnemonic=72
|
||||
FileChooser.directoryOpenButtonText=\u958B\u555F(O)
|
||||
FileChooser.directoryOpenButtonMnemonic=79
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.win32.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E ({0})
|
||||
FileChooser.other.newFolder=\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.other.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6A94\u6848\u9078\u64C7\u5668\u5C0D\u8A71\u65B9\u584A
|
||||
FileChooser.saveButtonToolTipText=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848
|
||||
FileChooser.openButtonToolTipText=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848
|
||||
FileChooser.updateButtonToolTipText=\u66F4\u65B0\u76EE\u9304\u6E05\u55AE
|
||||
FileChooser.helpButtonToolTipText=\u300C\u6A94\u6848\u9078\u64C7\u5668\u300D\u8AAA\u660E
|
||||
FileChooser.directoryOpenButtonToolTipText=\u958B\u555F\u9078\u53D6\u7684\u76EE\u9304
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.previewText=\u9810\u89BD
|
||||
ColorChooser.okText=\u78BA\u5B9A
|
||||
ColorChooser.cancelText=\u53D6\u6D88
|
||||
ColorChooser.resetText=\u91CD\u8A2D(R)
|
||||
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
|
||||
ColorChooser.resetMnemonic=82
|
||||
ColorChooser.sampleText=\u7BC4\u4F8B\u6587\u5B57 \u7BC4\u4F8B\u6587\u5B57
|
||||
ColorChooser.swatchesNameText=\u8ABF\u8272\u677F(S)
|
||||
ColorChooser.swatchesMnemonic=83
|
||||
ColorChooser.swatchesRecentText=\u6700\u65B0\u9078\u64C7:
|
||||
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX
|
||||
# constant, and an index into the text to render the mnemonic as. The
|
||||
# mnemonic is xxxMnemonic and the index of the character to underline is
|
||||
# xxxDisplayedMnemonicIndex.
|
||||
ColorChooser.hsvNameText=HSV
|
||||
ColorChooser.hsvMnemonic=72
|
||||
ColorChooser.hsvHueText=\u8272\u8ABF
|
||||
ColorChooser.hsvSaturationText=\u5F69\u5EA6
|
||||
ColorChooser.hsvValueText=\u6578\u503C
|
||||
ColorChooser.hsvTransparencyText=\u900F\u660E\u5EA6
|
||||
ColorChooser.hslNameText=HSL
|
||||
ColorChooser.hslMnemonic=76
|
||||
ColorChooser.hslHueText=\u8272\u8ABF
|
||||
ColorChooser.hslSaturationText=\u5F69\u5EA6
|
||||
ColorChooser.hslLightnessText=\u4EAE\u5EA6
|
||||
ColorChooser.hslTransparencyText=\u900F\u660E\u5EA6
|
||||
ColorChooser.rgbNameText=RGB
|
||||
ColorChooser.rgbMnemonic=71
|
||||
ColorChooser.rgbRedText=\u7D05
|
||||
ColorChooser.rgbRedMnemonic=68
|
||||
ColorChooser.rgbGreenText=\u7DA0
|
||||
ColorChooser.rgbGreenMnemonic=78
|
||||
ColorChooser.rgbBlueText=\u85CD
|
||||
ColorChooser.rgbBlueMnemonic=66
|
||||
ColorChooser.rgbAlphaText=Alpha
|
||||
ColorChooser.rgbHexCodeText=\u984F\u8272\u4EE3\u78BC(C)
|
||||
ColorChooser.rgbHexCodeMnemonic=67
|
||||
ColorChooser.cmykNameText=CMYK
|
||||
ColorChooser.cmykMnemonic=77
|
||||
ColorChooser.cmykCyanText=\u85CD\u7DA0\u8272
|
||||
ColorChooser.cmykMagentaText=\u7D2B\u7D05\u8272
|
||||
ColorChooser.cmykYellowText=\u9EC3\u8272
|
||||
ColorChooser.cmykBlackText=\u9ED1\u8272
|
||||
ColorChooser.cmykAlphaText=Alpha
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# Mnemonic keys correspond to KeyEvent.VK_XXX constant
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButtonText=\u662F(Y)
|
||||
OptionPane.yesButtonMnemonic=89
|
||||
OptionPane.noButtonText=\u5426(N)
|
||||
OptionPane.noButtonMnemonic=78
|
||||
OptionPane.okButtonText=\u78BA\u5B9A
|
||||
OptionPane.okButtonMnemonic=O
|
||||
OptionPane.cancelButtonText=\u53D6\u6D88
|
||||
OptionPane.cancelButtonMnemonic=0
|
||||
OptionPane.titleText=\u9078\u53D6\u4E00\u500B\u9078\u9805
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialogTitle=\u8F38\u5165
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialogTitle=\u8A0A\u606F
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgressText=\u5217\u5370
|
||||
PrintingDialog.titleAbortingText=\u5217\u5370 (\u4E2D\u6B62)
|
||||
|
||||
PrintingDialog.contentInitialText=\u6B63\u5728\u5217\u5370...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgressText=\u5DF2\u5217\u5370\u7684\u9801\u9762 {0}...
|
||||
|
||||
PrintingDialog.contentAbortingText=\u6B63\u5728\u4E2D\u6B62\u5217\u5370...
|
||||
|
||||
PrintingDialog.abortButtonText=\u4E2D\u6B62(A)
|
||||
PrintingDialog.abortButtonMnemonic=65
|
||||
PrintingDialog.abortButtonDisplayedMnemonicIndex=0
|
||||
PrintingDialog.abortButtonToolTipText=\u4E2D\u6B62\u5217\u5370
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
|
||||
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
|
||||
InternalFrame.restoreButtonToolTip=\u5FA9\u539F
|
||||
InternalFrame.closeButtonToolTip=\u95DC\u9589
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used in Swing
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# ColorChooser
|
||||
# FileChooser
|
||||
# OptionPane
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# MNEMONIC NOTE:
|
||||
# Many of strings in this file are used by widgets that have a
|
||||
# mnemonic, for example:
|
||||
# ColorChooser.rgbNameTextAndMnemonic=R&GB
|
||||
# Indicates that the tab in the ColorChooser for RGB colors will have
|
||||
# the text 'RGB', further the mnemonic character will be 'g' and that
|
||||
# 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
|
||||
# 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
|
||||
# character for the mnemonic.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
FileChooser.fileDescription.textAndMnemonic=\u4E00\u822C\u6A94\u6848
|
||||
FileChooser.directoryDescription.textAndMnemonic=\u76EE\u9304
|
||||
FileChooser.newFolderError.textAndMnemonic=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E\u6642\u767C\u751F\u932F\u8AA4
|
||||
FileChooser.newFolderErrorSeparator= :
|
||||
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E
|
||||
FileChooser.newFolderParentDoesntExist.textAndMnemonic=\u7121\u6CD5\u5EFA\u7ACB\u8CC7\u6599\u593E\u3002\n\n\u7CFB\u7D71\u627E\u4E0D\u5230\u6307\u5B9A\u7684\u8DEF\u5F91\u3002
|
||||
FileChooser.renameErrorTitle.textAndMnemonic=\u91CD\u65B0\u547D\u540D\u6A94\u6848\u6216\u8CC7\u6599\u593E\u6642\u767C\u751F\u932F\u8AA4\u3002
|
||||
FileChooser.renameError.textAndMnemonic=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0}
|
||||
FileChooser.renameErrorFileExists.textAndMnemonic=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0}: \u5DF2\u7D93\u5B58\u5728\u60A8\u6240\u6307\u5B9A\u540D\u7A31\u7684\u6A94\u6848\u3002\u8ACB\u6307\u5B9A\u4E0D\u540C\u7684\u540D\u7A31\u3002
|
||||
FileChooser.acceptAllFileFilter.textAndMnemonic=\u6240\u6709\u6A94\u6848
|
||||
FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C)
|
||||
FileChooser.saveButton.textAndMnemonic=\u5132\u5B58(&S)
|
||||
FileChooser.openButton.textAndMnemonic=\u958B\u555F(&O)
|
||||
FileChooser.saveDialogTitle.textAndMnemonic=\u5132\u5B58
|
||||
FileChooser.openDialogTitle.textAndMnemonic=\u958B\u555F
|
||||
FileChooser.updateButton.textAndMnemonic=\u66F4\u65B0(&U)
|
||||
FileChooser.helpButton.textAndMnemonic=\u8AAA\u660E(&H)
|
||||
FileChooser.directoryOpenButton.textAndMnemonic=\u958B\u555F(&O)
|
||||
|
||||
# File Size Units
|
||||
FileChooser.fileSizeKiloBytes={0} KB
|
||||
FileChooser.fileSizeMegaBytes={0} MB
|
||||
FileChooser.fileSizeGigaBytes={0} GB
|
||||
|
||||
# These strings are platform dependent not look and feel dependent.
|
||||
FileChooser.win32.newFolder=\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.win32.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E ({0})
|
||||
FileChooser.other.newFolder=\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.other.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E.{0}
|
||||
|
||||
|
||||
## file chooser tooltips ###
|
||||
FileChooser.cancelButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u6A94\u6848\u9078\u64C7\u5668\u5C0D\u8A71\u65B9\u584A
|
||||
FileChooser.saveButtonToolTip.textAndMnemonic=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848
|
||||
FileChooser.openButtonToolTip.textAndMnemonic=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848
|
||||
FileChooser.updateButtonToolTip.textAndMnemonic=\u66F4\u65B0\u76EE\u9304\u6E05\u55AE
|
||||
FileChooser.helpButtonToolTip.textAndMnemonic=\u300C\u6A94\u6848\u9078\u64C7\u5668\u300D\u8AAA\u660E
|
||||
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\u958B\u555F\u9078\u53D6\u7684\u76EE\u9304
|
||||
|
||||
FileChooser.filesListAccessibleName=Files List
|
||||
FileChooser.filesDetailsAccessibleName=Files Details
|
||||
|
||||
############ COLOR CHOOSER STRINGS #############
|
||||
ColorChooser.preview.textAndMnemonic=\u9810\u89BD
|
||||
ColorChooser.ok.textAndMnemonic=\u78BA\u5B9A
|
||||
ColorChooser.cancel.textAndMnemonic=\u53D6\u6D88
|
||||
ColorChooser.reset.textAndMnemonic=\u91CD\u8A2D(&R)
|
||||
ColorChooser.sample.textAndMnemonic=\u7BC4\u4F8B\u6587\u5B57 \u7BC4\u4F8B\u6587\u5B57
|
||||
ColorChooser.swatches.textAndMnemonic=\u8ABF\u8272\u677F(&S)
|
||||
ColorChooser.swatchesRecent.textAndMnemonic=\u6700\u65B0\u9078\u64C7:
|
||||
ColorChooser.hsv.textAndMnemonic=&HSV
|
||||
ColorChooser.hsvHue.textAndMnemonic=\u8272\u8ABF
|
||||
ColorChooser.hsvSaturation.textAndMnemonic=\u5F69\u5EA6
|
||||
ColorChooser.hsvValue.textAndMnemonic=\u6578\u503C
|
||||
ColorChooser.hsvTransparency.textAndMnemonic=\u900F\u660E\u5EA6
|
||||
ColorChooser.hsl.textAndMnemonic=HS&L
|
||||
ColorChooser.hslHue.textAndMnemonic=\u8272\u8ABF
|
||||
ColorChooser.hslSaturation.textAndMnemonic=\u5F69\u5EA6
|
||||
ColorChooser.hslLightness.textAndMnemonic=\u4EAE\u5EA6
|
||||
ColorChooser.hslTransparency.textAndMnemonic=\u900F\u660E\u5EA6
|
||||
ColorChooser.rgb.textAndMnemonic=R&GB
|
||||
ColorChooser.rgbRed.textAndMnemonic=\u7D05(&D)
|
||||
ColorChooser.rgbGreen.textAndMnemonic=\u7DA0(&N)
|
||||
ColorChooser.rgbBlue.textAndMnemonic=\u85CD(&B)
|
||||
ColorChooser.rgbAlpha.textAndMnemonic=Alpha
|
||||
ColorChooser.rgbHexCode.textAndMnemonic=\u984F\u8272\u4EE3\u78BC(&C)
|
||||
ColorChooser.cmyk.textAndMnemonic=C&MYK
|
||||
ColorChooser.cmykCyan.textAndMnemonic=\u85CD\u7DA0\u8272
|
||||
ColorChooser.cmykMagenta.textAndMnemonic=\u7D2B\u7D05\u8272
|
||||
ColorChooser.cmykYellow.textAndMnemonic=\u9EC3\u8272
|
||||
ColorChooser.cmykBlack.textAndMnemonic=\u9ED1\u8272
|
||||
ColorChooser.cmykAlpha.textAndMnemonic=Alpha
|
||||
|
||||
############ OPTION PANE STRINGS #############
|
||||
# We only define mnemonics for YES/NO, but for completeness you can
|
||||
# define mnemonics for any of the buttons.
|
||||
OptionPane.yesButton.textAndMnemonic=\u662F(&Y)
|
||||
OptionPane.noButton.textAndMnemonic=\u5426(&N)
|
||||
OptionPane.okButton.textAndMnemonic=\u78BA\u5B9A(&O)
|
||||
OptionPane.cancelButton.textAndMnemonic=\u53D6\u6D88
|
||||
OptionPane.title.textAndMnemonic=\u9078\u53D6\u4E00\u500B\u9078\u9805
|
||||
# Title for the dialog for the showInputDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.inputDialog.titleAndMnemonic=\u8F38\u5165
|
||||
# Title for the dialog for the showMessageDialog methods. Only used if
|
||||
# the developer uses one of the variants that doesn't take a title.
|
||||
OptionPane.messageDialog.titleAndMnemonic=\u8A0A\u606F
|
||||
|
||||
############ Printing Dialog Strings ############
|
||||
PrintingDialog.titleProgress.textAndMnemonic=\u5217\u5370
|
||||
PrintingDialog.titleAborting.textAndMnemonic=\u5217\u5370 (\u4E2D\u6B62)
|
||||
|
||||
PrintingDialog.contentInitial.textAndMnemonic=\u6B63\u5728\u5217\u5370...
|
||||
|
||||
# The following string will be formatted by a MessageFormat
|
||||
# and {0} will be replaced by page number being printed
|
||||
PrintingDialog.contentProgress.textAndMnemonic=\u5DF2\u5217\u5370\u7684\u9801\u9762 {0}...
|
||||
|
||||
PrintingDialog.contentAborting.textAndMnemonic=\u6B63\u5728\u4E2D\u6B62\u5217\u5370...
|
||||
|
||||
PrintingDialog.abortButton.textAndMnemonic=\u4E2D\u6B62(&A)
|
||||
PrintingDialog.abortButtonToolTip.textAndMnemonic=\u4E2D\u6B62\u5217\u5370
|
||||
|
||||
############ Internal Frame Strings ############
|
||||
InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
|
||||
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
|
||||
InternalFrame.restoreButtonToolTip=\u5FA9\u539F
|
||||
InternalFrame.closeButtonToolTip=\u95DC\u9589
|
||||
|
||||
############ Internal Frame Title Pane Strings ############
|
||||
InternalFrameTitlePane.restoreButton.textAndMnemonic=\u5FA9\u539F
|
||||
InternalFrameTitlePane.moveButton.textAndMnemonic=\u79FB\u52D5
|
||||
InternalFrameTitlePane.sizeButton.textAndMnemonic=\u5927\u5C0F
|
||||
InternalFrameTitlePane.minimizeButton.textAndMnemonic=\u6700\u5C0F\u5316
|
||||
InternalFrameTitlePane.maximizeButton.textAndMnemonic=\u6700\u5927\u5316
|
||||
InternalFrameTitlePane.closeButton.textAndMnemonic=\u95DC\u9589
|
||||
|
||||
############ Text strings #############
|
||||
# Used for html forms
|
||||
FormView.submitButton.textAndMnemonic=\u9001\u51FA\u67E5\u8A62
|
||||
FormView.resetButton.textAndMnemonic=\u91CD\u8A2D
|
||||
FormView.browseFileButton.textAndMnemonic=\u700F\u89BD...
|
||||
|
||||
############ Abstract Document Strings ############
|
||||
AbstractDocument.styleChange.textAndMnemonic=\u6A23\u5F0F\u8B8A\u66F4
|
||||
AbstractDocument.addition.textAndMnemonic=\u9644\u52A0
|
||||
AbstractDocument.deletion.textAndMnemonic=\u522A\u9664
|
||||
AbstractDocument.undo.textAndMnemonic=\u9084\u539F
|
||||
AbstractDocument.redo.textAndMnemonic=\u91CD\u505A
|
||||
|
||||
############ Abstract Button Strings ############
|
||||
AbstractButton.click.textAndMnemonic=\u6309\u4E00\u4E0B
|
||||
|
||||
############ Abstract Undoable Edit Strings ############
|
||||
AbstractUndoableEdit.undo.textAndMnemonic=\u9084\u539F
|
||||
AbstractUndoableEdit.redo.textAndMnemonic=\u91CD\u505A
|
||||
|
||||
############ Combo Box Strings ############
|
||||
ComboBox.togglePopup.textAndMnemonic=\u5207\u63DB\u5373\u73FE\u5F0F\u8996\u7A97
|
||||
|
||||
############ Progress Monitor Strings ############
|
||||
ProgressMonitor.progress.textAndMnemonic=\u9032\u5EA6...
|
||||
|
||||
############ Split Pane Strings ############
|
||||
SplitPane.leftButton.textAndMnemonic=\u5DE6\u6309\u9215
|
||||
SplitPane.rightButton.textAndMnemonic=\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
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=Look In:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=Save In:
|
||||
FileChooser.fileNameLabelText=File Name:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=Folder name:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=Files of Type:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=Up One Level
|
||||
FileChooser.upFolderAccessibleName=Up
|
||||
FileChooser.homeFolderToolTipText=Home
|
||||
FileChooser.homeFolderAccessibleName=Home
|
||||
FileChooser.newFolderToolTipText=Create New Folder
|
||||
FileChooser.newFolderAccessibleName=New Folder
|
||||
FileChooser.newFolderActionLabelText=New Folder
|
||||
FileChooser.listViewButtonToolTipText=List
|
||||
FileChooser.listViewButtonAccessibleName=List
|
||||
FileChooser.listViewActionLabelText=List
|
||||
FileChooser.detailsViewButtonToolTipText=Details
|
||||
FileChooser.detailsViewButtonAccessibleName=Details
|
||||
FileChooser.detailsViewActionLabelText=Details
|
||||
FileChooser.refreshActionLabelText=Refresh
|
||||
FileChooser.viewMenuLabelText=View
|
||||
FileChooser.fileNameHeaderText=Name
|
||||
FileChooser.fileSizeHeaderText=Size
|
||||
FileChooser.fileTypeHeaderText=Type
|
||||
FileChooser.fileDateHeaderText=Modified
|
||||
FileChooser.fileAttrHeaderText=Attributes
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
# All mnemonics are KeyEvent.VK_XXX as integers
|
||||
MetalTitlePane.restoreTitle=Restore
|
||||
MetalTitlePane.restoreMnemonic=82
|
||||
MetalTitlePane.iconifyTitle=Minimize
|
||||
MetalTitlePane.iconifyMnemonic=69
|
||||
MetalTitlePane.maximizeTitle=Maximize
|
||||
MetalTitlePane.maximizeMnemonic=88
|
||||
MetalTitlePane.closeTitle=Close
|
||||
MetalTitlePane.closeMnemonic=67
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=Look &In:
|
||||
FileChooser.saveInLabel.textAndMnemonic=Save In:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=File &Name:
|
||||
FileChooser.folderNameLabel.textAndMnemonic=Folder &name:
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Files of &Type:
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=Up One Level
|
||||
FileChooser.upFolderAccessibleName=Up
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=Home
|
||||
FileChooser.homeFolderAccessibleName=Home
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=Create New Folder
|
||||
FileChooser.newFolderAccessibleName=New Folder
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=New Folder
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=List
|
||||
FileChooser.listViewButtonAccessibleName=List
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=List
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Details
|
||||
FileChooser.detailsViewButtonAccessibleName=Details
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=Details
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=Refresh
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=View
|
||||
FileChooser.fileNameHeader.textAndMnemonic=Name
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=Size
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=Type
|
||||
FileChooser.fileDateHeader.textAndMnemonic=Modified
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=Attributes
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
MetalTitlePane.restore.titleAndMnemonic=&Restore
|
||||
MetalTitlePane.iconify.titleAndMnemonic=Minimiz&e
|
||||
MetalTitlePane.maximize.titleAndMnemonic=Ma&ximize
|
||||
MetalTitlePane.close.titleAndMnemonic=&Close
|
||||
|
@ -1,61 +1,52 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=Suchen in:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=Speichern in:
|
||||
FileChooser.fileNameLabelText=Dateiname:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=Ordnername:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=Dateityp:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=Eine Ebene h\u00F6her
|
||||
FileChooser.upFolderAccessibleName=Nach oben
|
||||
FileChooser.homeFolderToolTipText=Home
|
||||
FileChooser.homeFolderAccessibleName=Home
|
||||
FileChooser.newFolderToolTipText=Neuen Ordner erstellen
|
||||
FileChooser.newFolderAccessibleName=Neuer Ordner
|
||||
FileChooser.newFolderActionLabelText=Neuer Ordner
|
||||
FileChooser.listViewButtonToolTipText=Liste
|
||||
FileChooser.listViewButtonAccessibleName=Liste
|
||||
FileChooser.listViewActionLabelText=Liste
|
||||
FileChooser.detailsViewButtonToolTipText=Details
|
||||
FileChooser.detailsViewButtonAccessibleName=Details
|
||||
FileChooser.detailsViewActionLabelText=Details
|
||||
FileChooser.refreshActionLabelText=Aktualisieren
|
||||
FileChooser.viewMenuLabelText=Ansicht
|
||||
FileChooser.fileNameHeaderText=Name
|
||||
FileChooser.fileSizeHeaderText=Gr\u00F6\u00DFe
|
||||
FileChooser.fileTypeHeaderText=Typ
|
||||
FileChooser.fileDateHeaderText=Ge\u00E4ndert
|
||||
FileChooser.fileAttrHeaderText=Attribute
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
# 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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=Suchen &in:
|
||||
FileChooser.saveInLabel.textAndMnemonic=Speichern in:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=Datei&name:
|
||||
FileChooser.folderNameLabel.textAndMnemonic=Ord&nername:
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Da&teityp:
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=Eine Ebene h\u00F6her
|
||||
FileChooser.upFolderAccessibleName=Nach oben
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=Home
|
||||
FileChooser.homeFolderAccessibleName=Home
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=Neuen Ordner erstellen
|
||||
FileChooser.newFolderAccessibleName=Neuer Ordner
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=Neuer Ordner
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=Liste
|
||||
FileChooser.listViewButtonAccessibleName=Liste
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=Liste
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Details
|
||||
FileChooser.detailsViewButtonAccessibleName=Details
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=Details
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=Aktualisieren
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=Ansicht
|
||||
FileChooser.fileNameHeader.textAndMnemonic=Name
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=Gr\u00F6\u00DFe
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=Typ
|
||||
FileChooser.fileDateHeader.textAndMnemonic=Ge\u00E4ndert
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=Attribute
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
MetalTitlePane.restore.titleAndMnemonic=&Wiederherstellen
|
||||
MetalTitlePane.iconify.titleAndMnemonic=Minimie&ren
|
||||
MetalTitlePane.maximize.titleAndMnemonic=Ma&ximieren
|
||||
MetalTitlePane.close.titleAndMnemonic=Schlie\u00DFen(&S)
|
||||
|
||||
|
@ -1,61 +1,52 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=Buscar en:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=Guardar en:
|
||||
FileChooser.fileNameLabelText=Nombre de Archivo:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=Nombre de la Carpeta:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=Archivos de Tipo:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=Subir un Nivel
|
||||
FileChooser.upFolderAccessibleName=Arriba
|
||||
FileChooser.homeFolderToolTipText=Inicio
|
||||
FileChooser.homeFolderAccessibleName=Inicio
|
||||
FileChooser.newFolderToolTipText=Crear Nueva Carpeta
|
||||
FileChooser.newFolderAccessibleName=Nueva Carpeta
|
||||
FileChooser.newFolderActionLabelText=Nueva Carpeta
|
||||
FileChooser.listViewButtonToolTipText=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabelText=Lista
|
||||
FileChooser.detailsViewButtonToolTipText=Detalles
|
||||
FileChooser.detailsViewButtonAccessibleName=Detalles
|
||||
FileChooser.detailsViewActionLabelText=Detalles
|
||||
FileChooser.refreshActionLabelText=Refrescar
|
||||
FileChooser.viewMenuLabelText=Ver
|
||||
FileChooser.fileNameHeaderText=Nombre
|
||||
FileChooser.fileSizeHeaderText=Tama\u00F1o
|
||||
FileChooser.fileTypeHeaderText=Tipo
|
||||
FileChooser.fileDateHeaderText=Modificado
|
||||
FileChooser.fileAttrHeaderText=Atributos
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
# 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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=Buscar en(&I):
|
||||
FileChooser.saveInLabel.textAndMnemonic=Guardar en:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=&Nombre de Archivo:
|
||||
FileChooser.folderNameLabel.textAndMnemonic=&Nombre de la Carpeta:
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Archivos de &Tipo:
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=Subir un Nivel
|
||||
FileChooser.upFolderAccessibleName=Arriba
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=Inicio
|
||||
FileChooser.homeFolderAccessibleName=Inicio
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=Crear Nueva Carpeta
|
||||
FileChooser.newFolderAccessibleName=Nueva Carpeta
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=Nueva Carpeta
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Detalles
|
||||
FileChooser.detailsViewButtonAccessibleName=Detalles
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=Detalles
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=Refrescar
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=Ver
|
||||
FileChooser.fileNameHeader.textAndMnemonic=Nombre
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=Tama\u00F1o
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=Tipo
|
||||
FileChooser.fileDateHeader.textAndMnemonic=Modificado
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=Atributos
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
MetalTitlePane.restore.titleAndMnemonic=&Restaurar
|
||||
MetalTitlePane.iconify.titleAndMnemonic=Minimi&zar
|
||||
MetalTitlePane.maximize.titleAndMnemonic=Ma&ximizar
|
||||
MetalTitlePane.close.titleAndMnemonic=&Cerrar
|
||||
|
||||
|
@ -1,61 +1,52 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=Rechercher dans :
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=Enregistrer dans :
|
||||
FileChooser.fileNameLabelText=Nom du fichier :
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=Nom du dossier :
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=Fichiers de type :
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=Remonte d'un niveau.
|
||||
FileChooser.upFolderAccessibleName=Monter
|
||||
FileChooser.homeFolderToolTipText=R\u00E9pertoire d'origine
|
||||
FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
|
||||
FileChooser.newFolderToolTipText=Cr\u00E9e un dossier.
|
||||
FileChooser.newFolderAccessibleName=Nouveau dossier
|
||||
FileChooser.newFolderActionLabelText=Nouveau dossier
|
||||
FileChooser.listViewButtonToolTipText=Liste
|
||||
FileChooser.listViewButtonAccessibleName=Liste
|
||||
FileChooser.listViewActionLabelText=Liste
|
||||
FileChooser.detailsViewButtonToolTipText=D\u00E9tails
|
||||
FileChooser.detailsViewButtonAccessibleName=D\u00E9tails
|
||||
FileChooser.detailsViewActionLabelText=D\u00E9tails
|
||||
FileChooser.refreshActionLabelText=Actualiser
|
||||
FileChooser.viewMenuLabelText=Affichage
|
||||
FileChooser.fileNameHeaderText=Nom
|
||||
FileChooser.fileSizeHeaderText=Taille
|
||||
FileChooser.fileTypeHeaderText=Type
|
||||
FileChooser.fileDateHeaderText=Modifi\u00E9
|
||||
FileChooser.fileAttrHeaderText=Attributs
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
# 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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=Rechercher dans (&I):
|
||||
FileChooser.saveInLabel.textAndMnemonic=Enregistrer dans :
|
||||
FileChooser.fileNameLabel.textAndMnemonic=&Nom du fichier :
|
||||
FileChooser.folderNameLabel.textAndMnemonic=&Nom du dossier :
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Fichiers de &type :
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=Remonte d'un niveau.
|
||||
FileChooser.upFolderAccessibleName=Monter
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=R\u00E9pertoire d'origine
|
||||
FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=Cr\u00E9e un dossier.
|
||||
FileChooser.newFolderAccessibleName=Nouveau dossier
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=Nouveau dossier
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=Liste
|
||||
FileChooser.listViewButtonAccessibleName=Liste
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=Liste
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=D\u00E9tails
|
||||
FileChooser.detailsViewButtonAccessibleName=D\u00E9tails
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=D\u00E9tails
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=Actualiser
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=Affichage
|
||||
FileChooser.fileNameHeader.textAndMnemonic=Nom
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=Taille
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=Type
|
||||
FileChooser.fileDateHeader.textAndMnemonic=Modifi\u00E9
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=Attributs
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
MetalTitlePane.restore.titleAndMnemonic=&Restaurer
|
||||
MetalTitlePane.iconify.titleAndMnemonic=R\u00E9duire(&D)
|
||||
MetalTitlePane.maximize.titleAndMnemonic=&Agrandir
|
||||
MetalTitlePane.close.titleAndMnemonic=&Fermer
|
||||
|
||||
|
@ -1,61 +1,52 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=Cerca in:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=Salva in:
|
||||
FileChooser.fileNameLabelText=Nome file:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=Nome della cartella:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=Tipo file:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=Cartella superiore
|
||||
FileChooser.upFolderAccessibleName=Superiore
|
||||
FileChooser.homeFolderToolTipText=Home
|
||||
FileChooser.homeFolderAccessibleName=Home
|
||||
FileChooser.newFolderToolTipText=Crea nuova cartella
|
||||
FileChooser.newFolderAccessibleName=Nuova cartella
|
||||
FileChooser.newFolderActionLabelText=Nuova cartella
|
||||
FileChooser.listViewButtonToolTipText=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabelText=Lista
|
||||
FileChooser.detailsViewButtonToolTipText=Dettagli
|
||||
FileChooser.detailsViewButtonAccessibleName=Dettagli
|
||||
FileChooser.detailsViewActionLabelText=Dettagli
|
||||
FileChooser.refreshActionLabelText=Aggiorna
|
||||
FileChooser.viewMenuLabelText=Visualizza
|
||||
FileChooser.fileNameHeaderText=Nome
|
||||
FileChooser.fileSizeHeaderText=Dimensioni
|
||||
FileChooser.fileTypeHeaderText=Tipo
|
||||
FileChooser.fileDateHeaderText=Modificato
|
||||
FileChooser.fileAttrHeaderText=Attributi
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
# 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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=Cerca &in:
|
||||
FileChooser.saveInLabel.textAndMnemonic=Salva in:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=&Nome file:
|
||||
FileChooser.folderNameLabel.textAndMnemonic=&Nome della cartella:
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=&Tipo file:
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=Cartella superiore
|
||||
FileChooser.upFolderAccessibleName=Superiore
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=Home
|
||||
FileChooser.homeFolderAccessibleName=Home
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=Crea nuova cartella
|
||||
FileChooser.newFolderAccessibleName=Nuova cartella
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=Nuova cartella
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Dettagli
|
||||
FileChooser.detailsViewButtonAccessibleName=Dettagli
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=Dettagli
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=Aggiorna
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=Visualizza
|
||||
FileChooser.fileNameHeader.textAndMnemonic=Nome
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=Dimensioni
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=Tipo
|
||||
FileChooser.fileDateHeader.textAndMnemonic=Modificato
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=Attributi
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
MetalTitlePane.restore.titleAndMnemonic=&Ripristina
|
||||
MetalTitlePane.iconify.titleAndMnemonic=Rid&uci a icona
|
||||
MetalTitlePane.maximize.titleAndMnemonic=In&grandisci
|
||||
MetalTitlePane.close.titleAndMnemonic=&Chiudi
|
||||
|
||||
|
@ -1,61 +1,52 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=\u53C2\u7167:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=\u4FDD\u5B58:
|
||||
FileChooser.fileNameLabelText=\u30D5\u30A1\u30A4\u30EB\u540D:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=\u30D5\u30A9\u30EB\u30C0\u540D:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=\u30D5\u30A1\u30A4\u30EB\u306E\u30BF\u30A4\u30D7:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=1\u30EC\u30D9\u30EB\u4E0A\u3078
|
||||
FileChooser.upFolderAccessibleName=\u4E0A\u3078
|
||||
FileChooser.homeFolderToolTipText=\u30DB\u30FC\u30E0
|
||||
FileChooser.homeFolderAccessibleName=\u30DB\u30FC\u30E0
|
||||
FileChooser.newFolderToolTipText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210
|
||||
FileChooser.newFolderAccessibleName=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||
FileChooser.newFolderActionLabelText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||
FileChooser.listViewButtonToolTipText=\u30EA\u30B9\u30C8
|
||||
FileChooser.listViewButtonAccessibleName=\u30EA\u30B9\u30C8
|
||||
FileChooser.listViewActionLabelText=\u30EA\u30B9\u30C8
|
||||
FileChooser.detailsViewButtonToolTipText=\u8A73\u7D30
|
||||
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30
|
||||
FileChooser.detailsViewActionLabelText=\u8A73\u7D30
|
||||
FileChooser.refreshActionLabelText=\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5
|
||||
FileChooser.viewMenuLabelText=\u8868\u793A
|
||||
FileChooser.fileNameHeaderText=\u540D\u524D
|
||||
FileChooser.fileSizeHeaderText=\u30B5\u30A4\u30BA
|
||||
FileChooser.fileTypeHeaderText=\u30BF\u30A4\u30D7
|
||||
FileChooser.fileDateHeaderText=\u4FEE\u6B63\u65E5
|
||||
FileChooser.fileAttrHeaderText=\u5C5E\u6027
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
# 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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=\u53C2\u7167(&I):
|
||||
FileChooser.saveInLabel.textAndMnemonic=\u4FDD\u5B58:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u540D(&N):
|
||||
FileChooser.folderNameLabel.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0\u540D(&N):
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u306E\u30BF\u30A4\u30D7(&T):
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=1\u30EC\u30D9\u30EB\u4E0A\u3078
|
||||
FileChooser.upFolderAccessibleName=\u4E0A\u3078
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=\u30DB\u30FC\u30E0
|
||||
FileChooser.homeFolderAccessibleName=\u30DB\u30FC\u30E0
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210
|
||||
FileChooser.newFolderAccessibleName=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=\u30EA\u30B9\u30C8
|
||||
FileChooser.listViewButtonAccessibleName=\u30EA\u30B9\u30C8
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=\u30EA\u30B9\u30C8
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\u8A73\u7D30
|
||||
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=\u8A73\u7D30
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=\u8868\u793A
|
||||
FileChooser.fileNameHeader.textAndMnemonic=\u540D\u524D
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=\u30B5\u30A4\u30BA
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=\u30BF\u30A4\u30D7
|
||||
FileChooser.fileDateHeader.textAndMnemonic=\u4FEE\u6B63\u65E5
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=\u5C5E\u6027
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
MetalTitlePane.restore.titleAndMnemonic=\u5FA9\u5143(&R)
|
||||
MetalTitlePane.iconify.titleAndMnemonic=\u6700\u5C0F\u5316(&E)
|
||||
MetalTitlePane.maximize.titleAndMnemonic=\u6700\u5927\u5316(&X)
|
||||
MetalTitlePane.close.titleAndMnemonic=\u9589\u3058\u308B(&C)
|
||||
|
||||
|
@ -1,61 +1,52 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=\uAC80\uC0C9 \uC704\uCE58:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=\uC800\uC7A5 \uC704\uCE58:
|
||||
FileChooser.fileNameLabelText=\uD30C\uC77C \uC774\uB984:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=\uD3F4\uB354 \uC774\uB984:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=\uD30C\uC77C \uC720\uD615:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=\uD55C \uB808\uBCA8 \uC704\uB85C
|
||||
FileChooser.upFolderAccessibleName=\uC704\uB85C
|
||||
FileChooser.homeFolderToolTipText=\uD648
|
||||
FileChooser.homeFolderAccessibleName=\uD648
|
||||
FileChooser.newFolderToolTipText=\uC0C8 \uD3F4\uB354 \uC0DD\uC131
|
||||
FileChooser.newFolderAccessibleName=\uC0C8 \uD3F4\uB354
|
||||
FileChooser.newFolderActionLabelText=\uC0C8 \uD3F4\uB354
|
||||
FileChooser.listViewButtonToolTipText=\uBAA9\uB85D
|
||||
FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
|
||||
FileChooser.listViewActionLabelText=\uBAA9\uB85D
|
||||
FileChooser.detailsViewButtonToolTipText=\uC138\uBD80 \uC815\uBCF4
|
||||
FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80 \uC815\uBCF4
|
||||
FileChooser.detailsViewActionLabelText=\uC138\uBD80 \uC815\uBCF4
|
||||
FileChooser.refreshActionLabelText=\uC0C8\uB85C \uACE0\uCE68
|
||||
FileChooser.viewMenuLabelText=\uBCF4\uAE30
|
||||
FileChooser.fileNameHeaderText=\uC774\uB984
|
||||
FileChooser.fileSizeHeaderText=\uD06C\uAE30
|
||||
FileChooser.fileTypeHeaderText=\uC720\uD615
|
||||
FileChooser.fileDateHeaderText=\uC218\uC815 \uB0A0\uC9DC
|
||||
FileChooser.fileAttrHeaderText=\uC18D\uC131
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
# 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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=\uAC80\uC0C9 \uC704\uCE58(&I):
|
||||
FileChooser.saveInLabel.textAndMnemonic=\uC800\uC7A5 \uC704\uCE58:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=\uD30C\uC77C \uC774\uB984(&N):
|
||||
FileChooser.folderNameLabel.textAndMnemonic=\uD3F4\uB354 \uC774\uB984(&N):
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=\uD30C\uC77C \uC720\uD615(&T):
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=\uD55C \uB808\uBCA8 \uC704\uB85C
|
||||
FileChooser.upFolderAccessibleName=\uC704\uB85C
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=\uD648
|
||||
FileChooser.homeFolderAccessibleName=\uD648
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=\uC0C8 \uD3F4\uB354 \uC0DD\uC131
|
||||
FileChooser.newFolderAccessibleName=\uC0C8 \uD3F4\uB354
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=\uC0C8 \uD3F4\uB354
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=\uBAA9\uB85D
|
||||
FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=\uBAA9\uB85D
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\uC138\uBD80 \uC815\uBCF4
|
||||
FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80 \uC815\uBCF4
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=\uC138\uBD80 \uC815\uBCF4
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=\uC0C8\uB85C \uACE0\uCE68
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=\uBCF4\uAE30
|
||||
FileChooser.fileNameHeader.textAndMnemonic=\uC774\uB984
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=\uD06C\uAE30
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=\uC720\uD615
|
||||
FileChooser.fileDateHeader.textAndMnemonic=\uC218\uC815 \uB0A0\uC9DC
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=\uC18D\uC131
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
MetalTitlePane.restore.titleAndMnemonic=\uBCF5\uC6D0(&R)
|
||||
MetalTitlePane.iconify.titleAndMnemonic=\uCD5C\uC18C\uD654(&E)
|
||||
MetalTitlePane.maximize.titleAndMnemonic=\uCD5C\uB300\uD654(&X)
|
||||
MetalTitlePane.close.titleAndMnemonic=\uB2EB\uAE30(&C)
|
||||
|
||||
|
@ -1,61 +1,52 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=Consultar Em:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=Salvar Em:
|
||||
FileChooser.fileNameLabelText=Nome do Arquivo:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=Nome da pasta:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=Arquivos do Tipo:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=Um N\u00EDvel Acima
|
||||
FileChooser.upFolderAccessibleName=Acima
|
||||
FileChooser.homeFolderToolTipText=In\u00EDcio
|
||||
FileChooser.homeFolderAccessibleName=In\u00EDcio
|
||||
FileChooser.newFolderToolTipText=Criar Nova Pasta
|
||||
FileChooser.newFolderAccessibleName=Nova Pasta
|
||||
FileChooser.newFolderActionLabelText=Nova Pasta
|
||||
FileChooser.listViewButtonToolTipText=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabelText=Lista
|
||||
FileChooser.detailsViewButtonToolTipText=Detalhes
|
||||
FileChooser.detailsViewButtonAccessibleName=Detalhes
|
||||
FileChooser.detailsViewActionLabelText=Detalhes
|
||||
FileChooser.refreshActionLabelText=Atualizar
|
||||
FileChooser.viewMenuLabelText=Exibir
|
||||
FileChooser.fileNameHeaderText=Nome
|
||||
FileChooser.fileSizeHeaderText=Tamanho
|
||||
FileChooser.fileTypeHeaderText=Tipo
|
||||
FileChooser.fileDateHeaderText=Modificado
|
||||
FileChooser.fileAttrHeaderText=Atributos
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
# 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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=Consultar Em(&I):
|
||||
FileChooser.saveInLabel.textAndMnemonic=Salvar Em:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=&Nome do Arquivo:
|
||||
FileChooser.folderNameLabel.textAndMnemonic=&Nome da pasta:
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Arquivos do &Tipo:
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=Um N\u00EDvel Acima
|
||||
FileChooser.upFolderAccessibleName=Acima
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=In\u00EDcio
|
||||
FileChooser.homeFolderAccessibleName=In\u00EDcio
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=Criar Nova Pasta
|
||||
FileChooser.newFolderAccessibleName=Nova Pasta
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=Nova Pasta
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Detalhes
|
||||
FileChooser.detailsViewButtonAccessibleName=Detalhes
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=Detalhes
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=Atualizar
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=Exibir
|
||||
FileChooser.fileNameHeader.textAndMnemonic=Nome
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=Tamanho
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=Tipo
|
||||
FileChooser.fileDateHeader.textAndMnemonic=Modificado
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=Atributos
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
MetalTitlePane.restore.titleAndMnemonic=&Restaurar
|
||||
MetalTitlePane.iconify.titleAndMnemonic=&Minimizar
|
||||
MetalTitlePane.maximize.titleAndMnemonic=Ma&ximizar
|
||||
MetalTitlePane.close.titleAndMnemonic=&Fechar
|
||||
|
||||
|
@ -1,61 +1,52 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=Leta i:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=Spara i:
|
||||
FileChooser.fileNameLabelText=Filnamn:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=Mapp:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=Filformat:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=Upp en niv\u00E5
|
||||
FileChooser.upFolderAccessibleName=Upp
|
||||
FileChooser.homeFolderToolTipText=Hem
|
||||
FileChooser.homeFolderAccessibleName=Hem
|
||||
FileChooser.newFolderToolTipText=Skapa ny mapp
|
||||
FileChooser.newFolderAccessibleName=Ny mapp
|
||||
FileChooser.newFolderActionLabelText=Ny mapp
|
||||
FileChooser.listViewButtonToolTipText=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabelText=Lista
|
||||
FileChooser.detailsViewButtonToolTipText=Detaljer
|
||||
FileChooser.detailsViewButtonAccessibleName=Detaljer
|
||||
FileChooser.detailsViewActionLabelText=Detaljer
|
||||
FileChooser.refreshActionLabelText=F\u00F6rnya
|
||||
FileChooser.viewMenuLabelText=Vy
|
||||
FileChooser.fileNameHeaderText=Namn
|
||||
FileChooser.fileSizeHeaderText=Storlek
|
||||
FileChooser.fileTypeHeaderText=Typ
|
||||
FileChooser.fileDateHeaderText=\u00C4ndrad
|
||||
FileChooser.fileAttrHeaderText=Attribut
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
# 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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=Leta &i:
|
||||
FileChooser.saveInLabel.textAndMnemonic=Spara i:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=Fil&namn:
|
||||
FileChooser.folderNameLabel.textAndMnemonic=Mapp(&N):
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Filforma&t:
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=Upp en niv\u00E5
|
||||
FileChooser.upFolderAccessibleName=Upp
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=Hem
|
||||
FileChooser.homeFolderAccessibleName=Hem
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=Skapa ny mapp
|
||||
FileChooser.newFolderAccessibleName=Ny mapp
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=Ny mapp
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Detaljer
|
||||
FileChooser.detailsViewButtonAccessibleName=Detaljer
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=Detaljer
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=F\u00F6rnya
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=Vy
|
||||
FileChooser.fileNameHeader.textAndMnemonic=Namn
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=Storlek
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=Typ
|
||||
FileChooser.fileDateHeader.textAndMnemonic=\u00C4ndrad
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=Attribut
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
MetalTitlePane.restore.titleAndMnemonic=\u00C5terst\u00E4ll(&R)
|
||||
MetalTitlePane.iconify.titleAndMnemonic=Minim&era
|
||||
MetalTitlePane.maximize.titleAndMnemonic=Ma&ximera
|
||||
MetalTitlePane.close.titleAndMnemonic=St\u00E4ng(&S)
|
||||
|
||||
|
@ -1,61 +1,52 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=\u67E5\u770B:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=\u4FDD\u5B58:
|
||||
FileChooser.fileNameLabelText=\u6587\u4EF6\u540D:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=\u6587\u4EF6\u5939\u540D:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=\u6587\u4EF6\u7C7B\u578B:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=\u5411\u4E0A\u4E00\u7EA7
|
||||
FileChooser.upFolderAccessibleName=\u5411\u4E0A
|
||||
FileChooser.homeFolderToolTipText=\u4E3B\u76EE\u5F55
|
||||
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u5F55
|
||||
FileChooser.newFolderToolTipText=\u521B\u5EFA\u65B0\u6587\u4EF6\u5939
|
||||
FileChooser.newFolderAccessibleName=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||
FileChooser.newFolderActionLabelText=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||
FileChooser.listViewButtonToolTipText=\u5217\u8868
|
||||
FileChooser.listViewButtonAccessibleName=\u5217\u8868
|
||||
FileChooser.listViewActionLabelText=\u5217\u8868
|
||||
FileChooser.detailsViewButtonToolTipText=\u8BE6\u7EC6\u8D44\u6599
|
||||
FileChooser.detailsViewButtonAccessibleName=\u8BE6\u7EC6\u8D44\u6599
|
||||
FileChooser.detailsViewActionLabelText=\u8BE6\u7EC6\u8D44\u6599
|
||||
FileChooser.refreshActionLabelText=\u5237\u65B0
|
||||
FileChooser.viewMenuLabelText=\u89C6\u56FE
|
||||
FileChooser.fileNameHeaderText=\u540D\u79F0
|
||||
FileChooser.fileSizeHeaderText=\u5927\u5C0F
|
||||
FileChooser.fileTypeHeaderText=\u7C7B\u578B
|
||||
FileChooser.fileDateHeaderText=\u4FEE\u6539\u65E5\u671F
|
||||
FileChooser.fileAttrHeaderText=\u5C5E\u6027
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
# 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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=\u67E5\u770B(&I):
|
||||
FileChooser.saveInLabel.textAndMnemonic=\u4FDD\u5B58:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=\u6587\u4EF6\u540D(&N):
|
||||
FileChooser.folderNameLabel.textAndMnemonic=\u6587\u4EF6\u5939\u540D(&N):
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=\u6587\u4EF6\u7C7B\u578B(&T):
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=\u5411\u4E0A\u4E00\u7EA7
|
||||
FileChooser.upFolderAccessibleName=\u5411\u4E0A
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=\u4E3B\u76EE\u5F55
|
||||
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u5F55
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=\u521B\u5EFA\u65B0\u6587\u4EF6\u5939
|
||||
FileChooser.newFolderAccessibleName=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=\u5217\u8868
|
||||
FileChooser.listViewButtonAccessibleName=\u5217\u8868
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=\u5217\u8868
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\u8BE6\u7EC6\u8D44\u6599
|
||||
FileChooser.detailsViewButtonAccessibleName=\u8BE6\u7EC6\u8D44\u6599
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=\u8BE6\u7EC6\u8D44\u6599
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=\u5237\u65B0
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=\u89C6\u56FE
|
||||
FileChooser.fileNameHeader.textAndMnemonic=\u540D\u79F0
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=\u5927\u5C0F
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=\u7C7B\u578B
|
||||
FileChooser.fileDateHeader.textAndMnemonic=\u4FEE\u6539\u65E5\u671F
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=\u5C5E\u6027
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
MetalTitlePane.restore.titleAndMnemonic=\u8FD8\u539F(&R)
|
||||
MetalTitlePane.iconify.titleAndMnemonic=\u6700\u5C0F\u5316(&E)
|
||||
MetalTitlePane.maximize.titleAndMnemonic=\u6700\u5927\u5316(&X)
|
||||
MetalTitlePane.close.titleAndMnemonic=\u5173\u95ED(&C)
|
||||
|
||||
|
@ -1,61 +1,52 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=\u67E5\u8A62:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=\u5132\u5B58\u65BC:
|
||||
FileChooser.fileNameLabelText=\u6A94\u6848\u540D\u7A31:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=\u8CC7\u6599\u593E\u540D\u7A31:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=\u6A94\u6848\u985E\u578B:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=\u5F80\u4E0A\u4E00\u5C64
|
||||
FileChooser.upFolderAccessibleName=\u5F80\u4E0A
|
||||
FileChooser.homeFolderToolTipText=\u4E3B\u76EE\u9304
|
||||
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u9304
|
||||
FileChooser.newFolderToolTipText=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.newFolderAccessibleName=\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.newFolderActionLabelText=\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.listViewButtonToolTipText=\u6E05\u55AE
|
||||
FileChooser.listViewButtonAccessibleName=\u6E05\u55AE
|
||||
FileChooser.listViewActionLabelText=\u6E05\u55AE
|
||||
FileChooser.detailsViewButtonToolTipText=\u8A73\u7D30\u8CC7\u8A0A
|
||||
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30\u8CC7\u8A0A
|
||||
FileChooser.detailsViewActionLabelText=\u8A73\u7D30\u8CC7\u8A0A
|
||||
FileChooser.refreshActionLabelText=\u91CD\u65B0\u6574\u7406
|
||||
FileChooser.viewMenuLabelText=\u6AA2\u8996
|
||||
FileChooser.fileNameHeaderText=\u540D\u7A31
|
||||
FileChooser.fileSizeHeaderText=\u5927\u5C0F
|
||||
FileChooser.fileTypeHeaderText=\u985E\u578B
|
||||
FileChooser.fileDateHeaderText=\u4FEE\u6539\u65E5\u671F
|
||||
FileChooser.fileAttrHeaderText=\u5C6C\u6027
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
# 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
|
||||
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Metal Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=\u67E5\u8A62(&I):
|
||||
FileChooser.saveInLabel.textAndMnemonic=\u5132\u5B58\u65BC:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=\u6A94\u6848\u540D\u7A31(&N):
|
||||
FileChooser.folderNameLabel.textAndMnemonic=\u8CC7\u6599\u593E\u540D\u7A31(&N):
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=\u6A94\u6848\u985E\u578B(&T):
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=\u5F80\u4E0A\u4E00\u5C64
|
||||
FileChooser.upFolderAccessibleName=\u5F80\u4E0A
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=\u4E3B\u76EE\u9304
|
||||
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u9304
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.newFolderAccessibleName=\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=\u6E05\u55AE
|
||||
FileChooser.listViewButtonAccessibleName=\u6E05\u55AE
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=\u6E05\u55AE
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\u8A73\u7D30\u8CC7\u8A0A
|
||||
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30\u8CC7\u8A0A
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=\u8A73\u7D30\u8CC7\u8A0A
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=\u91CD\u65B0\u6574\u7406
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=\u6AA2\u8996
|
||||
FileChooser.fileNameHeader.textAndMnemonic=\u540D\u7A31
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=\u5927\u5C0F
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=\u985E\u578B
|
||||
FileChooser.fileDateHeader.textAndMnemonic=\u4FEE\u6539\u65E5\u671F
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=\u5C6C\u6027
|
||||
|
||||
############ Used by MetalTitlePane if rendering window decorations############
|
||||
MetalTitlePane.restore.titleAndMnemonic=\u56DE\u5FA9(&R)
|
||||
MetalTitlePane.iconify.titleAndMnemonic=\u6700\u5C0F\u5316(&E)
|
||||
MetalTitlePane.maximize.titleAndMnemonic=\u6700\u5927\u5316(&X)
|
||||
MetalTitlePane.close.titleAndMnemonic=\u95DC\u9589(&C)
|
||||
|
||||
|
@ -1,49 +1,45 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=Look In:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=Save In:
|
||||
FileChooser.fileNameLabelText=File Name:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=Folder Name:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=Files of Type:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=Up One Level
|
||||
FileChooser.upFolderAccessibleName=Up
|
||||
FileChooser.homeFolderToolTipText=Home
|
||||
FileChooser.homeFolderAccessibleName=Home
|
||||
FileChooser.newFolderToolTipText=Create New Folder
|
||||
FileChooser.newFolderAccessibleName=New Folder
|
||||
FileChooser.newFolderActionLabelText=New Folder
|
||||
FileChooser.listViewButtonToolTipText=List
|
||||
FileChooser.listViewButtonAccessibleName=List
|
||||
FileChooser.listViewActionLabelText=List
|
||||
FileChooser.detailsViewButtonToolTipText=Details
|
||||
FileChooser.detailsViewButtonAccessibleName=Details
|
||||
FileChooser.detailsViewActionLabelText=Details
|
||||
FileChooser.refreshActionLabelText=Refresh
|
||||
FileChooser.viewMenuLabelText=View
|
||||
FileChooser.fileNameHeaderText=Name
|
||||
FileChooser.fileSizeHeaderText=Size
|
||||
FileChooser.fileTypeHeaderText=Type
|
||||
FileChooser.fileDateHeaderText=Modified
|
||||
FileChooser.fileAttrHeaderText=Attributes
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=Look &In:
|
||||
FileChooser.saveInLabel.textAndMnemonic=Save In:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=File &Name:
|
||||
FileChooser.folderNameLabel.textAndMnemonic=Folder &Name:
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Files of &Type:
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=Up One Level
|
||||
FileChooser.upFolderAccessibleName=Up
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=Home
|
||||
FileChooser.homeFolderAccessibleName=Home
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=Create New Folder
|
||||
FileChooser.newFolderAccessibleName=New Folder
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=New Folder
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=List
|
||||
FileChooser.listViewButtonAccessibleName=List
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=List
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Details
|
||||
FileChooser.detailsViewButtonAccessibleName=Details
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=Details
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=Refresh
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=View
|
||||
FileChooser.fileNameHeader.textAndMnemonic=Name
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=Size
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=Type
|
||||
FileChooser.fileDateHeader.textAndMnemonic=Modified
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=Attributes
|
||||
|
@ -1,49 +1,45 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=Suchen in:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=Speichern in:
|
||||
FileChooser.fileNameLabelText=Dateiname:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=Ordnername:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=Dateityp:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=Eine Ebene h\u00F6her
|
||||
FileChooser.upFolderAccessibleName=Nach oben
|
||||
FileChooser.homeFolderToolTipText=Home
|
||||
FileChooser.homeFolderAccessibleName=Home
|
||||
FileChooser.newFolderToolTipText=Neuen Ordner erstellen
|
||||
FileChooser.newFolderAccessibleName=Neuer Ordner
|
||||
FileChooser.newFolderActionLabelText=Neuer Ordner
|
||||
FileChooser.listViewButtonToolTipText=Liste
|
||||
FileChooser.listViewButtonAccessibleName=Liste
|
||||
FileChooser.listViewActionLabelText=Liste
|
||||
FileChooser.detailsViewButtonToolTipText=Details
|
||||
FileChooser.detailsViewButtonAccessibleName=Details
|
||||
FileChooser.detailsViewActionLabelText=Details
|
||||
FileChooser.refreshActionLabelText=Aktualisieren
|
||||
FileChooser.viewMenuLabelText=Ansicht
|
||||
FileChooser.fileNameHeaderText=Name
|
||||
FileChooser.fileSizeHeaderText=Gr\u00F6\u00DFe
|
||||
FileChooser.fileTypeHeaderText=Typ
|
||||
FileChooser.fileDateHeaderText=Ge\u00E4ndert
|
||||
FileChooser.fileAttrHeaderText=Attribute
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=Suchen &in:
|
||||
FileChooser.saveInLabel.textAndMnemonic=Speichern in:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=Datei&name:
|
||||
FileChooser.folderNameLabel.textAndMnemonic=Ord&nername:
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Da&teityp:
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=Eine Ebene h\u00F6her
|
||||
FileChooser.upFolderAccessibleName=Nach oben
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=Home
|
||||
FileChooser.homeFolderAccessibleName=Home
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=Neuen Ordner erstellen
|
||||
FileChooser.newFolderAccessibleName=Neuer Ordner
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=Neuer Ordner
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=Liste
|
||||
FileChooser.listViewButtonAccessibleName=Liste
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=Liste
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Details
|
||||
FileChooser.detailsViewButtonAccessibleName=Details
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=Details
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=Aktualisieren
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=Ansicht
|
||||
FileChooser.fileNameHeader.textAndMnemonic=Name
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=Gr\u00F6\u00DFe
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=Typ
|
||||
FileChooser.fileDateHeader.textAndMnemonic=Ge\u00E4ndert
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=Attribute
|
||||
|
@ -1,49 +1,45 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=Buscar en:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=Guardar en:
|
||||
FileChooser.fileNameLabelText=Nombre de Archivo:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=Nombre de la Carpeta:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=Archivos de Tipo:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=Subir un Nivel
|
||||
FileChooser.upFolderAccessibleName=Arriba
|
||||
FileChooser.homeFolderToolTipText=Inicio
|
||||
FileChooser.homeFolderAccessibleName=Inicio
|
||||
FileChooser.newFolderToolTipText=Crear Nueva Carpeta
|
||||
FileChooser.newFolderAccessibleName=Nueva Carpeta
|
||||
FileChooser.newFolderActionLabelText=Nueva Carpeta
|
||||
FileChooser.listViewButtonToolTipText=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabelText=Lista
|
||||
FileChooser.detailsViewButtonToolTipText=Detalles
|
||||
FileChooser.detailsViewButtonAccessibleName=Detalles
|
||||
FileChooser.detailsViewActionLabelText=Detalles
|
||||
FileChooser.refreshActionLabelText=Refrescar
|
||||
FileChooser.viewMenuLabelText=Ver
|
||||
FileChooser.fileNameHeaderText=Nombre
|
||||
FileChooser.fileSizeHeaderText=Tama\u00F1o
|
||||
FileChooser.fileTypeHeaderText=Tipo
|
||||
FileChooser.fileDateHeaderText=Modificado
|
||||
FileChooser.fileAttrHeaderText=Atributos
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=Buscar en(&I):
|
||||
FileChooser.saveInLabel.textAndMnemonic=Guardar en:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=&Nombre de Archivo:
|
||||
FileChooser.folderNameLabel.textAndMnemonic=&Nombre de la Carpeta:
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Archivos de &Tipo:
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=Subir un Nivel
|
||||
FileChooser.upFolderAccessibleName=Arriba
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=Inicio
|
||||
FileChooser.homeFolderAccessibleName=Inicio
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=Crear Nueva Carpeta
|
||||
FileChooser.newFolderAccessibleName=Nueva Carpeta
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=Nueva Carpeta
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Detalles
|
||||
FileChooser.detailsViewButtonAccessibleName=Detalles
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=Detalles
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=Refrescar
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=Ver
|
||||
FileChooser.fileNameHeader.textAndMnemonic=Nombre
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=Tama\u00F1o
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=Tipo
|
||||
FileChooser.fileDateHeader.textAndMnemonic=Modificado
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=Atributos
|
||||
|
@ -1,49 +1,45 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=Rechercher dans :
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=Enregistrer dans :
|
||||
FileChooser.fileNameLabelText=Nom du fichier :
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=Nom du dossier :
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=Fichiers de type :
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=Remonte d'un niveau.
|
||||
FileChooser.upFolderAccessibleName=Monter
|
||||
FileChooser.homeFolderToolTipText=R\u00E9pertoire d'origine
|
||||
FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
|
||||
FileChooser.newFolderToolTipText=Cr\u00E9e un dossier.
|
||||
FileChooser.newFolderAccessibleName=Nouveau dossier
|
||||
FileChooser.newFolderActionLabelText=Nouveau dossier
|
||||
FileChooser.listViewButtonToolTipText=Liste
|
||||
FileChooser.listViewButtonAccessibleName=Liste
|
||||
FileChooser.listViewActionLabelText=Liste
|
||||
FileChooser.detailsViewButtonToolTipText=D\u00E9tails
|
||||
FileChooser.detailsViewButtonAccessibleName=D\u00E9tails
|
||||
FileChooser.detailsViewActionLabelText=D\u00E9tails
|
||||
FileChooser.refreshActionLabelText=Actualiser
|
||||
FileChooser.viewMenuLabelText=Affichage
|
||||
FileChooser.fileNameHeaderText=Nom
|
||||
FileChooser.fileSizeHeaderText=Taille
|
||||
FileChooser.fileTypeHeaderText=Type
|
||||
FileChooser.fileDateHeaderText=Modifi\u00E9
|
||||
FileChooser.fileAttrHeaderText=Attributs
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=Rechercher dans (&I):
|
||||
FileChooser.saveInLabel.textAndMnemonic=Enregistrer dans :
|
||||
FileChooser.fileNameLabel.textAndMnemonic=&Nom du fichier :
|
||||
FileChooser.folderNameLabel.textAndMnemonic=&Nom du dossier :
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Fichiers de &type :
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=Remonte d'un niveau.
|
||||
FileChooser.upFolderAccessibleName=Monter
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=R\u00E9pertoire d'origine
|
||||
FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=Cr\u00E9e un dossier.
|
||||
FileChooser.newFolderAccessibleName=Nouveau dossier
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=Nouveau dossier
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=Liste
|
||||
FileChooser.listViewButtonAccessibleName=Liste
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=Liste
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=D\u00E9tails
|
||||
FileChooser.detailsViewButtonAccessibleName=D\u00E9tails
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=D\u00E9tails
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=Actualiser
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=Affichage
|
||||
FileChooser.fileNameHeader.textAndMnemonic=Nom
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=Taille
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=Type
|
||||
FileChooser.fileDateHeader.textAndMnemonic=Modifi\u00E9
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=Attributs
|
||||
|
@ -1,49 +1,45 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=Cerca in:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=Salva in:
|
||||
FileChooser.fileNameLabelText=Nome file:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=Nome della cartella:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=Tipo file:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=Cartella superiore
|
||||
FileChooser.upFolderAccessibleName=Superiore
|
||||
FileChooser.homeFolderToolTipText=Home
|
||||
FileChooser.homeFolderAccessibleName=Home
|
||||
FileChooser.newFolderToolTipText=Crea nuova cartella
|
||||
FileChooser.newFolderAccessibleName=Nuova cartella
|
||||
FileChooser.newFolderActionLabelText=Nuova cartella
|
||||
FileChooser.listViewButtonToolTipText=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabelText=Lista
|
||||
FileChooser.detailsViewButtonToolTipText=Dettagli
|
||||
FileChooser.detailsViewButtonAccessibleName=Dettagli
|
||||
FileChooser.detailsViewActionLabelText=Dettagli
|
||||
FileChooser.refreshActionLabelText=Aggiorna
|
||||
FileChooser.viewMenuLabelText=Visualizza
|
||||
FileChooser.fileNameHeaderText=Nome
|
||||
FileChooser.fileSizeHeaderText=Dimensioni
|
||||
FileChooser.fileTypeHeaderText=Tipo
|
||||
FileChooser.fileDateHeaderText=Modificato
|
||||
FileChooser.fileAttrHeaderText=Attributi
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=Cerca &in:
|
||||
FileChooser.saveInLabel.textAndMnemonic=Salva in:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=&Nome file:
|
||||
FileChooser.folderNameLabel.textAndMnemonic=&Nome della cartella:
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=&Tipo file:
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=Cartella superiore
|
||||
FileChooser.upFolderAccessibleName=Superiore
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=Home
|
||||
FileChooser.homeFolderAccessibleName=Home
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=Crea nuova cartella
|
||||
FileChooser.newFolderAccessibleName=Nuova cartella
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=Nuova cartella
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Dettagli
|
||||
FileChooser.detailsViewButtonAccessibleName=Dettagli
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=Dettagli
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=Aggiorna
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=Visualizza
|
||||
FileChooser.fileNameHeader.textAndMnemonic=Nome
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=Dimensioni
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=Tipo
|
||||
FileChooser.fileDateHeader.textAndMnemonic=Modificato
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=Attributi
|
||||
|
@ -1,49 +1,45 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=\u53C2\u7167:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=\u4FDD\u5B58:
|
||||
FileChooser.fileNameLabelText=\u30D5\u30A1\u30A4\u30EB\u540D:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=\u30D5\u30A9\u30EB\u30C0\u540D:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=\u30D5\u30A1\u30A4\u30EB\u306E\u30BF\u30A4\u30D7:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=1\u30EC\u30D9\u30EB\u4E0A\u3078
|
||||
FileChooser.upFolderAccessibleName=\u4E0A\u3078
|
||||
FileChooser.homeFolderToolTipText=\u30DB\u30FC\u30E0
|
||||
FileChooser.homeFolderAccessibleName=\u30DB\u30FC\u30E0
|
||||
FileChooser.newFolderToolTipText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210
|
||||
FileChooser.newFolderAccessibleName=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||
FileChooser.newFolderActionLabelText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||
FileChooser.listViewButtonToolTipText=\u30EA\u30B9\u30C8
|
||||
FileChooser.listViewButtonAccessibleName=\u30EA\u30B9\u30C8
|
||||
FileChooser.listViewActionLabelText=\u30EA\u30B9\u30C8
|
||||
FileChooser.detailsViewButtonToolTipText=\u8A73\u7D30
|
||||
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30
|
||||
FileChooser.detailsViewActionLabelText=\u8A73\u7D30
|
||||
FileChooser.refreshActionLabelText=\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5
|
||||
FileChooser.viewMenuLabelText=\u8868\u793A
|
||||
FileChooser.fileNameHeaderText=\u540D\u524D
|
||||
FileChooser.fileSizeHeaderText=\u30B5\u30A4\u30BA
|
||||
FileChooser.fileTypeHeaderText=\u30BF\u30A4\u30D7
|
||||
FileChooser.fileDateHeaderText=\u4FEE\u6B63\u65E5
|
||||
FileChooser.fileAttrHeaderText=\u5C5E\u6027
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=\u53C2\u7167(&I):
|
||||
FileChooser.saveInLabel.textAndMnemonic=\u4FDD\u5B58:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u540D(&N):
|
||||
FileChooser.folderNameLabel.textAndMnemonic=\u30D5\u30A9\u30EB\u30C0\u540D(&N):
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=\u30D5\u30A1\u30A4\u30EB\u306E\u30BF\u30A4\u30D7(&T):
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=1\u30EC\u30D9\u30EB\u4E0A\u3078
|
||||
FileChooser.upFolderAccessibleName=\u4E0A\u3078
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=\u30DB\u30FC\u30E0
|
||||
FileChooser.homeFolderAccessibleName=\u30DB\u30FC\u30E0
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210
|
||||
FileChooser.newFolderAccessibleName=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=\u30EA\u30B9\u30C8
|
||||
FileChooser.listViewButtonAccessibleName=\u30EA\u30B9\u30C8
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=\u30EA\u30B9\u30C8
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\u8A73\u7D30
|
||||
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=\u8A73\u7D30
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=\u8868\u793A
|
||||
FileChooser.fileNameHeader.textAndMnemonic=\u540D\u524D
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=\u30B5\u30A4\u30BA
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=\u30BF\u30A4\u30D7
|
||||
FileChooser.fileDateHeader.textAndMnemonic=\u4FEE\u6B63\u65E5
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=\u5C5E\u6027
|
||||
|
@ -1,49 +1,45 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=\uAC80\uC0C9 \uC704\uCE58:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=\uC800\uC7A5 \uC704\uCE58:
|
||||
FileChooser.fileNameLabelText=\uD30C\uC77C \uC774\uB984:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=\uD3F4\uB354 \uC774\uB984:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=\uD30C\uC77C \uC720\uD615:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=\uD55C \uB808\uBCA8 \uC704\uB85C
|
||||
FileChooser.upFolderAccessibleName=\uC704\uB85C
|
||||
FileChooser.homeFolderToolTipText=\uD648
|
||||
FileChooser.homeFolderAccessibleName=\uD648
|
||||
FileChooser.newFolderToolTipText=\uC0C8 \uD3F4\uB354 \uC0DD\uC131
|
||||
FileChooser.newFolderAccessibleName=\uC0C8 \uD3F4\uB354
|
||||
FileChooser.newFolderActionLabelText=\uC0C8 \uD3F4\uB354
|
||||
FileChooser.listViewButtonToolTipText=\uBAA9\uB85D
|
||||
FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
|
||||
FileChooser.listViewActionLabelText=\uBAA9\uB85D
|
||||
FileChooser.detailsViewButtonToolTipText=\uC138\uBD80 \uC815\uBCF4
|
||||
FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80 \uC815\uBCF4
|
||||
FileChooser.detailsViewActionLabelText=\uC138\uBD80 \uC815\uBCF4
|
||||
FileChooser.refreshActionLabelText=\uC0C8\uB85C \uACE0\uCE68
|
||||
FileChooser.viewMenuLabelText=\uBCF4\uAE30
|
||||
FileChooser.fileNameHeaderText=\uC774\uB984
|
||||
FileChooser.fileSizeHeaderText=\uD06C\uAE30
|
||||
FileChooser.fileTypeHeaderText=\uC720\uD615
|
||||
FileChooser.fileDateHeaderText=\uC218\uC815 \uB0A0\uC9DC
|
||||
FileChooser.fileAttrHeaderText=\uC18D\uC131
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=\uAC80\uC0C9 \uC704\uCE58(&I):
|
||||
FileChooser.saveInLabel.textAndMnemonic=\uC800\uC7A5 \uC704\uCE58:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=\uD30C\uC77C \uC774\uB984(&N):
|
||||
FileChooser.folderNameLabel.textAndMnemonic=\uD3F4\uB354 \uC774\uB984(&N):
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=\uD30C\uC77C \uC720\uD615(&T):
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=\uD55C \uB808\uBCA8 \uC704\uB85C
|
||||
FileChooser.upFolderAccessibleName=\uC704\uB85C
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=\uD648
|
||||
FileChooser.homeFolderAccessibleName=\uD648
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=\uC0C8 \uD3F4\uB354 \uC0DD\uC131
|
||||
FileChooser.newFolderAccessibleName=\uC0C8 \uD3F4\uB354
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=\uC0C8 \uD3F4\uB354
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=\uBAA9\uB85D
|
||||
FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=\uBAA9\uB85D
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\uC138\uBD80 \uC815\uBCF4
|
||||
FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80 \uC815\uBCF4
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=\uC138\uBD80 \uC815\uBCF4
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=\uC0C8\uB85C \uACE0\uCE68
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=\uBCF4\uAE30
|
||||
FileChooser.fileNameHeader.textAndMnemonic=\uC774\uB984
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=\uD06C\uAE30
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=\uC720\uD615
|
||||
FileChooser.fileDateHeader.textAndMnemonic=\uC218\uC815 \uB0A0\uC9DC
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=\uC18D\uC131
|
||||
|
@ -1,49 +1,45 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=Consultar Em:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=Salvar Em:
|
||||
FileChooser.fileNameLabelText=Nome do Arquivo:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=Nome da pasta:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=Arquivos do Tipo:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=Um N\u00EDvel Acima
|
||||
FileChooser.upFolderAccessibleName=Acima
|
||||
FileChooser.homeFolderToolTipText=In\u00EDcio
|
||||
FileChooser.homeFolderAccessibleName=In\u00EDcio
|
||||
FileChooser.newFolderToolTipText=Criar Nova Pasta
|
||||
FileChooser.newFolderAccessibleName=Nova Pasta
|
||||
FileChooser.newFolderActionLabelText=Nova Pasta
|
||||
FileChooser.listViewButtonToolTipText=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabelText=Lista
|
||||
FileChooser.detailsViewButtonToolTipText=Detalhes
|
||||
FileChooser.detailsViewButtonAccessibleName=Detalhes
|
||||
FileChooser.detailsViewActionLabelText=Detalhes
|
||||
FileChooser.refreshActionLabelText=Atualizar
|
||||
FileChooser.viewMenuLabelText=Exibir
|
||||
FileChooser.fileNameHeaderText=Nome
|
||||
FileChooser.fileSizeHeaderText=Tamanho
|
||||
FileChooser.fileTypeHeaderText=Tipo
|
||||
FileChooser.fileDateHeaderText=Modificado
|
||||
FileChooser.fileAttrHeaderText=Atributos
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=Consultar Em(&I):
|
||||
FileChooser.saveInLabel.textAndMnemonic=Salvar Em:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=&Nome do Arquivo:
|
||||
FileChooser.folderNameLabel.textAndMnemonic=&Nome da pasta:
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Arquivos do &Tipo:
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=Um N\u00EDvel Acima
|
||||
FileChooser.upFolderAccessibleName=Acima
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=In\u00EDcio
|
||||
FileChooser.homeFolderAccessibleName=In\u00EDcio
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=Criar Nova Pasta
|
||||
FileChooser.newFolderAccessibleName=Nova Pasta
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=Nova Pasta
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Detalhes
|
||||
FileChooser.detailsViewButtonAccessibleName=Detalhes
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=Detalhes
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=Atualizar
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=Exibir
|
||||
FileChooser.fileNameHeader.textAndMnemonic=Nome
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=Tamanho
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=Tipo
|
||||
FileChooser.fileDateHeader.textAndMnemonic=Modificado
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=Atributos
|
||||
|
@ -1,49 +1,45 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=Leta i:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=Spara i:
|
||||
FileChooser.fileNameLabelText=Filnamn:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=Mapp:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=Filformat:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=Upp en niv\u00E5
|
||||
FileChooser.upFolderAccessibleName=Upp
|
||||
FileChooser.homeFolderToolTipText=Hem
|
||||
FileChooser.homeFolderAccessibleName=Hem
|
||||
FileChooser.newFolderToolTipText=Skapa ny mapp
|
||||
FileChooser.newFolderAccessibleName=Ny mapp
|
||||
FileChooser.newFolderActionLabelText=Ny mapp
|
||||
FileChooser.listViewButtonToolTipText=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabelText=Lista
|
||||
FileChooser.detailsViewButtonToolTipText=Detaljer
|
||||
FileChooser.detailsViewButtonAccessibleName=Detaljer
|
||||
FileChooser.detailsViewActionLabelText=Detaljer
|
||||
FileChooser.refreshActionLabelText=F\u00F6rnya
|
||||
FileChooser.viewMenuLabelText=Vy
|
||||
FileChooser.fileNameHeaderText=Namn
|
||||
FileChooser.fileSizeHeaderText=Storlek
|
||||
FileChooser.fileTypeHeaderText=Typ
|
||||
FileChooser.fileDateHeaderText=\u00C4ndrad
|
||||
FileChooser.fileAttrHeaderText=Attribut
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=Leta &i:
|
||||
FileChooser.saveInLabel.textAndMnemonic=Spara i:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=Fil&namn:
|
||||
FileChooser.folderNameLabel.textAndMnemonic=Mapp(&N):
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Filforma&t:
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=Upp en niv\u00E5
|
||||
FileChooser.upFolderAccessibleName=Upp
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=Hem
|
||||
FileChooser.homeFolderAccessibleName=Hem
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=Skapa ny mapp
|
||||
FileChooser.newFolderAccessibleName=Ny mapp
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=Ny mapp
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=Lista
|
||||
FileChooser.listViewButtonAccessibleName=Lista
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=Lista
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=Detaljer
|
||||
FileChooser.detailsViewButtonAccessibleName=Detaljer
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=Detaljer
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=F\u00F6rnya
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=Vy
|
||||
FileChooser.fileNameHeader.textAndMnemonic=Namn
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=Storlek
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=Typ
|
||||
FileChooser.fileDateHeader.textAndMnemonic=\u00C4ndrad
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=Attribut
|
||||
|
@ -1,49 +1,45 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=\u67E5\u770B:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=\u4FDD\u5B58:
|
||||
FileChooser.fileNameLabelText=\u6587\u4EF6\u540D:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=\u6587\u4EF6\u5939\u540D:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=\u6587\u4EF6\u7C7B\u578B:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=\u5411\u4E0A\u4E00\u7EA7
|
||||
FileChooser.upFolderAccessibleName=\u5411\u4E0A
|
||||
FileChooser.homeFolderToolTipText=\u4E3B\u76EE\u5F55
|
||||
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u5F55
|
||||
FileChooser.newFolderToolTipText=\u521B\u5EFA\u65B0\u6587\u4EF6\u5939
|
||||
FileChooser.newFolderAccessibleName=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||
FileChooser.newFolderActionLabelText=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||
FileChooser.listViewButtonToolTipText=\u5217\u8868
|
||||
FileChooser.listViewButtonAccessibleName=\u5217\u8868
|
||||
FileChooser.listViewActionLabelText=\u5217\u8868
|
||||
FileChooser.detailsViewButtonToolTipText=\u8BE6\u7EC6\u8D44\u6599
|
||||
FileChooser.detailsViewButtonAccessibleName=\u8BE6\u7EC6\u8D44\u6599
|
||||
FileChooser.detailsViewActionLabelText=\u8BE6\u7EC6\u8D44\u6599
|
||||
FileChooser.refreshActionLabelText=\u5237\u65B0
|
||||
FileChooser.viewMenuLabelText=\u89C6\u56FE
|
||||
FileChooser.fileNameHeaderText=\u540D\u79F0
|
||||
FileChooser.fileSizeHeaderText=\u5927\u5C0F
|
||||
FileChooser.fileTypeHeaderText=\u7C7B\u578B
|
||||
FileChooser.fileDateHeaderText=\u4FEE\u6539\u65E5\u671F
|
||||
FileChooser.fileAttrHeaderText=\u5C5E\u6027
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=\u67E5\u770B(&I):
|
||||
FileChooser.saveInLabel.textAndMnemonic=\u4FDD\u5B58:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=\u6587\u4EF6\u540D(&N):
|
||||
FileChooser.folderNameLabel.textAndMnemonic=\u6587\u4EF6\u5939\u540D(&N):
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=\u6587\u4EF6\u7C7B\u578B(&T):
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=\u5411\u4E0A\u4E00\u7EA7
|
||||
FileChooser.upFolderAccessibleName=\u5411\u4E0A
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=\u4E3B\u76EE\u5F55
|
||||
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u5F55
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=\u521B\u5EFA\u65B0\u6587\u4EF6\u5939
|
||||
FileChooser.newFolderAccessibleName=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=\u65B0\u5EFA\u6587\u4EF6\u5939
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=\u5217\u8868
|
||||
FileChooser.listViewButtonAccessibleName=\u5217\u8868
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=\u5217\u8868
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\u8BE6\u7EC6\u8D44\u6599
|
||||
FileChooser.detailsViewButtonAccessibleName=\u8BE6\u7EC6\u8D44\u6599
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=\u8BE6\u7EC6\u8D44\u6599
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=\u5237\u65B0
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=\u89C6\u56FE
|
||||
FileChooser.fileNameHeader.textAndMnemonic=\u540D\u79F0
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=\u5927\u5C0F
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=\u7C7B\u578B
|
||||
FileChooser.fileDateHeader.textAndMnemonic=\u4FEE\u6539\u65E5\u671F
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=\u5C5E\u6027
|
||||
|
@ -1,49 +1,45 @@
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabelText=\u67E5\u8A62:
|
||||
FileChooser.lookInLabelMnemonic=73
|
||||
FileChooser.saveInLabelText=\u5132\u5B58\u65BC:
|
||||
FileChooser.fileNameLabelText=\u6A94\u6848\u540D\u7A31:
|
||||
FileChooser.fileNameLabelMnemonic=78
|
||||
FileChooser.folderNameLabelText=\u8CC7\u6599\u593E\u540D\u7A31:
|
||||
FileChooser.folderNameLabelMnemonic=78
|
||||
FileChooser.filesOfTypeLabelText=\u6A94\u6848\u985E\u578B:
|
||||
FileChooser.filesOfTypeLabelMnemonic=84
|
||||
FileChooser.upFolderToolTipText=\u5F80\u4E0A\u4E00\u5C64
|
||||
FileChooser.upFolderAccessibleName=\u5F80\u4E0A
|
||||
FileChooser.homeFolderToolTipText=\u4E3B\u76EE\u9304
|
||||
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u9304
|
||||
FileChooser.newFolderToolTipText=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.newFolderAccessibleName=\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.newFolderActionLabelText=\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.listViewButtonToolTipText=\u6E05\u55AE
|
||||
FileChooser.listViewButtonAccessibleName=\u6E05\u55AE
|
||||
FileChooser.listViewActionLabelText=\u6E05\u55AE
|
||||
FileChooser.detailsViewButtonToolTipText=\u8A73\u7D30\u8CC7\u8A0A
|
||||
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30\u8CC7\u8A0A
|
||||
FileChooser.detailsViewActionLabelText=\u8A73\u7D30\u8CC7\u8A0A
|
||||
FileChooser.refreshActionLabelText=\u91CD\u65B0\u6574\u7406
|
||||
FileChooser.viewMenuLabelText=\u6AA2\u8996
|
||||
FileChooser.fileNameHeaderText=\u540D\u7A31
|
||||
FileChooser.fileSizeHeaderText=\u5927\u5C0F
|
||||
FileChooser.fileTypeHeaderText=\u985E\u578B
|
||||
FileChooser.fileDateHeaderText=\u4FEE\u6539\u65E5\u671F
|
||||
FileChooser.fileAttrHeaderText=\u5C6C\u6027
|
||||
# This properties file is used to create a PropertyResourceBundle
|
||||
# It contains Locale specific strings used be the Synth Look and Feel.
|
||||
# Currently, the following components need this for support:
|
||||
#
|
||||
# FileChooser
|
||||
#
|
||||
# When this file is read in, the strings are put into the
|
||||
# defaults table. This is an implementation detail of the current
|
||||
# workings of Swing. DO NOT DEPEND ON THIS.
|
||||
# This may change in future versions of Swing as we improve localization
|
||||
# support.
|
||||
#
|
||||
# Refer to the note in basic.properties for a description as to what
|
||||
# the mnemonics correspond to and how to calculate them.
|
||||
#
|
||||
# @author Steve Wilson
|
||||
|
||||
|
||||
############ FILE CHOOSER STRINGS #############
|
||||
|
||||
FileChooser.lookInLabel.textAndMnemonic=\u67E5\u8A62(&I):
|
||||
FileChooser.saveInLabel.textAndMnemonic=\u5132\u5B58\u65BC:
|
||||
FileChooser.fileNameLabel.textAndMnemonic=\u6A94\u6848\u540D\u7A31(&N):
|
||||
FileChooser.folderNameLabel.textAndMnemonic=\u8CC7\u6599\u593E\u540D\u7A31(&N):
|
||||
FileChooser.filesOfTypeLabel.textAndMnemonic=\u6A94\u6848\u985E\u578B(&T):
|
||||
FileChooser.upFolderToolTip.textAndMnemonic=\u5F80\u4E0A\u4E00\u5C64
|
||||
FileChooser.upFolderAccessibleName=\u5F80\u4E0A
|
||||
FileChooser.homeFolderToolTip.textAndMnemonic=\u4E3B\u76EE\u9304
|
||||
FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u9304
|
||||
FileChooser.newFolderToolTip.textAndMnemonic=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.newFolderAccessibleName=\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.newFolderActionLabel.textAndMnemonic=\u65B0\u8CC7\u6599\u593E
|
||||
FileChooser.listViewButtonToolTip.textAndMnemonic=\u6E05\u55AE
|
||||
FileChooser.listViewButtonAccessibleName=\u6E05\u55AE
|
||||
FileChooser.listViewActionLabel.textAndMnemonic=\u6E05\u55AE
|
||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\u8A73\u7D30\u8CC7\u8A0A
|
||||
FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30\u8CC7\u8A0A
|
||||
FileChooser.detailsViewActionLabel.textAndMnemonic=\u8A73\u7D30\u8CC7\u8A0A
|
||||
FileChooser.refreshActionLabel.textAndMnemonic=\u91CD\u65B0\u6574\u7406
|
||||
FileChooser.viewMenuLabel.textAndMnemonic=\u6AA2\u8996
|
||||
FileChooser.fileNameHeader.textAndMnemonic=\u540D\u7A31
|
||||
FileChooser.fileSizeHeader.textAndMnemonic=\u5927\u5C0F
|
||||
FileChooser.fileTypeHeader.textAndMnemonic=\u985E\u578B
|
||||
FileChooser.fileDateHeader.textAndMnemonic=\u4FEE\u6539\u65E5\u671F
|
||||
FileChooser.fileAttrHeader.textAndMnemonic=\u5C6C\u6027
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2000, 2010, 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.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -633,7 +633,6 @@ public final class NumericShaper implements java.io.Serializable {
|
||||
0x06d6, 0x06e5,
|
||||
0x06e7, 0x06ee,
|
||||
0x06f0, 0x06fa,
|
||||
0x070f, 0x0710,
|
||||
0x0711, 0x0712,
|
||||
0x0730, 0x074d,
|
||||
0x07a6, 0x07b1,
|
||||
@ -644,7 +643,7 @@ public final class NumericShaper implements java.io.Serializable {
|
||||
0x0825, 0x0828,
|
||||
0x0829, 0x0830,
|
||||
0x0859, 0x085e,
|
||||
0x0900, 0x0903,
|
||||
0x08e4, 0x0903,
|
||||
0x093a, 0x093b,
|
||||
0x093c, 0x093d,
|
||||
0x0941, 0x0949,
|
||||
@ -723,6 +722,7 @@ public final class NumericShaper implements java.io.Serializable {
|
||||
0x1732, 0x1735,
|
||||
0x1752, 0x1760,
|
||||
0x1772, 0x1780,
|
||||
0x17b4, 0x17b6,
|
||||
0x17b7, 0x17be,
|
||||
0x17c6, 0x17c7,
|
||||
0x17c9, 0x17d4,
|
||||
@ -750,6 +750,7 @@ public final class NumericShaper implements java.io.Serializable {
|
||||
0x1b80, 0x1b82,
|
||||
0x1ba2, 0x1ba6,
|
||||
0x1ba8, 0x1baa,
|
||||
0x1bab, 0x1bac,
|
||||
0x1be6, 0x1be7,
|
||||
0x1be8, 0x1bea,
|
||||
0x1bed, 0x1bee,
|
||||
@ -760,6 +761,7 @@ public final class NumericShaper implements java.io.Serializable {
|
||||
0x1cd4, 0x1ce1,
|
||||
0x1ce2, 0x1ce9,
|
||||
0x1ced, 0x1cee,
|
||||
0x1cf4, 0x1cf5,
|
||||
0x1dc0, 0x1e00,
|
||||
0x1fbd, 0x1fbe,
|
||||
0x1fbf, 0x1fc2,
|
||||
@ -791,7 +793,8 @@ public final class NumericShaper implements java.io.Serializable {
|
||||
0x26ad, 0x2800,
|
||||
0x2900, 0x2c00,
|
||||
0x2ce5, 0x2ceb,
|
||||
0x2cef, 0x2d00,
|
||||
0x2cef, 0x2cf2,
|
||||
0x2cf9, 0x2d00,
|
||||
0x2d7f, 0x2d80,
|
||||
0x2de0, 0x3005,
|
||||
0x3008, 0x3021,
|
||||
@ -814,6 +817,7 @@ public final class NumericShaper implements java.io.Serializable {
|
||||
0xa490, 0xa4d0,
|
||||
0xa60d, 0xa610,
|
||||
0xa66f, 0xa680,
|
||||
0xa69f, 0xa6a0,
|
||||
0xa6f0, 0xa6f2,
|
||||
0xa700, 0xa722,
|
||||
0xa788, 0xa789,
|
||||
@ -842,6 +846,8 @@ public final class NumericShaper implements java.io.Serializable {
|
||||
0xaab7, 0xaab9,
|
||||
0xaabe, 0xaac0,
|
||||
0xaac1, 0xaac2,
|
||||
0xaaec, 0xaaee,
|
||||
0xaaf6, 0xab01,
|
||||
0xabe5, 0xabe6,
|
||||
0xabe8, 0xabe9,
|
||||
0xabed, 0xabf0,
|
||||
@ -867,6 +873,16 @@ public final class NumericShaper implements java.io.Serializable {
|
||||
0x11080, 0x11082,
|
||||
0x110b3, 0x110b7,
|
||||
0x110b9, 0x110bb,
|
||||
0x11100, 0x11103,
|
||||
0x11127, 0x1112c,
|
||||
0x1112d, 0x11136,
|
||||
0x11180, 0x11182,
|
||||
0x111b6, 0x111bf,
|
||||
0x116ab, 0x116ac,
|
||||
0x116ad, 0x116ae,
|
||||
0x116b0, 0x116b6,
|
||||
0x116b7, 0x116c0,
|
||||
0x16f8f, 0x16f93,
|
||||
0x1d167, 0x1d16a,
|
||||
0x1d173, 0x1d183,
|
||||
0x1d185, 0x1d18c,
|
||||
@ -877,7 +893,9 @@ public final class NumericShaper implements java.io.Serializable {
|
||||
0x1d74f, 0x1d750,
|
||||
0x1d789, 0x1d78a,
|
||||
0x1d7c3, 0x1d7c4,
|
||||
0x1d7ce, 0x1f110,
|
||||
0x1d7ce, 0x1ee00,
|
||||
0x1eef0, 0x1f110,
|
||||
0x1f16a, 0x1f170,
|
||||
0x1f300, 0x1f48c,
|
||||
0x1f48d, 0x1f524,
|
||||
0x1f525, 0x20000,
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2002, 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
|
||||
@ -40,7 +40,7 @@ import java.util.Locale;
|
||||
* a character's category (lowercase letter, digit, etc.) and for converting
|
||||
* characters from uppercase to lowercase and vice versa.
|
||||
* <p>
|
||||
* Character information is based on the Unicode Standard, version 6.0.0.
|
||||
* Character information is based on the Unicode Standard, version 6.1.0.
|
||||
* <p>
|
||||
* The methods and data of class {@code Character} are defined by
|
||||
* the information in the <i>UnicodeData</i> file that is part of the
|
||||
@ -2465,6 +2465,98 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
"CJK UNIFIED IDEOGRAPHS EXTENSION D",
|
||||
"CJKUNIFIEDIDEOGRAPHSEXTENSIOND");
|
||||
|
||||
/**
|
||||
* Constant for the "Arabic Extended-A" Unicode character block.
|
||||
* @since 1.8
|
||||
*/
|
||||
public static final UnicodeBlock ARABIC_EXTENDED_A =
|
||||
new UnicodeBlock("ARABIC_EXTENDED_A",
|
||||
"ARABIC EXTENDED-A",
|
||||
"ARABICEXTENDED-A");
|
||||
|
||||
/**
|
||||
* Constant for the "Sundanese Supplement" Unicode character block.
|
||||
* @since 1.8
|
||||
*/
|
||||
public static final UnicodeBlock SUNDANESE_SUPPLEMENT =
|
||||
new UnicodeBlock("SUNDANESE_SUPPLEMENT",
|
||||
"SUNDANESE SUPPLEMENT",
|
||||
"SUNDANESESUPPLEMENT");
|
||||
|
||||
/**
|
||||
* Constant for the "Meetei Mayek Extensions" Unicode character block.
|
||||
* @since 1.8
|
||||
*/
|
||||
public static final UnicodeBlock MEETEI_MAYEK_EXTENSIONS =
|
||||
new UnicodeBlock("MEETEI_MAYEK_EXTENSIONS",
|
||||
"MEETEI MAYEK EXTENSIONS",
|
||||
"MEETEIMAYEKEXTENSIONS");
|
||||
|
||||
/**
|
||||
* Constant for the "Meroitic Hieroglyphs" Unicode character block.
|
||||
* @since 1.8
|
||||
*/
|
||||
public static final UnicodeBlock MEROITIC_HIEROGLYPHS =
|
||||
new UnicodeBlock("MEROITIC_HIEROGLYPHS",
|
||||
"MEROITIC HIEROGLYPHS",
|
||||
"MEROITICHIEROGLYPHS");
|
||||
|
||||
/**
|
||||
* Constant for the "Meroitic Cursive" Unicode character block.
|
||||
* @since 1.8
|
||||
*/
|
||||
public static final UnicodeBlock MEROITIC_CURSIVE =
|
||||
new UnicodeBlock("MEROITIC_CURSIVE",
|
||||
"MEROITIC CURSIVE",
|
||||
"MEROITICCURSIVE");
|
||||
|
||||
/**
|
||||
* Constant for the "Sora Sompeng" Unicode character block.
|
||||
* @since 1.8
|
||||
*/
|
||||
public static final UnicodeBlock SORA_SOMPENG =
|
||||
new UnicodeBlock("SORA_SOMPENG",
|
||||
"SORA SOMPENG",
|
||||
"SORASOMPENG");
|
||||
|
||||
/**
|
||||
* Constant for the "Chakma" Unicode character block.
|
||||
* @since 1.8
|
||||
*/
|
||||
public static final UnicodeBlock CHAKMA =
|
||||
new UnicodeBlock("CHAKMA");
|
||||
|
||||
/**
|
||||
* Constant for the "Sharada" Unicode character block.
|
||||
* @since 1.8
|
||||
*/
|
||||
public static final UnicodeBlock SHARADA =
|
||||
new UnicodeBlock("SHARADA");
|
||||
|
||||
/**
|
||||
* Constant for the "Takri" Unicode character block.
|
||||
* @since 1.8
|
||||
*/
|
||||
public static final UnicodeBlock TAKRI =
|
||||
new UnicodeBlock("TAKRI");
|
||||
|
||||
/**
|
||||
* Constant for the "Miao" Unicode character block.
|
||||
* @since 1.8
|
||||
*/
|
||||
public static final UnicodeBlock MIAO =
|
||||
new UnicodeBlock("MIAO");
|
||||
|
||||
/**
|
||||
* Constant for the "Arabic Mathematical Alphabetic Symbols" Unicode
|
||||
* character block.
|
||||
* @since 1.8
|
||||
*/
|
||||
public static final UnicodeBlock ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS =
|
||||
new UnicodeBlock("ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS",
|
||||
"ARABIC MATHEMATICAL ALPHABETIC SYMBOLS",
|
||||
"ARABICMATHEMATICALALPHABETICSYMBOLS");
|
||||
|
||||
private static final int blockStarts[] = {
|
||||
0x0000, // 0000..007F; Basic Latin
|
||||
0x0080, // 0080..00FF; Latin-1 Supplement
|
||||
@ -2486,6 +2578,7 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
0x0800, // 0800..083F; Samaritan
|
||||
0x0840, // 0840..085F; Mandaic
|
||||
0x0860, // unassigned
|
||||
0x08A0, // 08A0..08FF; Arabic Extended-A
|
||||
0x0900, // 0900..097F; Devanagari
|
||||
0x0980, // 0980..09FF; Bengali
|
||||
0x0A00, // 0A00..0A7F; Gurmukhi
|
||||
@ -2528,6 +2621,7 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
0x1C00, // 1C00..1C4F; Lepcha
|
||||
0x1C50, // 1C50..1C7F; Ol Chiki
|
||||
0x1C80, // unassigned
|
||||
0x1CC0, // 1CC0..1CCF; Sundanese Supplement
|
||||
0x1CD0, // 1CD0..1CFF; Vedic Extensions
|
||||
0x1D00, // 1D00..1D7F; Phonetic Extensions
|
||||
0x1D80, // 1D80..1DBF; Phonetic Extensions Supplement
|
||||
@ -2605,7 +2699,7 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
0xAA00, // AA00..AA5F; Cham
|
||||
0xAA60, // AA60..AA7F; Myanmar Extended-A
|
||||
0xAA80, // AA80..AADF; Tai Viet
|
||||
0xAAE0, // unassigned
|
||||
0xAAE0, // AAE0..AAFF; Meetei Mayek Extensions
|
||||
0xAB00, // AB00..AB2F; Ethiopic Extended-A
|
||||
0xAB30, // unassigned
|
||||
0xABC0, // ABC0..ABFF; Meetei Mayek
|
||||
@ -2652,6 +2746,8 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
0x10900, // 10900..1091F; Phoenician
|
||||
0x10920, // 10920..1093F; Lydian
|
||||
0x10940, // unassigned
|
||||
0x10980, // 10980..1099F; Meroitic Hieroglyphs
|
||||
0x109A0, // 109A0..109FF; Meroitic Cursive
|
||||
0x10A00, // 10A00..10A5F; Kharoshthi
|
||||
0x10A60, // 10A60..10A7F; Old South Arabian
|
||||
0x10A80, // unassigned
|
||||
@ -2665,7 +2761,13 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
0x10E80, // unassigned
|
||||
0x11000, // 11000..1107F; Brahmi
|
||||
0x11080, // 11080..110CF; Kaithi
|
||||
0x110D0, // unassigned
|
||||
0x110D0, // 110D0..110FF; Sora Sompeng
|
||||
0x11100, // 11100..1114F; Chakma
|
||||
0x11150, // unassigned
|
||||
0x11180, // 11180..111DF; Sharada
|
||||
0x111E0, // unassigned
|
||||
0x11680, // 11680..116CF; Takri
|
||||
0x116D0, // unassigned
|
||||
0x12000, // 12000..123FF; Cuneiform
|
||||
0x12400, // 12400..1247F; Cuneiform Numbers and Punctuation
|
||||
0x12480, // unassigned
|
||||
@ -2673,6 +2775,8 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
0x13430, // unassigned
|
||||
0x16800, // 16800..16A3F; Bamum Supplement
|
||||
0x16A40, // unassigned
|
||||
0x16F00, // 16F00..16F9F; Miao
|
||||
0x16FA0, // unassigned
|
||||
0x1B000, // 1B000..1B0FF; Kana Supplement
|
||||
0x1B100, // unassigned
|
||||
0x1D000, // 1D000..1D0FF; Byzantine Musical Symbols
|
||||
@ -2684,6 +2788,8 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
0x1D380, // unassigned
|
||||
0x1D400, // 1D400..1D7FF; Mathematical Alphanumeric Symbols
|
||||
0x1D800, // unassigned
|
||||
0x1EE00, // 1EE00..1EEFF; Arabic Mathematical Alphabetic Symbols
|
||||
0x1EF00, // unassigned
|
||||
0x1F000, // 1F000..1F02F; Mahjong Tiles
|
||||
0x1F030, // 1F030..1F09F; Domino Tiles
|
||||
0x1F0A0, // 1F0A0..1F0FF; Playing Cards
|
||||
@ -2731,6 +2837,7 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
SAMARITAN,
|
||||
MANDAIC,
|
||||
null,
|
||||
ARABIC_EXTENDED_A,
|
||||
DEVANAGARI,
|
||||
BENGALI,
|
||||
GURMUKHI,
|
||||
@ -2773,6 +2880,7 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
LEPCHA,
|
||||
OL_CHIKI,
|
||||
null,
|
||||
SUNDANESE_SUPPLEMENT,
|
||||
VEDIC_EXTENSIONS,
|
||||
PHONETIC_EXTENSIONS,
|
||||
PHONETIC_EXTENSIONS_SUPPLEMENT,
|
||||
@ -2850,7 +2958,7 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
CHAM,
|
||||
MYANMAR_EXTENDED_A,
|
||||
TAI_VIET,
|
||||
null,
|
||||
MEETEI_MAYEK_EXTENSIONS,
|
||||
ETHIOPIC_EXTENDED_A,
|
||||
null,
|
||||
MEETEI_MAYEK,
|
||||
@ -2897,6 +3005,8 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
PHOENICIAN,
|
||||
LYDIAN,
|
||||
null,
|
||||
MEROITIC_HIEROGLYPHS,
|
||||
MEROITIC_CURSIVE,
|
||||
KHAROSHTHI,
|
||||
OLD_SOUTH_ARABIAN,
|
||||
null,
|
||||
@ -2910,6 +3020,12 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
null,
|
||||
BRAHMI,
|
||||
KAITHI,
|
||||
SORA_SOMPENG,
|
||||
CHAKMA,
|
||||
null,
|
||||
SHARADA,
|
||||
null,
|
||||
TAKRI,
|
||||
null,
|
||||
CUNEIFORM,
|
||||
CUNEIFORM_NUMBERS_AND_PUNCTUATION,
|
||||
@ -2918,6 +3034,8 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
null,
|
||||
BAMUM_SUPPLEMENT,
|
||||
null,
|
||||
MIAO,
|
||||
null,
|
||||
KANA_SUPPLEMENT,
|
||||
null,
|
||||
BYZANTINE_MUSICAL_SYMBOLS,
|
||||
@ -2929,6 +3047,8 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
null,
|
||||
MATHEMATICAL_ALPHANUMERIC_SYMBOLS,
|
||||
null,
|
||||
ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS,
|
||||
null,
|
||||
MAHJONG_TILES,
|
||||
DOMINO_TILES,
|
||||
PLAYING_CARDS,
|
||||
@ -3549,6 +3669,41 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
*/
|
||||
KAITHI,
|
||||
|
||||
/**
|
||||
* Unicode script "Meroitic Hieroglyphs".
|
||||
*/
|
||||
MEROITIC_HIEROGLYPHS,
|
||||
|
||||
/**
|
||||
* Unicode script "Meroitic Cursive".
|
||||
*/
|
||||
MEROITIC_CURSIVE,
|
||||
|
||||
/**
|
||||
* Unicode script "Sora Sompeng".
|
||||
*/
|
||||
SORA_SOMPENG,
|
||||
|
||||
/**
|
||||
* Unicode script "Chakma".
|
||||
*/
|
||||
CHAKMA,
|
||||
|
||||
/**
|
||||
* Unicode script "Sharada".
|
||||
*/
|
||||
SHARADA,
|
||||
|
||||
/**
|
||||
* Unicode script "Takri".
|
||||
*/
|
||||
TAKRI,
|
||||
|
||||
/**
|
||||
* Unicode script "Miao".
|
||||
*/
|
||||
MIAO,
|
||||
|
||||
/**
|
||||
* Unicode script "Unknown".
|
||||
*/
|
||||
@ -3616,14 +3771,13 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
0x0780, // 0780..07BF; THAANA
|
||||
0x07C0, // 07C0..07FF; NKO
|
||||
0x0800, // 0800..083F; SAMARITAN
|
||||
0x0840, // 0840..08FF; MANDAIC
|
||||
0x0840, // 0840..089F; MANDAIC
|
||||
0x08A0, // 08A0..08FF; ARABIC
|
||||
0x0900, // 0900..0950; DEVANAGARI
|
||||
0x0951, // 0951..0952; INHERITED
|
||||
0x0953, // 0953..0963; DEVANAGARI
|
||||
0x0964, // 0964..0965; COMMON
|
||||
0x0966, // 0966..096F; DEVANAGARI
|
||||
0x0970, // 0970..0970; COMMON
|
||||
0x0971, // 0971..0980; DEVANAGARI
|
||||
0x0966, // 0966..0980; DEVANAGARI
|
||||
0x0981, // 0981..0A00; BENGALI
|
||||
0x0A01, // 0A01..0A80; GURMUKHI
|
||||
0x0A81, // 0A81..0B00; GUJARATI
|
||||
@ -3674,7 +3828,8 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
0x1B80, // 1B80..1BBF; SUNDANESE
|
||||
0x1BC0, // 1BC0..1BFF; BATAK
|
||||
0x1C00, // 1C00..1C4F; LEPCHA
|
||||
0x1C50, // 1C50..1CCF; OL_CHIKI
|
||||
0x1C50, // 1C50..1CBF; OL_CHIKI
|
||||
0x1CC0, // 1CC0..1CCF; SUNDANESE
|
||||
0x1CD0, // 1CD0..1CD2; INHERITED
|
||||
0x1CD3, // 1CD3..1CD3; COMMON
|
||||
0x1CD4, // 1CD4..1CE0; INHERITED
|
||||
@ -3682,7 +3837,9 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
0x1CE2, // 1CE2..1CE8; INHERITED
|
||||
0x1CE9, // 1CE9..1CEC; COMMON
|
||||
0x1CED, // 1CED..1CED; INHERITED
|
||||
0x1CEE, // 1CEE..1CFF; COMMON
|
||||
0x1CEE, // 1CEE..1CF3; COMMON
|
||||
0x1CF4, // 1CF4..1CF4; INHERITED
|
||||
0x1CF5, // 1CF5..1CFF; COMMON
|
||||
0x1D00, // 1D00..1D25; LATIN
|
||||
0x1D26, // 1D26..1D2A; GREEK
|
||||
0x1D2B, // 1D2B..1D2B; CYRILLIC
|
||||
@ -3783,7 +3940,8 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
0xA980, // A980..A9FF; JAVANESE
|
||||
0xAA00, // AA00..AA5F; CHAM
|
||||
0xAA60, // AA60..AA7F; MYANMAR
|
||||
0xAA80, // AA80..AB00; TAI_VIET
|
||||
0xAA80, // AA80..AADF; TAI_VIET
|
||||
0xAAE0, // AAE0..AB00; MEETEI_MAYEK
|
||||
0xAB01, // AB01..ABBF; ETHIOPIC
|
||||
0xABC0, // ABC0..ABFF; MEETEI_MAYEK
|
||||
0xAC00, // AC00..D7FB; HANGUL
|
||||
@ -3829,7 +3987,9 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
0x10800, // 10800..1083F; CYPRIOT
|
||||
0x10840, // 10840..108FF; IMPERIAL_ARAMAIC
|
||||
0x10900, // 10900..1091F; PHOENICIAN
|
||||
0x10920, // 10920..109FF; LYDIAN
|
||||
0x10920, // 10920..1097F; LYDIAN
|
||||
0x10980, // 10980..1099F; MEROITIC_HIEROGLYPHS
|
||||
0x109A0, // 109A0..109FF; MEROITIC_CURSIVE
|
||||
0x10A00, // 10A00..10A5F; KHAROSHTHI
|
||||
0x10A60, // 10A60..10AFF; OLD_SOUTH_ARABIAN
|
||||
0x10B00, // 10B00..10B3F; AVESTAN
|
||||
@ -3838,10 +3998,15 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
0x10C00, // 10C00..10E5F; OLD_TURKIC
|
||||
0x10E60, // 10E60..10FFF; ARABIC
|
||||
0x11000, // 11000..1107F; BRAHMI
|
||||
0x11080, // 11080..11FFF; KAITHI
|
||||
0x11080, // 11080..110CF; KAITHI
|
||||
0x110D0, // 110D0..110FF; SORA_SOMPENG
|
||||
0x11100, // 11100..1117F; CHAKMA
|
||||
0x11180, // 11180..1167F; SHARADA
|
||||
0x11680, // 11680..116CF; TAKRI
|
||||
0x12000, // 12000..12FFF; CUNEIFORM
|
||||
0x13000, // 13000..167FF; EGYPTIAN_HIEROGLYPHS
|
||||
0x16800, // 16800..16A38; BAMUM
|
||||
0x16F00, // 16F00..16F9F; MIAO
|
||||
0x1B000, // 1B000..1B000; KATAKANA
|
||||
0x1B001, // 1B001..1CFFF; HIRAGANA
|
||||
0x1D000, // 1D000..1D166; COMMON
|
||||
@ -3854,7 +4019,9 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
0x1D1AA, // 1D1AA..1D1AD; INHERITED
|
||||
0x1D1AE, // 1D1AE..1D1FF; COMMON
|
||||
0x1D200, // 1D200..1D2FF; GREEK
|
||||
0x1D300, // 1D300..1F1FF; COMMON
|
||||
0x1D300, // 1D300..1EDFF; COMMON
|
||||
0x1EE00, // 1EE00..1EFFF; ARABIC
|
||||
0x1F000, // 1F000..1F1FF; COMMON
|
||||
0x1F200, // 1F200..1F200; HIRAGANA
|
||||
0x1F201, // 1F210..1FFFF; COMMON
|
||||
0x20000, // 20000..E0000; HAN
|
||||
@ -3927,13 +4094,12 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
NKO,
|
||||
SAMARITAN,
|
||||
MANDAIC,
|
||||
ARABIC,
|
||||
DEVANAGARI,
|
||||
INHERITED,
|
||||
DEVANAGARI,
|
||||
COMMON,
|
||||
DEVANAGARI,
|
||||
COMMON,
|
||||
DEVANAGARI,
|
||||
BENGALI,
|
||||
GURMUKHI,
|
||||
GUJARATI,
|
||||
@ -3985,6 +4151,9 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
BATAK,
|
||||
LEPCHA,
|
||||
OL_CHIKI,
|
||||
SUNDANESE,
|
||||
INHERITED,
|
||||
COMMON,
|
||||
INHERITED,
|
||||
COMMON,
|
||||
INHERITED,
|
||||
@ -4094,10 +4263,11 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
CHAM,
|
||||
MYANMAR,
|
||||
TAI_VIET,
|
||||
MEETEI_MAYEK,
|
||||
ETHIOPIC,
|
||||
MEETEI_MAYEK,
|
||||
HANGUL,
|
||||
UNKNOWN,
|
||||
UNKNOWN ,
|
||||
HAN,
|
||||
LATIN,
|
||||
ARMENIAN,
|
||||
@ -4140,6 +4310,8 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
IMPERIAL_ARAMAIC,
|
||||
PHOENICIAN,
|
||||
LYDIAN,
|
||||
MEROITIC_HIEROGLYPHS,
|
||||
MEROITIC_CURSIVE,
|
||||
KHAROSHTHI,
|
||||
OLD_SOUTH_ARABIAN,
|
||||
AVESTAN,
|
||||
@ -4149,9 +4321,14 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
ARABIC,
|
||||
BRAHMI,
|
||||
KAITHI,
|
||||
SORA_SOMPENG,
|
||||
CHAKMA,
|
||||
SHARADA,
|
||||
TAKRI,
|
||||
CUNEIFORM,
|
||||
EGYPTIAN_HIEROGLYPHS,
|
||||
BAMUM,
|
||||
MIAO,
|
||||
KATAKANA,
|
||||
HIRAGANA,
|
||||
COMMON,
|
||||
@ -4165,6 +4342,8 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
COMMON,
|
||||
GREEK,
|
||||
COMMON,
|
||||
ARABIC,
|
||||
COMMON,
|
||||
HIRAGANA,
|
||||
COMMON,
|
||||
HAN,
|
||||
@ -4189,6 +4368,7 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
aliases.put("BRAH", BRAHMI);
|
||||
aliases.put("BUGI", BUGINESE);
|
||||
aliases.put("BUHD", BUHID);
|
||||
aliases.put("CAKM", CHAKMA);
|
||||
aliases.put("CANS", CANADIAN_ABORIGINAL);
|
||||
aliases.put("CARI", CARIAN);
|
||||
aliases.put("CHAM", CHAM);
|
||||
@ -4231,6 +4411,8 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
aliases.put("LYCI", LYCIAN);
|
||||
aliases.put("LYDI", LYDIAN);
|
||||
aliases.put("MAND", MANDAIC);
|
||||
aliases.put("MERC", MEROITIC_CURSIVE);
|
||||
aliases.put("MERO", MEROITIC_HIEROGLYPHS);
|
||||
aliases.put("MLYM", MALAYALAM);
|
||||
aliases.put("MONG", MONGOLIAN);
|
||||
aliases.put("MTEI", MEETEI_MAYEK);
|
||||
@ -4242,6 +4424,7 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
aliases.put("ORYA", ORIYA);
|
||||
aliases.put("OSMA", OSMANYA);
|
||||
aliases.put("PHAG", PHAGS_PA);
|
||||
aliases.put("PLRD", MIAO);
|
||||
aliases.put("PHLI", INSCRIPTIONAL_PAHLAVI);
|
||||
aliases.put("PHNX", PHOENICIAN);
|
||||
aliases.put("PRTI", INSCRIPTIONAL_PARTHIAN);
|
||||
@ -4251,12 +4434,15 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
aliases.put("SARB", OLD_SOUTH_ARABIAN);
|
||||
aliases.put("SAUR", SAURASHTRA);
|
||||
aliases.put("SHAW", SHAVIAN);
|
||||
aliases.put("SHRD", SHARADA);
|
||||
aliases.put("SINH", SINHALA);
|
||||
aliases.put("SORA", SORA_SOMPENG);
|
||||
aliases.put("SUND", SUNDANESE);
|
||||
aliases.put("SYLO", SYLOTI_NAGRI);
|
||||
aliases.put("SYRC", SYRIAC);
|
||||
aliases.put("TAGB", TAGBANWA);
|
||||
aliases.put("TALE", TAI_LE);
|
||||
aliases.put("TAKR", TAKRI);
|
||||
aliases.put("TALU", NEW_TAI_LUE);
|
||||
aliases.put("TAML", TAMIL);
|
||||
aliases.put("TAVT", TAI_VIET);
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1994, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
* 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
|
||||
@ -1847,6 +1847,10 @@ public abstract class ClassLoader {
|
||||
if (loadLibrary0(fromClass, libfile)) {
|
||||
return;
|
||||
}
|
||||
libfile = ClassLoaderHelper.mapAlternativeName(libfile);
|
||||
if (libfile != null && loadLibrary0(fromClass, libfile)) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (loader != null) {
|
||||
for (int i = 0 ; i < usr_paths.length ; i++) {
|
||||
@ -1855,6 +1859,10 @@ public abstract class ClassLoader {
|
||||
if (loadLibrary0(fromClass, libfile)) {
|
||||
return;
|
||||
}
|
||||
libfile = ClassLoaderHelper.mapAlternativeName(libfile);
|
||||
if (libfile != null && loadLibrary0(fromClass, libfile)) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
// Oops, it failed
|
||||
|
@ -286,46 +286,47 @@ public final class Currency implements Serializable {
|
||||
|
||||
private static Currency getInstance(String currencyCode, int defaultFractionDigits,
|
||||
int numericCode) {
|
||||
// Try to look up the currency code in the instances table.
|
||||
// This does the null pointer check as a side effect.
|
||||
// Also, if there already is an entry, the currencyCode must be valid.
|
||||
Currency instance = instances.get(currencyCode);
|
||||
if (instance != null) {
|
||||
return instance;
|
||||
}
|
||||
// Try to look up the currency code in the instances table.
|
||||
// This does the null pointer check as a side effect.
|
||||
// Also, if there already is an entry, the currencyCode must be valid.
|
||||
Currency instance = instances.get(currencyCode);
|
||||
if (instance != null) {
|
||||
return instance;
|
||||
}
|
||||
|
||||
if (defaultFractionDigits == Integer.MIN_VALUE) {
|
||||
// Currency code not internally generated, need to verify first
|
||||
// A currency code must have 3 characters and exist in the main table
|
||||
// or in the list of other currencies.
|
||||
if (currencyCode.length() != 3) {
|
||||
if (defaultFractionDigits == Integer.MIN_VALUE) {
|
||||
// Currency code not internally generated, need to verify first
|
||||
// A currency code must have 3 characters and exist in the main table
|
||||
// or in the list of other currencies.
|
||||
if (currencyCode.length() != 3) {
|
||||
throw new IllegalArgumentException();
|
||||
}
|
||||
char char1 = currencyCode.charAt(0);
|
||||
char char2 = currencyCode.charAt(1);
|
||||
int tableEntry = getMainTableEntry(char1, char2);
|
||||
if ((tableEntry & COUNTRY_TYPE_MASK) == SIMPLE_CASE_COUNTRY_MASK
|
||||
&& tableEntry != INVALID_COUNTRY_ENTRY
|
||||
&& currencyCode.charAt(2) - 'A' == (tableEntry & SIMPLE_CASE_COUNTRY_FINAL_CHAR_MASK)) {
|
||||
defaultFractionDigits = (tableEntry & SIMPLE_CASE_COUNTRY_DEFAULT_DIGITS_MASK) >> SIMPLE_CASE_COUNTRY_DEFAULT_DIGITS_SHIFT;
|
||||
numericCode = (tableEntry & NUMERIC_CODE_MASK) >> NUMERIC_CODE_SHIFT;
|
||||
} else {
|
||||
// Check for '-' separately so we don't get false hits in the table.
|
||||
if (currencyCode.charAt(2) == '-') {
|
||||
throw new IllegalArgumentException();
|
||||
}
|
||||
char char1 = currencyCode.charAt(0);
|
||||
char char2 = currencyCode.charAt(1);
|
||||
int tableEntry = getMainTableEntry(char1, char2);
|
||||
if ((tableEntry & COUNTRY_TYPE_MASK) == SIMPLE_CASE_COUNTRY_MASK
|
||||
&& tableEntry != INVALID_COUNTRY_ENTRY
|
||||
&& currencyCode.charAt(2) - 'A' == (tableEntry & SIMPLE_CASE_COUNTRY_FINAL_CHAR_MASK)) {
|
||||
defaultFractionDigits = (tableEntry & SIMPLE_CASE_COUNTRY_DEFAULT_DIGITS_MASK) >> SIMPLE_CASE_COUNTRY_DEFAULT_DIGITS_SHIFT;
|
||||
numericCode = (tableEntry & NUMERIC_CODE_MASK) >> NUMERIC_CODE_SHIFT;
|
||||
} else {
|
||||
// Check for '-' separately so we don't get false hits in the table.
|
||||
if (currencyCode.charAt(2) == '-') {
|
||||
throw new IllegalArgumentException();
|
||||
}
|
||||
int index = otherCurrencies.indexOf(currencyCode);
|
||||
if (index == -1) {
|
||||
throw new IllegalArgumentException();
|
||||
}
|
||||
defaultFractionDigits = otherCurrenciesDFD[index / 4];
|
||||
numericCode = otherCurrenciesNumericCode[index / 4];
|
||||
int index = otherCurrencies.indexOf(currencyCode);
|
||||
if (index == -1) {
|
||||
throw new IllegalArgumentException();
|
||||
}
|
||||
defaultFractionDigits = otherCurrenciesDFD[index / 4];
|
||||
numericCode = otherCurrenciesNumericCode[index / 4];
|
||||
}
|
||||
}
|
||||
|
||||
instance = instances.putIfAbsent(currencyCode,
|
||||
new Currency(currencyCode, defaultFractionDigits, numericCode));
|
||||
return (instance != null ? instance : instances.get(currencyCode));
|
||||
Currency currencyVal =
|
||||
new Currency(currencyCode, defaultFractionDigits, numericCode);
|
||||
instance = instances.putIfAbsent(currencyCode, currencyVal);
|
||||
return (instance != null ? instance : currencyVal);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -359,17 +359,20 @@ public class JPopupMenu extends JComponent implements Accessible,MenuElement {
|
||||
int scrBottomY = scrBounds.y + scrHeight;
|
||||
|
||||
// Ensure that popup menu fits the screen
|
||||
if (popupRightX > (long)scrRightX) {
|
||||
if (popupRightX > (long) scrRightX) {
|
||||
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;
|
||||
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;
|
||||
|
@ -297,7 +297,7 @@ public class UIDefaults extends Hashtable<Object,Object>
|
||||
Map<String, Object> values = resourceCache.get(l);
|
||||
|
||||
if (values == null) {
|
||||
values = new HashMap<String, Object>();
|
||||
values = new TextAndMnemonicHashMap();
|
||||
for (int i=resourceBundles.size()-1; i >= 0; i--) {
|
||||
String bundleName = resourceBundles.get(i);
|
||||
try {
|
||||
@ -1215,4 +1215,120 @@ public class UIDefaults extends Hashtable<Object,Object>
|
||||
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() -
|
||||
(textRect.x - tabRect.x) - tabScroller.croppedEdge.getCroppedSideWidth();
|
||||
clippedTitle = SwingUtilities2.clipStringIfNecessary(null, metrics, title, availTextWidth);
|
||||
} else if (!scrollableTabLayoutEnabled() && isHorizontalTabPlacement()) {
|
||||
clippedTitle = SwingUtilities2.clipStringIfNecessary(null, metrics, title, textRect.width);
|
||||
}
|
||||
|
||||
paintText(g, tabPlacement, font, metrics,
|
||||
|
@ -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.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -774,12 +774,8 @@ final class AbstractTrustManagerWrapper extends X509ExtendedTrustManager
|
||||
// the delegated trust manager
|
||||
private final X509TrustManager tm;
|
||||
|
||||
// Cache the trusted certificate to optimize the performance.
|
||||
private final Collection<X509Certificate> trustedCerts = new HashSet<>();
|
||||
|
||||
AbstractTrustManagerWrapper(X509TrustManager tm) {
|
||||
this.tm = tm;
|
||||
Collections.addAll(trustedCerts, tm.getAcceptedIssuers());
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -920,6 +916,13 @@ final class AbstractTrustManagerWrapper extends X509ExtendedTrustManager
|
||||
try {
|
||||
// Does the certificate chain end with a trusted certificate?
|
||||
int checkedLength = chain.length - 1;
|
||||
|
||||
Collection<X509Certificate> trustedCerts = new HashSet<>();
|
||||
X509Certificate[] certs = tm.getAcceptedIssuers();
|
||||
if ((certs != null) && (certs.length > 0)){
|
||||
Collections.addAll(trustedCerts, certs);
|
||||
}
|
||||
|
||||
if (trustedCerts.contains(chain[checkedLength])) {
|
||||
checkedLength--;
|
||||
}
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -333,6 +333,7 @@ public final class TimeZoneNames extends TimeZoneNamesBundle {
|
||||
"French Guiana Summer Time", "GFST"}},
|
||||
{"America/Cayman", EST},
|
||||
{"America/Chihuahua", MST},
|
||||
{"America/Creston", MST},
|
||||
{"America/Coral_Harbour", EST},
|
||||
{"America/Cordoba", AGT},
|
||||
{"America/Costa_Rica", CST},
|
||||
@ -678,7 +679,7 @@ public final class TimeZoneNames extends TimeZoneNamesBundle {
|
||||
{"Europe/Istanbul", EET},
|
||||
{"Europe/Jersey", GMTBST},
|
||||
{"Europe/Kaliningrad", FET},
|
||||
{"Europe/Kiev", FET},
|
||||
{"Europe/Kiev", EET},
|
||||
{"Europe/Lisbon", WET},
|
||||
{"Europe/Ljubljana", CET},
|
||||
{"Europe/London", GMTBST},
|
||||
@ -699,14 +700,14 @@ public final class TimeZoneNames extends TimeZoneNamesBundle {
|
||||
"Samara Summer Time", "SAMST"}},
|
||||
{"Europe/San_Marino", CET},
|
||||
{"Europe/Sarajevo", CET},
|
||||
{"Europe/Simferopol", FET},
|
||||
{"Europe/Simferopol", EET},
|
||||
{"Europe/Skopje", CET},
|
||||
{"Europe/Sofia", EET},
|
||||
{"Europe/Stockholm", CET},
|
||||
{"Europe/Tallinn", EET},
|
||||
{"Europe/Tirane", CET},
|
||||
{"Europe/Tiraspol", EET},
|
||||
{"Europe/Uzhgorod", FET},
|
||||
{"Europe/Uzhgorod", EET},
|
||||
{"Europe/Vaduz", CET},
|
||||
{"Europe/Vatican", CET},
|
||||
{"Europe/Vienna", CET},
|
||||
@ -715,7 +716,7 @@ public final class TimeZoneNames extends TimeZoneNamesBundle {
|
||||
"Volgograd Summer Time", "VOLST"}},
|
||||
{"Europe/Warsaw", CET},
|
||||
{"Europe/Zagreb", CET},
|
||||
{"Europe/Zaporozhye", FET},
|
||||
{"Europe/Zaporozhye", EET},
|
||||
{"Europe/Zurich", CET},
|
||||
{"GB", GMTBST},
|
||||
{"GB-Eire", GMTBST},
|
||||
|
@ -333,6 +333,7 @@ public final class TimeZoneNames_de extends TimeZoneNamesBundle {
|
||||
"Franz\u00f6sisch-Guiana Sommerzeit", "GFST"}},
|
||||
{"America/Cayman", EST},
|
||||
{"America/Chihuahua", MST},
|
||||
{"America/Creston", MST},
|
||||
{"America/Coral_Harbour", EST},
|
||||
{"America/Cordoba", AGT},
|
||||
{"America/Costa_Rica", CST},
|
||||
@ -678,7 +679,7 @@ public final class TimeZoneNames_de extends TimeZoneNamesBundle {
|
||||
{"Europe/Istanbul", EET},
|
||||
{"Europe/Jersey", GMTBST},
|
||||
{"Europe/Kaliningrad", FET},
|
||||
{"Europe/Kiev", FET},
|
||||
{"Europe/Kiev", EET},
|
||||
{"Europe/Lisbon", WET},
|
||||
{"Europe/Ljubljana", CET},
|
||||
{"Europe/London", GMTBST},
|
||||
@ -699,14 +700,14 @@ public final class TimeZoneNames_de extends TimeZoneNamesBundle {
|
||||
"Samarische Sommerzeit", "SAMST"}},
|
||||
{"Europe/San_Marino", CET},
|
||||
{"Europe/Sarajevo", CET},
|
||||
{"Europe/Simferopol", FET},
|
||||
{"Europe/Simferopol", EET},
|
||||
{"Europe/Skopje", CET},
|
||||
{"Europe/Sofia", EET},
|
||||
{"Europe/Stockholm", CET},
|
||||
{"Europe/Tallinn", EET},
|
||||
{"Europe/Tirane", CET},
|
||||
{"Europe/Tiraspol", EET},
|
||||
{"Europe/Uzhgorod", FET},
|
||||
{"Europe/Uzhgorod", EET},
|
||||
{"Europe/Vaduz", CET},
|
||||
{"Europe/Vatican", CET},
|
||||
{"Europe/Vienna", CET},
|
||||
@ -715,7 +716,7 @@ public final class TimeZoneNames_de extends TimeZoneNamesBundle {
|
||||
"Wolgograder Sommerzeit", "VOLST"}},
|
||||
{"Europe/Warsaw", CET},
|
||||
{"Europe/Zagreb", CET},
|
||||
{"Europe/Zaporozhye", FET},
|
||||
{"Europe/Zaporozhye", EET},
|
||||
{"Europe/Zurich", CET},
|
||||
{"GB", GMTBST},
|
||||
{"GB-Eire", GMTBST},
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user