This commit is contained in:
Kelly O'Hair 2011-02-15 20:18:20 -08:00
commit 5e7327e608
221 changed files with 15881 additions and 17325 deletions

View file

@ -86,17 +86,25 @@ override INCREMENTAL_BUILD = false
# #
ifdef USING_CYGWIN ifdef USING_CYGWIN
# Macro to effectively do a toupper without an exec
define ToUpper
$(subst a,A,$(subst b,B,$(subst c,C,$(subst d,D,$(subst e,E,$(subst f,F,\
$(subst g,G,$(subst h,H,$(subst i,I,$(subst j,J,$(subst k,K,$(subst l,L,\
$(subst m,M,$(subst n,N,$(subst o,O,$(subst p,P,$(subst q,Q,$(subst r,R,\
$(subst s,S,$(subst t,T,$(subst u,U,$(subst v,V,$(subst w,W,$(subst x,X,\
$(subst y,Y,$(subst z,Z,$1))))))))))))))))))))))))))
endef
# All possible drive letters # All possible drive letters
drives=a b c d e f g h i j k l m n o p q r s t v u w x y z drives=a b c d e f g h i j k l m n o p q r s t v u w x y z
# Convert /cygdrive/ paths to the mixed style without an exec of cygpath # Convert /cygdrive/ paths to the mixed style without an exec of cygpath
# Must be a path with no spaces. # Must be a path with no spaces. /cygdrive/letter is always lowercase
# and letter:/ is always uppercase coming from cygpath.
define MixedPath define MixedPath
$(patsubst /%,c:/cygwin/%,$(sort $(filter-out /cygdrive/%,$(foreach drive,$(drives),$(patsubst /cygdrive/$(drive)/%,$(drive):/%,$1))))) $(patsubst /%,$(CYGWIN_HOME)/%,$(sort $(filter-out /cygdrive/%,$(foreach drive,$(drives),$(patsubst /cygdrive/$(drive)/%,$(call ToUpper,$(drive)):/%,$1)))))
endef endef
# Use FullPath to get C:/ style non-spaces path. Never ends with a /! # Use FullPath to get C:/ style non-spaces path. Never ends with a /!
# We assume cygpath is available in the search path # We assume cygpath is available in the search path
# NOTE: Use of 'pwd' with CYGWIN will not get you a mixed style path! # NOTE: Use of 'pwd' with CYGWIN will not get you a mixed style path!
CYGPATH_CMD=cygpath -a -s -m
define FullPath define FullPath
$(if $(word 2,$1),$(shell $(CYGPATH_CMD) $1 2> $(DEV_NULL)),$(call MixedPath,$(realpath $(subst ",,$1)))) $(if $(word 2,$1),$(shell $(CYGPATH_CMD) $1 2> $(DEV_NULL)),$(call MixedPath,$(realpath $(subst ",,$1))))
endef endef
@ -125,10 +133,15 @@ _system_drive:=$(call CheckValue,_system_drive,C:)
# UNIXCOMMAND_PATH: path to where the most common Unix commands are. # UNIXCOMMAND_PATH: path to where the most common Unix commands are.
# NOTE: Must end with / so that it could be empty, allowing PATH usage. # NOTE: Must end with / so that it could be empty, allowing PATH usage.
# With cygwin, just use this as is don't use FullPath on it.
ifdef ALT_UNIXCOMMAND_PATH ifdef ALT_UNIXCOMMAND_PATH
xALT_UNIXCOMMAND_PATH :="$(subst \,/,$(ALT_UNIXCOMMAND_PATH))" ifdef USING_CYGWIN
fxALT_UNIXCOMMAND_PATH :=$(call FullPath,$(xALT_UNIXCOMMAND_PATH)) UNIXCOMMAND_PATH :=$(call PrefixPath,$(ALT_UNIXCOMMAND_PATH))
UNIXCOMMAND_PATH :=$(call PrefixPath,$(fxALT_UNIXCOMMAND_PATH)) else
xALT_UNIXCOMMAND_PATH :="$(subst \,/,$(ALT_UNIXCOMMAND_PATH))"
fxALT_UNIXCOMMAND_PATH :=$(call FullPath,$(xALT_UNIXCOMMAND_PATH))
UNIXCOMMAND_PATH :=$(call PrefixPath,$(fxALT_UNIXCOMMAND_PATH))
endif
else else
ifdef USING_CYGWIN ifdef USING_CYGWIN
UNIXCOMMAND_PATH :=$(call PrefixPath,/usr/bin) UNIXCOMMAND_PATH :=$(call PrefixPath,/usr/bin)
@ -459,9 +472,11 @@ else
endif endif
# SLASH_JAVA: location of all network accessable files # SLASH_JAVA: location of all network accessable files
# NOTE: Do not use FullPath on this because it's often a drive letter and
# plain drive letters are ambiguous, so just use this 'as is'.
ifdef ALT_SLASH_JAVA ifdef ALT_SLASH_JAVA
xALT_SLASH_JAVA :="$(subst \,/,$(ALT_SLASH_JAVA))" xALT_SLASH_JAVA :="$(subst \,/,$(ALT_SLASH_JAVA))"
SLASH_JAVA :=$(call FullPath,$(xALT_SLASH_JAVA)) SLASH_JAVA :=$(xALT_SLASH_JAVA)
else else
ifdef ALT_JDK_JAVA_DRIVE ifdef ALT_JDK_JAVA_DRIVE
SLASH_JAVA =$(JDK_JAVA_DRIVE) SLASH_JAVA =$(JDK_JAVA_DRIVE)
@ -751,7 +766,11 @@ ifeq ($(VS2010_EXISTS),true)
# we do not or cannot redistribute. # we do not or cannot redistribute.
# List of filenames we should NOT be dependent on # List of filenames we should NOT be dependent on
BANNED_DLLS=msvcp100[.]dll|msvcr100d[.]dll|msvcrtd[.]dll ifeq ($(MFC_DEBUG),true)
BANNED_DLLS=msvcp100[.]dll
else
BANNED_DLLS=msvcp100[.]dll|msvcr100d[.]dll|msvcrtd[.]dll
endif
# Macro to check it's input file for banned dependencies and verify the # Macro to check it's input file for banned dependencies and verify the
# binary was built properly. Relies on process exit code. # binary was built properly. Relies on process exit code.
@ -771,7 +790,7 @@ define binary_file_verification # binary_file
fi ; \ fi ; \
$(ECHO) "Checking for banned dependencies in: $1" && \ $(ECHO) "Checking for banned dependencies in: $1" && \
if [ "`$(DUMPBIN) /dependents $1 | $(EGREP) -i '$(BANNED_DLLS)'`" != "" ] ; then \ if [ "`$(DUMPBIN) /dependents $1 | $(EGREP) -i '$(BANNED_DLLS)'`" != "" ] ; then \
$(ECHO) "ERROR: Found us of $(BANNED_DLLS)"; \ $(ECHO) "ERROR: Found use of $(BANNED_DLLS)"; \
$(DUMPBIN) /dependents $1 ; \ $(DUMPBIN) /dependents $1 ; \
exit 9 ; \ exit 9 ; \
fi ; \ fi ; \

View file

@ -54,11 +54,12 @@ include $(JDK_MAKE_SHARED_DIR)/Defs-utils.gmk
# Assumes ARCH, PLATFORM, ARCH_VM_SUBDIR, JDK_TOPDIR, etc. have been defined. # Assumes ARCH, PLATFORM, ARCH_VM_SUBDIR, JDK_TOPDIR, etc. have been defined.
# Simple pwd path # Simple pwd path
# NOTE: Just use the shell's cd and pwd here, more reliable at sanity time.
define PwdPath define PwdPath
$(shell $(CD) $1 2> $(DEV_NULL) && $(PWD)) $(shell cd $1 2> $(DEV_NULL) && pwd)
endef endef
define AbsPwdPathCheck define AbsPwdPathCheck
$(shell $(CD) .. 2> $(DEV_NULL) && $(CD) $1 2> $(DEV_NULL) && $(PWD)) $(shell cd .. 2> $(DEV_NULL) && cd $1 2> $(DEV_NULL) && pwd)
endef endef
# Checks an ALT value for spaces (should be one word), # Checks an ALT value for spaces (should be one word),

View file

@ -72,7 +72,11 @@ PLATFORM_SHARED=done
# USING_CYGWIN windows only: true or false # USING_CYGWIN windows only: true or false
# ISHIELD_TEMP_MIN windows only: minimum disk space in temp area # ISHIELD_TEMP_MIN windows only: minimum disk space in temp area
SYSTEM_UNAME := $(shell uname) # Only run uname once in this make session.
ifndef SYSTEM_UNAME
SYSTEM_UNAME := $(shell uname)
export SYSTEM_UNAME
endif
# #
# Prune out all known SCM (Source Code Management) directories # Prune out all known SCM (Source Code Management) directories
@ -222,6 +226,12 @@ ifneq (,$(findstring CYGWIN,$(SYSTEM_UNAME)))
PLATFORM = windows PLATFORM = windows
USING_CYGWIN = true USING_CYGWIN = true
export USING_CYGWIN export USING_CYGWIN
CYGPATH_CMD=cygpath -a -s -m
# Only run "cygpath /" once in this make session.
ifndef CYGWIN_HOME
CYGWIN_HOME := $(shell $(CYGPATH_CMD) /)
export CYGWIN_HOME
endif
endif endif
# Platform settings specific to Windows # Platform settings specific to Windows
@ -235,7 +245,12 @@ ifeq ($(PLATFORM), windows)
# And sometimes PROCESSOR_IDENTIFIER is not defined at all # And sometimes PROCESSOR_IDENTIFIER is not defined at all
# (in some restricted shells), so we use uname if we have to. # (in some restricted shells), so we use uname if we have to.
ifeq ($(PROCESSOR_IDENTIFIER),) ifeq ($(PROCESSOR_IDENTIFIER),)
PROC_ARCH:=$(shell uname -m) # Only run uname -m once in this make session.
ifndef SYSTEM_UNAME_M
SYSTEM_UNAME_M := $(shell uname -m)
export SYSTEM_UNAME_M
endif
PROC_ARCH:=$(SYSTEM_UNAME_M)
else else
PROC_ARCH:=$(word 1, $(PROCESSOR_IDENTIFIER)) PROC_ARCH:=$(word 1, $(PROCESSOR_IDENTIFIER))
endif endif

View file

@ -13,72 +13,72 @@
# #
# accessible roles # accessible roles
# #
alert=Warnmeldung alert=Alert
awtcomponent=AWT-Komponente awtcomponent=AWT-Komponente
checkbox=Kontrollk\u00e4stchen checkbox=Kontrollk\u00E4stchen
colorchooser=Farbauswahl colorchooser=Farbauswahl
columnheader=Spaltenkopf columnheader=Spalten-Header
combobox=Kombinationsfeld combobox=Kombinationsfeld
canvas=Leinwand canvas=Leinwand
desktopicon=Desktop-Symbol desktopicon=Desktopsymbol
desktoppane=Desktop-Bereich desktoppane=Desktopbereich
dialog=Dialogfeld dialog=Dialogfeld
directorypane=Verzeichnisbereich directorypane=Verzeichnisbereich
glasspane=Glasbereich glasspane=Glass Pane
filechooser=Dateiauswahl filechooser=Dateiauswahl
filler=F\u00fcllbereich filler=F\u00FCllbereich
frame=Rahmen frame=Rahmen
internalframe=Innerer Rahmen internalframe=Innerer Rahmen
label=Beschriftung label=Label
layeredpane=\u00dcberlagertes Teilfenster layeredpane=Layered Pane
list=Liste list=Liste
listitem=Listenelement listitem=Listenelement
menubar=Men\u00fcleiste menubar=Men\u00FCleiste
menu=Men\u00fc menu=Men\u00FC
menuitem=Men\u00fceintrag menuitem=Men\u00FCpunkt
optionpane=Optionsbereich optionpane=Optionsbereich
pagetab=Registerkarte pagetab=Registerkarte
pagetablist=Register pagetablist=Registerkartenliste
panel=Steuerbereich panel=Bereich
passwordtext=Passworttext passwordtext=Kennworttext
popupmenu=Popup-Men\u00fc popupmenu=Popup-Men\u00FC
progressbar=Fortschrittsanzeige progressbar=Fortschrittsbalken
pushbutton=Schaltfl\u00e4che pushbutton=Schaltfl\u00E4che
radiobutton=Optionsfeld radiobutton=Optionsfeld
rootpane=Root-Bereich rootpane=Root-Bereich
rowheader=Zeilenkopf rowheader=Zeilen-Header
scrollbar=Bildlaufleiste scrollbar=Bildlaufleiste
scrollpane=Bildlaufbereich scrollpane=Bildlaufbereich
separator=Trennzeichen separator=Trennzeichen
slider=Schieberegler slider=Schieberegler
splitpane=Geteilter Anzeigebereich splitpane=Split Pane
swingcomponent=Swing-Komponente swingcomponent=Swing-Komponente
table=Tabelle table=Tabelle
text=Text text=Text
tree=Baumstruktur tree=Baumstruktur
togglebutton=Umschaltfl\u00e4che togglebutton=Umschaltfl\u00E4che
toolbar=Symbolleiste toolbar=Symbolleiste
tooltip=QuickInfo tooltip=QuickInfo
unknown=Unbekannt unknown=Unbekannt
viewport=Anzeigeschnittstelle viewport=Viewport
window=Fenster window=Fenster
# #
# accessible relations # accessible relations
# #
labelFor=Beschriftung f\u00fcr labelFor=Label f\u00FCr
labeledBy=beschriftet von labeledBy=beschriftet von
memberOf=Mitglied von memberOf=Mitglied von
controlledBy=Gesteuert von controlledBy=controlledBy
controllerFor=Steuerung f\u00fcr controllerFor=controllerFor
# #
# accessible states # accessible states
# #
active=aktiv active=aktiv
armed=aktiviert armed=aktiviert
busy=belegt busy=ausgelastet
checked=markiert checked=markiert
collapsed=ausgeblendet collapsed=ausgeblendet
editable=editierbar editable=bearbeitbar
expandable=erweiterbar expandable=erweiterbar
expanded=eingeblendet expanded=eingeblendet
enabled=aktiviert enabled=aktiviert
@ -87,15 +87,15 @@ focused=fokussiert
iconified=minimiert iconified=minimiert
modal=modal modal=modal
multiline=mehrzeilig multiline=mehrzeilig
multiselectable=mehrfach ausw\u00e4hlbar multiselectable=mehrfach ausw\u00E4hlbar
opaque=verdeckt opaque=nicht transparent
pressed=gedr\u00fcckt pressed=gedr\u00FCckt
resizable=skalierbar resizable=skalierbar
selectable=w\u00e4hlbar selectable=w\u00E4hlbar
selected=ausgew\u00e4hlt selected=ausgew\u00E4hlt
showing=angezeigt showing=angezeigt
singleline=einzeilig singleline=einzeilig
transient=tempor\u00e4r transient=transient
visible=sichtbar visible=sichtbar
vertical=vertikal vertical=vertikal
horizontal=horizontal horizontal=horizontal
@ -109,10 +109,10 @@ toggle expand=ein-/ausblenden
# #
# accessible relations # accessible relations
# #
flowsTo=flie\u00dft zu flowsTo=flie\u00DFt zu
flowsFrom=flie\u00dft von flowsFrom=flie\u00DFt von
subwindowOf=Unterfenster von subwindowOf=Unterfenster von
parentWindowOf=\u00fcbergeordnetes Fenster von parentWindowOf=\u00FCbergeordnetes Fenster von
embeds=bettet ein embeds=bettet ein
embeddedBy=eingebettet in embeddedBy=eingebettet in
childNodeOf=untergeordneter Knoten von childNodeOf=untergeordneter Knoten von
@ -120,8 +120,8 @@ childNodeOf=untergeordneter Knoten von
# #
# accessible roles # accessible roles
# #
header=Kopfzeile header=Header
footer=Fu\u00dfzeile footer=Footer
paragraph=Absatz paragraph=Absatz
ruler=Lineal ruler=Lineal
editbar=Bearbeitungsleiste editbar=Bearbeitungsleiste
@ -130,9 +130,9 @@ progressMonitor=Fortschrittsmonitor
# #
# accessible states # accessible states
# #
managesDescendants=verwaltet abgeleitete Objekte managesDescendants=verwaltet untergeordnete Objekte
indeterminate=unbestimmt indeterminate=unbestimmt
truncated=gek\u00fcrzt truncated=abgeschnitten
# new for J2SE 1.6.0 # new for J2SE 1.6.0

View file

@ -14,53 +14,53 @@
# accessible roles # accessible roles
# #
alert=alerta alert=alerta
awtcomponent=Componente AWT awtcomponent=componente AWT
checkbox=casilla de verificaci\u00f3n checkbox=casilla de control
colorchooser=selector de color colorchooser=selector de color
columnheader=cabecera de columna columnheader=cabecera de columna
combobox=cuadro combinado combobox=cuadro combinado
canvas=superficie canvas=lienzo
desktopicon=icono de escritorio desktopicon=icono de escritorio
desktoppane=tablero de escritorio desktoppane=panel de escritorio
dialog=cuadro de di\u00e1logo dialog=cuadro de di\u00E1logo
directorypane=tablero de directorio directorypane=panel de directorio
glasspane=tablero de cristal glasspane=panel de cristal
filechooser=selector de archivos filechooser=selector de archivos
filler=rellenador filler=rellenador
frame=marco frame=marco
internalframe=marco interno internalframe=marco interno
label=etiqueta label=etiqueta
layeredpane=tablero en capas layeredpane=panel en capas
list=lista list=lista
listitem=elemento de lista listitem=elemento de lista
menubar=barra de men\u00fas menubar=barra de men\u00FAs
menu=men\u00fa menu=men\u00FA
menuitem=elemento de men\u00fa menuitem=elemento de men\u00FA
optionpane=tablero de opciones optionpane=panel de opciones
pagetab=pesta\u00f1a de p\u00e1gina pagetab=separador de p\u00E1gina
pagetablist=lista de pesta\u00f1as de p\u00e1gina pagetablist=lista de separadores de p\u00E1gina
panel=panel panel=panel
passwordtext=texto de contrase\u00f1a passwordtext=texto de contrase\u00F1a
popupmenu=men\u00fa emergente popupmenu=men\u00FA emergente
progressbar=barra de progreso progressbar=barra de progreso
pushbutton=bot\u00f3n de acci\u00f3n pushbutton=bot\u00F3n
radiobutton=bot\u00f3n de radio radiobutton=bot\u00F3n de radio
rootpane=tablero ra\u00edz rootpane=panel ra\u00EDz
rowheader=cabecera de filas rowheader=cabecera de filas
scrollbar=barra de desplazamiento scrollbar=barra de desplazamiento
scrollpane=tablero de desplazamiento scrollpane=panel de desplazamiento
separator=separador separator=separador
slider=deslizador slider=deslizador
splitpane=tablero de divisi\u00f3n splitpane=panel de divisi\u00F3n
swingcomponent=componente swing swingcomponent=componente swing
table=tabla table=tabla
text=texto text=texto
tree=\u00e1rbol tree=\u00E1rbol
togglebutton=bot\u00f3n conmutador togglebutton=bot\u00F3n conmutador
toolbar=barra de herramientas toolbar=barra de herramientas
tooltip=consejo de herramienta tooltip=ayuda de burbuja
unknown=desconocido unknown=desconocido
viewport=puerto de vista viewport=viewport
window=ventana window=ventana
# #
# accessible relations # accessible relations
@ -68,25 +68,25 @@ window=ventana
labelFor=etiqueta para labelFor=etiqueta para
labeledBy=etiquetado por labeledBy=etiquetado por
memberOf=miembro de memberOf=miembro de
controlledBy=controlado por controlledBy=controlledBy
controllerFor=controlador de controllerFor=controllerFor
# #
# accessible states # accessible states
# #
active=activo active=activo
armed=armado armed=armado
busy=ocupado busy=ocupado
checked=marcado checked=activado
collapsed=contra\u00eddo collapsed=reducido
editable=editable editable=editable
expandable=ampliable expandable=ampliable
expanded=ampliado expanded=ampliado
enabled=habilitado enabled=activado
focusable=enfocable focusable=enfocable
focused=enfocado focused=enfocado
iconified=convertido en icono iconified=convertido en icono
modal=modal modal=modal
multiline=l\u00ednea m\u00faltiple multiline=l\u00EDnea m\u00FAltiple
multiselectable=multiseleccionable multiselectable=multiseleccionable
opaque=opaco opaque=opaco
pressed=pulsado pressed=pulsado
@ -94,15 +94,15 @@ resizable=redimensionable
selectable=seleccionable selectable=seleccionable
selected=seleccionado selected=seleccionado
showing=mostrando showing=mostrando
singleline=l\u00ednea \u00fanica singleline=l\u00EDnea \u00FAnica
transient=temporal transient=transitorio
visible=visible visible=visible
vertical=vertical vertical=vertical
horizontal=horizontal horizontal=horizontal
# #
# accessible actions # accessible actions
# #
toggle expand=activar/desactivar ampliaci\u00f3n toggle expand=activar/desactivar ampliaci\u00F3n
# new relations, roles and states for J2SE 1.5.0 # new relations, roles and states for J2SE 1.5.0
@ -112,9 +112,9 @@ toggle expand=activar/desactivar ampliaci\u00f3n
flowsTo=llega a flowsTo=llega a
flowsFrom=procede de flowsFrom=procede de
subwindowOf=ventana subordinada de subwindowOf=ventana subordinada de
parentWindowOf=ventana superior de parentWindowOf=ventana principal de
embeds=incluye embeds=embebe
embeddedBy=se incluye en embeddedBy=embebido por
childNodeOf=nodo secundario de childNodeOf=nodo secundario de
# #
@ -122,15 +122,15 @@ childNodeOf=nodo secundario de
# #
header=cabecera header=cabecera
footer=pie footer=pie
paragraph=p\u00e1rrafo paragraph=p\u00E1rrafo
ruler=regla ruler=regla
editbar=barra de edici\u00f3n editbar=barra de edici\u00F3n
progressMonitor=monitor de progresi\u00f3n progressMonitor=monitor de progreso
# #
# accessible states # accessible states
# #
managesDescendants=gestiona objetos subordinados managesDescendants=gestiona descendientes
indeterminate=indeterminado indeterminate=indeterminado
truncated=truncado truncated=truncado

View file

@ -14,95 +14,95 @@
# accessible roles # accessible roles
# #
alert=alerte alert=alerte
awtcomponent=Composant AWT awtcomponent=composant AWT
checkbox=case \u00e0 cocher checkbox=case \u00E0 cocher
colorchooser=s\u00e9lecteur de couleurs colorchooser=s\u00E9lecteur de couleurs
columnheader=en-t\u00eate de colonne columnheader=en-t\u00EAte de colonne
combobox=bo\u00eete de dialogue mixte combobox=liste d\u00E9roulante
canvas=canevas canvas=canevas
desktopicon=ic\u00f4ne de bureau desktopicon=ic\u00F4ne de bureau
desktoppane=sous-fen\u00eatre de bureau desktoppane=panneau de bureau
dialog=bo\u00eete de dialogue dialog=bo\u00EEte de dialogue
directorypane=sous-fen\u00eatre de r\u00e9pertoires directorypane=panneau de r\u00E9pertoires
glasspane=sous-fen\u00eatre de grossissement glasspane=panneau de grossissement
filechooser=s\u00e9lecteur de fichiers filechooser=s\u00E9lecteur de fichiers
filler=\u00e9l\u00e9ment de remplissage filler=\u00E9l\u00E9ment de remplissage
frame=cadre frame=cadre
internalframe=cadre interne internalframe=cadre interne
label=\u00e9tiquette label=libell\u00E9
layeredpane=sous-fen\u00eatre superpos\u00e9e layeredpane=panneau superpos\u00E9
list=liste list=liste
listitem=\u00e9l\u00e9ment de liste listitem=\u00E9l\u00E9ment de liste
menubar=barre de menus menubar=barre de menus
menu=menu menu=menu
menuitem=option de menu menuitem=option de menu
optionpane=sous-fen\u00eatre d''options optionpane=panneau d'options
pagetab=onglet de page pagetab=onglet de page
pagetablist=liste d''onglets de page pagetablist=liste d'onglets de page
panel=panneau panel=panneau
passwordtext=texte de mot de passe passwordtext=texte de mot de passe
popupmenu=menu contextuel popupmenu=menu contextuel
progressbar=barre de progression progressbar=barre de progression
pushbutton=bouton poussoir pushbutton=bouton
radiobutton=bouton radio radiobutton=bouton radio
rootpane=sous-fen\u00eatre racine rootpane=panneau racine
rowheader=en-t\u00eate de ligne rowheader=en-t\u00EAte de ligne
scrollbar=barre de d\u00e9filement scrollbar=barre de d\u00E9filement
scrollpane=sous-fen\u00eatre de d\u00e9filement scrollpane=panneau de d\u00E9filement
separator=s\u00e9parateur separator=s\u00E9parateur
slider=curseur slider=curseur
splitpane=sous-fen\u00eatre divis\u00e9e splitpane=panneau divis\u00E9
swingcomponent=composant de bascule swingcomponent=composant Swing
table=tableau table=tableau
text=texte text=texte
tree=arbre tree=arborescence
togglebutton=bouton de basculement togglebutton=bouton de basculement
toolbar=barre d''outils toolbar=barre d'outils
tooltip=info-bulle tooltip=info-bulle
unknown=inconnu unknown=inconnu
viewport=cl\u00f4ture viewport=lucarne
window=fen\u00eatre window=fen\u00EAtre
# #
# accessible relations # accessible relations
# #
labelFor=\u00e9tiquette de labelFor=libell\u00E9 de
labeledBy=libell\u00e9(e) par labeledBy=libell\u00E9 par
memberOf=membre de memberOf=membre de
controlledBy=contr\u00f4l\u00e9 par controlledBy=contr\u00F4l\u00E9 par
controllerFor=contr\u00f4leur pour controllerFor=contr\u00F4leur pour
# #
# accessible states # accessible states
# #
active=actif(ve) active=actif
armed=arm\u00e9(e) armed=arm\u00E9
busy=occup\u00e9(e) busy=occup\u00E9
checked=coch\u00e9e checked=coch\u00E9
collapsed=r\u00e9duit(e) collapsed=r\u00E9duit
editable=modifiable editable=modifiable
expandable=extensible expandable=extensible
expanded=d\u00e9velopp\u00e9(e) expanded=d\u00E9velopp\u00E9
enabled=activ\u00e9(e) enabled=activ\u00E9
focusable=zone d''entr\u00e9e possible focusable=zone d'entr\u00E9e possible
focused=avec zone d''entr\u00e9e focused=avec zone d'entr\u00E9e
iconified=r\u00e9duit(e) \u00e0 une ic\u00f4ne iconified=r\u00E9duit \u00E0 une ic\u00F4ne
modal=modal(e) modal=modal
multiline=ligne multiple multiline=ligne multiple
multiselectable=multis\u00e9lectionnable multiselectable=multis\u00E9lectionnable
opaque=opaque opaque=opaque
pressed=enfonc\u00e9 pressed=enfonc\u00E9
resizable=redimensionnable resizable=redimensionnable
selectable=s\u00e9lectionnable selectable=s\u00E9lectionnable
selected=s\u00e9lectionn\u00e9(e) selected=s\u00E9lectionn\u00E9
showing=montrant showing=montrant
singleline=ligne unique singleline=ligne unique
transient=transitoire transient=non persistant
visible=visible visible=visible
vertical=vertical(e) vertical=vertical
horizontal=horizontal(e) horizontal=horizontal
# #
# accessible actions # accessible actions
# #
toggle expand=basculer le d\u00e9veloppement toggle expand=basculer le d\u00E9veloppement
# new relations, roles and states for J2SE 1.5.0 # new relations, roles and states for J2SE 1.5.0
@ -111,35 +111,35 @@ toggle expand=basculer le d\u00e9veloppement
# #
flowsTo=flux vers flowsTo=flux vers
flowsFrom=flux depuis flowsFrom=flux depuis
subwindowOf=sous-fen\u00eatre de subwindowOf=sous-fen\u00EAtre de
parentWindowOf=fen\u00eatre parente de parentWindowOf=fen\u00EAtre parente de
embeds=incorpore embeds=incorpore
embeddedBy=incorpor\u00e9 par embeddedBy=incorpor\u00E9 par
childNodeOf=n\u0153ud enfant de childNodeOf=noeud enfant de
# #
# accessible roles # accessible roles
# #
header=en-t\u00eate header=en-t\u00EAte
footer=pied de page footer=pied de page
paragraph=paragraphe paragraph=paragraphe
ruler=r\u00e8gle ruler=r\u00E8gle
editbar=barre d'\u00e9dition editbar=barre d'\u00E9dition
progressMonitor=contr\u00f4le de la progression progressMonitor=contr\u00F4le de la progression
# #
# accessible states # accessible states
# #
managesDescendants=g\u00e8re les descendants managesDescendants=g\u00E8re les descendants
indeterminate=ind\u00e9termin\u00e9 indeterminate=ind\u00E9termin\u00E9
truncated=tronqu\u00e9 truncated=tronqu\u00E9
# new for J2SE 1.6.0 # new for J2SE 1.6.0
# #
# accessible roles # accessible roles
# #
htmlcontainer=Conteneur HTML htmlcontainer=conteneur HTML
# #
# END OF MATERIAL TO LOCALIZE # END OF MATERIAL TO LOCALIZE

View file

@ -13,45 +13,45 @@
# #
# accessible roles # accessible roles
# #
alert=allarme alert=avviso
awtcomponent=componente AWT awtcomponent=componente AWT
checkbox=casella di controllo checkbox=casella di controllo
colorchooser=selezione colori colorchooser=selezione colori
columnheader=intestazione colonna columnheader=intestazione colonna
combobox=casella combobox=casella combinata
canvas=area di disegno canvas=sfondo
desktopicon=icona del desktop desktopicon=icona desktop
desktoppane=sottofinestra del desktop desktoppane=riquadro desktop
dialog=finestra di dialogo dialog=finestra di dialogo
directorypane=sottofinestra della directory directorypane=riquadro directory
glasspane=sottofinestra trasparente glasspane=riquadro trasparente
filechooser=selezione file filechooser=selezione file
filler=utilit\u00e0 riempimento filler=utilit\u00E0 riempimento
frame=cornice frame=cornice
internalframe=cornice interna internalframe=cornice interna
label=etichetta label=etichetta
layeredpane=sottofinestra a livelli layeredpane=riquadro a livelli
list=elenco list=lista
listitem=voce di elenco listitem=voce lista
menubar=barra dei menu menubar=barra dei menu
menu=menu menu=menu
menuitem=voce di menu menuitem=voce di menu
optionpane=sottofinestra delle opzioni optionpane=riquadro opzioni
pagetab=scheda pagina pagetab=scheda pagina
pagetablist=elenco schede pagina pagetablist=lista schede pagina
panel=pannello panel=pannello
passwordtext=testo della password passwordtext=testo della password
popupmenu=menu a comparsa popupmenu=menu popup
progressbar=barra di avanzamento progressbar=barra di avanzamento
pushbutton=pulsante pushbutton=pulsante
radiobutton=pulsante di scelta radiobutton=pulsante di scelta
rootpane=sottofinestra root rootpane=riquadro root
rowheader=intestazione di riga rowheader=intestazione di riga
scrollbar=barra di scorrimento scrollbar=barra di scorrimento
scrollpane=scorri sottofinestra scrollpane=riquadro scorrimento
separator=separatore separator=separatore
slider=cursore slider=dispositivo di scorrimento
splitpane=sottofinestra doppia splitpane=riquadro doppio
swingcomponent=componente swing swingcomponent=componente swing
table=tabella table=tabella
text=testo text=testo
@ -68,8 +68,8 @@ window=finestra
labelFor=etichetta per labelFor=etichetta per
labeledBy=etichetta di labeledBy=etichetta di
memberOf=membro di memberOf=membro di
controlledBy=controllato da controlledBy=controlledBy
controllerFor=controllore per controllerFor=controllerFor
# #
# accessible states # accessible states
# #
@ -77,11 +77,11 @@ active=attivo
armed=abilitato armed=abilitato
busy=occupato busy=occupato
checked=verificato checked=verificato
collapsed=ingrandito collapsed=compresso
editable=modificabile editable=modificabile
expandable=espandibile expandable=espandibile
expanded=espanso expanded=espanso
enabled=attivato enabled=abilitato
focusable=attivabile in primo piano focusable=attivabile in primo piano
focused=in primo piano focused=in primo piano
iconified=ridotto a icona iconified=ridotto a icona
@ -121,7 +121,7 @@ childNodeOf=nodo figlio di
# accessible roles # accessible roles
# #
header=intestazione header=intestazione
footer=pi\u00e8 di pagina footer=pi\u00E8 di pagina
paragraph=paragrafo paragraph=paragrafo
ruler=righello ruler=righello
editbar=barra di modifica editbar=barra di modifica

View file

@ -13,133 +13,133 @@
# #
# accessible roles # accessible roles
# #
alert=\u8b66\u544a alert=\u30A2\u30E9\u30FC\u30C8
awtcomponent=AWT \u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8 awtcomponent=AWT\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8
checkbox=\u30c1\u30a7\u30c3\u30af\u30dc\u30c3\u30af\u30b9 checkbox=\u30C1\u30A7\u30C3\u30AF\u30FB\u30DC\u30C3\u30AF\u30B9
colorchooser=\u30ab\u30e9\u30fc\u30c1\u30e5\u30fc\u30b6 colorchooser=\u30AB\u30E9\u30FC\u30FB\u30C1\u30E5\u30FC\u30B6
columnheader=\u5217\u30d8\u30c3\u30c0 columnheader=\u5217\u30D8\u30C3\u30C0\u30FC
combobox=\u30b3\u30f3\u30dc\u30dc\u30c3\u30af\u30b9 combobox=\u30B3\u30F3\u30DC\u30FB\u30DC\u30C3\u30AF\u30B9
canvas=\u30ad\u30e3\u30f3\u30d0\u30b9 canvas=\u30AD\u30E3\u30F3\u30D0\u30B9
desktopicon=\u30c7\u30b9\u30af\u30c8\u30c3\u30d7\u30a2\u30a4\u30b3\u30f3 desktopicon=\u30C7\u30B9\u30AF\u30C8\u30C3\u30D7\u30FB\u30A2\u30A4\u30B3\u30F3
desktoppane=\u30c7\u30b9\u30af\u30c8\u30c3\u30d7\u533a\u753b desktoppane=\u30C7\u30B9\u30AF\u30C8\u30C3\u30D7\u533A\u753B
dialog=\u30c0\u30a4\u30a2\u30ed\u30b0 dialog=\u30C0\u30A4\u30A2\u30ED\u30B0
directorypane=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u533a\u753b directorypane=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u533A\u753B
glasspane=\u30ac\u30e9\u30b9\u533a\u753b glasspane=\u30AC\u30E9\u30B9\u533A\u753B
filechooser=\u30d5\u30a1\u30a4\u30eb\u30c1\u30e5\u30fc\u30b6 filechooser=\u30D5\u30A1\u30A4\u30EB\u30FB\u30C1\u30E5\u30FC\u30B6
filler=\u30d5\u30a3\u30e9\u30fc filler=\u30D5\u30A3\u30E9\u30FC
frame=\u30d5\u30ec\u30fc\u30e0 frame=\u30D5\u30EC\u30FC\u30E0
internalframe=\u5185\u90e8\u30d5\u30ec\u30fc\u30e0 internalframe=\u5185\u90E8\u30D5\u30EC\u30FC\u30E0
label=\u30e9\u30d9\u30eb label=\u30E9\u30D9\u30EB
layeredpane=\u968e\u5c64\u5316\u3055\u308c\u305f\u533a\u753b layeredpane=\u968E\u5C64\u5316\u3055\u308C\u305F\u533A\u753B
list=\u30ea\u30b9\u30c8 list=\u30EA\u30B9\u30C8
listitem=\u30ea\u30b9\u30c8\u9805\u76ee listitem=\u30EA\u30B9\u30C8\u9805\u76EE
menubar=\u30e1\u30cb\u30e5\u30fc\u30d0\u30fc menubar=\u30E1\u30CB\u30E5\u30FC\u30FB\u30D0\u30FC
menu=\u30e1\u30cb\u30e5\u30fc menu=\u30E1\u30CB\u30E5\u30FC
menuitem=\u30e1\u30cb\u30e5\u30fc\u9805\u76ee menuitem=\u30E1\u30CB\u30E5\u30FC\u9805\u76EE
optionpane=\u30aa\u30d7\u30b7\u30e7\u30f3\u533a\u753b optionpane=\u30AA\u30D7\u30B7\u30E7\u30F3\u533A\u753B
pagetab=\u30da\u30fc\u30b8\u30bf\u30d6 pagetab=\u30DA\u30FC\u30B8\u30FB\u30BF\u30D6
pagetablist=\u30da\u30fc\u30b8\u30bf\u30d6\u30ea\u30b9\u30c8 pagetablist=\u30DA\u30FC\u30B8\u30FB\u30BF\u30D6\u30FB\u30EA\u30B9\u30C8
panel=\u30d1\u30cd\u30eb panel=\u30D1\u30CD\u30EB
passwordtext=\u30d1\u30b9\u30ef\u30fc\u30c9\u30c6\u30ad\u30b9\u30c8 passwordtext=\u30D1\u30B9\u30EF\u30FC\u30C9\u30FB\u30C6\u30AD\u30B9\u30C8
popupmenu=\u30dd\u30c3\u30d7\u30a2\u30c3\u30d7\u30e1\u30cb\u30e5\u30fc popupmenu=\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7\u30FB\u30E1\u30CB\u30E5\u30FC
progressbar=\u9032\u6357\u30d0\u30fc progressbar=\u9032\u6357\u30D0\u30FC
pushbutton=\u30d7\u30c3\u30b7\u30e5\u30dc\u30bf\u30f3 pushbutton=\u30D7\u30C3\u30B7\u30E5\u30FB\u30DC\u30BF\u30F3
radiobutton=\u30e9\u30b8\u30aa\u30dc\u30bf\u30f3 radiobutton=\u30E9\u30B8\u30AA\u30FB\u30DC\u30BF\u30F3
rootpane=\u30eb\u30fc\u30c8\u533a\u753b rootpane=\u30EB\u30FC\u30C8\u533A\u753B
rowheader=\u884c\u30d8\u30c3\u30c0 rowheader=\u884C\u30D8\u30C3\u30C0\u30FC
scrollbar=\u30b9\u30af\u30ed\u30fc\u30eb\u30d0\u30fc scrollbar=\u30B9\u30AF\u30ED\u30FC\u30EB\u30FB\u30D0\u30FC
scrollpane=\u30b9\u30af\u30ed\u30fc\u30eb\u533a\u753b scrollpane=\u30B9\u30AF\u30ED\u30FC\u30EB\u533A\u753B
separator=\u30bb\u30d1\u30ec\u30fc\u30bf separator=\u30BB\u30D1\u30EC\u30FC\u30BF
slider=\u30b9\u30e9\u30a4\u30c0 slider=\u30B9\u30E9\u30A4\u30C0
splitpane=\u5206\u5272\u533a\u753b splitpane=\u5206\u5272\u533A\u753B
swingcomponent=Swing \u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8 swingcomponent=Swing\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8
table=\u30c6\u30fc\u30d6\u30eb table=\u8868
text=\u30c6\u30ad\u30b9\u30c8 text=\u30C6\u30AD\u30B9\u30C8
tree=\u30c4\u30ea\u30fc tree=\u30C4\u30EA\u30FC
togglebutton=\u30c8\u30b0\u30eb\u30dc\u30bf\u30f3 togglebutton=\u30C8\u30B0\u30EB\u30FB\u30DC\u30BF\u30F3
toolbar=\u30c4\u30fc\u30eb\u30d0\u30fc toolbar=\u30C4\u30FC\u30EB\u30D0\u30FC
tooltip=\u30c4\u30fc\u30eb\u30d2\u30f3\u30c8 tooltip=\u30C4\u30FC\u30EB\u30C1\u30C3\u30D7
unknown=\u672a\u77e5 unknown=\u4E0D\u660E
viewport=\u30d3\u30e5\u30fc\u30dd\u30fc\u30c8 viewport=\u30D3\u30E5\u30FC\u30DD\u30FC\u30C8
window=\u30a6\u30a3\u30f3\u30c9\u30a6 window=\u30A6\u30A3\u30F3\u30C9\u30A6
# #
# accessible relations # accessible relations
# #
labelFor=\u30e9\u30d9\u30eb\u5143 labelFor=label for
labeledBy=\u30e9\u30d9\u30eb\u5148 labeledBy=labeled by
memberOf=\u6240\u5c5e\u30e1\u30f3\u30d0 memberOf=member of
controlledBy=\u5236\u5fa1\u5bfe\u8c61 controlledBy=controlledBy
controllerFor=\u5236\u5fa1\u5143 controllerFor=controllerFor
# #
# accessible states # accessible states
# #
active=\u30a2\u30af\u30c6\u30a3\u30d6 active=\u30A2\u30AF\u30C6\u30A3\u30D6
armed=\u4f5c\u52d5\u6e96\u5099\u5b8c\u4e86 armed=\u4F5C\u52D5\u6E96\u5099\u5B8C\u4E86
busy=\u30d3\u30b8\u30fc busy=\u30D3\u30B8\u30FC
checked=\u30c1\u30a7\u30c3\u30af checked=\u30C1\u30A7\u30C3\u30AF
collapsed=\u77ed\u7e2e collapsed=\u77ED\u7E2E
editable=\u7de8\u96c6\u53ef\u80fd editable=\u7DE8\u96C6\u53EF\u80FD
expandable=\u5c55\u958b\u53ef\u80fd expandable=\u5C55\u958B\u53EF\u80FD
expanded=\u5c55\u958b expanded=\u5C55\u958B
enabled=\u6709\u52b9 enabled=\u6709\u52B9
focusable=\u30d5\u30a9\u30fc\u30ab\u30b9\u53ef\u80fd focusable=\u30D5\u30A9\u30FC\u30AB\u30B9\u53EF\u80FD
focused=\u30d5\u30a9\u30fc\u30ab\u30b9 focused=\u30D5\u30A9\u30FC\u30AB\u30B9
iconified=\u30a2\u30a4\u30b3\u30f3\u5316 iconified=\u30A2\u30A4\u30B3\u30F3\u5316
modal=\u30e2\u30fc\u30c0\u30eb modal=\u30E2\u30FC\u30C0\u30EB
multiline=\u8907\u6570\u884c multiline=\u8907\u6570\u884C
multiselectable=\u8907\u6570\u9078\u629e\u53ef\u80fd multiselectable=\u8907\u6570\u9078\u629E\u53EF\u80FD
opaque=\u4e0d\u900f\u660e opaque=\u4E0D\u900F\u660E
pressed=\u62bc\u4e0b pressed=\u62BC\u4E0B
resizable=\u30b5\u30a4\u30ba\u5909\u66f4\u53ef\u80fd resizable=\u30B5\u30A4\u30BA\u5909\u66F4\u53EF\u80FD
selectable=\u9078\u629e\u53ef\u80fd selectable=\u9078\u629E\u53EF\u80FD
selected=\u9078\u629e selected=\u9078\u629E
showing=\u8868\u793a showing=\u8868\u793A
singleline=\u5358\u4e00\u884c singleline=\u5358\u4E00\u884C
transient=\u4e00\u6642 transient=\u4E00\u6642
visible=\u53ef\u8996 visible=\u53EF\u8996
vertical=\u5782\u76f4 vertical=\u5782\u76F4
horizontal=\u6c34\u5e73 horizontal=\u6C34\u5E73
# #
# accessible actions # accessible actions
# #
toggle expand=\u30c8\u30b0\u30eb\u5c55\u958b toggle expand=\u30C8\u30B0\u30EB\u5C55\u958B
# new relations, roles and states for J2SE 1.5.0 # new relations, roles and states for J2SE 1.5.0
# #
# accessible relations # accessible relations
# #
flowsTo=\u30d5\u30ed\u30fc\u5148 flowsTo=flows to
flowsFrom=\u30d5\u30ed\u30fc\u5143 flowsFrom=flows from
subwindowOf=\u30b5\u30d6\u30a6\u30a3\u30f3\u30c9\u30a6 subwindowOf=subwindow of
parentWindowOf=\u89aa\u30a6\u30a3\u30f3\u30c9\u30a6 parentWindowOf=parent window of
embeds=\u57cb\u3081\u8fbc\u307f embeds=\u57CB\u8FBC\u307F
embeddedBy=\u57cb\u3081\u8fbc\u307f\u5143 embeddedBy=embedded by
childNodeOf=\u5b50\u30ce\u30fc\u30c9 childNodeOf=child node of
# #
# accessible roles # accessible roles
# #
header=\u30d8\u30c3\u30c0 header=\u30D8\u30C3\u30C0\u30FC
footer=\u30d5\u30c3\u30bf footer=\u30D5\u30C3\u30BF\u30FC
paragraph=\u30d1\u30e9\u30b0\u30e9\u30d5 paragraph=\u6BB5\u843D
ruler=\u30eb\u30fc\u30e9 ruler=\u30EB\u30FC\u30E9\u30FC
editbar=\u7de8\u96c6\u30d0\u30fc editbar=\u7DE8\u96C6\u30D0\u30FC
progressMonitor=\u9032\u6357\u30e2\u30cb\u30bf progressMonitor=\u9032\u6357\u30E2\u30CB\u30BF\u30FC
# #
# accessible states # accessible states
# #
managesDescendants=\u5b50\u5b6b\u3092\u7ba1\u7406 managesDescendants=\u5B50\u5B6B\u3092\u7BA1\u7406
indeterminate=\u4e0d\u78ba\u5b9a indeterminate=\u4E0D\u78BA\u5B9A
truncated=\u4e0d\u5b8c\u5168 truncated=\u4E0D\u5B8C\u5168
# new for J2SE 1.6.0 # new for J2SE 1.6.0
# #
# accessible roles # accessible roles
# #
htmlcontainer=HTML \u30b3\u30f3\u30c6\u30ca htmlcontainer=HTML\u30B3\u30F3\u30C6\u30CA
# #
# END OF MATERIAL TO LOCALIZE # END OF MATERIAL TO LOCALIZE

View file

@ -13,133 +13,133 @@
# #
# accessible roles # accessible roles
# #
alert=\uacbd\uace0 alert=\uACBD\uBCF4
awtcomponent=AWT \uad6c\uc131\uc694\uc18c awtcomponent=AWT \uAD6C\uC131 \uC694\uC18C
checkbox=\ud655\uc778\ub780 checkbox=\uCCB4\uD06C \uBC15\uC2A4
colorchooser=\uc0c9\uc0c1 \uc120\ud0dd\uae30 colorchooser=\uC0C9\uC0C1 \uC120\uD0DD\uAE30
columnheader=\uc5f4 \uba38\ub9ac\uae00 columnheader=\uC5F4 \uBA38\uB9AC\uAE00
combobox=\ucf64\ubcf4 \uc0c1\uc790 combobox=\uCF64\uBCF4 \uC0C1\uC790
canvas=\uce94\ubc84\uc2a4 canvas=\uCE94\uBC84\uC2A4
desktopicon=\ub370\uc2a4\ud06c\ud0d1 \uc544\uc774\ucf58 desktopicon=\uBC14\uD0D5 \uD654\uBA74 \uC544\uC774\uCF58
desktoppane=\ub370\uc2a4\ud06c\ud0d1 \ud45c\uc2dc \uc601\uc5ed desktoppane=\uBC14\uD0D5 \uD654\uBA74 \uCC3D
dialog=\ub300\ud654 \uc0c1\uc790 dialog=\uB300\uD654\uC0C1\uC790
directorypane=\ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc \uc601\uc5ed directorypane=\uB514\uB809\uD1A0\uB9AC \uCC3D
glasspane=\uae00\ub798\uc2a4 \ud45c\uc2dc \uc601\uc5ed glasspane=\uAE00\uB798\uC2A4 \uCC3D
filechooser=\ud30c\uc77c \uc120\ud0dd\uae30 filechooser=\uD30C\uC77C \uC120\uD0DD\uAE30
filler=\ud544\ub7ec filler=\uD544\uB7EC
frame=\ud504\ub808\uc784 frame=\uD504\uB808\uC784
internalframe=\ub0b4\ubd80 \ud504\ub808\uc784 internalframe=\uB0B4\uBD80 \uD504\uB808\uC784
label=\ub808\uc774\ube14 label=\uB808\uC774\uBE14
layeredpane=\uacc4\uce35 \ud45c\uc2dc \uc601\uc5ed layeredpane=\uACC4\uCE35\uC801 \uCC3D
list=\ubaa9\ub85d list=\uBAA9\uB85D
listitem=\ubaa9\ub85d \ud56d\ubaa9 listitem=\uBAA9\uB85D \uD56D\uBAA9
menubar=\uba54\ub274 \ud45c\uc2dc\uc904 menubar=\uBA54\uB274 \uD45C\uC2DC\uC904
menu=\uba54\ub274 menu=\uBA54\uB274
menuitem=\uba54\ub274 \ud56d\ubaa9 menuitem=\uBA54\uB274 \uD56D\uBAA9
optionpane=\uc635\uc158 \ud45c\uc2dc \uc601\uc5ed optionpane=\uC635\uC158 \uCC3D
pagetab=\ud398\uc774\uc9c0 \ud0ed pagetab=\uD398\uC774\uC9C0 \uD0ED
pagetablist=\ud398\uc774\uc9c0 \ud0ed \ubaa9\ub85d pagetablist=\uD398\uC774\uC9C0 \uD0ED \uBAA9\uB85D
panel=\ud328\ub110 panel=\uD328\uB110
passwordtext=\uc554\ud638 \ud14d\uc2a4\ud2b8 passwordtext=\uBE44\uBC00\uBC88\uD638 \uD14D\uC2A4\uD2B8
popupmenu=\ud31d\uc5c5 \uba54\ub274 popupmenu=\uD31D\uC5C5 \uBA54\uB274
progressbar=\uc9c4\ud589 \ub9c9\ub300 progressbar=\uC9C4\uD589 \uB9C9\uB300
pushbutton=\ub204\ub984 \ubc84\ud2bc pushbutton=\uB204\uB984 \uB2E8\uCD94
radiobutton=\ub77c\ub514\uc624 \ubc84\ud2bc radiobutton=\uB77C\uB514\uC624 \uB2E8\uCD94
rootpane=\ub8e8\ud2b8 \ud45c\uc2dc \uc601\uc5ed rootpane=\uB8E8\uD2B8 \uCC3D
rowheader=\ud589 \uba38\ub9ac\uae00 rowheader=\uD589 \uBA38\uB9AC\uAE00
scrollbar=\uc2a4\ud06c\ub864 \ub9c9\ub300 scrollbar=\uC2A4\uD06C\uB864 \uB9C9\uB300
scrollpane=\uc2a4\ud06c\ub864 \ud45c\uc2dc \uc601\uc5ed scrollpane=\uC2A4\uD06C\uB864 \uCC3D
separator=\uad6c\ubd84\uc790 separator=\uAD6C\uBD84 \uAE30\uD638
slider=\uc2ac\ub77c\uc774\ub354 slider=\uC2AC\uB77C\uC774\uB354
splitpane=\ubd84\ud560 \ud45c\uc2dc \uc601\uc5ed splitpane=\uBD84\uD560 \uCC3D
swingcomponent=swing \uad6c\uc131\uc694\uc18c swingcomponent=\uD68C\uC804 \uAD6C\uC131 \uC694\uC18C
table=\ud14c\uc774\ube14 table=\uD14C\uC774\uBE14
text=\ud14d\uc2a4\ud2b8 text=\uD14D\uC2A4\uD2B8
tree=\ud2b8\ub9ac tree=\uD2B8\uB9AC
togglebutton=\ud1a0\uae00 \ubc84\ud2bc togglebutton=\uD1A0\uAE00 \uB2E8\uCD94
toolbar=\ub3c4\uad6c \ubaa8\uc74c toolbar=\uB3C4\uAD6C \uBAA8\uC74C
tooltip=\ub3c4\uad6c \ud301 tooltip=\uB3C4\uAD6C \uC124\uBA85
unknown=\uc54c\uc218 \uc5c6\uc74c unknown=\uC54C \uC218 \uC5C6\uC74C
viewport=\ubdf0\ud3ec\ud2b8 viewport=\uBDF0\uD3EC\uD2B8
window=\ucc3d window=\uCC3D
# #
# accessible relations # accessible relations
# #
labelFor=\ub808\uc774\ube14 \ub300\uc0c1 labelFor=\uB808\uC774\uBE14 \uB300\uC0C1
labeledBy=\ub808\uc774\ube14 \uc9c0\uc815\uc790 labeledBy=\uB808\uC774\uBE14 \uC9C0\uC815\uC790
memberOf=\ub2e4\uc74c\uc758 \uad6c\uc131\uc6d0 memberOf=\uC18C\uC18D \uADF8\uB8F9
controlledBy=\uc81c\uc5b4\uc790 controlledBy=controlledBy
controllerFor=\uc81c\uc5b4\uae30 \ub300\uc0c1 controllerFor=controllerFor
# #
# accessible states # accessible states
# #
active=\ud65c\uc131 active=\uD65C\uC131
armed=\ud06c\uae30 armed=\uD06C\uAE30
busy=\uc0ac\uc6a9 \uc911 busy=\uC0AC\uC6A9 \uC911
checked=\uc120\ud0dd\ub428 checked=\uC120\uD0DD\uB428
collapsed=\ucd95\uc18c\ub428 collapsed=\uCD95\uC18C\uB428
editable=\ud3b8\uc9d1 \uac00\ub2a5 editable=\uD3B8\uC9D1 \uAC00\uB2A5
expandable=\ud655\uc7a5 \uac00\ub2a5 expandable=\uD655\uC7A5 \uAC00\uB2A5
expanded=\ud655\uc7a5\ub428 expanded=\uD655\uC7A5\uB428
enabled=\ud65c\uc131\ud654\ub428 enabled=\uC0AC\uC6A9
focusable=\ud3ec\ucee4\uc2a4 \uac00\ub2a5 focusable=\uD3EC\uCEE4\uC2A4 \uAC00\uB2A5
focused=\ud3ec\ucee4\uc2a4 \uc9c0\uc815\ub428 focused=\uD3EC\uCEE4\uC2A4\uB428
iconified=\uc544\uc774\ucf58\ud654\ub428 iconified=\uC544\uC774\uCF58\uD654\uB428
modal=\ubaa8\ub2ec modal=\uBAA8\uB2EC
multiline=\ubcf5\uc218 \ud589 multiline=\uBCF5\uC218 \uD589
multiselectable=\ubcf5\uc218\ub85c \uc120\ud0dd \uac00\ub2a5 multiselectable=\uB2E4\uC911 \uC120\uD0DD \uAC00\uB2A5
opaque=\ubd88\ud22c\uba85 opaque=\uBD88\uD22C\uBA85
pressed=\ub204\ub984 pressed=\uB204\uB984
resizable=\ud06c\uae30 \uc870\uc815 \uac00\ub2a5 resizable=\uD06C\uAE30 \uC870\uC815 \uAC00\uB2A5
selectable=\uc120\ud0dd \uac00\ub2a5 selectable=\uC120\uD0DD \uAC00\uB2A5
selected=\uc120\ud0dd\ub428 selected=\uC120\uD0DD\uB428
showing=\ud45c\uc2dc showing=\uD45C\uC2DC
singleline=\ub2e8\uc120 singleline=\uD55C \uC904
transient=\uc77c\uc2dc transient=\uC77C\uC2DC
visible=\uac00\uc2dc visible=\uD45C\uC2DC \uAC00\uB2A5
vertical=\uc218\uc9c1 vertical=\uC138\uB85C
horizontal=\uc218\ud3c9 horizontal=\uAC00\uB85C
# #
# accessible actions # accessible actions
# #
toggle expand=\ud1a0\uae00 \ud655\uc7a5 toggle \uD655\uC7A5=\uD1A0\uAE00 \uD655\uC7A5
# new relations, roles and states for J2SE 1.5.0 # new relations, roles and states for J2SE 1.5.0
# #
# accessible relations # accessible relations
# #
flowsTo=(\uc73c)\ub85c \ud750\ub984 flowsTo=\uD750\uB984 \uB300\uC0C1
flowsFrom=\uc5d0\uc11c \ud750\ub984 flowsFrom=\uD750\uB984 \uCD9C\uCC98
subwindowOf=\ud558\uc704 \ucc3d subwindowOf=\uD558\uC704 \uCC3D
parentWindowOf=\uc0c1\uc704 \ucc3d parentWindowOf=\uC0C1\uC704 \uCC3D
embeds=\uc744(\ub97c) \ud3ec\ud568 embeds=\uD3EC\uD568
embeddedBy=\uc5d0 \ud3ec\ud568 embeddedBy=\uD3EC\uD568 \uC8FC\uCCB4
childNodeOf=\ud558\uc704 \ub178\ub4dc childNodeOf=\uD558\uC704 \uB178\uB4DC
# #
# accessible roles # accessible roles
# #
header=\uba38\ub9ac\ub9d0 header=\uBA38\uB9AC\uAE00
footer=\uaf2c\ub9ac\ub9d0 footer=\uBC14\uB2E5\uAE00
paragraph=\ub2e8\ub77d paragraph=\uB2E8\uB77D
ruler=\ub208\uae08\uc790 ruler=\uB208\uAE08\uC790
editbar=\ud3b8\uc9d1 \ub3c4\uad6c editbar=\uD3B8\uC9D1 \uB3C4\uAD6C
progressMonitor=\uc9c4\ud589 \ubaa8\ub2c8\ud130 progressMonitor=\uC9C4\uD589 \uBAA8\uB2C8\uD130
# #
# accessible states # accessible states
# #
managesDescendants=\ud558\uc704 \ud56d\ubaa9 \uad00\ub9ac managesDescendants=\uC885\uC18D \uD56D\uBAA9 \uAD00\uB9AC
indeterminate=\ubd80\uc815 indeterminate=\uD655\uC815\uB418\uC9C0 \uC54A\uC74C
truncated=\uc0dd\ub7b5 truncated=\uC798\uB9BC
# new for J2SE 1.6.0 # new for J2SE 1.6.0
# #
# accessible roles # accessible roles
# #
htmlcontainer=HTML \ucee8\ud14c\uc774\ub108 htmlcontainer=HTML \uCEE8\uD14C\uC774\uB108
# #
# END OF MATERIAL TO LOCALIZE # END OF MATERIAL TO LOCALIZE

View file

@ -15,38 +15,38 @@
# #
alert=alerta alert=alerta
awtcomponent=componente AWT awtcomponent=componente AWT
checkbox=caixa de sele\u00e7\u00e3o checkbox=caixa de sele\u00E7\u00E3o
colorchooser=seletor de cores colorchooser=seletor de cores
columnheader=cabe\u00e7alho da coluna columnheader=cabe\u00E7alho da coluna
combobox=caixa de combina\u00e7\u00e3o combobox=caixa de combina\u00E7\u00E3o
canvas=tela canvas=tela
desktopicon=\u00edcone da \u00e1rea de trabalho desktopicon=\u00EDcone da \u00E1rea de trabalho
desktoppane=painel da \u00e1rea de trabalho desktoppane=painel da \u00E1rea de trabalho
dialog=caixa de di\u00e1logo dialog=caixa de di\u00E1logo
directorypane=painel do diret\u00f3rio directorypane=painel do diret\u00F3rio
glasspane=painel transparente glasspane=painel transparente
filechooser=seletor de arquivos filechooser=seletor de arquivos
filler=preenchimento filler=preenchedor
frame=quadro frame=quadro
internalframe=quadro interno internalframe=quadro interno
label=r\u00f3tulo label=r\u00F3tulo
layeredpane=painel em camadas layeredpane=painel em camadas
list=lista list=lista
listitem=item da lista listitem=item da lista
menubar=barra de menus menubar=barra de menus
menu=menu menu=menu
menuitem=item do menu menuitem=item do menu
optionpane=painel de op\u00e7\u00f5es optionpane=painel de op\u00E7\u00F5es
pagetab=aba da p\u00e1gina pagetab=guia da p\u00E1gina
pagetablist=lista de abas da p\u00e1gina pagetablist=lista de guias da p\u00E1gina
panel=painel panel=painel
passwordtext=texto da senha passwordtext=texto da senha
popupmenu=menu pop-up popupmenu=menu pop-up
progressbar=barra de progresso progressbar=barra de progresso
pushbutton=bot\u00e3o de a\u00e7\u00e3o pushbutton=bot\u00E3o de a\u00E7\u00E3o
radiobutton=bot\u00e3o de op\u00e7\u00e3o radiobutton=bot\u00E3o de op\u00E7\u00E3o
rootpane=painel base rootpane=painel base
rowheader=cabe\u00e7alho da linha rowheader=cabe\u00E7alho da linha
scrollbar=barra de rolagem scrollbar=barra de rolagem
scrollpane=painel de rolagem scrollpane=painel de rolagem
separator=separador separator=separador
@ -55,17 +55,17 @@ splitpane=painel dividido
swingcomponent=componente swing swingcomponent=componente swing
table=tabela table=tabela
text=texto text=texto
tree=\u00e1rvore tree=\u00E1rvore
togglebutton=bot\u00e3o de altern\u00e2ncia togglebutton=bot\u00E3o de altern\u00E2ncia
toolbar=barra de ferramentas toolbar=barra de ferramentas
tooltip=dica de ferramenta tooltip=dica de ferramenta
unknown=desconhecido unknown=desconhecido
viewport=janela de visualiza\u00e7\u00e3o viewport=janela de visualiza\u00E7\u00E3o
window=janela window=janela
# #
# accessible relations # accessible relations
# #
labelFor=r\u00f3tulo de labelFor=r\u00F3tulo de
labeledBy=rotulado por labeledBy=rotulado por
memberOf=membro de memberOf=membro de
controlledBy=controlledBy controlledBy=controlledBy
@ -78,31 +78,31 @@ armed=armado
busy=ocupado busy=ocupado
checked=selecionado checked=selecionado
collapsed=recolhido collapsed=recolhido
editable=edit\u00e1vel editable=edit\u00E1vel
expandable=expans\u00edvel expandable=expans\u00EDvel
expanded=expandido expanded=expandido
enabled=habilitado enabled=ativado
focusable=focaliz\u00e1vel focusable=focaliz\u00E1vel
focused=focalizado focused=focalizado
iconified=iconizado iconified=iconizado
modal=modal modal=modal
multiline=v\u00e1rias linhas multiline=v\u00E1rias linhas
multiselectable=m\u00faltipla escolha multiselectable=m\u00FAltipla escolha
opaque=opaco opaque=opaco
pressed=pressionado pressed=pressionado
resizable=redimension\u00e1vel resizable=redimension\u00E1vel
selectable=selecion\u00e1vel selectable=selecion\u00E1vel
selected=selecionado selected=selecionado
showing=exibindo showing=mostrando
singleline=linha \u00fanica singleline=linha \u00FAnica
transient=transit\u00f3rio transient=transit\u00F3rio
visible=vis\u00edvel visible=vis\u00EDvel
vertical=vertical vertical=vertical
horizontal=horizontal horizontal=horizontal
# #
# accessible actions # accessible actions
# #
toggle expandir=alternar expandir toggle expandir=alternar expans\u00E3o
# new relations, roles and states for J2SE 1.5.0 # new relations, roles and states for J2SE 1.5.0
@ -115,16 +115,16 @@ subwindowOf=subjanela de
parentWindowOf=janela pai de parentWindowOf=janela pai de
embeds=integra embeds=integra
embeddedBy=integrado por embeddedBy=integrado por
childNodeOf=n\u00f3 filho de childNodeOf=n\u00F3 filho de
# #
# accessible roles # accessible roles
# #
header=cabe\u00e7alho header=cabe\u00E7alho
footer=rodap\u00e9 footer=rodap\u00E9
paragraph=par\u00e1grafo paragraph=par\u00E1grafo
ruler=r\u00e9gua ruler=r\u00E9gua
editbar=barra de edi\u00e7\u00e3o editbar=barra de edi\u00E7\u00E3o
progressMonitor=monitor de progresso progressMonitor=monitor de progresso
# #
@ -139,7 +139,7 @@ truncated=truncado
# #
# accessible roles # accessible roles
# #
htmlcontainer=cont\u00eainer HTML htmlcontainer=Container de HTML
# #
# END OF MATERIAL TO LOCALIZE # END OF MATERIAL TO LOCALIZE

View file

@ -13,109 +13,109 @@
# #
# accessible roles # accessible roles
# #
alert=varning alert=avisering
awtcomponent=AWT-komponent awtcomponent=AWT-komponent
checkbox=kryssruta checkbox=kryssruta
colorchooser=f\u00e4rgv\u00e4ljare colorchooser=f\u00E4rgv\u00E4ljare
columnheader=kolumnrubrik columnheader=kolumnrubrik
combobox=kombinationsruta combobox=kombinationsruta
canvas=bakgrund canvas=rityta
desktopicon=skrivbordsikon desktopicon=skrivbordsikon
desktoppane=skrivbordsruta desktoppane=skrivbordsruta
dialog=dialogruta dialog=dialogruta
directorypane=katalogruta directorypane=katalogruta
glasspane=glasruta glasspane=glasruta
filechooser=filv\u00e4ljare filechooser=filv\u00E4ljare
filler=utfyllnad filler=utfyllnad
frame=ram frame=ram
internalframe=intern ram internalframe=intern ram
label=etikett label=etikett
layeredpane=staplad ruta layeredpane=staplad ruta
list=lista list=lista
listitem=listelement listitem=listobjekt
menubar=menylist menubar=menyrad
menu=meny menu=meny
menuitem=menyalternativ menuitem=menyalternativ
optionpane=alternativruta optionpane=alternativruta
pagetab=sidflik pagetab=sidflik
pagetablist=sidflikslista pagetablist=sidflikslista
panel=panel panel=panel
passwordtext=l\u00f6senordstext passwordtext=l\u00F6senordstext
popupmenu=snabbmeny popupmenu=snabbmeny
progressbar=statuslist progressbar=statusrad
pushbutton=knapp pushbutton=knapp
radiobutton=envalsknapp radiobutton=alternativknapp
rootpane=grundruta rootpane=grundruta
rowheader=radhuvud rowheader=radrubrik
scrollbar=bl\u00e4ddringslist scrollbar=rullningslist
scrollpane=bl\u00e4dderruta scrollpane=rullningsruta
separator=avskiljare separator=avskiljare
slider=skjutreglage slider=skjutreglage
splitpane=delad ruta splitpane=delad ruta
swingcomponent=swing-komponent swingcomponent=swing-komponent
table=tabell table=tabell
text=text text=text
tree=tr\u00e4d tree=tr\u00E4d
togglebutton=v\u00e4xlingsknapp togglebutton=v\u00E4xlingsknapp
toolbar=verktygsrad toolbar=verktygsrad
tooltip=knappbeskrivning tooltip=knappbeskrivning
unknown=ok\u00e4nd unknown=ok\u00E4nd
viewport=vyport viewport=vyport
window=f\u00f6nster window=f\u00F6nster
# #
# accessible relations # accessible relations
# #
labelFor=etikett f\u00f6r labelFor=etikett f\u00F6r
labeledBy=etikett av labeledBy=etikett av
memberOf=medlem i memberOf=medlem i
controlledBy=kontrolleratAv controlledBy=controlledBy
controllerFor=styrenhetF\u00f6r controllerFor=controllerFor
# #
# accessible states # accessible states
# #
active=aktiv active=aktiv
armed=anv\u00e4nd armed=redo
busy=upptagen busy=upptagen
checked=markerad checked=markerad
collapsed=inf\u00e4lld collapsed=komprimerad
editable=redigerbar editable=redigerbar
expandable=ut\u00f6kningsbar expandable=ut\u00F6kningsbar
expanded=ut\u00f6kad expanded=ut\u00F6kad
enabled=aktiverad enabled=aktiverad
focusable=fokuseringsbar focusable=fokuseringsbar
focused=fokuserad focused=fokuserad
iconified=minimerad iconified=minimerad
modal=tillst\u00e5ndsberoende modal=modal
multiline=flera linjer multiline=flera rader
multiselectable=multivalbar multiselectable=flerval
opaque=ogenomskinlig opaque=t\u00E4ckande
pressed=nedtryckt pressed=nedtryckt
resizable=storleks\u00e4ndringsbar resizable=storleks\u00E4ndringsbar
selectable=markeringsbar selectable=valbar
selected=vald selected=vald
showing=visa showing=visas
singleline=en rad singleline=en rad
transient=flytande transient=tillf\u00E4llig
visible=synlig visible=synlig
vertical=vertikal vertical=vertikal
horizontal=horisontell horizontal=horisontell
# #
# accessible actions # accessible actions
# #
toggle expand=v\u00e4xla ut\u00f6ka toggle ut\u00F6ka=v\u00E4xla ut\u00F6ka
# new relations, roles and states for J2SE 1.5.0 # new relations, roles and states for J2SE 1.5.0
# #
# accessible relations # accessible relations
# #
flowsTo=fl\u00f6dar till flowsTo=fl\u00F6dar till
flowsFrom=fl\u00f6dar fr\u00e5n flowsFrom=fl\u00F6dar fr\u00E5n
subwindowOf=delf\u00f6nster av subwindowOf=delf\u00F6nster av
parentWindowOf=\u00f6verordnat f\u00f6nster f\u00f6r parentWindowOf=\u00F6verordnat f\u00F6nster f\u00F6r
embeds=b\u00e4ddar in embeds=b\u00E4ddar in
embeddedBy=b\u00e4ddas in av embeddedBy=b\u00E4ddas in av
childNodeOf=underordnad nod f\u00f6r childNodeOf=underordnad nod f\u00F6r
# #
# accessible roles # accessible roles
@ -125,14 +125,14 @@ footer=sidfot
paragraph=stycke paragraph=stycke
ruler=linjal ruler=linjal
editbar=redigeringslist editbar=redigeringslist
progressMonitor=f\u00f6rloppsindikator progressMonitor=f\u00F6rlopps\u00F6vervakare
# #
# accessible states # accessible states
# #
managesDescendants=hanterar efterf\u00f6ljare managesDescendants=hanterar underordnade
indeterminate=obest\u00e4mt indeterminate=obest\u00E4mt
truncated=avklippt truncated=kapad
# new for J2SE 1.6.0 # new for J2SE 1.6.0

View file

@ -13,133 +13,133 @@
# #
# accessible roles # accessible roles
# #
alert=\u8b66\u62a5 alert=\u9884\u8B66
awtcomponent=AWT \u7ec4\u4ef6 awtcomponent=AWT \u7EC4\u4EF6
checkbox=\u590d\u9009\u6846 checkbox=\u590D\u9009\u6846
colorchooser=\u989c\u8272\u9009\u62e9\u5668 colorchooser=\u989C\u8272\u9009\u62E9\u5668
columnheader=\u5217\u6807\u9898 columnheader=\u5217\u6807\u9898
combobox=\u7ec4\u5408\u6846 combobox=\u7EC4\u5408\u6846
canvas=\u753b\u5e03 canvas=\u753B\u5E03
desktopicon=\u684c\u9762\u56fe\u6807 desktopicon=\u684C\u9762\u56FE\u6807
desktoppane=\u684c\u9762\u7a97\u683c desktoppane=\u684C\u9762\u7A97\u683C
dialog=\u5bf9\u8bdd dialog=\u5BF9\u8BDD
directorypane=\u76ee\u5f55\u7a97\u683c directorypane=\u76EE\u5F55\u7A97\u683C
glasspane=\u73bb\u7483\u7a97\u683c glasspane=\u73BB\u7483\u7A97\u683C
filechooser=\u6587\u4ef6\u9009\u62e9\u5668 filechooser=\u6587\u4EF6\u9009\u62E9\u5668
filler=\u6f0f\u6597 filler=\u6F0F\u6597
frame=\u5e27 frame=\u5E27
internalframe=\u5185\u90e8\u5e27 internalframe=\u5185\u90E8\u5E27
label=\u6807\u7b7e label=\u6807\u7B7E
layeredpane=\u5206\u5c42\u7a97\u683c layeredpane=\u5206\u5C42\u7A97\u683C
list=\u5217\u8868 list=\u5217\u8868
listitem=\u5217\u8868\u9879 listitem=\u5217\u8868\u9879
menubar=\u83dc\u5355\u680f menubar=\u83DC\u5355\u680F
menu=\u83dc\u5355 menu=\u83DC\u5355
menuitem=\u83dc\u5355\u9879 menuitem=\u83DC\u5355\u9879
optionpane=\u9009\u9879\u7a97\u683c optionpane=\u9009\u9879\u7A97\u683C
pagetab=\u9875\u6807\u7b7e pagetab=\u9875\u6807\u7B7E
pagetablist=\u9875\u6807\u7b7e\u5217\u8868 pagetablist=\u9875\u6807\u7B7E\u5217\u8868
panel=\u9762\u677f panel=\u9762\u677F
passwordtext=\u5bc6\u7801\u6587\u672c passwordtext=\u53E3\u4EE4\u6587\u672C
popupmenu=\u5f39\u51fa\u5f0f\u83dc\u5355 popupmenu=\u5F39\u51FA\u5F0F\u83DC\u5355
progressbar=\u8fdb\u5ea6\u6761 progressbar=\u8FDB\u5EA6\u680F
pushbutton=\u6309\u94ae pushbutton=\u6309\u94AE
radiobutton=\u5355\u9009\u6309\u94ae radiobutton=\u5355\u9009\u6309\u94AE
rootpane=\u6839\u7a97\u683c rootpane=\u6839\u7A97\u683C
rowheader=\u884c\u6807\u9898 rowheader=\u884C\u6807\u9898
scrollbar=\u6eda\u52a8\u6761 scrollbar=\u6EDA\u52A8\u6761
scrollpane=\u6eda\u52a8\u7a97\u683c scrollpane=\u6EDA\u52A8\u7A97\u683C
separator=\u5206\u9694\u6761 separator=\u5206\u9694\u6761
slider=\u6ed1\u5757 slider=\u6ED1\u5757
splitpane=\u62c6\u5206\u7a97\u683c splitpane=\u62C6\u5206\u7A97\u683C
swingcomponent=\u65cb\u8f6c\u7ec4\u4ef6 swingcomponent=\u65CB\u8F6C\u7EC4\u4EF6
table=\u8868 table=\u8868
text=\u6587\u672c text=\u6587\u672C
tree=\u6811 tree=\u6811
togglebutton=\u5207\u6362\u6309\u94ae togglebutton=\u5207\u6362\u6309\u94AE
toolbar=\u5de5\u5177\u680f toolbar=\u5DE5\u5177\u680F
tooltip=\u5de5\u5177\u63d0\u793a tooltip=\u5DE5\u5177\u63D0\u793A
unknown=\u672a\u77e5 unknown=\u672A\u77E5
viewport=\u89c6\u53e3 viewport=\u89C6\u7A97
window=\u7a97\u53e3 window=\u7A97\u53E3
# #
# accessible relations # accessible relations
# #
labelFor=\u6807\u7b7e\u5c5e\u4e8e labelFor=\u6807\u7B7E\u5C5E\u4E8E
labeledBy=\u6807\u7b7e\u5236\u4f5c\u8005 labeledBy=\u6807\u7B7E\u5236\u4F5C\u8005
memberOf=\u5c5e\u4e8e memberOf=\u5C5E\u4E8E
controlledBy=\u63a7\u5236\u8005 controlledBy=controlledBy
controllerFor=\u63a7\u5236\u5bf9\u8c61 controllerFor=controllerFor
# #
# accessible states # accessible states
# #
active=\u6d3b\u52a8 active=\u6D3B\u52A8
armed=\u5f85\u547d armed=\u5F85\u547D
busy=\u5fd9 busy=\u5FD9
checked=\u5df2\u9009\u4e2d checked=\u5DF2\u9009\u4E2D
collapsed=\u5df2\u6536\u7f29 collapsed=\u5DF2\u6536\u7F29
editable=\u53ef\u7f16\u8f91 editable=\u53EF\u7F16\u8F91
expandable=\u53ef\u5c55\u5f00 expandable=\u53EF\u5C55\u5F00
expanded=\u5df2\u5c55\u5f00 expanded=\u5DF2\u5C55\u5F00
enabled=\u5df2\u542f\u7528 enabled=\u542F\u7528
focusable=\u53ef\u96c6\u4e2d focusable=\u53EF\u96C6\u4E2D
focused=\u5df2\u96c6\u4e2d focused=\u5DF2\u96C6\u4E2D
iconified=\u56fe\u6807\u5f0f iconified=\u56FE\u6807\u5F0F
modal=\u6a21\u6001 modal=\u6A21\u6001
multiline=\u591a\u884c multiline=\u591A\u884C
multiselectable=\u591a\u9009\u62e9 multiselectable=\u591A\u9009\u62E9
opaque=\u4e0d\u900f\u660e opaque=\u4E0D\u900F\u660E
pressed=\u5df2\u6309\u4e0b pressed=\u5DF2\u6309\u4E0B
resizable=\u5927\u5c0f\u53ef\u8c03 resizable=\u53EF\u8C03\u6574\u5927\u5C0F
selectable=\u53ef\u9009\u62e9 selectable=\u53EF\u9009\u62E9
selected=\u5df2\u9009\u5b9a selected=\u6240\u9009
showing=\u6b63\u5728\u663e\u793a showing=\u6B63\u5728\u663E\u793A
singleline=\u5355\u884c singleline=\u5355\u884C
transient=\u77ac\u65f6 transient=\u77AC\u65F6
visible=\u53ef\u89c1 visible=\u53EF\u89C1
vertical=\u5782\u76f4 vertical=\u5782\u76F4
horizontal=\u6c34\u5e73 horizontal=\u6C34\u5E73
# #
# accessible actions # accessible actions
# #
toggle expand=\u5207\u6362\u5c55\u5f00 toggle expand=\u5207\u6362\u5C55\u5F00
# new relations, roles and states for J2SE 1.5.0 # new relations, roles and states for J2SE 1.5.0
# #
# accessible relations # accessible relations
# #
flowsTo=\u6d41\u5411 flowsTo=\u6D41\u5411
flowsFrom=\u6d41\u81ea flowsFrom=\u6D41\u81EA
subwindowOf=\u5b50\u7a97\u53e3 subwindowOf=\u5B50\u7A97\u53E3
parentWindowOf=\u7236\u7a97\u53e3 parentWindowOf=\u7236\u7A97\u53E3
embeds=\u5d4c\u5165\u9879 embeds=\u5D4C\u5165\u9879
embeddedBy=\u5d4c\u5165\u8005 embeddedBy=\u5D4C\u5165\u8005
childNodeOf=\u5b50\u8282\u70b9 childNodeOf=\u5B50\u8282\u70B9
# #
# accessible roles # accessible roles
# #
header=\u9875\u7709 header=\u9875\u7709
footer=\u9875\u811a footer=\u9875\u811A
paragraph=\u6bb5\u843d paragraph=\u6BB5\u843D
ruler=\u6807\u5c3a ruler=\u6807\u5C3A
editbar=\u7f16\u8f91\u680f editbar=\u7F16\u8F91\u680F
progressMonitor=\u8fdb\u5ea6\u76d1\u89c6\u5668 progressMonitor=\u8FDB\u5EA6\u76D1\u89C6\u5668
# #
# accessible states # accessible states
# #
managesDescendants=\u7ba1\u7406\u5b50\u5b59 managesDescendants=\u7BA1\u7406\u5B50\u9879
indeterminate=\u4e0d\u786e\u5b9a indeterminate=\u4E0D\u786E\u5B9A
truncated=\u5df2\u622a\u65ad truncated=\u5DF2\u622A\u65AD
# new for J2SE 1.6.0 # new for J2SE 1.6.0
# #
# accessible roles # accessible roles
# #
htmlcontainer=HTML \u5bb9\u5668 htmlcontainer=HTML \u5BB9\u5668
# #
# END OF MATERIAL TO LOCALIZE # END OF MATERIAL TO LOCALIZE

View file

@ -13,133 +13,133 @@
# #
# accessible roles # accessible roles
# #
alert=\u8b66\u793a alert=\u8B66\u793A
awtcomponent=AWT \u5143\u4ef6 awtcomponent=AWT \u5143\u4EF6
checkbox=\u6838\u53d6\u65b9\u584a checkbox=\u6838\u53D6\u65B9\u584A
colorchooser=\u8272\u5f69\u9078\u64c7\u5668 colorchooser=\u8272\u5F69\u9078\u64C7\u5668
columnheader=\u76f4\u6b04\u6a19\u984c columnheader=\u76F4\u6B04\u6A19\u984C
combobox=\u4e0b\u62c9\u5f0f\u6e05\u55ae\u65b9\u584a combobox=\u4E0B\u62C9\u5F0F\u6E05\u55AE\u65B9\u584A
canvas=\u756b\u5e03 canvas=\u756B\u5E03
desktopicon=\u684c\u9762\u5716\u793a desktopicon=\u684C\u9762\u5716\u793A
desktoppane=\u684c\u9762\u7a97\u683c desktoppane=\u684C\u9762\u7A97\u683C
dialog=\u5c0d\u8a71\u65b9\u584a dialog=\u5C0D\u8A71\u65B9\u584A
directorypane=\u76ee\u9304\u7a97\u683c directorypane=\u76EE\u9304\u7A97\u683C
glasspane=\u6aa2\u8996\u7a97\u683c glasspane=\u6AA2\u8996\u7A97\u683C
filechooser=\u6a94\u6848\u9078\u64c7\u5668 filechooser=\u6A94\u6848\u9078\u64C7\u5668
filler=\u586b\u5145\u7269 filler=\u586B\u5145\u7269
frame=\u6846\u67b6 frame=\u6846\u67B6
internalframe=\u5167\u90e8\u6846\u67b6 internalframe=\u5167\u90E8\u6846\u67B6
label=\u6a19\u7c64 label=\u6A19\u7C64
layeredpane=\u5206\u5c64\u7a97\u683c layeredpane=\u5206\u5C64\u7A97\u683C
list=\u6e05\u55ae list=\u6E05\u55AE
listitem=\u6e05\u55ae\u9805\u76ee listitem=\u6E05\u55AE\u9805\u76EE
menubar=\u529f\u80fd\u8868\u5217 menubar=\u529F\u80FD\u8868\u5217
menu=\u529f\u80fd\u8868 menu=\u529F\u80FD\u8868
menuitem=\u529f\u80fd\u8868\u9805\u76ee menuitem=\u529F\u80FD\u8868\u9805\u76EE
optionpane=\u9078\u9805\u7a97\u683c optionpane=\u9078\u9805\u7A97\u683C
pagetab=\u9801\u9762\u6a19\u7c64 pagetab=\u9801\u9762\u9801\u7C64
pagetablist=\u9801\u9762\u6a19\u7c64\u6e05\u55ae pagetablist=\u9801\u9762\u9801\u7C64\u6E05\u55AE
panel=\u9762\u677f panel=\u9762\u677F
passwordtext=\u5bc6\u78bc\u6587\u5b57 passwordtext=\u5BC6\u78BC\u6587\u5B57
popupmenu=\u8e66\u73fe\u5f0f\u529f\u80fd\u8868 popupmenu=\u5373\u73FE\u5F0F\u529F\u80FD\u8868
progressbar=\u9032\u5ea6\u5217 progressbar=\u9032\u5EA6\u5217
pushbutton=\u4e0b\u58d3\u6309\u9215 pushbutton=\u4E0B\u58D3\u6309\u9215
radiobutton=\u55ae\u9078\u9215 radiobutton=\u55AE\u9078\u9215
rootpane=root \u7a97\u683c rootpane=root \u7A97\u683C
rowheader=\u5217\u6a19\u984c rowheader=\u5217\u6A19\u984C
scrollbar=\u6372\u8ef8 scrollbar=\u6372\u8EF8
scrollpane=\u6372\u52d5\u7a97\u683c scrollpane=\u6372\u52D5\u7A97\u683C
separator=\u5206\u9694\u5143 separator=\u5206\u9694\u5143
slider=\u6ed1\u52d5\u8ef8 slider=\u6ED1\u52D5\u8EF8
splitpane=\u5206\u5272\u7a97\u683c splitpane=\u5206\u5272\u7A97\u683C
swingcomponent=Swing \u5143\u4ef6 swingcomponent=Swing \u5143\u4EF6
table=\u8868\u683c table=\u8868\u683C
text=\u6587\u5b57 text=\u6587\u5B57
tree=\u6a39\u72c0\u7d50\u69cb tree=\u6A39\u72C0\u7D50\u69CB
togglebutton=\u5207\u63db\u6309\u9215 togglebutton=\u5207\u63DB\u6309\u9215
toolbar=\u5de5\u5177\u5217 toolbar=\u5DE5\u5177\u5217
tooltip=\u5de5\u5177\u63d0\u793a tooltip=\u5DE5\u5177\u63D0\u793A
unknown=\u672a\u77e5 unknown=\u4E0D\u660E\u7684
viewport=\u6aa2\u8996\u5340 viewport=\u6AA2\u8996\u5340
window=\u8996\u7a97 window=\u8996\u7A97
# #
# accessible relations # accessible relations
# #
labelFor=\u6a19\u793a\u5c0d\u8c61 labelFor=\u6A19\u793A\u5C0D\u8C61
labeledBy=\u6a19\u793a\u8005 labeledBy=\u6A19\u793A\u8005
memberOf=\u6240\u5c6c\u6210\u54e1 memberOf=\u6240\u5C6C\u6210\u54E1
controlledBy=\u63a7\u5236\u8005 controlledBy=\u63A7\u5236\u8005
controllerFor=\u63a7\u5236\u5c0d\u8c61 controllerFor=\u63A7\u5236\u5C0D\u8C61
# #
# accessible states # accessible states
# #
active=\u4f5c\u7528\u4e2d active=\u4F5C\u7528\u4E2D
armed=\u5df2\u914d\u5099 armed=\u5DF2\u914D\u5099
busy=\u5fd9\u788c\u4e2d busy=\u5FD9\u788C\u4E2D
checked=\u5df2\u6838\u9078 checked=\u5DF2\u6838\u9078
collapsed=\u5df2\u6536\u7e2e collapsed=\u5DF2\u6536\u7E2E
editable=\u53ef\u7de8\u8f2f editable=\u53EF\u7DE8\u8F2F
expandable=\u53ef\u64f4\u5c55 expandable=\u53EF\u64F4\u5C55
expanded=\u5df2\u64f4\u5c55 expanded=\u5DF2\u64F4\u5C55
enabled=\u5df2\u555f\u52d5 enabled=\u5DF2\u555F\u7528
focusable=\u53ef\u805a\u7126 focusable=\u53EF\u805A\u7126
focused=\u5df2\u805a\u7126 focused=\u5DF2\u805A\u7126
iconified=\u5df2\u5716\u793a\u5316 iconified=\u5DF2\u5716\u793A\u5316
modal=\u6a21\u614b modal=\u6A21\u614B
multiline=\u591a\u884c multiline=\u591A\u884C
multiselectable=\u53ef\u591a\u91cd\u9078\u53d6 multiselectable=\u53EF\u591A\u91CD\u9078\u53D6
opaque=\u4e0d\u900f\u660e opaque=\u4E0D\u900F\u660E
pressed=\u5df2\u6309\u4e0b pressed=\u5DF2\u6309\u4E0B
resizable=\u53ef\u8abf\u6574\u5927\u5c0f resizable=\u53EF\u8ABF\u6574\u5927\u5C0F
selectable=\u53ef\u9078\u53d6 selectable=\u53EF\u9078\u53D6
selected=\u5df2\u9078\u53d6 selected=\u5DF2\u9078\u53D6
showing=\u986f\u793a showing=\u986F\u793A
singleline=\u55ae\u884c singleline=\u55AE\u884C
transient=\u66ab\u6642\u7684 transient=\u66AB\u6642\u7684
visible=\u53ef\u898b\u7684 visible=\u53EF\u898B\u7684
vertical=\u5782\u76f4 vertical=\u5782\u76F4
horizontal=\u6c34\u5e73 horizontal=\u6C34\u5E73
# #
# accessible actions # accessible actions
# #
toggle expand=\u5207\u63db\u64f4\u5c55 toggle expand=\u5207\u63DB\u64F4\u5C55
# new relations, roles and states for J2SE 1.5.0 # new relations, roles and states for J2SE 1.5.0
# #
# accessible relations # accessible relations
# #
flowsTo=\u6d41\u52d5\u81f3 flowsTo=\u6D41\u52D5\u81F3
flowsFrom=\u6d41\u52d5\u81ea flowsFrom=\u6D41\u52D5\u81EA
subwindowOf=\u5b50\u8996\u7a97 subwindowOf=\u5B50\u8996\u7A97
parentWindowOf=\u7236\u7cfb\u8996\u7a97 parentWindowOf=\u7236\u7CFB\u8996\u7A97
embeds=\u5167\u5d4c embeds=\u5167\u5D4C
embeddedBy=\u5167\u5d4c\u8005 embeddedBy=\u5167\u5D4C\u8005
childNodeOf=\u5b50\u7bc0\u9ede childNodeOf=\u5B50\u7BC0\u9EDE
# #
# accessible roles # accessible roles
# #
header=\u9801\u9996 header=\u9801\u9996
footer=\u9801\u5c3e footer=\u9801\u5C3E
paragraph=\u6bb5\u843d paragraph=\u6BB5\u843D
ruler=\u6a19\u5c3a ruler=\u5C3A\u898F
editbar=\u7de8\u8f2f\u5217 editbar=\u7DE8\u8F2F\u5217
progressMonitor=\u9032\u5ea6\u76e3\u8996\u5668 progressMonitor=\u9032\u5EA6\u76E3\u8996\u5668
# #
# accessible states # accessible states
# #
managesDescendants=\u7ba1\u7406\u5b50\u4ee3 managesDescendants=\u7BA1\u7406\u5B50\u4EE3
indeterminate=\u4e0d\u78ba\u5b9a indeterminate=\u4E0D\u78BA\u5B9A
truncated=\u5df2\u622a\u65b7 truncated=\u5DF2\u622A\u65B7
# new for J2SE 1.6.0 # new for J2SE 1.6.0
# #
# accessible roles # accessible roles
# #
htmlcontainer=HTML \u5bb9\u5668 htmlcontainer=HTML \u5BB9\u5668
# #
# END OF MATERIAL TO LOCALIZE # END OF MATERIAL TO LOCALIZE

View file

@ -21,19 +21,19 @@ GTKColorChooserPanel.mnemonic=71
# character of GTKColorChooserPanel.hueText should be underlined to # character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. # represent the mnemonic.
GTKColorChooserPanel.hueText=Farbton: GTKColorChooserPanel.hueText=Farbton:
GTKColorChooserPanel.hueMnemonic=70 GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=Rot: GTKColorChooserPanel.redText=Rot:
GTKColorChooserPanel.redMnemonic=82 GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=S\u00e4ttigung: GTKColorChooserPanel.saturationText=S\u00E4ttigung:
GTKColorChooserPanel.saturationMnemonic=83 GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=Gr\u00fcn: GTKColorChooserPanel.greenText=Gr\u00FCn:
GTKColorChooserPanel.greenMnemonic=71 GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=Wert: GTKColorChooserPanel.valueText=Wert:
GTKColorChooserPanel.valueMnemonic=87 GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=Blau: GTKColorChooserPanel.blueText=Blau:
GTKColorChooserPanel.blueMnemonic=66 GTKColorChooserPanel.blueMnemonic=66
@ -49,35 +49,35 @@ FileChooser.acceptAllFileFilterText=Alle Dateien
FileChooser.newFolderButtonText=Neuer Ordner FileChooser.newFolderButtonText=Neuer Ordner
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=Ordnername: FileChooser.newFolderDialogText=Ordnername:
FileChooser.newFolderNoDirectoryErrorTitleText=Error FileChooser.newFolderNoDirectoryErrorTitleText=Fehler
FileChooser.newFolderNoDirectoryErrorText=Error creating directory "{0}": No such file or directory FileChooser.newFolderNoDirectoryErrorText=Fehler beim Erstellen von Verzeichnis "{0}": Datei oder Verzeichnis nicht vorhanden
FileChooser.deleteFileButtonText=Datei l\u00f6schen FileChooser.deleteFileButtonText=Datei l\u00F6schen
FileChooser.deleteFileButtonMnemonic=76 FileChooser.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=Datei umbenennen FileChooser.renameFileButtonText=Datei umbenennen
FileChooser.renameFileButtonMnemonic=87 FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=Abbrechen FileChooser.cancelButtonText=Abbrechen
FileChooser.cancelButtonMnemonic=83 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=Speichern FileChooser.saveButtonText=OK
FileChooser.saveButtonMnemonic=69 FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=OK FileChooser.openButtonText=OK
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Speichern FileChooser.saveDialogTitleText=Speichern
FileChooser.openDialogTitleText=\u00d6ffnen FileChooser.openDialogTitleText=\u00D6ffnen
FileChooser.pathLabelText=Auswahl: FileChooser.pathLabelText=Auswahl:
FileChooser.filterLabelText=Filter: FileChooser.filterLabelText=Filter:
FileChooser.pathLabelMnemonic=83 FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Ordner FileChooser.foldersLabelText=Ordner
FileChooser.foldersLabelMnemonic=82 FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=Dateien FileChooser.filesLabelText=Dateien
FileChooser.filesLabelMnemonic=70 FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=Farbauswahl abbrechen FileChooser.cancelButtonToolTipText=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen.
FileChooser.saveButtonToolTipText=Ausgew\u00e4hlte Datei speichern FileChooser.saveButtonToolTipText=Ausgew\u00E4hlte Datei speichern.
FileChooser.openButtonToolTipText=Ausgew\u00e4hlte Datei \u00f6ffnen FileChooser.openButtonToolTipText=Ausgew\u00E4hlte Datei \u00F6ffnen.
FileChooser.renameFileDialogText=Datei "{0}" umbenennen in FileChooser.renameFileDialogText=Datei "{0}" umbenennen in
FileChooser.renameFileErrorTitle=Fehler FileChooser.renameFileErrorTitle=Fehler
FileChooser.renameFileErrorText=Fehler beim Umbenennen der Datei "{0}" in "{1}" FileChooser.renameFileErrorText=Fehler beim Umbenennen der Datei "{0}" in "{1}"
OptionPane.okButtonMnemonic=79 OptionPane.okButtonMnemonic=79
OptionPane.cancelButtonMnemonic=83 OptionPane.cancelButtonMnemonic=67

View file

@ -6,7 +6,7 @@
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=Selector de color para GTK GTKColorChooserPanel.nameText=Selector de Color para GTK
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71 GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you # Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
@ -20,64 +20,64 @@ GTKColorChooserPanel.mnemonic=71
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second # GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to # character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. # represent the mnemonic.
GTKColorChooserPanel.hueText=Tono: GTKColorChooserPanel.hueText=Matiz:
GTKColorChooserPanel.hueMnemonic=84 GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=Rojo: GTKColorChooserPanel.redText=Rojo:
GTKColorChooserPanel.redMnemonic=82 GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=Saturaci\u00f3n: GTKColorChooserPanel.saturationText=Saturaci\u00F3n:
GTKColorChooserPanel.saturationMnemonic=83 GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=Verde: GTKColorChooserPanel.greenText=Verde:
GTKColorChooserPanel.greenMnemonic=86 GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=Valor: GTKColorChooserPanel.valueText=Valor:
GTKColorChooserPanel.valueMnemonic=65 GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=Azul: GTKColorChooserPanel.blueText=Azul:
GTKColorChooserPanel.blueMnemonic=65 GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=Nombre del color: GTKColorChooserPanel.colorNameText=Nombre del Color:
GTKColorChooserPanel.colorNameMnemonic=78 GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=Todos los archivos FileChooser.acceptAllFileFilterText=Todos los Archivos
FileChooser.newFolderButtonText=Nueva carpeta FileChooser.newFolderButtonText=Nueva Carpeta
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=Nombre de la carpeta: FileChooser.newFolderDialogText=Nombre de la Carpeta:
FileChooser.newFolderNoDirectoryErrorTitleText=Error FileChooser.newFolderNoDirectoryErrorTitleText=Error
FileChooser.newFolderNoDirectoryErrorText=Error creating directory "{0}": No such file or directory FileChooser.newFolderNoDirectoryErrorText=Error al crear el directorio "{0}": no existe dicho archivo o directorio
FileChooser.deleteFileButtonText=Eliminar archivo FileChooser.deleteFileButtonText=Suprimir Archivo
FileChooser.deleteFileButtonMnemonic=76 FileChooser.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=Renombrar archivo FileChooser.renameFileButtonText=Cambiar Nombre a Archivo
FileChooser.renameFileButtonMnemonic=82 FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=Cancelar FileChooser.cancelButtonText=Cancelar
FileChooser.cancelButtonMnemonic=67 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=Guardar FileChooser.saveButtonText=Aceptar
FileChooser.saveButtonMnemonic=82 FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=Aceptar FileChooser.openButtonText=Aceptar
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Guardar FileChooser.saveDialogTitleText=Guardar
FileChooser.openDialogTitleText=Abrir FileChooser.openDialogTitleText=Abrir
FileChooser.pathLabelText=Selecci\u00f3n: FileChooser.pathLabelText=Selecci\u00F3n:
FileChooser.filterLabelText=Filtro: FileChooser.filterLabelText=Filtro:
FileChooser.pathLabelMnemonic=83 FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Carpetas FileChooser.foldersLabelText=Carpetas
FileChooser.foldersLabelMnemonic=74 FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=Archivos FileChooser.filesLabelText=Archivos
FileChooser.filesLabelMnemonic=70 FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=Cancelar cuadro de di\u00e1logo de selecci\u00f3n de archivos. FileChooser.cancelButtonToolTipText=Abortar cuadro de di\u00E1logo del selector de archivos.
FileChooser.saveButtonToolTipText=Guardar el archivo seleccionado. FileChooser.saveButtonToolTipText=Guardar el archivo seleccionado.
FileChooser.openButtonToolTipText=Abrir el archivo seleccionado. FileChooser.openButtonToolTipText=Abrir el archivo seleccionado.
FileChooser.renameFileDialogText=Cambiar el nombre del archivo "{0}" por FileChooser.renameFileDialogText=Cambiar el nombre del archivo "{0}" por
FileChooser.renameFileErrorTitle=Error FileChooser.renameFileErrorTitle=Error
FileChooser.renameFileErrorText=Error al cambiar el nombre del archivo "{0}" por "{1}" FileChooser.renameFileErrorText=Error al cambiar el nombre del archivo "{0}" a "{1}"
OptionPane.okButtonMnemonic=79 OptionPane.okButtonMnemonic=79
OptionPane.cancelButtonMnemonic=67 OptionPane.cancelButtonMnemonic=67

View file

@ -6,7 +6,7 @@
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=S\u00e9lectionneur de couleur GTK GTKColorChooserPanel.nameText=S\u00E9lecteur de couleurs GTK
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71 GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you # Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
@ -20,25 +20,25 @@ GTKColorChooserPanel.mnemonic=71
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second # GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to # character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. # represent the mnemonic.
GTKColorChooserPanel.hueText=Teinte\u00a0: GTKColorChooserPanel.hueText=Teinte\u00A0:
GTKColorChooserPanel.hueMnemonic=84 GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=Rouge\u00a0: GTKColorChooserPanel.redText=Rouge\u00A0:
GTKColorChooserPanel.redMnemonic=82 GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=Saturation\u00a0: GTKColorChooserPanel.saturationText=Saturation\u00A0:
GTKColorChooserPanel.saturationMnemonic=83 GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=Vert\u00a0: GTKColorChooserPanel.greenText=Vert\u00A0:
GTKColorChooserPanel.greenMnemonic=69 GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=Valeur\u00a0: GTKColorChooserPanel.valueText=Valeur\u00A0:
GTKColorChooserPanel.valueMnemonic=86 GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=Bleu\u00a0: GTKColorChooserPanel.blueText=Bleu\u00A0:
GTKColorChooserPanel.blueMnemonic=66 GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=Nom de la couleur\u00a0: GTKColorChooserPanel.colorNameText=Nom de la couleur\u00A0:
GTKColorChooserPanel.colorNameMnemonic=78 GTKColorChooserPanel.colorNameMnemonic=78
@ -48,34 +48,34 @@ GTKColorChooserPanel.colorNameMnemonic=78
FileChooser.acceptAllFileFilterText=Tous les fichiers FileChooser.acceptAllFileFilterText=Tous les fichiers
FileChooser.newFolderButtonText=Nouveau dossier FileChooser.newFolderButtonText=Nouveau dossier
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=Nom de dossier: FileChooser.newFolderDialogText=Nom du dossier :
FileChooser.newFolderNoDirectoryErrorTitleText=Error FileChooser.newFolderNoDirectoryErrorTitleText=Erreur
FileChooser.newFolderNoDirectoryErrorText=Error creating directory "{0}": No such file or directory 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.deleteFileButtonText=Supprimer le fichier
FileChooser.deleteFileButtonMnemonic=76 FileChooser.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=Renommer le fichier FileChooser.renameFileButtonText=Renommer le fichier
FileChooser.renameFileButtonMnemonic=82 FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=Annuler FileChooser.cancelButtonText=Annuler
FileChooser.cancelButtonMnemonic=70 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=Enregistrer FileChooser.saveButtonText=OK
FileChooser.saveButtonMnemonic=79 FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=OK FileChooser.openButtonText=OK
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Enregistrer FileChooser.saveDialogTitleText=Enregistrer
FileChooser.openDialogTitleText=Ouvrir FileChooser.openDialogTitleText=Ouvrir
FileChooser.pathLabelText=S\u00e9lection\u00a0: FileChooser.pathLabelText=S\u00E9lection\u00A0:
FileChooser.filterLabelText=Filtre : FileChooser.filterLabelText=Filtre :
FileChooser.pathLabelMnemonic=83 FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Dossiers FileChooser.foldersLabelText=Dossiers
FileChooser.foldersLabelMnemonic=71 FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=Fichiers FileChooser.filesLabelText=Fichiers
FileChooser.filesLabelMnemonic=70 FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=Abandonner la bo\u00eete de dialogue du s\u00e9lectionneur de fichier. FileChooser.cancelButtonToolTipText=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers.
FileChooser.saveButtonToolTipText=Enregistrer le fichier s\u00e9lectionn\u00e9. FileChooser.saveButtonToolTipText=Enregistre le fichier s\u00E9lectionn\u00E9.
FileChooser.openButtonToolTipText=Ouvrir le fichier s\u00e9lectionn\u00e9. FileChooser.openButtonToolTipText=Ouvre le fichier s\u00E9lectionn\u00E9.
FileChooser.renameFileDialogText=Renommer le fichier "{0}" en FileChooser.renameFileDialogText=Renomme le fichier "{0}" en
FileChooser.renameFileErrorTitle=Erreur FileChooser.renameFileErrorTitle=Erreur
FileChooser.renameFileErrorText=Erreur lors du changement de nom du fichier "{0}" en "{1}" FileChooser.renameFileErrorText=Erreur lors du changement de nom du fichier "{0}" en "{1}"

View file

@ -20,17 +20,17 @@ GTKColorChooserPanel.mnemonic=71
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second # GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to # character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. # represent the mnemonic.
GTKColorChooserPanel.hueText=Tonalit\u00e0: GTKColorChooserPanel.hueText=Tonalit\u00E0:
GTKColorChooserPanel.hueMnemonic=84 GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=Rosso: GTKColorChooserPanel.redText=Rosso:
GTKColorChooserPanel.redMnemonic=82 GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=Saturazione: GTKColorChooserPanel.saturationText=Saturazione:
GTKColorChooserPanel.saturationMnemonic=83 GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=Verde: GTKColorChooserPanel.greenText=Verde:
GTKColorChooserPanel.greenMnemonic=69 GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=Valore: GTKColorChooserPanel.valueText=Valore:
GTKColorChooserPanel.valueMnemonic=86 GTKColorChooserPanel.valueMnemonic=86
@ -49,16 +49,16 @@ FileChooser.acceptAllFileFilterText=Tutti i file
FileChooser.newFolderButtonText=Nuova cartella FileChooser.newFolderButtonText=Nuova cartella
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=Nome della cartella: FileChooser.newFolderDialogText=Nome della cartella:
FileChooser.newFolderNoDirectoryErrorTitleText=Error FileChooser.newFolderNoDirectoryErrorTitleText=Errore
FileChooser.newFolderNoDirectoryErrorText=Error creating directory "{0}": No such file or directory FileChooser.newFolderNoDirectoryErrorText=Errore durante la creazione della directory "{0}": file o directory inesistente
FileChooser.deleteFileButtonText=Elimina file FileChooser.deleteFileButtonText=Elimina file
FileChooser.deleteFileButtonMnemonic=76 FileChooser.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=Rinomina file FileChooser.renameFileButtonText=Rinomina file
FileChooser.renameFileButtonMnemonic=82 FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=Annulla FileChooser.cancelButtonText=Annulla
FileChooser.cancelButtonMnemonic=67 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=Salva FileChooser.saveButtonText=OK
FileChooser.saveButtonMnemonic=82 FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=OK FileChooser.openButtonText=OK
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Salva FileChooser.saveDialogTitleText=Salva
@ -67,17 +67,17 @@ FileChooser.pathLabelText=Selezione:
FileChooser.filterLabelText=Filtro: FileChooser.filterLabelText=Filtro:
FileChooser.pathLabelMnemonic=83 FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Cartelle FileChooser.foldersLabelText=Cartelle
FileChooser.foldersLabelMnemonic=79 FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=File FileChooser.filesLabelText=File
FileChooser.filesLabelMnemonic=70 FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=Chiude la finestra di dialogo di selezione colore. FileChooser.cancelButtonToolTipText=Chiude la finestra di dialogo di selezione file.
FileChooser.saveButtonToolTipText=Salva il file selezionato. FileChooser.saveButtonToolTipText=Salva il file selezionato.
FileChooser.openButtonToolTipText=Apre il file selezionato. FileChooser.openButtonToolTipText=Apre il file selezionato.
FileChooser.renameFileDialogText=Rinomina del file "{0}" in FileChooser.renameFileDialogText=Rinomina file "{0}" in
FileChooser.renameFileErrorTitle=Errore FileChooser.renameFileErrorTitle=Errore
FileChooser.renameFileErrorText=Errore nella rinomina del file "{0}" in "{1}" FileChooser.renameFileErrorText=Errore durante la ridenominazione del file "{0}" in "{1}"
OptionPane.okButtonMnemonic=79 OptionPane.okButtonMnemonic=79
OptionPane.cancelButtonMnemonic=67 OptionPane.cancelButtonMnemonic=67

View file

@ -6,7 +6,7 @@
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=GTK \u30ab\u30e9\u30fc\u30c1\u30e5\u30fc\u30b6 GTKColorChooserPanel.nameText=GTK\u30AB\u30E9\u30FC\u30FB\u30C1\u30E5\u30FC\u30B6
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71 GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you # Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
@ -20,64 +20,64 @@ GTKColorChooserPanel.mnemonic=71
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second # GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to # character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. # represent the mnemonic.
GTKColorChooserPanel.hueText=\u8272\u5408\u3044(H): GTKColorChooserPanel.hueText=\u8272\u76F8:
GTKColorChooserPanel.hueMnemonic=72 GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=\u8d64(E): GTKColorChooserPanel.redText=\u8D64:
GTKColorChooserPanel.redMnemonic=69 GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=\u5f69\u5ea6(S): GTKColorChooserPanel.saturationText=\u5F69\u5EA6:
GTKColorChooserPanel.saturationMnemonic=83 GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=\u7dd1(G): GTKColorChooserPanel.greenText=\u7DD1:
GTKColorChooserPanel.greenMnemonic=71 GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=\u5024(V): GTKColorChooserPanel.valueText=\u5024:
GTKColorChooserPanel.valueMnemonic=86 GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=\u9752(B): GTKColorChooserPanel.blueText=\u9752:
GTKColorChooserPanel.blueMnemonic=66 GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=\u8272\u540d(N): GTKColorChooserPanel.colorNameText=\u8272\u540D:
GTKColorChooserPanel.colorNameMnemonic=78 GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=\u3059\u3079\u3066\u306e\u30d5\u30a1\u30a4\u30eb FileChooser.acceptAllFileFilterText=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB
FileChooser.newFolderButtonText=\u65b0\u898f\u30d5\u30a9\u30eb\u30c0 FileChooser.newFolderButtonText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=\u30d5\u30a9\u30eb\u30c0\u540d: FileChooser.newFolderDialogText=\u30D5\u30A9\u30EB\u30C0\u540D:
FileChooser.newFolderNoDirectoryErrorTitleText=Error FileChooser.newFolderNoDirectoryErrorTitleText=\u30A8\u30E9\u30FC
FileChooser.newFolderNoDirectoryErrorText=Error creating directory "{0}": No such file or directory 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\u3092\u524a\u9664 FileChooser.deleteFileButtonText=\u30D5\u30A1\u30A4\u30EB\u306E\u524A\u9664
FileChooser.deleteFileButtonMnemonic=76 FileChooser.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=\u30d5\u30a1\u30a4\u30eb\u540d\u3092\u5909\u66f4 FileChooser.renameFileButtonText=\u30D5\u30A1\u30A4\u30EB\u306E\u540D\u524D\u5909\u66F4
FileChooser.renameFileButtonMnemonic=82 FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=\u53d6\u6d88\u3057 FileChooser.cancelButtonText=\u53D6\u6D88
FileChooser.cancelButtonMnemonic=67 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=\u4fdd\u5b58 FileChooser.saveButtonText=OK
FileChooser.saveButtonMnemonic=79 FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=\u4e86\u89e3 FileChooser.openButtonText=OK
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=\u4fdd\u5b58 FileChooser.saveDialogTitleText=\u4FDD\u5B58
FileChooser.openDialogTitleText=\u958b\u304f FileChooser.openDialogTitleText=\u958B\u304F
FileChooser.pathLabelText=\u9078\u629e: FileChooser.pathLabelText=\u9078\u629E:
FileChooser.filterLabelText=\u30d5\u30a3\u30eb\u30bf: FileChooser.filterLabelText=\u30D5\u30A3\u30EB\u30BF:
FileChooser.pathLabelMnemonic=83 FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=\u30d5\u30a9\u30eb\u30c0 FileChooser.foldersLabelText=\u30D5\u30A9\u30EB\u30C0
FileChooser.foldersLabelMnemonic=68 FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=\u30d5\u30a1\u30a4\u30eb FileChooser.filesLabelText=\u30D5\u30A1\u30A4\u30EB
FileChooser.filesLabelMnemonic=70 FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=\u30d5\u30a1\u30a4\u30eb\u30c1\u30e5\u30fc\u30b6\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u5f37\u5236\u7d42\u4e86 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 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\u304f FileChooser.openButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059\u3002
FileChooser.renameFileDialogText=\u30d5\u30a1\u30a4\u30eb "{0}" \u306e\u540d\u524d\u3092\u5909\u66f4: FileChooser.renameFileDialogText=\u30D5\u30A1\u30A4\u30EB"{0}"\u3092\u6B21\u306E\u540D\u524D\u306B\u5909\u66F4:
FileChooser.renameFileErrorTitle=\u30a8\u30e9\u30fc FileChooser.renameFileErrorTitle=\u30A8\u30E9\u30FC
FileChooser.renameFileErrorText=\u30d5\u30a1\u30a4\u30eb "{0}" \u3092 "{1}" \u3078\u5909\u66f4\u6642\u306b\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.okButtonMnemonic=79
OptionPane.cancelButtonMnemonic=67 OptionPane.cancelButtonMnemonic=67

View file

@ -6,7 +6,7 @@
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=GTK \uc0c9 \uc120\ud0dd GTKColorChooserPanel.nameText=GTK \uC0C9\uC0C1 \uC120\uD0DD\uAE30
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71 GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you # Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
@ -20,64 +20,64 @@ GTKColorChooserPanel.mnemonic=71
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second # GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to # character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. # represent the mnemonic.
GTKColorChooserPanel.hueText=\uc0c9\uc0c1(H): GTKColorChooserPanel.hueText=\uC0C9\uC870:
GTKColorChooserPanel.hueMnemonic=72 GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=\ube68\uac15(E): GTKColorChooserPanel.redText=\uBE68\uAC04\uC0C9:
GTKColorChooserPanel.redMnemonic=69 GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=\ucc44\ub3c4(S): GTKColorChooserPanel.saturationText=\uCC44\uB3C4:
GTKColorChooserPanel.saturationMnemonic=83 GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=\ub179\uc0c9(G): GTKColorChooserPanel.greenText=\uB179\uC0C9:
GTKColorChooserPanel.greenMnemonic=71 GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=\uac12(V): GTKColorChooserPanel.valueText=\uAC12:
GTKColorChooserPanel.valueMnemonic=86 GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=\ud30c\ub791(B): GTKColorChooserPanel.blueText=\uD30C\uB780\uC0C9:
GTKColorChooserPanel.blueMnemonic=66 GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=\uc0c9 \uc774\ub984(N): GTKColorChooserPanel.colorNameText=\uC0C9\uC0C1 \uC774\uB984:
GTKColorChooserPanel.colorNameMnemonic=78 GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=\ubaa8\ub4e0 \ud30c\uc77c FileChooser.acceptAllFileFilterText=\uBAA8\uB4E0 \uD30C\uC77C
FileChooser.newFolderButtonText=\uc0c8 \ud3f4\ub354 FileChooser.newFolderButtonText=\uC0C8 \uD3F4\uB354
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=\ud3f4\ub354 \uc774\ub984: FileChooser.newFolderDialogText=\uD3F4\uB354 \uC774\uB984:
FileChooser.newFolderNoDirectoryErrorTitleText=Error FileChooser.newFolderNoDirectoryErrorTitleText=\uC624\uB958
FileChooser.newFolderNoDirectoryErrorText=Error creating directory "{0}": No such file or directory 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 FileChooser.deleteFileButtonText=\uD30C\uC77C \uC0AD\uC81C
FileChooser.deleteFileButtonMnemonic=76 FileChooser.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=\ud30c\uc77c \uc774\ub984 \ubc14\uafb8\uae30 FileChooser.renameFileButtonText=\uD30C\uC77C \uC774\uB984 \uBC14\uAFB8\uAE30
FileChooser.renameFileButtonMnemonic=82 FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=\ucde8\uc18c FileChooser.cancelButtonText=\uCDE8\uC18C
FileChooser.cancelButtonMnemonic=67 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=\uc800\uc7a5 FileChooser.saveButtonText=\uD655\uC778
FileChooser.saveButtonMnemonic=79 FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=\ud655\uc778 FileChooser.openButtonText=\uD655\uC778
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=\uc800\uc7a5 FileChooser.saveDialogTitleText=\uC800\uC7A5
FileChooser.openDialogTitleText=\uc5f4\uae30 FileChooser.openDialogTitleText=\uC5F4\uAE30
FileChooser.pathLabelText=\uc120\ud0dd: FileChooser.pathLabelText=\uC120\uD0DD:
FileChooser.filterLabelText=\ud544\ud130: FileChooser.filterLabelText=\uD544\uD130:
FileChooser.pathLabelMnemonic=83 FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=\ud3f4\ub354 FileChooser.foldersLabelText=\uD3F4\uB354
FileChooser.foldersLabelMnemonic=68 FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=\ud30c\uc77c FileChooser.filesLabelText=\uD30C\uC77C
FileChooser.filesLabelMnemonic=70 FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=\ud30c\uc77c \uc120\ud0dd \ub300\ud654 \uc0c1\uc790\ub97c \uc911\ub2e8\ud569\ub2c8\ub2e4. FileChooser.cancelButtonToolTipText=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790\uB97C \uC911\uB2E8\uD569\uB2C8\uB2E4.
FileChooser.saveButtonToolTipText=\uc120\ud0dd\ud55c \ud30c\uc77c\uc744 \uc800\uc7a5\ud569\ub2c8\ub2e4. FileChooser.saveButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC800\uC7A5\uD569\uB2C8\uB2E4.
FileChooser.openButtonToolTipText=\uc120\ud0dd\ud55c \ud30c\uc77c\uc744 \uc5fd\ub2c8\ub2e4. FileChooser.openButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC5FD\uB2C8\uB2E4.
FileChooser.renameFileDialogText=\ud30c\uc77c "{0}"\uc744 \ub2e4\uc74c\uc73c\ub85c \uc774\ub984 \ubc14\uafb8\uae30 FileChooser.renameFileDialogText="{0}" \uD30C\uC77C\uC758 \uC774\uB984 \uBC14\uAFB8\uAE30
FileChooser.renameFileErrorTitle=\uc624\ub958 FileChooser.renameFileErrorTitle=\uC624\uB958
FileChooser.renameFileErrorText="{0}"\uc5d0\uc11c "{1}"\ub85c \uc774\ub984 \ubc14\uafb8\uae30 \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.okButtonMnemonic=79
OptionPane.cancelButtonMnemonic=67 OptionPane.cancelButtonMnemonic=67

View file

@ -6,7 +6,7 @@
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=Seletor de cores do GTK GTKColorChooserPanel.nameText=Seletor de Cores do GTK
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71 GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you # Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
@ -26,7 +26,7 @@ GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=Vermelho: GTKColorChooserPanel.redText=Vermelho:
GTKColorChooserPanel.redMnemonic=69 GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=Satura\u00e7\u00e3o: GTKColorChooserPanel.saturationText=Satura\u00E7\u00E3o:
GTKColorChooserPanel.saturationMnemonic=83 GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=Verde: GTKColorChooserPanel.greenText=Verde:
@ -38,20 +38,22 @@ GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=Azul: GTKColorChooserPanel.blueText=Azul:
GTKColorChooserPanel.blueMnemonic=66 GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=Nome da cor: GTKColorChooserPanel.colorNameText=Nome da Cor:
GTKColorChooserPanel.colorNameMnemonic=78 GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=Todos os arquivos FileChooser.acceptAllFileFilterText=Todos os Arquivos
FileChooser.newFolderButtonText=Nova pasta FileChooser.newFolderButtonText=Nova Pasta
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=Nome da pasta: FileChooser.newFolderDialogText=Nome da pasta:
FileChooser.deleteFileButtonText=Excluir arquivo 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.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=Renomear arquivo FileChooser.renameFileButtonText=Renomear Arquivo
FileChooser.renameFileButtonMnemonic=82 FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=Cancelar FileChooser.cancelButtonText=Cancelar
FileChooser.cancelButtonMnemonic=67 FileChooser.cancelButtonMnemonic=67
@ -61,7 +63,7 @@ FileChooser.openButtonText=OK
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Salvar FileChooser.saveDialogTitleText=Salvar
FileChooser.openDialogTitleText=Abrir FileChooser.openDialogTitleText=Abrir
FileChooser.pathLabelText=Sele\u00e7\u00e3o: FileChooser.pathLabelText=Sele\u00E7\u00E3o:
FileChooser.filterLabelText=Filtro: FileChooser.filterLabelText=Filtro:
FileChooser.pathLabelMnemonic=83 FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Pastas FileChooser.foldersLabelText=Pastas
@ -69,7 +71,7 @@ FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=Arquivos FileChooser.filesLabelText=Arquivos
FileChooser.filesLabelMnemonic=70 FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=Anular caixa de di\u00e1logo do seletor de arquivos. FileChooser.cancelButtonToolTipText=Abortar caixa de di\u00E1logo do seletor de arquivos.
FileChooser.saveButtonToolTipText=Salvar arquivo selecionado. FileChooser.saveButtonToolTipText=Salvar arquivo selecionado.
FileChooser.openButtonToolTipText=Abrir arquivo selecionado. FileChooser.openButtonToolTipText=Abrir arquivo selecionado.

View file

@ -6,7 +6,7 @@
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=GTK F\u00e4rgv\u00e4ljaren GTKColorChooserPanel.nameText=GTK-f\u00E4rgv\u00E4ljaren
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71 GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you # Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
@ -21,25 +21,25 @@ GTKColorChooserPanel.mnemonic=71
# character of GTKColorChooserPanel.hueText should be underlined to # character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. # represent the mnemonic.
GTKColorChooserPanel.hueText=Nyans: GTKColorChooserPanel.hueText=Nyans:
GTKColorChooserPanel.hueMnemonic=78 GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=R\u00f6d: GTKColorChooserPanel.redText=R\u00F6d:
GTKColorChooserPanel.redMnemonic=82 GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=M\u00e4ttnad: GTKColorChooserPanel.saturationText=M\u00E4ttnad:
GTKColorChooserPanel.saturationMnemonic=77 GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=Gr\u00f6n: GTKColorChooserPanel.greenText=Gr\u00F6n:
GTKColorChooserPanel.greenMnemonic=71 GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=V\u00e4rde: GTKColorChooserPanel.valueText=V\u00E4rde:
GTKColorChooserPanel.valueMnemonic=86 GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=Bl\u00e5: GTKColorChooserPanel.blueText=Bl\u00E5:
GTKColorChooserPanel.blueMnemonic=66 GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=F\u00e4rgnamn: GTKColorChooserPanel.colorNameText=F\u00E4rg:
GTKColorChooserPanel.colorNameMnemonic=70 GTKColorChooserPanel.colorNameMnemonic=78
@ -47,37 +47,37 @@ GTKColorChooserPanel.colorNameMnemonic=70
FileChooser.acceptAllFileFilterText=Alla filer FileChooser.acceptAllFileFilterText=Alla filer
FileChooser.newFolderButtonText=Ny mapp FileChooser.newFolderButtonText=Ny mapp
FileChooser.newFolderButtonMnemonic=70 FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=Mapp: FileChooser.newFolderDialogText=Mapp:
FileChooser.newFolderNoDirectoryErrorTitleText=Error FileChooser.newFolderNoDirectoryErrorTitleText=Fel
FileChooser.newFolderNoDirectoryErrorText=Error creating directory "{0}": No such file or directory 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.deleteFileButtonText=Ta bort fil
FileChooser.deleteFileButtonMnemonic=76 FileChooser.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=Byt namn p\u00e5 fil FileChooser.renameFileButtonText=Namn\u00E4ndra fil
FileChooser.renameFileButtonMnemonic=84 FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=Avbryt FileChooser.cancelButtonText=Avbryt
FileChooser.cancelButtonMnemonic=83 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=Spara FileChooser.saveButtonText=OK
FileChooser.saveButtonMnemonic=80 FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=OK FileChooser.openButtonText=OK
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Spara FileChooser.saveDialogTitleText=Spara
FileChooser.openDialogTitleText=\u00d6ppna FileChooser.openDialogTitleText=\u00D6ppna
FileChooser.pathLabelText=Markeringen: FileChooser.pathLabelText=Val:
FileChooser.filterLabelText=Filter: FileChooser.filterLabelText=Filter:
FileChooser.pathLabelMnemonic=77 FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=Mappar FileChooser.foldersLabelText=Mappar
FileChooser.foldersLabelMnemonic=82 FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=Filer FileChooser.filesLabelText=Filer
FileChooser.filesLabelMnemonic=70 FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=St\u00e4ng dialogrutan f\u00f6r filval. FileChooser.cancelButtonToolTipText=Avbryt dialogrutan Filv\u00E4ljare.
FileChooser.saveButtonToolTipText=Spara den markerade filen. FileChooser.saveButtonToolTipText=Spara vald fil.
FileChooser.openButtonToolTipText=\u00d6ppna den markerade filen. FileChooser.openButtonToolTipText=\u00D6ppna vald fil.
FileChooser.renameFileDialogText=Byt namn p\u00e5 fil "{0}" till FileChooser.renameFileDialogText=Namn\u00E4ndra fil "{0}" till
FileChooser.renameFileErrorTitle=Fel FileChooser.renameFileErrorTitle=Fel
FileChooser.renameFileErrorText=Det gick inte att byta namn p\u00e5 fil "{0}" till "{1}" FileChooser.renameFileErrorText=Fel vid namn\u00E4ndring av fil "{0}" till "{1}"
OptionPane.okButtonMnemonic=79 OptionPane.okButtonMnemonic=79
OptionPane.cancelButtonMnemonic=83 OptionPane.cancelButtonMnemonic=67

View file

@ -6,7 +6,7 @@
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=GTK Color Chooser GTKColorChooserPanel.nameText=GTK \u989C\u8272\u9009\u62E9\u5668
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71 GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you # Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
@ -20,64 +20,64 @@ GTKColorChooserPanel.mnemonic=71
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second # GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to # character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. # represent the mnemonic.
GTKColorChooserPanel.hueText=\u8272\u8c03(H)\uff1a GTKColorChooserPanel.hueText=\u8272\u8C03:
GTKColorChooserPanel.hueMnemonic=72 GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=\u7ea2(E)\uff1a GTKColorChooserPanel.redText=\u7EA2:
GTKColorChooserPanel.redMnemonic=69 GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=\u9971\u548c\u5ea6(S)\uff1a GTKColorChooserPanel.saturationText=\u9971\u548C\u5EA6:
GTKColorChooserPanel.saturationMnemonic=83 GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=\u7eff(G)\uff1a GTKColorChooserPanel.greenText=\u7EFF:
GTKColorChooserPanel.greenMnemonic=71 GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=\u503c(V)\uff1a GTKColorChooserPanel.valueText=\u503C:
GTKColorChooserPanel.valueMnemonic=86 GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=\u84dd(B)\uff1a GTKColorChooserPanel.blueText=\u84DD:
GTKColorChooserPanel.blueMnemonic=66 GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=\u989c\u8272\u540d\u79f0(N)\uff1a GTKColorChooserPanel.colorNameText=\u989C\u8272\u540D\u79F0:
GTKColorChooserPanel.colorNameMnemonic=78 GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6587\u4ef6 FileChooser.acceptAllFileFilterText=\u6240\u6709\u6587\u4EF6
FileChooser.newFolderButtonText=\u65b0\u5efa\u6587\u4ef6\u5939 FileChooser.newFolderButtonText=\u65B0\u5EFA\u6587\u4EF6\u5939
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=\u6587\u4ef6\u5939\u540d\uff1a FileChooser.newFolderDialogText=\u6587\u4EF6\u5939\u540D:
FileChooser.newFolderNoDirectoryErrorTitleText=Error FileChooser.newFolderNoDirectoryErrorTitleText=\u9519\u8BEF
FileChooser.newFolderNoDirectoryErrorText=Error creating directory "{0}": No such file or directory 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 FileChooser.deleteFileButtonText=\u5220\u9664\u6587\u4EF6
FileChooser.deleteFileButtonMnemonic=76 FileChooser.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=\u91cd\u547d\u540d\u6587\u4ef6 FileChooser.renameFileButtonText=\u91CD\u547D\u540D\u6587\u4EF6
FileChooser.renameFileButtonMnemonic=82 FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=\u53d6\u6d88 FileChooser.cancelButtonText=\u53D6\u6D88
FileChooser.cancelButtonMnemonic=67 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=\u4fdd\u5b58 FileChooser.saveButtonText=\u786E\u5B9A
FileChooser.saveButtonMnemonic=79 FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=\u786e\u5b9a FileChooser.openButtonText=\u786E\u5B9A
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=\u4fdd\u5b58 FileChooser.saveDialogTitleText=\u4FDD\u5B58
FileChooser.openDialogTitleText=\u6253\u5f00 FileChooser.openDialogTitleText=\u6253\u5F00
FileChooser.pathLabelText=\u9009\u62e9\uff1a FileChooser.pathLabelText=\u9009\u62E9:
FileChooser.filterLabelText=\u8fc7\u6ee4\u5668\uff1a FileChooser.filterLabelText=\u7B5B\u9009\u5668:
FileChooser.pathLabelMnemonic=83 FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=\u6587\u4ef6\u5939 FileChooser.foldersLabelText=\u6587\u4EF6\u5939
FileChooser.foldersLabelMnemonic=68 FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=\u6587\u4ef6 FileChooser.filesLabelText=\u6587\u4EF6
FileChooser.filesLabelMnemonic=70 FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=\u7ec8\u6b62\u6587\u4ef6\u9009\u62e9\u5668\u5bf9\u8bdd\u6846\u3002 FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846\u3002
FileChooser.saveButtonToolTipText=\u4fdd\u5b58\u9009\u5b9a\u7684\u6587\u4ef6\u3002 FileChooser.saveButtonToolTipText=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6\u3002
FileChooser.openButtonToolTipText=\u6253\u5f00\u9009\u5b9a\u7684\u6587\u4ef6\u3002 FileChooser.openButtonToolTipText=\u6253\u5F00\u6240\u9009\u6587\u4EF6\u3002
FileChooser.renameFileDialogText=\u5c06\u6587\u4ef6\u201c{0}\u201d\u91cd\u547d\u540d\u4e3a FileChooser.renameFileDialogText=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A
FileChooser.renameFileErrorTitle=\u9519\u8bef FileChooser.renameFileErrorTitle=\u9519\u8BEF
FileChooser.renameFileErrorText=\u5c06\u6587\u4ef6\u201c{0}\u201d\u91cd\u547d\u540d\u4e3a\u201c{1}\u201d\u65f6\u51fa\u9519 FileChooser.renameFileErrorText=\u5C06\u6587\u4EF6 "{0}" \u91CD\u547D\u540D\u4E3A "{1}" \u65F6\u51FA\u9519
OptionPane.okButtonMnemonic=79 OptionPane.okButtonMnemonic=79
OptionPane.cancelButtonMnemonic=67 OptionPane.cancelButtonMnemonic=67

View file

@ -6,7 +6,7 @@
# GTK specific properties # GTK specific properties
# GTK color chooser properties: # GTK color chooser properties:
GTKColorChooserPanel.nameText=GTK Color Chooser GTKColorChooserPanel.nameText=GTK \u8272\u5F69\u9078\u64C7\u5668
# mnemonic as a VK_ constant # mnemonic as a VK_ constant
GTKColorChooserPanel.mnemonic=71 GTKColorChooserPanel.mnemonic=71
# Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you # Can also define GTKColorChooserPanel.dispalyedMnemonicIndex if you
@ -20,64 +20,64 @@ GTKColorChooserPanel.mnemonic=71
# GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second # GTKColorChooserPanel.hueMnemonicIndex=1 would indicate the second
# character of GTKColorChooserPanel.hueText should be underlined to # character of GTKColorChooserPanel.hueText should be underlined to
# represent the mnemonic. # represent the mnemonic.
GTKColorChooserPanel.hueText=\u8272\u8abf(H): GTKColorChooserPanel.hueText=\u8272\u8ABF:
GTKColorChooserPanel.hueMnemonic=72 GTKColorChooserPanel.hueMnemonic=72
GTKColorChooserPanel.redText=\u7d05(E): GTKColorChooserPanel.redText=\u7D05:
GTKColorChooserPanel.redMnemonic=69 GTKColorChooserPanel.redMnemonic=69
GTKColorChooserPanel.saturationText=\u98fd\u548c(S): GTKColorChooserPanel.saturationText=\u98FD\u548C:
GTKColorChooserPanel.saturationMnemonic=83 GTKColorChooserPanel.saturationMnemonic=83
GTKColorChooserPanel.greenText=\u7da0(G): GTKColorChooserPanel.greenText=\u7DA0:
GTKColorChooserPanel.greenMnemonic=71 GTKColorChooserPanel.greenMnemonic=71
GTKColorChooserPanel.valueText=\u503c(V): GTKColorChooserPanel.valueText=\u503C:
GTKColorChooserPanel.valueMnemonic=86 GTKColorChooserPanel.valueMnemonic=86
GTKColorChooserPanel.blueText=\u85cd(B): GTKColorChooserPanel.blueText=\u85CD:
GTKColorChooserPanel.blueMnemonic=66 GTKColorChooserPanel.blueMnemonic=66
GTKColorChooserPanel.colorNameText=\u984f\u8272\u540d\u7a31(N): GTKColorChooserPanel.colorNameText=\u984F\u8272\u540D\u7A31:
GTKColorChooserPanel.colorNameMnemonic=78 GTKColorChooserPanel.colorNameMnemonic=78
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=\u6240\u6709\u6a94\u6848 FileChooser.acceptAllFileFilterText=\u6240\u6709\u6A94\u6848
FileChooser.newFolderButtonText=\u65b0\u6a94\u6848\u593e FileChooser.newFolderButtonText=\u65B0\u8CC7\u6599\u593E
FileChooser.newFolderButtonMnemonic=78 FileChooser.newFolderButtonMnemonic=78
FileChooser.newFolderDialogText=\u6a94\u6848\u593e\u540d\u7a31: FileChooser.newFolderDialogText=\u8CC7\u6599\u593E\u540D\u7A31:
FileChooser.newFolderNoDirectoryErrorTitleText=Error FileChooser.newFolderNoDirectoryErrorTitleText=\u932F\u8AA4
FileChooser.newFolderNoDirectoryErrorText=Error creating directory "{0}": No such file or directory 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 FileChooser.deleteFileButtonText=\u522A\u9664\u6A94\u6848
FileChooser.deleteFileButtonMnemonic=76 FileChooser.deleteFileButtonMnemonic=76
FileChooser.renameFileButtonText=\u91cd\u65b0\u547d\u540d\u6a94\u6848 FileChooser.renameFileButtonText=\u91CD\u65B0\u547D\u540D\u6A94\u6848
FileChooser.renameFileButtonMnemonic=82 FileChooser.renameFileButtonMnemonic=82
FileChooser.cancelButtonText=\u53d6\u6d88 FileChooser.cancelButtonText=\u53D6\u6D88
FileChooser.cancelButtonMnemonic=67 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=\u5132\u5b58 FileChooser.saveButtonText=\u78BA\u5B9A
FileChooser.saveButtonMnemonic=79 FileChooser.saveButtonMnemonic=79
FileChooser.openButtonText=\u78ba\u5b9a FileChooser.openButtonText=\u78BA\u5B9A
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=\u5132\u5b58 FileChooser.saveDialogTitleText=\u5132\u5B58
FileChooser.openDialogTitleText=\u958b\u555f FileChooser.openDialogTitleText=\u958B\u555F
FileChooser.pathLabelText=\u9078\u53d6: FileChooser.pathLabelText=\u9078\u53D6:
FileChooser.filterLabelText=\u904e\u6ffe\u5668: FileChooser.filterLabelText=\u7BE9\u9078:
FileChooser.pathLabelMnemonic=83 FileChooser.pathLabelMnemonic=83
FileChooser.foldersLabelText=\u6a94\u6848\u593e FileChooser.foldersLabelText=\u8CC7\u6599\u593E
FileChooser.foldersLabelMnemonic=68 FileChooser.foldersLabelMnemonic=68
FileChooser.filesLabelText=\u6a94\u6848 FileChooser.filesLabelText=\u6A94\u6848
FileChooser.filesLabelMnemonic=70 FileChooser.filesLabelMnemonic=70
FileChooser.cancelButtonToolTipText=\u4e2d\u65b7\u6a94\u6848\u9078\u64c7\u7a0b\u5f0f\u5c0d\u8a71\u65b9\u584a\u3002 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.saveButtonToolTipText=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848\u3002
FileChooser.openButtonToolTipText=\u958b\u555f\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.renameFileDialogText=\u5C07\u6A94\u6848 "{0}" \u91CD\u65B0\u547D\u540D\u70BA
FileChooser.renameFileErrorTitle=\u932f\u8aa4 FileChooser.renameFileErrorTitle=\u932F\u8AA4
FileChooser.renameFileErrorText=\u5c07\u6a94\u6848 "{0}" \u91cd\u65b0\u547d\u540d\u70ba "{1}" \u6642\u51fa\u73fe\u932f\u8aa4 FileChooser.renameFileErrorText=\u5C07\u6A94\u6848 "{0}" \u91CD\u65B0\u547D\u540D\u70BA "{1}" \u6642\u51FA\u73FE\u932F\u8AA4
OptionPane.okButtonMnemonic=79 OptionPane.okButtonMnemonic=79
OptionPane.cancelButtonMnemonic=67 OptionPane.cancelButtonMnemonic=67

View file

@ -23,18 +23,18 @@ FileChooser.cancelButtonText=Abbrechen
FileChooser.saveButtonText=Speichern FileChooser.saveButtonText=Speichern
FileChooser.openButtonText=OK FileChooser.openButtonText=OK
FileChooser.saveDialogTitleText=Speichern FileChooser.saveDialogTitleText=Speichern
FileChooser.openDialogTitleText=\u00d6ffnen FileChooser.openDialogTitleText=\u00D6ffnen
FileChooser.updateButtonText=Aktualisieren FileChooser.updateButtonText=Aktualisieren
FileChooser.helpButtonText=Hilfe FileChooser.helpButtonText=Hilfe
FileChooser.pathLabelText=Pfad- oder Ordnernamen eingeben: FileChooser.pathLabelText=Pfad- oder Ordnernamen eingeben:
FileChooser.filterLabelText=Filter FileChooser.filterLabelText=Filter
FileChooser.foldersLabelText=Ordner FileChooser.foldersLabelText=Ordner
FileChooser.filesLabelText=Dateien FileChooser.filesLabelText=Dateien
FileChooser.enterFileNameLabelText=Filternamen eingeben: FileChooser.enterFileNameLabelText=Dateinamen eingeben:
FileChooser.enterFolderNameLabelText=Enter folder name: FileChooser.enterFolderNameLabelText=Ordnernamen eingeben:
FileChooser.cancelButtonToolTipText=Dialogfeld f\u00fcr Dateiauswahl abbrechen FileChooser.cancelButtonToolTipText=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen.
FileChooser.saveButtonToolTipText=Ausgew\u00e4hlte Datei speichern FileChooser.saveButtonToolTipText=Ausgew\u00E4hlte Datei speichern.
FileChooser.openButtonToolTipText=Ausgew\u00e4hlte Datei \u00f6ffnen FileChooser.openButtonToolTipText=Ausgew\u00E4hlte Datei \u00F6ffnen.
FileChooser.updateButtonToolTipText=Verzeichnisliste aktualisieren FileChooser.updateButtonToolTipText=Verzeichnisliste aktualisieren.
FileChooser.helpButtonToolTipText=Hilfe f\u00fcr Dateiauswahl FileChooser.helpButtonToolTipText=FileChooser-Hilfe.

View file

@ -26,15 +26,15 @@ FileChooser.saveDialogTitleText=Guardar
FileChooser.openDialogTitleText=Abrir FileChooser.openDialogTitleText=Abrir
FileChooser.updateButtonText=Actualizar FileChooser.updateButtonText=Actualizar
FileChooser.helpButtonText=Ayuda FileChooser.helpButtonText=Ayuda
FileChooser.pathLabelText=Introducir v\u00eda de acceso o nombre de carpeta: FileChooser.pathLabelText=Introducir nombre de la ruta de acceso o carpeta:
FileChooser.filterLabelText=Filtro FileChooser.filterLabelText=Filtro
FileChooser.foldersLabelText=Carpetas FileChooser.foldersLabelText=Carpetas
FileChooser.filesLabelText=Archivos FileChooser.filesLabelText=Archivos
FileChooser.enterFileNameLabelText=Introducir nombre de archivo: FileChooser.enterFileNameLabelText=Introducir nombre de archivo:
FileChooser.enterFolderNameLabelText=Enter folder name: FileChooser.enterFolderNameLabelText=Introducir nombre de carpeta:
FileChooser.cancelButtonToolTipText=Cuadro de di\u00e1logo para cancelar elector de archivo. FileChooser.cancelButtonToolTipText=Abortar cuadro de di\u00E1logo del selector de archivos.
FileChooser.saveButtonToolTipText=Guardar archivo seleccionado. FileChooser.saveButtonToolTipText=Guardar archivo seleccionado.
FileChooser.openButtonToolTipText=Abrir archivo seleccionado. FileChooser.openButtonToolTipText=Abrir archivo seleccionado.
FileChooser.updateButtonToolTipText=Actualizar lista de directorios. FileChooser.updateButtonToolTipText=Actualizar lista de directorios.
FileChooser.helpButtonToolTipText=Ayuda elector de archivos. FileChooser.helpButtonToolTipText=Ayuda del selector de archivos.

View file

@ -24,17 +24,17 @@ FileChooser.saveButtonText=Enregistrer
FileChooser.openButtonText=OK FileChooser.openButtonText=OK
FileChooser.saveDialogTitleText=Enregistrer FileChooser.saveDialogTitleText=Enregistrer
FileChooser.openDialogTitleText=Ouvrir FileChooser.openDialogTitleText=Ouvrir
FileChooser.updateButtonText=Mise \u00e0 jour FileChooser.updateButtonText=Mettre \u00E0 jour
FileChooser.helpButtonText=Aide FileChooser.helpButtonText=Aide
FileChooser.pathLabelText=Entrez le chemin ou le nom du dossier : FileChooser.pathLabelText=Entrez le chemin ou le nom du dossier :
FileChooser.filterLabelText=Filtre FileChooser.filterLabelText=Filtre
FileChooser.foldersLabelText=Dossiers FileChooser.foldersLabelText=Dossiers
FileChooser.filesLabelText=Fichiers FileChooser.filesLabelText=Fichiers
FileChooser.enterFileNameLabelText=Entrez le nom du fichier : FileChooser.enterFileNameLabelText=Entrez le nom du fichier :
FileChooser.enterFolderNameLabelText=Enter folder name: FileChooser.enterFolderNameLabelText=Entrez le nom du dossier :
FileChooser.cancelButtonToolTipText=Ferme la bo\u00eete de dialogue du s\u00e9lecteur de fichiers FileChooser.cancelButtonToolTipText=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers.
FileChooser.saveButtonToolTipText=Enregistre le fichier s\u00e9lectionn\u00e9 FileChooser.saveButtonToolTipText=Enregistre le fichier s\u00E9lectionn\u00E9.
FileChooser.openButtonToolTipText=Ouvre le fichier s\u00e9lectionn\u00e9 FileChooser.openButtonToolTipText=Ouvre le fichier s\u00E9lectionn\u00E9.
FileChooser.updateButtonToolTipText=Met \u00e0 jour la liste des r\u00e9pertoires FileChooser.updateButtonToolTipText=Met \u00E0 jour la liste des r\u00E9pertoires.
FileChooser.helpButtonToolTipText=Aide sur le s\u00e9lecteur de fichiers FileChooser.helpButtonToolTipText=Aide du s\u00E9lecteur de fichiers

View file

@ -31,10 +31,10 @@ FileChooser.filterLabelText=Filtro
FileChooser.foldersLabelText=Cartelle FileChooser.foldersLabelText=Cartelle
FileChooser.filesLabelText=File FileChooser.filesLabelText=File
FileChooser.enterFileNameLabelText=Nome file: FileChooser.enterFileNameLabelText=Nome file:
FileChooser.enterFolderNameLabelText=Enter folder name: FileChooser.enterFolderNameLabelText=Nome cartella:
FileChooser.cancelButtonToolTipText=Finestra di dialogo Interrompi Selezione file. FileChooser.cancelButtonToolTipText=Chiude la finestra di dialogo di selezione file.
FileChooser.saveButtonToolTipText=Salva file selezionato. FileChooser.saveButtonToolTipText=Salva il file selezionato.
FileChooser.openButtonToolTipText=Apri file selezionato. FileChooser.openButtonToolTipText=Apre il file selezionato.
FileChooser.updateButtonToolTipText=Aggiorna elenco directory. FileChooser.updateButtonToolTipText=Aggiorna lista directory.
FileChooser.helpButtonToolTipText=Guida di Selezione file. FileChooser.helpButtonToolTipText=Guida FileChooser.

View file

@ -19,22 +19,22 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=* FileChooser.acceptAllFileFilterText=*
FileChooser.cancelButtonText=\u53d6\u6d88\u3057 FileChooser.cancelButtonText=\u53D6\u6D88
FileChooser.saveButtonText=\u4fdd\u5b58 FileChooser.saveButtonText=\u4FDD\u5B58
FileChooser.openButtonText=\u4e86\u89e3 FileChooser.openButtonText=OK
FileChooser.saveDialogTitleText=\u4fdd\u5b58 FileChooser.saveDialogTitleText=\u4FDD\u5B58
FileChooser.openDialogTitleText=\u958b\u304f FileChooser.openDialogTitleText=\u958B\u304F
FileChooser.updateButtonText=\u66f4\u65b0 FileChooser.updateButtonText=\u66F4\u65B0
FileChooser.helpButtonText=\u30d8\u30eb\u30d7 FileChooser.helpButtonText=\u30D8\u30EB\u30D7
FileChooser.pathLabelText=\u30d1\u30b9\u307e\u305f\u306f\u30d5\u30a9\u30eb\u30c0\u540d\u3092\u5165\u529b: FileChooser.pathLabelText=\u30D1\u30B9\u307E\u305F\u306F\u30D5\u30A9\u30EB\u30C0\u540D\u3092\u5165\u529B:
FileChooser.filterLabelText=\u30d5\u30a3\u30eb\u30bf FileChooser.filterLabelText=\u30D5\u30A3\u30EB\u30BF
FileChooser.foldersLabelText=\u30d5\u30a9\u30eb\u30c0 FileChooser.foldersLabelText=\u30D5\u30A9\u30EB\u30C0
FileChooser.filesLabelText=\u30d5\u30a1\u30a4\u30eb FileChooser.filesLabelText=\u30D5\u30A1\u30A4\u30EB
FileChooser.enterFileNameLabelText=\u30d5\u30a1\u30a4\u30eb\u540d\u3092\u5165\u529b: FileChooser.enterFileNameLabelText=\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u5165\u529B:
FileChooser.enterFolderNameLabelText=Enter folder name: FileChooser.enterFolderNameLabelText=\u30D5\u30A9\u30EB\u30C0\u540D\u3092\u5165\u529B:
FileChooser.cancelButtonToolTipText=\u30d5\u30a1\u30a4\u30eb\u30c1\u30e5\u30fc\u30b6\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u7d42\u4e86 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\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306b\u4fdd\u5b58 FileChooser.saveButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3057\u307E\u3059\u3002
FileChooser.openButtonToolTipText=\u9078\u629e\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u958b\u304f FileChooser.openButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059\u3002
FileChooser.updateButtonToolTipText=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u8868\u793a\u3092\u66f4\u65b0 FileChooser.updateButtonToolTipText=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306E\u30EA\u30B9\u30C8\u3092\u66F4\u65B0\u3057\u307E\u3059\u3002
FileChooser.helpButtonToolTipText=\u30d5\u30a1\u30a4\u30eb\u30c1\u30e5\u30fc\u30b6\u306e\u30d8\u30eb\u30d7 FileChooser.helpButtonToolTipText=FileChooser\u306E\u30D8\u30EB\u30D7\u3067\u3059\u3002

View file

@ -19,22 +19,22 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=* FileChooser.acceptAllFileFilterText=*
FileChooser.cancelButtonText=\ucde8\uc18c FileChooser.cancelButtonText=\uCDE8\uC18C
FileChooser.saveButtonText=\uc800\uc7a5 FileChooser.saveButtonText=\uC800\uC7A5
FileChooser.openButtonText=\ud655\uc778 FileChooser.openButtonText=\uD655\uC778
FileChooser.saveDialogTitleText=\uc800\uc7a5 FileChooser.saveDialogTitleText=\uC800\uC7A5
FileChooser.openDialogTitleText=\uc5f4\uae30 FileChooser.openDialogTitleText=\uC5F4\uAE30
FileChooser.updateButtonText=\uc5c5\ub370\uc774\ud2b8 FileChooser.updateButtonText=\uAC31\uC2E0
FileChooser.helpButtonText=\ub3c4\uc6c0\ub9d0 FileChooser.helpButtonText=\uB3C4\uC6C0\uB9D0
FileChooser.pathLabelText=\uacbd\ub85c \ub610\ub294 \ud3f4\ub354 \uc774\ub984\uc744 \uc785\ub825\ud558\uc2ed\uc2dc\uc624: FileChooser.pathLabelText=\uACBD\uB85C \uB610\uB294 \uD3F4\uB354 \uC774\uB984 \uC785\uB825:
FileChooser.filterLabelText=\ud544\ud130 FileChooser.filterLabelText=\uD544\uD130
FileChooser.foldersLabelText=\ud3f4\ub354 FileChooser.foldersLabelText=\uD3F4\uB354
FileChooser.filesLabelText=\ud30c\uc77c FileChooser.filesLabelText=\uD30C\uC77C
FileChooser.enterFileNameLabelText=\ud30c\uc77c \uc774\ub984\uc744 \uc785\ub825\ud558\uc2ed\uc2dc\uc624: FileChooser.enterFileNameLabelText=\uD30C\uC77C \uC774\uB984 \uC785\uB825:
FileChooser.enterFolderNameLabelText=Enter folder name: FileChooser.enterFolderNameLabelText=\uD3F4\uB354 \uC774\uB984 \uC785\uB825:
FileChooser.cancelButtonToolTipText=\ud30c\uc77c \uc120\ud0dd \ub300\ud654\uc0c1\uc790\ub97c \uc911\uc9c0\ud569\ub2c8\ub2e4. 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.saveButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC800\uC7A5\uD569\uB2C8\uB2E4.
FileChooser.openButtonToolTipText=\uc120\ud0dd\ub41c \ud30c\uc77c\uc744 \uc5fd\ub2c8\ub2e4. FileChooser.openButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C\uC744 \uC5FD\uB2C8\uB2E4.
FileChooser.updateButtonToolTipText=\ub514\ub809\ud1a0\ub9ac \ubaa9\ub85d\uc744 \uc5c5\ub370\uc774\ud2b8\ud569\ub2c8\ub2e4. FileChooser.updateButtonToolTipText=\uB514\uB809\uD1A0\uB9AC \uBAA9\uB85D\uC744 \uAC31\uC2E0\uD569\uB2C8\uB2E4.
FileChooser.helpButtonToolTipText=FileChooser \ub3c4\uc6c0\ub9d0. FileChooser.helpButtonToolTipText=FileChooser \uB3C4\uC6C0\uB9D0\uC785\uB2C8\uB2E4.

View file

@ -26,14 +26,15 @@ FileChooser.saveDialogTitleText=Salvar
FileChooser.openDialogTitleText=Abrir FileChooser.openDialogTitleText=Abrir
FileChooser.updateButtonText=Atualizar FileChooser.updateButtonText=Atualizar
FileChooser.helpButtonText=Ajuda FileChooser.helpButtonText=Ajuda
FileChooser.pathLabelText=Inserir caminho ou nome da pasta: FileChooser.pathLabelText=Informar caminho ou nome da pasta:
FileChooser.filterLabelText=Filtro FileChooser.filterLabelText=Filtro
FileChooser.foldersLabelText=Pastas FileChooser.foldersLabelText=Pastas
FileChooser.filesLabelText=Arquivos FileChooser.filesLabelText=Arquivos
FileChooser.enterFileNameLabelText=Inserir nome de arquivo: FileChooser.enterFileNameLabelText=Informar nome do arquivo:
FileChooser.enterFolderNameLabelText=Informar nome da pasta:
FileChooser.cancelButtonToolTipText=Anular caixa de di\u00e1logo do seletor de arquivos. FileChooser.cancelButtonToolTipText=Abortar caixa de di\u00E1logo do seletor de arquivos.
FileChooser.saveButtonToolTipText=Salvar arquivo selecionado. FileChooser.saveButtonToolTipText=Salvar arquivo selecionado.
FileChooser.openButtonToolTipText=Abrir arquivo selecionado. FileChooser.openButtonToolTipText=Abrir arquivo selecionado.
FileChooser.updateButtonToolTipText=Atualizar lista de diret\u00f3rios. FileChooser.updateButtonToolTipText=Atualizar lista de diret\u00F3rios.
FileChooser.helpButtonToolTipText=Ajuda do FileChooser. FileChooser.helpButtonToolTipText=Ajuda do FileChooser.

View file

@ -23,18 +23,18 @@ FileChooser.cancelButtonText=Avbryt
FileChooser.saveButtonText=Spara FileChooser.saveButtonText=Spara
FileChooser.openButtonText=OK FileChooser.openButtonText=OK
FileChooser.saveDialogTitleText=Spara FileChooser.saveDialogTitleText=Spara
FileChooser.openDialogTitleText=\u00d6ppna FileChooser.openDialogTitleText=\u00D6ppna
FileChooser.updateButtonText=Uppdatera FileChooser.updateButtonText=Uppdatera
FileChooser.helpButtonText=Hj\u00e4lp FileChooser.helpButtonText=Hj\u00E4lp
FileChooser.pathLabelText=Ange s\u00f6kv\u00e4g eller mappnamn: FileChooser.pathLabelText=Ange s\u00F6kv\u00E4g eller mappnamn:
FileChooser.filterLabelText=Filter FileChooser.filterLabelText=Filter
FileChooser.foldersLabelText=Mappar FileChooser.foldersLabelText=Mappar
FileChooser.filesLabelText=Filer FileChooser.filesLabelText=Filer
FileChooser.enterFileNameLabelText=Ange filnamn: FileChooser.enterFileNameLabelText=Ange filnamn:
FileChooser.enterFolderNameLabelText=Enter folder name: FileChooser.enterFolderNameLabelText=Ange ett mappnamn:
FileChooser.cancelButtonToolTipText=Avbryt \u00d6ppna fil. FileChooser.cancelButtonToolTipText=Avbryt dialogrutan Filv\u00E4ljare.
FileChooser.saveButtonToolTipText=Spara markerad fil. FileChooser.saveButtonToolTipText=Spara vald fil.
FileChooser.openButtonToolTipText=\u00d6ppna markerad fil. FileChooser.openButtonToolTipText=\u00D6ppna vald fil.
FileChooser.updateButtonToolTipText=Uppdatera kataloglistan. FileChooser.updateButtonToolTipText=Uppdatera kataloglistan.
FileChooser.helpButtonToolTipText=Hj\u00e4lp - Filv\u00e4ljare. FileChooser.helpButtonToolTipText=Hj\u00E4lp - Filv\u00E4ljare.

View file

@ -19,22 +19,22 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=* FileChooser.acceptAllFileFilterText=*
FileChooser.cancelButtonText=\u53d6\u6d88 FileChooser.cancelButtonText=\u53D6\u6D88
FileChooser.saveButtonText=\u4fdd\u5b58 FileChooser.saveButtonText=\u4FDD\u5B58
FileChooser.openButtonText=\u786e\u5b9a FileChooser.openButtonText=\u786E\u5B9A
FileChooser.saveDialogTitleText=\u4fdd\u5b58 FileChooser.saveDialogTitleText=\u4FDD\u5B58
FileChooser.openDialogTitleText=\u6253\u5f00 FileChooser.openDialogTitleText=\u6253\u5F00
FileChooser.updateButtonText=\u66f4\u65b0 FileChooser.updateButtonText=\u66F4\u65B0
FileChooser.helpButtonText=\u5e2e\u52a9 FileChooser.helpButtonText=\u5E2E\u52A9
FileChooser.pathLabelText=\u952e\u5165\u8def\u5f84\u6216\u6587\u4ef6\u5939\u540d\uff1a FileChooser.pathLabelText=\u952E\u5165\u8DEF\u5F84\u6216\u6587\u4EF6\u5939\u540D:
FileChooser.filterLabelText=\u8fc7\u6ee4\u5668 FileChooser.filterLabelText=\u7B5B\u9009\u5668
FileChooser.foldersLabelText=\u6587\u4ef6\u5939 FileChooser.foldersLabelText=\u6587\u4EF6\u5939
FileChooser.filesLabelText=\u6587\u4ef6 FileChooser.filesLabelText=\u6587\u4EF6
FileChooser.enterFileNameLabelText=\u952e\u5165\u6587\u4ef6\u540d\uff1a FileChooser.enterFileNameLabelText=\u952E\u5165\u6587\u4EF6\u540D:
FileChooser.enterFolderNameLabelText=Enter folder name: FileChooser.enterFolderNameLabelText=\u8F93\u5165\u6587\u4EF6\u5939\u540D:
FileChooser.cancelButtonToolTipText=\u7ec8\u6b62\u6587\u4ef6\u9009\u62e9\u5668\u5bf9\u8bdd\u6846 FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846\u3002
FileChooser.saveButtonToolTipText=\u4fdd\u5b58\u9009\u62e9\u7684\u6587\u4ef6 FileChooser.saveButtonToolTipText=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6\u3002
FileChooser.openButtonToolTipText=\u6253\u5f00\u9009\u62e9\u7684\u6587\u4ef6 FileChooser.openButtonToolTipText=\u6253\u5F00\u6240\u9009\u6587\u4EF6\u3002
FileChooser.updateButtonToolTipText=\u66f4\u65b0\u76ee\u5f55\u5217\u8868 FileChooser.updateButtonToolTipText=\u66F4\u65B0\u76EE\u5F55\u5217\u8868\u3002
FileChooser.helpButtonToolTipText=\u6587\u4ef6\u9009\u62e9\u5668\u5e2e\u52a9 FileChooser.helpButtonToolTipText=FileChooser \u5E2E\u52A9\u3002

View file

@ -19,22 +19,22 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.acceptAllFileFilterText=* FileChooser.acceptAllFileFilterText=*
FileChooser.cancelButtonText=\u53d6\u6d88 FileChooser.cancelButtonText=\u53D6\u6D88
FileChooser.saveButtonText=\u5132\u5b58 FileChooser.saveButtonText=\u5132\u5B58
FileChooser.openButtonText=\u78ba\u5b9a FileChooser.openButtonText=\u78BA\u5B9A
FileChooser.saveDialogTitleText=\u5132\u5b58 FileChooser.saveDialogTitleText=\u5132\u5B58
FileChooser.openDialogTitleText=\u958b\u555f FileChooser.openDialogTitleText=\u958B\u555F
FileChooser.updateButtonText=\u66f4\u65b0 FileChooser.updateButtonText=\u66F4\u65B0
FileChooser.helpButtonText=\u8aaa\u660e FileChooser.helpButtonText=\u8AAA\u660E
FileChooser.pathLabelText=\u8f38\u5165\u8def\u5f91\u6216\u6a94\u6848\u593e\u540d\u7a31\ufe55 FileChooser.pathLabelText=\u8F38\u5165\u8DEF\u5F91\u6216\u8CC7\u6599\u593E\u540D\u7A31:
FileChooser.filterLabelText=\u904e\u6ffe\u5668 FileChooser.filterLabelText=\u7BE9\u9078
FileChooser.foldersLabelText=\u6a94\u6848\u593e FileChooser.foldersLabelText=\u8CC7\u6599\u593E
FileChooser.filesLabelText=\u6a94\u6848 FileChooser.filesLabelText=\u6A94\u6848
FileChooser.enterFileNameLabelText=\u8f38\u5165\u6a94\u6848\u540d\u7a31\ufe55 FileChooser.enterFileNameLabelText=\u8F38\u5165\u6A94\u6848\u540D\u7A31:
FileChooser.enterFolderNameLabelText=Enter folder name: FileChooser.enterFolderNameLabelText=\u8F38\u5165\u8CC7\u6599\u593E\u540D\u7A31:
FileChooser.cancelButtonToolTipText=\u4e2d\u65b7\u300c\u6a94\u6848\u9078\u64c7\u5668\u300d\u5c0d\u8a71\u65b9\u584a\u3002 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.saveButtonToolTipText=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848\u3002
FileChooser.openButtonToolTipText=\u958b\u555f\u9078\u53d6\u7684\u6a94\u6848\u3002 FileChooser.openButtonToolTipText=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848\u3002
FileChooser.updateButtonToolTipText=\u66f4\u65b0\u76ee\u9304\u6e05\u55ae\u3002 FileChooser.updateButtonToolTipText=\u66F4\u65B0\u76EE\u9304\u6E05\u55AE\u3002
FileChooser.helpButtonToolTipText=\u300c\u6a94\u6848\u9078\u64c7\u5668\u300d\u8aaa\u660e\u3002 FileChooser.helpButtonToolTipText=\u300C\u6A94\u6848\u9078\u64C7\u5668\u300D\u8AAA\u660E\u3002

View file

@ -21,10 +21,10 @@
FileChooser.lookInLabelText=Suchen in: FileChooser.lookInLabelText=Suchen in:
FileChooser.saveInLabelText=Speichern in: FileChooser.saveInLabelText=Speichern in:
FileChooser.fileNameLabelText=Dateiname: FileChooser.fileNameLabelText=Dateiname:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Ordnername:
FileChooser.filesOfTypeLabelText=Dateityp: FileChooser.filesOfTypeLabelText=Dateityp:
FileChooser.upFolderToolTipText=Eine Ebene h\u00f6her FileChooser.upFolderToolTipText=Eine Ebene h\u00F6her
FileChooser.upFolderAccessibleName=H\u00f6her FileChooser.upFolderAccessibleName=Nach oben
FileChooser.homeFolderToolTipText=Home FileChooser.homeFolderToolTipText=Home
FileChooser.homeFolderAccessibleName=Home FileChooser.homeFolderAccessibleName=Home
FileChooser.newFolderToolTipText=Neuen Ordner erstellen FileChooser.newFolderToolTipText=Neuen Ordner erstellen
@ -35,13 +35,13 @@ FileChooser.listViewButtonAccessibleName=Liste
FileChooser.listViewActionLabelText=Liste FileChooser.listViewActionLabelText=Liste
FileChooser.detailsViewButtonToolTipText=Details FileChooser.detailsViewButtonToolTipText=Details
FileChooser.detailsViewButtonAccessibleName=Details FileChooser.detailsViewButtonAccessibleName=Details
FileChooser.viewMenuButtonToolTipText = View Menu FileChooser.viewMenuButtonToolTipText = Ansichtsmen\u00FC
FileChooser.viewMenuButtonAccessibleName = View Menu FileChooser.viewMenuButtonAccessibleName = Ansichtsmen\u00FC
FileChooser.detailsViewActionLabelText=Details FileChooser.detailsViewActionLabelText=Details
FileChooser.refreshActionLabelText=Aktualisieren FileChooser.refreshActionLabelText=Aktualisieren
FileChooser.viewMenuLabelText=Ansicht FileChooser.viewMenuLabelText=Ansicht
FileChooser.fileNameHeaderText=Dateiname FileChooser.fileNameHeaderText=Name
FileChooser.fileSizeHeaderText=Gr\u00f6\u00dfe FileChooser.fileSizeHeaderText=Gr\u00F6\u00DFe
FileChooser.fileTypeHeaderText=Typ FileChooser.fileTypeHeaderText=Typ
FileChooser.fileDateHeaderText=Ge\u00e4ndert FileChooser.fileDateHeaderText=Ge\u00E4ndert
FileChooser.fileAttrHeaderText=Attribut FileChooser.fileAttrHeaderText=Attribute

View file

@ -20,28 +20,28 @@
FileChooser.lookInLabelText=Buscar en: FileChooser.lookInLabelText=Buscar en:
FileChooser.saveInLabelText=Guardar en: FileChooser.saveInLabelText=Guardar en:
FileChooser.fileNameLabelText=Nombre de archivo: FileChooser.fileNameLabelText=Nombre de Archivo:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Nombre de la Carpeta:
FileChooser.filesOfTypeLabelText=Archivos de tipo: FileChooser.filesOfTypeLabelText=Archivos de Tipo:
FileChooser.upFolderToolTipText=Subir un nivel FileChooser.upFolderToolTipText=Subir un Nivel
FileChooser.upFolderAccessibleName=Arriba FileChooser.upFolderAccessibleName=Arriba
FileChooser.homeFolderToolTipText=Principal FileChooser.homeFolderToolTipText=Inicio
FileChooser.homeFolderAccessibleName=Principal FileChooser.homeFolderAccessibleName=Inicio
FileChooser.newFolderToolTipText=Crear carpeta nueva FileChooser.newFolderToolTipText=Crear Nueva Carpeta
FileChooser.newFolderAccessibleName=Carpeta nueva FileChooser.newFolderAccessibleName=Nueva Carpeta
FileChooser.newFolderActionLabelText=Carpeta nueva FileChooser.newFolderActionLabelText=Nueva Carpeta
FileChooser.listViewButtonToolTipText=Lista FileChooser.listViewButtonToolTipText=Lista
FileChooser.listViewButtonAccessibleName=Lista FileChooser.listViewButtonAccessibleName=Lista
FileChooser.listViewActionLabelText=Lista FileChooser.listViewActionLabelText=Lista
FileChooser.detailsViewButtonToolTipText=Detalles FileChooser.detailsViewButtonToolTipText=Detalles
FileChooser.detailsViewButtonAccessibleName=Detalles FileChooser.detailsViewButtonAccessibleName=Detalles
FileChooser.viewMenuButtonToolTipText = View Menu FileChooser.viewMenuButtonToolTipText = Men\u00FA Ver
FileChooser.viewMenuButtonAccessibleName = View Menu FileChooser.viewMenuButtonAccessibleName = Men\u00FA Ver
FileChooser.detailsViewActionLabelText=Detalles FileChooser.detailsViewActionLabelText=Detalles
FileChooser.refreshActionLabelText=Renovar FileChooser.refreshActionLabelText=Refrescar
FileChooser.viewMenuLabelText=Ver FileChooser.viewMenuLabelText=Ver
FileChooser.fileNameHeaderText=Nombre FileChooser.fileNameHeaderText=Nombre
FileChooser.fileSizeHeaderText=Tama\u00f1o FileChooser.fileSizeHeaderText=Tama\u00F1o
FileChooser.fileTypeHeaderText=Tipo FileChooser.fileTypeHeaderText=Tipo
FileChooser.fileDateHeaderText=Modificado FileChooser.fileDateHeaderText=Modificado
FileChooser.fileAttrHeaderText=Atributos FileChooser.fileAttrHeaderText=Atributos

View file

@ -20,28 +20,28 @@
FileChooser.lookInLabelText=Rechercher dans : FileChooser.lookInLabelText=Rechercher dans :
FileChooser.saveInLabelText=Enregistrer dans : FileChooser.saveInLabelText=Enregistrer dans :
FileChooser.fileNameLabelText=Nom de fichier : FileChooser.fileNameLabelText=Nom du fichier :
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Nom du dossier :
FileChooser.filesOfTypeLabelText=Fichiers du type : FileChooser.filesOfTypeLabelText=Fichiers de type :
FileChooser.upFolderToolTipText=Remonte d'un niveau. FileChooser.upFolderToolTipText=Remonte d'un niveau.
FileChooser.upFolderAccessibleName=Vers le haut FileChooser.upFolderAccessibleName=Monter
FileChooser.homeFolderToolTipText=R\u00e9pertoire d'accueil FileChooser.homeFolderToolTipText=R\u00E9pertoire d'origine
FileChooser.homeFolderAccessibleName=Accueil FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
FileChooser.newFolderToolTipText=Cr\u00e9e un nouveau dossier. FileChooser.newFolderToolTipText=Cr\u00E9e un dossier.
FileChooser.newFolderAccessibleName=Nouveau dossier FileChooser.newFolderAccessibleName=Nouveau dossier
FileChooser.newFolderActionLabelText=Nouveau dossier FileChooser.newFolderActionLabelText=Nouveau dossier
FileChooser.listViewButtonToolTipText=Liste FileChooser.listViewButtonToolTipText=Liste
FileChooser.listViewButtonAccessibleName=Liste FileChooser.listViewButtonAccessibleName=Liste
FileChooser.listViewActionLabelText=Liste FileChooser.listViewActionLabelText=Liste
FileChooser.detailsViewButtonToolTipText=D\u00e9tails FileChooser.detailsViewButtonToolTipText=D\u00E9tails
FileChooser.detailsViewButtonAccessibleName=D\u00e9tails FileChooser.detailsViewButtonAccessibleName=D\u00E9tails
FileChooser.viewMenuButtonToolTipText = View Menu FileChooser.viewMenuButtonToolTipText = Menu Affichage
FileChooser.viewMenuButtonAccessibleName = View Menu FileChooser.viewMenuButtonAccessibleName = Menu Affichage
FileChooser.detailsViewActionLabelText=D\u00e9tails FileChooser.detailsViewActionLabelText=D\u00E9tails
FileChooser.refreshActionLabelText=Actualiser FileChooser.refreshActionLabelText=Actualiser
FileChooser.viewMenuLabelText=Affichage FileChooser.viewMenuLabelText=Affichage
FileChooser.fileNameHeaderText=Nom FileChooser.fileNameHeaderText=Nom
FileChooser.fileSizeHeaderText=Taille FileChooser.fileSizeHeaderText=Taille
FileChooser.fileTypeHeaderText=Type FileChooser.fileTypeHeaderText=Type
FileChooser.fileDateHeaderText=Modifi\u00e9 FileChooser.fileDateHeaderText=Modifi\u00E9
FileChooser.fileAttrHeaderText=Attributs FileChooser.fileAttrHeaderText=Attributs

View file

@ -21,22 +21,22 @@
FileChooser.lookInLabelText=Cerca in: FileChooser.lookInLabelText=Cerca in:
FileChooser.saveInLabelText=Salva in: FileChooser.saveInLabelText=Salva in:
FileChooser.fileNameLabelText=Nome file: FileChooser.fileNameLabelText=Nome file:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Nome della cartella:
FileChooser.filesOfTypeLabelText=Tipo file: FileChooser.filesOfTypeLabelText=Tipo file:
FileChooser.upFolderToolTipText=Cartella superiore FileChooser.upFolderToolTipText=Cartella superiore
FileChooser.upFolderAccessibleName=Superiore FileChooser.upFolderAccessibleName=Superiore
FileChooser.homeFolderToolTipText=Principale FileChooser.homeFolderToolTipText=Home
FileChooser.homeFolderAccessibleName=Principale FileChooser.homeFolderAccessibleName=Home
FileChooser.newFolderToolTipText=Crea nuova cartella FileChooser.newFolderToolTipText=Crea nuova cartella
FileChooser.newFolderAccessibleName=Nuova cartella FileChooser.newFolderAccessibleName=Nuova cartella
FileChooser.newFolderActionLabelText=Nuova cartella FileChooser.newFolderActionLabelText=Nuova cartella
FileChooser.listViewButtonToolTipText=Elenco FileChooser.listViewButtonToolTipText=Lista
FileChooser.listViewButtonAccessibleName=Elenco FileChooser.listViewButtonAccessibleName=Lista
FileChooser.listViewActionLabelText=Elenco FileChooser.listViewActionLabelText=Lista
FileChooser.detailsViewButtonToolTipText=Dettagli FileChooser.detailsViewButtonToolTipText=Dettagli
FileChooser.detailsViewButtonAccessibleName=Dettagli FileChooser.detailsViewButtonAccessibleName=Dettagli
FileChooser.viewMenuButtonToolTipText = View Menu FileChooser.viewMenuButtonToolTipText = Visualizza menu
FileChooser.viewMenuButtonAccessibleName = View Menu FileChooser.viewMenuButtonAccessibleName = Visualizza menu
FileChooser.detailsViewActionLabelText=Dettagli FileChooser.detailsViewActionLabelText=Dettagli
FileChooser.refreshActionLabelText=Aggiorna FileChooser.refreshActionLabelText=Aggiorna
FileChooser.viewMenuLabelText=Visualizza FileChooser.viewMenuLabelText=Visualizza

View file

@ -18,33 +18,30 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=\u53c2\u7167: FileChooser.lookInLabelText=\u53C2\u7167:
FileChooser.saveInLabelText=\u4fdd\u5b58: FileChooser.saveInLabelText=\u4FDD\u5B58:
FileChooser.fileNameLabelText=\u30d5\u30a1\u30a4\u30eb\u540d: FileChooser.fileNameLabelText=\u30D5\u30A1\u30A4\u30EB\u540D:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=\u30D5\u30A9\u30EB\u30C0\u540D:
FileChooser.filesOfTypeLabelText=\u30d5\u30a1\u30a4\u30eb\u30bf\u30a4\u30d7: FileChooser.filesOfTypeLabelText=\u30D5\u30A1\u30A4\u30EB\u306E\u30BF\u30A4\u30D7:
FileChooser.upFolderToolTipText=1 \u30ec\u30d9\u30eb\u4e0a\u3078 FileChooser.upFolderToolTipText=1\u30EC\u30D9\u30EB\u4E0A\u3078
FileChooser.upFolderAccessibleName=\u4e0a\u3078 FileChooser.upFolderAccessibleName=\u4E0A\u3078
FileChooser.homeFolderToolTipText=\u30db\u30fc\u30e0 FileChooser.homeFolderToolTipText=\u30DB\u30FC\u30E0
FileChooser.homeFolderAccessibleName=\u30db\u30fc\u30e0 FileChooser.homeFolderAccessibleName=\u30DB\u30FC\u30E0
FileChooser.newFolderToolTipText=\u30d5\u30a9\u30eb\u30c0\u306e\u65b0\u898f\u4f5c\u6210 FileChooser.newFolderToolTipText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210
FileChooser.newFolderAccessibleName=\u65b0\u898f\u30d5\u30a9\u30eb\u30c0 FileChooser.newFolderAccessibleName=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
FileChooser.newFolderActionLabelText=\u65b0\u898f\u30d5\u30a9\u30eb\u30c0 FileChooser.newFolderActionLabelText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
FileChooser.listViewButtonToolTipText=\u30ea\u30b9\u30c8 FileChooser.listViewButtonToolTipText=\u30EA\u30B9\u30C8
FileChooser.listViewButtonAccessibleName=\u30ea\u30b9\u30c8 FileChooser.listViewButtonAccessibleName=\u30EA\u30B9\u30C8
FileChooser.listViewActionLabelText=\u30ea\u30b9\u30c8 FileChooser.listViewActionLabelText=\u30EA\u30B9\u30C8
FileChooser.detailsViewButtonToolTipText=\u8a73\u7d30 FileChooser.detailsViewButtonToolTipText=\u8A73\u7D30
FileChooser.detailsViewButtonAccessibleName=\u8a73\u7d30 FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30
FileChooser.viewMenuButtonToolTipText = View Menu FileChooser.viewMenuButtonToolTipText = \u8868\u793A\u30E1\u30CB\u30E5\u30FC
FileChooser.viewMenuButtonAccessibleName = View Menu FileChooser.viewMenuButtonAccessibleName = \u8868\u793A\u30E1\u30CB\u30E5\u30FC
FileChooser.detailsViewActionLabelText=\u8a73\u7d30 FileChooser.detailsViewActionLabelText=\u8A73\u7D30
FileChooser.refreshActionLabelText=\u66f4\u65b0 FileChooser.refreshActionLabelText=\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5
FileChooser.viewMenuLabelText=\u8868\u793a FileChooser.viewMenuLabelText=\u8868\u793A
FileChooser.fileNameHeaderText=\u540d\u524d FileChooser.fileNameHeaderText=\u540D\u524D
FileChooser.fileSizeHeaderText=\u30b5\u30a4\u30ba FileChooser.fileSizeHeaderText=\u30B5\u30A4\u30BA
FileChooser.fileTypeHeaderText=\u30bf\u30a4\u30d7 FileChooser.fileTypeHeaderText=\u30BF\u30A4\u30D7
FileChooser.fileDateHeaderText=\u66f4\u65b0\u65e5 FileChooser.fileDateHeaderText=\u4FEE\u6B63\u65E5
FileChooser.fileAttrHeaderText=\u5c5e\u6027 FileChooser.fileAttrHeaderText=\u5C5E\u6027
FileChooser.directoryOpenButtonText=\u958b\u304f(O)
FileChooser.openButtonText=\u958b\u304f(O)
FileChooser.saveButtonText=\u4fdd\u5b58(S)

View file

@ -18,33 +18,30 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=\uac80\uc0c9 \uc704\uce58: FileChooser.lookInLabelText=\uAC80\uC0C9 \uC704\uCE58:
FileChooser.saveInLabelText=\uc800\uc7a5 \uc704\uce58: FileChooser.saveInLabelText=\uC800\uC7A5 \uC704\uCE58:
FileChooser.fileNameLabelText=\ud30c\uc77c \uc774\ub984: FileChooser.fileNameLabelText=\uD30C\uC77C \uC774\uB984:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=\uD3F4\uB354 \uC774\uB984:
FileChooser.filesOfTypeLabelText=\ud30c\uc77c \uc885\ub958: FileChooser.filesOfTypeLabelText=\uD30C\uC77C \uC720\uD615:
FileChooser.upFolderToolTipText=\ud55c \ub2e8\uacc4 \uc704\ub85c FileChooser.upFolderToolTipText=\uD55C \uB808\uBCA8 \uC704\uB85C
FileChooser.upFolderAccessibleName=\uc704 FileChooser.upFolderAccessibleName=\uC704\uB85C
FileChooser.homeFolderToolTipText=\ud648 FileChooser.homeFolderToolTipText=\uD648
FileChooser.homeFolderAccessibleName=\ud648 FileChooser.homeFolderAccessibleName=\uD648
FileChooser.newFolderToolTipText=\uc0c8 \ud3f4\ub354 \uc791\uc131 FileChooser.newFolderToolTipText=\uC0C8 \uD3F4\uB354 \uC0DD\uC131
FileChooser.newFolderAccessibleName=\uc0c8 \ud3f4\ub354 FileChooser.newFolderAccessibleName=\uC0C8 \uD3F4\uB354
FileChooser.newFolderActionLabelText=\uc0c8 \ud3f4\ub354 FileChooser.newFolderActionLabelText=\uC0C8 \uD3F4\uB354
FileChooser.listViewButtonToolTipText=\ubaa9\ub85d FileChooser.listViewButtonToolTipText=\uBAA9\uB85D
FileChooser.listViewButtonAccessibleName=\ubaa9\ub85d FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
FileChooser.listViewActionLabelText=\ubaa9\ub85d FileChooser.listViewActionLabelText=\uBAA9\uB85D
FileChooser.detailsViewButtonToolTipText=\uc790\uc138\ud788 FileChooser.detailsViewButtonToolTipText=\uC138\uBD80 \uC815\uBCF4
FileChooser.detailsViewButtonAccessibleName=\uc790\uc138\ud788 FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80 \uC815\uBCF4
FileChooser.viewMenuButtonToolTipText = View Menu FileChooser.viewMenuButtonToolTipText = \uBCF4\uAE30 \uBA54\uB274
FileChooser.viewMenuButtonAccessibleName = View Menu FileChooser.viewMenuButtonAccessibleName = \uBCF4\uAE30 \uBA54\uB274
FileChooser.detailsViewActionLabelText=\uc790\uc138\ud788 FileChooser.detailsViewActionLabelText=\uC138\uBD80 \uC815\uBCF4
FileChooser.refreshActionLabelText=\uac31\uc2e0 FileChooser.refreshActionLabelText=\uC0C8\uB85C \uACE0\uCE68
FileChooser.viewMenuLabelText=\ubcf4\uae30 FileChooser.viewMenuLabelText=\uBCF4\uAE30
FileChooser.fileNameHeaderText=\uc774\ub984 FileChooser.fileNameHeaderText=\uC774\uB984
FileChooser.fileSizeHeaderText=\ud06c\uae30 FileChooser.fileSizeHeaderText=\uD06C\uAE30
FileChooser.fileTypeHeaderText=\uc885\ub958 FileChooser.fileTypeHeaderText=\uC720\uD615
FileChooser.fileDateHeaderText=\uc218\uc815 FileChooser.fileDateHeaderText=\uC218\uC815 \uB0A0\uC9DC
FileChooser.fileAttrHeaderText=\uc18d\uc131 FileChooser.fileAttrHeaderText=\uC18D\uC131
FileChooser.directoryOpenButtonText=\uc5f4\uae30(O)
FileChooser.openButtonText=\uc5f4\uae30(O)
FileChooser.saveButtonText=\uc800\uc7a5(S)

View file

@ -20,20 +20,23 @@
FileChooser.lookInLabelText=Consultar em: FileChooser.lookInLabelText=Consultar em:
FileChooser.saveInLabelText=Salvar em: FileChooser.saveInLabelText=Salvar em:
FileChooser.fileNameLabelText=Nome de arquivo: FileChooser.fileNameLabelText=Nome do arquivo:
FileChooser.filesOfTypeLabelText=Arquivos de tipo: FileChooser.folderNameLabelText=Nome da pasta:
FileChooser.upFolderToolTipText=Um n\u00edvel acima FileChooser.filesOfTypeLabelText=Arquivos do tipo:
FileChooser.upFolderToolTipText=Um N\u00EDvel Acima
FileChooser.upFolderAccessibleName=Acima FileChooser.upFolderAccessibleName=Acima
FileChooser.homeFolderToolTipText=In\u00edcio FileChooser.homeFolderToolTipText=In\u00EDcio
FileChooser.homeFolderAccessibleName=In\u00edcio FileChooser.homeFolderAccessibleName=In\u00EDcio
FileChooser.newFolderToolTipText=Criar nova pasta FileChooser.newFolderToolTipText=Criar Nova Pasta
FileChooser.newFolderAccessibleName=Nova pasta FileChooser.newFolderAccessibleName=Nova Pasta
FileChooser.newFolderActionLabelText=Nova pasta FileChooser.newFolderActionLabelText=Nova Pasta
FileChooser.listViewButtonToolTipText=Lista FileChooser.listViewButtonToolTipText=Lista
FileChooser.listViewButtonAccessibleName=Lista FileChooser.listViewButtonAccessibleName=Lista
FileChooser.listViewActionLabelText=Lista FileChooser.listViewActionLabelText=Lista
FileChooser.detailsViewButtonToolTipText=Detalhes FileChooser.detailsViewButtonToolTipText=Detalhes
FileChooser.detailsViewButtonAccessibleName=Detalhes FileChooser.detailsViewButtonAccessibleName=Detalhes
FileChooser.viewMenuButtonToolTipText = Exibir Menu
FileChooser.viewMenuButtonAccessibleName = Exibir Menu
FileChooser.detailsViewActionLabelText=Detalhes FileChooser.detailsViewActionLabelText=Detalhes
FileChooser.refreshActionLabelText=Atualizar FileChooser.refreshActionLabelText=Atualizar
FileChooser.viewMenuLabelText=Exibir FileChooser.viewMenuLabelText=Exibir

View file

@ -21,9 +21,9 @@
FileChooser.lookInLabelText=Leta i: FileChooser.lookInLabelText=Leta i:
FileChooser.saveInLabelText=Spara i: FileChooser.saveInLabelText=Spara i:
FileChooser.fileNameLabelText=Filnamn: FileChooser.fileNameLabelText=Filnamn:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Mapp:
FileChooser.filesOfTypeLabelText=Filformat: FileChooser.filesOfTypeLabelText=Filformat:
FileChooser.upFolderToolTipText=Upp en niv\u00e5 FileChooser.upFolderToolTipText=Upp en niv\u00E5
FileChooser.upFolderAccessibleName=Upp FileChooser.upFolderAccessibleName=Upp
FileChooser.homeFolderToolTipText=Hem FileChooser.homeFolderToolTipText=Hem
FileChooser.homeFolderAccessibleName=Hem FileChooser.homeFolderAccessibleName=Hem
@ -33,15 +33,15 @@ FileChooser.newFolderActionLabelText=Ny mapp
FileChooser.listViewButtonToolTipText=Lista FileChooser.listViewButtonToolTipText=Lista
FileChooser.listViewButtonAccessibleName=Lista FileChooser.listViewButtonAccessibleName=Lista
FileChooser.listViewActionLabelText=Lista FileChooser.listViewActionLabelText=Lista
FileChooser.detailsViewButtonToolTipText=Detaljerad lista FileChooser.detailsViewButtonToolTipText=Detaljer
FileChooser.detailsViewButtonAccessibleName=Detaljerad lista FileChooser.detailsViewButtonAccessibleName=Detaljer
FileChooser.viewMenuButtonToolTipText = View Menu FileChooser.viewMenuButtonToolTipText = Menyn Visa
FileChooser.viewMenuButtonAccessibleName = View Menu FileChooser.viewMenuButtonAccessibleName = Menyn Visa
FileChooser.detailsViewActionLabelText=Detaljerad lista FileChooser.detailsViewActionLabelText=Detaljer
FileChooser.refreshActionLabelText=Uppdatera FileChooser.refreshActionLabelText=F\u00F6rnya
FileChooser.viewMenuLabelText=Vy FileChooser.viewMenuLabelText=Vy
FileChooser.fileNameHeaderText=Namn FileChooser.fileNameHeaderText=Namn
FileChooser.fileSizeHeaderText=Storlek FileChooser.fileSizeHeaderText=Storlek
FileChooser.fileTypeHeaderText=Typ FileChooser.fileTypeHeaderText=Typ
FileChooser.fileDateHeaderText=\u00c4ndrad FileChooser.fileDateHeaderText=\u00C4ndrad
FileChooser.fileAttrHeaderText=Attribut FileChooser.fileAttrHeaderText=Attribut

View file

@ -18,33 +18,30 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=\u67e5\u770b\uff1a FileChooser.lookInLabelText=\u67E5\u770B:
FileChooser.saveInLabelText=\u4fdd\u5b58\uff1a FileChooser.saveInLabelText=\u4FDD\u5B58:
FileChooser.fileNameLabelText=\u6587\u4ef6\u540d\uff1a FileChooser.fileNameLabelText=\u6587\u4EF6\u540D:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=\u6587\u4EF6\u5939\u540D:
FileChooser.filesOfTypeLabelText=\u6587\u4ef6\u7c7b\u578b\uff1a FileChooser.filesOfTypeLabelText=\u6587\u4EF6\u7C7B\u578B:
FileChooser.upFolderToolTipText=\u5411\u4e0a\u4e00\u5c42 FileChooser.upFolderToolTipText=\u5411\u4E0A\u4E00\u7EA7
FileChooser.upFolderAccessibleName=\u5411\u4e0a FileChooser.upFolderAccessibleName=\u5411\u4E0A
FileChooser.homeFolderToolTipText=\u8d77\u59cb\u76ee\u5f55 FileChooser.homeFolderToolTipText=\u4E3B\u76EE\u5F55
FileChooser.homeFolderAccessibleName=\u8d77\u59cb\u76ee\u5f55 FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u5F55
FileChooser.newFolderToolTipText=\u521b\u5efa\u65b0\u7684\u6587\u4ef6\u5939 FileChooser.newFolderToolTipText=\u521B\u5EFA\u65B0\u6587\u4EF6\u5939
FileChooser.newFolderAccessibleName=\u65b0\u5efa\u6587\u4ef6\u5939 FileChooser.newFolderAccessibleName=\u65B0\u5EFA\u6587\u4EF6\u5939
FileChooser.newFolderActionLabelText=\u65b0\u5efa\u6587\u4ef6\u5939 FileChooser.newFolderActionLabelText=\u65B0\u5EFA\u6587\u4EF6\u5939
FileChooser.listViewButtonToolTipText=\u5217\u8868 FileChooser.listViewButtonToolTipText=\u5217\u8868
FileChooser.listViewButtonAccessibleName=\u5217\u8868 FileChooser.listViewButtonAccessibleName=\u5217\u8868
FileChooser.listViewActionLabelText=\u5217\u8868 FileChooser.listViewActionLabelText=\u5217\u8868
FileChooser.detailsViewButtonToolTipText=\u8be6\u7ec6\u4fe1\u606f FileChooser.detailsViewButtonToolTipText=\u8BE6\u7EC6\u8D44\u6599
FileChooser.detailsViewButtonAccessibleName=\u8be6\u7ec6\u4fe1\u606f FileChooser.detailsViewButtonAccessibleName=\u8BE6\u7EC6\u8D44\u6599
FileChooser.viewMenuButtonToolTipText = View Menu FileChooser.viewMenuButtonToolTipText = \u67E5\u770B\u83DC\u5355
FileChooser.viewMenuButtonAccessibleName = View Menu FileChooser.viewMenuButtonAccessibleName = \u67E5\u770B\u83DC\u5355
FileChooser.detailsViewActionLabelText=\u8be6\u7ec6\u4fe1\u606f FileChooser.detailsViewActionLabelText=\u8BE6\u7EC6\u8D44\u6599
FileChooser.refreshActionLabelText=\u5237\u65b0 FileChooser.refreshActionLabelText=\u5237\u65B0
FileChooser.viewMenuLabelText=\u89c6\u56fe FileChooser.viewMenuLabelText=\u89C6\u56FE
FileChooser.fileNameHeaderText=\u540d\u79f0 FileChooser.fileNameHeaderText=\u540D\u79F0
FileChooser.fileSizeHeaderText=\u5927\u5c0f FileChooser.fileSizeHeaderText=\u5927\u5C0F
FileChooser.fileTypeHeaderText=\u7c7b\u578b FileChooser.fileTypeHeaderText=\u7C7B\u578B
FileChooser.fileDateHeaderText=\u4fee\u8ba2\u7248 FileChooser.fileDateHeaderText=\u4FEE\u6539\u65E5\u671F
FileChooser.fileAttrHeaderText=\u5c5e\u6027 FileChooser.fileAttrHeaderText=\u5C5E\u6027
FileChooser.directoryOpenButtonText=\u6253\u5f00(O)
FileChooser.openButtonText=\u6253\u5f00(O)
FileChooser.saveButtonText=\u4fdd\u5b58(S)

View file

@ -18,33 +18,30 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=\u67e5\u770b\ufe55 FileChooser.lookInLabelText=\u67E5\u8A62:
FileChooser.saveInLabelText=\u5132\u5b58\u65bc\uff1a FileChooser.saveInLabelText=\u5132\u5B58\u65BC:
FileChooser.fileNameLabelText=\u6a94\u6848\u540d\u7a31\ufe55 FileChooser.fileNameLabelText=\u6A94\u6848\u540D\u7A31:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=\u8CC7\u6599\u593E\u540D\u7A31:
FileChooser.filesOfTypeLabelText=\u6a94\u6848\u985e\u578b\ufe55 FileChooser.filesOfTypeLabelText=\u6A94\u6848\u985E\u578B:
FileChooser.upFolderToolTipText=\u5f80\u4e0a\u4e00\u5c64 FileChooser.upFolderToolTipText=\u5F80\u4E0A\u4E00\u5C64
FileChooser.upFolderAccessibleName=\u5f80\u4e0a FileChooser.upFolderAccessibleName=\u5F80\u4E0A
FileChooser.homeFolderToolTipText=\u56de\u4e3b\u76ee\u9304 FileChooser.homeFolderToolTipText=\u4E3B\u76EE\u9304
FileChooser.homeFolderAccessibleName=\u4e3b\u76ee\u9304 FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u9304
FileChooser.newFolderToolTipText=\u5efa\u7acb\u65b0\u8cc7\u6599\u593e FileChooser.newFolderToolTipText=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E
FileChooser.newFolderAccessibleName=\u65b0\u8cc7\u6599\u593e FileChooser.newFolderAccessibleName=\u65B0\u8CC7\u6599\u593E
FileChooser.newFolderActionLabelText=\u65b0\u8cc7\u6599\u593e FileChooser.newFolderActionLabelText=\u65B0\u8CC7\u6599\u593E
FileChooser.listViewButtonToolTipText=\u6a94\u6848\u6e05\u55ae FileChooser.listViewButtonToolTipText=\u6E05\u55AE
FileChooser.listViewButtonAccessibleName=\u6e05\u55ae FileChooser.listViewButtonAccessibleName=\u6E05\u55AE
FileChooser.listViewActionLabelText=\u6e05\u55ae FileChooser.listViewActionLabelText=\u6E05\u55AE
FileChooser.detailsViewButtonToolTipText=\u8a73\u7d30\u8cc7\u8a0a FileChooser.detailsViewButtonToolTipText=\u8A73\u7D30\u8CC7\u8A0A
FileChooser.detailsViewButtonAccessibleName=\u8a73\u7d30\u8cc7\u8a0a FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30\u8CC7\u8A0A
FileChooser.viewMenuButtonToolTipText = View Menu FileChooser.viewMenuButtonToolTipText = \u6AA2\u8996\u529F\u80FD\u8868
FileChooser.viewMenuButtonAccessibleName = View Menu FileChooser.viewMenuButtonAccessibleName = \u6AA2\u8996\u529F\u80FD\u8868
FileChooser.detailsViewActionLabelText=\u8a73\u7d30\u8cc7\u8a0a FileChooser.detailsViewActionLabelText=\u8A73\u7D30\u8CC7\u8A0A
FileChooser.refreshActionLabelText=\u66f4\u65b0 FileChooser.refreshActionLabelText=\u91CD\u65B0\u6574\u7406
FileChooser.viewMenuLabelText=\u6aa2\u8996 FileChooser.viewMenuLabelText=\u6AA2\u8996
FileChooser.fileNameHeaderText=\u540d\u7a31 FileChooser.fileNameHeaderText=\u540D\u7A31
FileChooser.fileSizeHeaderText=\u5927\u5c0f FileChooser.fileSizeHeaderText=\u5927\u5C0F
FileChooser.fileTypeHeaderText=\u985e\u578b FileChooser.fileTypeHeaderText=\u985E\u578B
FileChooser.fileDateHeaderText=\u4fee\u6539 FileChooser.fileDateHeaderText=\u4FEE\u6539\u65E5\u671F
FileChooser.fileAttrHeaderText=\u5c6c\u6027 FileChooser.fileAttrHeaderText=\u5C6C\u6027
FileChooser.directoryOpenButtonText=\u958b\u555f(O)
FileChooser.openButtonText=\u958b\u555f(O)
FileChooser.saveButtonText=\u5132\u5b58(S)

View file

@ -24,145 +24,147 @@
# #
# CacheRowSetImpl exceptions # CacheRowSetImpl exceptions
cachedrowsetimpl.populate = Ung\u00fcltiges Objekt ResultSet zum Auff\u00fcllen der Methode cachedrowsetimpl.populate = Ung\u00FCltiges ResultSet-Objekt zum Auff\u00FCllen der Methode angegeben
cachedrowsetimpl.invalidp = Ung\u00fcltiger Best\u00e4ndigkeits-Provider generiert cachedrowsetimpl.invalidp = Ung\u00FCltiger Persistence-Provider generiert
cachedrowsetimpl.nullhash = Instanz CachedRowSetImpl konnte nicht instanziiert werden. Hash-Tabelle mit Nullwert f\u00fcr Konstruktor angegeben cachedrowsetimpl.nullhash = CachedRowSetImpl-Instanz kann nicht instanziiert werden. Null-Hash-Tabelle f\u00FCr Constructor angegeben
cachedrowsetimpl.invalidop = Ung\u00fcltiger Vorgang beim Zeileneinf\u00fcgen cachedrowsetimpl.invalidop = Ung\u00FCltiger Vorgang beim Zeileneinf\u00FCgen
cachedrowsetimpl.accfailed = acceptChanges fehlgeschlagen cachedrowsetimpl.accfailed = acceptChanges nicht erfolgreich
cachedrowsetimpl.invalidcp = Ung\u00fcltige Cursorposition cachedrowsetimpl.invalidcp = Ung\u00FCltige Cursorposition
cachedrowsetimpl.illegalop = Ung\u00fcltiger Vorgang bei nicht eingef\u00fcgter Zeile cachedrowsetimpl.illegalop = Ung\u00FCltiger Vorgang bei nicht eingef\u00FCgter Zeile
cachedrowsetimpl.clonefail = Fehler bei Klon: {0} cachedrowsetimpl.clonefail = Clonen nicht erfolgreich: {0}
cachedrowsetimpl.invalidcol = Ung\u00fcltiger Spaltenindex cachedrowsetimpl.invalidcol = Ung\u00FCltiger Spaltenindex
cachedrowsetimpl.invalcolnm = Ung\u00fcltiger Spaltenname cachedrowsetimpl.invalcolnm = Ung\u00FCltiger Spaltenname
cachedrowsetimpl.boolfail = getBoolen bei Wert ( {0} ) in Spalte {1} fehlgeschlagen cachedrowsetimpl.boolfail = getBoolen bei Wert ( {0} ) in Spalte {1} nicht erfolgreich
cachedrowsetimpl.bytefail = getByte bei Wert ( {0} ) in Spalte {1} fehlgeschlagen cachedrowsetimpl.bytefail = getByte bei Wert ( {0} ) in Spalte {1} nicht erfolgreich
cachedrowsetimpl.shortfail = getShort bei Wert ( {0} ) in Spalte {1} fehlgeschlagen cachedrowsetimpl.shortfail = getShort bei Wert ( {0} ) in Spalte {1} nicht erfolgreich
cachedrowsetimpl.intfail = getInt bei Wert ( {0} ) in Spalte {1} fehlgeschlagen cachedrowsetimpl.intfail = getInt bei Wert ( {0} ) in Spalte {1} nicht erfolgreich
cachedrowsetimpl.longfail = getLong bei Wert ( {0} ) in Spalte {1} fehlgeschlagen cachedrowsetimpl.longfail = getLong bei Wert ( {0} ) in Spalte {1} nicht erfolgreich
cachedrowsetimpl.floatfail = getFloat bei Wert ( {0} ) in Spalte {1} fehlgeschlagen cachedrowsetimpl.floatfail = getFloat bei Wert ( {0} ) in Spalte {1} nicht erfolgreich
cachedrowsetimpl.doublefail = getDouble bei Wert ( {0} ) in Spalte {1} fehlgeschlagen cachedrowsetimpl.doublefail = getDouble bei Wert ( {0} ) in Spalte {1} nicht erfolgreich
cachedrowsetimpl.dtypemismt = Keine Datentyp\u00fcbereinstimmung cachedrowsetimpl.dtypemismt = Keine Datentyp\u00FCbereinstimmung
cachedrowsetimpl.datefail = getDate bei Wert ( {0} ) in Spalte {1} fehlgeschlagen; keine Konvertierung m\u00f6glich cachedrowsetimpl.datefail = getDate bei Wert ( {0} ) in Spalte {1} nicht erfolgreich. Keine Konvertierung m\u00F6glich
cachedrowsetimpl.timefail = getTime bei Wert ( {0} ) in Spalte {1} fehlgeschlagen; keine Konvertierung m\u00f6glich cachedrowsetimpl.timefail = getTime bei Wert ( {0} ) in Spalte {1} nicht erfolgreich. Keine Konvertierung m\u00F6glich
cachedrowsetimpl.posupdate = Positionierte Aktualisierungen werden nicht unterst\u00fctzt cachedrowsetimpl.posupdate = Positionierte Updates werden nicht unterst\u00FCtzt
cachedrowsetimpl.unableins = Keine Instanziierung m\u00f6glich: {0} cachedrowsetimpl.unableins = Keine Instanziierung m\u00F6glich: {0}
cachedrowsetimpl.beforefirst = beforeFirst : Ung\u00fcltiger Cursorvorgang cachedrowsetimpl.beforefirst = beforeFirst: Ung\u00FCltiger Cursorvorgang
cachedrowsetimpl.first = First : Ung\u00fcltiger Cursorvorgang cachedrowsetimpl.first = First: Ung\u00FCltiger Cursorvorgang
cachedrowsetimpl.last = last : TYPE_FORWARD_ONLY cachedrowsetimpl.last = last: TYPE_FORWARD_ONLY
cachedrowsetimpl.absolute = absolute: Ung\u00fcltige Cursorposition cachedrowsetimpl.absolute = absolute: Ung\u00FCltige Cursorposition
cachedrowsetimpl.relative = relative: Ung\u00fcltige Cursorposition cachedrowsetimpl.relative = relative: Ung\u00FCltige Cursorposition
cachedrowsetimpl.asciistream = Lesen von ASCII-Strom fehlgeschlagen cachedrowsetimpl.asciistream = Lesen von ASCII-Stream nicht erfolgreich
cachedrowsetimpl.binstream = Lesen von Bin\u00e4rstrom fehlgeschlagen cachedrowsetimpl.binstream = Lesen von Bin\u00E4r-Stream nicht erfolgreich
cachedrowsetimpl.failedins = Fehler beim Zeileneinf\u00fcgen cachedrowsetimpl.failedins = Fehler beim Zeileneinf\u00FCgen
cachedrowsetimpl.updateins = Aufrufen von updateRow beim Zeileneinf\u00fcgen cachedrowsetimpl.updateins = updateRow beim Zeileneinf\u00FCgen aufgerufen
cachedrowsetimpl.movetoins = moveToInsertRow: CONCUR_READ_ONLY cachedrowsetimpl.movetoins = moveToInsertRow: CONCUR_READ_ONLY
cachedrowsetimpl.movetoins1 = moveToInsertRow: keine Metadaten cachedrowsetimpl.movetoins1 = moveToInsertRow: keine Metadaten
cachedrowsetimpl.movetoins2 = moveToInsertRow: ung\u00fcltige Spaltenanzahl cachedrowsetimpl.movetoins2 = moveToInsertRow: ung\u00FCltige Spaltenanzahl
cachedrowsetimpl.tablename = Tabellenname darf nicht Null sein cachedrowsetimpl.tablename = Tabellenname darf nicht null sein
cachedrowsetimpl.keycols = Ung\u00fcltige Schl\u00fcsselspalten cachedrowsetimpl.keycols = Ung\u00FCltige Schl\u00FCsselspalten
cachedrowsetimpl.opnotsupp = Datenbank unterst\u00fctzt Vorgang nicht cachedrowsetimpl.invalidcol = Ung\u00FCltiger Spaltenindex
cachedrowsetimpl.matchcols = \u00dcbereinstimmende Spalten entsprechen nicht den definierten Spalten cachedrowsetimpl.opnotsupp = Vorgang nicht von Datenbank unterst\u00FCtzt
cachedrowsetimpl.setmatchcols = \u00dcbereinstimmende Spalten m\u00fcssen vor dem Abrufen definiert werden cachedrowsetimpl.matchcols = \u00DCbereinstimmungsspalten entsprechen nicht den festgelegten Spalten
cachedrowsetimpl.matchcols1 = Wert f\u00fcr \u00fcbereinstimmende Spalten muss gr\u00f6\u00dfer als 0 sein cachedrowsetimpl.setmatchcols = \u00DCbereinstimmungsspalten m\u00FCssen vor dem Abrufen festgelegt werden
cachedrowsetimpl.matchcols2 = \u00dcbereinstimmende Spalten m\u00fcssen leer sein oder eine Nullzeichenfolge aufweisen cachedrowsetimpl.matchcols1 = Wert f\u00FCr \u00DCbereinstimmungsspalten muss gr\u00F6\u00DFer als 0 sein
cachedrowsetimpl.unsetmatch = Spalten ohne definierten Wert entsprechen nicht Spalten mit definiertem Wert cachedrowsetimpl.matchcols2 = \u00DCbereinstimmungsspalten m\u00FCssen leer sein oder eine Nullzeichenfolge aufweisen
cachedrowsetimpl.unsetmatch1 = Spaltenname als Argument f\u00fcr unsetMatchColumn verwenden cachedrowsetimpl.unsetmatch = Spalten, deren Wert aufgehoben wird, entsprechen nicht den festgelegten Spalten
cachedrowsetimpl.unsetmatch2 = Spalten-ID als Argument f\u00fcr unsetMatchColumn verwenden cachedrowsetimpl.unsetmatch1 = Spaltenname als Argument f\u00FCr unsetMatchColumn verwenden
cachedrowsetimpl.numrows = Zeilenanzahl ist kleiner als Null oder kleiner als Abrufgr\u00f6\u00dfe cachedrowsetimpl.unsetmatch2 = Spalten-ID als Argument f\u00FCr unsetMatchColumn verwenden
cachedrowsetimpl.numrows = Zeilenanzahl ist kleiner als null oder kleiner als Abrufgr\u00F6\u00DFe
cachedrowsetimpl.startpos = Startposition darf keinen Negativwert aufweisen cachedrowsetimpl.startpos = Startposition darf keinen Negativwert aufweisen
cachedrowsetimpl.nextpage = Daten m\u00fcssen vor dem Abrufen ausgef\u00fcllt werden cachedrowsetimpl.nextpage = Daten m\u00FCssen vor dem Aufruf ausgef\u00FCllt werden
cachedrowsetimpl.pagesize = Seitengr\u00f6\u00dfe darf nicht kleiner als Null sein cachedrowsetimpl.pagesize = Seitengr\u00F6\u00DFe darf nicht kleiner als null sein
cachedrowsetimpl.pagesize1 = Seitengr\u00f6\u00dfe darf nicht gr\u00f6\u00dfer als maxRows sein cachedrowsetimpl.pagesize1 = Seitengr\u00F6\u00DFe darf nicht gr\u00F6\u00DFer als maxRows sein
cachedrowsetimpl.fwdonly = ResultSet kann nur vorw\u00e4rts gerichtet sein cachedrowsetimpl.fwdonly = ResultSet kann nur vorw\u00E4rts gerichtet sein
cachedrowsetimpl.type = Typ : {0} cachedrowsetimpl.type = Typ ist: {0}
cachedrowsetimpl.opnotysupp = Vorgang noch nicht unterst\u00fctzt cachedrowsetimpl.opnotysupp = Vorgang noch nicht unterst\u00FCtzt
cachedrowsetimpl.featnotsupp = Funktion nicht unterst\u00fctzt cachedrowsetimpl.featnotsupp = Feature nicht unterst\u00FCtzt
# WebRowSetImpl exceptions # WebRowSetImpl exceptions
webrowsetimpl.nullhash = Instanz WebRowSetImpl konnte nicht instanziiert werden. Hash-Tabelle mit Nullwert f\u00fcr Konstruktor angegeben webrowsetimpl.nullhash = WebRowSetImpl-Instanz kann nicht instanziiert werden. Null-Hash-Tabelle f\u00FCr Constructor angegeben
webrowsetimpl.invalidwr = Ung\u00fcltiger Schreiber webrowsetimpl.invalidwr = Ung\u00FCltiger Writer
webrowsetimpl.invalidrd = Ung\u00fcltiger Leser webrowsetimpl.invalidrd = Ung\u00FCltiger Reader
#FilteredRowSetImpl exceptions #FilteredRowSetImpl exceptions
filteredrowsetimpl.relative = relative: Ung\u00fcltiger Cursorvorgang filteredrowsetimpl.relative = relative: Ung\u00FCltiger Cursorvorgang
filteredrowsetimpl.absolute = absolute: Ung\u00fcltiger Cursorvorgang filteredrowsetimpl.absolute = absolute: Ung\u00FCltiger Cursorvorgang
filteredrowsetimpl.notallowed = Kein zul\u00e4ssiger Wert im Filter filteredrowsetimpl.notallowed = Kein zul\u00E4ssiger Wert im Filter
#JoinRowSetImpl exceptions #JoinRowSetImpl exceptions
joinrowsetimpl.notinstance = Keine Instanz von rowset joinrowsetimpl.notinstance = Keine Instanz von rowset
joinrowsetimpl.matchnotset = \u00dcbereinstimmende Spalte wurde nicht f\u00fcr Verkn\u00fcpfung definiert joinrowsetimpl.matchnotset = \u00DCbereinstimmungsspalte wurde nicht f\u00FCr Join festgelegt
joinrowsetimpl.numnotequal = Elementanzahl in rowset nicht gleich \u00fcbereinstimmende Spalte joinrowsetimpl.numnotequal = Elementanzahl in rowset nicht gleich \u00DCbereinstimmungsspalte
joinrowsetimpl.notdefined = Kein definierter Verkn\u00fcpfungstyp joinrowsetimpl.notdefined = Kein definierter Join-Typ
joinrowsetimpl.notsupported = Verkn\u00fcpfungstyp wird nicht unterst\u00fctzt joinrowsetimpl.notsupported = Join-Typ wird nicht unterst\u00FCtzt
joinrowsetimpl.initerror = Initialisierungsfehler bei JoinRowSet joinrowsetimpl.initerror = JoinRowSet-Initialisierungsfehler
joinrowsetimpl.genericerr = Generischer Anfangsfehler bei joinrowset joinrowsetimpl.genericerr = Generischer Anfangsfehler bei joinrowset
joinrowsetimpl.emptyrowset = Leeres rowset kann nicht zu diesem JoinRowSet hinzugef\u00fcgt werden joinrowsetimpl.emptyrowset = Leeres rowset kann nicht zu diesem JoinRowSet hinzugef\u00FCgt werden
#JdbcRowSetImpl exceptions #JdbcRowSetImpl exceptions
jdbcrowsetimpl.invalstate = Ung\u00fcltiger Status jdbcrowsetimpl.invalstate = Ung\u00FCltiger Status
jdbcrowsetimpl.connect = JdbcRowSet (verbinden), keine JNDI-Verbindung m\u00f6glich jdbcrowsetimpl.connect = JdbcRowSet (verbinden), keine JNDI-Verbindung m\u00F6glich
jdbcrowsetimpl.paramtype = Parametertyp konnte nicht abgeleitet werden jdbcrowsetimpl.paramtype = Parametertyp kann nicht abgeleitet werden
jdbcrowsetimpl.matchcols = \u00dcbereinstimmende Spalten entsprechen nicht den definierten Spalten jdbcrowsetimpl.matchcols = \u00DCbereinstimmungsspalten entsprechen nicht den festgelegten Spalten
jdbcrowsetimpl.setmatchcols = \u00dcbereinstimmende Spalten m\u00fcssen vor dem Abrufen definiert werden jdbcrowsetimpl.setmatchcols = \u00DCbereinstimmungsspalten m\u00FCssen vor dem Abrufen festgelegt werden
jdbcrowsetimpl.matchcols1 = Wert f\u00fcr \u00fcbereinstimmende Spalten muss gr\u00f6\u00dfer als 0 sein jdbcrowsetimpl.matchcols1 = Wert f\u00FCr \u00DCbereinstimmungsspalten muss gr\u00F6\u00DFer als 0 sein
jdbcrowsetimpl.matchcols2 = \u00dcbereinstimmende Spalten k\u00f6nnen keine Null- oder leere Zeichenfolge aufweisen jdbcrowsetimpl.matchcols2 = \u00DCbereinstimmungsspalten k\u00F6nnen keine Null- oder leere Zeichenfolge aufweisen
jdbcrowsetimpl.unsetmatch = Spalten ohne definierten Wert entsprechen nicht Spalten mit definiertem Wert jdbcrowsetimpl.unsetmatch = Spalten, deren Wert aufgehoben wird, entsprechen nicht den festgelegten Spalten
jdbcrowsetimpl.usecolname = Spaltenname als Argument f\u00fcr unsetMatchColumn verwenden jdbcrowsetimpl.usecolname = Spaltenname als Argument f\u00FCr unsetMatchColumn verwenden
jdbcrowsetimpl.usecolid = Spalten-ID als Argument f\u00fcr unsetMatchColumn verwenden jdbcrowsetimpl.usecolid = Spalten-ID als Argument f\u00FCr unsetMatchColumn verwenden
jdbcrowsetimpl.resnotupd = ResultSet kann nicht aktualisiert werden jdbcrowsetimpl.resnotupd = ResultSet kann nicht aktualisiert werden
jdbcrowsetimpl.opnotysupp = Vorgang noch nicht unterst\u00fctzt jdbcrowsetimpl.opnotysupp = Vorgang noch nicht unterst\u00FCtzt
jdbcrowsetimpl.featnotsupp = Funktion nicht unterst\u00fctzt jdbcrowsetimpl.featnotsupp = Feature nicht unterst\u00FCtzt
#CachedRowSetReader exceptions #CachedRowSetReader exceptions
crsreader.connect = (JNDI) Verbindung nicht m\u00f6glich crsreader.connect = (JNDI) Verbindung nicht m\u00F6glich
crsreader.paramtype = Parametertyp konnte nicht abgeleitet werden crsreader.paramtype = Parametertyp kann nicht abgeleitet werden
crsreader.connecterr = Interner Fehler in RowSetReader: Keine Verbindung oder kein Befehl crsreader.connecterr = Interner Fehler in RowSetReader: Keine Verbindung oder kein Befehl
crsreader.datedetected = Datum festgestellt crsreader.datedetected = Datum festgestellt
crsreader.caldetected = Kalender festgestellt crsreader.caldetected = Kalender festgestellt
#CachedRowSetWriter exceptions #CachedRowSetWriter exceptions
crswriter.connect = Verbindung konnte nicht hergestellt werden crswriter.connect = Verbindung kann nicht hergestellt werden
crswriter.tname = writeData kann Tabellennamen nicht feststellen crswriter.tname = writeData kann Tabellennamen nicht bestimmen
crswriter.params1 = Wert f\u00fcr params1: {0} crswriter.params1 = Wert f\u00FCr params1: {0}
crswriter.params2 = Wert f\u00fcr params2: {0} crswriter.params2 = Wert f\u00FCr params2: {0}
crswriter.conflictsno = Konflikt beim Synchronisieren crswriter.conflictsno = Konflikte beim Synchronisieren
#InsertRow exceptions #InsertRow exceptions
insertrow.novalue = Es wurde kein Wert eingef\u00fcgt insertrow.novalue = Es wurde kein Wert eingef\u00FCgt
#SyncResolverImpl exceptions #SyncResolverImpl exceptions
syncrsimpl.indexval = Indexwert liegt au\u00dferhalb des Bereichs syncrsimpl.indexval = Indexwert liegt au\u00DFerhalb des Bereichs
syncrsimpl.noconflict = Kein Konflikt bei dieser Spalte syncrsimpl.noconflict = Kein Konflikt bei dieser Spalte
syncrsimpl.syncnotpos = Keine Synchronisation m\u00f6glich syncrsimpl.syncnotpos = Keine Synchronisierung m\u00F6glich
syncrsimpl.valtores = Aufzul\u00f6sender Wert befindet sich entweder in der Datenbank oder in cachedrowset syncrsimpl.valtores = Aufzul\u00F6sender Wert kann sich entweder in der Datenbank oder in cachedrowset befinden
#WebRowSetXmlReader exception #WebRowSetXmlReader exception
wrsxmlreader.invalidcp = Ende von RowSet wurde erreicht. Ung\u00fcltige Cursorposition wrsxmlreader.invalidcp = Ende von RowSet wurde erreicht. Ung\u00FCltige Cursorposition
wrsxmlreader.readxml = readXML: {0} wrsxmlreader.readxml = readXML: {0}
wrsxmlreader.parseerr = ** Parsing-Fehler: {0}, Zeile: {1} , uri: {2} wrsxmlreader.parseerr = ** Parsing-Fehler: {0}, Zeile: {1} , URI: {2}
#WebRowSetXmlWriter exceptions #WebRowSetXmlWriter exceptions
wrsxmlwriter.ioex = IOException: {0} wrsxmlwriter.ioex = IOException: {0}
wrsxmlwriter.sqlex = SQLException: {0} wrsxmlwriter.sqlex = SQLException: {0}
wrsxmlwriter.failedwrite = Schreiben des Werts fehlgeschlagen wrsxmlwriter.failedwrite = Schreiben des Wertes nicht erfolgreich
wsrxmlwriter.notproper = Kein zul\u00e4ssiger Typ wsrxmlwriter.notproper = Kein zul\u00E4ssiger Typ
#XmlReaderContentHandler exceptions #XmlReaderContentHandler exceptions
xmlrch.errmap = Fehler beim Definieren der Zuordnung: {0} xmlrch.errmap = Fehler beim Festlegen der Zuordnung: {0}
xmlrch.errmetadata = Fehler beim Definieren der Metadaten: {0} xmlrch.errmetadata = Fehler beim Festlegen der Metadaten: {0}
xmlrch.errinsertval = Fehler beim Einf\u00fcgen der Werte: {0} xmlrch.errinsertval = Fehler beim Einf\u00FCgen der Werte: {0}
xmlrch.errconstr = Fehler beim Erstellen der Zeile: {0} xmlrch.errconstr = Fehler beim Erstellen der Zeile: {0}
xmlrch.errdel = Fehler beim L\u00f6schen der Zeile: {0} xmlrch.errdel = Fehler beim L\u00F6schen der Zeile: {0}
xmlrch.errinsdel = Fehler beim Erstellen der Einf\u00fcge- oder L\u00f6schzeile: {0} xmlrch.errinsert = Fehler beim Erstellen der Einf\u00FCgezeile: {0}
xmlrch.errupdate = Fehler beim Erstellen der Aktualisierungszeile: {0} xmlrch.errinsdel = Fehler beim Erstellen der Einf\u00FCge- oder L\u00F6schzeile: {0}
xmlrch.errupdate = Fehler beim Erstellen der Updatezeile: {0}
xmlrch.errupdrow = Fehler beim Aktualisieren der Zeile: {0} xmlrch.errupdrow = Fehler beim Aktualisieren der Zeile: {0}
xmlrch.chars = Zeichen: xmlrch.chars = Zeichen:
xmlrch.badvalue = Fehlerhafter Wert; Eigenschaft darf nicht Null sein. xmlrch.badvalue = Ung\u00FCltiger Wert. Eigenschaft kann nicht auf null gesetzt werden
xmlrch.badvalue1 = Fehlerhafter Wert; Metadaten d\u00fcrfen nicht Null sein. xmlrch.badvalue1 = Ung\u00FCltiger Wert. Metadaten k\u00F6nnen nicht auf null gesetzt werden
xmlrch.warning = ** Warnung: {0}, Zeile: {1} , uri: {2} xmlrch.warning = ** Warnung: {0}, Zeile: {1} , URI: {2}
#RIOptimisticProvider Exceptions #RIOptimisticProvider Exceptions
riop.locking = Sperren der Klassifizierung wird nicht unterst\u00fctzt riop.locking = Sperren der Klassifizierung wird nicht unterst\u00FCtzt
#RIXMLProvider exceptions #RIXMLProvider exceptions
rixml.unsupp = Keine Unterst\u00fctzung f\u00fcr RIXMLProvider rixml.unsupp = Keine Unterst\u00FCtzung bei RIXMLProvider

View file

@ -24,16 +24,16 @@
# #
# CacheRowSetImpl exceptions # CacheRowSetImpl exceptions
cachedrowsetimpl.populate = Objeto ResultSet no v\u00e1lido para m\u00e9todo de relleno cachedrowsetimpl.populate = Se ha proporcionado un objeto ResultSet no v\u00E1lido para el m\u00E9todo de relleno
cachedrowsetimpl.invalidp = El proveedor de persistencia generado no es v\u00e1lido cachedrowsetimpl.invalidp = El proveedor de persistencia generado no es v\u00E1lido
cachedrowsetimpl.nullhash = La instancia CachedRowSetImpl no se puede crear. Hashtable nula proporcionada al constructor cachedrowsetimpl.nullhash = La instancia CachedRowSetImpl no se puede crear. Se ha proporcionado una tabla hash nula al constructor
cachedrowsetimpl.invalidop = Operaci\u00f3n no v\u00e1lida al insertar fila cachedrowsetimpl.invalidop = Operaci\u00F3n no v\u00E1lida al insertar fila
cachedrowsetimpl.accfailed = Fallo de acceptChanges cachedrowsetimpl.accfailed = Fallo de acceptChanges
cachedrowsetimpl.invalidcp = Posici\u00f3n de cursor no v\u00e1lida cachedrowsetimpl.invalidcp = Posici\u00F3n de cursor no v\u00E1lida
cachedrowsetimpl.illegalop = Operaci\u00f3n no permitida en fila no insertada cachedrowsetimpl.illegalop = Operaci\u00F3n no permitida en fila no insertada
cachedrowsetimpl.clonefail = Fallo en la clonaci\u00f3n: {0} cachedrowsetimpl.clonefail = Fallo en la clonaci\u00F3n: {0}
cachedrowsetimpl.invalidcol = \u00cdndice de columnas no v\u00e1lido cachedrowsetimpl.invalidcol = \u00CDndice de columnas no v\u00E1lido
cachedrowsetimpl.invalcolnm = Nombre de columna no v\u00e1lido cachedrowsetimpl.invalcolnm = Nombre de columna no v\u00E1lido
cachedrowsetimpl.boolfail = Fallo de getBoolen en valor ( {0} ) de columna {1} cachedrowsetimpl.boolfail = Fallo de getBoolen en valor ( {0} ) de columna {1}
cachedrowsetimpl.bytefail = Fallo de getByte en valor ( {0} ) de columna {1} cachedrowsetimpl.bytefail = Fallo de getByte en valor ( {0} ) de columna {1}
cachedrowsetimpl.shortfail = Fallo de getShort en valor ( {0} ) de columna {1} cachedrowsetimpl.shortfail = Fallo de getShort en valor ( {0} ) de columna {1}
@ -41,128 +41,130 @@ cachedrowsetimpl.intfail = Fallo de getInt en valor ( {0} ) de columna {1}
cachedrowsetimpl.longfail = Fallo de getLong en valor ( {0} ) de columna {1} cachedrowsetimpl.longfail = Fallo de getLong en valor ( {0} ) de columna {1}
cachedrowsetimpl.floatfail = Fallo de getFloat en valor ( {0} ) de columna {1} cachedrowsetimpl.floatfail = Fallo de getFloat en valor ( {0} ) de columna {1}
cachedrowsetimpl.doublefail = Fallo de getDouble en valor ( {0} ) de columna {1} cachedrowsetimpl.doublefail = Fallo de getDouble en valor ( {0} ) de columna {1}
cachedrowsetimpl.dtypemismt = Discordancia entre tipos de datos cachedrowsetimpl.dtypemismt = Discordancia entre Tipos de Datos
cachedrowsetimpl.datefail = Fallo de getDate en valor ( {0} ) de columna {1} no es posible convertir cachedrowsetimpl.datefail = Fallo de getDate en valor ( {0} ) de columna {1}. No es posible convertir
cachedrowsetimpl.timefail = Fallo de getTime en valor ( {0} ) de columna {1} no es posible convertir cachedrowsetimpl.timefail = Fallo de getTime en valor ( {0} ) de columna {1}. No es posible convertir
cachedrowsetimpl.posupdate = Actualizaciones posicionadas incompatibles cachedrowsetimpl.posupdate = Actualizaciones posicionadas no soportadas
cachedrowsetimpl.unableins = No se puede crear instancia: {0} cachedrowsetimpl.unableins = No se ha podido crear la instancia: {0}
cachedrowsetimpl.beforefirst = beforeFirst: Operaci\u00f3n de cursor no v\u00e1lida cachedrowsetimpl.beforefirst = beforeFirst: Operaci\u00F3n de cursor no v\u00E1lida
cachedrowsetimpl.first = First: Operaci\u00f3n de cursor no v\u00e1lida cachedrowsetimpl.first = First: Operaci\u00F3n de cursor no v\u00E1lida
cachedrowsetimpl.last = last: TYPE_FORWARD_ONLY cachedrowsetimpl.last = last : TYPE_FORWARD_ONLY
cachedrowsetimpl.absolute = absolute: Posici\u00f3n de cursor no v\u00e1lida cachedrowsetimpl.absolute = absolute: Posici\u00F3n de cursor no v\u00E1lida
cachedrowsetimpl.relative = relative: Posici\u00f3n de cursor no v\u00e1lida cachedrowsetimpl.relative = relative: Posici\u00F3n de cursor no v\u00E1lida
cachedrowsetimpl.asciistream = fallo en lectura de flujo de caracteres ascii cachedrowsetimpl.asciistream = fallo en lectura de flujo de caracteres ascii
cachedrowsetimpl.binstream = fallo de lectura de flujo binario cachedrowsetimpl.binstream = fallo de lectura de flujo binario
cachedrowsetimpl.failedins = Fallo en inserci\u00f3n de fila cachedrowsetimpl.failedins = Fallo en inserci\u00F3n de fila
cachedrowsetimpl.updateins = llamada a updateRow mientras se insertaba fila cachedrowsetimpl.updateins = llamada a updateRow mientras se insertaba fila
cachedrowsetimpl.movetoins = moveToInsertRow: CONCUR_READ_ONLY cachedrowsetimpl.movetoins = moveToInsertRow : CONCUR_READ_ONLY
cachedrowsetimpl.movetoins1 = moveToInsertRow: no hay metadatos cachedrowsetimpl.movetoins1 = moveToInsertRow: no hay metadatos
cachedrowsetimpl.movetoins2 = moveToInsertRow: n\u00famero de columnas no v\u00e1lido cachedrowsetimpl.movetoins2 = moveToInsertRow: n\u00FAmero de columnas no v\u00E1lido
cachedrowsetimpl.tablename = El nombre de la tabla no puede ser nulo cachedrowsetimpl.tablename = El nombre de la tabla no puede ser nulo
cachedrowsetimpl.keycols = Columnas clave no v\u00e1lidas cachedrowsetimpl.keycols = Columnas clave no v\u00E1lidas
cachedrowsetimpl.opnotsupp = La base de datos no admite esta operaci\u00f3n cachedrowsetimpl.invalidcol = \u00CDndice de columnas no v\u00E1lido
cachedrowsetimpl.matchcols = Las columnas emparejadas no concuerdan con las definidas cachedrowsetimpl.opnotsupp = La base de datos no admite esta operaci\u00F3n
cachedrowsetimpl.setmatchcols = Configurar emparejamiento de columnas antes de obtenerlas cachedrowsetimpl.matchcols = Las columnas coincidentes no concuerdan con las definidas
cachedrowsetimpl.matchcols1 = Las columnas emparejadas deben ser mayores que 0 cachedrowsetimpl.setmatchcols = Defina las columnas coincidentes antes de obtenerlas
cachedrowsetimpl.matchcols2 = Las columnas emparejadas deben estar vac\u00edas o ser una cadena nula cachedrowsetimpl.matchcols1 = Las columnas coincidentes deben ser mayores que 0
cachedrowsetimpl.unsetmatch = Las columnas que se est\u00e1n desconfigurando no coinciden con las configuradas cachedrowsetimpl.matchcols2 = Las columnas coincidentes deben estar vac\u00EDas o ser una cadena nula
cachedrowsetimpl.unsetmatch1 = Usar nombre de columna como argumento en unsetMatchColumn cachedrowsetimpl.unsetmatch = Las columnas cuya definici\u00F3n se est\u00E1 anulando no concuerdan con las definidas
cachedrowsetimpl.unsetmatch2 = Usar ID de columna como argumento en unsetMatchColumn cachedrowsetimpl.unsetmatch1 = Use el nombre de columna como argumento en unsetMatchColumn
cachedrowsetimpl.numrows = El n\u00famero de filas es menor que cero o menor que el tama\u00f1o obtenido cachedrowsetimpl.unsetmatch2 = Use el identificador de columna como argumento en unsetMatchColumn
cachedrowsetimpl.startpos = La posici\u00f3n de inicio no puede ser negativa cachedrowsetimpl.numrows = El n\u00FAmero de filas es menor que cero o menor que el tama\u00F1o recuperado
cachedrowsetimpl.nextpage = Rellenar datos antes de realizar llamada cachedrowsetimpl.startpos = La posici\u00F3n de inicio no puede ser negativa
cachedrowsetimpl.pagesize = El tama\u00f1o de p\u00e1gina no puede ser menor que cero cachedrowsetimpl.nextpage = Rellene los datos antes de realizar la llamada
cachedrowsetimpl.pagesize1 = El tama\u00f1o de p\u00e1gina no puede ser mayor que maxRows cachedrowsetimpl.pagesize = El tama\u00F1o de p\u00E1gina no puede ser menor que cero
cachedrowsetimpl.fwdonly = ResultSet s\u00f3lo se reenv\u00eda cachedrowsetimpl.pagesize1 = El tama\u00F1o de p\u00E1gina no puede ser mayor que maxRows
cachedrowsetimpl.fwdonly = ResultSet s\u00F3lo se reenv\u00EDa
cachedrowsetimpl.type = El tipo es: {0} cachedrowsetimpl.type = El tipo es: {0}
cachedrowsetimpl.opnotysupp = Operaci\u00f3n no admitida todav\u00eda cachedrowsetimpl.opnotysupp = Operaci\u00F3n no soportada todav\u00EDa
cachedrowsetimpl.featnotsupp = Funci\u00f3n no admitida cachedrowsetimpl.featnotsupp = Funci\u00F3n no soportada
# WebRowSetImpl exceptions # WebRowSetImpl exceptions
webrowsetimpl.nullhash = La instancia WebRowSetImpl no se puede crear. Hashtable nula proporcionada al constructor webrowsetimpl.nullhash = La instancia WebRowSetImpl no se puede crear. Se ha proporcionado una tabla hash nula al constructor
webrowsetimpl.invalidwr = Escritor no v\u00e1lido webrowsetimpl.invalidwr = Escritor no v\u00E1lido
webrowsetimpl.invalidrd = Lector no v\u00e1lido webrowsetimpl.invalidrd = Lector no v\u00E1lido
#FilteredRowSetImpl exceptions #FilteredRowSetImpl exceptions
filteredrowsetimpl.relative = relative: Operaci\u00f3n de cursor no v\u00e1lida filteredrowsetimpl.relative = relative: Operaci\u00F3n de cursor no v\u00E1lida
filteredrowsetimpl.absolute = absolute: Operaci\u00f3n de cursor no v\u00e1lida filteredrowsetimpl.absolute = absolute: Operaci\u00F3n de cursor no v\u00E1lida
filteredrowsetimpl.notallowed = El filtro no admite este valor filteredrowsetimpl.notallowed = El filtro no admite este valor
#JoinRowSetImpl exceptions #JoinRowSetImpl exceptions
joinrowsetimpl.notinstance = No es una instancia de rowset joinrowsetimpl.notinstance = No es una instancia de rowset
joinrowsetimpl.matchnotset = Emparejamiento de columnas no configurado para unir joinrowsetimpl.matchnotset = Las columnas coincidentes no est\u00E1n definidas para la uni\u00F3n
joinrowsetimpl.numnotequal = El n\u00famero de elementos de rowset y el de emparejamiento de columnas no es el mismo joinrowsetimpl.numnotequal = El n\u00FAmero de elementos de rowset y el de columnas coincidentes no es el mismo
joinrowsetimpl.notdefined = No es un tipo de uni\u00f3n definido joinrowsetimpl.notdefined = No es un tipo de uni\u00F3n definido
joinrowsetimpl.notsupported = Este tipo de uni\u00f3n no es compatible joinrowsetimpl.notsupported = Este tipo de uni\u00F3n no est\u00E1 soportado
joinrowsetimpl.initerror = Error de inicio de JoinRowSet joinrowsetimpl.initerror = Error de inicializaci\u00F3n de JoinRowSet
joinrowsetimpl.genericerr = Error de Genric joinrowset intial joinrowsetimpl.genericerr = Error de inicializaci\u00F3n gen\u00E9rico de joinrowset
joinrowsetimpl.emptyrowset = No se puede a\u00f1adir un rowset vac\u00edo a este JoinRowSet joinrowsetimpl.emptyrowset = No se puede agregar un juego de filas vac\u00EDo a este JoinRowSet
#JdbcRowSetImpl exceptions #JdbcRowSetImpl exceptions
jdbcrowsetimpl.invalstate = Estado no v\u00e1lido jdbcrowsetimpl.invalstate = Estado no v\u00E1lido
jdbcrowsetimpl.connect = JdbcRowSet (conectar) JNDI no se puede conectar jdbcrowsetimpl.connect = JdbcRowSet (connect): JNDI no se puede conectar
jdbcrowsetimpl.paramtype = No se puede deducir tipo de par\u00e1metro jdbcrowsetimpl.paramtype = No se puede deducir el tipo de par\u00E1metro
jdbcrowsetimpl.matchcols = Las columnas emparejadas no concuerdan con las definidas jdbcrowsetimpl.matchcols = Las columnas coincidentes no concuerdan con las definidas
jdbcrowsetimpl.setmatchcols = Configurar emparejamiento de columnas antes de obtenerlas jdbcrowsetimpl.setmatchcols = Defina las columnas coincidentes antes de obtenerlas
jdbcrowsetimpl.matchcols1 = Las columnas emparejadas deben ser mayores que 0 jdbcrowsetimpl.matchcols1 = Las columnas coincidentes deben ser mayores que 0
jdbcrowsetimpl.matchcols2 = Las columnas emparejadas no pueden estar vac\u00edas ni ser una cadena nula jdbcrowsetimpl.matchcols2 = Las columnas coincidentes no pueden estar vac\u00EDas ni ser una cadena nula
jdbcrowsetimpl.unsetmatch = Las columnas que se est\u00e1n desconfigurando no son las mismas que las configuradas jdbcrowsetimpl.unsetmatch = Las columnas cuya definici\u00F3n se est\u00E1 anulando no concuerdan con las definidas
jdbcrowsetimpl.usecolname = Usar nombre de columna como argumento en unsetMatchColumn jdbcrowsetimpl.usecolname = Use el nombre de columna como argumento en unsetMatchColumn
jdbcrowsetimpl.usecolid = Usar ID de columna como argumento en unsetMatchColumn jdbcrowsetimpl.usecolid = Use el identificador de columna como argumento en unsetMatchColumn
jdbcrowsetimpl.resnotupd = ResultSet no se puede actualizar jdbcrowsetimpl.resnotupd = ResultSet no se puede actualizar
jdbcrowsetimpl.opnotysupp = Operaci\u00f3n no admitida todav\u00eda jdbcrowsetimpl.opnotysupp = Operaci\u00F3n no soportada todav\u00EDa
jdbcrowsetimpl.featnotsupp = Funci\u00f3n no admitida jdbcrowsetimpl.featnotsupp = Funci\u00F3n no soportada
#CachedRowSetReader exceptions #CachedRowSetReader exceptions
crsreader.connect = (JNDI) No se puede conectar crsreader.connect = (JNDI) No se ha podido conectar
crsreader.paramtype = No se puede deducir tipo de par\u00e1metro crsreader.paramtype = No se ha podido deducir el tipo de par\u00E1metro
crsreader.connecterr = Error interno en RowSetReader: no hay conexi\u00f3n o comando crsreader.connecterr = Error interno en RowSetReader: no hay conexi\u00F3n o comando
crsreader.datedetected = Fecha detectada crsreader.datedetected = Fecha Detectada
crsreader.caldetected = Calendario detectado crsreader.caldetected = Calendario Detectado
#CachedRowSetWriter exceptions #CachedRowSetWriter exceptions
crswriter.connect = No se puede obtener una conexi\u00f3n crswriter.connect = No se ha podido obtener una conexi\u00F3n
crswriter.tname = writeData no puede determinar el nombre de tabla crswriter.tname = writeData no puede determinar el nombre de tabla
crswriter.params1 = Valor de params1: {0} crswriter.params1 = Valor de params1: {0}
crswriter.params2 = Valor de params2: {0} crswriter.params2 = Valor de params2: {0}
crswriter.conflictsno = conflictos en la sincronizaci\u00f3n crswriter.conflictsno = conflictos en la sincronizaci\u00F3n
#InsertRow exceptions #InsertRow exceptions
insertrow.novalue = No se ha insertado ning\u00fan valor insertrow.novalue = No se ha insertado ning\u00FAn valor
#SyncResolverImpl exceptions #SyncResolverImpl exceptions
syncrsimpl.indexval = El valor de \u00edndice est\u00e1 fuera del intervalo syncrsimpl.indexval = El valor de \u00EDndice est\u00E1 fuera de rango
syncrsimpl.noconflict = Esta columna no est\u00e1 en conflicto syncrsimpl.noconflict = Esta columna no est\u00E1 en conflicto
syncrsimpl.syncnotpos = No se puede sincronizar syncrsimpl.syncnotpos = No se puede sincronizar
syncrsimpl.valtores = El valor que se debe definir puede estar en la base de datos o en cachedrowset syncrsimpl.valtores = El valor que se debe resolver puede estar en la base de datos o en cachedrowset
#WebRowSetXmlReader exception #WebRowSetXmlReader exception
wrsxmlreader.invalidcp = Se ha llegado al final de RowSet. Posici\u00f3n de cursor no v\u00e1lida wrsxmlreader.invalidcp = Se ha llegado al final de RowSet. Posici\u00F3n de cursor no v\u00E1lida
wrsxmlreader.readxml = readXML: {0} wrsxmlreader.readxml = readXML : {0}
wrsxmlreader.parseerr = ** Error de an\u00e1lisis: {0} , l\u00ednea: {1} , uri: {2} wrsxmlreader.parseerr = ** Error de an\u00E1lisis: {0} , l\u00EDnea: {1} , uri: {2}
#WebRowSetXmlWriter exceptions #WebRowSetXmlWriter exceptions
wrsxmlwriter.ioex = IOException: {0} wrsxmlwriter.ioex = IOException : {0}
wrsxmlwriter.sqlex = SQLException: {0} wrsxmlwriter.sqlex = SQLException : {0}
wrsxmlwriter.failedwrite = No se pudo escribir valor wrsxmlwriter.failedwrite = Error al escribir el valor
wsrxmlwriter.notproper = Tipo incorrecto wsrxmlwriter.notproper = Tipo incorrecto
#XmlReaderContentHandler exceptions #XmlReaderContentHandler exceptions
xmlrch.errmap = Error al configurar la asignaci\u00f3n: {0} xmlrch.errmap = Error al definir la asignaci\u00F3n: {0}
xmlrch.errmetadata = Error al configurar metadatos: {0} xmlrch.errmetadata = Error al definir metadatos: {0}
xmlrch.errinsertval = Error al insertar los valores: {0} xmlrch.errinsertval = Error al insertar los valores: {0}
xmlrch.errconstr = Error al construir fila: {0} xmlrch.errconstr = Error al construir la fila: {0}
xmlrch.errdel = Error al borrar fila: {0} xmlrch.errdel = Error al suprimir la fila: {0}
xmlrch.errinsdel = Error al construir insertar o suprimir fila: {0} xmlrch.errinsert = Error al construir la fila de inserci\u00F3n: {0}
xmlrch.errupdate = Error al construir actualizar fila: {0} xmlrch.errinsdel = Error al construir la fila de inserci\u00F3n o supresi\u00F3n: {0}
xmlrch.errupdate = Error al construir la fila de actualizaci\u00F3n: {0}
xmlrch.errupdrow = Error al actualizar la fila: {0} xmlrch.errupdrow = Error al actualizar la fila: {0}
xmlrch.chars = caracteres: xmlrch.chars = caracteres:
xmlrch.badvalue = Valor incorrecto; la propiedad no puede ser nula xmlrch.badvalue = Valor incorrecto; la propiedad no puede ser nula
xmlrch.badvalue1 = Valor incorrecto; los metadatos no pueden ser nulos xmlrch.badvalue1 = Valor incorrecto; los metadatos no pueden ser nulos
xmlrch.warning = ** Advertencia: {0} , l\u00ednea: {1} , uri: {2} xmlrch.warning = ** Advertencia: {0} , l\u00EDnea: {1} , uri: {2}
#RIOptimisticProvider Exceptions #RIOptimisticProvider Exceptions
riop.locking = No se permite bloquear la clasificaci\u00f3n riop.locking = No se permite bloquear la clasificaci\u00F3n
#RIXMLProvider exceptions #RIXMLProvider exceptions
rixml.unsupp = No compatible con RIXMLProvider rixml.unsupp = No soportado con RIXMLProvider

View file

@ -24,117 +24,118 @@
# #
# CacheRowSetImpl exceptions # CacheRowSetImpl exceptions
cachedrowsetimpl.populate = L'objet ResultSet fourni en entr\u00e9e de la m\u00e9thode n'est pas valide cachedrowsetimpl.populate = L'objet ResultSet fourni en entr\u00E9e de la m\u00E9thode n'est pas valide
cachedrowsetimpl.invalidp = Le fournisseur de persistance g\u00e9n\u00e9r\u00e9 n'est pas valide cachedrowsetimpl.invalidp = Le fournisseur de persistance g\u00E9n\u00E9r\u00E9 n'est pas valide
cachedrowsetimpl.nullhash = Impossible de cr\u00e9er une instance de CachedRowSetImpl. Table de hachage null fournie au constructeur cachedrowsetimpl.nullhash = Impossible de cr\u00E9er une instance de CachedRowSetImpl. Table de hachage NULL fournie au constructeur
cachedrowsetimpl.invalidop = Op\u00e9ration non valide lors de l'insertion de ligne cachedrowsetimpl.invalidop = Op\u00E9ration non valide lors de l'insertion de ligne
cachedrowsetimpl.accfailed = \u00c9chec de acceptChanges cachedrowsetimpl.accfailed = Echec de acceptChanges
cachedrowsetimpl.invalidcp = Position du curseur non valide cachedrowsetimpl.invalidcp = Position du curseur non valide
cachedrowsetimpl.illegalop = Op\u00e9ration non autoris\u00e9e sur ligne non ins\u00e9r\u00e9e cachedrowsetimpl.illegalop = Op\u00E9ration non admise sur une ligne non ins\u00E9r\u00E9e
cachedrowsetimpl.clonefail = \u00c9chec du clonage : {0} cachedrowsetimpl.clonefail = Echec du clonage : {0}
cachedrowsetimpl.invalidcol = Index de colonne non valide cachedrowsetimpl.invalidcol = Index de colonne non valide
cachedrowsetimpl.invalcolnm = Nom de colonne non valide cachedrowsetimpl.invalcolnm = Nom de colonne non valide
cachedrowsetimpl.boolfail = \u00c9chec de getBoolen pour la valeur ({0}) de la colonne {1} cachedrowsetimpl.boolfail = Echec de getBoolen pour la valeur ({0}) de la colonne {1}
cachedrowsetimpl.bytefail = \u00c9chec de getByte pour la valeur ({0}) de la colonne {1} cachedrowsetimpl.bytefail = Echec de getByte pour la valeur ({0}) de la colonne {1}
cachedrowsetimpl.shortfail = \u00c9chec de getShort pour la valeur ({0}) de la colonne {1} cachedrowsetimpl.shortfail = Echec de getShort pour la valeur ({0}) de la colonne {1}
cachedrowsetimpl.intfail = \u00c9chec de getInt pour la valeur ({0}) de la colonne {1} cachedrowsetimpl.intfail = Echec de getInt pour la valeur ({0}) de la colonne {1}
cachedrowsetimpl.longfail = \u00c9chec de getLong pour la valeur ({0}) de la colonne {1} cachedrowsetimpl.longfail = Echec de getLong pour la valeur ({0}) de la colonne {1}
cachedrowsetimpl.floatfail = \u00c9chec de getFloat pour la valeur ({0}) de la colonne {1} cachedrowsetimpl.floatfail = Echec de getFloat pour la valeur ({0}) de la colonne {1}
cachedrowsetimpl.doublefail = \u00c9chec de getDouble pour la valeur ({0}) de la colonne {1} cachedrowsetimpl.doublefail = Echec de getDouble pour la valeur ({0}) de la colonne {1}
cachedrowsetimpl.dtypemismt = Le type de donn\u00e9es ne correspond pas cachedrowsetimpl.dtypemismt = Le type de donn\u00E9es ne correspond pas
cachedrowsetimpl.datefail = \u00c9chec de getDate pour la valeur ({0}) de la colonne {1} - Aucune conversion possible cachedrowsetimpl.datefail = Echec de getDate pour la valeur ({0}) de la colonne {1} - Aucune conversion possible
cachedrowsetimpl.timefail = \u00c9chec de getDate pour la valeur ({0}) de la colonne {1} - Aucune conversion possible cachedrowsetimpl.timefail = Echec de getTime pour la valeur ({0}) de la colonne {1} - Aucune conversion possible
cachedrowsetimpl.posupdate = Mises \u00e0 jour choisies non prises en charge cachedrowsetimpl.posupdate = Mises \u00E0 jour choisies non prises en charge
cachedrowsetimpl.unableins = Instanciation impossible : {0} cachedrowsetimpl.unableins = Instanciation impossible : {0}
cachedrowsetimpl.beforefirst = beforeFirst : op\u00e9ration de curseur non valide cachedrowsetimpl.beforefirst = beforeFirst : op\u00E9ration de curseur non valide
cachedrowsetimpl.first = First : op\u00e9ration de curseur non valide cachedrowsetimpl.first = First : op\u00E9ration de curseur non valide
cachedrowsetimpl.last = last : TYPE_FORWARD_ONLY cachedrowsetimpl.last = last : TYPE_FORWARD_ONLY
cachedrowsetimpl.absolute = absolute : position de curseur non valide cachedrowsetimpl.absolute = absolute : position de curseur non valide
cachedrowsetimpl.relative = relative : position de curseur non valide cachedrowsetimpl.relative = relative : position de curseur non valide
cachedrowsetimpl.asciistream = \u00e9chec de la lecture pour le flux ascii cachedrowsetimpl.asciistream = \u00E9chec de la lecture pour le flux ASCII
cachedrowsetimpl.binstream = \u00e9chec de la lecture pour le flux binaire cachedrowsetimpl.binstream = \u00E9chec de la lecture pour le flux binaire
cachedrowsetimpl.failedins = \u00c9chec de l'insertion de ligne cachedrowsetimpl.failedins = Echec de l'insertion de ligne
cachedrowsetimpl.updateins = appel de updateRow lors de l'insertion de ligne cachedrowsetimpl.updateins = appel de updateRow lors de l'insertion de ligne
cachedrowsetimpl.movetoins = moveToInsertRow : CONCUR_READ_ONLY cachedrowsetimpl.movetoins = moveToInsertRow : CONCUR_READ_ONLY
cachedrowsetimpl.movetoins1 = moveToInsertRow : aucune m\u00e9tadonn\u00e9e cachedrowsetimpl.movetoins1 = moveToInsertRow : aucune m\u00E9tadonn\u00E9e
cachedrowsetimpl.movetoins2 = moveToInsertRow : Nombre de colonnes non valide cachedrowsetimpl.movetoins2 = moveToInsertRow : nombre de colonnes non valide
cachedrowsetimpl.tablename = Le nom du tableau ne peut pas \u00eatre null cachedrowsetimpl.tablename = Le nom de la table ne peut pas \u00EAtre NULL
cachedrowsetimpl.keycols = Colonnes de cl\u00e9 non valides cachedrowsetimpl.keycols = Colonnes de cl\u00E9 non valides
cachedrowsetimpl.opnotsupp = Op\u00e9ration non prise en charge par la base de donn\u00e9es cachedrowsetimpl.invalidcol = Index de colonne non valide
cachedrowsetimpl.matchcols = Les colonnes correspondantes ne sont pas les m\u00eames que les colonnes d\u00e9finies cachedrowsetimpl.opnotsupp = Op\u00E9ration non prise en charge par la base de donn\u00E9es
cachedrowsetimpl.setmatchcols = D\u00e9finissez les colonnes correspondantes avant de les prendre cachedrowsetimpl.matchcols = Les colonnes correspondantes ne sont pas les m\u00EAmes que les colonnes d\u00E9finies
cachedrowsetimpl.matchcols1 = Les colonnes correspondantes doivent \u00eatre sup\u00e9rieures \u00e0 z\u00e9ro cachedrowsetimpl.setmatchcols = D\u00E9finir les colonnes correspondantes avant de les prendre
cachedrowsetimpl.matchcols2 = Les colonnes correspondantes doivent \u00eatres vides ou ne contenir que des cha\u00eenes vides cachedrowsetimpl.matchcols1 = Les colonnes correspondantes doivent \u00EAtre sup\u00E9rieures \u00E0 z\u00E9ro
cachedrowsetimpl.unsetmatch = Les colonnes d\u00e9finies et non d\u00e9finies sont diff\u00e9rentes cachedrowsetimpl.matchcols2 = Les colonnes correspondantes doivent \u00EAtres vides ou ne contenir que des cha\u00EEnes NULL
cachedrowsetimpl.unsetmatch1 = Utilisez le nom de la colonne en argument de unsetMatchColumn cachedrowsetimpl.unsetmatch = Les colonnes d\u00E9finies et non d\u00E9finies sont diff\u00E9rentes
cachedrowsetimpl.unsetmatch2 = Utilisez l'ID de la colonne en argument de unsetMatchColumn cachedrowsetimpl.unsetmatch1 = Utiliser le nom de colonne comme argument pour unsetMatchColumn
cachedrowsetimpl.numrows = Le nombre de lignes est inf\u00e9rieur \u00e0 z\u00e9ro ou \u00e0 la taille d'extraction cachedrowsetimpl.unsetmatch2 = Utiliser l'ID de colonne comme argument pour unsetMatchColumn
cachedrowsetimpl.startpos = La position de d\u00e9part ne peut pas \u00eatre n\u00e9gative cachedrowsetimpl.numrows = Le nombre de lignes est inf\u00E9rieur \u00E0 z\u00E9ro ou \u00E0 la taille d'extraction
cachedrowsetimpl.nextpage = Entrez les donn\u00e9es avant l'appel cachedrowsetimpl.startpos = La position de d\u00E9part ne peut pas \u00EAtre n\u00E9gative
cachedrowsetimpl.pagesize = La taille de la page ne peut pas \u00eatre n\u00e9gative cachedrowsetimpl.nextpage = Entrer les donn\u00E9es avant l'appel
cachedrowsetimpl.pagesize1 = La taille de la page ne peut pas \u00eatre sup\u00e9rieure \u00e0 maxRows cachedrowsetimpl.pagesize = La taille de la page ne peut pas \u00EAtre n\u00E9gative
cachedrowsetimpl.fwdonly = ResultSet est en avant seulement cachedrowsetimpl.pagesize1 = La taille de la page ne peut pas \u00EAtre sup\u00E9rieure \u00E0 maxRows
cachedrowsetimpl.fwdonly = ResultSet va en avant seulement
cachedrowsetimpl.type = Le type est : {0} cachedrowsetimpl.type = Le type est : {0}
cachedrowsetimpl.opnotysupp = Op\u00e9ration non encore prise en charge cachedrowsetimpl.opnotysupp = Op\u00E9ration non encore prise en charge
cachedrowsetimpl.featnotsupp = Fonction non prise en charge cachedrowsetimpl.featnotsupp = Fonctionnalit\u00E9 non prise en charge
# WebRowSetImpl exceptions # WebRowSetImpl exceptions
webrowsetimpl.nullhash = Impossible de cr\u00e9er une instance de WebRowSetImpl. Table de hachage null fournie au constructeur webrowsetimpl.nullhash = Impossible de cr\u00E9er une instance de WebRowSetImpl. Table de hachage NULL fournie au constructeur
webrowsetimpl.invalidwr = G\u00e9n\u00e9rateur non valide webrowsetimpl.invalidwr = Processus d'\u00E9criture non valide
webrowsetimpl.invalidrd = Lecteur non valide webrowsetimpl.invalidrd = Processus de lecture non valide
#FilteredRowSetImpl exceptions #FilteredRowSetImpl exceptions
filteredrowsetimpl.relative = relative : op\u00e9ration de curseur non valide filteredrowsetimpl.relative = relative : op\u00E9ration de curseur non valide
filteredrowsetimpl.absolute = absolute : op\u00e9ration de curseur non valide filteredrowsetimpl.absolute = absolute : op\u00E9ration de curseur non valide
filteredrowsetimpl.notallowed = Cette valeur n'est pas autoris\u00e9e via le filtre filteredrowsetimpl.notallowed = Cette valeur n'est pas autoris\u00E9e via le filtre
#JoinRowSetImpl exceptions #JoinRowSetImpl exceptions
joinrowsetimpl.notinstance = N'est pas une instance de RowSet joinrowsetimpl.notinstance = N'est pas une instance de RowSet
joinrowsetimpl.matchnotset = Les colonnes correspondantes ne sont pas group\u00e9es pour jointure joinrowsetimpl.matchnotset = Les colonnes correspondantes ne sont pas d\u00E9finies pour la jointure
joinrowsetimpl.numnotequal = Le nombre d'\u00e9l\u00e9ments dans RowSet est diff\u00e9rent du nombre de colonnes correspondantes joinrowsetimpl.numnotequal = Le nombre d'\u00E9l\u00E9ments dans RowSet est diff\u00E9rent du nombre de colonnes correspondantes
joinrowsetimpl.notdefined = Ce n'est pas un type de jointure d\u00e9fini joinrowsetimpl.notdefined = Ce n'est pas un type de jointure d\u00E9fini
joinrowsetimpl.notsupported = Ce type de jointure n'est pas pris en charge joinrowsetimpl.notsupported = Ce type de jointure n'est pas pris en charge
joinrowsetimpl.initerror = Erreur d'initialisation de JoinRowSet joinrowsetimpl.initerror = Erreur d'initialisation de JoinRowSet
joinrowsetimpl.genericerr = Erreur initiale g\u00e9n\u00e9rique de JoinRowSet joinrowsetimpl.genericerr = Erreur initiale g\u00E9n\u00E9rique de JoinRowSet
joinrowsetimpl.emptyrowset = Impossible d'ajouter un objet RowSet vide \u00e0 ce JoinRowSet joinrowsetimpl.emptyrowset = Impossible d'ajouter un objet RowSet vide \u00E0 ce JoinRowSet
#JdbcRowSetImpl exceptions #JdbcRowSetImpl exceptions
jdbcrowsetimpl.invalstate = \u00c9tat non valide jdbcrowsetimpl.invalstate = Etat non valide
jdbcrowsetimpl.connect = Impossible de connecter JNDI JdbcRowSet (connexion) jdbcrowsetimpl.connect = Impossible de connecter JNDI JdbcRowSet (connexion)
jdbcrowsetimpl.paramtype = Impossible de d\u00e9duire le type de param\u00e8tre jdbcrowsetimpl.paramtype = Impossible de d\u00E9duire le type de param\u00E8tre
jdbcrowsetimpl.matchcols = Les colonnes correspondantes ne sont pas les m\u00eames que les colonnes d\u00e9finies jdbcrowsetimpl.matchcols = Les colonnes correspondantes ne sont pas les m\u00EAmes que les colonnes d\u00E9finies
jdbcrowsetimpl.setmatchcols = D\u00e9finissez les colonnes correspondantes avant de les prendre jdbcrowsetimpl.setmatchcols = D\u00E9finir les colonnes correspondantes avant de les prendre
jdbcrowsetimpl.matchcols1 = Le nombre de colonnes correspondantes doit \u00eatre sup\u00e9rieur \u00e0 z\u00e9ro jdbcrowsetimpl.matchcols1 = Les colonnes correspondantes doivent \u00EAtre sup\u00E9rieures \u00E0 z\u00E9ro
jdbcrowsetimpl.matchcols2 = Les colonnes correspondantes ne doivent pas \u00eatres vides ni contenir des cha\u00eenes vides jdbcrowsetimpl.matchcols2 = Les colonnes correspondantes ne doivent pas \u00EAtres NULL ni contenir des cha\u00EEnes vides
jdbcrowsetimpl.unsetmatch = Les colonnes non d\u00e9finies ne sont pas les m\u00eames que les colonnes d\u00e9finies jdbcrowsetimpl.unsetmatch = Les colonnes non d\u00E9finies ne sont pas les m\u00EAmes que les colonnes d\u00E9finies
jdbcrowsetimpl.usecolname = Utilisez le nom de la colonne en argument de unsetMatchColumn jdbcrowsetimpl.usecolname = Utiliser le nom de colonne comme argument pour unsetMatchColumn
jdbcrowsetimpl.usecolid = Utilisez l'ID de la colonne en argument de unsetMatchColumn jdbcrowsetimpl.usecolid = Utiliser l'ID de colonne comme argument pour unsetMatchColumn
jdbcrowsetimpl.resnotupd = La mise \u00e0 jour de ResultSet est interdite jdbcrowsetimpl.resnotupd = La mise \u00E0 jour de ResultSet est interdite
jdbcrowsetimpl.opnotysupp = Op\u00e9ration non encore prise en charge jdbcrowsetimpl.opnotysupp = Op\u00E9ration non encore prise en charge
jdbcrowsetimpl.featnotsupp = Fonction non prise en charge jdbcrowsetimpl.featnotsupp = Fonctionnalit\u00E9 non prise en charge
#CachedRowSetReader exceptions #CachedRowSetReader exceptions
crsreader.connect = Impossible de connecter (JNDI) crsreader.connect = Impossible de connecter (JNDI)
crsreader.paramtype = Impossible de d\u00e9duire le type de param\u00e8tre crsreader.paramtype = Impossible de d\u00E9duire le type de param\u00E8tre
crsreader.connecterr = Erreur interne dans RowSetReader\u00a0: pas de connexion ni de commande crsreader.connecterr = Erreur interne dans RowSetReader\u00A0: pas de connexion ni de commande
crsreader.datedetected = Une date a \u00e9t\u00e9 d\u00e9tect\u00e9e crsreader.datedetected = Une date a \u00E9t\u00E9 d\u00E9tect\u00E9e
crsreader.caldetected = Un calendrier a \u00e9t\u00e9 d\u00e9tect\u00e9 crsreader.caldetected = Un calendrier a \u00E9t\u00E9 d\u00E9tect\u00E9
#CachedRowSetWriter exceptions #CachedRowSetWriter exceptions
crswriter.connect = Impossible d'obtenir la connexion crswriter.connect = Impossible d'obtenir la connexion
crswriter.tname = writeData ne peut pas d\u00e9terminer le nom du tableau crswriter.tname = writeData ne peut pas d\u00E9terminer le nom de la table
crswriter.params1 = Valeur de params1 : {0} crswriter.params1 = Valeur de params1 : {0}
crswriter.params2 = Valeur de params2 : {0} crswriter.params2 = Valeur de params2 : {0}
crswriter.conflictsno = conflits lors de la synchronisation crswriter.conflictsno = conflits lors de la synchronisation
#InsertRow exceptions #InsertRow exceptions
insertrow.novalue = Aucune valeur n'a \u00e9t\u00e9 ins\u00e9r\u00e9e insertrow.novalue = Aucune valeur n'a \u00E9t\u00E9 ins\u00E9r\u00E9e
#SyncResolverImpl exceptions #SyncResolverImpl exceptions
syncrsimpl.indexval = Valeur d'index hors plage syncrsimpl.indexval = Valeur d'index hors plage
syncrsimpl.noconflict = Cette colonne n'est pas en conflit syncrsimpl.noconflict = Cette colonne n'est pas en conflit
syncrsimpl.syncnotpos = La synchronisation est impossible syncrsimpl.syncnotpos = La synchronisation est impossible
syncrsimpl.valtores = La valeur \u00e0 r\u00e9soudre peut \u00eatre soit dans la base de donn\u00e9es soit dans CachedrowSet syncrsimpl.valtores = La valeur \u00E0 r\u00E9soudre peut \u00EAtre soit dans la base de donn\u00E9es, soit dans CachedrowSet
#WebRowSetXmlReader exception #WebRowSetXmlReader exception
wrsxmlreader.invalidcp = Fin de RowSet atteinte. Position de curseur non valide wrsxmlreader.invalidcp = Fin de RowSet atteinte. Position de curseur non valide
@ -142,23 +143,24 @@ wrsxmlreader.readxml = readXML : {0}
wrsxmlreader.parseerr = ** Erreur d''analyse : {0} , ligne : {1} , URI : {2} wrsxmlreader.parseerr = ** Erreur d''analyse : {0} , ligne : {1} , URI : {2}
#WebRowSetXmlWriter exceptions #WebRowSetXmlWriter exceptions
wrsxmlwriter.ioex = IOException : {0} wrsxmlwriter.ioex = Exception d''E/S : {0}
wrsxmlwriter.sqlex = SQLException : {0} wrsxmlwriter.sqlex = Exception SQL : {0}
wrsxmlwriter.failedwrite = \u00c9chec d'\u00e9criture de la valeur wrsxmlwriter.failedwrite = Echec d'\u00E9criture de la valeur
wsrxmlwriter.notproper = N'est pas un type correct wsrxmlwriter.notproper = N'est pas un type correct
#XmlReaderContentHandler exceptions #XmlReaderContentHandler exceptions
xmlrch.errmap = Erreur lors de la d\u00e9finition de Map : {0} xmlrch.errmap = Erreur lors de la d\u00E9finition du mappage : {0}
xmlrch.errmetadata = Erreur lors de la d\u00e9finition des m\u00e9tadonn\u00e9es : {0} xmlrch.errmetadata = Erreur lors de la d\u00E9finition des m\u00E9tadonn\u00E9es : {0}
xmlrch.errinsertval = Erreur lors de l''insertion des valeurs\u00a0: {0} xmlrch.errinsertval = Erreur lors de l''insertion des valeurs\u00A0: {0}
xmlrch.errconstr = Erreur lors de la construction de la ligne : {0} xmlrch.errconstr = Erreur lors de la construction de la ligne : {0}
xmlrch.errdel = Erreur lors de la suppression de la ligne : {0} xmlrch.errdel = Erreur lors de la suppression de la ligne : {0}
xmlrch.errinsert = Erreur lors de la construction de la ligne \u00E0 ins\u00E9rer : {0}
xmlrch.errinsdel = Erreur lors de la construction de la ligne insdel : {0} xmlrch.errinsdel = Erreur lors de la construction de la ligne insdel : {0}
xmlrch.errupdate = Erreur lors de la construction de la ligne \u00e0 mettre \u00e0 jour : {0} xmlrch.errupdate = Erreur lors de la construction de la ligne \u00E0 mettre \u00E0 jour : {0}
xmlrch.errupdrow = Erreur lors de la mise \u00e0 jour de la ligne\u00a0: {0} xmlrch.errupdrow = Erreur lors de la mise \u00E0 jour de la ligne\u00A0: {0}
xmlrch.chars = caract\u00e8res : xmlrch.chars = caract\u00E8res :
xmlrch.badvalue = Valeur incorrecte ; null impossible pour cette propri\u00e9t\u00e9 xmlrch.badvalue = Valeur incorrecte ; cette propri\u00E9t\u00E9 ne peut pas \u00EAtre NULL
xmlrch.badvalue1 = Valeur incorrecte ; null impossible pour ces m\u00e9tadonn\u00e9es xmlrch.badvalue1 = Valeur incorrecte ; ces m\u00E9tadonn\u00E9es ne peuvent pas \u00EAtre NULL
xmlrch.warning = ** Avertissement : {0} , ligne : {1} , URI : {2} xmlrch.warning = ** Avertissement : {0} , ligne : {1} , URI : {2}
#RIOptimisticProvider Exceptions #RIOptimisticProvider Exceptions

View file

@ -25,13 +25,13 @@
# CacheRowSetImpl exceptions # CacheRowSetImpl exceptions
cachedrowsetimpl.populate = Oggetto ResultSet non valido fornito per l'inserimento dati nel metodo cachedrowsetimpl.populate = Oggetto ResultSet non valido fornito per l'inserimento dati nel metodo
cachedrowsetimpl.invalidp = Generato fornitore di persistenza non valido cachedrowsetimpl.invalidp = Generato provider di persistenza non valido
cachedrowsetimpl.nullhash = Impossibile istanziare l'istanza CachedRowSetImpl. Tabella hash nulla fornita al costruttore cachedrowsetimpl.nullhash = Impossibile creare istanza CachedRowSetImpl. Tabella hash nulla fornita al costruttore
cachedrowsetimpl.invalidop = Operazione non valida nella riga di inserimento cachedrowsetimpl.invalidop = Operazione non valida nella riga di inserimento
cachedrowsetimpl.accfailed = acceptChanges non riuscito cachedrowsetimpl.accfailed = acceptChanges non riuscito
cachedrowsetimpl.invalidcp = Posizione cursore non valida cachedrowsetimpl.invalidcp = Posizione cursore non valida
cachedrowsetimpl.illegalop = Operazione non consentita nella riga non inserita cachedrowsetimpl.illegalop = Operazione non valida nella riga non inserita
cachedrowsetimpl.clonefail = Clone non riuscito: {0} cachedrowsetimpl.clonefail = Copia non riuscita: {0}
cachedrowsetimpl.invalidcol = Indice di colonna non valido cachedrowsetimpl.invalidcol = Indice di colonna non valido
cachedrowsetimpl.invalcolnm = Nome di colonna non valido cachedrowsetimpl.invalcolnm = Nome di colonna non valido
cachedrowsetimpl.boolfail = getBoolen non riuscito per il valore ( {0} ) nella colonna {1} cachedrowsetimpl.boolfail = getBoolen non riuscito per il valore ( {0} ) nella colonna {1}
@ -41,11 +41,11 @@ cachedrowsetimpl.intfail = getInt non riuscito per il valore ( {0} ) nella colon
cachedrowsetimpl.longfail = getLong non riuscito per il valore ( {0} ) nella colonna {1} cachedrowsetimpl.longfail = getLong non riuscito per il valore ( {0} ) nella colonna {1}
cachedrowsetimpl.floatfail = getFloat non riuscito per il valore ( {0} ) nella colonna {1} cachedrowsetimpl.floatfail = getFloat non riuscito per il valore ( {0} ) nella colonna {1}
cachedrowsetimpl.doublefail = getDouble non riuscito per il valore ( {0} ) nella colonna {1} cachedrowsetimpl.doublefail = getDouble non riuscito per il valore ( {0} ) nella colonna {1}
cachedrowsetimpl.dtypemismt = Mancata corrispondenza dei tipi di dati cachedrowsetimpl.dtypemismt = Mancata corrispondenza tipo di dati
cachedrowsetimpl.datefail = getDate non riuscito per il valore ( {0} ) nella colonna {1}. Nessuna conversione disponibile. cachedrowsetimpl.datefail = getDate non riuscito per il valore ( {0} ) nella colonna {1}. Nessuna conversione disponibile.
cachedrowsetimpl.timefail = getTime non riuscito per il valore ( {0} ) nella colonna {1}. Nessuna conversione disponibile. cachedrowsetimpl.timefail = getTime non riuscito per il valore ( {0} ) nella colonna {1}. Nessuna conversione disponibile.
cachedrowsetimpl.posupdate = Aggiornamenti posizionati non supportati cachedrowsetimpl.posupdate = Aggiornamenti posizionati non supportati
cachedrowsetimpl.unableins = Impossibile istanziare: {0} cachedrowsetimpl.unableins = Impossibile creare istanza: {0}
cachedrowsetimpl.beforefirst = beforeFirst: operazione cursore non valida cachedrowsetimpl.beforefirst = beforeFirst: operazione cursore non valida
cachedrowsetimpl.first = First: operazione cursore non valida cachedrowsetimpl.first = First: operazione cursore non valida
cachedrowsetimpl.last = last: TYPE_FORWARD_ONLY cachedrowsetimpl.last = last: TYPE_FORWARD_ONLY
@ -58,8 +58,9 @@ cachedrowsetimpl.updateins = updateRow chiamato nella riga di inserimento
cachedrowsetimpl.movetoins = moveToInsertRow: CONCUR_READ_ONLY cachedrowsetimpl.movetoins = moveToInsertRow: CONCUR_READ_ONLY
cachedrowsetimpl.movetoins1 = moveToInsertRow: nessun metadato cachedrowsetimpl.movetoins1 = moveToInsertRow: nessun metadato
cachedrowsetimpl.movetoins2 = moveToInsertRow: numero di colonne non valido cachedrowsetimpl.movetoins2 = moveToInsertRow: numero di colonne non valido
cachedrowsetimpl.tablename = Il nome di tabella non pu\u00f2 essere nullo cachedrowsetimpl.tablename = Il nome di tabella non pu\u00F2 essere nullo
cachedrowsetimpl.keycols = Colonne chiave non valide cachedrowsetimpl.keycols = Colonne chiave non valide
cachedrowsetimpl.invalidcol = Indice di colonna non valido
cachedrowsetimpl.opnotsupp = Operazione non supportata dal database cachedrowsetimpl.opnotsupp = Operazione non supportata dal database
cachedrowsetimpl.matchcols = Le colonne di corrispondenza non coincidono con le colonne impostate cachedrowsetimpl.matchcols = Le colonne di corrispondenza non coincidono con le colonne impostate
cachedrowsetimpl.setmatchcols = Impostare le colonne di corrispondenza prima di recuperarle cachedrowsetimpl.setmatchcols = Impostare le colonne di corrispondenza prima di recuperarle
@ -68,32 +69,32 @@ cachedrowsetimpl.matchcols2 = Le colonne di corrispondenza devono essere una str
cachedrowsetimpl.unsetmatch = Le colonne rimosse non coincidono con le colonne impostate cachedrowsetimpl.unsetmatch = Le colonne rimosse non coincidono con le colonne impostate
cachedrowsetimpl.unsetmatch1 = Utilizzare il nome di colonna come argomento per unsetMatchColumn cachedrowsetimpl.unsetmatch1 = Utilizzare il nome di colonna come argomento per unsetMatchColumn
cachedrowsetimpl.unsetmatch2 = Utilizzare l'ID di colonna come argomento per unsetMatchColumn cachedrowsetimpl.unsetmatch2 = Utilizzare l'ID di colonna come argomento per unsetMatchColumn
cachedrowsetimpl.numrows = Il numero di righe \u00e8 inferiore a zero o alla dimensione di recupero cachedrowsetimpl.numrows = Il numero di righe \u00E8 inferiore a zero o alla dimensione di recupero
cachedrowsetimpl.startpos = La posizione iniziale non pu\u00f2 essere negativa cachedrowsetimpl.startpos = La posizione iniziale non pu\u00F2 essere negativa
cachedrowsetimpl.nextpage = Inserire i dati prima di chiamare cachedrowsetimpl.nextpage = Inserire i dati prima di chiamare
cachedrowsetimpl.pagesize = La dimensione della pagina non pu\u00f2 essere inferiore a zero cachedrowsetimpl.pagesize = La dimensione della pagina non pu\u00F2 essere inferiore a zero
cachedrowsetimpl.pagesize1 = La dimensione della pagina non pu\u00f2 essere superiore a maxRows cachedrowsetimpl.pagesize1 = La dimensione della pagina non pu\u00F2 essere superiore a maxRows
cachedrowsetimpl.fwdonly = ResultSet \u00e8 a solo inoltro cachedrowsetimpl.fwdonly = ResultSet \u00E8 a solo inoltro
cachedrowsetimpl.type = Il tipo \u00e8: {0} cachedrowsetimpl.type = Il tipo \u00E8: {0}
cachedrowsetimpl.opnotysupp = Operazione attualmente non supportata cachedrowsetimpl.opnotysupp = Operazione attualmente non supportata
cachedrowsetimpl.featnotsupp = Funzionalit\u00e0 non supportata cachedrowsetimpl.featnotsupp = Funzione non supportata
# WebRowSetImpl exceptions # WebRowSetImpl exceptions
webrowsetimpl.nullhash = Impossibile istanziare l'istanza WebRowSetImpl. Tabella hash nulla fornita al costruttore webrowsetimpl.nullhash = Impossibile creare istanza WebRowSetImpl. Tabella hash nulla fornita al costruttore
webrowsetimpl.invalidwr = Autore non valido webrowsetimpl.invalidwr = Processo di scrittura non valido
webrowsetimpl.invalidrd = Lettore non valido webrowsetimpl.invalidrd = Processo di lettura non valido
#FilteredRowSetImpl exceptions #FilteredRowSetImpl exceptions
filteredrowsetimpl.relative = relative: operazione cursore non valida filteredrowsetimpl.relative = relative: operazione cursore non valida
filteredrowsetimpl.absolute = absolute: operazione cursore non valida filteredrowsetimpl.absolute = absolute: operazione cursore non valida
filteredrowsetimpl.notallowed = Questo valore non \u00e8 consentito nel filtro filteredrowsetimpl.notallowed = Questo valore non \u00E8 consentito nel filtro
#JoinRowSetImpl exceptions #JoinRowSetImpl exceptions
joinrowsetimpl.notinstance = Non \u00e8 un'istanza di rowset joinrowsetimpl.notinstance = Non \u00E8 un'istanza di rowset
joinrowsetimpl.matchnotset = Colonna di corrispondenza non impostata per l'unione joinrowsetimpl.matchnotset = Colonna di corrispondenza non impostata per l'unione
joinrowsetimpl.numnotequal = Numero di elementi in rowset diverso dalla colonna di corrispondenza joinrowsetimpl.numnotequal = Numero di elementi in rowset diverso dalla colonna di corrispondenza
joinrowsetimpl.notdefined = Non \u00e8 un tipo di unione definito joinrowsetimpl.notdefined = Non \u00E8 un tipo di unione definito
joinrowsetimpl.notsupported = Questo tipo di unione non \u00e8 supportato joinrowsetimpl.notsupported = Questo tipo di unione non \u00E8 supportato
joinrowsetimpl.initerror = Errore di inizializzazione di JoinRowSet joinrowsetimpl.initerror = Errore di inizializzazione di JoinRowSet
joinrowsetimpl.genericerr = Errore iniziale di joinrowset generico joinrowsetimpl.genericerr = Errore iniziale di joinrowset generico
joinrowsetimpl.emptyrowset = Impossibile aggiungere un set di righe vuoto al JoinRowSet corrente joinrowsetimpl.emptyrowset = Impossibile aggiungere un set di righe vuoto al JoinRowSet corrente
@ -109,16 +110,16 @@ jdbcrowsetimpl.matchcols2 = Le colonne di corrispondenza non possono essere una
jdbcrowsetimpl.unsetmatch = Le colonne rimosse non coincidono con le colonne impostate jdbcrowsetimpl.unsetmatch = Le colonne rimosse non coincidono con le colonne impostate
jdbcrowsetimpl.usecolname = Utilizzare il nome di colonna come argomento per unsetMatchColumn jdbcrowsetimpl.usecolname = Utilizzare il nome di colonna come argomento per unsetMatchColumn
jdbcrowsetimpl.usecolid = Utilizzare l'ID di colonna come argomento per unsetMatchColumn jdbcrowsetimpl.usecolid = Utilizzare l'ID di colonna come argomento per unsetMatchColumn
jdbcrowsetimpl.resnotupd = ResultSet non \u00e8 aggiornabile jdbcrowsetimpl.resnotupd = ResultSet non \u00E8 aggiornabile
jdbcrowsetimpl.opnotysupp = Operazione attualmente non supportata jdbcrowsetimpl.opnotysupp = Operazione attualmente non supportata
jdbcrowsetimpl.featnotsupp = Funzionalit\u00e0 non supportata jdbcrowsetimpl.featnotsupp = Funzione non supportata
#CachedRowSetReader exceptions #CachedRowSetReader exceptions
crsreader.connect = (JNDI) Impossibile stabilire una connessione crsreader.connect = (JNDI) Impossibile stabilire una connessione
crsreader.paramtype = Impossibile dedurre il tipo di parametro crsreader.paramtype = Impossibile dedurre il tipo di parametro
crsreader.connecterr = Errore interno in RowSetReader: nessuna connessione o comando crsreader.connecterr = Errore interno in RowSetReader: nessuna connessione o comando
crsreader.datedetected = \u00c8 stata rilevata una data crsreader.datedetected = \u00C8 stata rilevata una data
crsreader.caldetected = \u00c8 stato rilevato un calendario crsreader.caldetected = \u00C8 stato rilevato un calendario
#CachedRowSetWriter exceptions #CachedRowSetWriter exceptions
crswriter.connect = Impossibile stabilire una connessione crswriter.connect = Impossibile stabilire una connessione
@ -128,13 +129,13 @@ crswriter.params2 = Valore dei parametri 2: {0}
crswriter.conflictsno = Conflitti durante la sincronizzazione crswriter.conflictsno = Conflitti durante la sincronizzazione
#InsertRow exceptions #InsertRow exceptions
insertrow.novalue = Non \u00e8 stato inserito alcun valore insertrow.novalue = Non \u00E8 stato inserito alcun valore
#SyncResolverImpl exceptions #SyncResolverImpl exceptions
syncrsimpl.indexval = Il valore di indice non rientra nell'intervallo syncrsimpl.indexval = Valore indice non compreso nell'intervallo
syncrsimpl.noconflict = Questa colonna non \u00e8 in conflitto syncrsimpl.noconflict = Questa colonna non \u00E8 in conflitto
syncrsimpl.syncnotpos = Impossibile eseguire la sincronizzazione syncrsimpl.syncnotpos = Impossibile eseguire la sincronizzazione
syncrsimpl.valtores = Il valore da risolvere pu\u00f2 essere nel database o in cachedrowset syncrsimpl.valtores = Il valore da risolvere pu\u00F2 essere nel database o in cachedrowset
#WebRowSetXmlReader exception #WebRowSetXmlReader exception
wrsxmlreader.invalidcp = Raggiunta la fine di RowSet. Posizione cursore non valida wrsxmlreader.invalidcp = Raggiunta la fine di RowSet. Posizione cursore non valida
@ -153,16 +154,17 @@ xmlrch.errmetadata = Errore durante l''impostazione dei metadati: {0}
xmlrch.errinsertval = Errore durante l''inserimento dei valori: {0} xmlrch.errinsertval = Errore durante l''inserimento dei valori: {0}
xmlrch.errconstr = Errore durante la costruzione della riga: {0} xmlrch.errconstr = Errore durante la costruzione della riga: {0}
xmlrch.errdel = Errore durante l''eliminazione della riga: {0} xmlrch.errdel = Errore durante l''eliminazione della riga: {0}
xmlrch.errinsert = Errore durante la costruzione della riga di inserimento: {0}
xmlrch.errinsdel = Errore durante la costruzione della riga insdel: {0} xmlrch.errinsdel = Errore durante la costruzione della riga insdel: {0}
xmlrch.errupdate = Errore durante la costruzione della riga di aggiornamento: {0} xmlrch.errupdate = Errore durante la costruzione della riga di aggiornamento: {0}
xmlrch.errupdrow = Errore durante l''aggiornamento della riga: {0} xmlrch.errupdrow = Errore durante l''aggiornamento della riga: {0}
xmlrch.chars = caratteri: xmlrch.chars = caratteri:
xmlrch.badvalue = valore non valido; propriet\u00e0 non annullabile xmlrch.badvalue = valore non valido; propriet\u00E0 non annullabile
xmlrch.badvalue1 = valore non valido; metadati non annullabili xmlrch.badvalue1 = valore non valido; metadati non annullabili
xmlrch.warning = **Avviso: {0}, riga: {1}, URI: {2} xmlrch.warning = **Avvertenza: {0}, riga: {1}, URI: {2}
#RIOptimisticProvider Exceptions #RIOptimisticProvider Exceptions
riop.locking = La classificazione di blocco non \u00e8 supportata riop.locking = La classificazione di blocco non \u00E8 supportata
#RIXMLProvider exceptions #RIXMLProvider exceptions
rixml.unsupp = Non supportato con RIXMLProvider rixml.unsupp = Non supportato con RIXMLProvider

View file

@ -24,145 +24,147 @@
# #
# CacheRowSetImpl exceptions # CacheRowSetImpl exceptions
cachedrowsetimpl.populate = populate \u30e1\u30bd\u30c3\u30c9\u306b\u7121\u52b9\u306a ResultSet \u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u4f7f\u7528\u3055\u308c\u307e\u3057\u305f\u3002 cachedrowsetimpl.populate = populate\u30E1\u30BD\u30C3\u30C9\u306B\u7121\u52B9\u306AResultSet\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u304C\u4F7F\u7528\u3055\u308C\u307E\u3057\u305F
cachedrowsetimpl.invalidp = \u7121\u52b9\u306a\u6301\u7d9a\u6027\u30d7\u30ed\u30d0\u30a4\u30c0\u304c\u751f\u6210\u3055\u308c\u307e\u3057\u305f\u3002 cachedrowsetimpl.invalidp = \u7121\u52B9\u306A\u6C38\u7D9A\u6027\u30D7\u30ED\u30D0\u30A4\u30C0\u304C\u751F\u6210\u3055\u308C\u307E\u3057\u305F
cachedrowsetimpl.nullhash = CachedRowSetImpl \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u3067\u304d\u307e\u305b\u3093\u3002\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b null \u306e Hashtable \u304c\u4f7f\u7528\u3055\u308c\u307e\u3057\u305f\u3002 cachedrowsetimpl.nullhash = CachedRowSetImpl\u30A4\u30F3\u30B9\u30BF\u30F3\u30B9\u3092\u30A4\u30F3\u30B9\u30BF\u30F3\u30B9\u5316\u3067\u304D\u307E\u305B\u3093\u3002\u30B3\u30F3\u30B9\u30C8\u30E9\u30AF\u30BF\u306Bnull\u306EHashtable\u304C\u4F7F\u7528\u3055\u308C\u307E\u3057\u305F
cachedrowsetimpl.invalidop = \u633f\u5165\u884c\u3067\u306e\u7121\u52b9\u306a\u64cd\u4f5c cachedrowsetimpl.invalidop = \u633F\u5165\u884C\u3067\u306E\u7121\u52B9\u306A\u64CD\u4F5C
cachedrowsetimpl.accfailed = acceptChanges \u306e\u5931\u6557 cachedrowsetimpl.accfailed = acceptChanges\u306E\u5931\u6557
cachedrowsetimpl.invalidcp = \u7121\u52b9\u306a\u30ab\u30fc\u30bd\u30eb\u4f4d\u7f6e cachedrowsetimpl.invalidcp = \u7121\u52B9\u306A\u30AB\u30FC\u30BD\u30EB\u4F4D\u7F6E
cachedrowsetimpl.illegalop = \u633f\u5165\u3055\u308c\u306a\u304b\u3063\u305f\u884c\u306e\u4e0d\u6b63\u306a\u64cd\u4f5c cachedrowsetimpl.illegalop = \u633F\u5165\u3055\u308C\u306A\u304B\u3063\u305F\u884C\u306E\u4E0D\u6B63\u306A\u64CD\u4F5C
cachedrowsetimpl.clonefail = \u8907\u88fd\u306e\u5931\u6557 : {0} cachedrowsetimpl.clonefail = \u30AF\u30ED\u30FC\u30F3\u306E\u5931\u6557: {0}
cachedrowsetimpl.invalidcol = \u7121\u52b9\u306a\u5217\u30a4\u30f3\u30c7\u30c3\u30af\u30b9 cachedrowsetimpl.invalidcol = \u7121\u52B9\u306A\u5217\u7D22\u5F15
cachedrowsetimpl.invalcolnm = \u7121\u52b9\u306a\u5217\u540d cachedrowsetimpl.invalcolnm = \u7121\u52B9\u306A\u5217\u540D
cachedrowsetimpl.boolfail = \u5217 {1} \u306e\u5024 ( {0} ) \u3067 getBoolen \u304c\u5931\u6557\u3057\u307e\u3057\u305f\u3002 cachedrowsetimpl.boolfail = \u5217{1}\u306E\u5024({0})\u3067getBoolean\u304C\u5931\u6557\u3057\u307E\u3057\u305F
cachedrowsetimpl.bytefail = \u5217 {1} \u306e\u5024 ( {0} ) \u3067 getByte \u304c\u5931\u6557\u3057\u307e\u3057\u305f\u3002 cachedrowsetimpl.bytefail = \u5217{1}\u306E\u5024({0})\u3067getByte\u304C\u5931\u6557\u3057\u307E\u3057\u305F
cachedrowsetimpl.shortfail = \u5217 {1} \u306e\u5024 ( {0} ) \u3067 getShort \u304c\u5931\u6557\u3057\u307e\u3057\u305f\u3002 cachedrowsetimpl.shortfail = \u5217{1}\u306E\u5024({0})\u3067getShort\u304C\u5931\u6557\u3057\u307E\u3057\u305F
cachedrowsetimpl.intfail = \u5217 {1} \u306e\u5024 ( {0} ) \u3067 getInt \u304c\u5931\u6557\u3057\u307e\u3057\u305f\u3002 cachedrowsetimpl.intfail = \u5217{1}\u306E\u5024({0})\u3067getInt\u304C\u5931\u6557\u3057\u307E\u3057\u305F
cachedrowsetimpl.longfail = \u5217 {1} \u306e\u5024 ( {0} ) \u3067 getLong \u304c\u5931\u6557\u3057\u307e\u3057\u305f\u3002 cachedrowsetimpl.longfail = \u5217{1}\u306E\u5024({0})\u3067getLong\u304C\u5931\u6557\u3057\u307E\u3057\u305F
cachedrowsetimpl.floatfail = \u5217 {1} \u306e\u5024 ( {0} ) \u3067 getFloat \u304c\u5931\u6557\u3057\u307e\u3057\u305f\u3002 cachedrowsetimpl.floatfail = \u5217{1}\u306E\u5024({0})\u3067getFloat\u304C\u5931\u6557\u3057\u307E\u3057\u305F
cachedrowsetimpl.doublefail = \u5217 {1} \u306e\u5024 ( {0} ) \u3067 getDouble \u304c\u5931\u6557\u3057\u307e\u3057\u305f\u3002 cachedrowsetimpl.doublefail = \u5217{1}\u306E\u5024({0})\u3067getDouble\u304C\u5931\u6557\u3057\u307E\u3057\u305F
cachedrowsetimpl.dtypemismt = \u30c7\u30fc\u30bf\u578b\u306e\u30df\u30b9\u30de\u30c3\u30c1 cachedrowsetimpl.dtypemismt = \u30C7\u30FC\u30BF\u578B\u306E\u4E0D\u4E00\u81F4
cachedrowsetimpl.datefail = \u5217 {1} \u306e\u5024 ( {0} ) \u3067 getDate \u304c\u5931\u6557\u3002\u5909\u63db\u3067\u304d\u307e\u305b\u3093\u3002 cachedrowsetimpl.datefail = \u5217{1}\u306E\u5024({0})\u3067getDate\u304C\u5931\u6557\u3002\u5909\u63DB\u3067\u304D\u307E\u305B\u3093
cachedrowsetimpl.timefail = \u5217 {1} \u306e\u5024 ( {0} ) \u3067 getTime \u304c\u5931\u6557\u3002\u5909\u63db\u3067\u304d\u307e\u305b\u3093\u3002 cachedrowsetimpl.timefail = \u5217{1}\u306E\u5024({0})\u3067getTime\u304C\u5931\u6557\u3002\u5909\u63DB\u3067\u304D\u307E\u305B\u3093
cachedrowsetimpl.posupdate = \u4f4d\u7f6e\u6c7a\u3081\u3055\u308c\u305f\u66f4\u65b0\u304c\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093\u3002 cachedrowsetimpl.posupdate = \u4F4D\u7F6E\u6C7A\u3081\u3055\u308C\u305F\u66F4\u65B0\u304C\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u307E\u305B\u3093
cachedrowsetimpl.unableins = \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u3067\u304d\u306a\u3044 : {0} cachedrowsetimpl.unableins = \u30A4\u30F3\u30B9\u30BF\u30F3\u30B9\u5316\u3067\u304D\u306A\u3044: {0}
cachedrowsetimpl.beforefirst = beforeFirst : \u7121\u52b9\u306a\u30ab\u30fc\u30bd\u30eb\u64cd\u4f5c cachedrowsetimpl.beforefirst = beforeFirst: \u7121\u52B9\u306A\u30AB\u30FC\u30BD\u30EB\u64CD\u4F5C
cachedrowsetimpl.first = First : \u7121\u52b9\u306a\u30ab\u30fc\u30bd\u30eb\u64cd\u4f5c cachedrowsetimpl.first = First: \u7121\u52B9\u306A\u30AB\u30FC\u30BD\u30EB\u64CD\u4F5C
cachedrowsetimpl.last = last : TYPE_FORWARD_ONLY cachedrowsetimpl.last = last: TYPE_FORWARD_ONLY
cachedrowsetimpl.absolute = absolute : \u7121\u52b9\u306a\u30ab\u30fc\u30bd\u30eb\u64cd\u4f5c cachedrowsetimpl.absolute = absolute: \u7121\u52B9\u306A\u30AB\u30FC\u30BD\u30EB\u4F4D\u7F6E
cachedrowsetimpl.relative = relative : \u7121\u52b9\u306a\u30ab\u30fc\u30bd\u30eb\u64cd\u4f5c cachedrowsetimpl.relative = relative: \u7121\u52B9\u306A\u30AB\u30FC\u30BD\u30EB\u4F4D\u7F6E
cachedrowsetimpl.asciistream = ascii \u30b9\u30c8\u30ea\u30fc\u30e0\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002 cachedrowsetimpl.asciistream = ascii\u30B9\u30C8\u30EA\u30FC\u30E0\u306E\u8AAD\u8FBC\u307F\u306B\u5931\u6557\u3057\u307E\u3057\u305F
cachedrowsetimpl.binstream = \u30d0\u30a4\u30ca\u30ea\u30b9\u30c8\u30ea\u30fc\u30e0\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002 cachedrowsetimpl.binstream = \u30D0\u30A4\u30CA\u30EA\u30FB\u30B9\u30C8\u30EA\u30FC\u30E0\u306E\u8AAD\u8FBC\u307F\u306B\u5931\u6557\u3057\u307E\u3057\u305F
cachedrowsetimpl.failedins = \u884c\u306e\u633f\u5165\u306b\u5931\u6557 cachedrowsetimpl.failedins = \u884C\u306E\u633F\u5165\u306B\u5931\u6557
cachedrowsetimpl.updateins = \u633f\u5165\u884c\u306b\u3066 updateRow \u304c\u547c\u3073\u51fa\u3055\u308c\u307e\u3057\u305f\u3002 cachedrowsetimpl.updateins = \u633F\u5165\u884C\u306B\u304A\u3044\u3066updateRow\u304C\u547C\u3073\u51FA\u3055\u308C\u307E\u3057\u305F
cachedrowsetimpl.movetoins = moveToInsertRow : CONCUR_READ_ONLY cachedrowsetimpl.movetoins = moveToInsertRow: CONCUR_READ_ONLY
cachedrowsetimpl.movetoins1 = moveToInsertRow : \u30e1\u30bf\u30c7\u30fc\u30bf\u306a\u3057 cachedrowsetimpl.movetoins1 = moveToInsertRow: \u30E1\u30BF\u30C7\u30FC\u30BF\u306A\u3057
cachedrowsetimpl.movetoins2 = moveToInsertRow : \u7121\u52b9\u306a\u5217\u6570 cachedrowsetimpl.movetoins2 = moveToInsertRow: \u7121\u52B9\u306A\u5217\u6570
cachedrowsetimpl.tablename = \u8868\u540d\u306b null \u306f\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093\u3002 cachedrowsetimpl.tablename = \u8868\u540D\u306Bnull\u306F\u4F7F\u7528\u3067\u304D\u307E\u305B\u3093
cachedrowsetimpl.keycols = \u7121\u52b9\u306a\u30ad\u30fc\u5217 cachedrowsetimpl.keycols = \u7121\u52B9\u306A\u30AD\u30FC\u5217
cachedrowsetimpl.opnotsupp = \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u306a\u3044\u64cd\u4f5c cachedrowsetimpl.invalidcol = \u7121\u52B9\u306A\u5217\u7D22\u5F15
cachedrowsetimpl.matchcols = \u4e00\u81f4\u5217\u304c\u5217\u306e\u30bb\u30c3\u30c8\u3068\u540c\u3058\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 cachedrowsetimpl.opnotsupp = \u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u3067\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u306A\u3044\u64CD\u4F5C
cachedrowsetimpl.setmatchcols = \u4e00\u81f4\u5217\u3092\u53d6\u5f97\u3059\u308b\u524d\u306b\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 cachedrowsetimpl.matchcols = \u4E00\u81F4\u5217\u304C\u5217\u306E\u30BB\u30C3\u30C8\u3068\u540C\u3058\u3067\u306F\u3042\u308A\u307E\u305B\u3093
cachedrowsetimpl.matchcols1 = \u4e00\u81f4\u5217\u306f 0 \u3088\u308a\u5927\u304d\u3044\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 cachedrowsetimpl.setmatchcols = \u4E00\u81F4\u5217\u3092\u53D6\u5F97\u3059\u308B\u524D\u306B\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044
cachedrowsetimpl.matchcols2 = \u4e00\u81f4\u5217\u306f\u7a7a\u304b null \u6587\u5b57\u5217\u3067\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 cachedrowsetimpl.matchcols1 = \u4E00\u81F4\u5217\u306F0\u3088\u308A\u5927\u304D\u3044\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059
cachedrowsetimpl.unsetmatch = \u8a2d\u5b9a\u89e3\u9664\u3055\u308c\u3066\u3044\u308b\u5217\u306f\u30bb\u30c3\u30c8\u3068\u540c\u3058\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 cachedrowsetimpl.matchcols2 = \u4E00\u81F4\u5217\u306F\u7A7A\u304Bnull\u6587\u5B57\u5217\u3067\u3042\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059
cachedrowsetimpl.unsetmatch1 = unsetMatchColumn \u3078\u306e\u5f15\u6570\u3068\u3057\u3066\u5217\u540d\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002 cachedrowsetimpl.unsetmatch = \u8A2D\u5B9A\u89E3\u9664\u3055\u308C\u3066\u3044\u308B\u5217\u306F\u30BB\u30C3\u30C8\u3068\u540C\u3058\u3067\u306F\u3042\u308A\u307E\u305B\u3093
cachedrowsetimpl.unsetmatch2 = unsetMatchColumn \u3078\u306e\u5f15\u6570\u3068\u3057\u3066\u5217 ID \u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002 cachedrowsetimpl.unsetmatch1 = unsetMatchColumn\u3078\u306E\u5F15\u6570\u3068\u3057\u3066\u5217\u540D\u3092\u4F7F\u7528\u3057\u3066\u304F\u3060\u3055\u3044
cachedrowsetimpl.numrows = \u884c\u6570\u304c\u30bc\u30ed\u307e\u305f\u306f\u30d5\u30a7\u30c3\u30c1\u30b5\u30a4\u30ba\u3088\u308a\u5c0f\u3055\u3044\u3067\u3059\u3002 cachedrowsetimpl.unsetmatch2 = unsetMatchColumn\u3078\u306E\u5F15\u6570\u3068\u3057\u3066\u5217ID\u3092\u4F7F\u7528\u3057\u3066\u304F\u3060\u3055\u3044
cachedrowsetimpl.startpos = \u958b\u59cb\u4f4d\u7f6e\u306f\u8ca0\u3067\u306f\u306a\u308a\u307e\u305b\u3093\u3002 cachedrowsetimpl.numrows = \u884C\u6570\u304C\u30BC\u30ED\u307E\u305F\u306F\u30D5\u30A7\u30C3\u30C1\u30FB\u30B5\u30A4\u30BA\u3088\u308A\u5C0F\u3055\u3044\u3067\u3059
cachedrowsetimpl.nextpage = \u547c\u3073\u51fa\u3057\u524d\u306b\u30c7\u30fc\u30bf\u3092\u751f\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002 cachedrowsetimpl.startpos = \u958B\u59CB\u4F4D\u7F6E\u3092\u8CA0\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093
cachedrowsetimpl.pagesize = \u30da\u30fc\u30b8\u30b5\u30a4\u30ba\u306f\u30bc\u30ed\u3088\u308a\u5c0f\u3055\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093\u3002 cachedrowsetimpl.nextpage = \u547C\u51FA\u3057\u524D\u306B\u30C7\u30FC\u30BF\u3092\u79FB\u5165\u3057\u307E\u3059
cachedrowsetimpl.pagesize1 = \u30da\u30fc\u30b8\u30b5\u30a4\u30ba\u306f maxRows \u3088\u308a\u5927\u304d\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093\u3002 cachedrowsetimpl.pagesize = \u30DA\u30FC\u30B8\u30FB\u30B5\u30A4\u30BA\u3092\u30BC\u30ED\u3088\u308A\u5C0F\u3055\u304F\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093
cachedrowsetimpl.fwdonly = ResultSet \u306f\u9806\u65b9\u5411\u306e\u307f\u3067\u3059\u3002 cachedrowsetimpl.pagesize1 = \u30DA\u30FC\u30B8\u30FB\u30B5\u30A4\u30BA\u3092maxRows\u3088\u308A\u5927\u304D\u304F\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u305B\u3093
cachedrowsetimpl.type = \u578b : {0} cachedrowsetimpl.fwdonly = ResultSet\u306F\u9806\u65B9\u5411\u306E\u307F\u3067\u3059
cachedrowsetimpl.opnotysupp = \u307e\u3060\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u306a\u3044\u64cd\u4f5c cachedrowsetimpl.type = \u30BF\u30A4\u30D7: {0}
cachedrowsetimpl.featnotsupp = \u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u306a\u3044\u6a5f\u80fd cachedrowsetimpl.opnotysupp = \u307E\u3060\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u306A\u3044\u64CD\u4F5C
cachedrowsetimpl.featnotsupp = \u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u306A\u3044\u6A5F\u80FD
# WebRowSetImpl exceptions # WebRowSetImpl exceptions
webrowsetimpl.nullhash = WebRowSetImpl \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u3067\u304d\u307e\u305b\u3093\u3002\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b null \u306e Hashtable \u304c\u4f7f\u7528\u3055\u308c\u307e\u3057\u305f\u3002 webrowsetimpl.nullhash = WebRowSetImpl\u30A4\u30F3\u30B9\u30BF\u30F3\u30B9\u3092\u30A4\u30F3\u30B9\u30BF\u30F3\u30B9\u5316\u3067\u304D\u307E\u305B\u3093\u3002\u30B3\u30F3\u30B9\u30C8\u30E9\u30AF\u30BF\u306Bnull\u306EHashtable\u304C\u4F7F\u7528\u3055\u308C\u307E\u3057\u305F
webrowsetimpl.invalidwr = \u7121\u52b9\u306a\u30e9\u30a4\u30bf\u30fc webrowsetimpl.invalidwr = \u7121\u52B9\u306A\u30E9\u30A4\u30BF\u30FC
webrowsetimpl.invalidrd = \u7121\u52b9\u306a\u30ea\u30fc\u30c0\u30fc webrowsetimpl.invalidrd = \u7121\u52B9\u306A\u30EA\u30FC\u30C0\u30FC
#FilteredRowSetImpl exceptions #FilteredRowSetImpl exceptions
filteredrowsetimpl.relative = relative : \u7121\u52b9\u306a\u30ab\u30fc\u30bd\u30eb\u64cd\u4f5c filteredrowsetimpl.relative = relative: \u7121\u52B9\u306A\u30AB\u30FC\u30BD\u30EB\u64CD\u4F5C
filteredrowsetimpl.absolute = absolute : \u7121\u52b9\u306a\u30ab\u30fc\u30bd\u30eb\u64cd\u4f5c filteredrowsetimpl.absolute = absolute: \u7121\u52B9\u306A\u30AB\u30FC\u30BD\u30EB\u64CD\u4F5C
filteredrowsetimpl.notallowed = \u3053\u306e\u5024\u306f\u30d5\u30a3\u30eb\u30bf\u3067\u8a31\u5bb9\u3055\u308c\u307e\u305b\u3093\u3002 filteredrowsetimpl.notallowed = \u3053\u306E\u5024\u306F\u30D5\u30A3\u30EB\u30BF\u3067\u8A31\u5BB9\u3055\u308C\u307E\u305B\u3093
#JoinRowSetImpl exceptions #JoinRowSetImpl exceptions
joinrowsetimpl.notinstance = \u884c\u30bb\u30c3\u30c8\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 joinrowsetimpl.notinstance = \u884C\u30BB\u30C3\u30C8\u306E\u30A4\u30F3\u30B9\u30BF\u30F3\u30B9\u3067\u306F\u3042\u308A\u307E\u305B\u3093
joinrowsetimpl.matchnotset = \u4e00\u81f4\u5217\u304c\u7d50\u5408\u7528\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 joinrowsetimpl.matchnotset = \u4E00\u81F4\u5217\u304C\u7D50\u5408\u7528\u306B\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093
joinrowsetimpl.numnotequal = \u884c\u30bb\u30c3\u30c8\u306e\u8981\u7d20\u6570\u304c\u4e00\u81f4\u5217\u3068\u7b49\u3057\u304f\u3042\u308a\u307e\u305b\u3093\u3002 joinrowsetimpl.numnotequal = \u884C\u30BB\u30C3\u30C8\u306E\u8981\u7D20\u6570\u304C\u4E00\u81F4\u5217\u3068\u7B49\u3057\u304F\u3042\u308A\u307E\u305B\u3093
joinrowsetimpl.notdefined = \u5b9a\u7fa9\u3055\u308c\u305f\u7d50\u5408\u306e\u578b\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 joinrowsetimpl.notdefined = \u5B9A\u7FA9\u3055\u308C\u305F\u7D50\u5408\u306E\u30BF\u30A4\u30D7\u3067\u306F\u3042\u308A\u307E\u305B\u3093
joinrowsetimpl.notsupported = \u3053\u306e\u578b\u306e\u7d50\u5408\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 joinrowsetimpl.notsupported = \u3053\u306E\u30BF\u30A4\u30D7\u306E\u7D50\u5408\u306F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u307E\u305B\u3093
joinrowsetimpl.initerror = JoinRowSet \u521d\u671f\u5316\u30a8\u30e9\u30fc joinrowsetimpl.initerror = JoinRowSet\u521D\u671F\u5316\u30A8\u30E9\u30FC
joinrowsetimpl.genericerr = \u6c4e\u7528 joinrowset \u306e\u521d\u671f\u30a8\u30e9\u30fc joinrowsetimpl.genericerr = \u6C4E\u7528joinrowset\u306E\u521D\u671F\u30A8\u30E9\u30FC
joinrowsetimpl.emptyrowset = \u3053\u306e JoinRowSet \u306b\u7a7a\u306e\u884c\u30bb\u30c3\u30c8\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002 joinrowsetimpl.emptyrowset = \u3053\u306EJoinRowSet\u306B\u7A7A\u306E\u884C\u30BB\u30C3\u30C8\u3092\u8FFD\u52A0\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093
#JdbcRowSetImpl exceptions #JdbcRowSetImpl exceptions
jdbcrowsetimpl.invalstate = \u7121\u52b9\u306a\u72b6\u614b jdbcrowsetimpl.invalstate = \u7121\u52B9\u306A\u72B6\u614B
jdbcrowsetimpl.connect = JdbcRowSet (connect) JNDI \u304c\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\u3002 jdbcrowsetimpl.connect = JdbcRowSet(connect): JNDI\u304C\u63A5\u7D9A\u3067\u304D\u307E\u305B\u3093
jdbcrowsetimpl.paramtype = \u30d1\u30e9\u30e1\u30fc\u30bf\u578b\u3092\u63a8\u5b9a\u3067\u304d\u307e\u305b\u3093\u3002 jdbcrowsetimpl.paramtype = \u30D1\u30E9\u30E1\u30FC\u30BF\u30FB\u30BF\u30A4\u30D7\u3092\u63A8\u5B9A\u3067\u304D\u307E\u305B\u3093
jdbcrowsetimpl.matchcols = \u4e00\u81f4\u5217\u304c\u5217\u306e\u30bb\u30c3\u30c8\u3068\u540c\u3058\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 jdbcrowsetimpl.matchcols = \u4E00\u81F4\u5217\u304C\u5217\u306E\u30BB\u30C3\u30C8\u3068\u540C\u3058\u3067\u306F\u3042\u308A\u307E\u305B\u3093
jdbcrowsetimpl.setmatchcols = \u4e00\u81f4\u5217\u3092\u53d6\u5f97\u3059\u308b\u524d\u306b\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 jdbcrowsetimpl.setmatchcols = \u4E00\u81F4\u5217\u3092\u53D6\u5F97\u3059\u308B\u524D\u306B\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044
jdbcrowsetimpl.matchcols1 = \u4e00\u81f4\u5217\u306f 0 \u3088\u308a\u5927\u304d\u3044\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 jdbcrowsetimpl.matchcols1 = \u4E00\u81F4\u5217\u306F0\u3088\u308A\u5927\u304D\u3044\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059
jdbcrowsetimpl.matchcols2 = \u4e00\u81f4\u5217\u306f\u7a7a\u3084 null \u6587\u5b57\u5217\u3067\u306f\u306a\u308a\u307e\u305b\u3093\u3002 jdbcrowsetimpl.matchcols2 = \u4E00\u81F4\u5217\u3092\u7A7A\u307E\u305F\u306Fnull\u6587\u5B57\u5217\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093
jdbcrowsetimpl.unsetmatch = \u8a2d\u5b9a\u89e3\u9664\u3055\u308c\u3066\u3044\u308b\u5217\u306f\u30bb\u30c3\u30c8\u3068\u540c\u3058\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 jdbcrowsetimpl.unsetmatch = \u8A2D\u5B9A\u89E3\u9664\u3055\u308C\u3066\u3044\u308B\u5217\u306F\u30BB\u30C3\u30C8\u3068\u540C\u3058\u3067\u306F\u3042\u308A\u307E\u305B\u3093
jdbcrowsetimpl.usecolname = unsetMatchColumn \u3078\u306e\u5f15\u6570\u3068\u3057\u3066\u5217\u540d\u3092\u4f7f\u7528\u3066\u304f\u3060\u3055\u3044\u3002 jdbcrowsetimpl.usecolname = unsetMatchColumn\u3078\u306E\u5F15\u6570\u3068\u3057\u3066\u5217\u540D\u3092\u4F7F\u7528\u3057\u3066\u304F\u3060\u3055\u3044
jdbcrowsetimpl.usecolid = unsetMatchColumn \u3078\u306e\u5f15\u6570\u3068\u3057\u3066\u5217 ID \u3092\u4f7f\u7528\u3066\u304f\u3060\u3055\u3044\u3002 jdbcrowsetimpl.usecolid = unsetMatchColumn\u3078\u306E\u5F15\u6570\u3068\u3057\u3066\u5217ID\u3092\u4F7F\u7528\u3057\u3066\u304F\u3060\u3055\u3044
jdbcrowsetimpl.resnotupd = ResultSet \u306f\u66f4\u65b0\u3067\u304d\u307e\u305b\u3093\u3002 jdbcrowsetimpl.resnotupd = ResultSet\u306F\u66F4\u65B0\u3067\u304D\u307E\u305B\u3093
jdbcrowsetimpl.opnotysupp = \u307e\u3060\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u306a\u3044\u64cd\u4f5c jdbcrowsetimpl.opnotysupp = \u307E\u3060\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u306A\u3044\u64CD\u4F5C
jdbcrowsetimpl.featnotsupp = \u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u306a\u3044\u6a5f\u80fd jdbcrowsetimpl.featnotsupp = \u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u306A\u3044\u6A5F\u80FD
#CachedRowSetReader exceptions #CachedRowSetReader exceptions
crsreader.connect = (JNDI) \u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\u3002 crsreader.connect = (JNDI)\u63A5\u7D9A\u3067\u304D\u307E\u305B\u3093
crsreader.paramtype = \u30d1\u30e9\u30e1\u30fc\u30bf\u578b\u3092\u63a8\u5b9a\u3067\u304d\u307e\u305b\u3093\u3002 crsreader.paramtype = \u30D1\u30E9\u30E1\u30FC\u30BF\u30FB\u30BF\u30A4\u30D7\u3092\u63A8\u5B9A\u3067\u304D\u307E\u305B\u3093
crsreader.connecterr = RowSetReader \u306e\u5185\u90e8\u30a8\u30e9\u30fc: \u63a5\u7d9a\u307e\u305f\u306f\u30b3\u30de\u30f3\u30c9\u306a\u3057 crsreader.connecterr = RowSetReader\u306E\u5185\u90E8\u30A8\u30E9\u30FC: \u63A5\u7D9A\u307E\u305F\u306F\u30B3\u30DE\u30F3\u30C9\u306A\u3057
crsreader.datedetected = \u65e5\u4ed8\u3092\u691c\u51fa\u3057\u307e\u3057\u305f\u3002 crsreader.datedetected = \u65E5\u4ED8\u3092\u691C\u51FA\u3057\u307E\u3057\u305F
crsreader.caldetected = \u30ab\u30ec\u30f3\u30c0\u3092\u691c\u51fa\u3057\u307e\u3057\u305f\u3002 crsreader.caldetected = \u30AB\u30EC\u30F3\u30C0\u3092\u691C\u51FA\u3057\u307E\u3057\u305F
#CachedRowSetWriter exceptions #CachedRowSetWriter exceptions
crswriter.connect = \u63a5\u7d9a\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3002 crswriter.connect = \u63A5\u7D9A\u3092\u53D6\u5F97\u3067\u304D\u307E\u305B\u3093
crswriter.tname = writeData \u304c\u8868\u540d\u3092\u5224\u5b9a\u3067\u304d\u307e\u305b\u3093\u3002 crswriter.tname = writeData\u304C\u8868\u540D\u3092\u5224\u5225\u3067\u304D\u307E\u305B\u3093
crswriter.params1 = params1 \u306e\u5024 : {0} crswriter.params1 = params1\u306E\u5024: {0}
crswriter.params2 = params2 \u306e\u5024 : {0} crswriter.params2 = params2\u306E\u5024: {0}
crswriter.conflictsno = \u540c\u671f\u4e2d\u306b\u7af6\u5408\u304c\u767a\u751f\u3057\u307e\u3059\u3002 crswriter.conflictsno = \u540C\u671F\u4E2D\u306B\u7AF6\u5408\u304C\u767A\u751F\u3057\u307E\u3059
#InsertRow exceptions #InsertRow exceptions
insertrow.novalue = \u5024\u306f\u633f\u5165\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 insertrow.novalue = \u5024\u306F\u633F\u5165\u3055\u308C\u3066\u3044\u307E\u305B\u3093
#SyncResolverImpl exceptions #SyncResolverImpl exceptions
syncrsimpl.indexval = \u7bc4\u56f2\u5916\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5024 syncrsimpl.indexval = \u7BC4\u56F2\u5916\u306E\u7D22\u5F15\u5024
syncrsimpl.noconflict = \u3053\u306e\u5217\u306f\u7af6\u5408\u3057\u3066\u3044\u307e\u305b\u3093\u3002 syncrsimpl.noconflict = \u3053\u306E\u5217\u306F\u7AF6\u5408\u3057\u3066\u3044\u307E\u305B\u3093
syncrsimpl.syncnotpos = \u540c\u671f\u3067\u304d\u307e\u305b\u3093\u3002 syncrsimpl.syncnotpos = \u540C\u671F\u3067\u304D\u307E\u305B\u3093
syncrsimpl.valtores = \u89e3\u6c7a\u3055\u308c\u308b\u5024\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b cachedrowset \u306b\u3042\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002 syncrsimpl.valtores = \u89E3\u6C7A\u3055\u308C\u308B\u5024\u306F\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u307E\u305F\u306Fcachedrowset\u306B\u3042\u308B\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059
#WebRowSetXmlReader exception #WebRowSetXmlReader exception
wrsxmlreader.invalidcp = RowSet \u306e\u6700\u5f8c\u306b\u5230\u9054\u3057\u307e\u3057\u305f\u3002\u7121\u52b9\u306a\u30ab\u30fc\u30bd\u30eb\u4f4d\u7f6e wrsxmlreader.invalidcp = RowSet\u306E\u6700\u5F8C\u306B\u5230\u9054\u3057\u307E\u3057\u305F\u3002\u7121\u52B9\u306A\u30AB\u30FC\u30BD\u30EB\u4F4D\u7F6E
wrsxmlreader.readxml = readXML : {0} wrsxmlreader.readxml = readXML: {0}
wrsxmlreader.parseerr = ** \u89e3\u6790\u30a8\u30e9\u30fc : {0} , \u884c : {1} , URI : {2} wrsxmlreader.parseerr = **\u89E3\u6790\u30A8\u30E9\u30FC: {0}\u3001\u884C: {1}\u3001URI: {2}
#WebRowSetXmlWriter exceptions #WebRowSetXmlWriter exceptions
wrsxmlwriter.ioex = IOException : {0} wrsxmlwriter.ioex = IOException: {0}
wrsxmlwriter.sqlex = SQLException : {0} wrsxmlwriter.sqlex = SQLException: {0}
wrsxmlwriter.failedwrite = \u5024\u306e\u66f8\u304d\u8fbc\u307f\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002 wrsxmlwriter.failedwrite = \u5024\u306E\u66F8\u8FBC\u307F\u306B\u5931\u6557\u3057\u307E\u3057\u305F
wsrxmlwriter.notproper = \u9069\u5207\u306a\u578b\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 wsrxmlwriter.notproper = \u9069\u5207\u306A\u30BF\u30A4\u30D7\u3067\u306F\u3042\u308A\u307E\u305B\u3093
#XmlReaderContentHandler exceptions #XmlReaderContentHandler exceptions
xmlrch.errmap = Map \u8a2d\u5b9a\u30a8\u30e9\u30fc : {0} xmlrch.errmap = Map\u8A2D\u5B9A\u30A8\u30E9\u30FC: {0}
xmlrch.errmetadata = \u30e1\u30bf\u30c7\u30fc\u30bf\u8a2d\u5b9a\u30a8\u30e9\u30fc : {0} xmlrch.errmetadata = \u30E1\u30BF\u30C7\u30FC\u30BF\u8A2D\u5B9A\u30A8\u30E9\u30FC: {0}
xmlrch.errinsertval = \u5024\u306e\u633f\u5165\u30a8\u30e9\u30fc : {0} xmlrch.errinsertval = \u5024\u306E\u633F\u5165\u30A8\u30E9\u30FC: {0}
xmlrch.errconstr = \u884c\u306e\u751f\u6210\u30a8\u30e9\u30fc : {0} xmlrch.errconstr = \u884C\u306E\u751F\u6210\u30A8\u30E9\u30FC: {0}
xmlrch.errdel = \u884c\u306e\u524a\u9664\u30a8\u30e9\u30fc : {0} xmlrch.errdel = \u884C\u306E\u524A\u9664\u30A8\u30E9\u30FC: {0}
xmlrch.errinsdel = insdel \u884c\u306e\u751f\u6210\u30a8\u30e9\u30fc : {0} xmlrch.errinsert = \u633F\u5165\u884C\u306E\u751F\u6210\u30A8\u30E9\u30FC: {0}
xmlrch.errupdate = \u66f4\u65b0\u884c\u306e\u751f\u6210\u30a8\u30e9\u30fc : {0} xmlrch.errinsdel = insdel\u884C\u306E\u751F\u6210\u30A8\u30E9\u30FC: {0}
xmlrch.errupdrow = \u884c\u306e\u66f4\u65b0\u30a8\u30e9\u30fc : {0} xmlrch.errupdate = \u66F4\u65B0\u884C\u306E\u751F\u6210\u30A8\u30E9\u30FC: {0}
xmlrch.chars = \u6587\u5b57 : xmlrch.errupdrow = \u884C\u306E\u66F4\u65B0\u30A8\u30E9\u30FC: {0}
xmlrch.badvalue = \u4e0d\u6b63\u306a\u5024 ; null \u306b\u3067\u304d\u306a\u3044\u30d7\u30ed\u30d1\u30c6\u30a3 xmlrch.chars = \u6587\u5B57:
xmlrch.badvalue1 = \u4e0d\u6b63\u306a\u5024 ; null \u306b\u3067\u304d\u306a\u3044\u30e1\u30bf\u30c7\u30fc\u30bf xmlrch.badvalue = \u4E0D\u6B63\u306A\u5024: null\u306B\u3067\u304D\u306A\u3044\u30D7\u30ED\u30D1\u30C6\u30A3
xmlrch.warning = ** \u8b66\u544a : {0} , \u884c : {1} , URI : {2} xmlrch.badvalue1 = \u4E0D\u6B63\u306A\u5024: null\u306B\u3067\u304D\u306A\u3044\u30E1\u30BF\u30C7\u30FC\u30BF
xmlrch.warning = **\u8B66\u544A: {0}\u3001\u884C: {1}\u3001URI: {2}
#RIOptimisticProvider Exceptions #RIOptimisticProvider Exceptions
riop.locking = \u30ed\u30c3\u30af\u306e\u5206\u985e\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 riop.locking = \u30ED\u30C3\u30AF\u306E\u5206\u985E\u306F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u307E\u305B\u3093
#RIXMLProvider exceptions #RIXMLProvider exceptions
rixml.unsupp = RIXMLProvider \u3067\u306f\u672a\u30b5\u30dd\u30fc\u30c8 rixml.unsupp = RIXMLProvider\u3067\u306F\u672A\u30B5\u30DD\u30FC\u30C8

View file

@ -24,145 +24,147 @@
# #
# CacheRowSetImpl exceptions # CacheRowSetImpl exceptions
cachedrowsetimpl.populate = \uc798\ubabb\ub41c ResultSet \uac1d\uccb4\uac00 \uc81c\uacf5\ub418\uc5b4 \uba54\uc18c\ub4dc\ub97c \ucc44\uc6b8 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.populate = \uBD80\uC801\uD569\uD55C ResultSet \uAC1D\uCCB4\uAC00 \uC81C\uACF5\uB418\uC5B4 \uBA54\uC18C\uB4DC\uB97C \uCC44\uC6B8 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.invalidp = \uc798\ubabb\ub41c \uc9c0\uc18d\uc131 \uacf5\uae09\uc790\uac00 \uc0dd\uc131\ub418\uc5c8\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.invalidp = \uBD80\uC801\uD569\uD55C \uC9C0\uC18D\uC131 \uC81C\uACF5\uC790\uAC00 \uC0DD\uC131\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.nullhash = CachedRowSetImpl \uc778\uc2a4\ud134\uc2a4\ub97c \uc778\uc2a4\ud134\uc2a4\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uad6c\uc131\uc790\uc5d0 \ub110 Hashtable\uc774 \uc81c\uacf5\ub418\uc5c8\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.nullhash = CachedRowSetImpl \uC778\uC2A4\uD134\uC2A4\uB97C \uC778\uC2A4\uD134\uC2A4\uD654\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. \uC0DD\uC131\uC790\uC5D0 \uB110 Hashtable\uC774 \uC81C\uACF5\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.invalidop = \ud589\uc744 \uc0bd\uc785\ud558\ub294 \ub3d9\uc548 \uc798\ubabb\ub41c \uc791\uc5c5\uc744 \uc218\ud589\ud588\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.invalidop = \uD589\uC744 \uC0BD\uC785\uD558\uB294 \uC911 \uBD80\uC801\uD569\uD55C \uC791\uC5C5\uC774 \uC218\uD589\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.accfailed = acceptChanges\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.accfailed = acceptChanges\uB97C \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.invalidcp = \uc798\ubabb\ub41c \ucee4\uc11c \uc704\uce58\uc785\ub2c8\ub2e4. cachedrowsetimpl.invalidcp = \uCEE4\uC11C \uC704\uCE58\uAC00 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
cachedrowsetimpl.illegalop = \uc0bd\uc785\ub41c \ud589\uc774 \uc544\ub2cc \ud589\uc5d0\uc11c \uc798\ubabb\ub41c \uc791\uc5c5\uc744 \uc218\ud589\ud588\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.illegalop = \uC0BD\uC785\uB41C \uD589\uC774 \uC544\uB2CC \uD589\uC5D0\uC11C \uC798\uBABB\uB41C \uC791\uC5C5\uC774 \uC218\uD589\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.clonefail = \ubcf5\uc81c \uc2e4\ud328: {0} cachedrowsetimpl.clonefail = \uBCF5\uC81C \uC2E4\uD328: {0}
cachedrowsetimpl.invalidcol = \uc798\ubabb\ub41c \uc5f4 \uc0c9\uc778\uc785\ub2c8\ub2e4. cachedrowsetimpl.invalidcol = \uC5F4 \uC778\uB371\uC2A4\uAC00 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
cachedrowsetimpl.invalcolnm = \uc798\ubabb\ub41c \uc5f4 \uc774\ub984\uc785\ub2c8\ub2e4. cachedrowsetimpl.invalcolnm = \uC5F4 \uC774\uB984\uC774 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
cachedrowsetimpl.boolfail = \uc5f4 {1}\uc758 \uac12({0})\uc5d0\uc11c getBoolen\uc774 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.boolfail = {1} \uC5F4\uC758 \uAC12({0})\uC5D0\uC11C getBoolen\uC744 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.bytefail = \uc5f4 {1}\uc758 \uac12({0})\uc5d0\uc11c getByte\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.bytefail = {1} \uC5F4\uC758 \uAC12({0})\uC5D0\uC11C getByte\uB97C \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.shortfail = \uc5f4 {1}\uc758 \uac12({0})\uc5d0\uc11c getShort\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.shortfail = {1} \uC5F4\uC758 \uAC12({0})\uC5D0\uC11C getShort\uB97C \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.intfail = \uc5f4 {1}\uc758 \uac12({0})\uc5d0\uc11c getInt\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.intfail = {1} \uC5F4\uC758 \uAC12({0})\uC5D0\uC11C getInt\uB97C \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.longfail = \uc5f4 {1}\uc758 \uac12({0})\uc5d0\uc11c getLong\uc774 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.longfail = {1} \uC5F4\uC758 \uAC12({0})\uC5D0\uC11C getLong\uC744 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.floatfail = \uc5f4 {1}\uc758 \uac12({0})\uc5d0\uc11c getFloat\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.floatfail = {1} \uC5F4\uC758 \uAC12({0})\uC5D0\uC11C getFloat\uB97C \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.doublefail = \uc5f4 {1}\uc758 \uac12({0})\uc5d0\uc11c getDouble\uc774 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.doublefail = {1} \uC5F4\uC758 \uAC12({0})\uC5D0\uC11C getDouble\uC744 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.dtypemismt = \ub370\uc774\ud130 \uc720\ud615\uc774 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.dtypemismt = \uB370\uC774\uD130 \uC720\uD615\uC774 \uC77C\uCE58\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.datefail = \uc5f4 {1}\uc758 \uac12({0})\uc5d0\uc11c getDate\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4. \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.datefail = {1} \uC5F4\uC758 \uAC12({0})\uC5D0\uC11C getDate\uB97C \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4. \uBCC0\uD658\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.timefail = \uc5f4 {1}\uc758 \uac12({0})\uc5d0\uc11c getLong\uc774 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4. \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.timefail = {1} \uC5F4\uC758 \uAC12({0})\uC5D0\uC11C getTime\uC744 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4. \uBCC0\uD658\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.posupdate = \uc704\uce58 \uc9c0\uc815 \uc5c5\ub370\uc774\ud2b8\ub97c \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.posupdate = \uC704\uCE58\uAC00 \uC9C0\uC815\uB41C \uAC31\uC2E0\uC774 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.unableins = \uc778\uc2a4\ud134\uc2a4\ud654 \ud560 \uc218 \uc5c6\uc74c: {0} cachedrowsetimpl.unableins = \uC778\uC2A4\uD134\uC2A4\uD654\uD560 \uC218 \uC5C6\uC74C: {0}
cachedrowsetimpl.beforefirst = beforeFirst: \uc798\ubabb\ub41c \ucee4\uc11c \uc791\uc5c5\uc785\ub2c8\ub2e4. cachedrowsetimpl.beforefirst = beforeFirst: \uCEE4\uC11C \uC791\uC5C5\uC774 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
cachedrowsetimpl.first = \ucc98\uc74c: \uc798\ubabb\ub41c \ucee4\uc11c \uc791\uc5c5\uc785\ub2c8\ub2e4. cachedrowsetimpl.first = \uCC98\uC74C: \uCEE4\uC11C \uC791\uC5C5\uC774 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
cachedrowsetimpl.last = \ub9c8\uc9c0\ub9c9: TYPE_FORWARD_ONLY cachedrowsetimpl.last = \uB9C8\uC9C0\uB9C9: TYPE_FORWARD_ONLY
cachedrowsetimpl.absolute = \uc808\ub300: \uc798\ubabb\ub41c \ucee4\uc11c \uc704\uce58\uc785\ub2c8\ub2e4. cachedrowsetimpl.absolute = \uC808\uB300: \uCEE4\uC11C \uC704\uCE58\uAC00 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
cachedrowsetimpl.relative = \uc0c1\ub300: \uc798\ubabb\ub41c \ucee4\uc11c \uc704\uce58\uc785\ub2c8\ub2e4. cachedrowsetimpl.relative = \uC0C1\uB300: \uCEE4\uC11C \uC704\uCE58\uAC00 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
cachedrowsetimpl.asciistream = Ascii \uc2a4\ud2b8\ub9bc\uc744 \uc77d\ub294 \ub370 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.asciistream = ASCII \uC2A4\uD2B8\uB9BC\uC5D0 \uB300\uD55C \uC77D\uAE30\uB97C \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.binstream = \uc774\uc9c4 \uc2a4\ud2b8\ub9bc\uc744 \uc77d\ub294 \ub370 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.binstream = \uC774\uC9C4 \uC2A4\uD2B8\uB9BC\uC5D0\uC11C \uC77D\uAE30\uB97C \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.failedins = \ud589\uc744 \uc0bd\uc785\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.failedins = \uD589 \uC0BD\uC785\uC744 \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.updateins = \ud589\uc744 \uc0bd\uc785\ud558\ub294 \ub3d9\uc548 updateRow\uac00 \ud638\ucd9c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.updateins = \uD589\uC744 \uC0BD\uC785\uD558\uB294 \uC911 updateRow\uAC00 \uD638\uCD9C\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.movetoins = moveToInsertRow: CONCUR_READ_ONLY cachedrowsetimpl.movetoins = moveToInsertRow: CONCUR_READ_ONLY
cachedrowsetimpl.movetoins1 = moveToInsertRow: \uba54\ud0c0 \ub370\uc774\ud130\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.movetoins1 = moveToInsertRow: \uBA54\uD0C0 \uB370\uC774\uD130\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.movetoins2 = moveToInsertRow: \uc798\ubabb\ub41c \uc5f4 \uac1c\uc218\uc785\ub2c8\ub2e4. cachedrowsetimpl.movetoins2 = moveToInsertRow: \uC5F4 \uC218\uAC00 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
cachedrowsetimpl.tablename = \ud14c\uc774\ube14 \uc774\ub984\uc740 \ub110\uc77c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.tablename = \uD14C\uC774\uBE14 \uC774\uB984\uC740 \uB110\uC77C \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.keycols = \uc798\ubabb\ub41c \ud0a4 \uc5f4\uc785\ub2c8\ub2e4. cachedrowsetimpl.keycols = \uD0A4 \uC5F4\uC774 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
cachedrowsetimpl.opnotsupp = \ub370\uc774\ud130\ubca0\uc774\uc2a4\uc5d0\uc11c \uc9c0\uc6d0\ud558\uc9c0 \uc54a\ub294 \uc791\uc5c5\uc785\ub2c8\ub2e4. cachedrowsetimpl.invalidcol = \uC5F4 \uC778\uB371\uC2A4\uAC00 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
cachedrowsetimpl.matchcols = \uc77c\uce58 \uc5f4\uc774 \uc124\uc815\ub41c \uc5f4\uacfc \uac19\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.opnotsupp = \uB370\uC774\uD130\uBCA0\uC774\uC2A4\uC5D0\uC11C \uC9C0\uC6D0\uD558\uC9C0 \uC54A\uB294 \uC791\uC5C5\uC785\uB2C8\uB2E4.
cachedrowsetimpl.setmatchcols = \uc77c\uce58 \uc5f4\uc744 \uc124\uc815\ud55c \ub2e4\uc74c\uc5d0 \uac00\uc838\uc624\uc2ed\uc2dc\uc624. cachedrowsetimpl.matchcols = \uC77C\uCE58 \uC5F4\uC774 \uC124\uC815\uB41C \uC5F4\uACFC \uB3D9\uC77C\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.matchcols1 = \uc77c\uce58 \uc5f4\uc774 0\uac1c \uc774\uc0c1\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. cachedrowsetimpl.setmatchcols = \uC77C\uCE58 \uC5F4\uC744 \uC124\uC815\uD55C \uD6C4 \uAC00\uC838\uC624\uC2ED\uC2DC\uC624.
cachedrowsetimpl.matchcols2 = \uc77c\uce58 \uc5f4\uc740 \ube44\uc5b4 \uc788\uac70\ub098 \ub110 \ubb38\uc790\uc5f4\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. cachedrowsetimpl.matchcols1 = \uC77C\uCE58 \uC5F4\uC740 0\uAC1C \uC774\uC0C1\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4.
cachedrowsetimpl.unsetmatch = \uc124\uc815 \ud574\uc81c\ud560 \uc5f4\uc774 \uc124\uc815\ub41c \uc5f4\uacfc \uac19\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.matchcols2 = \uC77C\uCE58 \uC5F4\uC740 \uBE44\uC5B4 \uC788\uAC70\uB098 \uB110 \uBB38\uC790\uC5F4\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4.
cachedrowsetimpl.unsetmatch1 = \uc5f4 \uc774\ub984\uc744 unsetMatchColumn\uc758 \uc778\uc218\ub85c \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624. cachedrowsetimpl.unsetmatch = \uC124\uC815\uC744 \uD574\uC81C\uD558\uB824\uB294 \uC5F4\uC774 \uC124\uC815\uB41C \uC5F4\uACFC \uB2E4\uB985\uB2C8\uB2E4.
cachedrowsetimpl.unsetmatch2 = \uc5f4 ID\ub97c unsetMatchColumn\uc758 \uc778\uc218\ub85c \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624. cachedrowsetimpl.unsetmatch1 = \uC5F4 \uC774\uB984\uC744 unsetMatchColumn\uC758 \uC778\uC218\uB85C \uC0AC\uC6A9\uD558\uC2ED\uC2DC\uC624.
cachedrowsetimpl.numrows = \ud589 \uac1c\uc218\uac00 0\ubcf4\ub2e4 \uc791\uac70\ub098 \ubc18\uc785 \ud06c\uae30\ubcf4\ub2e4 \uc791\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.unsetmatch2 = \uC5F4 ID\uB97C unsetMatchColumn\uC758 \uC778\uC218\uB85C \uC0AC\uC6A9\uD558\uC2ED\uC2DC\uC624.
cachedrowsetimpl.startpos = \uc2dc\uc791 \uc704\uce58\ub294 \uc74c\uc218\uc77c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.numrows = \uD589 \uC218\uAC00 0\uBCF4\uB2E4 \uC791\uAC70\uB098 \uC778\uCD9C \uD06C\uAE30\uBCF4\uB2E4 \uC791\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.nextpage = \ud638\ucd9c\ud558\uae30 \uc804\uc5d0 \ub370\uc774\ud130\ub97c \ucc44\uc6b0\uc2ed\uc2dc\uc624. cachedrowsetimpl.startpos = \uC2DC\uC791 \uC704\uCE58\uB294 \uC74C\uC218\uC77C \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.pagesize = \ud398\uc774\uc9c0 \ud06c\uae30\ub294 0\ubcf4\ub2e4 \uc791\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.nextpage = \uD638\uCD9C\uD558\uAE30 \uC804\uC5D0 \uB370\uC774\uD130\uB97C \uCC44\uC6B0\uC2ED\uC2DC\uC624.
cachedrowsetimpl.pagesize1 = \ud398\uc774\uc9c0 \ud06c\uae30\ub294 maxRows\ubcf4\ub2e4 \ud074 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. cachedrowsetimpl.pagesize = \uD398\uC774\uC9C0 \uD06C\uAE30\uB294 0\uBCF4\uB2E4 \uC791\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.fwdonly = ResultSet\ub294 \uc804\ub2ec \uc804\uc6a9\uc785\ub2c8\ub2e4. cachedrowsetimpl.pagesize1 = \uD398\uC774\uC9C0 \uD06C\uAE30\uB294 maxRows\uBCF4\uB2E4 \uD074 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.type = \uc720\ud615: {0} cachedrowsetimpl.fwdonly = ResultSet\uB294 \uC804\uB2EC \uC804\uC6A9\uC785\uB2C8\uB2E4.
cachedrowsetimpl.opnotysupp = \uc791\uc5c5\uc774 \uc544\uc9c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc74c cachedrowsetimpl.type = \uC720\uD615: {0}
cachedrowsetimpl.featnotsupp = \uae30\ub2a5\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc74c cachedrowsetimpl.opnotysupp = \uC791\uC5C5\uC774 \uC544\uC9C1 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
cachedrowsetimpl.featnotsupp = \uAE30\uB2A5\uC774 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
# WebRowSetImpl exceptions # WebRowSetImpl exceptions
webrowsetimpl.nullhash = WebRowSetImpl \uc778\uc2a4\ud134\uc2a4\ub97c \uc778\uc2a4\ud134\uc2a4\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uad6c\uc131\uc790\uc5d0 \ub110 Hashtable\uc774 \uc81c\uacf5\ub418\uc5c8\uc2b5\ub2c8\ub2e4. webrowsetimpl.nullhash = WebRowSetImpl \uC778\uC2A4\uD134\uC2A4\uB97C \uC778\uC2A4\uD134\uC2A4\uD654\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. \uC0DD\uC131\uC790\uC5D0 \uB110 Hashtable\uC774 \uC81C\uACF5\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
webrowsetimpl.invalidwr = \uc798\ubabb\ub41c \uae30\ub85d\uae30\uc785\ub2c8\ub2e4. webrowsetimpl.invalidwr = \uAE30\uB85D \uC7A5\uCE58\uAC00 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
webrowsetimpl.invalidrd = \uc798\ubabb\ub41c \ud310\ub3c5\uae30\uc785\ub2c8\ub2e4. webrowsetimpl.invalidrd = \uC77D\uAE30 \uD504\uB85C\uADF8\uB7A8\uC774 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
#FilteredRowSetImpl exceptions #FilteredRowSetImpl exceptions
filteredrowsetimpl.relative = \uc0c1\ub300: \uc798\ubabb\ub41c \ucee4\uc11c \uc791\uc5c5\uc785\ub2c8\ub2e4. filteredrowsetimpl.relative = \uC0C1\uB300: \uCEE4\uC11C \uC791\uC5C5\uC774 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
filteredrowsetimpl.absolute = \uc808\ub300: \uc798\ubabb\ub41c \ucee4\uc11c \uc791\uc5c5\uc785\ub2c8\ub2e4. filteredrowsetimpl.absolute = \uC808\uB300: \uCEE4\uC11C \uC791\uC5C5\uC774 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
filteredrowsetimpl.notallowed = \uc774 \uac12\uc740 \ud544\ud130\ub97c \ud1b5\uacfc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. filteredrowsetimpl.notallowed = \uC774 \uAC12\uC740 \uD544\uD130\uB97C \uD1B5\uACFC\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
#JoinRowSetImpl exceptions #JoinRowSetImpl exceptions
joinrowsetimpl.notinstance = Rowset\uc758 \uc778\uc2a4\ud134\uc2a4\uac00 \uc544\ub2d9\ub2c8\ub2e4. joinrowsetimpl.notinstance = Rowset\uC758 \uC778\uC2A4\uD134\uC2A4\uAC00 \uC544\uB2D9\uB2C8\uB2E4.
joinrowsetimpl.matchnotset = \uacb0\ud569\ud560 \uc77c\uce58 \uc5f4\uc744 \uc124\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4. joinrowsetimpl.matchnotset = \uC870\uC778\uD560 \uC77C\uCE58 \uC5F4\uC774 \uC124\uC815\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
joinrowsetimpl.numnotequal = Rowset\uc758 \uc694\uc18c \uc218\uac00 \uc77c\uce58 \uc5f4\uacfc \uac19\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. joinrowsetimpl.numnotequal = Rowset\uC758 \uC694\uC18C \uC218\uAC00 \uC77C\uCE58 \uC5F4\uACFC \uAC19\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
joinrowsetimpl.notdefined = \uc815\uc758\ub41c \uacb0\ud569 \uc720\ud615\uc774 \uc544\ub2d9\ub2c8\ub2e4. joinrowsetimpl.notdefined = \uC815\uC758\uB41C \uC870\uC778 \uC720\uD615\uC774 \uC544\uB2D9\uB2C8\uB2E4.
joinrowsetimpl.notsupported = \uc774 \uacb0\ud569 \uc720\ud615\uc740 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. joinrowsetimpl.notsupported = \uC774 \uC870\uC778 \uC720\uD615\uC740 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
joinrowsetimpl.initerror = JoinRowSet \ucd08\uae30\ud654 \uc624\ub958 joinrowsetimpl.initerror = JoinRowSet \uCD08\uAE30\uD654 \uC624\uB958
joinrowsetimpl.genericerr = \uc77c\ubc18 joinrowset \ucd08\uae30 \uc624\ub958 joinrowsetimpl.genericerr = \uC77C\uBC18 joinrowset \uCD08\uAE30 \uC624\uB958
joinrowsetimpl.emptyrowset = \ube48 rowset\uc744 \uc774 JoinRowSet\uc5d0 \ucd94\uac00\ud560 \uc218 \uc5c6\uc74c joinrowsetimpl.emptyrowset = \uBE48 rowset\uB97C \uC774 JoinRowSet\uC5D0 \uCD94\uAC00\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
#JdbcRowSetImpl exceptions #JdbcRowSetImpl exceptions
jdbcrowsetimpl.invalstate = \uc798\ubabb\ub41c \uc0c1\ud0dc\uc785\ub2c8\ub2e4. jdbcrowsetimpl.invalstate = \uC0C1\uD0DC\uAC00 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
jdbcrowsetimpl.connect = JdbcRowSet(\uc5f0\uacb0) JNDI\uac00 \uc5f0\uacb0\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. jdbcrowsetimpl.connect = JdbcRowSet(\uC811\uC18D) JNDI\uAC00 \uC811\uC18D\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
jdbcrowsetimpl.paramtype = \ub9e4\uac1c \ubcc0\uc218 \uc720\ud615\uc744 \ucd94\ub860\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. jdbcrowsetimpl.paramtype = \uB9E4\uAC1C\uBCC0\uC218 \uC720\uD615\uC744 \uCD94\uB860\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
jdbcrowsetimpl.matchcols = \uc77c\uce58 \uc5f4\uc774 \uc124\uc815\ub41c \uc5f4\uacfc \uac19\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. jdbcrowsetimpl.matchcols = \uC77C\uCE58 \uC5F4\uC774 \uC124\uC815\uB41C \uC5F4\uACFC \uB3D9\uC77C\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
jdbcrowsetimpl.setmatchcols = \uc77c\uce58 \uc5f4\uc744 \uc124\uc815\ud55c \ub2e4\uc74c\uc5d0 \uac00\uc838\uc624\uc2ed\uc2dc\uc624. jdbcrowsetimpl.setmatchcols = \uC77C\uCE58 \uC5F4\uC744 \uC124\uC815\uD55C \uD6C4 \uAC00\uC838\uC624\uC2ED\uC2DC\uC624.
jdbcrowsetimpl.matchcols1 = \uc77c\uce58 \uc5f4\uc740 0\uac1c \uc774\uc0c1\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4. jdbcrowsetimpl.matchcols1 = \uC77C\uCE58 \uC5F4\uC740 0\uAC1C \uC774\uC0C1\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4.
jdbcrowsetimpl.matchcols2 = \uc77c\uce58 \uc5f4\uc740 \ub110 \ub610\ub294 \ube48 \ubb38\uc790\uc5f4\uc77c \uc218\ub294 \uc5c6\uc2b5\ub2c8\ub2e4. jdbcrowsetimpl.matchcols2 = \uC77C\uCE58 \uC5F4\uC740 \uB110 \uB610\uB294 \uBE48 \uBB38\uC790\uC5F4\uC77C \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
jdbcrowsetimpl.unsetmatch = \uc124\uc815 \ud574\uc81c\ud560 \uc5f4\uc774 \uc124\uc815\ub41c \uc5f4\uacfc \uac19\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. jdbcrowsetimpl.unsetmatch = \uC124\uC815\uC744 \uD574\uC81C\uD558\uB824\uB294 \uC5F4\uC774 \uC124\uC815\uB41C \uC5F4\uACFC \uB2E4\uB985\uB2C8\uB2E4.
jdbcrowsetimpl.usecolname = \uc5f4 \uc774\ub984\uc744 unsetMatchColumn\uc758 \uc778\uc218\ub85c \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624. jdbcrowsetimpl.usecolname = \uC5F4 \uC774\uB984\uC744 unsetMatchColumn\uC758 \uC778\uC218\uB85C \uC0AC\uC6A9\uD558\uC2ED\uC2DC\uC624.
jdbcrowsetimpl.usecolid = \uc5f4 ID\ub97c unsetMatchColumn\uc758 \uc778\uc218\ub85c \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624. jdbcrowsetimpl.usecolid = \uC5F4 ID\uB97C unsetMatchColumn\uC758 \uC778\uC218\uB85C \uC0AC\uC6A9\uD558\uC2ED\uC2DC\uC624.
jdbcrowsetimpl.resnotupd = ResultSet\uc740 \uc5c5\ub370\uc774\ud2b8\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. jdbcrowsetimpl.resnotupd = ResultSet\uB97C \uAC31\uC2E0\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
jdbcrowsetimpl.opnotysupp = \uc791\uc5c5\uc774 \uc544\uc9c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc74c jdbcrowsetimpl.opnotysupp = \uC791\uC5C5\uC774 \uC544\uC9C1 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
jdbcrowsetimpl.featnotsupp = \uae30\ub2a5\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc74c jdbcrowsetimpl.featnotsupp = \uAE30\uB2A5\uC774 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
#CachedRowSetReader exceptions #CachedRowSetReader exceptions
crsreader.connect = (JNDI) \uc5f0\uacb0\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. crsreader.connect = (JNDI) \uC811\uC18D\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
crsreader.paramtype = \ub9e4\uac1c \ubcc0\uc218 \uc720\ud615\uc744 \ucd94\ub860\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. crsreader.paramtype = \uB9E4\uAC1C\uBCC0\uC218 \uC720\uD615\uC744 \uCD94\uB860\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
crsreader.connecterr = RowSetReader\uc758 \ub0b4\ubd80 \uc624\ub958: \uc5f0\uacb0 \ub610\ub294 \uba85\ub839\uc774 \uc5c6\uc74c crsreader.connecterr = RowSetReader\uC5D0 \uB0B4\uBD80 \uC624\uB958 \uBC1C\uC0DD: \uC811\uC18D \uB610\uB294 \uBA85\uB839\uC774 \uC5C6\uC2B5\uB2C8\uB2E4.
crsreader.datedetected = \ub0a0\uc9dc\uac00 \uac10\uc9c0\ub428 crsreader.datedetected = \uB0A0\uC9DC\uB97C \uAC10\uC9C0\uD568
crsreader.caldetected = \ub2ec\ub825\uc774 \uac10\uc9c0\ub428 crsreader.caldetected = \uB2EC\uB825\uC744 \uAC10\uC9C0\uD568
#CachedRowSetWriter exceptions #CachedRowSetWriter exceptions
crswriter.connect = \uc5f0\uacb0\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. crswriter.connect = \uC811\uC18D\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
crswriter.tname = writeData\uc5d0\uc11c \ud14c\uc774\ube14 \uc774\ub984\uc744 \ud655\uc778\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. crswriter.tname = writeData\uC5D0\uC11C \uD14C\uC774\uBE14 \uC774\uB984\uC744 \uD655\uC778\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
crswriter.params1 = params1\uc758 \uac12: {0} crswriter.params1 = params1\uC758 \uAC12: {0}
crswriter.params2 = params2\uc758 \uac12: {0} crswriter.params2 = params2\uC758 \uAC12: {0}
crswriter.conflictsno = \ub3d9\uae30\ud654\ud558\ub294 \ub3d9\uc548 \ucda9\ub3cc\ud568 crswriter.conflictsno = \uB3D9\uAE30\uD654\uD558\uB294 \uC911 \uCDA9\uB3CC\uD568
#InsertRow exceptions #InsertRow exceptions
insertrow.novalue = \uac12\uc774 \uc0bd\uc785\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4. insertrow.novalue = \uAC12\uC774 \uC0BD\uC785\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.
#SyncResolverImpl exceptions #SyncResolverImpl exceptions
syncrsimpl.indexval = \uc0c9\uc778 \uac12\uc774 \ubc94\uc704\ub97c \ubc97\uc5b4\ub0ac\uc2b5\ub2c8\ub2e4. syncrsimpl.indexval = \uC778\uB371\uC2A4 \uAC12\uC774 \uBC94\uC704\uB97C \uBC97\uC5B4\uB0AC\uC2B5\uB2C8\uB2E4.
syncrsimpl.noconflict = \uc774 \uc5f4\uc740 \ucda9\ub3cc\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. syncrsimpl.noconflict = \uC774 \uC5F4\uC740 \uCDA9\uB3CC\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
syncrsimpl.syncnotpos = \ub3d9\uae30\ud654\ub97c \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. syncrsimpl.syncnotpos = \uB3D9\uAE30\uD654\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
syncrsimpl.valtores = \ud655\uc778\ud560 \uac12\uc774 \ub370\uc774\ud130\ubca0\uc774\uc2a4\ub098 cachedrowset\uc5d0 \uc788\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4. syncrsimpl.valtores = \uBD84\uC11D\uD560 \uAC12\uC774 \uB370\uC774\uD130\uBCA0\uC774\uC2A4 \uB610\uB294 cachedrowset\uC5D0 \uC788\uC744 \uC218 \uC788\uC2B5\uB2C8\uB2E4.
#WebRowSetXmlReader exception #WebRowSetXmlReader exception
wrsxmlreader.invalidcp = RowSet\uc758 \ub05d\uc5d0 \ub3c4\ub2ec\ud588\uc2b5\ub2c8\ub2e4. \uc798\ubabb\ub41c \ucee4\uc11c \uc704\uce58\uc785\ub2c8\ub2e4. wrsxmlreader.invalidcp = RowSet\uC758 \uB05D\uC5D0 \uB3C4\uB2EC\uD588\uC2B5\uB2C8\uB2E4. \uCEE4\uC11C \uC704\uCE58\uAC00 \uBD80\uC801\uD569\uD569\uB2C8\uB2E4.
wrsxmlreader.readxml = readXML: {0} wrsxmlreader.readxml = readXML: {0}
wrsxmlreader.parseerr = ** \uad6c\ubb38 \ubd84\uc11d \uc624\ub958 : {0} , \ud589 : {1} , uri : {2} wrsxmlreader.parseerr = ** \uAD6C\uBB38 \uBD84\uC11D \uC624\uB958: {0}, \uD589: {1}, URI: {2}
#WebRowSetXmlWriter exceptions #WebRowSetXmlWriter exceptions
wrsxmlwriter.ioex = IOException: {0} wrsxmlwriter.ioex = IOException : {0}
wrsxmlwriter.sqlex = SQLException: {0} wrsxmlwriter.sqlex = SQLException : {0}
wrsxmlwriter.failedwrite = \uac12\uc744 \uc4f0\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4. wrsxmlwriter.failedwrite = \uAC12 \uC4F0\uAE30\uB97C \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4.
wsrxmlwriter.notproper = \uc62c\ubc14\ub978 \uc720\ud615\uc774 \uc544\ub2d9\ub2c8\ub2e4. wsrxmlwriter.notproper = \uC801\uC808\uD55C \uC720\uD615\uC774 \uC544\uB2D9\uB2C8\uB2E4.
#XmlReaderContentHandler exceptions #XmlReaderContentHandler exceptions
xmlrch.errmap = \ub9e4\ud551\uc744 \uc124\uc815\ud558\ub294 \uc911 \uc624\ub958 \ubc1c\uc0dd: {0} xmlrch.errmap = \uB9F5\uC744 \uC124\uC815\uD558\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD: {0}
xmlrch.errmetadata = \uba54\ud0c0\ub370\uc774\ud130\ub97c \uc124\uc815\ud558\ub294 \uc911 \uc624\ub958 \ubc1c\uc0dd: {0} xmlrch.errmetadata = \uBA54\uD0C0 \uB370\uC774\uD130\uB97C \uC124\uC815\uD558\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD: {0}
xmlrch.errinsertval = \ub2e4\uc74c \uac12\uc744 \uc0bd\uc785\ud558\ub294 \uc911 \uc624\ub958 \ubc1c\uc0dd : {0} xmlrch.errinsertval = \uAC12\uC744 \uC0BD\uC785\uD558\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD: {0}
xmlrch.errconstr = \ud589\uc744 \ub9cc\ub4dc\ub294 \uc911 \uc624\ub958 \ubc1c\uc0dd: {0} xmlrch.errconstr = \uD589\uC744 \uC0DD\uC131\uD558\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD: {0}
xmlrch.errdel = \ud589\uc744 \uc81c\uac70\ud558\ub294 \uc911 \uc624\ub958 \ubc1c\uc0dd: {0} xmlrch.errdel = \uD589\uC744 \uC0AD\uC81C\uD558\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD: {0}
xmlrch.errinsdel = insdel \ud589\uc744 \ub9cc\ub4dc\ub294 \uc911 \uc624\ub958 \ubc1c\uc0dd: {0} xmlrch.errinsert = insert \uD589\uC744 \uC0DD\uC131\uD558\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD: {0}
xmlrch.errupdate = update \ud589\uc744 \ub9cc\ub4dc\ub294 \uc911 \uc624\ub958 \ubc1c\uc0dd: {0} xmlrch.errinsdel = insdel \uD589\uC744 \uC0DD\uC131\uD558\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD: {0}
xmlrch.errupdrow = \ub2e4\uc74c \ud589\uc744 \uc5c5\ub370\uc774\ud2b8\ud558\ub294 \uc911 \uc624\ub958 \ubc1c\uc0dd : {0} xmlrch.errupdate = update \uD589\uC744 \uC0DD\uC131\uD558\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD: {0}
xmlrch.chars = \ubb38\uc790: xmlrch.errupdrow = \uD589\uC744 \uAC31\uC2E0\uD558\uB294 \uC911 \uC624\uB958 \uBC1C\uC0DD: {0}
xmlrch.badvalue = \uc798\ubabb\ub41c \uac12; \ub110\uc77c \uc218 \uc5c6\ub294 \ub4f1\ub85d \uc815\ubcf4 xmlrch.chars = \uBB38\uC790:
xmlrch.badvalue1 = \uc798\ubabb\ub41c \uac12; \ub110\uc77c \uc218 \uc5c6\ub294 \uba54\ud0c0\ub370\uc774\ud130 xmlrch.badvalue = \uC798\uBABB\uB41C \uAC12: \uB110\uC77C \uC218 \uC5C6\uB294 \uC18D\uC131\uC785\uB2C8\uB2E4.
xmlrch.warning = ** \uacbd\uace0 : {0} , \ud589 : {1} , uri : {2} xmlrch.badvalue1 = \uC798\uBABB\uB41C \uAC12: \uB110\uC77C \uC218 \uC5C6\uB294 \uBA54\uD0C0 \uB370\uC774\uD130\uC785\uB2C8\uB2E4.
xmlrch.warning = ** \uACBD\uACE0: {0}, \uD589: {1}, URI: {2}
#RIOptimisticProvider Exceptions #RIOptimisticProvider Exceptions
riop.locking = \ub4f1\uae09 \uc7a0\uae08\uc744 \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. riop.locking = \uBD84\uB958 \uC7A0\uAE08\uC774 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
#RIXMLProvider exceptions #RIXMLProvider exceptions
rixml.unsupp = RIXMLProvider\uc5d0\uc11c \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. rixml.unsupp = RIXMLProvider\uC5D0\uC11C \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.

View file

@ -24,147 +24,147 @@
# #
# CacheRowSetImpl exceptions # CacheRowSetImpl exceptions
cachedrowsetimpl.populate = Objeto ResultSet inv\u00e1lido fornecido para preencher o m\u00e9todo cachedrowsetimpl.populate = Objeto ResultSet inv\u00E1lido fornecido para preencher o m\u00E9todo
cachedrowsetimpl.invalidp = Fornecedor de persist\u00eancias inv\u00e1lido gerado cachedrowsetimpl.invalidp = Fornecedor de persist\u00EAncias inv\u00E1lido gerado
cachedrowsetimpl.nullhash = N\u00e3o \u00e9 poss\u00edvel instanciar a inst\u00e2ncia CachedRowSetImpl. Hashtable nulo fornecido ao construtor cachedrowsetimpl.nullhash = N\u00E3o \u00E9 poss\u00EDvel instanciar a inst\u00E2ncia CachedRowSetImpl. Hashtable Nulo fornecido ao construtor
cachedrowsetimpl.invalidop = Opera\u00e7\u00e3o inv\u00e1lida durante a inser\u00e7\u00e3o de linha cachedrowsetimpl.invalidop = Opera\u00E7\u00E3o inv\u00E1lida durante a inser\u00E7\u00E3o de linha
cachedrowsetimpl.accfailed = acceptChanges falho cachedrowsetimpl.accfailed = Falha em acceptChanges
cachedrowsetimpl.invalidcp = Posi\u00e7\u00e3o inv\u00e1lida do cursor cachedrowsetimpl.invalidcp = Posi\u00E7\u00E3o inv\u00E1lida do cursor
cachedrowsetimpl.illegalop = Opera\u00e7\u00e3o ilegal em linha n\u00e3o inserida cachedrowsetimpl.illegalop = Opera\u00E7\u00E3o inv\u00E1lida em linha n\u00E3o inserida
cachedrowsetimpl.clonefail = Clone falho: {0} cachedrowsetimpl.clonefail = Falha ao clonar: {0}
cachedrowsetimpl.invalidcol = \u00cdndice de coluna inv\u00e1lido cachedrowsetimpl.invalidcol = \u00CDndice de coluna inv\u00E1lido
cachedrowsetimpl.invalcolnm = Nome de coluna inv\u00e1lido cachedrowsetimpl.invalcolnm = Nome de coluna inv\u00E1lido
cachedrowsetimpl.boolfail = getBoolen falhou no valor ( {0} ) na coluna {1} cachedrowsetimpl.boolfail = Falha em getBoolen no valor ( {0} ) na coluna {1}
cachedrowsetimpl.bytefail = getByte falhou no valor ( {0} ) na coluna {1} cachedrowsetimpl.bytefail = Falha em getByte no valor ( {0} ) na coluna {1}
cachedrowsetimpl.shortfail = getShort falhou no valor ( {0} ) na coluna {1} cachedrowsetimpl.shortfail = Falha em getShort no valor ( {0} ) na coluna {1}
cachedrowsetimpl.intfail = getInt falhou no valor ( {0} ) na coluna {1} cachedrowsetimpl.intfail = Falha em getInt no valor ( {0} ) na coluna {1}
cachedrowsetimpl.longfail = getLong falhou no valor ( {0} ) na coluna {1} cachedrowsetimpl.longfail = Falha em getLong no valor ( {0} ) na coluna {1}
cachedrowsetimpl.floatfail = getFloat falhou no valor ( {0} ) na coluna {1} cachedrowsetimpl.floatfail = Falha em getFloat no valor ( {0} ) na coluna {1}
cachedrowsetimpl.doublefail = getDouble falhou no valor ( {0} ) na coluna {1} cachedrowsetimpl.doublefail = Falha em getDouble no valor ( {0} ) na coluna {1}
cachedrowsetimpl.dtypemismt = Tipo de dados incompat\u00edvel cachedrowsetimpl.dtypemismt = Tipo de Dados Incompat\u00EDvel
cachedrowsetimpl.datefail = getDate falhou no valor ( {0} ) na coluna {1} sem convers\u00e3o dispon\u00edvel cachedrowsetimpl.datefail = Falha em getDate no valor ( {0} ) na coluna {1} sem convers\u00E3o dispon\u00EDvel
cachedrowsetimpl.timefail = getTime falhou no valor ( {0} ) na coluna {1} sem convers\u00e3o dispon\u00edvel cachedrowsetimpl.timefail = Falha em getTime no valor ( {0} ) na coluna {1} sem convers\u00E3o dispon\u00EDvel
cachedrowsetimpl.posupdate = Atualiza\u00e7\u00f5es posicionadas n\u00e3o suportadas cachedrowsetimpl.posupdate = Atualiza\u00E7\u00F5es posicionadas n\u00E3o suportadas
cachedrowsetimpl.unableins = N\u00e3o \u00e9 poss\u00edvel instanciar: {0} cachedrowsetimpl.unableins = N\u00E3o \u00E9 poss\u00EDvel instanciar : {0}
cachedrowsetimpl.beforefirst = beforeFirst : posi\u00e7\u00e3o inv\u00e1lida do cursor cachedrowsetimpl.beforefirst = beforeFirst : Opera\u00E7\u00E3o do cursor inv\u00E1lida
cachedrowsetimpl.first = First : opera\u00e7\u00e3o inv\u00e1lida do cursor cachedrowsetimpl.first = First : Opera\u00E7\u00E3o inv\u00E1lida do cursor
cachedrowsetimpl.last = last : TYPE_FORWARD_ONLY cachedrowsetimpl.last = last : TYPE_FORWARD_ONLY
cachedrowsetimpl.absolute = absolute : posi\u00e7\u00e3o inv\u00e1lida do cursor cachedrowsetimpl.absolute = absolute : Posi\u00E7\u00E3o inv\u00E1lida do cursor
cachedrowsetimpl.relative = relative : posi\u00e7\u00e3o inv\u00e1lida do cursor cachedrowsetimpl.relative = relative : Posi\u00E7\u00E3o inv\u00E1lida do cursor
cachedrowsetimpl.asciistream = leitura falha do fluxo ascii cachedrowsetimpl.asciistream = falha na leitura do fluxo ascii
cachedrowsetimpl.binstream = leitura falha em fluxo bin\u00e1rio cachedrowsetimpl.binstream = falha na leitura do fluxo bin\u00E1rio
cachedrowsetimpl.failedins = Falha ao inserir linha cachedrowsetimpl.failedins = Falha ao inserir a linha
cachedrowsetimpl.updateins = updateRow chamado durante a inser\u00e7\u00e3o de linha cachedrowsetimpl.updateins = updateRow chamado durante a inser\u00E7\u00E3o de linha
cachedrowsetimpl.movetoins = moveToInsertRow : CONCUR_READ_ONLY cachedrowsetimpl.movetoins = moveToInsertRow : CONCUR_READ_ONLY
cachedrowsetimpl.movetoins1 = moveToInsertRow : sem metadados cachedrowsetimpl.movetoins1 = moveToInsertRow : sem metadados
cachedrowsetimpl.movetoins2 = moveToInsertRow : n\u00famero de colunas inv\u00e1lido cachedrowsetimpl.movetoins2 = moveToInsertRow : n\u00FAmero de colunas inv\u00E1lido
cachedrowsetimpl.tablename = O nome da tabela n\u00e3o pode ser nulo cachedrowsetimpl.tablename = O nome da tabela n\u00E3o pode ser nulo
cachedrowsetimpl.keycols = Colunas de chaves inv\u00e1lidas cachedrowsetimpl.keycols = Colunas de chaves inv\u00E1lidas
cachedrowsetimpl.invalidcol = \u00cdndice de coluna inv\u00e1lido cachedrowsetimpl.invalidcol = \u00CDndice de coluna inv\u00E1lido
cachedrowsetimpl.opnotsupp = Opera\u00e7\u00e3o n\u00e3o suportada pelo banco de dados cachedrowsetimpl.opnotsupp = Opera\u00E7\u00E3o n\u00E3o suportada pelo Banco de Dados
cachedrowsetimpl.matchcols = As colunas correspondentes n\u00e3o s\u00e3o iguais \u00e0s colunas definidas cachedrowsetimpl.matchcols = As colunas correspondentes n\u00E3o s\u00E3o iguais \u00E0s colunas definidas
cachedrowsetimpl.setmatchcols = Definir colunas correspondentes antes de obt\u00ea-las cachedrowsetimpl.setmatchcols = Definir Colunas correspondentes antes de obt\u00EA-las
cachedrowsetimpl.matchcols1 = As colunas correspondentes devem ser maior do que 0 cachedrowsetimpl.matchcols1 = As colunas correspondentes devem ser maior do que 0
cachedrowsetimpl.matchcols2 = As colunas correspondentes devem ser sequ\u00eancias vazias ou nulas cachedrowsetimpl.matchcols2 = As colunas correspondentes devem ser strings vazias ou nulas
cachedrowsetimpl.unsetmatch = As colunas n\u00e3o definidas n\u00e3o s\u00e3o iguais \u00e0s colunas definidas cachedrowsetimpl.unsetmatch = As colunas n\u00E3o definidas n\u00E3o s\u00E3o iguais \u00E0s colunas definidas
cachedrowsetimpl.unsetmatch1 = Usar o nome da coluna como argumento para unsetMatchColumn cachedrowsetimpl.unsetmatch1 = Usar o nome da coluna como argumento para unsetMatchColumn
cachedrowsetimpl.unsetmatch2 = Usar o ID da coluna como argumento para unsetMatchColumn cachedrowsetimpl.unsetmatch2 = Usar o ID da coluna como argumento para unsetMatchColumn
cachedrowsetimpl.numrows = O n\u00famero de linhas \u00e9 menor do que zero ou menor do que o tamanho obtido cachedrowsetimpl.numrows = O n\u00FAmero de linhas \u00E9 menor do que zero ou menor do que o tamanho obtido
cachedrowsetimpl.startpos = A posi\u00e7\u00e3o de in\u00edcio n\u00e3o pode ser negativa cachedrowsetimpl.startpos = A posi\u00E7\u00E3o de in\u00EDcio n\u00E3o pode ser negativa
cachedrowsetimpl.nextpage = Preencher dados antes de chamar cachedrowsetimpl.nextpage = Preencher dados antes de chamar
cachedrowsetimpl.pagesize = O tamanho da p\u00e1gina n\u00e3o pode ser menor do que zero cachedrowsetimpl.pagesize = O tamanho da p\u00E1gina n\u00E3o pode ser menor do que zero
cachedrowsetimpl.pagesize1 = O tamanho da p\u00e1gina n\u00e3o pode ser maior do que maxRows cachedrowsetimpl.pagesize1 = O tamanho da p\u00E1gina n\u00E3o pode ser maior do que maxRows
cachedrowsetimpl.fwdonly = ResultSet \u00e9 somente para frente cachedrowsetimpl.fwdonly = ResultSet \u00E9 somente para frente
cachedrowsetimpl.type = O tipo \u00e9 : {0} cachedrowsetimpl.type = O tipo \u00E9 : {0}
cachedrowsetimpl.opnotysupp = Opera\u00e7\u00e3o ainda n\u00e3o suportada cachedrowsetimpl.opnotysupp = Opera\u00E7\u00E3o ainda n\u00E3o suportada
cachedrowsetimpl.featnotsupp = Recurso n\u00e3o suportado cachedrowsetimpl.featnotsupp = Recurso n\u00E3o suportado
# WebRowSetImpl exceptions # WebRowSetImpl exceptions
webrowsetimpl.nullhash = N\u00e3o \u00e9 poss\u00edvel instanciar a inst\u00e2ncia WebRowSetImpl. Hashtable nulo fornecido ao construtor webrowsetimpl.nullhash = N\u00E3o \u00E9 poss\u00EDvel instanciar a inst\u00E2ncia WebRowSetImpl. Hashtable nulo fornecido ao construtor
webrowsetimpl.invalidwr = Gravador inv\u00e1lido webrowsetimpl.invalidwr = Gravador inv\u00E1lido
webrowsetimpl.invalidrd = Leitor inv\u00e1lido webrowsetimpl.invalidrd = Leitor inv\u00E1lido
#FilteredRowSetImpl exceptions #FilteredRowSetImpl exceptions
filteredrowsetimpl.relative = relative : opera\u00e7\u00e3o inv\u00e1lida do cursor filteredrowsetimpl.relative = relative : Opera\u00E7\u00E3o inv\u00E1lida do cursor
filteredrowsetimpl.absolute = absolute : opera\u00e7\u00e3o inv\u00e1lida do cursor filteredrowsetimpl.absolute = absolute : Opera\u00E7\u00E3o inv\u00E1lida do cursor
filteredrowsetimpl.notallowed = Este valor n\u00e3o \u00e9 permitido no filtro filteredrowsetimpl.notallowed = Este valor n\u00E3o \u00E9 permitido no filtro
#JoinRowSetImpl exceptions #JoinRowSetImpl exceptions
joinrowsetimpl.notinstance = N\u00e3o \u00e9 uma inst\u00e2ncia do conjunto de linhas joinrowsetimpl.notinstance = N\u00E3o \u00E9 uma inst\u00E2ncia do conjunto de linhas
joinrowsetimpl.matchnotset = Coluna correspondente n\u00e3o definida para jun\u00e7\u00e3o joinrowsetimpl.matchnotset = Coluna Correspondente n\u00E3o definida para jun\u00E7\u00E3o
joinrowsetimpl.numnotequal = N\u00famero de elementos no conjunto de linhas diferente da coluna correspondente joinrowsetimpl.numnotequal = N\u00FAmero de elementos no conjunto de linhas diferente da coluna correspondente
joinrowsetimpl.notdefined = N\u00e3o \u00e9 um tipo definido de jun\u00e7\u00e3o joinrowsetimpl.notdefined = N\u00E3o \u00E9 um tipo definido de jun\u00E7\u00E3o
joinrowsetimpl.notsupported = Este tipo de jun\u00e7\u00e3o n\u00e3o \u00e9 suportada joinrowsetimpl.notsupported = Este tipo de jun\u00E7\u00E3o n\u00E3o \u00E9 suportada
joinrowsetimpl.initerror = Erro de inicializa\u00e7\u00e3o do JoinRowSet joinrowsetimpl.initerror = Erro de inicializa\u00E7\u00E3o do JoinRowSet
joinrowsetimpl.genericerr = Erro inicial de joinrowset gen\u00e9rico joinrowsetimpl.genericerr = Erro inicial de joinrowset gen\u00E9rico
joinrowsetimpl.emptyrowset = O conjunto de linha vazio n\u00e3o pode ser adicionado a este JoinRowSet joinrowsetimpl.emptyrowset = O conjunto de linha vazio n\u00E3o pode ser adicionado a este JoinRowSet
#JdbcRowSetImpl exceptions #JdbcRowSetImpl exceptions
jdbcrowsetimpl.invalstate = Estado inv\u00e1lido jdbcrowsetimpl.invalstate = Estado inv\u00E1lido
jdbcrowsetimpl.connect = N\u00e3o \u00e9 poss\u00edvel conectar JdbcRowSet (connect) a JNDI jdbcrowsetimpl.connect = N\u00E3o \u00E9 poss\u00EDvel conectar JdbcRowSet (connect) a JNDI
jdbcrowsetimpl.paramtype = N\u00e3o \u00e9 poss\u00edvel deduzir o tipo de par\u00e2metro jdbcrowsetimpl.paramtype = N\u00E3o \u00E9 poss\u00EDvel deduzir o tipo de par\u00E2metro
jdbcrowsetimpl.matchcols = As colunas correspondentes n\u00e3o s\u00e3o iguais \u00e0s colunas definidas jdbcrowsetimpl.matchcols = As Colunas Correspondentes n\u00E3o s\u00E3o iguais \u00E0s colunas definidas
jdbcrowsetimpl.setmatchcols = Definir as colunas correspondentes antes de obt\u00ea-las jdbcrowsetimpl.setmatchcols = Definir as colunas correspondentes antes de obt\u00EA-las
jdbcrowsetimpl.matchcols1 = As colunas correspondentes devem ser maior do que 0 jdbcrowsetimpl.matchcols1 = As colunas correspondentes devem ser maior do que 0
jdbcrowsetimpl.matchcols2 = As colunas correspondentes n\u00e3o podem ser sequ\u00eancias vazias ou nulas jdbcrowsetimpl.matchcols2 = As colunas correspondentes n\u00E3o podem ser strings vazias ou nulas
jdbcrowsetimpl.unsetmatch = As colunas n\u00e3o definidas n\u00e3o s\u00e3o iguais \u00e0s colunas definidas jdbcrowsetimpl.unsetmatch = As colunas n\u00E3o definidas n\u00E3o s\u00E3o iguais \u00E0s colunas definidas
jdbcrowsetimpl.usecolname = Usar o nome da coluna como argumento para unsetMatchColumn jdbcrowsetimpl.usecolname = Usar o nome da coluna como argumento para unsetMatchColumn
jdbcrowsetimpl.usecolid = Usar o ID da coluna como argumento para unsetMatchColumn jdbcrowsetimpl.usecolid = Usar o ID da coluna como argumento para unsetMatchColumn
jdbcrowsetimpl.resnotupd = ResultSet n\u00e3o \u00e9 atualiz\u00e1vel jdbcrowsetimpl.resnotupd = ResultSet n\u00E3o \u00E9 atualiz\u00E1vel
jdbcrowsetimpl.opnotysupp = Opera\u00e7\u00e3o ainda n\u00e3o suportada jdbcrowsetimpl.opnotysupp = Opera\u00E7\u00E3o ainda n\u00E3o suportada
jdbcrowsetimpl.featnotsupp = Recurso n\u00e3o suportado jdbcrowsetimpl.featnotsupp = Recurso n\u00E3o suportado
#CachedRowSetReader exceptions #CachedRowSetReader exceptions
crsreader.connect = (JNDI) N\u00e3o \u00e9 poss\u00edvel conectar crsreader.connect = (JNDI) N\u00E3o \u00E9 poss\u00EDvel conectar
crsreader.paramtype = N\u00e3o \u00e9 poss\u00edvel deduzir o tipo de par\u00e2metro crsreader.paramtype = N\u00E3o \u00E9 poss\u00EDvel deduzir o tipo de par\u00E2metro
crsreader.connecterr = Erro interno no RowSetReader: sem conex\u00e3o ou comando crsreader.connecterr = Erro Interno no RowSetReader: sem conex\u00E3o ou comando
crsreader.datedetected = Data detectada crsreader.datedetected = Data Detectada
crsreader.caldetected = Calend\u00e1rio detectado crsreader.caldetected = Calend\u00E1rio Detectado
#CachedRowSetWriter exceptions #CachedRowSetWriter exceptions
crswriter.connect = N\u00e3o \u00e9 poss\u00edvel obter a conex\u00e3o crswriter.connect = N\u00E3o \u00E9 poss\u00EDvel obter a conex\u00E3o
crswriter.tname = writeData n\u00e3o pode determinar o nome da tabela crswriter.tname = writeData n\u00E3o pode determinar o nome da tabela
crswriter.params1 = Valor de params1 : {0} crswriter.params1 = Valor de params1 : {0}
crswriter.params2 = Valor de params2 : {0} crswriter.params2 = Valor de params2 : {0}
crswriter.conflictsno = conflitos durante a sincroniza\u00e7\u00e3o crswriter.conflictsno = conflitos durante a sincroniza\u00E7\u00E3o
#InsertRow exceptions #InsertRow exceptions
insertrow.novalue = Nenhum valor foi inserido insertrow.novalue = Nenhum valor foi inserido
#SyncResolverImpl exceptions #SyncResolverImpl exceptions
syncrsimpl.indexval = Valor de \u00edndice fora do intervalo syncrsimpl.indexval = Valor de \u00EDndice fora da faixa
syncrsimpl.noconflict = Est\u00e1 coluna n\u00e3o est\u00e1 em conflito syncrsimpl.noconflict = Est\u00E1 coluna n\u00E3o est\u00E1 em conflito
syncrsimpl.syncnotpos = A sincroniza\u00e7\u00e3o n\u00e3o \u00e9 poss\u00edvel syncrsimpl.syncnotpos = A sincroniza\u00E7\u00E3o n\u00E3o \u00E9 poss\u00EDvel
syncrsimpl.valtores = O valor a ser decidido pode estar no banco de dados ou no conjunto de linhas armazenado em cache syncrsimpl.valtores = O valor a ser decidido pode estar no banco de dados ou no conjunto de linhas armazenado no cache
#WebRowSetXmlReader exception #WebRowSetXmlReader exception
wrsxmlreader.invalidcp = Fim de RowSet atingido. Posi\u00e7\u00e3o inv\u00e1lida do cursor wrsxmlreader.invalidcp = Fim de RowSet atingido. Posi\u00E7\u00E3o inv\u00E1lida do cursor
wrsxmlreader.readxml = readXML : {0} wrsxmlreader.readxml = readXML : {0}
wrsxmlreader.parseerr = ** Analisando erro : {0} , linha : {1} , uri : {2} wrsxmlreader.parseerr = ** Erro de Parse : {0} , linha : {1} , uri : {2}
#WebRowSetXmlWriter exceptions #WebRowSetXmlWriter exceptions
wrsxmlwriter.ioex = IOException : {0} wrsxmlwriter.ioex = IOException : {0}
wrsxmlwriter.sqlex = SQLException : {0} wrsxmlwriter.sqlex = SQLException : {0}
wrsxmlwriter.failedwrite = Falha ao gravar valor wrsxmlwriter.failedwrite = Falha ao gravar o valor
wsrxmlwriter.notproper = N\u00e3o \u00e9 um tipo adequado wsrxmlwriter.notproper = N\u00E3o \u00E9 um tipo adequado
#XmlReaderContentHandler exceptions #XmlReaderContentHandler exceptions
xmlrch.errmap = Erro ao definir mapa : {0} xmlrch.errmap = Erro ao definir o Mapa : {0}
xmlrch.errmetadata = Erro ao definir metadados : {0} xmlrch.errmetadata = Erro ao definir metadados : {0}
xmlrch.errinsertval = Erro ao inserir valores : {0} xmlrch.errinsertval = Erro ao inserir valores : {0}
xmlrch.errconstr = Erro ao construir linha : {0} xmlrch.errconstr = Erro ao construir a linha : {0}
xmlrch.errdel = Erro ao excluir linha : {0} xmlrch.errdel = Erro ao deletar a linha : {0}
xmlrch.errinsert = Erro ao construir linha de inser\u00e7\u00e3o : {0} xmlrch.errinsert = Erro ao construir a linha de inser\u00E7\u00E3o : {0}
xmlrch.errinsdel = Erro ao construir linha insdel : {0} xmlrch.errinsdel = Erro ao construir a linha insdel : {0}
xmlrch.errupdate = Erro ao construir linha de atualiza\u00e7\u00e3o : {0} xmlrch.errupdate = Erro ao construir a linha de atualiza\u00E7\u00E3o : {0}
xmlrch.errupdrow = Erro ao atualizar linha : {0} xmlrch.errupdrow = Erro ao atualizar a linha : {0}
xmlrch.chars = caracteres : xmlrch.chars = caracteres :
xmlrch.badvalue = Valor incorreto ; propriedade n\u00e3o anul\u00e1vel xmlrch.badvalue = Valor incorreto ; propriedade n\u00E3o anul\u00E1vel
xmlrch.badvalue1 = Valor incorreto ; metadado n\u00e3o anul\u00e1vel xmlrch.badvalue1 = Valor incorreto ; metadado n\u00E3o anul\u00E1vel
xmlrch.warning = ** Aviso : {0} , linha : {1} , uri : {2} xmlrch.warning = ** Advert\u00EAncia : {0} , linha : {1} , uri : {2}
#RIOptimisticProvider Exceptions #RIOptimisticProvider Exceptions
riop.locking = O bloqueio de classifica\u00e7\u00e3o n\u00e3o \u00e9 suportado riop.locking = O bloqueio de classifica\u00E7\u00E3o n\u00E3o \u00E9 suportado
#RIXMLProvider exceptions #RIXMLProvider exceptions
rixml.unsupp = N\u00e3o suportado com RIXMLProvider rixml.unsupp = N\u00E3o suportado com RIXMLProvider

View file

@ -25,144 +25,146 @@
# CacheRowSetImpl exceptions # CacheRowSetImpl exceptions
cachedrowsetimpl.populate = Ifyllningsmetoden fick ett ogiltigt ResultSet-objekt cachedrowsetimpl.populate = Ifyllningsmetoden fick ett ogiltigt ResultSet-objekt
cachedrowsetimpl.invalidp = En ogiltig best\u00e4ndig leverant\u00f6r genererades cachedrowsetimpl.invalidp = En ogiltig best\u00E4ndig leverant\u00F6r genererades
cachedrowsetimpl.nullhash = Det g\u00e5r inte att skapa instansen CachedRowSetImpl. Tom hashtabell skickades till konstrukt\u00f6r cachedrowsetimpl.nullhash = Kan inte instansiera CachedRowSetImpl. Null-hashtabell skickades till konstruktor
cachedrowsetimpl.invalidop = En ogiltig \u00e5tg\u00e4rd utf\u00f6rdes i infogningsraden cachedrowsetimpl.invalidop = En ogiltig \u00E5tg\u00E4rd utf\u00F6rdes p\u00E5 infogad rad
cachedrowsetimpl.accfailed = acceptChanges misslyckades cachedrowsetimpl.accfailed = acceptChanges utf\u00F6rdes inte
cachedrowsetimpl.invalidcp = Mark\u00f6rpositionen \u00e4r ogiltig cachedrowsetimpl.invalidcp = Mark\u00F6rpositionen \u00E4r ogiltig
cachedrowsetimpl.illegalop = En ogiltig \u00e5tg\u00e4rd utf\u00f6rdes p\u00e5 en icke infogad rad cachedrowsetimpl.illegalop = En otill\u00E5ten \u00E5tg\u00E4rd utf\u00F6rdes p\u00E5 en icke infogad rad
cachedrowsetimpl.clonefail = Kloningen misslyckades: {0} cachedrowsetimpl.clonefail = Kloningen utf\u00F6rdes inte: {0}
cachedrowsetimpl.invalidcol = Kolumnindexet \u00e4r ogiltigt cachedrowsetimpl.invalidcol = Kolumnindexet \u00E4r ogiltigt
cachedrowsetimpl.invalcolnm = Kolumnnamnet \u00e4r ogiltigt cachedrowsetimpl.invalcolnm = Kolumnnamnet \u00E4r ogiltigt
cachedrowsetimpl.boolfail = getBoolen misslyckades f\u00f6r v\u00e4rdet ({0}) i kolumnen {1} cachedrowsetimpl.boolfail = getBoolen utf\u00F6rdes inte f\u00F6r v\u00E4rdet ({0}) i kolumnen {1}
cachedrowsetimpl.bytefail = getByte misslyckades f\u00f6r v\u00e4rdet ({0}) i kolumnen {1} cachedrowsetimpl.bytefail = getByte utf\u00F6rdes inte f\u00F6r v\u00E4rdet ({0}) i kolumnen {1}
cachedrowsetimpl.shortfail = getShort misslyckades f\u00f6r v\u00e4rdet ({0}) i kolumnen {1} cachedrowsetimpl.shortfail = getShort utf\u00F6rdes inte f\u00F6r v\u00E4rdet ({0}) i kolumnen {1}
cachedrowsetimpl.intfail = getInt misslyckades f\u00f6r v\u00e4rdet ({0}) i kolumnen {1} cachedrowsetimpl.intfail = getInt utf\u00F6rdes inte f\u00F6r v\u00E4rdet ({0}) i kolumnen {1}
cachedrowsetimpl.longfail = getLong misslyckades f\u00f6r v\u00e4rdet ({0}) i kolumnen {1} cachedrowsetimpl.longfail = getLong utf\u00F6rdes inte f\u00F6r v\u00E4rdet ({0}) i kolumnen {1}
cachedrowsetimpl.floatfail = getFloat misslyckades f\u00f6r v\u00e4rdet ({0}) i kolumnen {1} cachedrowsetimpl.floatfail = getFloat utf\u00F6rdes inte f\u00F6r v\u00E4rdet ({0}) i kolumnen {1}
cachedrowsetimpl.doublefail = getDouble misslyckades f\u00f6r v\u00e4rdet ({0}) i kolumnen {1} cachedrowsetimpl.doublefail = getDouble utf\u00F6rdes inte f\u00F6r v\u00E4rdet ({0}) i kolumnen {1}
cachedrowsetimpl.dtypemismt = Inkompatibel datatyp cachedrowsetimpl.dtypemismt = Inkompatibel datatyp
cachedrowsetimpl.datefail = getDate misslyckades f\u00f6r v\u00e4rdet ({0}) i kolumnen {1}, ingen konvertering tillg\u00e4nglig cachedrowsetimpl.datefail = getDate utf\u00F6rdes inte f\u00F6r v\u00E4rdet ({0}) i kolumnen {1}, ingen konvertering tillg\u00E4nglig
cachedrowsetimpl.timefail = getTime misslyckades f\u00f6r v\u00e4rdet ({0}) i kolumnen {1}, ingen konvertering tillg\u00e4nglig cachedrowsetimpl.timefail = getTime utf\u00F6rdes inte f\u00F6r v\u00E4rdet ({0}) i kolumnen {1}, ingen konvertering tillg\u00E4nglig
cachedrowsetimpl.posupdate = Det finns inte st\u00f6d f\u00f6r positionerad uppdatering cachedrowsetimpl.posupdate = Det finns inte st\u00F6d f\u00F6r positionerad uppdatering
cachedrowsetimpl.unableins = Det g\u00e5r inte att skapa {0} cachedrowsetimpl.unableins = Kan inte instansiera {0}
cachedrowsetimpl.beforefirst = beforeFirst: Ogiltig mark\u00f6r\u00e5tg\u00e4rd cachedrowsetimpl.beforefirst = beforeFirst: Ogiltig mark\u00F6r\u00E5tg\u00E4rd
cachedrowsetimpl.first = First: Ogiltig mark\u00f6r\u00e5tg\u00e4rd cachedrowsetimpl.first = First: Ogiltig mark\u00F6r\u00E5tg\u00E4rd
cachedrowsetimpl.last = last: TYPE_FORWARD_ONLY cachedrowsetimpl.last = last: TYPE_FORWARD_ONLY
cachedrowsetimpl.absolute = absolute: Mark\u00f6rpositionen \u00e4r ogiltig cachedrowsetimpl.absolute = absolute: Mark\u00F6rpositionen \u00E4r ogiltig
cachedrowsetimpl.relative = relative: Mark\u00f6rpositionen \u00e4r ogiltig cachedrowsetimpl.relative = relative: Mark\u00F6rpositionen \u00E4r ogiltig
cachedrowsetimpl.asciistream = det gick inte att l\u00e4sa ASCII-str\u00f6mmen cachedrowsetimpl.asciistream = kunde inte l\u00E4sa ASCII-str\u00F6mmen
cachedrowsetimpl.binstream = det gick inte l\u00e4sa den bin\u00e4ra str\u00f6mmen cachedrowsetimpl.binstream = kunde inte l\u00E4sa den bin\u00E4ra str\u00F6mmen
cachedrowsetimpl.failedins = Fel vid infogningsrad cachedrowsetimpl.failedins = Kunde inte infoga rad
cachedrowsetimpl.updateins = updateRow anropade vid infogningsrad cachedrowsetimpl.updateins = updateRow anropades fr\u00E5n infogad rad
cachedrowsetimpl.movetoins = moveToInsertRow : CONCUR_READ_ONLY cachedrowsetimpl.movetoins = moveToInsertRow : CONCUR_READ_ONLY
cachedrowsetimpl.movetoins1 = moveToInsertRow: inga metadata cachedrowsetimpl.movetoins1 = moveToInsertRow: inga metadata
cachedrowsetimpl.movetoins2 = moveToInsertRow: ogiltigt antal kolumner cachedrowsetimpl.movetoins2 = moveToInsertRow: ogiltigt antal kolumner
cachedrowsetimpl.tablename = Tabellnamnet kan inte vara tomt cachedrowsetimpl.tablename = Tabellnamnet kan inte vara null
cachedrowsetimpl.keycols = Ogiltiga nyckelkolumner cachedrowsetimpl.keycols = Ogiltiga nyckelkolumner
cachedrowsetimpl.opnotsupp = Databasen har inte st\u00f6d f\u00f6r denna \u00e5tg\u00e4rd cachedrowsetimpl.invalidcol = Kolumnindexet \u00E4r ogiltigt
cachedrowsetimpl.matchcols = Matchningskolumnerna \u00e4r inte samma som de som st\u00e4llts in cachedrowsetimpl.opnotsupp = Databasen har inte st\u00F6d f\u00F6r denna \u00E5tg\u00E4rd
cachedrowsetimpl.setmatchcols = St\u00e4ll in matchningskolumnerna innan du h\u00e4mtar dem cachedrowsetimpl.matchcols = Matchningskolumnerna \u00E4r inte samma som de som st\u00E4llts in
cachedrowsetimpl.matchcols1 = Matchningskolumnerna m\u00e5ste vara st\u00f6rre \u00e4n 0 cachedrowsetimpl.setmatchcols = St\u00E4ll in matchningskolumnerna innan du h\u00E4mtar dem
cachedrowsetimpl.matchcols2 = Matchningskolumnerna m\u00e5ste vara tomma eller en nollstr\u00e4ng cachedrowsetimpl.matchcols1 = Matchningskolumnerna m\u00E5ste vara st\u00F6rre \u00E4n 0
cachedrowsetimpl.unsetmatch = Kolumnerna som \u00e5terst\u00e4lls \u00e4r inte samma som de som st\u00e4llts in cachedrowsetimpl.matchcols2 = Matchningskolumnerna m\u00E5ste vara tomma eller en null-str\u00E4ng
cachedrowsetimpl.unsetmatch1 = Anv\u00e4nd kolumnnamn som argument f\u00f6r unsetMatchColumn cachedrowsetimpl.unsetmatch = Kolumnerna som \u00E5terst\u00E4lls \u00E4r inte samma som de som st\u00E4llts in
cachedrowsetimpl.unsetmatch2 = Anv\u00e4nd kolumnn-id som argument f\u00f6r unsetMatchColumn cachedrowsetimpl.unsetmatch1 = Anv\u00E4nd kolumnnamn som argument f\u00F6r unsetMatchColumn
cachedrowsetimpl.numrows = Antalet rader understiger noll eller \u00e4r mindre \u00e4n h\u00e4mtningsstorleken cachedrowsetimpl.unsetmatch2 = Anv\u00E4nd kolumn-id som argument f\u00F6r unsetMatchColumn
cachedrowsetimpl.startpos = Startpositionen f\u00e5r inte vara negativ cachedrowsetimpl.numrows = Antalet rader understiger noll eller \u00E4r mindre \u00E4n h\u00E4mtningsstorleken
cachedrowsetimpl.startpos = Startpositionen f\u00E5r inte vara negativ
cachedrowsetimpl.nextpage = Fyll i data innan anrop cachedrowsetimpl.nextpage = Fyll i data innan anrop
cachedrowsetimpl.pagesize = Sidstorleken f\u00e5r inte understiga noll cachedrowsetimpl.pagesize = Sidstorleken f\u00E5r inte understiga noll
cachedrowsetimpl.pagesize1 = Sidstorleken f\u00e5r inte \u00f6verstiga maxRows cachedrowsetimpl.pagesize1 = Sidstorleken f\u00E5r inte \u00F6verstiga maxRows
cachedrowsetimpl.fwdonly = ResultSet kan endast g\u00e5 fram\u00e5t cachedrowsetimpl.fwdonly = ResultSet kan endast g\u00E5 fram\u00E5t
cachedrowsetimpl.type = Typ: {0} cachedrowsetimpl.type = Typ: {0}
cachedrowsetimpl.opnotysupp = Det finns \u00e4nnu inget st\u00f6d f\u00f6r denna \u00e5tg\u00e4rd cachedrowsetimpl.opnotysupp = Det finns \u00E4nnu inget st\u00F6d f\u00F6r denna \u00E5tg\u00E4rd
cachedrowsetimpl.featnotsupp = Det finns inget st\u00f6d f\u00f6r denna funktion cachedrowsetimpl.featnotsupp = Det finns inget st\u00F6d f\u00F6r denna funktion
# WebRowSetImpl exceptions # WebRowSetImpl exceptions
webrowsetimpl.nullhash = Det g\u00e5r inte att skapa instansen WebRowSetImpl. Tom hashtabell skickades till konstrukt\u00f6r. webrowsetimpl.nullhash = Kan inte instansiera WebRowSetImpl. Null-hashtabell skickades till konstruktor.
webrowsetimpl.invalidwr = Ogiltig f\u00f6rfattare webrowsetimpl.invalidwr = Ogiltig f\u00F6rfattare
webrowsetimpl.invalidrd = Ogiltig l\u00e4sare webrowsetimpl.invalidrd = Ogiltig l\u00E4sare
#FilteredRowSetImpl exceptions #FilteredRowSetImpl exceptions
filteredrowsetimpl.relative = relative: Ogiltig mark\u00f6r\u00e5tg\u00e4rd filteredrowsetimpl.relative = relative: Ogiltig mark\u00F6r\u00E5tg\u00E4rd
filteredrowsetimpl.absolute = absolute: Ogiltig mark\u00f6r\u00e5tg\u00e4rd filteredrowsetimpl.absolute = absolute: Ogiltig mark\u00F6r\u00E5tg\u00E4rd
filteredrowsetimpl.notallowed = Detta v\u00e4rde kommer att filtreras bort filteredrowsetimpl.notallowed = Detta v\u00E4rde kommer att filtreras bort
#JoinRowSetImpl exceptions #JoinRowSetImpl exceptions
joinrowsetimpl.notinstance = Detta \u00e4r inte en instans av rowset joinrowsetimpl.notinstance = Detta \u00E4r inte en instans av radupps\u00E4ttning
joinrowsetimpl.matchnotset = Matchningskolumnen \u00e4r inte inst\u00e4lld p\u00e5 koppling joinrowsetimpl.matchnotset = Matchningskolumnen \u00E4r inte inst\u00E4lld p\u00E5 koppling
joinrowsetimpl.numnotequal = Antalet element i RowSet \u00e4r inte lika med matchningskolumnens joinrowsetimpl.numnotequal = Antal objekt i radupps\u00E4ttning st\u00E4mmer inte med matchningskolumnens
joinrowsetimpl.notdefined = Detta \u00e4r inte n\u00e5gon definierad kopplingstyp joinrowsetimpl.notdefined = Detta \u00E4r inte n\u00E5gon definierad kopplingstyp
joinrowsetimpl.notsupported = Det finns inget st\u00f6d f\u00f6r denna kopplingstyp joinrowsetimpl.notsupported = Det finns inget st\u00F6d f\u00F6r denna kopplingstyp
joinrowsetimpl.initerror = Initieringsfel f\u00f6r JoinRowSet joinrowsetimpl.initerror = Initieringsfel f\u00F6r JoinRowSet
joinrowsetimpl.genericerr = Allm\u00e4nt initieringsfel f\u00f6r JoinRowSet joinrowsetimpl.genericerr = Allm\u00E4nt initieringsfel f\u00F6r JoinRowSet
joinrowsetimpl.emptyrowset = Tomma radupps\u00e4ttningar kan inte l\u00e4ggas till i denna JoinRowSet joinrowsetimpl.emptyrowset = Tomma radupps\u00E4ttningar kan inte l\u00E4ggas till i denna JoinRowSet
#JdbcRowSetImpl exceptions #JdbcRowSetImpl exceptions
jdbcrowsetimpl.invalstate = Ogiltig status jdbcrowsetimpl.invalstate = Ogiltig status
jdbcrowsetimpl.connect = JdbcRowSet (anslut) JNDI kan inte anslutas jdbcrowsetimpl.connect = JdbcRowSet (anslut) JNDI kan inte anslutas
jdbcrowsetimpl.paramtype = Det g\u00e5r inte att fastst\u00e4lla parametertypen jdbcrowsetimpl.paramtype = Kan inte h\u00E4rleda parametertypen
jdbcrowsetimpl.matchcols = Matchningskolumnerna \u00e4r inte samma som de som st\u00e4llts in jdbcrowsetimpl.matchcols = Matchningskolumnerna \u00E4r inte samma som de som st\u00E4llts in
jdbcrowsetimpl.setmatchcols = St\u00e4ll in matchningskolumnerna innan du h\u00e4mtar dem jdbcrowsetimpl.setmatchcols = St\u00E4ll in matchningskolumnerna innan du h\u00E4mtar dem
jdbcrowsetimpl.matchcols1 = Matchningskolumnerna m\u00e5ste vara st\u00f6rre \u00e4n 0 jdbcrowsetimpl.matchcols1 = Matchningskolumnerna m\u00E5ste vara st\u00F6rre \u00E4n 0
jdbcrowsetimpl.matchcols2 = Matchningskolumnerna kan inte vara en nollstr\u00e4ng eller tomma jdbcrowsetimpl.matchcols2 = Matchningskolumnerna kan inte vara en null-str\u00E4ng eller tomma
jdbcrowsetimpl.unsetmatch = Kolumnerna som \u00e5terst\u00e4lls \u00e4r inte samma som de som st\u00e4llts in jdbcrowsetimpl.unsetmatch = Kolumnerna som \u00E5terst\u00E4lls \u00E4r inte samma som de som st\u00E4llts in
jdbcrowsetimpl.usecolname = Anv\u00e4nd kolumnnamn som argument f\u00f6r unsetMatchColumn jdbcrowsetimpl.usecolname = Anv\u00E4nd kolumnnamn som argument f\u00F6r unsetMatchColumn
jdbcrowsetimpl.usecolid = Anv\u00e4nd kolumnn-id som argument f\u00f6r unsetMatchColumn jdbcrowsetimpl.usecolid = Anv\u00E4nd kolumn-id som argument f\u00F6r unsetMatchColumn
jdbcrowsetimpl.resnotupd = ResultSet \u00e4r inte uppdateringsbart jdbcrowsetimpl.resnotupd = ResultSet \u00E4r inte uppdateringsbart
jdbcrowsetimpl.opnotysupp = Det finns \u00e4nnu inget st\u00f6d f\u00f6r denna \u00e5tg\u00e4rd jdbcrowsetimpl.opnotysupp = Det finns \u00E4nnu inget st\u00F6d f\u00F6r denna \u00E5tg\u00E4rd
jdbcrowsetimpl.featnotsupp = Det finns inget st\u00f6d f\u00f6r denna funktion jdbcrowsetimpl.featnotsupp = Det finns inget st\u00F6d f\u00F6r denna funktion
#CachedRowSetReader exceptions #CachedRowSetReader exceptions
crsreader.connect = (JNDI) kan inte anslutas crsreader.connect = (JNDI) kan inte anslutas
crsreader.paramtype = Det g\u00e5r inte att fastst\u00e4lla parametertypen crsreader.paramtype = Kan inte h\u00E4rleda parametertypen
crsreader.connecterr = Internt fel i RowSetReader: ingen anslutning eller inget kommando crsreader.connecterr = Internt fel i RowSetReader: ingen anslutning eller inget kommando
crsreader.datedetected = Ett datum har identifierats crsreader.datedetected = Ett datum har identifierats
crsreader.caldetected = En kalender har identifierats crsreader.caldetected = En kalender har identifierats
#CachedRowSetWriter exceptions #CachedRowSetWriter exceptions
crswriter.connect = Det g\u00e5r inte att uppr\u00e4tta n\u00e5gon anslutning crswriter.connect = Kan inte uppr\u00E4tta n\u00E5gon anslutning
crswriter.tname = writeData kan inte fastst\u00e4lla tabellnamnet crswriter.tname = writeData kan inte fastst\u00E4lla tabellnamnet
crswriter.params1 = Parameterv\u00e4rde1: {0} crswriter.params1 = Parameterv\u00E4rde1: {0}
crswriter.params2 = Parameterv\u00e4rde2: {0} crswriter.params2 = Parameterv\u00E4rde2: {0}
crswriter.conflictsno = konflikter under synkronisering crswriter.conflictsno = orsakar konflikt vid synkronisering
#InsertRow exceptions #InsertRow exceptions
insertrow.novalue = Inget v\u00e4rde har infogats insertrow.novalue = Inget v\u00E4rde har infogats
#SyncResolverImpl exceptions #SyncResolverImpl exceptions
syncrsimpl.indexval = Indexv\u00e4rdet ligger utanf\u00f6r intervallet syncrsimpl.indexval = Indexv\u00E4rdet ligger utanf\u00F6r intervallet
syncrsimpl.noconflict = Denna kolumn st\u00e5r inte i konflikt syncrsimpl.noconflict = Kolumnen orsakar ingen konflikt
syncrsimpl.syncnotpos = Synkronisering \u00e4r inte m\u00f6jlig syncrsimpl.syncnotpos = Synkronisering \u00E4r inte m\u00F6jlig
syncrsimpl.valtores = V\u00e4rdet som ska analyseras kan antingen finnas i databasen eller i cachedrowset syncrsimpl.valtores = V\u00E4rdet som ska fastst\u00E4llas kan antingen finnas i databasen eller i cachedrowset
#WebRowSetXmlReader exception #WebRowSetXmlReader exception
wrsxmlreader.invalidcp = Slutet p\u00e5 RowSet har n\u00e5tts. Mark\u00f6rpositionen \u00e4r ogiltig. wrsxmlreader.invalidcp = Slutet p\u00E5 RowSet har n\u00E5tts. Mark\u00F6rpositionen \u00E4r ogiltig.
wrsxmlreader.readxml = readXML: {0} wrsxmlreader.readxml = readXML: {0}
wrsxmlreader.parseerr = ** Tolkningsfel: {0}, rad: {1}, URI: {2} wrsxmlreader.parseerr = ** Tolkningsfel: {0}, rad: {1}, URI: {2}
#WebRowSetXmlWriter exceptions #WebRowSetXmlWriter exceptions
wrsxmlwriter.ioex = IOException: {0} wrsxmlwriter.ioex = IOException: {0}
wrsxmlwriter.sqlex = SQLException: {0} wrsxmlwriter.sqlex = SQLException: {0}
wrsxmlwriter.failedwrite = Det gick inte att skriva v\u00e4rdet wrsxmlwriter.failedwrite = Kunde inte skriva v\u00E4rdet
wsrxmlwriter.notproper = Ingen riktig typ wsrxmlwriter.notproper = Ingen riktig typ
#XmlReaderContentHandler exceptions #XmlReaderContentHandler exceptions
xmlrch.errmap = Ett fel uppstod vid inst\u00e4llningen av f\u00f6ljande bild: {0} xmlrch.errmap = Fel uppstod vid inst\u00E4llning av mappning: {0}
xmlrch.errmetadata = Ett fel uppstod vid inst\u00e4llningen av f\u00f6ljande metadata: {0} xmlrch.errmetadata = Fel uppstod vid inst\u00E4llning av metadata: {0}
xmlrch.errinsertval = Ett fel uppstod n\u00e4r f\u00f6ljande v\u00e4rden skulle infogas: {0} xmlrch.errinsertval = Fel uppstod vid infogning av v\u00E4rden: {0}
xmlrch.errconstr = Ett fel uppstod n\u00e4r f\u00f6ljande rad skulle skapas: {0} xmlrch.errconstr = Fel uppstod vid konstruktion av rad: {0}
xmlrch.errdel = Ett fel uppstod n\u00e4r f\u00f6ljande rad skulle raderas: {0} xmlrch.errdel = Fel uppstod vid borttagning av rad: {0}
xmlrch.errinsdel = Ett fel uppstod n\u00e4r raden insdel skulle skapas: {0} xmlrch.errinsert = Fel uppstod vid konstruktion av infogad rad: {0}
xmlrch.errupdate = Ett fel uppstod n\u00e4r f\u00f6ljande uppdateringsrad skulle skapas: {0} xmlrch.errinsdel = Fel uppstod vid konstruktion av insdel-rad: {0}
xmlrch.errupdrow = Ett fel uppstod n\u00e4r f\u00f6ljande rad skulle uppdateras: {0} xmlrch.errupdate = Fel uppstod vid konstruktion av uppdateringsrad: {0}
xmlrch.errupdrow = Fel uppstod vid uppdatering av rad: {0}
xmlrch.chars = tecken: xmlrch.chars = tecken:
xmlrch.badvalue = Felaktigt v\u00e4rde; egenskapen kan inte ha ett tomt v\u00e4rde xmlrch.badvalue = Felaktigt v\u00E4rde; egenskapen kan inte ha ett tomt v\u00E4rde
xmlrch.badvalue1 = Felaktigt v\u00e4rde; metadatan kan inte ha ett tomt v\u00e4rde xmlrch.badvalue1 = Felaktigt v\u00E4rde; metadatan kan inte ha ett tomt v\u00E4rde
xmlrch.warning = ** Varning! {0}, rad: {1}, URI: {2} xmlrch.warning = ** Varning! {0}, rad: {1}, URI: {2}
#RIOptimisticProvider Exceptions #RIOptimisticProvider Exceptions
riop.locking = Det finns inte st\u00f6d f\u00f6r denna l\u00e5sningsklassifikation riop.locking = Det finns inte st\u00F6d f\u00F6r denna l\u00E5sningsklassificering
#RIXMLProvider exceptions #RIXMLProvider exceptions
rixml.unsupp = RIXMLProvider har inte st\u00f6d f\u00f6r detta rixml.unsupp = RIXMLProvider har inte st\u00F6d f\u00F6r detta

View file

@ -24,145 +24,147 @@
# #
# CacheRowSetImpl exceptions # CacheRowSetImpl exceptions
cachedrowsetimpl.populate = \u63d0\u4f9b\u7ed9\u586b\u5145\u65b9\u6cd5\u7684 ResultSet \u5bf9\u8c61\u65e0\u6548 cachedrowsetimpl.populate = \u63D0\u4F9B\u7ED9\u586B\u5145\u65B9\u6CD5\u7684 ResultSet \u5BF9\u8C61\u65E0\u6548
cachedrowsetimpl.invalidp = \u751f\u6210\u7684\u6301\u4e45\u6027\u63d0\u4f9b\u8005\u65e0\u6548 cachedrowsetimpl.invalidp = \u751F\u6210\u7684\u6301\u4E45\u6027\u63D0\u4F9B\u65B9\u65E0\u6548
cachedrowsetimpl.nullhash = \u65e0\u6cd5\u5b9e\u4f8b\u5316 CachedRowSetImpl \u5b9e\u4f8b\u3002\u63d0\u4f9b\u7ed9\u6784\u9020\u51fd\u6570\u7684 Hashtable \u4e3a Null cachedrowsetimpl.nullhash = \u65E0\u6CD5\u5B9E\u4F8B\u5316 CachedRowSetImpl \u5B9E\u4F8B\u3002\u63D0\u4F9B\u7ED9\u6784\u9020\u5668\u7684 Hashtable \u4E3A\u7A7A\u503C
cachedrowsetimpl.invalidop = \u5bf9\u63d2\u5165\u884c\u6267\u884c\u7684\u64cd\u4f5c\u65e0\u6548 cachedrowsetimpl.invalidop = \u5BF9\u63D2\u5165\u884C\u6267\u884C\u7684\u64CD\u4F5C\u65E0\u6548
cachedrowsetimpl.accfailed = acceptChanges \u5931\u8d25 cachedrowsetimpl.accfailed = acceptChanges \u5931\u8D25
cachedrowsetimpl.invalidcp = \u5149\u6807\u4f4d\u7f6e\u65e0\u6548 cachedrowsetimpl.invalidcp = \u5149\u6807\u4F4D\u7F6E\u65E0\u6548
cachedrowsetimpl.illegalop = \u5bf9\u975e\u63d2\u5165\u884c\u6267\u884c\u7684\u64cd\u4f5c\u975e\u6cd5 cachedrowsetimpl.illegalop = \u5BF9\u975E\u63D2\u5165\u884C\u6267\u884C\u7684\u64CD\u4F5C\u975E\u6CD5
cachedrowsetimpl.clonefail = \u514b\u9686\u5931\u8d25: {0} cachedrowsetimpl.clonefail = \u514B\u9686\u5931\u8D25: {0}
cachedrowsetimpl.invalidcol = \u5217\u7d22\u5f15\u65e0\u6548 cachedrowsetimpl.invalidcol = \u5217\u7D22\u5F15\u65E0\u6548
cachedrowsetimpl.invalcolnm = \u5217\u540d\u65e0\u6548 cachedrowsetimpl.invalcolnm = \u5217\u540D\u65E0\u6548
cachedrowsetimpl.boolfail = \u5bf9\u5217 {1} \u4e2d\u7684\u503c ({0}) \u6267\u884c getBoolen \u5931\u8d25 cachedrowsetimpl.boolfail = \u5BF9\u5217 {1} \u4E2D\u7684\u503C ({0}) \u6267\u884C getBoolen \u5931\u8D25
cachedrowsetimpl.bytefail = \u5bf9\u5217 {1} \u4e2d\u7684\u503c ({0}) \u6267\u884c getByte \u5931\u8d25 cachedrowsetimpl.bytefail = \u5BF9\u5217 {1} \u4E2D\u7684\u503C ({0}) \u6267\u884C getByte \u5931\u8D25
cachedrowsetimpl.shortfail = \u5bf9\u5217 {1} \u4e2d\u7684\u503c ({0}) \u6267\u884c getShort \u5931\u8d25 cachedrowsetimpl.shortfail = \u5BF9\u5217 {1} \u4E2D\u7684\u503C ({0}) \u6267\u884C getShort \u5931\u8D25
cachedrowsetimpl.intfail = \u5bf9\u5217 {1} \u4e2d\u7684\u503c ({0}) \u6267\u884c getInt \u5931\u8d25 cachedrowsetimpl.intfail = \u5BF9\u5217 {1} \u4E2D\u7684\u503C ({0}) \u6267\u884C getInt \u5931\u8D25
cachedrowsetimpl.longfail = \u5bf9\u5217 {1} \u4e2d\u7684\u503c ({0}) \u6267\u884c getLong \u5931\u8d25 cachedrowsetimpl.longfail = \u5BF9\u5217 {1} \u4E2D\u7684\u503C ({0}) \u6267\u884C getLong \u5931\u8D25
cachedrowsetimpl.floatfail = \u5bf9\u5217 {1} \u4e2d\u7684\u503c ({0}) \u6267\u884c getFloat \u5931\u8d25 cachedrowsetimpl.floatfail = \u5BF9\u5217 {1} \u4E2D\u7684\u503C ({0}) \u6267\u884C getFloat \u5931\u8D25
cachedrowsetimpl.doublefail = \u5bf9\u5217 {1} \u4e2d\u7684\u503c ({0}) \u6267\u884c getDouble \u5931\u8d25 cachedrowsetimpl.doublefail = \u5BF9\u5217 {1} \u4E2D\u7684\u503C ({0}) \u6267\u884C getDouble \u5931\u8D25
cachedrowsetimpl.dtypemismt = \u6570\u636e\u7c7b\u578b\u4e0d\u5339\u914d cachedrowsetimpl.dtypemismt = \u6570\u636E\u7C7B\u578B\u4E0D\u5339\u914D
cachedrowsetimpl.datefail = \u5bf9\u5217 {1} \u4e2d\u7684\u503c ({0}) \u6267\u884c getDate \u5931\u8d25\uff0c\u65e0\u53ef\u7528\u8f6c\u6362 cachedrowsetimpl.datefail = \u5BF9\u5217 {1} \u4E2D\u7684\u503C ({0}) \u6267\u884C getDate \u5931\u8D25, \u65E0\u53EF\u7528\u8F6C\u6362
cachedrowsetimpl.timefail = \u5bf9\u5217 {1} \u4e2d\u7684\u503c ({0}) \u6267\u884c getTime \u5931\u8d25\uff0c\u65e0\u53ef\u7528\u8f6c\u6362 cachedrowsetimpl.timefail = \u5BF9\u5217 {1} \u4E2D\u7684\u503C ({0}) \u6267\u884C getTime \u5931\u8D25, \u65E0\u53EF\u7528\u8F6C\u6362
cachedrowsetimpl.posupdate = \u4e0d\u652f\u6301\u5b9a\u4f4d\u66f4\u65b0 cachedrowsetimpl.posupdate = \u4E0D\u652F\u6301\u5B9A\u4F4D\u66F4\u65B0
cachedrowsetimpl.unableins = \u65e0\u6cd5\u5b9e\u4f8b\u5316: {0} cachedrowsetimpl.unableins = \u65E0\u6CD5\u5B9E\u4F8B\u5316: {0}
cachedrowsetimpl.beforefirst = beforeFirst: \u5149\u6807\u64cd\u4f5c\u65e0\u6548 cachedrowsetimpl.beforefirst = beforeFirst: \u5149\u6807\u64CD\u4F5C\u65E0\u6548
cachedrowsetimpl.first = First: \u5149\u6807\u64cd\u4f5c\u65e0\u6548 cachedrowsetimpl.first = First: \u5149\u6807\u64CD\u4F5C\u65E0\u6548
cachedrowsetimpl.last = last: TYPE_FORWARD_ONLY cachedrowsetimpl.last = last: TYPE_FORWARD_ONLY
cachedrowsetimpl.absolute = absolute: \u5149\u6807\u4f4d\u7f6e\u65e0\u6548 cachedrowsetimpl.absolute = absolute: \u5149\u6807\u4F4D\u7F6E\u65E0\u6548
cachedrowsetimpl.relative = relative: \u5149\u6807\u4f4d\u7f6e\u65e0\u6548 cachedrowsetimpl.relative = relative: \u5149\u6807\u4F4D\u7F6E\u65E0\u6548
cachedrowsetimpl.asciistream = \u8bfb\u53d6 ASCII \u6d41\u5931\u8d25 cachedrowsetimpl.asciistream = \u672A\u80FD\u8BFB\u53D6 ASCII \u6D41
cachedrowsetimpl.binstream = \u8bfb\u53d6\u4e8c\u8fdb\u5236\u6d41\u5931\u8d25 cachedrowsetimpl.binstream = \u672A\u80FD\u8BFB\u53D6\u4E8C\u8FDB\u5236\u6D41
cachedrowsetimpl.failedins = \u5bf9\u63d2\u5165\u884c\u6267\u884c\u64cd\u4f5c\u5931\u8d25 cachedrowsetimpl.failedins = \u5BF9\u63D2\u5165\u884C\u6267\u884C\u64CD\u4F5C\u5931\u8D25
cachedrowsetimpl.updateins = \u4e3a\u63d2\u5165\u884c\u8c03\u7528 updateRow cachedrowsetimpl.updateins = \u4E3A\u63D2\u5165\u884C\u8C03\u7528 updateRow
cachedrowsetimpl.movetoins = moveToInsertRow: CONCUR_READ_ONLY cachedrowsetimpl.movetoins = moveToInsertRow: CONCUR_READ_ONLY
cachedrowsetimpl.movetoins1 = moveToInsertRow: \u65e0\u5143\u6570\u636e cachedrowsetimpl.movetoins1 = moveToInsertRow: \u65E0\u5143\u6570\u636E
cachedrowsetimpl.movetoins2 = moveToInsertRow: \u5217\u6570\u65e0\u6548 cachedrowsetimpl.movetoins2 = moveToInsertRow: \u5217\u6570\u65E0\u6548
cachedrowsetimpl.tablename = \u8868\u540d\u4e0d\u80fd\u4e3a Null cachedrowsetimpl.tablename = \u8868\u540D\u4E0D\u80FD\u4E3A\u7A7A\u503C
cachedrowsetimpl.keycols = \u952e\u5217\u65e0\u6548 cachedrowsetimpl.keycols = \u5173\u952E\u5B57\u5217\u65E0\u6548
cachedrowsetimpl.opnotsupp = \u64cd\u4f5c\u4e0d\u53d7\u6570\u636e\u5e93\u652f\u6301 cachedrowsetimpl.invalidcol = \u5217\u7D22\u5F15\u65E0\u6548
cachedrowsetimpl.matchcols = \u5339\u914d\u5217\u4e0e\u8bbe\u7f6e\u7684\u90a3\u4e9b\u5339\u914d\u5217\u4e0d\u540c cachedrowsetimpl.opnotsupp = \u64CD\u4F5C\u4E0D\u53D7\u6570\u636E\u5E93\u652F\u6301
cachedrowsetimpl.setmatchcols = \u5728\u83b7\u53d6\u5339\u914d\u5217\u4e4b\u524d\u5148\u8bbe\u7f6e\u5339\u914d\u5217 cachedrowsetimpl.matchcols = \u5339\u914D\u5217\u4E0E\u8BBE\u7F6E\u7684\u90A3\u4E9B\u5339\u914D\u5217\u4E0D\u540C
cachedrowsetimpl.matchcols1 = \u5339\u914d\u5217\u6570\u5e94\u5f53\u5927\u4e8e 0 cachedrowsetimpl.setmatchcols = \u5728\u83B7\u53D6\u5339\u914D\u5217\u4E4B\u524D\u5148\u8BBE\u7F6E\u5339\u914D\u5217
cachedrowsetimpl.matchcols2 = \u5339\u914d\u5217\u6570\u5e94\u5f53\u4e3a\u7a7a\u6216 Null \u5b57\u7b26\u4e32 cachedrowsetimpl.matchcols1 = \u5339\u914D\u5217\u6570\u5E94\u5F53\u5927\u4E8E 0
cachedrowsetimpl.unsetmatch = \u8981\u590d\u539f\u7684\u5217\u4e0e\u8bbe\u7f6e\u7684\u4e0d\u540c cachedrowsetimpl.matchcols2 = \u5339\u914D\u5217\u6570\u5E94\u5F53\u4E3A\u7A7A\u6216\u7A7A\u503C\u5B57\u7B26\u4E32
cachedrowsetimpl.unsetmatch1 = \u4f7f\u7528\u5217\u540d\u4f5c\u4e3a unsetMatchColumn \u7684\u53c2\u6570 cachedrowsetimpl.unsetmatch = \u8981\u53D6\u6D88\u8BBE\u7F6E\u7684\u5217\u4E0E\u8BBE\u7F6E\u7684\u5217\u4E0D\u540C
cachedrowsetimpl.unsetmatch2 = \u4f7f\u7528\u5217 ID \u4f5c\u4e3a unsetMatchColumn \u7684\u53c2\u6570 cachedrowsetimpl.unsetmatch1 = \u4F7F\u7528\u5217\u540D\u4F5C\u4E3A unsetMatchColumn \u7684\u53C2\u6570
cachedrowsetimpl.numrows = \u884c\u6570\u5c0f\u4e8e\u96f6\u6216\u5c0f\u4e8e\u8981\u63d0\u53d6\u7684\u884c\u6570 cachedrowsetimpl.unsetmatch2 = \u4F7F\u7528\u5217 ID \u4F5C\u4E3A unsetMatchColumn \u7684\u53C2\u6570
cachedrowsetimpl.startpos = \u8d77\u59cb\u4f4d\u7f6e\u4e0d\u80fd\u4e3a\u8d1f\u6570 cachedrowsetimpl.numrows = \u884C\u6570\u5C0F\u4E8E\u96F6\u6216\u5C0F\u4E8E\u8981\u63D0\u53D6\u7684\u884C\u6570
cachedrowsetimpl.nextpage = \u5728\u8c03\u7528\u4e4b\u524d\u5148\u586b\u5145\u6570\u636e cachedrowsetimpl.startpos = \u8D77\u59CB\u4F4D\u7F6E\u4E0D\u80FD\u4E3A\u8D1F\u6570
cachedrowsetimpl.pagesize = \u9875\u9762\u5927\u5c0f\u4e0d\u80fd\u5c0f\u4e8e\u96f6 cachedrowsetimpl.nextpage = \u5728\u8C03\u7528\u4E4B\u524D\u5148\u586B\u5145\u6570\u636E
cachedrowsetimpl.pagesize1 = \u9875\u9762\u5927\u5c0f\u4e0d\u80fd\u5927\u4e8e maxRows cachedrowsetimpl.pagesize = \u9875\u9762\u5927\u5C0F\u4E0D\u80FD\u5C0F\u4E8E\u96F6
cachedrowsetimpl.fwdonly = ResultSet \u7684\u7c7b\u578b\u4e3a\u4ec5\u5411\u524d\u7c7b\u578b cachedrowsetimpl.pagesize1 = \u9875\u9762\u5927\u5C0F\u4E0D\u80FD\u5927\u4E8E maxRows
cachedrowsetimpl.type = \u7c7b\u578b\u4e3a: {0} cachedrowsetimpl.fwdonly = ResultSet \u7684\u7C7B\u578B\u4E3A\u4EC5\u5411\u524D\u7C7B\u578B
cachedrowsetimpl.opnotysupp = \u5c1a\u4e0d\u652f\u6301\u7684\u64cd\u4f5c cachedrowsetimpl.type = \u7C7B\u578B\u4E3A: {0}
cachedrowsetimpl.featnotsupp = \u5c1a\u4e0d\u652f\u6301\u7684\u529f\u80fd cachedrowsetimpl.opnotysupp = \u5C1A\u4E0D\u652F\u6301\u8BE5\u64CD\u4F5C
cachedrowsetimpl.featnotsupp = \u5C1A\u4E0D\u652F\u6301\u8BE5\u529F\u80FD
# WebRowSetImpl exceptions # WebRowSetImpl exceptions
webrowsetimpl.nullhash = \u65e0\u6cd5\u5b9e\u4f8b\u5316 WebRowSetImpl \u5b9e\u4f8b\u3002\u63d0\u4f9b\u7ed9\u6784\u9020\u51fd\u6570\u7684 Hashtable \u4e3a Null webrowsetimpl.nullhash = \u65E0\u6CD5\u5B9E\u4F8B\u5316 WebRowSetImpl \u5B9E\u4F8B\u3002\u63D0\u4F9B\u7ED9\u6784\u9020\u5668\u7684 Hashtable \u4E3A\u7A7A\u503C
webrowsetimpl.invalidwr = \u7f16\u5199\u5668\u65e0\u6548 webrowsetimpl.invalidwr = \u5199\u8FDB\u7A0B\u65E0\u6548
webrowsetimpl.invalidrd = \u8bfb\u53d6\u5668\u65e0\u6548 webrowsetimpl.invalidrd = \u8BFB\u8FDB\u7A0B\u65E0\u6548
#FilteredRowSetImpl exceptions #FilteredRowSetImpl exceptions
filteredrowsetimpl.relative = relative: \u5149\u6807\u64cd\u4f5c\u65e0\u6548 filteredrowsetimpl.relative = relative: \u5149\u6807\u64CD\u4F5C\u65E0\u6548
filteredrowsetimpl.absolute = absolute: \u5149\u6807\u64cd\u4f5c\u65e0\u6548 filteredrowsetimpl.absolute = absolute: \u5149\u6807\u64CD\u4F5C\u65E0\u6548
filteredrowsetimpl.notallowed = \u4e0d\u5141\u8bb8\u6b64\u503c\u901a\u8fc7\u8fc7\u6ee4\u5668 filteredrowsetimpl.notallowed = \u4E0D\u5141\u8BB8\u6B64\u503C\u901A\u8FC7\u7B5B\u9009\u5668
#JoinRowSetImpl exceptions #JoinRowSetImpl exceptions
joinrowsetimpl.notinstance = \u4e0d\u662f RowSet \u7684\u5b9e\u4f8b joinrowsetimpl.notinstance = \u4E0D\u662F RowSet \u7684\u5B9E\u4F8B
joinrowsetimpl.matchnotset = \u672a\u8bbe\u7f6e\u5339\u914d\u5217\u4ee5\u8fdb\u884c\u8fde\u63a5 joinrowsetimpl.matchnotset = \u672A\u8BBE\u7F6E\u5339\u914D\u5217\u4EE5\u8FDB\u884C\u8054\u63A5
joinrowsetimpl.numnotequal = RowSet \u4e2d\u7684\u5143\u7d20\u4e2a\u6570\u4e0d\u7b49\u4e8e\u5339\u914d\u5217\u6570 joinrowsetimpl.numnotequal = RowSet \u4E2D\u7684\u5143\u7D20\u4E2A\u6570\u4E0D\u7B49\u4E8E\u5339\u914D\u5217\u6570
joinrowsetimpl.notdefined = \u8fd9\u4e0d\u662f\u5b9a\u4e49\u7684\u8fde\u63a5\u7c7b\u578b joinrowsetimpl.notdefined = \u8FD9\u4E0D\u662F\u5B9A\u4E49\u7684\u8054\u63A5\u7C7B\u578B
joinrowsetimpl.notsupported = \u4e0d\u652f\u6301\u6b64\u8fde\u63a5\u7c7b\u578b joinrowsetimpl.notsupported = \u4E0D\u652F\u6301\u6B64\u8054\u63A5\u7C7B\u578B
joinrowsetimpl.initerror = JoinRowSet \u521d\u59cb\u5316\u9519\u8bef joinrowsetimpl.initerror = JoinRowSet \u521D\u59CB\u5316\u9519\u8BEF
joinrowsetimpl.genericerr = \u4e00\u822c JoinRowSet \u521d\u59cb\u5316\u9519\u8bef joinrowsetimpl.genericerr = \u4E00\u822C JoinRowSet \u521D\u59CB\u5316\u9519\u8BEF
joinrowsetimpl.emptyrowset = \u65e0\u6cd5\u5c06\u7a7a RowSet \u6dfb\u52a0\u5230\u6b64 JoinRowSet joinrowsetimpl.emptyrowset = \u65E0\u6CD5\u5C06\u7A7A RowSet \u6DFB\u52A0\u5230\u6B64 JoinRowSet
#JdbcRowSetImpl exceptions #JdbcRowSetImpl exceptions
jdbcrowsetimpl.invalstate = \u72b6\u6001\u65e0\u6548 jdbcrowsetimpl.invalstate = \u72B6\u6001\u65E0\u6548
jdbcrowsetimpl.connect = JdbcRowSet\uff08\u8fde\u63a5\uff09JNDI \u65e0\u6cd5\u8fde\u63a5 jdbcrowsetimpl.connect = JdbcRowSet (\u8FDE\u63A5) JNDI \u65E0\u6CD5\u8FDE\u63A5
jdbcrowsetimpl.paramtype = \u65e0\u6cd5\u63a8\u65ad\u53c2\u6570\u7c7b\u578b jdbcrowsetimpl.paramtype = \u65E0\u6CD5\u63A8\u65AD\u53C2\u6570\u7C7B\u578B
jdbcrowsetimpl.matchcols = \u5339\u914d\u5217\u4e0e\u8bbe\u7f6e\u7684\u90a3\u4e9b\u5339\u914d\u5217\u4e0d\u540c jdbcrowsetimpl.matchcols = \u5339\u914D\u5217\u4E0E\u8BBE\u7F6E\u7684\u90A3\u4E9B\u5339\u914D\u5217\u4E0D\u540C
jdbcrowsetimpl.setmatchcols = \u5728\u83b7\u53d6\u5339\u914d\u5217\u4e4b\u524d\u5148\u8bbe\u7f6e\u5339\u914d\u5217 jdbcrowsetimpl.setmatchcols = \u5728\u83B7\u53D6\u5339\u914D\u5217\u4E4B\u524D\u5148\u8BBE\u7F6E\u5339\u914D\u5217
jdbcrowsetimpl.matchcols1 = \u5339\u914d\u5217\u6570\u5e94\u5f53\u5927\u4e8e 0 jdbcrowsetimpl.matchcols1 = \u5339\u914D\u5217\u6570\u5E94\u5F53\u5927\u4E8E 0
jdbcrowsetimpl.matchcols2 = \u5339\u914d\u5217\u4e0d\u80fd\u4e3a Null \u6216\u7a7a\u5b57\u7b26\u4e32 jdbcrowsetimpl.matchcols2 = \u5339\u914D\u5217\u4E0D\u80FD\u4E3A\u7A7A\u503C\u6216\u7A7A\u5B57\u7B26\u4E32
jdbcrowsetimpl.unsetmatch = \u8981\u590d\u539f\u7684\u5217\u4e0e\u8bbe\u7f6e\u7684\u4e0d\u540c jdbcrowsetimpl.unsetmatch = \u8981\u53D6\u6D88\u8BBE\u7F6E\u7684\u5217\u4E0E\u8BBE\u7F6E\u7684\u5217\u4E0D\u540C
jdbcrowsetimpl.usecolname = \u4f7f\u7528\u5217\u540d\u4f5c\u4e3a unsetMatchColumn \u7684\u53c2\u6570 jdbcrowsetimpl.usecolname = \u4F7F\u7528\u5217\u540D\u4F5C\u4E3A unsetMatchColumn \u7684\u53C2\u6570
jdbcrowsetimpl.usecolid = \u4f7f\u7528\u5217 ID \u4f5c\u4e3a unsetMatchColumn \u7684\u53c2\u6570 jdbcrowsetimpl.usecolid = \u4F7F\u7528\u5217 ID \u4F5C\u4E3A unsetMatchColumn \u7684\u53C2\u6570
jdbcrowsetimpl.resnotupd = ResultSet \u4e0d\u53ef\u66f4\u65b0 jdbcrowsetimpl.resnotupd = ResultSet \u4E0D\u53EF\u66F4\u65B0
jdbcrowsetimpl.opnotysupp = \u5c1a\u4e0d\u652f\u6301\u7684\u64cd\u4f5c jdbcrowsetimpl.opnotysupp = \u5C1A\u4E0D\u652F\u6301\u8BE5\u64CD\u4F5C
jdbcrowsetimpl.featnotsupp = \u5c1a\u4e0d\u652f\u6301\u7684\u529f\u80fd jdbcrowsetimpl.featnotsupp = \u5C1A\u4E0D\u652F\u6301\u8BE5\u529F\u80FD
#CachedRowSetReader exceptions #CachedRowSetReader exceptions
crsreader.connect = (JNDI) \u65e0\u6cd5\u8fde\u63a5 crsreader.connect = (JNDI) \u65E0\u6CD5\u8FDE\u63A5
crsreader.paramtype = \u65e0\u6cd5\u63a8\u65ad\u53c2\u6570\u7c7b\u578b crsreader.paramtype = \u65E0\u6CD5\u63A8\u65AD\u53C2\u6570\u7C7B\u578B
crsreader.connecterr = RowSetReader \u4e2d\u51fa\u73b0\u5185\u90e8\u9519\u8bef\uff1a\u65e0\u8fde\u63a5\u6216\u547d\u4ee4 crsreader.connecterr = RowSetReader \u4E2D\u51FA\u73B0\u5185\u90E8\u9519\u8BEF: \u65E0\u8FDE\u63A5\u6216\u547D\u4EE4
crsreader.datedetected = \u68c0\u6d4b\u5230\u65e5\u671f crsreader.datedetected = \u68C0\u6D4B\u5230\u65E5\u671F
crsreader.caldetected = \u68c0\u6d4b\u5230\u65e5\u5386 crsreader.caldetected = \u68C0\u6D4B\u5230\u65E5\u5386
#CachedRowSetWriter exceptions #CachedRowSetWriter exceptions
crswriter.connect = \u65e0\u6cd5\u8fdb\u884c\u8fde\u63a5 crswriter.connect = \u65E0\u6CD5\u83B7\u53D6\u8FDE\u63A5
crswriter.tname = writeData \u65e0\u6cd5\u786e\u5b9a\u8868\u540d crswriter.tname = writeData \u65E0\u6CD5\u786E\u5B9A\u8868\u540D
crswriter.params1 = params1 \u7684\u503c: {0} crswriter.params1 = params1 \u7684\u503C: {0}
crswriter.params2 = params2 \u7684\u503c: {0} crswriter.params2 = params2 \u7684\u503C: {0}
crswriter.conflictsno = \u540c\u6b65\u5316\u65f6\u53d1\u751f\u51b2\u7a81 crswriter.conflictsno = \u540C\u6B65\u65F6\u53D1\u751F\u51B2\u7A81
#InsertRow exceptions #InsertRow exceptions
insertrow.novalue = \u5c1a\u672a\u63d2\u5165\u4efb\u4f55\u503c insertrow.novalue = \u5C1A\u672A\u63D2\u5165\u4EFB\u4F55\u503C
#SyncResolverImpl exceptions #SyncResolverImpl exceptions
syncrsimpl.indexval = \u7d22\u5f15\u503c\u8d85\u51fa\u8303\u56f4 syncrsimpl.indexval = \u7D22\u5F15\u503C\u8D85\u51FA\u8303\u56F4
syncrsimpl.noconflict = \u6b64\u5217\u4e0d\u51b2\u7a81 syncrsimpl.noconflict = \u6B64\u5217\u4E0D\u51B2\u7A81
syncrsimpl.syncnotpos = \u4e0d\u80fd\u540c\u6b65 syncrsimpl.syncnotpos = \u4E0D\u80FD\u540C\u6B65
syncrsimpl.valtores = \u8981\u89e3\u6790\u7684\u503c\u53ef\u4ee5\u5728\u6570\u636e\u5e93\u4e2d\uff0c\u4e5f\u53ef\u4ee5\u5728 CachedRowSet \u4e2d syncrsimpl.valtores = \u8981\u89E3\u6790\u7684\u503C\u53EF\u4EE5\u5728\u6570\u636E\u5E93\u4E2D, \u4E5F\u53EF\u4EE5\u5728 CachedRowSet \u4E2D
#WebRowSetXmlReader exception #WebRowSetXmlReader exception
wrsxmlreader.invalidcp = \u5df2\u5230\u8fbe RowSet \u7684\u7ed3\u5c3e\u3002\u5149\u6807\u4f4d\u7f6e\u65e0\u6548 wrsxmlreader.invalidcp = \u5DF2\u5230\u8FBE RowSet \u7684\u7ED3\u5C3E\u3002\u5149\u6807\u4F4D\u7F6E\u65E0\u6548
wrsxmlreader.readxml = readXML: {0} wrsxmlreader.readxml = readXML: {0}
wrsxmlreader.parseerr = ** \u8bed\u6cd5\u89e3\u6790\u9519\u8bef: {0}\uff0c\u884c: {1}\uff0cURI: {2} wrsxmlreader.parseerr = ** \u8BED\u6CD5\u5206\u6790\u9519\u8BEF: {0}, \u884C: {1}, URI: {2}
#WebRowSetXmlWriter exceptions #WebRowSetXmlWriter exceptions
wrsxmlwriter.ioex = IOException: {0} wrsxmlwriter.ioex = IOException: {0}
wrsxmlwriter.sqlex = SQLException: {0} wrsxmlwriter.sqlex = SQLException: {0}
wrsxmlwriter.failedwrite = \u65e0\u6cd5\u5199\u5165\u503c wrsxmlwriter.failedwrite = \u65E0\u6CD5\u5199\u5165\u503C
wsrxmlwriter.notproper = \u7c7b\u578b\u4e0d\u6b63\u786e wsrxmlwriter.notproper = \u7C7B\u578B\u4E0D\u6B63\u786E
#XmlReaderContentHandler exceptions #XmlReaderContentHandler exceptions
xmlrch.errmap = \u8bbe\u7f6e\u6620\u5c04\u65f6\u51fa\u9519: {0} xmlrch.errmap = \u8BBE\u7F6E\u6620\u5C04\u65F6\u51FA\u9519: {0}
xmlrch.errmetadata = \u8bbe\u7f6e\u5143\u6570\u636e\u65f6\u51fa\u9519: {0} xmlrch.errmetadata = \u8BBE\u7F6E\u5143\u6570\u636E\u65F6\u51FA\u9519: {0}
xmlrch.errinsertval = \u63d2\u5165\u503c\u65f6\u51fa\u9519: {0} xmlrch.errinsertval = \u63D2\u5165\u503C\u65F6\u51FA\u9519: {0}
xmlrch.errconstr = \u6784\u9020\u884c\u65f6\u51fa\u9519: {0} xmlrch.errconstr = \u6784\u9020\u884C\u65F6\u51FA\u9519: {0}
xmlrch.errdel = \u5220\u9664\u884c\u65f6\u51fa\u9519: {0} xmlrch.errdel = \u5220\u9664\u884C\u65F6\u51FA\u9519: {0}
xmlrch.errinsdel = \u6784\u9020 insdel \u884c\u65f6\u51fa\u9519: {0} xmlrch.errinsert = \u6784\u9020\u63D2\u5165\u884C\u65F6\u51FA\u9519: {0}
xmlrch.errupdate = \u6784\u9020\u66f4\u65b0\u884c\u65f6\u51fa\u9519: {0} xmlrch.errinsdel = \u6784\u9020 insdel \u884C\u65F6\u51FA\u9519: {0}
xmlrch.errupdrow = \u66f4\u65b0\u884c\u65f6\u51fa\u9519: {0} xmlrch.errupdate = \u6784\u9020\u66F4\u65B0\u884C\u65F6\u51FA\u9519: {0}
xmlrch.chars = \u5b57\u7b26: xmlrch.errupdrow = \u66F4\u65B0\u884C\u65F6\u51FA\u9519: {0}
xmlrch.badvalue = \u503c\u9519\u8bef\uff1b\u5c5e\u6027\u4e0d\u53ef\u4e3a Null xmlrch.chars = \u5B57\u7B26:
xmlrch.badvalue1 = \u503c\u9519\u8bef\uff1b\u5143\u6570\u636e\u4e0d\u53ef\u4e3a Null xmlrch.badvalue = \u503C\u9519\u8BEF; \u5C5E\u6027\u4E0D\u53EF\u4E3A\u7A7A\u503C
xmlrch.warning = ** \u8b66\u544a: {0}\uff0c\u884c: {1}\uff0cURI: {2} xmlrch.badvalue1 = \u503C\u9519\u8BEF; \u5143\u6570\u636E\u4E0D\u53EF\u4E3A\u7A7A\u503C
xmlrch.warning = ** \u8B66\u544A: {0}, \u884C: {1}, URI: {2}
#RIOptimisticProvider Exceptions #RIOptimisticProvider Exceptions
riop.locking = \u4e0d\u652f\u6301\u9501\u5b9a\u5206\u7c7b riop.locking = \u4E0D\u652F\u6301\u9501\u5B9A\u5206\u7C7B
#RIXMLProvider exceptions #RIXMLProvider exceptions
rixml.unsupp = \u4e0d\u652f\u6301 RIXMLProvider rixml.unsupp = \u4E0D\u652F\u6301 RIXMLProvider

View file

@ -24,145 +24,147 @@
# #
# CacheRowSetImpl exceptions # CacheRowSetImpl exceptions
cachedrowsetimpl.populate = \u70ba\u690d\u5165\u65b9\u6cd5\u63d0\u4f9b\u7684 ResultSet \u7269\u4ef6\u7121\u6548 cachedrowsetimpl.populate = \u70BA\u690D\u5165\u65B9\u6CD5\u63D0\u4F9B\u7684 ResultSet \u7269\u4EF6\u7121\u6548
cachedrowsetimpl.invalidp = \u7522\u751f\u7684\u6301\u7e8c\u6027\u63d0\u4f9b\u8005\u7121\u6548 cachedrowsetimpl.invalidp = \u7522\u751F\u7684\u6301\u7E8C\u6027\u63D0\u4F9B\u8005\u7121\u6548
cachedrowsetimpl.nullhash = \u7121\u6cd5\u5275\u8a2d CachedRowSetImpl \u5be6\u4f8b\u3002\u70ba\u5efa\u69cb\u5b50\u63d0\u4f9b\u7684 Hashtable \u70ba\u7a7a cachedrowsetimpl.nullhash = \u7121\u6CD5\u5EFA\u7ACB CachedRowSetImpl \u57F7\u884C\u8655\u7406\u3002\u70BA\u5EFA\u69CB\u5B50\u63D0\u4F9B\u7684 Hashtable \u70BA\u7A7A\u503C
cachedrowsetimpl.invalidop = \u5c0d\u63d2\u5165\u5217\u9032\u884c\u7684\u4f5c\u696d\u7121\u6548 cachedrowsetimpl.invalidop = \u63D2\u5165\u5217\u6642\u7684\u4F5C\u696D\u7121\u6548
cachedrowsetimpl.accfailed = acceptChanges \u5931\u6557 cachedrowsetimpl.accfailed = acceptChanges \u5931\u6557
cachedrowsetimpl.invalidcp = \u6e38\u6a19\u4f4d\u7f6e\u7121\u6548 cachedrowsetimpl.invalidcp = \u6E38\u6A19\u4F4D\u7F6E\u7121\u6548
cachedrowsetimpl.illegalop = \u975e\u63d2\u5165\u5217\u4e0a\u5b58\u5728\u975e\u6cd5\u4f5c\u696d cachedrowsetimpl.illegalop = \u975E\u63D2\u5165\u5217\u4E0A\u5B58\u5728\u7121\u6548\u4F5C\u696D
cachedrowsetimpl.clonefail = \u8907\u88fd\u5931\u6557\uff1a{0} cachedrowsetimpl.clonefail = \u8907\u88FD\u5931\u6557: {0}
cachedrowsetimpl.invalidcol = \u6b04\u7d22\u5f15\u7121\u6548 cachedrowsetimpl.invalidcol = \u6B04\u7D22\u5F15\u7121\u6548
cachedrowsetimpl.invalcolnm = \u6b04\u540d\u7121\u6548 cachedrowsetimpl.invalcolnm = \u6B04\u540D\u7121\u6548
cachedrowsetimpl.boolfail = \u5c0d\u6b04 {1} \u4e2d\u7684\u503c ( {0} ) \u57f7\u884c getBoolen \u5931\u6557 cachedrowsetimpl.boolfail = \u5C0D\u6B04 {1} \u4E2D\u7684\u503C ( {0} ) \u57F7\u884C getBoolen \u5931\u6557
cachedrowsetimpl.bytefail = \u5c0d\u6b04 {1} \u4e2d\u7684\u503c ( {0} ) \u57f7\u884c getByte \u5931\u6557 cachedrowsetimpl.bytefail = \u5C0D\u6B04 {1} \u4E2D\u7684\u503C ( {0} ) \u57F7\u884C getByte \u5931\u6557
cachedrowsetimpl.shortfail = \u5c0d\u6b04 {1} \u4e2d\u7684\u503c ( {0} ) \u57f7\u884c getShort \u5931\u6557 cachedrowsetimpl.shortfail = \u5C0D\u6B04 {1} \u4E2D\u7684\u503C ( {0} ) \u57F7\u884C getShort \u5931\u6557
cachedrowsetimpl.intfail = \u5c0d\u6b04 {1} \u4e2d\u7684\u503c ( {0} ) \u57f7\u884c getInt \u5931\u6557 cachedrowsetimpl.intfail = \u5C0D\u6B04 {1} \u4E2D\u7684\u503C ( {0} ) \u57F7\u884C getInt \u5931\u6557
cachedrowsetimpl.longfail = \u5c0d\u6b04 {1} \u4e2d\u7684\u503c ( {0} ) \u57f7\u884c getLong \u5931\u6557 cachedrowsetimpl.longfail = \u5C0D\u6B04 {1} \u4E2D\u7684\u503C ( {0} ) \u57F7\u884C getLong \u5931\u6557
cachedrowsetimpl.floatfail = \u5c0d\u6b04 {1} \u4e2d\u7684\u503c ( {0} ) \u57f7\u884c getFloat \u5931\u6557 cachedrowsetimpl.floatfail = \u5C0D\u6B04 {1} \u4E2D\u7684\u503C ( {0} ) \u57F7\u884C getFloat \u5931\u6557
cachedrowsetimpl.doublefail = \u5c0d\u6b04 {1} \u4e2d\u7684\u503c ( {0} ) \u57f7\u884c getDouble \u5931\u6557 cachedrowsetimpl.doublefail = \u5C0D\u6B04 {1} \u4E2D\u7684\u503C ( {0} ) \u57F7\u884C getDouble \u5931\u6557
cachedrowsetimpl.dtypemismt = \u8cc7\u6599\u985e\u578b\u4e0d\u5339\u914d cachedrowsetimpl.dtypemismt = \u8CC7\u6599\u985E\u578B\u4E0D\u76F8\u7B26
cachedrowsetimpl.datefail = \u5c0d\u6b04 {1} \u4e2d\u7684\u503c ( {0} ) \u57f7\u884c getDate \u5931\u6557\uff0c\u672a\u9032\u884c\u8f49\u63db cachedrowsetimpl.datefail = \u5C0D\u6B04 {1} \u4E2D\u7684\u503C ( {0} ) \u57F7\u884C getDate \u5931\u6557\uFF0C\u672A\u9032\u884C\u8F49\u63DB
cachedrowsetimpl.timefail = \u5c0d\u6b04 {1} \u4e2d\u7684\u503c ( {0} ) \u57f7\u884c getTime \u5931\u6557\uff0c\u672a\u9032\u884c\u8f49\u63db cachedrowsetimpl.timefail = \u5C0D\u6B04 {1} \u4E2D\u7684\u503C ( {0} ) \u57F7\u884C getTime \u5931\u6557\uFF0C\u672A\u9032\u884C\u8F49\u63DB
cachedrowsetimpl.posupdate = \u4e0d\u652f\u63f4\u5b9a\u4f4d\u7684\u66f4\u65b0 cachedrowsetimpl.posupdate = \u4E0D\u652F\u63F4\u5B9A\u4F4D\u7684\u66F4\u65B0
cachedrowsetimpl.unableins = \u7121\u6cd5\u5275\u8a2d\uff1a{0} cachedrowsetimpl.unableins = \u7121\u6CD5\u5EFA\u7ACB: {0}
cachedrowsetimpl.beforefirst = beforeFirst\uff1a\u6e38\u6a19\u4f5c\u696d\u7121\u6548 cachedrowsetimpl.beforefirst = beforeFirst: \u6E38\u6A19\u4F5C\u696D\u7121\u6548
cachedrowsetimpl.first = First\uff1a\u6e38\u6a19\u4f5c\u696d\u7121\u6548 cachedrowsetimpl.first = First: \u6E38\u6A19\u4F5C\u696D\u7121\u6548
cachedrowsetimpl.last = last\uff1aTYPE_FORWARD_ONLY cachedrowsetimpl.last = last : TYPE_FORWARD_ONLY
cachedrowsetimpl.absolute = absolute\uff1a\u6e38\u6a19\u4f4d\u7f6e\u7121\u6548 cachedrowsetimpl.absolute = absolute: \u6E38\u6A19\u4F4D\u7F6E\u7121\u6548
cachedrowsetimpl.relative = relative\uff1a\u6e38\u6a19\u4f4d\u7f6e\u7121\u6548 cachedrowsetimpl.relative = relative: \u6E38\u6A19\u4F4D\u7F6E\u7121\u6548
cachedrowsetimpl.asciistream = \u5c0d ascii \u4e32\u6d41\u57f7\u884c read \u5931\u6557 cachedrowsetimpl.asciistream = \u8B80\u53D6 ascii \u4E32\u6D41\u5931\u6557
cachedrowsetimpl.binstream = \u5c0d\u4e8c\u9032\u4f4d\u4e32\u6d41\u57f7\u884c read \u5931\u6557 cachedrowsetimpl.binstream = \u8B80\u53D6\u4E8C\u9032\u4F4D\u4E32\u6D41\u5931\u6557
cachedrowsetimpl.failedins = \u5728\u63d2\u5165\u5217\u4e0a\u5931\u6557 cachedrowsetimpl.failedins = \u63D2\u5165\u5217\u5931\u6557
cachedrowsetimpl.updateins = \u5c0d\u63d2\u5165\u5217\u547c\u53eb updateRow cachedrowsetimpl.updateins = \u63D2\u5165\u5217\u6642\u547C\u53EB updateRow
cachedrowsetimpl.movetoins = moveToInsertRow\uff1aCONCUR_READ_ONLY cachedrowsetimpl.movetoins = moveToInsertRow: CONCUR_READ_ONLY
cachedrowsetimpl.movetoins1 = moveToInsertRow\uff1a\u6c92\u6709\u5143\u8cc7\u6599 cachedrowsetimpl.movetoins1 = moveToInsertRow: \u6C92\u6709\u63CF\u8FF0\u8CC7\u6599
cachedrowsetimpl.movetoins2 = moveToInsertRow\uff1a\u6b04\u6578\u7121\u6548 cachedrowsetimpl.movetoins2 = moveToInsertRow: \u6B04\u6578\u7121\u6548
cachedrowsetimpl.tablename = \u8868\u540d\u7a31\u4e0d\u80fd\u70ba\u7a7a cachedrowsetimpl.tablename = \u8868\u683C\u540D\u7A31\u4E0D\u80FD\u70BA\u7A7A\u503C
cachedrowsetimpl.keycols = \u95dc\u9375\u6b04\u7121\u6548 cachedrowsetimpl.keycols = \u95DC\u9375\u6B04\u7121\u6548
cachedrowsetimpl.opnotsupp = \u8cc7\u6599\u5eab\u4e0d\u652f\u63f4\u4f5c\u696d cachedrowsetimpl.invalidcol = \u6B04\u7D22\u5F15\u7121\u6548
cachedrowsetimpl.matchcols = \u5339\u914d\u6b04\u548c\u8a2d\u5b9a\u7684\u6b04\u4e0d\u540c cachedrowsetimpl.opnotsupp = \u8CC7\u6599\u5EAB\u4E0D\u652F\u63F4\u4F5C\u696D
cachedrowsetimpl.setmatchcols = \u5728\u53d6\u5f97\u5339\u914d\u6b04\u4e4b\u524d\u8a2d\u5b9a\u5b83\u5011 cachedrowsetimpl.matchcols = \u5339\u914D\u6B04\u548C\u8A2D\u5B9A\u7684\u6B04\u4E0D\u540C
cachedrowsetimpl.matchcols1 = \u5339\u914d\u6b04\u61c9\u5927\u65bc 0 cachedrowsetimpl.setmatchcols = \u5728\u53D6\u5F97\u5339\u914D\u6B04\u4E4B\u524D\u8A2D\u5B9A\u5B83\u5011
cachedrowsetimpl.matchcols2 = \u5339\u914d\u6b04\u61c9\u70ba\u7a7a\u767d\u5b57\u4e32\u6216\u7a7a\u5b57\u4e32 cachedrowsetimpl.matchcols1 = \u5339\u914D\u6B04\u61C9\u5927\u65BC 0
cachedrowsetimpl.unsetmatch = \u672a\u8a2d\u5b9a\u7684\u6b04\u548c\u8a2d\u5b9a\u7684\u6b04\u4e0d\u540c cachedrowsetimpl.matchcols2 = \u5339\u914D\u6B04\u61C9\u70BA\u7A7A\u767D\u5B57\u4E32\u6216\u7A7A\u503C\u5B57\u4E32
cachedrowsetimpl.unsetmatch1 = \u4f7f\u7528\u6b04\u540d\u505a\u70ba unsetMatchColumn \u7684\u5f15\u6578 cachedrowsetimpl.unsetmatch = \u53D6\u6D88\u8A2D\u5B9A\u7684\u6B04\u548C\u8A2D\u5B9A\u7684\u6B04\u4E0D\u540C
cachedrowsetimpl.unsetmatch2 = \u4f7f\u7528\u6b04 ID \u505a\u70ba unsetMatchColumn \u7684\u5f15\u6578 cachedrowsetimpl.unsetmatch1 = \u4F7F\u7528\u6B04\u540D\u505A\u70BA unsetMatchColumn \u7684\u5F15\u6578
cachedrowsetimpl.numrows = \u5217\u6578\u5c0f\u65bc\u96f6\u6216\u5c0f\u65bc\u64f7\u53d6\u5927\u5c0f cachedrowsetimpl.unsetmatch2 = \u4F7F\u7528\u6B04 ID \u505A\u70BA unsetMatchColumn \u7684\u5F15\u6578
cachedrowsetimpl.startpos = \u8d77\u59cb\u4f4d\u7f6e\u4e0d\u80fd\u70ba\u8ca0 cachedrowsetimpl.numrows = \u5217\u6578\u5C0F\u65BC\u96F6\u6216\u5C0F\u65BC\u64F7\u53D6\u5927\u5C0F
cachedrowsetimpl.nextpage = \u5728\u547c\u53eb\u4e4b\u524d\u690d\u5165\u8cc7\u6599 cachedrowsetimpl.startpos = \u8D77\u59CB\u4F4D\u7F6E\u4E0D\u80FD\u70BA\u8CA0\u6578
cachedrowsetimpl.pagesize = \u9801\u9762\u5927\u5c0f\u4e0d\u80fd\u5c0f\u65bc\u96f6 cachedrowsetimpl.nextpage = \u5728\u547C\u53EB\u4E4B\u524D\u690D\u5165\u8CC7\u6599
cachedrowsetimpl.pagesize1 = \u9801\u9762\u5927\u5c0f\u4e0d\u80fd\u5927\u65bc maxRows cachedrowsetimpl.pagesize = \u9801\u9762\u5927\u5C0F\u4E0D\u80FD\u5C0F\u65BC\u96F6
cachedrowsetimpl.fwdonly = ResultSet \u53ea\u80fd\u5411\u524d\u9032\u884c cachedrowsetimpl.pagesize1 = \u9801\u9762\u5927\u5C0F\u4E0D\u80FD\u5927\u65BC maxRows
cachedrowsetimpl.type = \u985e\u578b\u662f\uff1a{0} cachedrowsetimpl.fwdonly = ResultSet \u53EA\u80FD\u5411\u524D\u9032\u884C
cachedrowsetimpl.opnotysupp = \u5c1a\u4e0d\u652f\u63f4\u8a72\u4f5c\u696d cachedrowsetimpl.type = \u985E\u578B\u662F: {0}
cachedrowsetimpl.featnotsupp = \u4e0d\u652f\u63f4\u8a72\u529f\u80fd cachedrowsetimpl.opnotysupp = \u5C1A\u4E0D\u652F\u63F4\u8A72\u4F5C\u696D
cachedrowsetimpl.featnotsupp = \u4E0D\u652F\u63F4\u8A72\u529F\u80FD
# WebRowSetImpl exceptions # WebRowSetImpl exceptions
webrowsetimpl.nullhash = \u7121\u6cd5\u5275\u8a2d WebRowSetImpl \u5be6\u4f8b\u3002\u70ba\u5efa\u69cb\u5b50\u63d0\u4f9b\u7684 Hashtable \u70ba\u7a7a webrowsetimpl.nullhash = \u7121\u6CD5\u5EFA\u7ACB WebRowSetImpl \u57F7\u884C\u8655\u7406\u3002\u70BA\u5EFA\u69CB\u5B50\u63D0\u4F9B\u7684 Hashtable \u70BA\u7A7A\u503C
webrowsetimpl.invalidwr = \u5beb\u5165\u5668\u7121\u6548 webrowsetimpl.invalidwr = \u5BEB\u5165\u5668\u7121\u6548
webrowsetimpl.invalidrd = \u8b80\u53d6\u5668\u7121\u6548 webrowsetimpl.invalidrd = \u8B80\u53D6\u5668\u7121\u6548
#FilteredRowSetImpl exceptions #FilteredRowSetImpl exceptions
filteredrowsetimpl.relative = relative\uff1a\u6e38\u6a19\u4f5c\u696d\u7121\u6548 filteredrowsetimpl.relative = relative: \u6E38\u6A19\u4F5C\u696D\u7121\u6548
filteredrowsetimpl.absolute = absolute\uff1a\u6e38\u6a19\u4f5c\u696d\u7121\u6548 filteredrowsetimpl.absolute = absolute: \u6E38\u6A19\u4F5C\u696D\u7121\u6548
filteredrowsetimpl.notallowed = \u4e0d\u5141\u8a31\u6b64\u503c\u901a\u904e\u904e\u6ffe\u5668 filteredrowsetimpl.notallowed = \u4E0D\u5141\u8A31\u6B64\u503C\u901A\u904E\u7BE9\u9078
#JoinRowSetImpl exceptions #JoinRowSetImpl exceptions
joinrowsetimpl.notinstance = \u4e0d\u662f rowset \u7684\u5be6\u4f8b joinrowsetimpl.notinstance = \u4E0D\u662F rowset \u7684\u57F7\u884C\u8655\u7406
joinrowsetimpl.matchnotset = \u672a\u8a2d\u5b9a\u7528\u65bc\u9023\u7d50\u7684\u5339\u914d\u6b04 joinrowsetimpl.matchnotset = \u672A\u8A2D\u5B9A\u7528\u65BC\u9023\u7D50\u7684\u5339\u914D\u6B04
joinrowsetimpl.numnotequal = rowset \u4e2d\u7684\u5143\u7d20\u6578\u4e0d\u7b49\u65bc\u5339\u914d\u6b04 joinrowsetimpl.numnotequal = rowset \u4E2D\u7684\u5143\u7D20\u6578\u4E0D\u7B49\u65BC\u5339\u914D\u6B04
joinrowsetimpl.notdefined = \u9019\u4e0d\u662f\u9023\u7d50\u7684\u5df2\u5b9a\u7fa9\u985e\u578b joinrowsetimpl.notdefined = \u9019\u4E0D\u662F\u9023\u7D50\u7684\u5DF2\u5B9A\u7FA9\u985E\u578B
joinrowsetimpl.notsupported = \u4e0d\u652f\u63f4\u6b64\u985e\u9023\u7d50 joinrowsetimpl.notsupported = \u4E0D\u652F\u63F4\u6B64\u985E\u9023\u7D50
joinrowsetimpl.initerror = JoinRowSet \u521d\u59cb\u5316\u932f\u8aa4 joinrowsetimpl.initerror = JoinRowSet \u521D\u59CB\u5316\u932F\u8AA4
joinrowsetimpl.genericerr = \u5e38\u898f\u7684 joinrowset \u521d\u59cb\u5316\u932f\u8aa4 joinrowsetimpl.genericerr = \u4E00\u822C\u7684 joinrowset \u521D\u59CB\u5316\u932F\u8AA4
joinrowsetimpl.emptyrowset = \u7121\u6cd5\u5c07\u7a7a rowset \u65b0\u589e\u81f3\u6b64 JoinRowSet joinrowsetimpl.emptyrowset = \u7121\u6CD5\u5C07\u7A7A rowset \u65B0\u589E\u81F3\u6B64 JoinRowSet
#JdbcRowSetImpl exceptions #JdbcRowSetImpl exceptions
jdbcrowsetimpl.invalstate = \u72c0\u614b\u7121\u6548 jdbcrowsetimpl.invalstate = \u72C0\u614B\u7121\u6548
jdbcrowsetimpl.connect = JdbcRowSet (\u9023\u7dda) JNDI \u7121\u6cd5\u9023\u7dda jdbcrowsetimpl.connect = JdbcRowSet (\u9023\u7DDA) JNDI \u7121\u6CD5\u9023\u7DDA
jdbcrowsetimpl.paramtype = \u7121\u6cd5\u63a8\u65b7\u53c3\u6578\u985e\u578b jdbcrowsetimpl.paramtype = \u7121\u6CD5\u63A8\u65B7\u53C3\u6578\u985E\u578B
jdbcrowsetimpl.matchcols = \u5339\u914d\u6b04\u548c\u8a2d\u5b9a\u7684\u6b04\u4e0d\u540c jdbcrowsetimpl.matchcols = \u5339\u914D\u6B04\u548C\u8A2D\u5B9A\u7684\u6B04\u4E0D\u540C
jdbcrowsetimpl.setmatchcols = \u5728\u53d6\u5f97\u5339\u914d\u6b04\u4e4b\u524d\u8a2d\u5b9a\u5b83\u5011 jdbcrowsetimpl.setmatchcols = \u8981\u5148\u8A2D\u5B9A\u5339\u914D\u6B04\uFF0C\u624D\u80FD\u53D6\u5F97\u5B83\u5011
jdbcrowsetimpl.matchcols1 = \u5339\u914d\u6b04\u61c9\u5927\u65bc 0 jdbcrowsetimpl.matchcols1 = \u5339\u914D\u6B04\u61C9\u5927\u65BC 0
jdbcrowsetimpl.matchcols2 = \u5339\u914d\u6b04\u4e0d\u80fd\u70ba\u7a7a\u5b57\u4e32\u6216\u7a7a\u767d\u5b57\u4e32 jdbcrowsetimpl.matchcols2 = \u5339\u914D\u6B04\u4E0D\u80FD\u70BA\u7A7A\u767D\u5B57\u4E32\u6216\u7A7A\u503C\u5B57\u4E32
jdbcrowsetimpl.unsetmatch = \u672a\u8a2d\u5b9a\u7684\u6b04\u548c\u8a2d\u5b9a\u7684\u6b04\u4e0d\u540c jdbcrowsetimpl.unsetmatch = \u53D6\u6D88\u8A2D\u5B9A\u7684\u6B04\u548C\u8A2D\u5B9A\u7684\u6B04\u4E0D\u540C
jdbcrowsetimpl.usecolname = \u4f7f\u7528\u6b04\u540d\u505a\u70ba unsetMatchColumn \u7684\u5f15\u6578 jdbcrowsetimpl.usecolname = \u4F7F\u7528\u6B04\u540D\u505A\u70BA unsetMatchColumn \u7684\u5F15\u6578
jdbcrowsetimpl.usecolid = \u4f7f\u7528\u6b04 ID \u505a\u70ba unsetMatchColumn \u7684\u5f15\u6578 jdbcrowsetimpl.usecolid = \u4F7F\u7528\u6B04 ID \u505A\u70BA unsetMatchColumn \u7684\u5F15\u6578
jdbcrowsetimpl.resnotupd = ResultSet \u4e0d\u53ef\u66f4\u65b0 jdbcrowsetimpl.resnotupd = ResultSet \u4E0D\u53EF\u66F4\u65B0
jdbcrowsetimpl.opnotysupp = \u5c1a\u4e0d\u652f\u63f4\u8a72\u4f5c\u696d jdbcrowsetimpl.opnotysupp = \u5C1A\u4E0D\u652F\u63F4\u8A72\u4F5C\u696D
jdbcrowsetimpl.featnotsupp = \u4e0d\u652f\u63f4\u8a72\u529f\u80fd jdbcrowsetimpl.featnotsupp = \u4E0D\u652F\u63F4\u8A72\u529F\u80FD
#CachedRowSetReader exceptions #CachedRowSetReader exceptions
crsreader.connect = (JNDI) \u7121\u6cd5\u9023\u7dda crsreader.connect = (JNDI) \u7121\u6CD5\u9023\u7DDA
crsreader.paramtype = \u7121\u6cd5\u63a8\u65b7\u53c3\u6578\u985e\u578b crsreader.paramtype = \u7121\u6CD5\u63A8\u65B7\u53C3\u6578\u985E\u578B
crsreader.connecterr = RowSetReader \u4e2d\u51fa\u73fe\u5167\u90e8\u932f\u8aa4\ufe30\u7121\u9023\u7dda\u6216\u6307\u4ee4 crsreader.connecterr = RowSetReader \u4E2D\u51FA\u73FE\u5167\u90E8\u932F\u8AA4: \u7121\u9023\u7DDA\u6216\u547D\u4EE4
crsreader.datedetected = \u5075\u6e2c\u5230\u65e5\u671f crsreader.datedetected = \u5075\u6E2C\u5230\u65E5\u671F
crsreader.caldetected = \u5075\u6e2c\u5230\u884c\u4e8b\u66c6 crsreader.caldetected = \u5075\u6E2C\u5230\u884C\u4E8B\u66C6
#CachedRowSetWriter exceptions #CachedRowSetWriter exceptions
crswriter.connect = \u7121\u6cd5\u5efa\u7acb\u9023\u7dda crswriter.connect = \u7121\u6CD5\u53D6\u5F97\u9023\u7DDA
crswriter.tname = writeData \u4e0d\u80fd\u6c7a\u5b9a\u8868\u540d\u7a31 crswriter.tname = writeData \u4E0D\u80FD\u6C7A\u5B9A\u8868\u683C\u540D\u7A31
crswriter.params1 = params1 \u7684\u503c\uff1a{0} crswriter.params1 = params1 \u7684\u503C: {0}
crswriter.params2 = params2 \u7684\u503c\uff1a{0} crswriter.params2 = params2 \u7684\u503C: {0}
crswriter.conflictsno = \u540c\u6b65\u5316\u6642\u767c\u751f\u885d\u7a81 crswriter.conflictsno = \u540C\u6B65\u5316\u6642\u767C\u751F\u885D\u7A81
#InsertRow exceptions #InsertRow exceptions
insertrow.novalue = \u5c1a\u672a\u63d2\u5165\u503c insertrow.novalue = \u5C1A\u672A\u63D2\u5165\u503C
#SyncResolverImpl exceptions #SyncResolverImpl exceptions
syncrsimpl.indexval = \u7d22\u5f15\u503c\u8d85\u51fa\u7bc4\u570d syncrsimpl.indexval = \u7D22\u5F15\u503C\u8D85\u51FA\u7BC4\u570D
syncrsimpl.noconflict = \u6b64\u6b04\u4e0d\u885d\u7a81 syncrsimpl.noconflict = \u6B64\u6B04\u4E0D\u885D\u7A81
syncrsimpl.syncnotpos = \u4e0d\u53ef\u80fd\u540c\u6b65\u5316 syncrsimpl.syncnotpos = \u4E0D\u53EF\u80FD\u540C\u6B65\u5316
syncrsimpl.valtores = \u8981\u89e3\u6790\u7684\u503c\u53ef\u4f4d\u65bc\u8cc7\u6599\u5eab\u6216 cachedrowset \u4e2d syncrsimpl.valtores = \u8981\u89E3\u6790\u7684\u503C\u53EF\u4F4D\u65BC\u8CC7\u6599\u5EAB\u6216 cachedrowset \u4E2D
#WebRowSetXmlReader exception #WebRowSetXmlReader exception
wrsxmlreader.invalidcp = \u5df2\u5230\u9054 RowSet \u672b\u5c3e\u3002\u6e38\u6a19\u4f4d\u7f6e\u7121\u6548 wrsxmlreader.invalidcp = \u5DF2\u5230\u9054 RowSet \u7D50\u5C3E\u3002\u6E38\u6A19\u4F4D\u7F6E\u7121\u6548
wrsxmlreader.readxml = readXML\uff1a{0} wrsxmlreader.readxml = readXML: {0}
wrsxmlreader.parseerr = ** \u5256\u6790\u932f\u8aa4: {0}\uff0c\u884c: {1}\uff0curi: {2} wrsxmlreader.parseerr = ** \u5256\u6790\u932F\u8AA4: {0}\uFF0C\u884C: {1}\uFF0Curi: {2}
#WebRowSetXmlWriter exceptions #WebRowSetXmlWriter exceptions
wrsxmlwriter.ioex = IOException\uff1a{0} wrsxmlwriter.ioex = IOException : {0}
wrsxmlwriter.sqlex = SQLException\uff1a{0} wrsxmlwriter.sqlex = SQLException : {0}
wrsxmlwriter.failedwrite = \u5beb\u5165\u503c\u5931\u6557 wrsxmlwriter.failedwrite = \u5BEB\u5165\u503C\u5931\u6557
wsrxmlwriter.notproper = \u4e0d\u662f\u6b63\u78ba\u985e\u578b wsrxmlwriter.notproper = \u4E0D\u662F\u6B63\u78BA\u985E\u578B
#XmlReaderContentHandler exceptions #XmlReaderContentHandler exceptions
xmlrch.errmap = \u8a2d\u5b9a\u5c0d\u6620\u6642\u767c\u751f\u932f\u8aa4\uff1a{0} xmlrch.errmap = \u8A2D\u5B9A\u5C0D\u6620\u6642\u767C\u751F\u932F\u8AA4: {0}
xmlrch.errmetadata = \u8a2d\u5b9a\u5143\u8cc7\u6599\u6642\u767c\u751f\u932f\u8aa4\uff1a{0} xmlrch.errmetadata = \u8A2D\u5B9A\u63CF\u8FF0\u8CC7\u6599\u6642\u767C\u751F\u932F\u8AA4: {0}
xmlrch.errinsertval = \u63d2\u5165\u503c\u6642\u767c\u751f\u932f\u8aa4: {0} xmlrch.errinsertval = \u63D2\u5165\u503C\u6642\u767C\u751F\u932F\u8AA4: {0}
xmlrch.errconstr = \u5efa\u69cb\u5217\u6642\u767c\u751f\u932f\u8aa4\uff1a{0} xmlrch.errconstr = \u5EFA\u69CB\u5217\u6642\u767C\u751F\u932F\u8AA4: {0}
xmlrch.errdel = \u522a\u9664\u5217\u6642\u767c\u751f\u932f\u8aa4\uff1a{0} xmlrch.errdel = \u522A\u9664\u5217\u6642\u767C\u751F\u932F\u8AA4: {0}
xmlrch.errinsdel = \u5efa\u69cb insdel \u5217\u6642\u767c\u751f\u932f\u8aa4\uff1a{0} xmlrch.errinsert = \u5EFA\u69CB\u63D2\u5165\u5217\u6642\u767C\u751F\u932F\u8AA4 : {0}
xmlrch.errupdate = \u5efa\u69cb\u66f4\u65b0\u5217\u6642\u767c\u751f\u932f\u8aa4\uff1a{0} xmlrch.errinsdel = \u5EFA\u69CB insdel \u5217\u6642\u767C\u751F\u932F\u8AA4: {0}
xmlrch.errupdrow = \u66f4\u65b0\u5217\u6642\u767c\u751f\u932f\u8aa4: {0} xmlrch.errupdate = \u5EFA\u69CB\u66F4\u65B0\u5217\u6642\u767C\u751F\u932F\u8AA4: {0}
xmlrch.chars = \u5b57\u5143\uff1a xmlrch.errupdrow = \u66F4\u65B0\u5217\u6642\u767C\u751F\u932F\u8AA4: {0}
xmlrch.badvalue = \u932f\u8aa4\u7684\u503c\uff1b\u7279\u6027\u4e0d\u80fd\u70ba\u7a7a xmlrch.chars = \u5B57\u5143:
xmlrch.badvalue1 = \u932f\u8aa4\u7684\u503c\uff1b\u5143\u8cc7\u6599\u4e0d\u80fd\u70ba\u7a7a xmlrch.badvalue = \u932F\u8AA4\u7684\u503C; \u5C6C\u6027\u4E0D\u80FD\u70BA\u7A7A\u503C
xmlrch.warning = ** \u8b66\u544a: {0}\uff0c\u884c: {1}\uff0curi: {2} xmlrch.badvalue1 = \u932F\u8AA4\u7684\u503C; \u63CF\u8FF0\u8CC7\u6599\u4E0D\u80FD\u70BA\u7A7A\u503C
xmlrch.warning = ** \u8B66\u544A: {0}\uFF0C\u884C: {1}\uFF0Curi: {2}
#RIOptimisticProvider Exceptions #RIOptimisticProvider Exceptions
riop.locking = \u4e0d\u652f\u63f4\u9396\u5b9a\u5206\u985e riop.locking = \u4E0D\u652F\u63F4\u9396\u5B9A\u5206\u985E
#RIXMLProvider exceptions #RIXMLProvider exceptions
rixml.unsupp = RIXMLProvider \u4e0d\u652f\u63f4 rixml.unsupp = RIXMLProvider \u4E0D\u652F\u63F4

View file

@ -50,25 +50,25 @@ FileChooser.directoryDescriptionText=Verzeichnis
FileChooser.newFolderErrorText=Fehler beim Erstellen eines neuen Ordners FileChooser.newFolderErrorText=Fehler beim Erstellen eines neuen Ordners
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=Ordner kann nicht erstellt werden FileChooser.newFolderParentDoesntExistTitleText=Ordner kann nicht erstellt werden
FileChooser.newFolderParentDoesntExistText=Der Ordner kann nicht erstellt werden.\n\nDas System kann den angegebenen Pfad nicht finden. FileChooser.newFolderParentDoesntExistText=Ordner kann nicht erstellt werden.\n\nSystem kann den angegebenen Pfad nicht finden.
FileChooser.renameErrorTitleText=Fehler beim Umbenennen der Datei oder des Ordners FileChooser.renameErrorTitleText=Fehler beim Umbenennen von Datei oder Ordner
FileChooser.renameErrorText={0} kann nicht umbenannt werden FileChooser.renameErrorText={0} kann nicht umbenannt werden
FileChooser.renameErrorFileExistsText={0} kann nicht umbenannt werden: Es ist bereits eine Datei mit diesem Namen vorhanden. Geben Sie einen anderen Dateinamen an. 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.acceptAllFileFilterText=Alle Dateien
FileChooser.cancelButtonText=Abbrechen FileChooser.cancelButtonText=Abbrechen
FileChooser.cancelButtonMnemonic=65 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=Speichern FileChooser.saveButtonText=Speichern
FileChooser.saveButtonMnemonic=83 FileChooser.saveButtonMnemonic=83
FileChooser.openButtonText=\u00d6ffnen FileChooser.openButtonText=\u00D6ffnen
FileChooser.openButtonMnemonic=70 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Speichern FileChooser.saveDialogTitleText=Speichern
FileChooser.openDialogTitleText=\u00d6ffnen FileChooser.openDialogTitleText=\u00D6ffnen
FileChooser.updateButtonText=Aktualisieren FileChooser.updateButtonText=Aktualisieren
FileChooser.updateButtonMnemonic=75 FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=Hilfe FileChooser.helpButtonText=Hilfe
FileChooser.helpButtonMnemonic=72 FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=\u00d6ffnen FileChooser.directoryOpenButtonText=\u00D6ffnen
FileChooser.directoryOpenButtonMnemonic=69 FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
@ -78,28 +78,28 @@ FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=Neuer Ordner FileChooser.win32.newFolder=Neuer Ordner
FileChooser.win32.newFolder.subsequent=Neuer Ordner ({0}) FileChooser.win32.newFolder.subsequent=Neuer Ordner ({0})
FileChooser.other.newFolder=Neuer Ordner FileChooser.other.newFolder=NewFolder
FileChooser.other.newFolder.subsequent=Neuer Ordner.{0} FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=Dialogfeld f\u00fcr Dateiauswahl abbrechen FileChooser.cancelButtonToolTipText=Dialogfeld f\u00FCr Dateiauswahl schlie\u00DFen
FileChooser.saveButtonToolTipText=Ausgew\u00e4hlte Datei speichern FileChooser.saveButtonToolTipText=Ausgew\u00E4hlte Datei speichern
FileChooser.openButtonToolTipText=Ausgew\u00e4hlte Datei \u00f6ffnen FileChooser.openButtonToolTipText=Ausgew\u00E4hlte Datei \u00F6ffnen
FileChooser.updateButtonToolTipText=Verzeichnisliste aktualisieren FileChooser.updateButtonToolTipText=Verzeichnisliste aktualisieren
FileChooser.helpButtonToolTipText=Hilfe f\u00fcr Dateiauswahl FileChooser.helpButtonToolTipText=FileChooser-Hilfe
FileChooser.directoryOpenButtonToolTipText=Markiertes Verzeichnis \u00f6ffnen FileChooser.directoryOpenButtonToolTipText=Ausgew\u00E4hltes Verzeichnis \u00F6ffnen
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=Vorschau ColorChooser.previewText=Vorschau
ColorChooser.okText=OK ColorChooser.okText=OK
ColorChooser.cancelText=Abbrechen ColorChooser.cancelText=Abbrechen
ColorChooser.resetText=Zur\u00fccksetzen ColorChooser.resetText=Zur\u00FCcksetzen
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic # VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
ColorChooser.resetMnemonic=90 ColorChooser.resetMnemonic=82
ColorChooser.sampleText=Beispieltext Beispieltext ColorChooser.sampleText=Beispieltext Beispieltext
ColorChooser.swatchesNameText=Muster ColorChooser.swatchesNameText=Muster
ColorChooser.swatchesMnemonic=77 ColorChooser.swatchesMnemonic=83
ColorChooser.swatchesRecentText=Aktuell: ColorChooser.swatchesRecentText=Aktuell:
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX # 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 # constant, and an index into the text to render the mnemonic as. The
@ -108,20 +108,20 @@ ColorChooser.swatchesRecentText=Aktuell:
ColorChooser.hsvNameText=HSV ColorChooser.hsvNameText=HSV
ColorChooser.hsvMnemonic=72 ColorChooser.hsvMnemonic=72
ColorChooser.hsvHueText=Farbton ColorChooser.hsvHueText=Farbton
ColorChooser.hsvSaturationText=S\u00e4ttigung ColorChooser.hsvSaturationText=S\u00E4ttigung
ColorChooser.hsvValueText=Wert ColorChooser.hsvValueText=Wert
ColorChooser.hsvTransparencyText=Transparenz ColorChooser.hsvTransparencyText=Transparenz
ColorChooser.hslNameText=HSL ColorChooser.hslNameText=HSL
ColorChooser.hslMnemonic=76 ColorChooser.hslMnemonic=76
ColorChooser.hslHueText=Farbton ColorChooser.hslHueText=Farbton
ColorChooser.hslSaturationText=S\u00e4ttigung ColorChooser.hslSaturationText=S\u00E4ttigung
ColorChooser.hslLightnessText=Helligkeit ColorChooser.hslLightnessText=Helligkeit
ColorChooser.hslTransparencyText=Transparenz ColorChooser.hslTransparencyText=Transparenz
ColorChooser.rgbNameText=RGB ColorChooser.rgbNameText=RGB
ColorChooser.rgbMnemonic=71 ColorChooser.rgbMnemonic=71
ColorChooser.rgbRedText=Rot ColorChooser.rgbRedText=Rot
ColorChooser.rgbRedMnemonic=82 ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=Gr\u00fcn ColorChooser.rgbGreenText=Gr\u00FCn
ColorChooser.rgbGreenMnemonic=78 ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=Blau ColorChooser.rgbBlueText=Blau
ColorChooser.rgbBlueMnemonic=66 ColorChooser.rgbBlueMnemonic=66
@ -130,7 +130,7 @@ ColorChooser.rgbHexCodeText=Farbcode
ColorChooser.rgbHexCodeMnemonic=67 ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77 ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Cyan ColorChooser.cmykCyanText=Zyan
ColorChooser.cmykMagentaText=Magenta ColorChooser.cmykMagentaText=Magenta
ColorChooser.cmykYellowText=Gelb ColorChooser.cmykYellowText=Gelb
ColorChooser.cmykBlackText=Schwarz ColorChooser.cmykBlackText=Schwarz
@ -141,26 +141,26 @@ ColorChooser.cmykAlphaText=Alpha
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=Ja OptionPane.yesButtonText=Ja
OptionPane.yesButtonMnemonic=74 OptionPane.yesButtonMnemonic=89
OptionPane.noButtonText=Nein OptionPane.noButtonText=Nein
OptionPane.noButtonMnemonic=78 OptionPane.noButtonMnemonic=78
OptionPane.okButtonText=OK OptionPane.okButtonText=OK
OptionPane.okButtonMnemonic=79 OptionPane.okButtonMnemonic=0
OptionPane.cancelButtonText=Abbrechen OptionPane.cancelButtonText=Abbrechen
OptionPane.cancelButtonMnemonic=65 OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=W\u00e4hlen Sie eine Option aus OptionPane.titleText=Option ausw\u00E4hlen
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=Eingabe OptionPane.inputDialogTitle=Eingabe
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=Nachricht OptionPane.messageDialogTitle=Meldung
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=Drucken PrintingDialog.titleProgressText=Drucken
PrintingDialog.titleAbortingText=Drucken (Abbruch) PrintingDialog.titleAbortingText=Drucken (Abbruch)
PrintingDialog.contentInitialText=Druckvorgang l\u00e4uft... PrintingDialog.contentInitialText=Druckvorgang l\u00E4uft...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
@ -169,57 +169,57 @@ PrintingDialog.contentProgressText=Seite {0} wurde gedruckt...
PrintingDialog.contentAbortingText=Druckvorgang wird abgebrochen... PrintingDialog.contentAbortingText=Druckvorgang wird abgebrochen...
PrintingDialog.abortButtonText=Abbrechen PrintingDialog.abortButtonText=Abbrechen
PrintingDialog.abortButtonMnemonic=66 PrintingDialog.abortButtonMnemonic=65
PrintingDialog.abortButtonDisplayedMnemonicIndex=1 PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=Druckvorgang abbrechen PrintingDialog.abortButtonToolTipText=Druckvorgang abbrechen
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Minimieren InternalFrame.iconButtonToolTip=Minimieren
InternalFrame.maxButtonToolTip=Maximieren InternalFrame.maxButtonToolTip=Maximieren
InternalFrame.restoreButtonToolTip=Wiederherstellen InternalFrame.restoreButtonToolTip=Wiederherstellen
InternalFrame.closeButtonToolTip=Schlie\u00dfen InternalFrame.closeButtonToolTip=Schlie\u00DFen
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=Wiederherstellen InternalFrameTitlePane.restoreButtonText=Wiederherstellen
InternalFrameTitlePane.moveButtonText=Verschieben InternalFrameTitlePane.moveButtonText=Verschieben
InternalFrameTitlePane.sizeButtonText=Gr\u00f6\u00dfe InternalFrameTitlePane.sizeButtonText=Gr\u00F6\u00DFe
InternalFrameTitlePane.minimizeButtonText=Minimieren InternalFrameTitlePane.minimizeButtonText=Minimieren
InternalFrameTitlePane.maximizeButtonText=Maximieren InternalFrameTitlePane.maximizeButtonText=Maximieren
InternalFrameTitlePane.closeButtonText=Schlie\u00dfen InternalFrameTitlePane.closeButtonText=Schlie\u00DFen
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=Abfrage senden FormView.submitButtonText=Abfrage weiterleiten
FormView.resetButtonText=Zur\u00fccksetzen FormView.resetButtonText=Zur\u00FCcksetzen
FormView.browseFileButtonText=Durchsuchen... FormView.browseFileButtonText=Durchsuchen...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=Formatvorlagen\u00e4nderung AbstractDocument.styleChangeText=Formatvorlagen\u00E4nderung
AbstractDocument.additionText=Hinzuf\u00fcgen AbstractDocument.additionText=Hinzuf\u00FCgen
AbstractDocument.deletionText=L\u00f6schen AbstractDocument.deletionText=L\u00F6schen
AbstractDocument.undoText=R\u00fcckg\u00e4ngig AbstractDocument.undoText=R\u00FCckg\u00E4ngig
AbstractDocument.redoText=Wiederherstellen AbstractDocument.redoText=Wiederherstellen
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=Klicken AbstractButton.clickText=Klicken
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=R\u00fcckg\u00e4ngig AbstractUndoableEdit.undoText=R\u00FCckg\u00E4ngig
AbstractUndoableEdit.redoText=Wiederherstellen AbstractUndoableEdit.redoText=Wiederherstellen
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=Popup umschalten ComboBox.togglePopupText=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=Fortschritt... ProgressMonitor.progressText=Fortschritt...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=linke Taste SplitPane.leftButtonText=linke Schaltfl\u00E4che
SplitPane.rightButtonText=rechte Taste SplitPane.rightButtonText=rechte Schaltfl\u00E4che
# Used for Isindex # Used for Isindex
IsindexView.prompt=Dieser Index kann durchsucht werden. Geben Sie ein Schlagwort ein: IsindexView.prompt=Dieser Index kann durchsucht werden. Geben Sie Schl\u00FCsselw\u00F6rter f\u00FCr die Suche ein:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Als Symbol darstellen InternalFrameTitlePane.iconifyButtonAccessibleName=Als Symbol darstellen
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximieren InternalFrameTitlePane.maximizeButtonAccessibleName=Maximieren
InternalFrameTitlePane.closeButtonAccessibleName=Schlie\u00dfen InternalFrameTitlePane.closeButtonAccessibleName=Schlie\u00DFen

View file

@ -45,30 +45,30 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=Archivo gen\u00e9rico FileChooser.fileDescriptionText=Archivo Gen\u00E9rico
FileChooser.directoryDescriptionText=Directorio FileChooser.directoryDescriptionText=Directorio
FileChooser.newFolderErrorText=Error al crear una nueva carpeta FileChooser.newFolderErrorText=Error al crear una nueva carpeta
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=No se ha podido crear la carpeta 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 especificada. 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 de nombre el archivo o la carpeta FileChooser.renameErrorTitleText=Error al cambiar el nombre del archivo o carpeta
FileChooser.renameErrorText=No se puede cambiar de nombre {0} FileChooser.renameErrorText=No se puede cambiar el nombre de {0}
FileChooser.renameErrorFileExistsText=No se puede cambiar de nombre {0}: Ya existe un archivo con el nombre que ha especificado. Especifique otro nombre de archivo. 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.acceptAllFileFilterText=Todos los Archivos
FileChooser.cancelButtonText=Cancelar FileChooser.cancelButtonText=Cancelar
FileChooser.cancelButtonMnemonic=67 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=Guardar FileChooser.saveButtonText=Guardar
FileChooser.saveButtonMnemonic=71 FileChooser.saveButtonMnemonic=83
FileChooser.openButtonText=Abrir FileChooser.openButtonText=Abrir
FileChooser.openButtonMnemonic=65 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Guardar FileChooser.saveDialogTitleText=Guardar
FileChooser.openDialogTitleText=Abrir FileChooser.openDialogTitleText=Abrir
FileChooser.updateButtonText=Actualizar FileChooser.updateButtonText=Actualizar
FileChooser.updateButtonMnemonic=84 FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=Ayuda FileChooser.helpButtonText=Ayuda
FileChooser.helpButtonMnemonic=89 FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=Abrir FileChooser.directoryOpenButtonText=Abrir
FileChooser.directoryOpenButtonMnemonic=82 FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
@ -76,30 +76,30 @@ FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=Carpeta nueva FileChooser.win32.newFolder=Nueva Carpeta
FileChooser.win32.newFolder.subsequent=Carpeta nueva ({0}) FileChooser.win32.newFolder.subsequent=Nueva Carpeta ({0})
FileChooser.other.newFolder=Carpeta nueva FileChooser.other.newFolder=Nueva Carpeta
FileChooser.other.newFolder.subsequent=Carpeta nueva.{0} FileChooser.other.newFolder.subsequent=Nueva Carpeta.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=Cuadro de di\u00e1logo para cancelar elector de archivo FileChooser.cancelButtonToolTipText=Cuadro de di\u00E1logo para abortar el selector de archivos
FileChooser.saveButtonToolTipText=Guardar archivo seleccionado FileChooser.saveButtonToolTipText=Guardar archivo seleccionado
FileChooser.openButtonToolTipText=Abrir archivo seleccionado FileChooser.openButtonToolTipText=Abrir archivo seleccionado
FileChooser.updateButtonToolTipText=Actualizar lista de directorios FileChooser.updateButtonToolTipText=Actualizar lista de directorios
FileChooser.helpButtonToolTipText=Ayuda elector de archivos FileChooser.helpButtonToolTipText=Ayuda del Selector de Archivos
FileChooser.directoryOpenButtonToolTipText=Abrir directorio seleccionado FileChooser.directoryOpenButtonToolTipText=Abrir directorio seleccionado
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=Vista previa ColorChooser.previewText=Presentaci\u00F3n Preliminar
ColorChooser.okText=Aceptar ColorChooser.okText=Aceptar
ColorChooser.cancelText=Cancelar ColorChooser.cancelText=Cancelar
ColorChooser.resetText=Restablecer ColorChooser.resetText=Restablecer
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic # VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
ColorChooser.resetMnemonic=82 ColorChooser.resetMnemonic=82
ColorChooser.sampleText=Texto de ejemplo Texto de ejemplo ColorChooser.sampleText=Texto de Ejemplo Texto de Ejemplo
ColorChooser.swatchesNameText=Muestras ColorChooser.swatchesNameText=Muestras
ColorChooser.swatchesMnemonic=77 ColorChooser.swatchesMnemonic=83
ColorChooser.swatchesRecentText=Reciente: ColorChooser.swatchesRecentText=Reciente:
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX # 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 # constant, and an index into the text to render the mnemonic as. The
@ -107,26 +107,26 @@ ColorChooser.swatchesRecentText=Reciente:
# xxxDisplayedMnemonicIndex. # xxxDisplayedMnemonicIndex.
ColorChooser.hsvNameText=HSV ColorChooser.hsvNameText=HSV
ColorChooser.hsvMnemonic=72 ColorChooser.hsvMnemonic=72
ColorChooser.hsvHueText=Matriz ColorChooser.hsvHueText=Matiz
ColorChooser.hsvSaturationText=Saturaci\u00f3n ColorChooser.hsvSaturationText=Saturaci\u00F3n
ColorChooser.hsvValueText=Valor ColorChooser.hsvValueText=Valor
ColorChooser.hsvTransparencyText=Transparencia ColorChooser.hsvTransparencyText=Transparencia
ColorChooser.hslNameText=HSL ColorChooser.hslNameText=HSL
ColorChooser.hslMnemonic=76 ColorChooser.hslMnemonic=76
ColorChooser.hslHueText=Matriz ColorChooser.hslHueText=Matiz
ColorChooser.hslSaturationText=Saturaci\u00f3n ColorChooser.hslSaturationText=Saturaci\u00F3n
ColorChooser.hslLightnessText=Brillo ColorChooser.hslLightnessText=Iluminaci\u00F3n
ColorChooser.hslTransparencyText=Transparencia ColorChooser.hslTransparencyText=Transparencia
ColorChooser.rgbNameText=RGB ColorChooser.rgbNameText=RGB
ColorChooser.rgbMnemonic=71 ColorChooser.rgbMnemonic=71
ColorChooser.rgbRedText=Rojo ColorChooser.rgbRedText=Rojo
ColorChooser.rgbRedMnemonic=74 ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=Verde ColorChooser.rgbGreenText=Verde
ColorChooser.rgbGreenMnemonic=86 ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=Azul ColorChooser.rgbBlueText=Azul
ColorChooser.rgbBlueMnemonic=76 ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alpha ColorChooser.rgbAlphaText=Alfa
ColorChooser.rgbHexCodeText=C\u00f3digo de color ColorChooser.rgbHexCodeText=C\u00F3digo de Color
ColorChooser.rgbHexCodeMnemonic=67 ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77 ColorChooser.cmykMnemonic=77
@ -134,21 +134,21 @@ ColorChooser.cmykCyanText=Cian
ColorChooser.cmykMagentaText=Magenta ColorChooser.cmykMagentaText=Magenta
ColorChooser.cmykYellowText=Amarillo ColorChooser.cmykYellowText=Amarillo
ColorChooser.cmykBlackText=Negro ColorChooser.cmykBlackText=Negro
ColorChooser.cmykAlphaText=Alpha ColorChooser.cmykAlphaText=Alfa
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant # Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=S\u00ed OptionPane.yesButtonText=S\u00ED
OptionPane.yesButtonMnemonic=83 OptionPane.yesButtonMnemonic=89
OptionPane.noButtonText=No OptionPane.noButtonText=No
OptionPane.noButtonMnemonic=78 OptionPane.noButtonMnemonic=78
OptionPane.okButtonText=Aceptar OptionPane.okButtonText=Aceptar
OptionPane.okButtonMnemonic=0 OptionPane.okButtonMnemonic=0
OptionPane.cancelButtonText=Cancelar OptionPane.cancelButtonText=Cancelar
OptionPane.cancelButtonMnemonic=0 OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=Seleccionar una opci\u00f3n OptionPane.titleText=Seleccionar una Opci\u00F3n
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=Entrada OptionPane.inputDialogTitle=Entrada
@ -157,21 +157,21 @@ OptionPane.inputDialogTitle=Entrada
OptionPane.messageDialogTitle=Mensaje OptionPane.messageDialogTitle=Mensaje
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=Impresi\u00f3n PrintingDialog.titleProgressText=Impresi\u00F3n
PrintingDialog.titleAbortingText=Impresi\u00f3n (cancelaci\u00f3n) PrintingDialog.titleAbortingText=Impresi\u00F3n (Abortando)
PrintingDialog.contentInitialText=Impresi\u00f3n en curso... PrintingDialog.contentInitialText=Impresi\u00F3n en curso...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=P\u00e1gina impresa {0}... PrintingDialog.contentProgressText=P\u00E1gina impresa {0}...
PrintingDialog.contentAbortingText=Cancelando la impresi\u00f3n... PrintingDialog.contentAbortingText=Abortando la impresi\u00F3n...
PrintingDialog.abortButtonText=Cancelar PrintingDialog.abortButtonText=Abortar
PrintingDialog.abortButtonMnemonic=67 PrintingDialog.abortButtonMnemonic=65
PrintingDialog.abortButtonDisplayedMnemonicIndex=0 PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=Cancelar la impresi\u00f3n PrintingDialog.abortButtonToolTipText=Abortar Impresi\u00F3n
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Minimizar InternalFrame.iconButtonToolTip=Minimizar
@ -182,21 +182,21 @@ InternalFrame.closeButtonToolTip=Cerrar
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=Restaurar InternalFrameTitlePane.restoreButtonText=Restaurar
InternalFrameTitlePane.moveButtonText=Mover InternalFrameTitlePane.moveButtonText=Mover
InternalFrameTitlePane.sizeButtonText=Tama\u00f1o InternalFrameTitlePane.sizeButtonText=Tama\u00F1o
InternalFrameTitlePane.minimizeButtonText=Minimizar InternalFrameTitlePane.minimizeButtonText=Minimizar
InternalFrameTitlePane.maximizeButtonText=Maximizar InternalFrameTitlePane.maximizeButtonText=Maximizar
InternalFrameTitlePane.closeButtonText=Cerrar InternalFrameTitlePane.closeButtonText=Cerrar
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=Enviar consulta FormView.submitButtonText=Enviar Consulta
FormView.resetButtonText=Restablecer FormView.resetButtonText=Restablecer
FormView.browseFileButtonText=Examinar... FormView.browseFileButtonText=Examinar...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=cambio de estilo AbstractDocument.styleChangeText=cambio de estilo
AbstractDocument.additionText=adici\u00f3n AbstractDocument.additionText=agregaci\u00F3n
AbstractDocument.deletionText=supresi\u00f3n AbstractDocument.deletionText=supresi\u00F3n
AbstractDocument.undoText=Deshacer AbstractDocument.undoText=Deshacer
AbstractDocument.redoText=Rehacer AbstractDocument.redoText=Rehacer
@ -214,12 +214,12 @@ ComboBox.togglePopupText=togglePopup
ProgressMonitor.progressText=Progreso... ProgressMonitor.progressText=Progreso...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=bot\u00f3n izquierdo SplitPane.leftButtonText=bot\u00F3n izquierdo
SplitPane.rightButtonText=bot\u00f3n derecho SplitPane.rightButtonText=bot\u00F3n derecho
# Used for Isindex # Used for Isindex
IsindexView.prompt=En este \u00edndice se pueden efectuar b\u00fasquedas. Escriba las palabras clave de b\u00fasqueda: IsindexView.prompt=En este \u00EDndice se pueden efectuar b\u00FAsquedas. Escriba las palabras clave de b\u00FAsqueda:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Convertir en icono InternalFrameTitlePane.iconifyButtonAccessibleName=Convertir en Icono
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar
InternalFrameTitlePane.closeButtonAccessibleName=Cerrar InternalFrameTitlePane.closeButtonAccessibleName=Cerrar

View file

@ -45,90 +45,90 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=Fichier g\u00e9n\u00e9rique FileChooser.fileDescriptionText=Fichier g\u00E9n\u00E9rique
FileChooser.directoryDescriptionText=R\u00e9pertoire FileChooser.directoryDescriptionText=R\u00E9pertoire
FileChooser.newFolderErrorText=Erreur lors de la cr\u00e9ation du nouveau dossier FileChooser.newFolderErrorText=Erreur lors de la cr\u00E9ation du dossier
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=Impossible de cr\u00e9er le dossier FileChooser.newFolderParentDoesntExistTitleText=Impossible de cr\u00E9er le dossier
FileChooser.newFolderParentDoesntExistText=Impossible de cr\u00e9er le dossier.\n\nLe syst\u00e8me ne trouve pas le chemin sp\u00e9cifi\u00e9. 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 de la modification du nom du fichier ou du dossier FileChooser.renameErrorTitleText=Erreur lors du changement de nom du fichier ou du dossier
FileChooser.renameErrorText=Impossible de renommer {0} FileChooser.renameErrorText=Impossible de renommer {0}
FileChooser.renameErrorFileExistsText=Impossible de renommer {0}\u00a0: un fichier portant ce nom existe d\u00e9j\u00e0. Choisissez un nom diff\u00e9rent. 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.acceptAllFileFilterText=Tous les fichiers
FileChooser.cancelButtonText=Annuler FileChooser.cancelButtonText=Annuler
FileChooser.cancelButtonMnemonic=65 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=Enregistrer FileChooser.saveButtonText=Enregistrer
FileChooser.saveButtonMnemonic=69 FileChooser.saveButtonMnemonic=83
FileChooser.openButtonText=Ouvrir FileChooser.openButtonText=Ouvrir
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Enregistrer FileChooser.saveDialogTitleText=Enregistrer
FileChooser.openDialogTitleText=Ouvrir FileChooser.openDialogTitleText=Ouvrir
FileChooser.updateButtonText=Mise \u00e0 jour FileChooser.updateButtonText=Mettre \u00E0 jour
FileChooser.updateButtonMnemonic=77 FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=Aide FileChooser.helpButtonText=Aide
FileChooser.helpButtonMnemonic=68 FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=Ouvrir FileChooser.directoryOpenButtonText=Ouvrir
FileChooser.directoryOpenButtonMnemonic=79 FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} Ko FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} Mo FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} Go FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=Nouveau dossier FileChooser.win32.newFolder=Nouveau dossier
FileChooser.win32.newFolder.subsequent=Nouveau dossier ({0}) FileChooser.win32.newFolder.subsequent=Nouveau dossier ({0})
FileChooser.other.newFolder=Nouveau dossier FileChooser.other.newFolder=NewFolder
FileChooser.other.newFolder.subsequent=Nouveau dossier.{0} FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=Ferme la bo\u00eete de dialogue du s\u00e9lecteur de fichiers FileChooser.cancelButtonToolTipText=Ferme la bo\u00EEte de dialogue du s\u00E9lecteur de fichiers
FileChooser.saveButtonToolTipText=Enregistre le fichier s\u00e9lectionn\u00e9 FileChooser.saveButtonToolTipText=Enregistre le fichier s\u00E9lectionn\u00E9
FileChooser.openButtonToolTipText=Ouvre le fichier s\u00e9lectionn\u00e9 FileChooser.openButtonToolTipText=Ouvre le fichier s\u00E9lectionn\u00E9
FileChooser.updateButtonToolTipText=Met \u00e0 jour la liste des r\u00e9pertoires FileChooser.updateButtonToolTipText=Met \u00E0 jour la liste des r\u00E9pertoires
FileChooser.helpButtonToolTipText=Aide sur le s\u00e9lecteur de fichiers FileChooser.helpButtonToolTipText=Aide du s\u00E9lecteur de fichiers
FileChooser.directoryOpenButtonToolTipText=Ouvrir le r\u00e9pertoire s\u00e9lectionn\u00e9 FileChooser.directoryOpenButtonToolTipText=Ouvre le r\u00E9pertoire s\u00E9lectionn\u00E9
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=Aper\u00e7u ColorChooser.previewText=Aper\u00E7u
ColorChooser.okText=OK ColorChooser.okText=OK
ColorChooser.cancelText=Annuler ColorChooser.cancelText=Annuler
ColorChooser.resetText=Restaurer ColorChooser.resetText=R\u00E9initialiser
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic # VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
ColorChooser.resetMnemonic=82 ColorChooser.resetMnemonic=82
ColorChooser.sampleText=Echantillon de texte Echantillon de texte ColorChooser.sampleText=Echantillon de texte Echantillon de texte
ColorChooser.swatchesNameText=Echantillons ColorChooser.swatchesNameText=Echantillons
ColorChooser.swatchesMnemonic=69 ColorChooser.swatchesMnemonic=83
ColorChooser.swatchesRecentText=Dernier : ColorChooser.swatchesRecentText=Dernier :
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX # 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 # 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 # mnemonic is xxxMnemonic and the index of the character to underline is
# xxxDisplayedMnemonicIndex. # xxxDisplayedMnemonicIndex.
ColorChooser.hsvNameText=HSV ColorChooser.hsvNameText=TSV
ColorChooser.hsvMnemonic=72 ColorChooser.hsvMnemonic=72
ColorChooser.hsvHueText=Teinte ColorChooser.hsvHueText=Teinte
ColorChooser.hsvSaturationText=Saturation ColorChooser.hsvSaturationText=Saturation
ColorChooser.hsvValueText=Valeur ColorChooser.hsvValueText=Valeur
ColorChooser.hsvTransparencyText=Transparence ColorChooser.hsvTransparencyText=Transparence
ColorChooser.hslNameText=HSL ColorChooser.hslNameText=TSL
ColorChooser.hslMnemonic=76 ColorChooser.hslMnemonic=76
ColorChooser.hslHueText=Teinte ColorChooser.hslHueText=Teinte
ColorChooser.hslSaturationText=Saturation ColorChooser.hslSaturationText=Saturation
ColorChooser.hslLightnessText=Clart\u00e9 ColorChooser.hslLightnessText=Lumi\u00E8re
ColorChooser.hslTransparencyText=Transparence ColorChooser.hslTransparencyText=Transparence
ColorChooser.rgbNameText=RVB ColorChooser.rgbNameText=RVB
ColorChooser.rgbMnemonic=86 ColorChooser.rgbMnemonic=71
ColorChooser.rgbRedText=Rouge ColorChooser.rgbRedText=Rouge
ColorChooser.rgbRedMnemonic=71 ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=Vert ColorChooser.rgbGreenText=Vert
ColorChooser.rgbGreenMnemonic=84 ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=Bleu ColorChooser.rgbBlueText=Bleu
ColorChooser.rgbBlueMnemonic=66 ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alpha ColorChooser.rgbAlphaText=Alpha
ColorChooser.rgbHexCodeText=Code couleur ColorChooser.rgbHexCodeText=Code couleur
ColorChooser.rgbHexCodeMnemonic=67 ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK ColorChooser.cmykNameText=CMJN
ColorChooser.cmykMnemonic=77 ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Cyan ColorChooser.cmykCyanText=Cyan
ColorChooser.cmykMagentaText=Magenta ColorChooser.cmykMagentaText=Magenta
@ -141,30 +141,30 @@ ColorChooser.cmykAlphaText=Alpha
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=Oui OptionPane.yesButtonText=Oui
OptionPane.yesButtonMnemonic=79 OptionPane.yesButtonMnemonic=89
OptionPane.noButtonText=Non OptionPane.noButtonText=Non
OptionPane.noButtonMnemonic=78 OptionPane.noButtonMnemonic=78
OptionPane.okButtonText=OK OptionPane.okButtonText=OK
OptionPane.okButtonMnemonic=0 OptionPane.okButtonMnemonic=0
OptionPane.cancelButtonText=Annuler OptionPane.cancelButtonText=Annuler
OptionPane.cancelButtonMnemonic=0 OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=S\u00e9lectionnez une option OptionPane.titleText=S\u00E9lectionner une option
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=Entr\u00e9e OptionPane.inputDialogTitle=Entr\u00E9e
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=Message OptionPane.messageDialogTitle=Message
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=Impression PrintingDialog.titleProgressText=Impression
PrintingDialog.titleAbortingText=Impression (Abandon) PrintingDialog.titleAbortingText=Impression (abandon)
PrintingDialog.contentInitialText=Impression en cours... PrintingDialog.contentInitialText=Impression en cours...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=Page imprim\u00e9e {0}... PrintingDialog.contentProgressText=Page {0} imprim\u00E9e...
PrintingDialog.contentAbortingText=Abandon de l'impression... PrintingDialog.contentAbortingText=Abandon de l'impression...
@ -174,38 +174,38 @@ PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=Abandonner l'impression PrintingDialog.abortButtonToolTipText=Abandonner l'impression
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=R\u00e9duire InternalFrame.iconButtonToolTip=R\u00E9duire
InternalFrame.maxButtonToolTip=Agrandir InternalFrame.maxButtonToolTip=Agrandir
InternalFrame.restoreButtonToolTip=Restaurer InternalFrame.restoreButtonToolTip=Restaurer
InternalFrame.closeButtonToolTip=Fermer InternalFrame.closeButtonToolTip=Fermer
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=Restaurer InternalFrameTitlePane.restoreButtonText=Restaurer
InternalFrameTitlePane.moveButtonText=D\u00e9placer InternalFrameTitlePane.moveButtonText=D\u00E9placer
InternalFrameTitlePane.sizeButtonText=Taille InternalFrameTitlePane.sizeButtonText=Taille
InternalFrameTitlePane.minimizeButtonText=R\u00e9duire InternalFrameTitlePane.minimizeButtonText=R\u00E9duire
InternalFrameTitlePane.maximizeButtonText=Agrandir InternalFrameTitlePane.maximizeButtonText=Agrandir
InternalFrameTitlePane.closeButtonText=Fermer InternalFrameTitlePane.closeButtonText=Fermer
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=Soumettre la requ\u00eate FormView.submitButtonText=Soumettre la requ\u00EAte
FormView.resetButtonText=Restaurer FormView.resetButtonText=R\u00E9initialiser
FormView.browseFileButtonText=Parcourir... FormView.browseFileButtonText=Parcourir...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=modification de style AbstractDocument.styleChangeText=modification de style
AbstractDocument.additionText=ajout AbstractDocument.additionText=ajout
AbstractDocument.deletionText=suppression AbstractDocument.deletionText=suppression
AbstractDocument.undoText=D\u00e9faire AbstractDocument.undoText=Annuler
AbstractDocument.redoText=Refaire AbstractDocument.redoText=R\u00E9tablir
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=cliquez sur AbstractButton.clickText=cliquer
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=D\u00e9faire AbstractUndoableEdit.undoText=Annuler
AbstractUndoableEdit.redoText=Refaire AbstractUndoableEdit.redoText=R\u00E9tablir
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=togglePopup ComboBox.togglePopupText=togglePopup
@ -217,9 +217,9 @@ ProgressMonitor.progressText=Progression...
SplitPane.leftButtonText=bouton gauche SplitPane.leftButtonText=bouton gauche
SplitPane.rightButtonText=bouton droit SplitPane.rightButtonText=bouton droit
# Used for Isindex # Used for Isindex
IsindexView.prompt=Ceci est un index de recherche. Tapez des mots-cl\u00e9s pour la recherche : IsindexView.prompt=Ceci est un index de recherche. Tapez des mots-cl\u00E9s pour la recherche :
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=R\u00e9duire InternalFrameTitlePane.iconifyButtonAccessibleName=R\u00E9duire
InternalFrameTitlePane.maximizeButtonAccessibleName=Agrandir InternalFrameTitlePane.maximizeButtonAccessibleName=Agrandir
InternalFrameTitlePane.closeButtonAccessibleName=Fermer InternalFrameTitlePane.closeButtonAccessibleName=Fermer

View file

@ -50,25 +50,25 @@ FileChooser.directoryDescriptionText=Directory
FileChooser.newFolderErrorText=Errore durante la creazione della nuova cartella FileChooser.newFolderErrorText=Errore durante la creazione della nuova cartella
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=Impossibile creare la cartella FileChooser.newFolderParentDoesntExistTitleText=Impossibile creare la cartella
FileChooser.newFolderParentDoesntExistText=Impossibile creare la cartella.\n\nPercorso specificato non trovato nel sistema. FileChooser.newFolderParentDoesntExistText=Impossibile creare la cartella.\n\nIl sistema non \u00E8 in grado di trovare il percorso specificato.
FileChooser.renameErrorTitleText=Errore di ridenominazione del file o della cartella FileChooser.renameErrorTitleText=Errore durante la ridenominazione del file o della cartella
FileChooser.renameErrorText=Impossibile rinominare {0} FileChooser.renameErrorText=Impossibile rinominare {0}
FileChooser.renameErrorFileExistsText=Impossibile rinominare {0}: esiste gi\u00e0 un file con il nome specificato. Specificare un nome file alternativo. FileChooser.renameErrorFileExistsText=Impossibile rinominare {0}: esiste gi\u00E0 un file con il nome specificato. Specificare un altro nome.
FileChooser.acceptAllFileFilterText=Tutti i file FileChooser.acceptAllFileFilterText=Tutti i file
FileChooser.cancelButtonText=Annulla FileChooser.cancelButtonText=Annulla
FileChooser.cancelButtonMnemonic=65 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=Salva FileChooser.saveButtonText=Salva
FileChooser.saveButtonMnemonic=83 FileChooser.saveButtonMnemonic=83
FileChooser.openButtonText=Apri FileChooser.openButtonText=Apri
FileChooser.openButtonMnemonic=80 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Salva FileChooser.saveDialogTitleText=Salva
FileChooser.openDialogTitleText=Apri FileChooser.openDialogTitleText=Apri
FileChooser.updateButtonText=Aggiorna FileChooser.updateButtonText=Aggiorna
FileChooser.updateButtonMnemonic=71 FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=? FileChooser.helpButtonText=?
FileChooser.helpButtonMnemonic=63 FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=Apri FileChooser.directoryOpenButtonText=Apri
FileChooser.directoryOpenButtonMnemonic=82 FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
@ -78,28 +78,28 @@ FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=Nuova cartella FileChooser.win32.newFolder=Nuova cartella
FileChooser.win32.newFolder.subsequent=Nuova cartella ({0}) FileChooser.win32.newFolder.subsequent=Nuova cartella ({0})
FileChooser.other.newFolder=Nuova cartella FileChooser.other.newFolder=NewFolder
FileChooser.other.newFolder.subsequent=Nuova cartella.{0} FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=Finestra di dialogo Interrompi selezione file FileChooser.cancelButtonToolTipText=Chiude la finestra di dialogo di selezione file
FileChooser.saveButtonToolTipText=Salva file selezionato FileChooser.saveButtonToolTipText=Salva il file selezionato
FileChooser.openButtonToolTipText=Apri file selezionato FileChooser.openButtonToolTipText=Apre il file selezionato
FileChooser.updateButtonToolTipText=Aggiorna elenco directory FileChooser.updateButtonToolTipText=Aggiorna la lista directory
FileChooser.helpButtonToolTipText=Guida di Selezione file FileChooser.helpButtonToolTipText=Guida FileChooser
FileChooser.directoryOpenButtonToolTipText=Apri directory selezionata FileChooser.directoryOpenButtonToolTipText=Apre la directory selezionata
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=Anteprima ColorChooser.previewText=Anteprima
ColorChooser.okText=OK ColorChooser.okText=OK
ColorChooser.cancelText=Annulla ColorChooser.cancelText=Annulla
ColorChooser.resetText=Ripristina ColorChooser.resetText=Reimposta
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic # VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
ColorChooser.resetMnemonic=82 ColorChooser.resetMnemonic=82
ColorChooser.sampleText=Testo di prova Testo di prova ColorChooser.sampleText=Testo di prova Testo di prova
ColorChooser.swatchesNameText=Colori campione ColorChooser.swatchesNameText=Colori campione
ColorChooser.swatchesMnemonic=67 ColorChooser.swatchesMnemonic=83
ColorChooser.swatchesRecentText=Recenti: ColorChooser.swatchesRecentText=Recenti:
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX # 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 # constant, and an index into the text to render the mnemonic as. The
@ -107,26 +107,26 @@ ColorChooser.swatchesRecentText=Recenti:
# xxxDisplayedMnemonicIndex. # xxxDisplayedMnemonicIndex.
ColorChooser.hsvNameText=HSV ColorChooser.hsvNameText=HSV
ColorChooser.hsvMnemonic=72 ColorChooser.hsvMnemonic=72
ColorChooser.hsvHueText=Tonalit\u00e0 ColorChooser.hsvHueText=Tonalit\u00E0
ColorChooser.hsvSaturationText=Saturazione ColorChooser.hsvSaturationText=Saturazione
ColorChooser.hsvValueText=Valore ColorChooser.hsvValueText=Valore
ColorChooser.hsvTransparencyText=Trasparenza ColorChooser.hsvTransparencyText=Trasparenza
ColorChooser.hslNameText=HSL ColorChooser.hslNameText=HSL
ColorChooser.hslMnemonic=76 ColorChooser.hslMnemonic=76
ColorChooser.hslHueText=Tonalit\u00e0 ColorChooser.hslHueText=Tonalit\u00E0
ColorChooser.hslSaturationText=Saturazione ColorChooser.hslSaturationText=Saturazione
ColorChooser.hslLightnessText=Luminosit\u00e0 ColorChooser.hslLightnessText=Luminosit\u00E0
ColorChooser.hslTransparencyText=Trasparenza ColorChooser.hslTransparencyText=Trasparenza
ColorChooser.rgbNameText=RGB ColorChooser.rgbNameText=RGB
ColorChooser.rgbMnemonic=71 ColorChooser.rgbMnemonic=71
ColorChooser.rgbRedText=Rosso ColorChooser.rgbRedText=Rosso
ColorChooser.rgbRedMnemonic=79 ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=Verde ColorChooser.rgbGreenText=Verde
ColorChooser.rgbGreenMnemonic=69 ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=Blu ColorChooser.rgbBlueText=Blu
ColorChooser.rgbBlueMnemonic=66 ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alfa ColorChooser.rgbAlphaText=Alfa
ColorChooser.rgbHexCodeText=Codice colore ColorChooser.rgbHexCodeText=Codice colori
ColorChooser.rgbHexCodeMnemonic=67 ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77 ColorChooser.cmykMnemonic=77
@ -140,14 +140,14 @@ ColorChooser.cmykAlphaText=Alfa
# Mnemonic keys correspond to KeyEvent.VK_XXX constant # Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=S\u00ec OptionPane.yesButtonText=S\u00EC
OptionPane.yesButtonMnemonic=83 OptionPane.yesButtonMnemonic=89
OptionPane.noButtonText=No OptionPane.noButtonText=No
OptionPane.noButtonMnemonic=78 OptionPane.noButtonMnemonic=78
OptionPane.okButtonText=OK OptionPane.okButtonText=OK
OptionPane.okButtonMnemonic=79 OptionPane.okButtonMnemonic=0
OptionPane.cancelButtonText=Annulla OptionPane.cancelButtonText=Annulla
OptionPane.cancelButtonMnemonic=65 OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=Selezionare una opzione OptionPane.titleText=Selezionare una opzione
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
@ -169,7 +169,7 @@ PrintingDialog.contentProgressText=Pagina stampata {0}...
PrintingDialog.contentAbortingText=Interruzione della stampa... PrintingDialog.contentAbortingText=Interruzione della stampa...
PrintingDialog.abortButtonText=Interrompi PrintingDialog.abortButtonText=Interrompi
PrintingDialog.abortButtonMnemonic=73 PrintingDialog.abortButtonMnemonic=65
PrintingDialog.abortButtonDisplayedMnemonicIndex=0 PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=Interrompi la stampa PrintingDialog.abortButtonToolTipText=Interrompi la stampa
@ -189,12 +189,12 @@ InternalFrameTitlePane.closeButtonText=Chiudi
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=Invia query FormView.submitButtonText=Sottometti query
FormView.resetButtonText=Ripristina FormView.resetButtonText=Reimposta
FormView.browseFileButtonText=Sfoglia... FormView.browseFileButtonText=Sfoglia...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=cambiamento di stile AbstractDocument.styleChangeText=modifica di stile
AbstractDocument.additionText=aggiunta AbstractDocument.additionText=aggiunta
AbstractDocument.deletionText=eliminazione AbstractDocument.deletionText=eliminazione
AbstractDocument.undoText=Annulla AbstractDocument.undoText=Annulla
@ -217,7 +217,7 @@ ProgressMonitor.progressText=Avanzamento...
SplitPane.leftButtonText=tasto sinistro SplitPane.leftButtonText=tasto sinistro
SplitPane.rightButtonText=tasto destro SplitPane.rightButtonText=tasto destro
# Used for Isindex # Used for Isindex
IsindexView.prompt=Questo \u00e8 un indice di ricerca. Immettere le parole chiave: IsindexView.prompt=Questo \u00E8 un indice di ricerca. Immettere le parole chiave:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Riduci a icona InternalFrameTitlePane.iconifyButtonAccessibleName=Riduci a icona

View file

@ -45,181 +45,181 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=\u6c4e\u7528\u30d5\u30a1\u30a4\u30eb FileChooser.fileDescriptionText=\u6C4E\u7528\u30D5\u30A1\u30A4\u30EB
FileChooser.directoryDescriptionText=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea FileChooser.directoryDescriptionText=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA
FileChooser.newFolderErrorText=\u65b0\u898f\u30d5\u30a9\u30eb\u30c0\u306e\u4f5c\u6210\u306b\u5931\u6557 FileChooser.newFolderErrorText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210\u30A8\u30E9\u30FC
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093 FileChooser.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\u3055\u308c\u305f\u30d1\u30b9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002 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\u306b\u5931\u6557\u3057\u307e\u3057\u305f\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\u3002 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\u3055\u308c\u305f\u540d\u524d\u306e\u30d5\u30a1\u30a4\u30eb\u304c\u3059\u3067\u306b\u5b58\u5728\u3057\u3066\u3044\u307e\u3059\u3002\u5225\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002 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.acceptAllFileFilterText=\u3059\u3079\u3066\u306E\u30D5\u30A1\u30A4\u30EB
FileChooser.cancelButtonText=\u53d6\u6d88\u3057 FileChooser.cancelButtonText=\u53D6\u6D88
FileChooser.cancelButtonMnemonic=67 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=\u4fdd\u5b58 FileChooser.saveButtonText=\u4FDD\u5B58
FileChooser.saveButtonMnemonic=83 FileChooser.saveButtonMnemonic=83
FileChooser.openButtonText=\u958b\u304f FileChooser.openButtonText=\u958B\u304F
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=\u4fdd\u5b58 FileChooser.saveDialogTitleText=\u4FDD\u5B58
FileChooser.openDialogTitleText=\u958b\u304f FileChooser.openDialogTitleText=\u958B\u304F
FileChooser.updateButtonText=\u66f4\u65b0(U) FileChooser.updateButtonText=\u66F4\u65B0
FileChooser.updateButtonMnemonic=85 FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=\u30d8\u30eb\u30d7(H) FileChooser.helpButtonText=\u30D8\u30EB\u30D7
FileChooser.helpButtonMnemonic=72 FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=\u958b\u304f FileChooser.directoryOpenButtonText=\u958B\u304F
FileChooser.directoryOpenButtonMnemonic=79 FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} K \u30d0\u30a4\u30c8 FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0} M \u30d0\u30a4\u30c8 FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} G \u30d0\u30a4\u30c8 FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=\u65b0\u898f\u30d5\u30a9\u30eb\u30c0 FileChooser.win32.newFolder=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
FileChooser.win32.newFolder.subsequent=\u65b0\u898f\u30d5\u30a9\u30eb\u30c0 ({0}) FileChooser.win32.newFolder.subsequent=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0({0})
FileChooser.other.newFolder=\u65b0\u898f\u30d5\u30a9\u30eb\u30c0 FileChooser.other.newFolder=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
FileChooser.other.newFolder.subsequent=\u65b0\u898f\u30d5\u30a9\u30eb\u30c0.{0} FileChooser.other.newFolder.subsequent=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=\u30d5\u30a1\u30a4\u30eb\u30c1\u30e5\u30fc\u30b6\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u7d42\u4e86 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 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\u304f FileChooser.openButtonToolTipText=\u9078\u629E\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u958B\u304D\u307E\u3059
FileChooser.updateButtonToolTipText=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4e00\u89a7\u3092\u66f4\u65b0 FileChooser.updateButtonToolTipText=\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306E\u30EA\u30B9\u30C8\u3092\u66F4\u65B0\u3057\u307E\u3059
FileChooser.helpButtonToolTipText=\u30d5\u30a1\u30a4\u30eb\u30c1\u30e5\u30fc\u30b6\u30d8\u30eb\u30d7 FileChooser.helpButtonToolTipText=FileChooser\u306E\u30D8\u30EB\u30D7\u3067\u3059
FileChooser.directoryOpenButtonToolTipText=\u9078\u629e\u3057\u305f\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u958b\u304f FileChooser.directoryOpenButtonToolTipText=\u9078\u629E\u3057\u305F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u958B\u304D\u307E\u3059
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=\u30d7\u30ec\u30d3\u30e5\u30fc ColorChooser.previewText=\u30D7\u30EC\u30D3\u30E5\u30FC
ColorChooser.okText=\u4e86\u89e3 ColorChooser.okText=OK
ColorChooser.cancelText=\u53d6\u6d88\u3057 ColorChooser.cancelText=\u53D6\u6D88
ColorChooser.resetText=\u30ea\u30bb\u30c3\u30c8(R) ColorChooser.resetText=\u30EA\u30BB\u30C3\u30C8
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic # VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
ColorChooser.resetMnemonic=82 ColorChooser.resetMnemonic=82
ColorChooser.sampleText=\u30b5\u30f3\u30d7\u30eb\u30c6\u30ad\u30b9\u30c8 \u30b5\u30f3\u30d7\u30eb\u30c6\u30ad\u30b9\u30c8 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.swatchesNameText=\u30B5\u30F3\u30D7\u30EB
ColorChooser.swatchesMnemonic=83 ColorChooser.swatchesMnemonic=83
ColorChooser.swatchesRecentText=\u6700\u65b0: ColorChooser.swatchesRecentText=\u6700\u65B0:
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX # 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 # 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 # mnemonic is xxxMnemonic and the index of the character to underline is
# xxxDisplayedMnemonicIndex. # xxxDisplayedMnemonicIndex.
ColorChooser.hsvNameText=HSV ColorChooser.hsvNameText=HSV
ColorChooser.hsvMnemonic=72 ColorChooser.hsvMnemonic=72
ColorChooser.hsvHueText=\u8272\u5408\u3044 ColorChooser.hsvHueText=\u8272\u76F8
ColorChooser.hsvSaturationText=\u5f69\u5ea6 ColorChooser.hsvSaturationText=\u5F69\u5EA6
ColorChooser.hsvValueText=\u5024 ColorChooser.hsvValueText=\u5024
ColorChooser.hsvTransparencyText=\u900f\u660e\u5ea6 ColorChooser.hsvTransparencyText=\u900F\u660E\u5EA6
ColorChooser.hslNameText=HSL ColorChooser.hslNameText=HSL
ColorChooser.hslMnemonic=76 ColorChooser.hslMnemonic=76
ColorChooser.hslHueText=\u8272\u5408\u3044 ColorChooser.hslHueText=\u8272\u76F8
ColorChooser.hslSaturationText=\u5f69\u5ea6 ColorChooser.hslSaturationText=\u5F69\u5EA6
ColorChooser.hslLightnessText=\u660e\u5ea6 ColorChooser.hslLightnessText=\u660E\u5EA6
ColorChooser.hslTransparencyText=\u900f\u660e\u5ea6 ColorChooser.hslTransparencyText=\u900F\u660E\u5EA6
ColorChooser.rgbNameText=RGB ColorChooser.rgbNameText=RGB
ColorChooser.rgbMnemonic=71 ColorChooser.rgbMnemonic=71
ColorChooser.rgbRedText=\u8d64(D) ColorChooser.rgbRedText=\u8D64
ColorChooser.rgbRedMnemonic=68 ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=\u7dd1(N) ColorChooser.rgbGreenText=\u7DD1
ColorChooser.rgbGreenMnemonic=78 ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=\u9752(B) ColorChooser.rgbBlueText=\u9752
ColorChooser.rgbBlueMnemonic=66 ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=\u30a2\u30eb\u30d5\u30a1 ColorChooser.rgbAlphaText=\u30A2\u30EB\u30D5\u30A1
ColorChooser.rgbHexCodeText=\u8272\u30b3\u30fc\u30c9 ColorChooser.rgbHexCodeText=\u8272\u30B3\u30FC\u30C9
ColorChooser.rgbHexCodeMnemonic=67 ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77 ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=\u30b7\u30a2\u30f3 ColorChooser.cmykCyanText=\u30B7\u30A2\u30F3
ColorChooser.cmykMagentaText=\u30de\u30bc\u30f3\u30c0 ColorChooser.cmykMagentaText=\u30DE\u30BC\u30F3\u30BF
ColorChooser.cmykYellowText=\u9ec4 ColorChooser.cmykYellowText=\u9EC4
ColorChooser.cmykBlackText=\u9ed2 ColorChooser.cmykBlackText=\u9ED2
ColorChooser.cmykAlphaText=\u30a2\u30eb\u30d5\u30a1 ColorChooser.cmykAlphaText=\u30A2\u30EB\u30D5\u30A1
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant # Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=\u306f\u3044(Y) OptionPane.yesButtonText=\u306F\u3044
OptionPane.yesButtonMnemonic=89 OptionPane.yesButtonMnemonic=89
OptionPane.noButtonText=\u3044\u3044\u3048(N) OptionPane.noButtonText=\u3044\u3044\u3048
OptionPane.noButtonMnemonic=78 OptionPane.noButtonMnemonic=78
OptionPane.okButtonText=\u4e86\u89e3 OptionPane.okButtonText=OK
OptionPane.okButtonMnemonic=0 OptionPane.okButtonMnemonic=0
OptionPane.cancelButtonText=\u53d6\u6d88\u3057 OptionPane.cancelButtonText=\u53D6\u6D88
OptionPane.cancelButtonMnemonic=0 OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u9078\u629e OptionPane.titleText=\u30AA\u30D7\u30B7\u30E7\u30F3\u306E\u9078\u629E
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=\u5165\u529b OptionPane.inputDialogTitle=\u5165\u529B
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=\u30e1\u30c3\u30bb\u30fc\u30b8 OptionPane.messageDialogTitle=\u30E1\u30C3\u30BB\u30FC\u30B8
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=\u5370\u5237\u3057\u3066\u3044\u307e\u3059 PrintingDialog.titleProgressText=\u5370\u5237\u3057\u3066\u3044\u307E\u3059
PrintingDialog.titleAbortingText=\u5370\u5237\u3092\u4e2d\u6b62\u3057\u3066\u3044\u307e\u3059 PrintingDialog.titleAbortingText=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059
PrintingDialog.contentInitialText=\u5370\u5237\u4e2d... PrintingDialog.contentInitialText=\u5370\u5237\u4E2D...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=\u30da\u30fc\u30b8 {0} \u3092\u5370\u5237\u3057\u307e\u3057\u305f... PrintingDialog.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.contentAbortingText=\u5370\u5237\u3092\u4E2D\u6B62\u3057\u3066\u3044\u307E\u3059...
PrintingDialog.abortButtonText=\u4e2d\u6b62(A) PrintingDialog.abortButtonText=\u4E2D\u6B62
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonMnemonic=65
PrintingDialog.abortButtonDisplayedMnemonicIndex=0 PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=\u5370\u5237\u306e\u4e2d\u6b62 PrintingDialog.abortButtonToolTipText=\u5370\u5237\u306E\u4E2D\u6B62
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=\u30a2\u30a4\u30b3\u30f3\u5316 InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
InternalFrame.maxButtonToolTip=\u6700\u5927\u8868\u793a InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
InternalFrame.restoreButtonToolTip=\u5fa9\u5143 InternalFrame.restoreButtonToolTip=\u5FA9\u5143
InternalFrame.closeButtonToolTip=\u9589\u3058\u308b InternalFrame.closeButtonToolTip=\u9589\u3058\u308B
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=\u5fa9\u5143 InternalFrameTitlePane.restoreButtonText=\u5FA9\u5143
InternalFrameTitlePane.moveButtonText=\u79fb\u52d5 InternalFrameTitlePane.moveButtonText=\u79FB\u52D5
InternalFrameTitlePane.sizeButtonText=\u30b5\u30a4\u30ba InternalFrameTitlePane.sizeButtonText=\u30B5\u30A4\u30BA
InternalFrameTitlePane.minimizeButtonText=\u6700\u5c0f\u5316 InternalFrameTitlePane.minimizeButtonText=\u6700\u5C0F\u5316
InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316 InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316
InternalFrameTitlePane.closeButtonText=\u9589\u3058\u308b InternalFrameTitlePane.closeButtonText=\u9589\u3058\u308B
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=\u554f\u3044\u5408\u308f\u305b\u306e\u5b9f\u884c FormView.submitButtonText=\u554F\u5408\u305B\u306E\u5B9F\u884C
FormView.resetButtonText=\u30ea\u30bb\u30c3\u30c8 FormView.resetButtonText=\u30EA\u30BB\u30C3\u30C8
FormView.browseFileButtonText=\u53c2\u7167... FormView.browseFileButtonText=\u53C2\u7167...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=\u30b9\u30bf\u30a4\u30eb\u5909\u66f4 AbstractDocument.styleChangeText=\u30B9\u30BF\u30A4\u30EB\u5909\u66F4
AbstractDocument.additionText=\u8ffd\u52a0 AbstractDocument.additionText=\u8FFD\u52A0
AbstractDocument.deletionText=\u524a\u9664 AbstractDocument.deletionText=\u524A\u9664
AbstractDocument.undoText=\u5143\u306b\u623b\u3059 AbstractDocument.undoText=\u5143\u306B\u623B\u3059
AbstractDocument.redoText=\u518d\u5b9f\u884c AbstractDocument.redoText=\u3084\u308A\u76F4\u3057
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=\u30af\u30ea\u30c3\u30af AbstractButton.clickText=\u30AF\u30EA\u30C3\u30AF
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=\u5143\u306b\u623b\u3059 AbstractUndoableEdit.undoText=\u5143\u306B\u623B\u3059
AbstractUndoableEdit.redoText=\u518d\u5b9f\u884c AbstractUndoableEdit.redoText=\u3084\u308A\u76F4\u3057
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=\u30c8\u30b0\u30eb\u30dd\u30c3\u30d7\u30a2\u30c3\u30d7 ComboBox.togglePopupText=\u30C8\u30B0\u30EB\u30FB\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=\u9032\u884c\u4e2d... ProgressMonitor.progressText=\u9032\u884C\u4E2D...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=\u5de6\u30dc\u30bf\u30f3 SplitPane.leftButtonText=\u5DE6\u30DC\u30BF\u30F3
SplitPane.rightButtonText=\u53f3\u30dc\u30bf\u30f3 SplitPane.rightButtonText=\u53F3\u30DC\u30BF\u30F3
# Used for Isindex # Used for Isindex
IsindexView.prompt=\u691c\u7d22\u7528\u306e\u7d22\u5f15\u3067\u3059\u3002\u691c\u7d22\u3059\u308b\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044: IsindexView.prompt=\u691C\u7D22\u7528\u306E\u7D22\u5F15\u3067\u3059\u3002\u691C\u7D22\u3059\u308B\u30AD\u30FC\u30EF\u30FC\u30C9\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=\u6700\u5c0f\u5316 InternalFrameTitlePane.iconifyButtonAccessibleName=\u30A2\u30A4\u30B3\u30F3\u5316
InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316 InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316
InternalFrameTitlePane.closeButtonAccessibleName=\u9589\u3058\u308b InternalFrameTitlePane.closeButtonAccessibleName=\u9589\u3058\u308B

View file

@ -45,181 +45,181 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=\uc77c\ubc18 \ud30c\uc77c FileChooser.fileDescriptionText=\uC77C\uBC18 \uD30C\uC77C
FileChooser.directoryDescriptionText=\ub514\ub809\ud1a0\ub9ac FileChooser.directoryDescriptionText=\uB514\uB809\uD1A0\uB9AC
FileChooser.newFolderErrorText=\uc0c8 \ud3f4\ub354 \uc791\uc131 \uc624\ub958 FileChooser.newFolderErrorText=\uC0C8 \uD3F4\uB354\uB97C \uC0DD\uC131\uD558\uB294 \uC911 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4.
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=\ud3f4\ub354\ub97c \ub9cc\ub4e4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. FileChooser.newFolderParentDoesntExistTitleText=\uD3F4\uB354\uB97C \uC0DD\uC131\uD560 \uC218 \uC5C6\uC74C
FileChooser.newFolderParentDoesntExistText=\ud3f4\ub354\ub97c \ub9cc\ub4e4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\n\uc2dc\uc2a4\ud15c\uc5d0\uc11c \uc9c0\uc815\ud55c \uacbd\ub85c\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. 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\uae30 \uc624\ub958 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.renameErrorText={0}\uC758 \uC774\uB984\uC744 \uBC14\uAFC0 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
FileChooser.renameErrorFileExistsText={0}\uc758 \uc774\ub984\uc744 \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc9c0\uc815\ud55c \uc774\ub984\uc758 \ud30c\uc77c\uc774 \uc774\ubbf8 \uc788\uc2b5\ub2c8\ub2e4. \ub2e4\ub978 \ud30c\uc77c \uc774\ub984\uc744 \uc9c0\uc815\ud558\uc2ed\uc2dc\uc624. 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.acceptAllFileFilterText=\uBAA8\uB4E0 \uD30C\uC77C
FileChooser.cancelButtonText=\ucde8\uc18c FileChooser.cancelButtonText=\uCDE8\uC18C
FileChooser.cancelButtonMnemonic=67 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=\uc800\uc7a5 FileChooser.saveButtonText=\uC800\uC7A5
FileChooser.saveButtonMnemonic=83 FileChooser.saveButtonMnemonic=83
FileChooser.openButtonText=\uc5f4\uae30 FileChooser.openButtonText=\uC5F4\uAE30
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=\uc800\uc7a5 FileChooser.saveDialogTitleText=\uC800\uC7A5
FileChooser.openDialogTitleText=\uc5f4\uae30 FileChooser.openDialogTitleText=\uC5F4\uAE30
FileChooser.updateButtonText=\uc5c5\ub370\uc774\ud2b8(U) FileChooser.updateButtonText=\uAC31\uC2E0
FileChooser.updateButtonMnemonic=85 FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=\ub3c4\uc6c0\ub9d0(H) FileChooser.helpButtonText=\uB3C4\uC6C0\uB9D0
FileChooser.helpButtonMnemonic=72 FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=\uc5f4\uae30 FileChooser.directoryOpenButtonText=\uC5F4\uAE30
FileChooser.directoryOpenButtonMnemonic=79 FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0}KB FileChooser.fileSizeKiloBytes={0} KB
FileChooser.fileSizeMegaBytes={0}MB FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0}GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=\uc0c8 \ud3f4\ub354 FileChooser.win32.newFolder=\uC0C8 \uD3F4\uB354
FileChooser.win32.newFolder.subsequent=\uc0c8 \ud3f4\ub354 ({0}) FileChooser.win32.newFolder.subsequent=\uC0C8 \uD3F4\uB354({0})
FileChooser.other.newFolder=\uc0c8 \ud3f4\ub354 FileChooser.other.newFolder=NewFolder
FileChooser.other.newFolder.subsequent=\uc0c8 \ud3f4\ub354.{0} FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=\ud30c\uc77c \uc120\ud0dd \ub300\ud654 \uc0c1\uc790 \uc911\uc9c0 FileChooser.cancelButtonToolTipText=\uD30C\uC77C \uC120\uD0DD\uAE30 \uB300\uD654\uC0C1\uC790 \uC911\uB2E8
FileChooser.saveButtonToolTipText=\uc120\ud0dd\ub41c \ud30c\uc77c \uc800\uc7a5 FileChooser.saveButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C \uC800\uC7A5
FileChooser.openButtonToolTipText=\uc120\ud0dd\ub41c \ud30c\uc77c \uc5f4\uae30 FileChooser.openButtonToolTipText=\uC120\uD0DD\uB41C \uD30C\uC77C \uC5F4\uAE30
FileChooser.updateButtonToolTipText=\ub514\ub809\ud1a0\ub9ac \ubaa9\ub85d \uc5c5\ub370\uc774\ud2b8 FileChooser.updateButtonToolTipText=\uB514\uB809\uD1A0\uB9AC \uBAA9\uB85D \uAC31\uC2E0
FileChooser.helpButtonToolTipText=FileChooser \ub3c4\uc6c0\ub9d0 FileChooser.helpButtonToolTipText=FileChooser \uB3C4\uC6C0\uB9D0
FileChooser.directoryOpenButtonToolTipText=\uc120\ud0dd\ub41c \ub514\ub809\ud1a0\ub9ac \uc5f4\uae30 FileChooser.directoryOpenButtonToolTipText=\uC120\uD0DD\uB41C \uB514\uB809\uD1A0\uB9AC \uC5F4\uAE30
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=\ubbf8\ub9ac\ubcf4\uae30 ColorChooser.previewText=\uBBF8\uB9AC\uBCF4\uAE30
ColorChooser.okText=\ud655\uc778 ColorChooser.okText=\uD655\uC778
ColorChooser.cancelText=\ucde8\uc18c ColorChooser.cancelText=\uCDE8\uC18C
ColorChooser.resetText=\uc7ac\uc124\uc815(R) ColorChooser.resetText=\uC7AC\uC124\uC815
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic # VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
ColorChooser.resetMnemonic=82 ColorChooser.resetMnemonic=82
ColorChooser.sampleText=\uc0d8\ud50c \ud14d\uc2a4\ud2b8 \uc0d8\ud50c \ud14d\uc2a4\ud2b8 ColorChooser.sampleText=\uC0D8\uD50C \uD14D\uC2A4\uD2B8 \uC0D8\uD50C \uD14D\uC2A4\uD2B8
ColorChooser.swatchesNameText=\uacac\ubcf8(S) ColorChooser.swatchesNameText=\uACAC\uBCF8
ColorChooser.swatchesMnemonic=83 ColorChooser.swatchesMnemonic=83
ColorChooser.swatchesRecentText=\ucd5c\uadfc \ubaa9\ub85d: ColorChooser.swatchesRecentText=\uCD5C\uADFC \uBAA9\uB85D:
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX # 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 # 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 # mnemonic is xxxMnemonic and the index of the character to underline is
# xxxDisplayedMnemonicIndex. # xxxDisplayedMnemonicIndex.
ColorChooser.hsvNameText=HSV ColorChooser.hsvNameText=HSV
ColorChooser.hsvMnemonic=72 ColorChooser.hsvMnemonic=72
ColorChooser.hsvHueText=\uc0c9\uc0c1 ColorChooser.hsvHueText=\uC0C9\uC870
ColorChooser.hsvSaturationText=\ucc44\ub3c4 ColorChooser.hsvSaturationText=\uCC44\uB3C4
ColorChooser.hsvValueText=\uac12 ColorChooser.hsvValueText=\uAC12
ColorChooser.hsvTransparencyText=\ud22c\uba85\ub3c4 ColorChooser.hsvTransparencyText=\uD22C\uBA85
ColorChooser.hslNameText=HSL ColorChooser.hslNameText=HSL
ColorChooser.hslMnemonic=76 ColorChooser.hslMnemonic=76
ColorChooser.hslHueText=\uc0c9\uc0c1 ColorChooser.hslHueText=\uC0C9\uC870
ColorChooser.hslSaturationText=\ucc44\ub3c4 ColorChooser.hslSaturationText=\uCC44\uB3C4
ColorChooser.hslLightnessText=\ubc1d\uae30 ColorChooser.hslLightnessText=\uBC1D\uAE30
ColorChooser.hslTransparencyText=\ud22c\uba85\ub3c4 ColorChooser.hslTransparencyText=\uD22C\uBA85
ColorChooser.rgbNameText=RGB ColorChooser.rgbNameText=RGB
ColorChooser.rgbMnemonic=71 ColorChooser.rgbMnemonic=71
ColorChooser.rgbRedText=\ube68\uac04\uc0c9(D) ColorChooser.rgbRedText=\uBE68\uAC04\uC0C9
ColorChooser.rgbRedMnemonic=68 ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=\ub179\uc0c9(N) ColorChooser.rgbGreenText=\uB179\uC0C9
ColorChooser.rgbGreenMnemonic=78 ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=\ud30c\ub780\uc0c9(B) ColorChooser.rgbBlueText=\uD30C\uB780\uC0C9
ColorChooser.rgbBlueMnemonic=66 ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=\uc54c\ud30c ColorChooser.rgbAlphaText=\uC54C\uD30C
ColorChooser.rgbHexCodeText=\uceec\ub7ec \ucf54\ub4dc ColorChooser.rgbHexCodeText=\uC0C9\uC0C1 \uCF54\uB4DC
ColorChooser.rgbHexCodeMnemonic=67 ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77 ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=\uccad\ub85d\uc0c9 ColorChooser.cmykCyanText=\uCCAD\uB85D\uC0C9
ColorChooser.cmykMagentaText=\uc790\ud64d\uc0c9 ColorChooser.cmykMagentaText=\uC9C4\uD64D\uC0C9
ColorChooser.cmykYellowText=\ub178\ub780\uc0c9 ColorChooser.cmykYellowText=\uB178\uB780\uC0C9
ColorChooser.cmykBlackText=\ud751\uc0c9 ColorChooser.cmykBlackText=\uAC80\uC815\uC0C9
ColorChooser.cmykAlphaText=\uc54c\ud30c ColorChooser.cmykAlphaText=\uC54C\uD30C
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant # Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=\uc608(Y) OptionPane.yesButtonText=\uC608
OptionPane.yesButtonMnemonic=89 OptionPane.yesButtonMnemonic=89
OptionPane.noButtonText=\uc544\ub2c8\uc624(N) OptionPane.noButtonText=\uC544\uB2C8\uC624
OptionPane.noButtonMnemonic=78 OptionPane.noButtonMnemonic=78
OptionPane.okButtonText=\ud655\uc778 OptionPane.okButtonText=\uD655\uC778
OptionPane.okButtonMnemonic=0 OptionPane.okButtonMnemonic=0
OptionPane.cancelButtonText=\ucde8\uc18c OptionPane.cancelButtonText=\uCDE8\uC18C
OptionPane.cancelButtonMnemonic=0 OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=\uc635\uc158 \uc120\ud0dd OptionPane.titleText=\uC635\uC158 \uC120\uD0DD
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=\uc785\ub825 OptionPane.inputDialogTitle=\uC785\uB825
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=\uba54\uc2dc\uc9c0 OptionPane.messageDialogTitle=\uBA54\uC2DC\uC9C0
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=\uc778\uc1c4 PrintingDialog.titleProgressText=\uC778\uC1C4
PrintingDialog.titleAbortingText=\uc778\uc1c4 (\uc911\uc9c0) PrintingDialog.titleAbortingText=\uC778\uC1C4(\uC911\uB2E8 \uC911)
PrintingDialog.contentInitialText=\uc778\uc1c4 \uc9c4\ud589 \uc911... PrintingDialog.contentInitialText=\uC778\uC1C4 \uC9C4\uD589 \uC911...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=\uc778\uc1c4\ub41c \ud398\uc774\uc9c0 {0}... PrintingDialog.contentProgressText=\uC778\uC1C4\uB41C \uD398\uC774\uC9C0 {0}...
PrintingDialog.contentAbortingText=\uc778\uc1c4 \uc911\uc9c0... PrintingDialog.contentAbortingText=\uC778\uC1C4 \uC911\uB2E8 \uC911...
PrintingDialog.abortButtonText=\uc911\uc9c0(A) PrintingDialog.abortButtonText=\uC911\uB2E8
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonMnemonic=65
PrintingDialog.abortButtonDisplayedMnemonicIndex=0 PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=\uc778\uc1c4 \uc911\uc9c0 PrintingDialog.abortButtonToolTipText=\uC778\uC1C4 \uC911\uB2E8
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=\ucd5c\uc18c\ud654 InternalFrame.iconButtonToolTip=\uCD5C\uC18C\uD654
InternalFrame.maxButtonToolTip=\ucd5c\ub300\ud654 InternalFrame.maxButtonToolTip=\uCD5C\uB300\uD654
InternalFrame.restoreButtonToolTip=\ubcf5\uc6d0 InternalFrame.restoreButtonToolTip=\uBCF5\uC6D0
InternalFrame.closeButtonToolTip=\ub2eb\uae30 InternalFrame.closeButtonToolTip=\uB2EB\uAE30
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=\ubcf5\uc6d0 InternalFrameTitlePane.restoreButtonText=\uBCF5\uC6D0
InternalFrameTitlePane.moveButtonText=\uc774\ub3d9 InternalFrameTitlePane.moveButtonText=\uC774\uB3D9
InternalFrameTitlePane.sizeButtonText=\ud06c\uae30 InternalFrameTitlePane.sizeButtonText=\uD06C\uAE30
InternalFrameTitlePane.minimizeButtonText=\ucd5c\uc18c\ud654 InternalFrameTitlePane.minimizeButtonText=\uCD5C\uC18C\uD654
InternalFrameTitlePane.maximizeButtonText=\ucd5c\ub300\ud654 InternalFrameTitlePane.maximizeButtonText=\uCD5C\uB300\uD654
InternalFrameTitlePane.closeButtonText=\ub2eb\uae30 InternalFrameTitlePane.closeButtonText=\uB2EB\uAE30
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=\uc9c8\uc758 \uc81c\ucd9c FormView.submitButtonText=\uC9C8\uC758 \uC81C\uCD9C
FormView.resetButtonText=\uc7ac\uc124\uc815 FormView.resetButtonText=\uC7AC\uC124\uC815
FormView.browseFileButtonText=\ucc3e\uc544\ubcf4\uae30... FormView.browseFileButtonText=\uCC3E\uC544\uBCF4\uAE30...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=\uc2a4\ud0c0\uc77c \ubcc0\uacbd AbstractDocument.styleChangeText=\uC2A4\uD0C0\uC77C \uBCC0\uACBD
AbstractDocument.additionText=\ucd94\uac00 AbstractDocument.additionText=\uCD94\uAC00
AbstractDocument.deletionText=\uc0ad\uc81c AbstractDocument.deletionText=\uC0AD\uC81C
AbstractDocument.undoText=\uc2e4\ud589 \ucde8\uc18c AbstractDocument.undoText=\uC2E4\uD589 \uCDE8\uC18C
AbstractDocument.redoText=\uc7ac\uc2e4\ud589 AbstractDocument.redoText=\uC7AC\uC2E4\uD589
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=\ub204\ub974\uae30 AbstractButton.clickText=\uB204\uB974\uAE30
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=\uc2e4\ud589 \ucde8\uc18c AbstractUndoableEdit.undoText=\uC2E4\uD589 \uCDE8\uC18C
AbstractUndoableEdit.redoText=\uc7ac\uc2e4\ud589 AbstractUndoableEdit.redoText=\uC7AC\uC2E4\uD589
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=\ud1a0\uae00\ud31d\uc5c5 ComboBox.togglePopupText=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=\uc9c4\ud589... ProgressMonitor.progressText=\uC9C4\uD589...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=\uc67c\ucabd \ubc84\ud2bc SplitPane.leftButtonText=\uC67C\uCABD \uB2E8\uCD94
SplitPane.rightButtonText=\uc624\ub978\ucabd \ubc84\ud2bc SplitPane.rightButtonText=\uC624\uB978\uCABD \uB2E8\uCD94
# Used for Isindex # Used for Isindex
IsindexView.prompt=\ub2e4\uc74c\uc740 \uac80\uc0c9 \uac00\ub2a5\ud55c \uc778\ub371\uc2a4\uc785\ub2c8\ub2e4. \uac80\uc0c9 \ud0a4\uc6cc\ub4dc\ub97c \uc785\ub825\ud558\uc2ed\uc2dc\uc624: IsindexView.prompt=\uB2E4\uC74C\uC740 \uAC80\uC0C9 \uAC00\uB2A5\uD55C \uC778\uB371\uC2A4\uC785\uB2C8\uB2E4. \uAC80\uC0C9 \uD0A4\uC6CC\uB4DC \uC785\uB825:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=\uc544\uc774\ucf58\ud654 InternalFrameTitlePane.iconifyButtonAccessibleName=\uC544\uC774\uCF58\uD654
InternalFrameTitlePane.maximizeButtonAccessibleName=\ucd5c\ub300\ud654 InternalFrameTitlePane.maximizeButtonAccessibleName=\uCD5C\uB300\uD654
InternalFrameTitlePane.closeButtonAccessibleName=\ub2eb\uae30 InternalFrameTitlePane.closeButtonAccessibleName=\uB2EB\uAE30

View file

@ -45,11 +45,16 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=Arquivo gen\u00e9rico FileChooser.fileDescriptionText=Arquivo Gen\u00E9rico
FileChooser.directoryDescriptionText=Diret\u00f3rio FileChooser.directoryDescriptionText=Diret\u00F3rio
FileChooser.newFolderErrorText=Erro ao criar nova pasta FileChooser.newFolderErrorText=Erro ao criar nova pasta
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.acceptAllFileFilterText=Todos os arquivos 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.cancelButtonText=Cancelar
FileChooser.cancelButtonMnemonic=67 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=Salvar FileChooser.saveButtonText=Salvar
@ -71,19 +76,19 @@ FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=Nova pasta FileChooser.win32.newFolder=Nova Pasta
FileChooser.win32.newFolder.subsequent=Nova pasta ({0}) FileChooser.win32.newFolder.subsequent=Nova Pasta ({0})
FileChooser.other.newFolder=NewFolder FileChooser.other.newFolder=NewFolder
FileChooser.other.newFolder.subsequent=NewFolder.{0} FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=Anular caixa de di\u00e1logo do seletor de arquivos FileChooser.cancelButtonToolTipText=Abortar caixa de di\u00E1logo do seletor de arquivos
FileChooser.saveButtonToolTipText=Salvar arquivo selecionado FileChooser.saveButtonToolTipText=Salvar arquivo selecionado
FileChooser.openButtonToolTipText=Abrir arquivo selecionado FileChooser.openButtonToolTipText=Abrir arquivo selecionado
FileChooser.updateButtonToolTipText=Atualizar lista de diret\u00f3rios FileChooser.updateButtonToolTipText=Atualizar lista de diret\u00F3rios
FileChooser.helpButtonToolTipText=Ajuda do FileChooser FileChooser.helpButtonToolTipText=Ajuda do FileChooser
FileChooser.directoryOpenButtonToolTipText=Abrir diret\u00f3rio selecionado FileChooser.directoryOpenButtonToolTipText=Abrir diret\u00F3rio selecionado
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=Visualizar ColorChooser.previewText=Visualizar
@ -92,33 +97,44 @@ ColorChooser.cancelText=Cancelar
ColorChooser.resetText=Redefinir ColorChooser.resetText=Redefinir
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic # VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
ColorChooser.resetMnemonic=82 ColorChooser.resetMnemonic=82
ColorChooser.sampleText=Texto de amostra Texto de amostra ColorChooser.sampleText=Texto de Amostra Texto de Amostra
ColorChooser.swatchesNameText=Amostras ColorChooser.swatchesNameText=Amostras
ColorChooser.swatchesMnemonic=83 ColorChooser.swatchesMnemonic=83
ColorChooser.swatchesDisplayedMnemonicIndex=0
ColorChooser.swatchesRecentText=Recente: ColorChooser.swatchesRecentText=Recente:
ColorChooser.hsbNameText=HSB
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX # 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 # 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 # mnemonic is xxxMnemonic and the index of the character to underline is
# xxxDisplayedMnemonicIndex. # xxxDisplayedMnemonicIndex.
ColorChooser.hsbMnemonic=72 ColorChooser.hsvNameText=HSV
ColorChooser.hsbDisplayedMnemonicIndex=0 ColorChooser.hsvMnemonic=72
ColorChooser.hsbHueText=H ColorChooser.hsvHueText=Matiz
ColorChooser.hsbSaturationText=S ColorChooser.hsvSaturationText=Satura\u00E7\u00E3o
ColorChooser.hsbBrightnessText=B ColorChooser.hsvValueText=Valor
ColorChooser.hsbRedText=R ColorChooser.hsvTransparencyText=Transpar\u00EAncia
ColorChooser.hsbGreenText=G ColorChooser.hslNameText=HSL
ColorChooser.hsbBlueText=B ColorChooser.hslMnemonic=76
ColorChooser.hslHueText=Matiz
ColorChooser.hslSaturationText=Satura\u00E7\u00E3o
ColorChooser.hslLightnessText=Clareza
ColorChooser.hslTransparencyText=Transpar\u00EAncia
ColorChooser.rgbNameText=RGB ColorChooser.rgbNameText=RGB
ColorChooser.rgbMnemonic=71 ColorChooser.rgbMnemonic=71
ColorChooser.rgbDisplayedMnemonicIndex=1
ColorChooser.rgbRedText=Vermelho ColorChooser.rgbRedText=Vermelho
ColorChooser.rgbRedMnemonic=68 ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=Verde ColorChooser.rgbGreenText=Verde
ColorChooser.rgbGreenMnemonic=78 ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=Azul ColorChooser.rgbBlueText=Azul
ColorChooser.rgbBlueMnemonic=66 ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alfa
ColorChooser.rgbHexCodeText=C\u00F3digo da Cor
ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Ciano
ColorChooser.cmykMagentaText=Magenta
ColorChooser.cmykYellowText=Amarelo
ColorChooser.cmykBlackText=Preto
ColorChooser.cmykAlphaText=Alfa
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant # Mnemonic keys correspond to KeyEvent.VK_XXX constant
@ -126,13 +142,13 @@ ColorChooser.rgbBlueMnemonic=66
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=Sim OptionPane.yesButtonText=Sim
OptionPane.yesButtonMnemonic=89 OptionPane.yesButtonMnemonic=89
OptionPane.noButtonText=N\u00e3o OptionPane.noButtonText=N\u00E3o
OptionPane.noButtonMnemonic=78 OptionPane.noButtonMnemonic=78
OptionPane.okButtonText=OK OptionPane.okButtonText=OK
OptionPane.okButtonMnemonic=0 OptionPane.okButtonMnemonic=0
OptionPane.cancelButtonText=Cancelar OptionPane.cancelButtonText=Cancelar
OptionPane.cancelButtonMnemonic=0 OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=Selecionar uma op\u00e7\u00e3o OptionPane.titleText=Selecionar uma Op\u00E7\u00E3o
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=Entrada OptionPane.inputDialogTitle=Entrada
@ -141,21 +157,21 @@ OptionPane.inputDialogTitle=Entrada
OptionPane.messageDialogTitle=Mensagem OptionPane.messageDialogTitle=Mensagem
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=Impress\u00e3o PrintingDialog.titleProgressText=Impress\u00E3o
PrintingDialog.titleAbortingText=Impress\u00e3o (Anulando) PrintingDialog.titleAbortingText=Impress\u00E3o (Abortando)
PrintingDialog.contentInitialText=Impress\u00e3o em andamento... PrintingDialog.contentInitialText=Impress\u00E3o em andamento...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=P\u00e1gina imprimida {0}... PrintingDialog.contentProgressText=P\u00E1gina impressa {0}...
PrintingDialog.contentAbortingText=Anulando impress\u00e3o... PrintingDialog.contentAbortingText=Abortando impress\u00E3o...
PrintingDialog.abortButtonText=Anular PrintingDialog.abortButtonText=Abortar
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonMnemonic=65
PrintingDialog.abortButtonDisplayedMnemonicIndex=0 PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=Anular impress\u00e3o PrintingDialog.abortButtonToolTipText=Abortar Impress\u00E3o
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Minimizar InternalFrame.iconButtonToolTip=Minimizar
@ -173,14 +189,14 @@ InternalFrameTitlePane.closeButtonText=Fechar
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=Enviar consulta FormView.submitButtonText=Submeter Consulta
FormView.resetButtonText=Redefinir FormView.resetButtonText=Redefinir
FormView.browseFileButtonText=Explorar... FormView.browseFileButtonText=Procurar...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=altera\u00e7\u00e3o de estilo AbstractDocument.styleChangeText=altera\u00E7\u00E3o de estilo
AbstractDocument.additionText=adi\u00e7\u00e3o AbstractDocument.additionText=adi\u00E7\u00E3o
AbstractDocument.deletionText=exclus\u00e3o AbstractDocument.deletionText=dele\u00E7\u00E3o
AbstractDocument.undoText=Desfazer AbstractDocument.undoText=Desfazer
AbstractDocument.redoText=Refazer AbstractDocument.redoText=Refazer
@ -198,12 +214,12 @@ ComboBox.togglePopupText=togglePopup
ProgressMonitor.progressText=Progresso... ProgressMonitor.progressText=Progresso...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=bot\u00e3o esquerdo SplitPane.leftButtonText=bot\u00E3o esquerdo
SplitPane.rightButtonText=bot\u00e3o direito SplitPane.rightButtonText=bot\u00E3o direito
# Used for Isindex # Used for Isindex
IsindexView.prompt=Trata-se de um \u00edndice pesquis\u00e1vel. Insira as palavras-chave de pesquisa: IsindexView.prompt=Trata-se de um \u00EDndice pesquis\u00E1vel. Informe as palavras-chave de pesquisa:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Iconificar InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar InternalFrameTitlePane.maximizeButtonAccessibleName=Maximizar
InternalFrameTitlePane.closeButtonAccessibleName=Fechar InternalFrameTitlePane.closeButtonAccessibleName=Fechar

View file

@ -47,28 +47,28 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=Generisk fil FileChooser.fileDescriptionText=Generisk fil
FileChooser.directoryDescriptionText=Katalog FileChooser.directoryDescriptionText=Katalog
FileChooser.newFolderErrorText=Fel d\u00e5 ny mapp skapades FileChooser.newFolderErrorText=Fel uppstod n\u00E4r ny mapp skapades
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=Det gick inte att skapa mappen FileChooser.newFolderParentDoesntExistTitleText=Kan inte skapa mappen
FileChooser.newFolderParentDoesntExistText=Det gick inte att skapa mappen.\n\nSystemet hittade inte den angivna s\u00f6kv\u00e4gen. FileChooser.newFolderParentDoesntExistText=Kan inte skapa mappen.\n\nSystemet kan inte hitta angiven s\u00F6kv\u00E4g.
FileChooser.renameErrorTitleText=Det gick inte att byta namn p\u00e5 filen eller mappen FileChooser.renameErrorTitleText=Ett fel intr\u00E4ffade vid f\u00F6rs\u00F6k att \u00E4ndra namn p\u00E5 fil eller mapp
FileChooser.renameErrorText=Det gick inte byta namn p\u00e5 {0} FileChooser.renameErrorText=Kan inte namn\u00E4ndra {0}
FileChooser.renameErrorFileExistsText=Det gick inte byta namn p\u00e5 {0}: Det finns redan en fil med det namnet. Ge den ett annat namn. FileChooser.renameErrorFileExistsText=Kan inte namn\u00E4ndra {0}: En fil med angivet namn finns redan. Ange ett annat filnamn.
FileChooser.acceptAllFileFilterText=Alla filer FileChooser.acceptAllFileFilterText=Alla filer
FileChooser.cancelButtonText=Avbryt FileChooser.cancelButtonText=Avbryt
FileChooser.cancelButtonMnemonic=65 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=Spara FileChooser.saveButtonText=Spara
FileChooser.saveButtonMnemonic=83 FileChooser.saveButtonMnemonic=83
FileChooser.openButtonText=\u00d6ppna FileChooser.openButtonText=\u00D6ppna
FileChooser.openButtonMnemonic=78 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=Spara FileChooser.saveDialogTitleText=Spara
FileChooser.openDialogTitleText=\u00d6ppna FileChooser.openDialogTitleText=\u00D6ppna
FileChooser.updateButtonText=Uppdatera FileChooser.updateButtonText=Uppdatera
FileChooser.updateButtonMnemonic=85 FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=Hj\u00e4lp FileChooser.helpButtonText=Hj\u00E4lp
FileChooser.helpButtonMnemonic=72 FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=\u00d6ppna FileChooser.directoryOpenButtonText=\u00D6ppna
FileChooser.directoryOpenButtonMnemonic=80 FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
FileChooser.fileSizeKiloBytes={0} KB FileChooser.fileSizeKiloBytes={0} KB
@ -84,53 +84,53 @@ FileChooser.other.newFolder.subsequent=Ny mapp.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=Avbryt filvalsdialogruta FileChooser.cancelButtonToolTipText=Avbryt filvalsdialogruta
FileChooser.saveButtonToolTipText=Spara markerad fil FileChooser.saveButtonToolTipText=Spara vald fil
FileChooser.openButtonToolTipText=\u00d6ppna markerad fil FileChooser.openButtonToolTipText=\u00D6ppna vald fil
FileChooser.updateButtonToolTipText=Uppdatera kataloglistan FileChooser.updateButtonToolTipText=Uppdatera kataloglistan
FileChooser.helpButtonToolTipText=Hj\u00e4lp - Filv\u00e4ljare FileChooser.helpButtonToolTipText=Hj\u00E4lp - Filv\u00E4ljare
FileChooser.directoryOpenButtonToolTipText=\u00d6ppnar den markerade katalogen FileChooser.directoryOpenButtonToolTipText=\u00D6ppna vald katalog
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=Granska ColorChooser.previewText=Granska
ColorChooser.okText=OK ColorChooser.okText=OK
ColorChooser.cancelText=Avbryt ColorChooser.cancelText=Avbryt
ColorChooser.resetText=\u00c5terst\u00e4ll ColorChooser.resetText=\u00C5terst\u00E4ll
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic # VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
ColorChooser.resetMnemonic=84 ColorChooser.resetMnemonic=82
ColorChooser.sampleText=Exempeltext Exempeltext ColorChooser.sampleText=Exempeltext Exempeltext
ColorChooser.swatchesNameText=Prov ColorChooser.swatchesNameText=Prov
ColorChooser.swatchesMnemonic=80 ColorChooser.swatchesMnemonic=83
ColorChooser.swatchesRecentText=Tidigare: ColorChooser.swatchesRecentText=Senaste:
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX # 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 # 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 # mnemonic is xxxMnemonic and the index of the character to underline is
# xxxDisplayedMnemonicIndex. # xxxDisplayedMnemonicIndex.
ColorChooser.hsvNameText=NMI ColorChooser.hsvNameText=HSV
ColorChooser.hsvMnemonic=72 ColorChooser.hsvMnemonic=72
ColorChooser.hsvHueText=Nyans ColorChooser.hsvHueText=Nyans
ColorChooser.hsvSaturationText=M\u00e4ttnad ColorChooser.hsvSaturationText=M\u00E4ttnad
ColorChooser.hsvValueText=V\u00e4rde ColorChooser.hsvValueText=V\u00E4rde
ColorChooser.hsvTransparencyText=Genomskinlighet ColorChooser.hsvTransparencyText=Transparens
ColorChooser.hslNameText=HSL ColorChooser.hslNameText=HSL
ColorChooser.hslMnemonic=76 ColorChooser.hslMnemonic=76
ColorChooser.hslHueText=Nyans ColorChooser.hslHueText=Nyans
ColorChooser.hslSaturationText=M\u00e4ttnad ColorChooser.hslSaturationText=M\u00E4ttnad
ColorChooser.hslLightnessText=Ljusstyrka ColorChooser.hslLightnessText=Ljusstyrka
ColorChooser.hslTransparencyText=Genomskinlighet ColorChooser.hslTransparencyText=Transparens
ColorChooser.rgbNameText=RGB ColorChooser.rgbNameText=RGB
ColorChooser.rgbMnemonic=71 ColorChooser.rgbMnemonic=71
ColorChooser.rgbRedText=R\u00f6d ColorChooser.rgbRedText=R\u00F6d
ColorChooser.rgbRedMnemonic=82 ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=Gr\u00f6n ColorChooser.rgbGreenText=Gr\u00F6n
ColorChooser.rgbGreenMnemonic=71 ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=Bl\u00e5 ColorChooser.rgbBlueText=Bl\u00E5
ColorChooser.rgbBlueMnemonic=66 ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alfa ColorChooser.rgbAlphaText=Alfa
ColorChooser.rgbHexCodeText=F\u00e4rgkod ColorChooser.rgbHexCodeText=F\u00E4rgkod
ColorChooser.rgbHexCodeMnemonic=67 ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77 ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=Cyanbl\u00e5 ColorChooser.cmykCyanText=Cyan
ColorChooser.cmykMagentaText=Magenta ColorChooser.cmykMagentaText=Magenta
ColorChooser.cmykYellowText=Gul ColorChooser.cmykYellowText=Gul
ColorChooser.cmykBlackText=Svart ColorChooser.cmykBlackText=Svart
@ -141,14 +141,14 @@ ColorChooser.cmykAlphaText=Alfa
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=Ja OptionPane.yesButtonText=Ja
OptionPane.yesButtonMnemonic=74 OptionPane.yesButtonMnemonic=89
OptionPane.noButtonText=Nej OptionPane.noButtonText=Nej
OptionPane.noButtonMnemonic=78 OptionPane.noButtonMnemonic=78
OptionPane.okButtonText=OK OptionPane.okButtonText=OK
OptionPane.okButtonMnemonic=0 OptionPane.okButtonMnemonic=0
OptionPane.cancelButtonText=Avbryt OptionPane.cancelButtonText=Avbryt
OptionPane.cancelButtonMnemonic=0 OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=V\u00e4lj ett alternativ OptionPane.titleText=V\u00E4lj ett alternativ
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=Indata OptionPane.inputDialogTitle=Indata
@ -160,7 +160,7 @@ OptionPane.messageDialogTitle=Meddelande
PrintingDialog.titleProgressText=Skriver ut PrintingDialog.titleProgressText=Skriver ut
PrintingDialog.titleAbortingText=Skriver ut (avbryter) PrintingDialog.titleAbortingText=Skriver ut (avbryter)
PrintingDialog.contentInitialText=Utskrift p\u00e5g\u00e5r... PrintingDialog.contentInitialText=Utskrift p\u00E5g\u00E5r...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
@ -176,50 +176,50 @@ PrintingDialog.abortButtonToolTipText=Avbryt utskrift
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=Minimera InternalFrame.iconButtonToolTip=Minimera
InternalFrame.maxButtonToolTip=Maximera InternalFrame.maxButtonToolTip=Maximera
InternalFrame.restoreButtonToolTip=\u00c5terst\u00e4ll InternalFrame.restoreButtonToolTip=\u00C5terst\u00E4ll
InternalFrame.closeButtonToolTip=St\u00e4ng InternalFrame.closeButtonToolTip=St\u00E4ng
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=\u00c5terst\u00e4ll InternalFrameTitlePane.restoreButtonText=\u00C5terst\u00E4ll
InternalFrameTitlePane.moveButtonText=Flytta InternalFrameTitlePane.moveButtonText=Flytta
InternalFrameTitlePane.sizeButtonText=Storlek InternalFrameTitlePane.sizeButtonText=Storlek
InternalFrameTitlePane.minimizeButtonText=Minimera InternalFrameTitlePane.minimizeButtonText=Minimera
InternalFrameTitlePane.maximizeButtonText=Maximera InternalFrameTitlePane.maximizeButtonText=Maximera
InternalFrameTitlePane.closeButtonText=St\u00e4ng InternalFrameTitlePane.closeButtonText=St\u00E4ng
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=Skicka fr\u00e5ga FormView.submitButtonText=Skicka fr\u00E5ga
FormView.resetButtonText=\u00c5terst\u00e4ll FormView.resetButtonText=\u00C5terst\u00E4ll
FormView.browseFileButtonText=Bl\u00e4ddra... FormView.browseFileButtonText=Bl\u00E4ddra...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=snittbyte AbstractDocument.styleChangeText=format\u00E4ndring
AbstractDocument.additionText=till\u00e4gg AbstractDocument.additionText=till\u00E4gg
AbstractDocument.deletionText=radering AbstractDocument.deletionText=borttagning
AbstractDocument.undoText=\u00c5ngra AbstractDocument.undoText=\u00C5ngra
AbstractDocument.redoText=G\u00f6r om AbstractDocument.redoText=G\u00F6r om
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=klicka AbstractButton.clickText=klicka
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=\u00c5ngra AbstractUndoableEdit.undoText=\u00C5ngra
AbstractUndoableEdit.redoText=G\u00f6r om AbstractUndoableEdit.redoText=G\u00F6r om
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=v\u00e4xlaPopup ComboBox.togglePopupText=v\u00E4xlaPopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=Status... ProgressMonitor.progressText=P\u00E5g\u00E5r...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=v\u00e4nster knapp SplitPane.leftButtonText=v\u00E4nster knapp
SplitPane.rightButtonText=h\u00f6ger knapp SplitPane.rightButtonText=h\u00F6ger knapp
# Used for Isindex # Used for Isindex
IsindexView.prompt=Detta \u00e4r ett s\u00f6kbart index. Ange nyckelord f\u00f6r s\u00f6kningen: IsindexView.prompt=Detta \u00E4r ett s\u00F6kbart index. Ange s\u00F6kord:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=Minimera InternalFrameTitlePane.iconifyButtonAccessibleName=Minimera
InternalFrameTitlePane.maximizeButtonAccessibleName=Maximera InternalFrameTitlePane.maximizeButtonAccessibleName=Maximera
InternalFrameTitlePane.closeButtonAccessibleName=St\u00e4ng InternalFrameTitlePane.closeButtonAccessibleName=St\u00E4ng

View file

@ -45,29 +45,29 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=\u666e\u901a\u7684\u6587\u4ef6 FileChooser.fileDescriptionText=\u666E\u901A\u7684\u6587\u4EF6
FileChooser.directoryDescriptionText=\u76ee\u5f55 FileChooser.directoryDescriptionText=\u76EE\u5F55
FileChooser.newFolderErrorText=\u521b\u5efa\u65b0\u7684\u6587\u4ef6\u5939\u65f6\u53d1\u751f\u9519\u8bef FileChooser.newFolderErrorText=\u521B\u5EFA\u65B0\u7684\u6587\u4EF6\u5939\u65F6\u51FA\u9519
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=\u65e0\u6cd5\u521b\u5efa\u6587\u4ef6\u5939 FileChooser.newFolderParentDoesntExistTitleText=\u65E0\u6CD5\u521B\u5EFA\u6587\u4EF6\u5939
FileChooser.newFolderParentDoesntExistText=\u65e0\u6cd5\u521b\u5efa\u6587\u4ef6\u5939\u3002\n\n\u7cfb\u7edf\u65e0\u6cd5\u627e\u5230\u6307\u5b9a\u7684\u8def\u5f84\u3002 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.renameErrorTitleText=\u91CD\u547D\u540D\u6587\u4EF6\u6216\u6587\u4EF6\u5939\u65F6\u51FA\u9519
FileChooser.renameErrorText=\u65e0\u6cd5\u91cd\u547d\u540d {0} FileChooser.renameErrorText=\u65E0\u6CD5\u91CD\u547D\u540D{0}
FileChooser.renameErrorFileExistsText=\u65e0\u6cd5\u91cd\u547d\u540d {0}\uff1a\u5df2\u5b58\u5728\u5177\u6709\u6307\u5b9a\u540d\u79f0\u7684\u6587\u4ef6\u3002\u8bf7\u6307\u5b9a\u53e6\u4e00\u6587\u4ef6\u540d\u3002 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.acceptAllFileFilterText=\u6240\u6709\u6587\u4EF6
FileChooser.cancelButtonText=\u53d6\u6d88 FileChooser.cancelButtonText=\u53D6\u6D88
FileChooser.cancelButtonMnemonic=67 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=\u4fdd\u5b58 FileChooser.saveButtonText=\u4FDD\u5B58
FileChooser.saveButtonMnemonic=83 FileChooser.saveButtonMnemonic=83
FileChooser.openButtonText=\u6253\u5f00 FileChooser.openButtonText=\u6253\u5F00
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=\u4fdd\u5b58 FileChooser.saveDialogTitleText=\u4FDD\u5B58
FileChooser.openDialogTitleText=\u6253\u5f00 FileChooser.openDialogTitleText=\u6253\u5F00
FileChooser.updateButtonText=\u66f4\u65b0(U) FileChooser.updateButtonText=\u66F4\u65B0
FileChooser.updateButtonMnemonic=85 FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=\u5e2e\u52a9(H) FileChooser.helpButtonText=\u5E2E\u52A9
FileChooser.helpButtonMnemonic=72 FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=\u6253\u5f00 FileChooser.directoryOpenButtonText=\u6253\u5F00
FileChooser.directoryOpenButtonMnemonic=79 FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
@ -76,150 +76,150 @@ FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=\u65b0\u5efa\u6587\u4ef6\u5939 FileChooser.win32.newFolder=\u65B0\u5EFA\u6587\u4EF6\u5939
FileChooser.win32.newFolder.subsequent=\u65b0\u5efa\u6587\u4ef6\u5939 ({0}) FileChooser.win32.newFolder.subsequent=\u65B0\u5EFA\u6587\u4EF6\u5939 ({0})
FileChooser.other.newFolder=\u65b0\u5efa\u6587\u4ef6\u5939 FileChooser.other.newFolder=NewFolder
FileChooser.other.newFolder.subsequent=\u65b0\u5efa\u6587\u4ef6\u5939.{0} FileChooser.other.newFolder.subsequent=NewFolder.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=\u4e2d\u6b62\u6587\u4ef6\u9009\u62e9\u5668\u5bf9\u8bdd\u6846 FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6587\u4EF6\u9009\u62E9\u5668\u5BF9\u8BDD\u6846
FileChooser.saveButtonToolTipText=\u4fdd\u5b58\u9009\u62e9\u7684\u6587\u4ef6 FileChooser.saveButtonToolTipText=\u4FDD\u5B58\u6240\u9009\u6587\u4EF6
FileChooser.openButtonToolTipText=\u6253\u5f00\u9009\u62e9\u7684\u6587\u4ef6 FileChooser.openButtonToolTipText=\u6253\u5F00\u6240\u9009\u6587\u4EF6
FileChooser.updateButtonToolTipText=\u66f4\u65b0\u76ee\u5f55\u5217\u8868 FileChooser.updateButtonToolTipText=\u66F4\u65B0\u76EE\u5F55\u5217\u8868
FileChooser.helpButtonToolTipText=\u6587\u4ef6\u9009\u62e9\u5668\u5e2e\u52a9 FileChooser.helpButtonToolTipText=FileChooser \u5E2E\u52A9
FileChooser.directoryOpenButtonToolTipText=\u6253\u5f00\u9009\u62e9\u7684\u76ee\u5f55 FileChooser.directoryOpenButtonToolTipText=\u6253\u5F00\u9009\u62E9\u7684\u76EE\u5F55
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=\u9884\u89c8 ColorChooser.previewText=\u9884\u89C8
ColorChooser.okText=\u786e\u5b9a ColorChooser.okText=\u786E\u5B9A
ColorChooser.cancelText=\u53d6\u6d88 ColorChooser.cancelText=\u53D6\u6D88
ColorChooser.resetText=\u91cd\u8bbe(R) ColorChooser.resetText=\u91CD\u8BBE
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic # VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
ColorChooser.resetMnemonic=82 ColorChooser.resetMnemonic=82
ColorChooser.sampleText=\u6837\u54c1\u6587\u672c \u6837\u54c1\u6587\u672c ColorChooser.sampleText=\u793A\u4F8B\u6587\u672C \u793A\u4F8B\u6587\u672C
ColorChooser.swatchesNameText=\u6837\u54c1(S) ColorChooser.swatchesNameText=\u793A\u4F8B
ColorChooser.swatchesMnemonic=83 ColorChooser.swatchesMnemonic=83
ColorChooser.swatchesRecentText=\u6700\u8fd1: ColorChooser.swatchesRecentText=\u6700\u8FD1:
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX # 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 # 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 # mnemonic is xxxMnemonic and the index of the character to underline is
# xxxDisplayedMnemonicIndex. # xxxDisplayedMnemonicIndex.
ColorChooser.hsvNameText=HSV ColorChooser.hsvNameText=HSV
ColorChooser.hsvMnemonic=72 ColorChooser.hsvMnemonic=72
ColorChooser.hsvHueText=\u8272\u8c03 ColorChooser.hsvHueText=\u8272\u8C03
ColorChooser.hsvSaturationText=\u9971\u548c ColorChooser.hsvSaturationText=\u9971\u548C\u5EA6
ColorChooser.hsvValueText=\u503c ColorChooser.hsvValueText=\u503C
ColorChooser.hsvTransparencyText=\u900f\u660e ColorChooser.hsvTransparencyText=\u900F\u660E\u5EA6
ColorChooser.hslNameText=HSL ColorChooser.hslNameText=HSL
ColorChooser.hslMnemonic=76 ColorChooser.hslMnemonic=76
ColorChooser.hslHueText=\u8272\u8c03 ColorChooser.hslHueText=\u8272\u8C03
ColorChooser.hslSaturationText=\u9971\u548c ColorChooser.hslSaturationText=\u9971\u548C\u5EA6
ColorChooser.hslLightnessText=\u4eae\u5ea6 ColorChooser.hslLightnessText=\u4EAE\u5EA6
ColorChooser.hslTransparencyText=\u900f\u660e ColorChooser.hslTransparencyText=\u900F\u660E\u5EA6
ColorChooser.rgbNameText=RGB ColorChooser.rgbNameText=RGB
ColorChooser.rgbMnemonic=71 ColorChooser.rgbMnemonic=71
ColorChooser.rgbRedText=\u7ea2 ColorChooser.rgbRedText=\u7EA2
ColorChooser.rgbRedMnemonic=68 ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=\u7eff ColorChooser.rgbGreenText=\u7EFF
ColorChooser.rgbGreenMnemonic=78 ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=\u84dd ColorChooser.rgbBlueText=\u84DD
ColorChooser.rgbBlueMnemonic=66 ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alpha ColorChooser.rgbAlphaText=Alpha
ColorChooser.rgbHexCodeText=\u989c\u8272\u4ee3\u7801 ColorChooser.rgbHexCodeText=\u989C\u8272\u4EE3\u7801
ColorChooser.rgbHexCodeMnemonic=67 ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77 ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=\u9752\u8272 ColorChooser.cmykCyanText=\u9752\u8272
ColorChooser.cmykMagentaText=\u54c1\u7ea2\u8272 ColorChooser.cmykMagentaText=\u7D2B\u7EA2\u8272
ColorChooser.cmykYellowText=\u9ec4\u8272 ColorChooser.cmykYellowText=\u9EC4\u8272
ColorChooser.cmykBlackText=\u9ed1\u8272 ColorChooser.cmykBlackText=\u9ED1\u8272
ColorChooser.cmykAlphaText=Alpha ColorChooser.cmykAlphaText=Alpha
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant # Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=\u662f(Y) OptionPane.yesButtonText=\u662F
OptionPane.yesButtonMnemonic=89 OptionPane.yesButtonMnemonic=89
OptionPane.noButtonText=\u5426(N) OptionPane.noButtonText=\u5426
OptionPane.noButtonMnemonic=78 OptionPane.noButtonMnemonic=78
OptionPane.okButtonText=\u786e\u5b9a OptionPane.okButtonText=\u786E\u5B9A
OptionPane.okButtonMnemonic=0 OptionPane.okButtonMnemonic=0
OptionPane.cancelButtonText=\u53d6\u6d88 OptionPane.cancelButtonText=\u53D6\u6D88
OptionPane.cancelButtonMnemonic=0 OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=\u9009\u62e9\u4e00\u4e2a\u9009\u9879 OptionPane.titleText=\u9009\u62E9\u4E00\u4E2A\u9009\u9879
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=\u8f93\u5165 OptionPane.inputDialogTitle=\u8F93\u5165
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=\u6d88\u606f OptionPane.messageDialogTitle=\u6D88\u606F
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=\u6253\u5370 PrintingDialog.titleProgressText=\u6253\u5370
PrintingDialog.titleAbortingText=\u6253\u5370 (\u6b63\u5728\u7ec8\u6b62) PrintingDialog.titleAbortingText=\u6253\u5370 (\u6B63\u5728\u4E2D\u6B62)
PrintingDialog.contentInitialText=\u6b63\u5728\u8fdb\u884c\u6253\u5370... PrintingDialog.contentInitialText=\u6B63\u5728\u8FDB\u884C\u6253\u5370...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=\u5df2\u6253\u5370\u9875 {0}... PrintingDialog.contentProgressText=\u5DF2\u6253\u5370\u9875 {0}...
PrintingDialog.contentAbortingText=\u6b63\u5728\u7ec8\u6b62\u6253\u5370... PrintingDialog.contentAbortingText=\u6B63\u5728\u4E2D\u6B62\u6253\u5370...
PrintingDialog.abortButtonText=\u7ec8\u6b62(A) PrintingDialog.abortButtonText=\u4E2D\u6B62
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonMnemonic=65
PrintingDialog.abortButtonDisplayedMnemonicIndex=3 PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=\u7ec8\u6b62\u6253\u5370 PrintingDialog.abortButtonToolTipText=\u4E2D\u6B62\u6253\u5370
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=\u6700\u5c0f\u5316 InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316 InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
InternalFrame.restoreButtonToolTip=\u6062\u590d InternalFrame.restoreButtonToolTip=\u8FD8\u539F
InternalFrame.closeButtonToolTip=\u5173\u95ed InternalFrame.closeButtonToolTip=\u5173\u95ED
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=\u6062\u590d InternalFrameTitlePane.restoreButtonText=\u8FD8\u539F
InternalFrameTitlePane.moveButtonText=\u79fb\u52a8 InternalFrameTitlePane.moveButtonText=\u79FB\u52A8
InternalFrameTitlePane.sizeButtonText=\u5927\u5c0f InternalFrameTitlePane.sizeButtonText=\u5927\u5C0F
InternalFrameTitlePane.minimizeButtonText=\u6700\u5c0f\u5316 InternalFrameTitlePane.minimizeButtonText=\u6700\u5C0F\u5316
InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316 InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316
InternalFrameTitlePane.closeButtonText=\u5173\u95ed InternalFrameTitlePane.closeButtonText=\u5173\u95ED
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=\u63d0\u4ea4\u67e5\u8be2 FormView.submitButtonText=\u63D0\u4EA4\u67E5\u8BE2
FormView.resetButtonText=\u91cd\u8bbe FormView.resetButtonText=\u91CD\u8BBE
FormView.browseFileButtonText=\u6d4f\u89c8... FormView.browseFileButtonText=\u6D4F\u89C8...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=\u98ce\u683c\u53d8\u5316 AbstractDocument.styleChangeText=\u6837\u5F0F\u66F4\u6539
AbstractDocument.additionText=\u589e\u52a0 AbstractDocument.additionText=\u6DFB\u52A0
AbstractDocument.deletionText=\u5220\u9664 AbstractDocument.deletionText=\u5220\u9664
AbstractDocument.undoText=\u64a4\u6d88 AbstractDocument.undoText=\u64A4\u6D88
AbstractDocument.redoText=\u91cd\u505a AbstractDocument.redoText=\u91CD\u505A
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=\u5355\u51fb AbstractButton.clickText=\u5355\u51FB
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=\u64a4\u6d88 AbstractUndoableEdit.undoText=\u64A4\u6D88
AbstractUndoableEdit.redoText=\u91cd\u505a AbstractUndoableEdit.redoText=\u91CD\u505A
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=\u5207\u6362\u952e\u5f39\u51fa ComboBox.togglePopupText=togglePopup
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=\u8fdb\u5ea6... ProgressMonitor.progressText=\u8FDB\u5EA6...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=\u5de6\u952e SplitPane.leftButtonText=\u5DE6\u952E
SplitPane.rightButtonText=\u53f3\u952e SplitPane.rightButtonText=\u53F3\u952E
# Used for Isindex # Used for Isindex
IsindexView.prompt=\u8fd9\u662f\u53ef\u641c\u7d22\u7d22\u5f15\u3002\u8bf7\u952e\u5165\u5173\u952e\u8bcd\uff1a IsindexView.prompt=\u8FD9\u662F\u53EF\u641C\u7D22\u7D22\u5F15\u3002\u8BF7\u8F93\u5165\u641C\u7D22\u5173\u952E\u5B57:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=\u56fe\u6807\u5316 InternalFrameTitlePane.iconifyButtonAccessibleName=\u56FE\u6807\u5316
InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316 InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316
InternalFrameTitlePane.closeButtonAccessibleName=\u5173\u95ed InternalFrameTitlePane.closeButtonAccessibleName=\u5173\u95ED

View file

@ -45,29 +45,29 @@
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.fileDescriptionText=\u4e00\u822c\u6a94\u6848 FileChooser.fileDescriptionText=\u4E00\u822C\u6A94\u6848
FileChooser.directoryDescriptionText=\u76ee\u9304 FileChooser.directoryDescriptionText=\u76EE\u9304
FileChooser.newFolderErrorText=\u5efa\u7acb\u65b0\u6a94\u6848\u593e\u6642\u767c\u751f\u932f\u8aa4 FileChooser.newFolderErrorText=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E\u6642\u767C\u751F\u932F\u8AA4
FileChooser.newFolderErrorSeparator= : FileChooser.newFolderErrorSeparator= :
FileChooser.newFolderParentDoesntExistTitleText=\u7121\u6cd5\u5efa\u7acb\u8cc7\u6599\u593e FileChooser.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\u6240\u6307\u5b9a\u7684\u8def\u5f91\u3002 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 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.renameErrorText=\u7121\u6CD5\u91CD\u65B0\u547D\u540D {0}
FileChooser.renameErrorFileExistsText=\u7121\u6cd5\u91cd\u65b0\u547d\u540d {0}\uff1a\u60a8\u6307\u5b9a\u4e4b\u540d\u7a31\u7684\u6a94\u6848\u5df2\u5b58\u5728\u3002\u6307\u5b9a\u4e0d\u540c\u7684\u6a94\u6848\u540d\u7a31\u3002 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.acceptAllFileFilterText=\u6240\u6709\u6A94\u6848
FileChooser.cancelButtonText=\u53d6\u6d88 FileChooser.cancelButtonText=\u53D6\u6D88
FileChooser.cancelButtonMnemonic=67 FileChooser.cancelButtonMnemonic=67
FileChooser.saveButtonText=\u5132\u5b58 FileChooser.saveButtonText=\u5132\u5B58
FileChooser.saveButtonMnemonic=83 FileChooser.saveButtonMnemonic=83
FileChooser.openButtonText=\u958b\u555f FileChooser.openButtonText=\u958B\u555F
FileChooser.openButtonMnemonic=79 FileChooser.openButtonMnemonic=79
FileChooser.saveDialogTitleText=\u5132\u5b58 FileChooser.saveDialogTitleText=\u5132\u5B58
FileChooser.openDialogTitleText=\u958b\u555f FileChooser.openDialogTitleText=\u958B\u555F
FileChooser.updateButtonText=\u66f4\u65b0(U) FileChooser.updateButtonText=\u66F4\u65B0
FileChooser.updateButtonMnemonic=85 FileChooser.updateButtonMnemonic=85
FileChooser.helpButtonText=\u8aaa\u660e(H) FileChooser.helpButtonText=\u8AAA\u660E
FileChooser.helpButtonMnemonic=72 FileChooser.helpButtonMnemonic=72
FileChooser.directoryOpenButtonText=\u958b\u555f FileChooser.directoryOpenButtonText=\u958B\u555F
FileChooser.directoryOpenButtonMnemonic=79 FileChooser.directoryOpenButtonMnemonic=79
# File Size Units # File Size Units
@ -76,150 +76,150 @@ FileChooser.fileSizeMegaBytes={0} MB
FileChooser.fileSizeGigaBytes={0} GB FileChooser.fileSizeGigaBytes={0} GB
# These strings are platform dependent not look and feel dependent. # These strings are platform dependent not look and feel dependent.
FileChooser.win32.newFolder=\u65b0\u8cc7\u6599\u593e FileChooser.win32.newFolder=\u65B0\u8CC7\u6599\u593E
FileChooser.win32.newFolder.subsequent=\u65b0\u8cc7\u6599\u593e ({0}) FileChooser.win32.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E ({0})
FileChooser.other.newFolder=\u65b0\u8cc7\u6599\u593e FileChooser.other.newFolder=\u65B0\u8CC7\u6599\u593E
FileChooser.other.newFolder.subsequent=\u65b0\u8cc7\u6599\u593e.{0} FileChooser.other.newFolder.subsequent=\u65B0\u8CC7\u6599\u593E.{0}
## file chooser tooltips ### ## file chooser tooltips ###
FileChooser.cancelButtonToolTipText=\u4e2d\u65b7\u300c\u6a94\u6848\u9078\u64c7\u5668\u300d\u5c0d\u8a71\u65b9\u584a FileChooser.cancelButtonToolTipText=\u4E2D\u6B62\u6A94\u6848\u9078\u64C7\u5668\u5C0D\u8A71\u65B9\u584A
FileChooser.saveButtonToolTipText=\u5132\u5b58\u9078\u53d6\u7684\u6a94\u6848 FileChooser.saveButtonToolTipText=\u5132\u5B58\u9078\u53D6\u7684\u6A94\u6848
FileChooser.openButtonToolTipText=\u958b\u555f\u9078\u53d6\u7684\u6a94\u6848 FileChooser.openButtonToolTipText=\u958B\u555F\u9078\u53D6\u7684\u6A94\u6848
FileChooser.updateButtonToolTipText=\u66f4\u65b0\u76ee\u9304\u6e05\u55ae FileChooser.updateButtonToolTipText=\u66F4\u65B0\u76EE\u9304\u6E05\u55AE
FileChooser.helpButtonToolTipText=\u300c\u6a94\u6848\u9078\u64c7\u5668\u300d\u8aaa\u660e FileChooser.helpButtonToolTipText=\u300C\u6A94\u6848\u9078\u64C7\u5668\u300D\u8AAA\u660E
FileChooser.directoryOpenButtonToolTipText=\u958b\u555f\u9078\u53d6\u7684\u76ee\u9304 FileChooser.directoryOpenButtonToolTipText=\u958B\u555F\u9078\u53D6\u7684\u76EE\u9304
############ COLOR CHOOSER STRINGS ############# ############ COLOR CHOOSER STRINGS #############
ColorChooser.previewText=\u9810\u89bd ColorChooser.previewText=\u9810\u89BD
ColorChooser.okText=\u78ba\u5b9a ColorChooser.okText=\u78BA\u5B9A
ColorChooser.cancelText=\u53d6\u6d88 ColorChooser.cancelText=\u53D6\u6D88
ColorChooser.resetText=\u91cd\u8a2d(R) ColorChooser.resetText=\u91CD\u8A2D
# VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic # VK_XXX constant for 'ColorChooser.resetText' button to make mnemonic
ColorChooser.resetMnemonic=82 ColorChooser.resetMnemonic=82
ColorChooser.sampleText=\u7bc4\u4f8b\u6587\u5b57 \u7bc4\u4f8b\u6587\u5b57 ColorChooser.sampleText=\u7BC4\u4F8B\u6587\u5B57 \u7BC4\u4F8B\u6587\u5B57
ColorChooser.swatchesNameText=\u8abf\u8272\u677f(S) ColorChooser.swatchesNameText=\u8ABF\u8272\u677F
ColorChooser.swatchesMnemonic=83 ColorChooser.swatchesMnemonic=83
ColorChooser.swatchesRecentText=\u6700\u65b0\u9078\u64c7: ColorChooser.swatchesRecentText=\u6700\u65B0\u9078\u64C7:
# Each of the ColorChooser types can define a mnemonic, as a KeyEvent.VK_XXX # 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 # 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 # mnemonic is xxxMnemonic and the index of the character to underline is
# xxxDisplayedMnemonicIndex. # xxxDisplayedMnemonicIndex.
ColorChooser.hsvNameText=HSV ColorChooser.hsvNameText=HSV
ColorChooser.hsvMnemonic=72 ColorChooser.hsvMnemonic=72
ColorChooser.hsvHueText=\u8272\u8abf ColorChooser.hsvHueText=\u8272\u8ABF
ColorChooser.hsvSaturationText=\u98fd\u548c\u5ea6 ColorChooser.hsvSaturationText=\u5F69\u5EA6
ColorChooser.hsvValueText=\u503c ColorChooser.hsvValueText=\u6578\u503C
ColorChooser.hsvTransparencyText=\u900f\u660e\u5ea6 ColorChooser.hsvTransparencyText=\u900F\u660E\u5EA6
ColorChooser.hslNameText=HSL ColorChooser.hslNameText=HSL
ColorChooser.hslMnemonic=76 ColorChooser.hslMnemonic=76
ColorChooser.hslHueText=\u8272\u8abf ColorChooser.hslHueText=\u8272\u8ABF
ColorChooser.hslSaturationText=\u98fd\u548c\u5ea6 ColorChooser.hslSaturationText=\u5F69\u5EA6
ColorChooser.hslLightnessText=\u4eae\u5ea6 ColorChooser.hslLightnessText=\u4EAE\u5EA6
ColorChooser.hslTransparencyText=\u900f\u660e\u5ea6 ColorChooser.hslTransparencyText=\u900F\u660E\u5EA6
ColorChooser.rgbNameText=RGB ColorChooser.rgbNameText=RGB
ColorChooser.rgbMnemonic=71 ColorChooser.rgbMnemonic=71
ColorChooser.rgbRedText=\u7d05\u8272(D) ColorChooser.rgbRedText=\u7D05\u8272
ColorChooser.rgbRedMnemonic=68 ColorChooser.rgbRedMnemonic=68
ColorChooser.rgbGreenText=\u7da0\u8272(N) ColorChooser.rgbGreenText=\u7DA0\u8272
ColorChooser.rgbGreenMnemonic=78 ColorChooser.rgbGreenMnemonic=78
ColorChooser.rgbBlueText=\u85cd\u8272(B) ColorChooser.rgbBlueText=\u85CD\u8272
ColorChooser.rgbBlueMnemonic=66 ColorChooser.rgbBlueMnemonic=66
ColorChooser.rgbAlphaText=Alpha ColorChooser.rgbAlphaText=Alpha
ColorChooser.rgbHexCodeText=\u8272\u78bc ColorChooser.rgbHexCodeText=\u984F\u8272\u4EE3\u78BC
ColorChooser.rgbHexCodeMnemonic=67 ColorChooser.rgbHexCodeMnemonic=67
ColorChooser.cmykNameText=CMYK ColorChooser.cmykNameText=CMYK
ColorChooser.cmykMnemonic=77 ColorChooser.cmykMnemonic=77
ColorChooser.cmykCyanText=\u85cd\u7da0\u8272 ColorChooser.cmykCyanText=\u85CD\u7DA0\u8272
ColorChooser.cmykMagentaText=\u7d2b\u7d05\u8272 ColorChooser.cmykMagentaText=\u7D2B\u7D05\u8272
ColorChooser.cmykYellowText=\u9ec3\u8272 ColorChooser.cmykYellowText=\u9EC3\u8272
ColorChooser.cmykBlackText=\u9ed1\u8272 ColorChooser.cmykBlackText=\u9ED1\u8272
ColorChooser.cmykAlphaText=Alpha ColorChooser.cmykAlphaText=Alpha
############ OPTION PANE STRINGS ############# ############ OPTION PANE STRINGS #############
# Mnemonic keys correspond to KeyEvent.VK_XXX constant # Mnemonic keys correspond to KeyEvent.VK_XXX constant
# We only define mnemonics for YES/NO, but for completeness you can # We only define mnemonics for YES/NO, but for completeness you can
# define mnemonics for any of the buttons. # define mnemonics for any of the buttons.
OptionPane.yesButtonText=\u662f(Y) OptionPane.yesButtonText=\u662F
OptionPane.yesButtonMnemonic=89 OptionPane.yesButtonMnemonic=89
OptionPane.noButtonText=\u5426(N) OptionPane.noButtonText=\u5426
OptionPane.noButtonMnemonic=78 OptionPane.noButtonMnemonic=78
OptionPane.okButtonText=\u78ba\u5b9a OptionPane.okButtonText=\u78BA\u5B9A
OptionPane.okButtonMnemonic=0 OptionPane.okButtonMnemonic=0
OptionPane.cancelButtonText=\u53d6\u6d88 OptionPane.cancelButtonText=\u53D6\u6D88
OptionPane.cancelButtonMnemonic=0 OptionPane.cancelButtonMnemonic=0
OptionPane.titleText=\u9078\u53d6\u4e00\u500b\u9078\u9805 OptionPane.titleText=\u9078\u53D6\u4E00\u500B\u9078\u9805
# Title for the dialog for the showInputDialog methods. Only used if # Title for the dialog for the showInputDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.inputDialogTitle=\u8f38\u5165 OptionPane.inputDialogTitle=\u8F38\u5165
# Title for the dialog for the showMessageDialog methods. Only used if # Title for the dialog for the showMessageDialog methods. Only used if
# the developer uses one of the variants that doesn't take a title. # the developer uses one of the variants that doesn't take a title.
OptionPane.messageDialogTitle=\u8a0a\u606f OptionPane.messageDialogTitle=\u8A0A\u606F
############ Printing Dialog Strings ############ ############ Printing Dialog Strings ############
PrintingDialog.titleProgressText=\u5217\u5370 PrintingDialog.titleProgressText=\u5217\u5370
PrintingDialog.titleAbortingText=\u5217\u5370 (\u4e2d\u65b7) PrintingDialog.titleAbortingText=\u5217\u5370 (\u4E2D\u6B62)
PrintingDialog.contentInitialText=\u6b63\u5728\u5217\u5370... PrintingDialog.contentInitialText=\u6B63\u5728\u5217\u5370...
# The following string will be formatted by a MessageFormat # The following string will be formatted by a MessageFormat
# and {0} will be replaced by page number being printed # and {0} will be replaced by page number being printed
PrintingDialog.contentProgressText=\u5df2\u5217\u5370\u7684\u9801\u9762 {0}... PrintingDialog.contentProgressText=\u5DF2\u5217\u5370\u7684\u9801\u9762 {0}...
PrintingDialog.contentAbortingText=\u6b63\u5728\u4e2d\u65b7\u5217\u5370... PrintingDialog.contentAbortingText=\u6B63\u5728\u4E2D\u6B62\u5217\u5370...
PrintingDialog.abortButtonText=\u4e2d\u65b7(A) PrintingDialog.abortButtonText=\u4E2D\u6B62
PrintingDialog.abortButtonMnemonic=65 PrintingDialog.abortButtonMnemonic=65
PrintingDialog.abortButtonDisplayedMnemonicIndex=0 PrintingDialog.abortButtonDisplayedMnemonicIndex=0
PrintingDialog.abortButtonToolTipText=\u4e2d\u65b7\u5217\u5370 PrintingDialog.abortButtonToolTipText=\u4E2D\u6B62\u5217\u5370
############ Internal Frame Strings ############ ############ Internal Frame Strings ############
InternalFrame.iconButtonToolTip=\u6700\u5c0f\u5316 InternalFrame.iconButtonToolTip=\u6700\u5C0F\u5316
InternalFrame.maxButtonToolTip=\u6700\u5927\u5316 InternalFrame.maxButtonToolTip=\u6700\u5927\u5316
InternalFrame.restoreButtonToolTip=\u5fa9\u539f InternalFrame.restoreButtonToolTip=\u5FA9\u539F
InternalFrame.closeButtonToolTip=\u95dc\u9589 InternalFrame.closeButtonToolTip=\u95DC\u9589
############ Internal Frame Title Pane Strings ############ ############ Internal Frame Title Pane Strings ############
InternalFrameTitlePane.restoreButtonText=\u5fa9\u539f InternalFrameTitlePane.restoreButtonText=\u5FA9\u539F
InternalFrameTitlePane.moveButtonText=\u79fb\u52d5 InternalFrameTitlePane.moveButtonText=\u79FB\u52D5
InternalFrameTitlePane.sizeButtonText=\u5927\u5c0f InternalFrameTitlePane.sizeButtonText=\u5927\u5C0F
InternalFrameTitlePane.minimizeButtonText=\u6700\u5c0f\u5316 InternalFrameTitlePane.minimizeButtonText=\u6700\u5C0F\u5316
InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316 InternalFrameTitlePane.maximizeButtonText=\u6700\u5927\u5316
InternalFrameTitlePane.closeButtonText=\u95dc\u9589 InternalFrameTitlePane.closeButtonText=\u95DC\u9589
############ Text strings ############# ############ Text strings #############
# Used for html forms # Used for html forms
FormView.submitButtonText=\u63d0\u51fa\u67e5\u8a62 FormView.submitButtonText=\u9001\u51FA\u67E5\u8A62
FormView.resetButtonText=\u91cd\u8a2d FormView.resetButtonText=\u91CD\u8A2D
FormView.browseFileButtonText=\u700f\u89bd... FormView.browseFileButtonText=\u700F\u89BD...
############ Abstract Document Strings ############ ############ Abstract Document Strings ############
AbstractDocument.styleChangeText=\u6a23\u5f0f\u8b8a\u66f4 AbstractDocument.styleChangeText=\u6A23\u5F0F\u8B8A\u66F4
AbstractDocument.additionText=\u9644\u52a0 AbstractDocument.additionText=\u9644\u52A0
AbstractDocument.deletionText=\u522a\u9664 AbstractDocument.deletionText=\u522A\u9664
AbstractDocument.undoText=\u9084\u539f AbstractDocument.undoText=\u9084\u539F
AbstractDocument.redoText=\u91cd\u505a AbstractDocument.redoText=\u91CD\u505A
############ Abstract Button Strings ############ ############ Abstract Button Strings ############
AbstractButton.clickText=\u6309\u4e00\u4e0b AbstractButton.clickText=\u6309\u4E00\u4E0B
############ Abstract Undoable Edit Strings ############ ############ Abstract Undoable Edit Strings ############
AbstractUndoableEdit.undoText=\u9084\u539f AbstractUndoableEdit.undoText=\u9084\u539F
AbstractUndoableEdit.redoText=\u91cd\u505a AbstractUndoableEdit.redoText=\u91CD\u505A
############ Combo Box Strings ############ ############ Combo Box Strings ############
ComboBox.togglePopupText=\u5207\u63db\u5373\u73fe ComboBox.togglePopupText=\u5207\u63DB\u5373\u73FE\u5F0F\u8996\u7A97
############ Progress Monitor Strings ############ ############ Progress Monitor Strings ############
ProgressMonitor.progressText=\u9032\u5ea6... ProgressMonitor.progressText=\u9032\u5EA6...
############ Split Pane Strings ############ ############ Split Pane Strings ############
SplitPane.leftButtonText=\u5de6\u6309\u9215 SplitPane.leftButtonText=\u5DE6\u6309\u9215
SplitPane.rightButtonText=\u53f3\u6309\u9215 SplitPane.rightButtonText=\u53F3\u6309\u9215
# Used for Isindex # Used for Isindex
IsindexView.prompt=\u9019\u662f\u4e00\u500b\u53ef\u641c\u5c0b\u7684\u7d22\u5f15\u3002\u8f38\u5165\u641c\u5c0b\u95dc\u9375\u5b57\uff1a IsindexView.prompt=\u9019\u662F\u4E00\u500B\u53EF\u641C\u5C0B\u7684\u7D22\u5F15\u3002\u8F38\u5165\u641C\u5C0B\u95DC\u9375\u5B57:
############ InternalFrameTitlePane Strings ############ ############ InternalFrameTitlePane Strings ############
InternalFrameTitlePane.iconifyButtonAccessibleName=\u5716\u793a\u5316 InternalFrameTitlePane.iconifyButtonAccessibleName=\u5716\u793A\u5316
InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316 InternalFrameTitlePane.maximizeButtonAccessibleName=\u6700\u5927\u5316
InternalFrameTitlePane.closeButtonAccessibleName=\u95dc\u9589 InternalFrameTitlePane.closeButtonAccessibleName=\u95DC\u9589

View file

@ -21,10 +21,10 @@
FileChooser.lookInLabelText=Suchen in: FileChooser.lookInLabelText=Suchen in:
FileChooser.saveInLabelText=Speichern in: FileChooser.saveInLabelText=Speichern in:
FileChooser.fileNameLabelText=Dateiname: FileChooser.fileNameLabelText=Dateiname:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Ordnername:
FileChooser.filesOfTypeLabelText=Dateityp: FileChooser.filesOfTypeLabelText=Dateityp:
FileChooser.upFolderToolTipText=Eine Ebene h\u00f6her FileChooser.upFolderToolTipText=Eine Ebene h\u00F6her
FileChooser.upFolderAccessibleName=H\u00f6her FileChooser.upFolderAccessibleName=Nach oben
FileChooser.homeFolderToolTipText=Home FileChooser.homeFolderToolTipText=Home
FileChooser.homeFolderAccessibleName=Home FileChooser.homeFolderAccessibleName=Home
FileChooser.newFolderToolTipText=Neuen Ordner erstellen FileChooser.newFolderToolTipText=Neuen Ordner erstellen
@ -38,19 +38,19 @@ FileChooser.detailsViewButtonAccessibleName=Details
FileChooser.detailsViewActionLabelText=Details FileChooser.detailsViewActionLabelText=Details
FileChooser.refreshActionLabelText=Aktualisieren FileChooser.refreshActionLabelText=Aktualisieren
FileChooser.viewMenuLabelText=Ansicht FileChooser.viewMenuLabelText=Ansicht
FileChooser.fileNameHeaderText=Dateiname FileChooser.fileNameHeaderText=Name
FileChooser.fileSizeHeaderText=Gr\u00f6\u00dfe FileChooser.fileSizeHeaderText=Gr\u00F6\u00DFe
FileChooser.fileTypeHeaderText=Typ FileChooser.fileTypeHeaderText=Typ
FileChooser.fileDateHeaderText=Ge\u00e4ndert FileChooser.fileDateHeaderText=Ge\u00E4ndert
FileChooser.fileAttrHeaderText=Attribut FileChooser.fileAttrHeaderText=Attribute
############ Used by MetalTitlePane if rendering window decorations############ ############ Used by MetalTitlePane if rendering window decorations############
# All mnemonics are KeyEvent.VK_XXX as integers # All mnemonics are KeyEvent.VK_XXX as integers
MetalTitlePane.restoreTitle=Wiederherstellen MetalTitlePane.restoreTitle=Wiederherstellen
MetalTitlePane.restoreMnemonic=87 MetalTitlePane.restoreMnemonic=82
MetalTitlePane.iconifyTitle=Minimieren MetalTitlePane.iconifyTitle=Minimieren
MetalTitlePane.iconifyMnemonic=77 MetalTitlePane.iconifyMnemonic=69
MetalTitlePane.maximizeTitle=Maximieren MetalTitlePane.maximizeTitle=Maximieren
MetalTitlePane.maximizeMnemonic=88 MetalTitlePane.maximizeMnemonic=88
MetalTitlePane.closeTitle=Schlie\u00dfen MetalTitlePane.closeTitle=Schlie\u00DFen
MetalTitlePane.closeMnemonic=83 MetalTitlePane.closeMnemonic=67

View file

@ -20,26 +20,26 @@
FileChooser.lookInLabelText=Buscar en: FileChooser.lookInLabelText=Buscar en:
FileChooser.saveInLabelText=Guardar en: FileChooser.saveInLabelText=Guardar en:
FileChooser.fileNameLabelText=Nombre de archivo: FileChooser.fileNameLabelText=Nombre de Archivo:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Nombre de la Carpeta:
FileChooser.filesOfTypeLabelText=Archivos de tipo: FileChooser.filesOfTypeLabelText=Archivos de Tipo:
FileChooser.upFolderToolTipText=Subir un nivel FileChooser.upFolderToolTipText=Subir un Nivel
FileChooser.upFolderAccessibleName=Arriba FileChooser.upFolderAccessibleName=Arriba
FileChooser.homeFolderToolTipText=Principal FileChooser.homeFolderToolTipText=Inicio
FileChooser.homeFolderAccessibleName=Principal FileChooser.homeFolderAccessibleName=Inicio
FileChooser.newFolderToolTipText=Crear carpeta nueva FileChooser.newFolderToolTipText=Crear Nueva Carpeta
FileChooser.newFolderAccessibleName=Carpeta nueva FileChooser.newFolderAccessibleName=Nueva Carpeta
FileChooser.newFolderActionLabelText=Carpeta nueva FileChooser.newFolderActionLabelText=Nueva Carpeta
FileChooser.listViewButtonToolTipText=Lista FileChooser.listViewButtonToolTipText=Lista
FileChooser.listViewButtonAccessibleName=Lista FileChooser.listViewButtonAccessibleName=Lista
FileChooser.listViewActionLabelText=Lista FileChooser.listViewActionLabelText=Lista
FileChooser.detailsViewButtonToolTipText=Detalles FileChooser.detailsViewButtonToolTipText=Detalles
FileChooser.detailsViewButtonAccessibleName=Detalles FileChooser.detailsViewButtonAccessibleName=Detalles
FileChooser.detailsViewActionLabelText=Detalles FileChooser.detailsViewActionLabelText=Detalles
FileChooser.refreshActionLabelText=Renovar FileChooser.refreshActionLabelText=Refrescar
FileChooser.viewMenuLabelText=Ver FileChooser.viewMenuLabelText=Ver
FileChooser.fileNameHeaderText=Nombre FileChooser.fileNameHeaderText=Nombre
FileChooser.fileSizeHeaderText=Tama\u00f1o FileChooser.fileSizeHeaderText=Tama\u00F1o
FileChooser.fileTypeHeaderText=Tipo FileChooser.fileTypeHeaderText=Tipo
FileChooser.fileDateHeaderText=Modificado FileChooser.fileDateHeaderText=Modificado
FileChooser.fileAttrHeaderText=Atributos FileChooser.fileAttrHeaderText=Atributos
@ -49,7 +49,7 @@ FileChooser.fileAttrHeaderText=Atributos
MetalTitlePane.restoreTitle=Restaurar MetalTitlePane.restoreTitle=Restaurar
MetalTitlePane.restoreMnemonic=82 MetalTitlePane.restoreMnemonic=82
MetalTitlePane.iconifyTitle=Minimizar MetalTitlePane.iconifyTitle=Minimizar
MetalTitlePane.iconifyMnemonic=77 MetalTitlePane.iconifyMnemonic=69
MetalTitlePane.maximizeTitle=Maximizar MetalTitlePane.maximizeTitle=Maximizar
MetalTitlePane.maximizeMnemonic=88 MetalTitlePane.maximizeMnemonic=88
MetalTitlePane.closeTitle=Cerrar MetalTitlePane.closeTitle=Cerrar

View file

@ -20,37 +20,37 @@
FileChooser.lookInLabelText=Rechercher dans : FileChooser.lookInLabelText=Rechercher dans :
FileChooser.saveInLabelText=Enregistrer dans : FileChooser.saveInLabelText=Enregistrer dans :
FileChooser.fileNameLabelText=Nom de fichier : FileChooser.fileNameLabelText=Nom du fichier :
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Nom du dossier :
FileChooser.filesOfTypeLabelText=Fichiers du type : FileChooser.filesOfTypeLabelText=Fichiers de type :
FileChooser.upFolderToolTipText=Remonte d'un niveau. FileChooser.upFolderToolTipText=Remonte d'un niveau.
FileChooser.upFolderAccessibleName=Vers le haut FileChooser.upFolderAccessibleName=Monter
FileChooser.homeFolderToolTipText=R\u00e9pertoire d'accueil FileChooser.homeFolderToolTipText=R\u00E9pertoire d'origine
FileChooser.homeFolderAccessibleName=Accueil FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
FileChooser.newFolderToolTipText=Cr\u00e9e un nouveau dossier. FileChooser.newFolderToolTipText=Cr\u00E9e un dossier.
FileChooser.newFolderAccessibleName=Nouveau dossier FileChooser.newFolderAccessibleName=Nouveau dossier
FileChooser.newFolderActionLabelText=Nouveau dossier FileChooser.newFolderActionLabelText=Nouveau dossier
FileChooser.listViewButtonToolTipText=Liste FileChooser.listViewButtonToolTipText=Liste
FileChooser.listViewButtonAccessibleName=Liste FileChooser.listViewButtonAccessibleName=Liste
FileChooser.listViewActionLabelText=Liste FileChooser.listViewActionLabelText=Liste
FileChooser.detailsViewButtonToolTipText=D\u00e9tails FileChooser.detailsViewButtonToolTipText=D\u00E9tails
FileChooser.detailsViewButtonAccessibleName=D\u00e9tails FileChooser.detailsViewButtonAccessibleName=D\u00E9tails
FileChooser.detailsViewActionLabelText=D\u00e9tails FileChooser.detailsViewActionLabelText=D\u00E9tails
FileChooser.refreshActionLabelText=Actualiser FileChooser.refreshActionLabelText=Actualiser
FileChooser.viewMenuLabelText=Affichage FileChooser.viewMenuLabelText=Affichage
FileChooser.fileNameHeaderText=Nom FileChooser.fileNameHeaderText=Nom
FileChooser.fileSizeHeaderText=Taille FileChooser.fileSizeHeaderText=Taille
FileChooser.fileTypeHeaderText=Type FileChooser.fileTypeHeaderText=Type
FileChooser.fileDateHeaderText=Modifi\u00e9 FileChooser.fileDateHeaderText=Modifi\u00E9
FileChooser.fileAttrHeaderText=Attributs FileChooser.fileAttrHeaderText=Attributs
############ Used by MetalTitlePane if rendering window decorations############ ############ Used by MetalTitlePane if rendering window decorations############
# All mnemonics are KeyEvent.VK_XXX as integers # All mnemonics are KeyEvent.VK_XXX as integers
MetalTitlePane.restoreTitle=Restaurer MetalTitlePane.restoreTitle=Restaurer
MetalTitlePane.restoreMnemonic=82 MetalTitlePane.restoreMnemonic=82
MetalTitlePane.iconifyTitle=R\u00e9duire MetalTitlePane.iconifyTitle=R\u00E9duire
MetalTitlePane.iconifyMnemonic=68 MetalTitlePane.iconifyMnemonic=69
MetalTitlePane.maximizeTitle=Agrandir MetalTitlePane.maximizeTitle=Agrandir
MetalTitlePane.maximizeMnemonic=65 MetalTitlePane.maximizeMnemonic=88
MetalTitlePane.closeTitle=Fermer MetalTitlePane.closeTitle=Fermer
MetalTitlePane.closeMnemonic=70 MetalTitlePane.closeMnemonic=67

View file

@ -21,18 +21,18 @@
FileChooser.lookInLabelText=Cerca in: FileChooser.lookInLabelText=Cerca in:
FileChooser.saveInLabelText=Salva in: FileChooser.saveInLabelText=Salva in:
FileChooser.fileNameLabelText=Nome file: FileChooser.fileNameLabelText=Nome file:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Nome della cartella:
FileChooser.filesOfTypeLabelText=Tipo file: FileChooser.filesOfTypeLabelText=Tipo file:
FileChooser.upFolderToolTipText=Cartella superiore FileChooser.upFolderToolTipText=Cartella superiore
FileChooser.upFolderAccessibleName=Superiore FileChooser.upFolderAccessibleName=Superiore
FileChooser.homeFolderToolTipText=Principale FileChooser.homeFolderToolTipText=Home
FileChooser.homeFolderAccessibleName=Principale FileChooser.homeFolderAccessibleName=Home
FileChooser.newFolderToolTipText=Crea nuova cartella FileChooser.newFolderToolTipText=Crea nuova cartella
FileChooser.newFolderAccessibleName=Nuova cartella FileChooser.newFolderAccessibleName=Nuova cartella
FileChooser.newFolderActionLabelText=Nuova cartella FileChooser.newFolderActionLabelText=Nuova cartella
FileChooser.listViewButtonToolTipText=Elenco FileChooser.listViewButtonToolTipText=Lista
FileChooser.listViewButtonAccessibleName=Elenco FileChooser.listViewButtonAccessibleName=Lista
FileChooser.listViewActionLabelText=Elenco FileChooser.listViewActionLabelText=Lista
FileChooser.detailsViewButtonToolTipText=Dettagli FileChooser.detailsViewButtonToolTipText=Dettagli
FileChooser.detailsViewButtonAccessibleName=Dettagli FileChooser.detailsViewButtonAccessibleName=Dettagli
FileChooser.detailsViewActionLabelText=Dettagli FileChooser.detailsViewActionLabelText=Dettagli
@ -49,8 +49,8 @@ FileChooser.fileAttrHeaderText=Attributi
MetalTitlePane.restoreTitle=Ripristina MetalTitlePane.restoreTitle=Ripristina
MetalTitlePane.restoreMnemonic=82 MetalTitlePane.restoreMnemonic=82
MetalTitlePane.iconifyTitle=Riduci a icona MetalTitlePane.iconifyTitle=Riduci a icona
MetalTitlePane.iconifyMnemonic=68 MetalTitlePane.iconifyMnemonic=69
MetalTitlePane.maximizeTitle=Ingrandisci MetalTitlePane.maximizeTitle=Ingrandisci
MetalTitlePane.maximizeMnemonic=73 MetalTitlePane.maximizeMnemonic=88
MetalTitlePane.closeTitle=Chiudi MetalTitlePane.closeTitle=Chiudi
MetalTitlePane.closeMnemonic=67 MetalTitlePane.closeMnemonic=67

View file

@ -18,39 +18,39 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=\u53c2\u7167: FileChooser.lookInLabelText=\u53C2\u7167:
FileChooser.saveInLabelText=\u4fdd\u5b58: FileChooser.saveInLabelText=\u4FDD\u5B58:
FileChooser.fileNameLabelText=\u30d5\u30a1\u30a4\u30eb\u540d: FileChooser.fileNameLabelText=\u30D5\u30A1\u30A4\u30EB\u540D:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=\u30D5\u30A9\u30EB\u30C0\u540D:
FileChooser.filesOfTypeLabelText=\u30d5\u30a1\u30a4\u30eb\u30bf\u30a4\u30d7: FileChooser.filesOfTypeLabelText=\u30D5\u30A1\u30A4\u30EB\u306E\u30BF\u30A4\u30D7:
FileChooser.upFolderToolTipText=1 \u30ec\u30d9\u30eb\u4e0a\u3078 FileChooser.upFolderToolTipText=1\u30EC\u30D9\u30EB\u4E0A\u3078
FileChooser.upFolderAccessibleName=\u4e0a\u3078 FileChooser.upFolderAccessibleName=\u4E0A\u3078
FileChooser.homeFolderToolTipText=\u30db\u30fc\u30e0 FileChooser.homeFolderToolTipText=\u30DB\u30FC\u30E0
FileChooser.homeFolderAccessibleName=\u30db\u30fc\u30e0 FileChooser.homeFolderAccessibleName=\u30DB\u30FC\u30E0
FileChooser.newFolderToolTipText=\u30d5\u30a9\u30eb\u30c0\u306e\u65b0\u898f\u4f5c\u6210 FileChooser.newFolderToolTipText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210
FileChooser.newFolderAccessibleName=\u65b0\u898f\u30d5\u30a9\u30eb\u30c0 FileChooser.newFolderAccessibleName=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
FileChooser.newFolderActionLabelText=\u65b0\u898f\u30d5\u30a9\u30eb\u30c0 FileChooser.newFolderActionLabelText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
FileChooser.listViewButtonToolTipText=\u30ea\u30b9\u30c8 FileChooser.listViewButtonToolTipText=\u30EA\u30B9\u30C8
FileChooser.listViewButtonAccessibleName=\u30ea\u30b9\u30c8 FileChooser.listViewButtonAccessibleName=\u30EA\u30B9\u30C8
FileChooser.listViewActionLabelText=\u30ea\u30b9\u30c8 FileChooser.listViewActionLabelText=\u30EA\u30B9\u30C8
FileChooser.detailsViewButtonToolTipText=\u8a73\u7d30 FileChooser.detailsViewButtonToolTipText=\u8A73\u7D30
FileChooser.detailsViewButtonAccessibleName=\u8a73\u7d30 FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30
FileChooser.detailsViewActionLabelText=\u8a73\u7d30 FileChooser.detailsViewActionLabelText=\u8A73\u7D30
FileChooser.refreshActionLabelText=\u66f4\u65b0 FileChooser.refreshActionLabelText=\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5
FileChooser.viewMenuLabelText=\u8868\u793a FileChooser.viewMenuLabelText=\u8868\u793A
FileChooser.fileNameHeaderText=\u540d\u524d FileChooser.fileNameHeaderText=\u540D\u524D
FileChooser.fileSizeHeaderText=\u30b5\u30a4\u30ba FileChooser.fileSizeHeaderText=\u30B5\u30A4\u30BA
FileChooser.fileTypeHeaderText=\u578b FileChooser.fileTypeHeaderText=\u30BF\u30A4\u30D7
FileChooser.fileDateHeaderText=\u4fee\u6b63\u65e5 FileChooser.fileDateHeaderText=\u4FEE\u6B63\u65E5
FileChooser.fileAttrHeaderText=\u5c5e\u6027 FileChooser.fileAttrHeaderText=\u5C5E\u6027
############ Used by MetalTitlePane if rendering window decorations############ ############ Used by MetalTitlePane if rendering window decorations############
# All mnemonics are KeyEvent.VK_XXX as integers # All mnemonics are KeyEvent.VK_XXX as integers
MetalTitlePane.restoreTitle=\u5fa9\u5143(R) MetalTitlePane.restoreTitle=\u5FA9\u5143
MetalTitlePane.restoreMnemonic=82 MetalTitlePane.restoreMnemonic=82
MetalTitlePane.iconifyTitle=\u6700\u5c0f\u5316(E) MetalTitlePane.iconifyTitle=\u6700\u5C0F\u5316
MetalTitlePane.iconifyMnemonic=69 MetalTitlePane.iconifyMnemonic=69
MetalTitlePane.maximizeTitle=\u6700\u5927\u5316(X) MetalTitlePane.maximizeTitle=\u6700\u5927\u5316
MetalTitlePane.maximizeMnemonic=88 MetalTitlePane.maximizeMnemonic=88
MetalTitlePane.closeTitle=\u9589\u3058\u308b(C) MetalTitlePane.closeTitle=\u9589\u3058\u308B
MetalTitlePane.closeMnemonic=67 MetalTitlePane.closeMnemonic=67

View file

@ -18,39 +18,39 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=\uac80\uc0c9 \uc704\uce58: FileChooser.lookInLabelText=\uAC80\uC0C9 \uC704\uCE58:
FileChooser.saveInLabelText=\uc800\uc7a5 \uc704\uce58 FileChooser.saveInLabelText=\uC800\uC7A5 \uC704\uCE58:
FileChooser.fileNameLabelText=\ud30c\uc77c \uc774\ub984: FileChooser.fileNameLabelText=\uD30C\uC77C \uC774\uB984:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=\uD3F4\uB354 \uC774\uB984:
FileChooser.filesOfTypeLabelText=\ud30c\uc77c \uc885\ub958: FileChooser.filesOfTypeLabelText=\uD30C\uC77C \uC720\uD615:
FileChooser.upFolderToolTipText=\ud55c \ub2e8\uacc4 \uc704\ub85c FileChooser.upFolderToolTipText=\uD55C \uB808\uBCA8 \uC704\uB85C
FileChooser.upFolderAccessibleName=\uc704 FileChooser.upFolderAccessibleName=\uC704\uB85C
FileChooser.homeFolderToolTipText=\ud648 FileChooser.homeFolderToolTipText=\uD648
FileChooser.homeFolderAccessibleName=\ud648 FileChooser.homeFolderAccessibleName=\uD648
FileChooser.newFolderToolTipText=\uc0c8 \ud3f4\ub354 \uc791\uc131 FileChooser.newFolderToolTipText=\uC0C8 \uD3F4\uB354 \uC0DD\uC131
FileChooser.newFolderAccessibleName=\uc0c8 \ud3f4\ub354 FileChooser.newFolderAccessibleName=\uC0C8 \uD3F4\uB354
FileChooser.newFolderActionLabelText=\uc0c8 \ud3f4\ub354 FileChooser.newFolderActionLabelText=\uC0C8 \uD3F4\uB354
FileChooser.listViewButtonToolTipText=\ubaa9\ub85d FileChooser.listViewButtonToolTipText=\uBAA9\uB85D
FileChooser.listViewButtonAccessibleName=\ubaa9\ub85d FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
FileChooser.listViewActionLabelText=\ubaa9\ub85d FileChooser.listViewActionLabelText=\uBAA9\uB85D
FileChooser.detailsViewButtonToolTipText=\uc790\uc138\ud788 FileChooser.detailsViewButtonToolTipText=\uC138\uBD80 \uC815\uBCF4
FileChooser.detailsViewButtonAccessibleName=\uc790\uc138\ud788 FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80 \uC815\uBCF4
FileChooser.detailsViewActionLabelText=\uc790\uc138\ud788 FileChooser.detailsViewActionLabelText=\uC138\uBD80 \uC815\uBCF4
FileChooser.refreshActionLabelText=\uac31\uc2e0 FileChooser.refreshActionLabelText=\uC0C8\uB85C \uACE0\uCE68
FileChooser.viewMenuLabelText=\ubcf4\uae30 FileChooser.viewMenuLabelText=\uBCF4\uAE30
FileChooser.fileNameHeaderText=\uc774\ub984 FileChooser.fileNameHeaderText=\uC774\uB984
FileChooser.fileSizeHeaderText=\ud06c\uae30 FileChooser.fileSizeHeaderText=\uD06C\uAE30
FileChooser.fileTypeHeaderText=\uc885\ub958 FileChooser.fileTypeHeaderText=\uC720\uD615
FileChooser.fileDateHeaderText=\uc218\uc815 FileChooser.fileDateHeaderText=\uC218\uC815 \uB0A0\uC9DC
FileChooser.fileAttrHeaderText=\uc18d\uc131 FileChooser.fileAttrHeaderText=\uC18D\uC131
############ Used by MetalTitlePane if rendering window decorations############ ############ Used by MetalTitlePane if rendering window decorations############
# All mnemonics are KeyEvent.VK_XXX as integers # All mnemonics are KeyEvent.VK_XXX as integers
MetalTitlePane.restoreTitle=\ubcf5\uc6d0(R) MetalTitlePane.restoreTitle=\uBCF5\uC6D0
MetalTitlePane.restoreMnemonic=82 MetalTitlePane.restoreMnemonic=82
MetalTitlePane.iconifyTitle=\ucd5c\uc18c\ud654(E) MetalTitlePane.iconifyTitle=\uCD5C\uC18C\uD654
MetalTitlePane.iconifyMnemonic=69 MetalTitlePane.iconifyMnemonic=69
MetalTitlePane.maximizeTitle=\ucd5c\ub300\ud654(X) MetalTitlePane.maximizeTitle=\uCD5C\uB300\uD654
MetalTitlePane.maximizeMnemonic=88 MetalTitlePane.maximizeMnemonic=88
MetalTitlePane.closeTitle=\ub2eb\uae30(C) MetalTitlePane.closeTitle=\uB2EB\uAE30
MetalTitlePane.closeMnemonic=67 MetalTitlePane.closeMnemonic=67

View file

@ -18,17 +18,18 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=Consultar em: FileChooser.lookInLabelText=Consultar Em:
FileChooser.saveInLabelText=Salvar em: FileChooser.saveInLabelText=Salvar Em:
FileChooser.fileNameLabelText=Nome de arquivo: FileChooser.fileNameLabelText=Nome do Arquivo:
FileChooser.filesOfTypeLabelText=Arquivos de tipo: FileChooser.folderNameLabelText=Nome da pasta:
FileChooser.upFolderToolTipText=Um n\u00edvel acima FileChooser.filesOfTypeLabelText=Arquivos do Tipo:
FileChooser.upFolderToolTipText=Um N\u00EDvel Acima
FileChooser.upFolderAccessibleName=Acima FileChooser.upFolderAccessibleName=Acima
FileChooser.homeFolderToolTipText=In\u00edcio FileChooser.homeFolderToolTipText=In\u00EDcio
FileChooser.homeFolderAccessibleName=In\u00edcio FileChooser.homeFolderAccessibleName=In\u00EDcio
FileChooser.newFolderToolTipText=Criar nova pasta FileChooser.newFolderToolTipText=Criar Nova Pasta
FileChooser.newFolderAccessibleName=Nova pasta FileChooser.newFolderAccessibleName=Nova Pasta
FileChooser.newFolderActionLabelText=Nova pasta FileChooser.newFolderActionLabelText=Nova Pasta
FileChooser.listViewButtonToolTipText=Lista FileChooser.listViewButtonToolTipText=Lista
FileChooser.listViewButtonAccessibleName=Lista FileChooser.listViewButtonAccessibleName=Lista
FileChooser.listViewActionLabelText=Lista FileChooser.listViewActionLabelText=Lista

View file

@ -18,12 +18,12 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=S\u00f6k i: FileChooser.lookInLabelText=Leta i:
FileChooser.saveInLabelText=Spara i: FileChooser.saveInLabelText=Spara i:
FileChooser.fileNameLabelText=Filnamn: FileChooser.fileNameLabelText=Filnamn:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Mapp:
FileChooser.filesOfTypeLabelText=Filformat: FileChooser.filesOfTypeLabelText=Filformat:
FileChooser.upFolderToolTipText=Upp en niv\u00e5 FileChooser.upFolderToolTipText=Upp en niv\u00E5
FileChooser.upFolderAccessibleName=Upp FileChooser.upFolderAccessibleName=Upp
FileChooser.homeFolderToolTipText=Hem FileChooser.homeFolderToolTipText=Hem
FileChooser.homeFolderAccessibleName=Hem FileChooser.homeFolderAccessibleName=Hem
@ -33,24 +33,24 @@ FileChooser.newFolderActionLabelText=Ny mapp
FileChooser.listViewButtonToolTipText=Lista FileChooser.listViewButtonToolTipText=Lista
FileChooser.listViewButtonAccessibleName=Lista FileChooser.listViewButtonAccessibleName=Lista
FileChooser.listViewActionLabelText=Lista FileChooser.listViewActionLabelText=Lista
FileChooser.detailsViewButtonToolTipText=Detaljerad lista FileChooser.detailsViewButtonToolTipText=Detaljer
FileChooser.detailsViewButtonAccessibleName=Detaljerad lista FileChooser.detailsViewButtonAccessibleName=Detaljer
FileChooser.detailsViewActionLabelText=Detaljerad lista FileChooser.detailsViewActionLabelText=Detaljer
FileChooser.refreshActionLabelText=Uppdatera FileChooser.refreshActionLabelText=F\u00F6rnya
FileChooser.viewMenuLabelText=Vy FileChooser.viewMenuLabelText=Vy
FileChooser.fileNameHeaderText=Namn FileChooser.fileNameHeaderText=Namn
FileChooser.fileSizeHeaderText=Storlek FileChooser.fileSizeHeaderText=Storlek
FileChooser.fileTypeHeaderText=Typ FileChooser.fileTypeHeaderText=Typ
FileChooser.fileDateHeaderText=\u00c4ndrad FileChooser.fileDateHeaderText=\u00C4ndrad
FileChooser.fileAttrHeaderText=Attribut FileChooser.fileAttrHeaderText=Attribut
############ Used by MetalTitlePane if rendering window decorations############ ############ Used by MetalTitlePane if rendering window decorations############
# All mnemonics are KeyEvent.VK_XXX as integers # All mnemonics are KeyEvent.VK_XXX as integers
MetalTitlePane.restoreTitle=\u00c5terst\u00e4ll MetalTitlePane.restoreTitle=\u00C5terst\u00E4ll
MetalTitlePane.restoreMnemonic=84 MetalTitlePane.restoreMnemonic=82
MetalTitlePane.iconifyTitle=Minimera MetalTitlePane.iconifyTitle=Minimera
MetalTitlePane.iconifyMnemonic=77 MetalTitlePane.iconifyMnemonic=69
MetalTitlePane.maximizeTitle=Maximera MetalTitlePane.maximizeTitle=Maximera
MetalTitlePane.maximizeMnemonic=88 MetalTitlePane.maximizeMnemonic=88
MetalTitlePane.closeTitle=St\u00e4ng MetalTitlePane.closeTitle=St\u00E4ng
MetalTitlePane.closeMnemonic=83 MetalTitlePane.closeMnemonic=67

View file

@ -18,39 +18,39 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=\u67e5\u770b\uff1a FileChooser.lookInLabelText=\u67E5\u770B:
FileChooser.saveInLabelText=\u4fdd\u5b58\uff1a FileChooser.saveInLabelText=\u4FDD\u5B58:
FileChooser.fileNameLabelText=\u6587\u4ef6\u540d\uff1a FileChooser.fileNameLabelText=\u6587\u4EF6\u540D:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=\u6587\u4EF6\u5939\u540D:
FileChooser.filesOfTypeLabelText=\u6587\u4ef6\u7c7b\u578b\uff1a FileChooser.filesOfTypeLabelText=\u6587\u4EF6\u7C7B\u578B:
FileChooser.upFolderToolTipText=\u5411\u4e0a\u4e00\u5c42 FileChooser.upFolderToolTipText=\u5411\u4E0A\u4E00\u7EA7
FileChooser.upFolderAccessibleName=\u5411\u4e0a FileChooser.upFolderAccessibleName=\u5411\u4E0A
FileChooser.homeFolderToolTipText=\u8d77\u59cb\u76ee\u5f55 FileChooser.homeFolderToolTipText=\u4E3B\u76EE\u5F55
FileChooser.homeFolderAccessibleName=\u8d77\u59cb\u76ee\u5f55 FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u5F55
FileChooser.newFolderToolTipText=\u521b\u5efa\u65b0\u7684\u6587\u4ef6\u5939 FileChooser.newFolderToolTipText=\u521B\u5EFA\u65B0\u6587\u4EF6\u5939
FileChooser.newFolderAccessibleName=\u65b0\u5efa\u6587\u4ef6\u5939 FileChooser.newFolderAccessibleName=\u65B0\u5EFA\u6587\u4EF6\u5939
FileChooser.newFolderActionLabelText=\u65b0\u5efa\u6587\u4ef6\u5939 FileChooser.newFolderActionLabelText=\u65B0\u5EFA\u6587\u4EF6\u5939
FileChooser.listViewButtonToolTipText=\u5217\u8868 FileChooser.listViewButtonToolTipText=\u5217\u8868
FileChooser.listViewButtonAccessibleName=\u5217\u8868 FileChooser.listViewButtonAccessibleName=\u5217\u8868
FileChooser.listViewActionLabelText=\u5217\u8868 FileChooser.listViewActionLabelText=\u5217\u8868
FileChooser.detailsViewButtonToolTipText=\u8be6\u7ec6\u4fe1\u606f FileChooser.detailsViewButtonToolTipText=\u8BE6\u7EC6\u8D44\u6599
FileChooser.detailsViewButtonAccessibleName=\u8be6\u7ec6\u4fe1\u606f FileChooser.detailsViewButtonAccessibleName=\u8BE6\u7EC6\u8D44\u6599
FileChooser.detailsViewActionLabelText=\u8be6\u7ec6\u4fe1\u606f FileChooser.detailsViewActionLabelText=\u8BE6\u7EC6\u8D44\u6599
FileChooser.refreshActionLabelText=\u5237\u65b0 FileChooser.refreshActionLabelText=\u5237\u65B0
FileChooser.viewMenuLabelText=\u89c6\u56fe FileChooser.viewMenuLabelText=\u89C6\u56FE
FileChooser.fileNameHeaderText=\u540d\u79f0 FileChooser.fileNameHeaderText=\u540D\u79F0
FileChooser.fileSizeHeaderText=\u5927\u5c0f FileChooser.fileSizeHeaderText=\u5927\u5C0F
FileChooser.fileTypeHeaderText=\u7c7b\u578b FileChooser.fileTypeHeaderText=\u7C7B\u578B
FileChooser.fileDateHeaderText=\u4fee\u6b63\u7248 FileChooser.fileDateHeaderText=\u4FEE\u6539\u65E5\u671F
FileChooser.fileAttrHeaderText=\u5c5e\u6027 FileChooser.fileAttrHeaderText=\u5C5E\u6027
############ Used by MetalTitlePane if rendering window decorations############ ############ Used by MetalTitlePane if rendering window decorations############
# All mnemonics are KeyEvent.VK_XXX as integers # All mnemonics are KeyEvent.VK_XXX as integers
MetalTitlePane.restoreTitle=\u6062\u590d (R) MetalTitlePane.restoreTitle=\u8FD8\u539F
MetalTitlePane.restoreMnemonic=82 MetalTitlePane.restoreMnemonic=82
MetalTitlePane.iconifyTitle=\u6700\u5c0f\u5316 (E) MetalTitlePane.iconifyTitle=\u6700\u5C0F\u5316
MetalTitlePane.iconifyMnemonic=69 MetalTitlePane.iconifyMnemonic=69
MetalTitlePane.maximizeTitle=\u6700\u5927\u5316 (X) MetalTitlePane.maximizeTitle=\u6700\u5927\u5316
MetalTitlePane.maximizeMnemonic=88 MetalTitlePane.maximizeMnemonic=88
MetalTitlePane.closeTitle=\u5173\u95ed (C) MetalTitlePane.closeTitle=\u5173\u95ED
MetalTitlePane.closeMnemonic=67 MetalTitlePane.closeMnemonic=67

View file

@ -18,39 +18,39 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=\u67e5\u770b\ufe55 FileChooser.lookInLabelText=\u67E5\u8A62:
FileChooser.saveInLabelText=\u5132\u5b58\u65bc\uff1a FileChooser.saveInLabelText=\u5132\u5B58\u65BC:
FileChooser.fileNameLabelText=\u6a94\u6848\u540d\u7a31\ufe55 FileChooser.fileNameLabelText=\u6A94\u6848\u540D\u7A31:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=\u8CC7\u6599\u593E\u540D\u7A31:
FileChooser.filesOfTypeLabelText=\u6a94\u6848\u985e\u578b\ufe55 FileChooser.filesOfTypeLabelText=\u6A94\u6848\u985E\u578B:
FileChooser.upFolderToolTipText=\u5f80\u4e0a\u4e00\u5c64 FileChooser.upFolderToolTipText=\u5F80\u4E0A\u4E00\u5C64
FileChooser.upFolderAccessibleName=\u5f80\u4e0a FileChooser.upFolderAccessibleName=\u5F80\u4E0A
FileChooser.homeFolderToolTipText=\u4e3b\u76ee\u9304 FileChooser.homeFolderToolTipText=\u4E3B\u76EE\u9304
FileChooser.homeFolderAccessibleName=\u4e3b\u76ee\u9304 FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u9304
FileChooser.newFolderToolTipText=\u5efa\u7acb\u65b0\u8cc7\u6599\u593e FileChooser.newFolderToolTipText=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E
FileChooser.newFolderAccessibleName=\u65b0\u8cc7\u6599\u593e FileChooser.newFolderAccessibleName=\u65B0\u8CC7\u6599\u593E
FileChooser.newFolderActionLabelText=\u65b0\u8cc7\u6599\u593e FileChooser.newFolderActionLabelText=\u65B0\u8CC7\u6599\u593E
FileChooser.listViewButtonToolTipText=\u6e05\u55ae FileChooser.listViewButtonToolTipText=\u6E05\u55AE
FileChooser.listViewButtonAccessibleName=\u6e05\u55ae FileChooser.listViewButtonAccessibleName=\u6E05\u55AE
FileChooser.listViewActionLabelText=\u6e05\u55ae FileChooser.listViewActionLabelText=\u6E05\u55AE
FileChooser.detailsViewButtonToolTipText=\u8a73\u7d30\u8cc7\u8a0a FileChooser.detailsViewButtonToolTipText=\u8A73\u7D30\u8CC7\u8A0A
FileChooser.detailsViewButtonAccessibleName=\u8a73\u7d30\u8cc7\u8a0a FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30\u8CC7\u8A0A
FileChooser.detailsViewActionLabelText=\u8a73\u7d30\u8cc7\u8a0a FileChooser.detailsViewActionLabelText=\u8A73\u7D30\u8CC7\u8A0A
FileChooser.refreshActionLabelText=\u66f4\u65b0 FileChooser.refreshActionLabelText=\u91CD\u65B0\u6574\u7406
FileChooser.viewMenuLabelText=\u6aa2\u8996 FileChooser.viewMenuLabelText=\u6AA2\u8996
FileChooser.fileNameHeaderText=\u540d\u7a31 FileChooser.fileNameHeaderText=\u540D\u7A31
FileChooser.fileSizeHeaderText=\u5927\u5c0f FileChooser.fileSizeHeaderText=\u5927\u5C0F
FileChooser.fileTypeHeaderText=\u985e\u578b FileChooser.fileTypeHeaderText=\u985E\u578B
FileChooser.fileDateHeaderText=\u5df2\u4fee\u6539 FileChooser.fileDateHeaderText=\u4FEE\u6539\u65E5\u671F
FileChooser.fileAttrHeaderText=\u5c6c\u6027 FileChooser.fileAttrHeaderText=\u5C6C\u6027
############ Used by MetalTitlePane if rendering window decorations############ ############ Used by MetalTitlePane if rendering window decorations############
# All mnemonics are KeyEvent.VK_XXX as integers # All mnemonics are KeyEvent.VK_XXX as integers
MetalTitlePane.restoreTitle=\u5fa9\u539f(R) MetalTitlePane.restoreTitle=\u5FA9\u539F
MetalTitlePane.restoreMnemonic=82 MetalTitlePane.restoreMnemonic=82
MetalTitlePane.iconifyTitle=\u6700\u5c0f\u5316(E) MetalTitlePane.iconifyTitle=\u6700\u5C0F\u5316
MetalTitlePane.iconifyMnemonic=69 MetalTitlePane.iconifyMnemonic=69
MetalTitlePane.maximizeTitle=\u6700\u5927\u5316(X) MetalTitlePane.maximizeTitle=\u6700\u5927\u5316
MetalTitlePane.maximizeMnemonic=88 MetalTitlePane.maximizeMnemonic=88
MetalTitlePane.closeTitle=\u95dc\u9589(C) MetalTitlePane.closeTitle=\u95DC\u9589
MetalTitlePane.closeMnemonic=67 MetalTitlePane.closeMnemonic=67

View file

@ -10,6 +10,9 @@
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them.
#
# @author Steve Wilson # @author Steve Wilson
@ -18,20 +21,25 @@
FileChooser.lookInLabelText=Suchen in: FileChooser.lookInLabelText=Suchen in:
FileChooser.saveInLabelText=Speichern in: FileChooser.saveInLabelText=Speichern in:
FileChooser.fileNameLabelText=Dateiname: FileChooser.fileNameLabelText=Dateiname:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Ordnername:
FileChooser.filesOfTypeLabelText=Dateityp: FileChooser.filesOfTypeLabelText=Dateityp:
FileChooser.upFolderToolTipText=Eine Ebene h\u00f6her FileChooser.upFolderToolTipText=Eine Ebene h\u00F6her
FileChooser.upFolderAccessibleName=H\u00f6her FileChooser.upFolderAccessibleName=Nach oben
FileChooser.homeFolderToolTipText=Home FileChooser.homeFolderToolTipText=Home
FileChooser.homeFolderAccessibleName=Home FileChooser.homeFolderAccessibleName=Home
FileChooser.newFolderToolTipText=Neuen Ordner erstellen FileChooser.newFolderToolTipText=Neuen Ordner erstellen
FileChooser.newFolderAccessibleName=Neuer Ordner FileChooser.newFolderAccessibleName=Neuer Ordner
FileChooser.newFolderActionLabelText=Neuer Ordner
FileChooser.listViewButtonToolTipText=Liste FileChooser.listViewButtonToolTipText=Liste
FileChooser.listViewButtonAccessibleName=Liste FileChooser.listViewButtonAccessibleName=Liste
FileChooser.listViewActionLabelText=Liste
FileChooser.detailsViewButtonToolTipText=Details FileChooser.detailsViewButtonToolTipText=Details
FileChooser.detailsViewButtonAccessibleName=Details FileChooser.detailsViewButtonAccessibleName=Details
FileChooser.fileNameHeaderText=Dateiname FileChooser.detailsViewActionLabelText=Details
FileChooser.fileSizeHeaderText=Gr\u00f6\u00dfe FileChooser.refreshActionLabelText=Aktualisieren
FileChooser.viewMenuLabelText=Ansicht
FileChooser.fileNameHeaderText=Name
FileChooser.fileSizeHeaderText=Gr\u00F6\u00DFe
FileChooser.fileTypeHeaderText=Typ FileChooser.fileTypeHeaderText=Typ
FileChooser.fileDateHeaderText=Ge\u00e4ndert FileChooser.fileDateHeaderText=Ge\u00E4ndert
FileChooser.fileAttrHeaderText=Attribut FileChooser.fileAttrHeaderText=Attribute

View file

@ -10,6 +10,9 @@
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them.
#
# @author Steve Wilson # @author Steve Wilson
@ -17,21 +20,26 @@
FileChooser.lookInLabelText=Buscar en: FileChooser.lookInLabelText=Buscar en:
FileChooser.saveInLabelText=Guardar en: FileChooser.saveInLabelText=Guardar en:
FileChooser.fileNameLabelText=Nombre de archivo: FileChooser.fileNameLabelText=Nombre de Archivo:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Nombre de la Carpeta:
FileChooser.filesOfTypeLabelText=Archivos de tipo: FileChooser.filesOfTypeLabelText=Archivos de Tipo:
FileChooser.upFolderToolTipText=Subir un nivel FileChooser.upFolderToolTipText=Subir un Nivel
FileChooser.upFolderAccessibleName=Arriba FileChooser.upFolderAccessibleName=Arriba
FileChooser.homeFolderToolTipText=Principal FileChooser.homeFolderToolTipText=Inicio
FileChooser.homeFolderAccessibleName=Principal FileChooser.homeFolderAccessibleName=Inicio
FileChooser.newFolderToolTipText=Crear carpeta nueva FileChooser.newFolderToolTipText=Crear Nueva Carpeta
FileChooser.newFolderAccessibleName=Carpeta nueva FileChooser.newFolderAccessibleName=Nueva Carpeta
FileChooser.newFolderActionLabelText=Nueva Carpeta
FileChooser.listViewButtonToolTipText=Lista FileChooser.listViewButtonToolTipText=Lista
FileChooser.listViewButtonAccessibleName=Lista FileChooser.listViewButtonAccessibleName=Lista
FileChooser.listViewActionLabelText=Lista
FileChooser.detailsViewButtonToolTipText=Detalles FileChooser.detailsViewButtonToolTipText=Detalles
FileChooser.detailsViewButtonAccessibleName=Detalles FileChooser.detailsViewButtonAccessibleName=Detalles
FileChooser.detailsViewActionLabelText=Detalles
FileChooser.refreshActionLabelText=Refrescar
FileChooser.viewMenuLabelText=Ver
FileChooser.fileNameHeaderText=Nombre FileChooser.fileNameHeaderText=Nombre
FileChooser.fileSizeHeaderText=Tama\u00f1o FileChooser.fileSizeHeaderText=Tama\u00F1o
FileChooser.fileTypeHeaderText=Tipo FileChooser.fileTypeHeaderText=Tipo
FileChooser.fileDateHeaderText=Modificado FileChooser.fileDateHeaderText=Modificado
FileChooser.fileAttrHeaderText=Atributos FileChooser.fileAttrHeaderText=Atributos

View file

@ -10,6 +10,9 @@
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them.
#
# @author Steve Wilson # @author Steve Wilson
@ -17,21 +20,26 @@
FileChooser.lookInLabelText=Rechercher dans : FileChooser.lookInLabelText=Rechercher dans :
FileChooser.saveInLabelText=Enregistrer dans : FileChooser.saveInLabelText=Enregistrer dans :
FileChooser.fileNameLabelText=Nom de fichier : FileChooser.fileNameLabelText=Nom du fichier :
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Nom du dossier :
FileChooser.filesOfTypeLabelText=Fichiers du type : FileChooser.filesOfTypeLabelText=Fichiers de type :
FileChooser.upFolderToolTipText=Remonte d'un niveau. FileChooser.upFolderToolTipText=Remonte d'un niveau.
FileChooser.upFolderAccessibleName=Vers le haut FileChooser.upFolderAccessibleName=Monter
FileChooser.homeFolderToolTipText= R\u00e9pertoire d'accueil FileChooser.homeFolderToolTipText=R\u00E9pertoire d'origine
FileChooser.homeFolderAccessibleName=Accueil FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
FileChooser.newFolderToolTipText=Cr\u00e9e un nouveau dossier. FileChooser.newFolderToolTipText=Cr\u00E9e un dossier.
FileChooser.newFolderAccessibleName=Nouveau dossier FileChooser.newFolderAccessibleName=Nouveau dossier
FileChooser.newFolderActionLabelText=Nouveau dossier
FileChooser.listViewButtonToolTipText=Liste FileChooser.listViewButtonToolTipText=Liste
FileChooser.listViewButtonAccessibleName=Liste FileChooser.listViewButtonAccessibleName=Liste
FileChooser.detailsViewButtonToolTipText=D\u00e9tails FileChooser.listViewActionLabelText=Liste
FileChooser.detailsViewButtonAccessibleName=D\u00e9tails FileChooser.detailsViewButtonToolTipText=D\u00E9tails
FileChooser.detailsViewButtonAccessibleName=D\u00E9tails
FileChooser.detailsViewActionLabelText=D\u00E9tails
FileChooser.refreshActionLabelText=Actualiser
FileChooser.viewMenuLabelText=Affichage
FileChooser.fileNameHeaderText=Nom FileChooser.fileNameHeaderText=Nom
FileChooser.fileSizeHeaderText=Taille FileChooser.fileSizeHeaderText=Taille
FileChooser.fileTypeHeaderText=Type FileChooser.fileTypeHeaderText=Type
FileChooser.fileDateHeaderText=Modifi\u00e9 FileChooser.fileDateHeaderText=Modifi\u00E9
FileChooser.fileAttrHeaderText=Attributs FileChooser.fileAttrHeaderText=Attributs

View file

@ -10,6 +10,9 @@
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them.
#
# @author Steve Wilson # @author Steve Wilson
@ -18,21 +21,25 @@
FileChooser.lookInLabelText=Cerca in: FileChooser.lookInLabelText=Cerca in:
FileChooser.saveInLabelText=Salva in: FileChooser.saveInLabelText=Salva in:
FileChooser.fileNameLabelText=Nome file: FileChooser.fileNameLabelText=Nome file:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Nome della cartella:
FileChooser.filesOfTypeLabelText=Tipo file: FileChooser.filesOfTypeLabelText=Tipo file:
FileChooser.upFolderToolTipText=Cartella superiore FileChooser.upFolderToolTipText=Cartella superiore
FileChooser.upFolderAccessibleName=Superiore FileChooser.upFolderAccessibleName=Superiore
FileChooser.homeFolderToolTipText=Principale FileChooser.homeFolderToolTipText=Home
FileChooser.homeFolderAccessibleName=Principale FileChooser.homeFolderAccessibleName=Home
FileChooser.newFolderToolTipText=Crea nuova cartella FileChooser.newFolderToolTipText=Crea nuova cartella
FileChooser.newFolderAccessibleName=Nuova cartella FileChooser.newFolderAccessibleName=Nuova cartella
FileChooser.listViewButtonToolTipText=Elenco FileChooser.newFolderActionLabelText=Nuova cartella
FileChooser.listViewButtonAccessibleName=Elenco FileChooser.listViewButtonToolTipText=Lista
FileChooser.listViewButtonAccessibleName=Lista
FileChooser.listViewActionLabelText=Lista
FileChooser.detailsViewButtonToolTipText=Dettagli FileChooser.detailsViewButtonToolTipText=Dettagli
FileChooser.detailsViewButtonAccessibleName=Dettagli FileChooser.detailsViewButtonAccessibleName=Dettagli
FileChooser.detailsViewActionLabelText=Dettagli
FileChooser.refreshActionLabelText=Aggiorna
FileChooser.viewMenuLabelText=Visualizza
FileChooser.fileNameHeaderText=Nome FileChooser.fileNameHeaderText=Nome
FileChooser.fileSizeHeaderText=Dimensioni FileChooser.fileSizeHeaderText=Dimensioni
FileChooser.fileTypeHeaderText=Tipo FileChooser.fileTypeHeaderText=Tipo
FileChooser.fileDateHeaderText=Modificato FileChooser.fileDateHeaderText=Modificato
FileChooser.fileAttrHeaderText=Attributi FileChooser.fileAttrHeaderText=Attributi

View file

@ -18,28 +18,28 @@
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=\u53c2\u7167: FileChooser.lookInLabelText=\u53C2\u7167:
FileChooser.saveInLabelText=\u4fdd\u5b58: FileChooser.saveInLabelText=\u4FDD\u5B58:
FileChooser.fileNameLabelText=\u30d5\u30a1\u30a4\u30eb\u540d: FileChooser.fileNameLabelText=\u30D5\u30A1\u30A4\u30EB\u540D:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=\u30D5\u30A9\u30EB\u30C0\u540D:
FileChooser.filesOfTypeLabelText=\u30d5\u30a1\u30a4\u30eb\u30bf\u30a4\u30d7: FileChooser.filesOfTypeLabelText=\u30D5\u30A1\u30A4\u30EB\u306E\u30BF\u30A4\u30D7:
FileChooser.upFolderToolTipText=1 \u30ec\u30d9\u30eb\u4e0a\u3078 FileChooser.upFolderToolTipText=1\u30EC\u30D9\u30EB\u4E0A\u3078
FileChooser.upFolderAccessibleName=\u4e0a\u3078 FileChooser.upFolderAccessibleName=\u4E0A\u3078
FileChooser.homeFolderToolTipText=\u30db\u30fc\u30e0 FileChooser.homeFolderToolTipText=\u30DB\u30FC\u30E0
FileChooser.homeFolderAccessibleName=\u30db\u30fc\u30e0 FileChooser.homeFolderAccessibleName=\u30DB\u30FC\u30E0
FileChooser.newFolderToolTipText=\u30d5\u30a9\u30eb\u30c0\u306e\u65b0\u898f\u4f5c\u6210 FileChooser.newFolderToolTipText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0\u306E\u4F5C\u6210
FileChooser.newFolderAccessibleName=\u65b0\u898f\u30d5\u30a9\u30eb\u30c0 FileChooser.newFolderAccessibleName=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
FileChooser.newFolderActionLabelText=\u65b0\u898f\u30d5\u30a9\u30eb\u30c0 FileChooser.newFolderActionLabelText=\u65B0\u898F\u30D5\u30A9\u30EB\u30C0
FileChooser.listViewButtonToolTipText=\u30ea\u30b9\u30c8 FileChooser.listViewButtonToolTipText=\u30EA\u30B9\u30C8
FileChooser.listViewButtonAccessibleName=\u30ea\u30b9\u30c8 FileChooser.listViewButtonAccessibleName=\u30EA\u30B9\u30C8
FileChooser.listViewActionLabelText=\u30ea\u30b9\u30c8 FileChooser.listViewActionLabelText=\u30EA\u30B9\u30C8
FileChooser.detailsViewButtonToolTipText=\u8a73\u7d30 FileChooser.detailsViewButtonToolTipText=\u8A73\u7D30
FileChooser.detailsViewButtonAccessibleName=\u8a73\u7d30 FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30
FileChooser.detailsViewActionLabelText=\u8a73\u7d30 FileChooser.detailsViewActionLabelText=\u8A73\u7D30
FileChooser.refreshActionLabelText=\u66f4\u65b0 FileChooser.refreshActionLabelText=\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5
FileChooser.viewMenuLabelText=\u8868\u793a FileChooser.viewMenuLabelText=\u8868\u793A
FileChooser.fileNameHeaderText=\u540d\u524d FileChooser.fileNameHeaderText=\u540D\u524D
FileChooser.fileSizeHeaderText=\u30b5\u30a4\u30ba FileChooser.fileSizeHeaderText=\u30B5\u30A4\u30BA
FileChooser.fileTypeHeaderText=\u578b FileChooser.fileTypeHeaderText=\u30BF\u30A4\u30D7
FileChooser.fileDateHeaderText=\u4fee\u6b63\u65e5 FileChooser.fileDateHeaderText=\u4FEE\u6B63\u65E5
FileChooser.fileAttrHeaderText=\u5c5e\u6027 FileChooser.fileAttrHeaderText=\u5C5E\u6027

View file

@ -10,34 +10,36 @@
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them.
#
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=\uac80\uc0c9 \uc704\uce58: FileChooser.lookInLabelText=\uAC80\uC0C9 \uC704\uCE58:
FileChooser.saveInLabelText=\uc800\uc7a5 \uc704\uce58 FileChooser.saveInLabelText=\uC800\uC7A5 \uC704\uCE58:
FileChooser.fileNameLabelText=\ud30c\uc77c \uc774\ub984: FileChooser.fileNameLabelText=\uD30C\uC77C \uC774\uB984:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=\uD3F4\uB354 \uC774\uB984:
FileChooser.filesOfTypeLabelText=\ud30c\uc77c \uc885\ub958: FileChooser.filesOfTypeLabelText=\uD30C\uC77C \uC720\uD615:
FileChooser.upFolderToolTipText=\ud55c \ub2e8\uacc4 \uc704\ub85c FileChooser.upFolderToolTipText=\uD55C \uB808\uBCA8 \uC704\uB85C
FileChooser.upFolderAccessibleName=\uc704 FileChooser.upFolderAccessibleName=\uC704\uB85C
FileChooser.homeFolderToolTipText=\ud648 FileChooser.homeFolderToolTipText=\uD648
FileChooser.homeFolderAccessibleName=\ud648 FileChooser.homeFolderAccessibleName=\uD648
FileChooser.newFolderToolTipText=\uc0c8 \ud3f4\ub354 \uc791\uc131 FileChooser.newFolderToolTipText=\uC0C8 \uD3F4\uB354 \uC0DD\uC131
FileChooser.newFolderAccessibleName=\uc0c8 \ud3f4\ub354 FileChooser.newFolderAccessibleName=\uC0C8 \uD3F4\uB354
FileChooser.newFolderActionLabelText=\uc0c8 \ud3f4\ub354 FileChooser.newFolderActionLabelText=\uC0C8 \uD3F4\uB354
FileChooser.listViewButtonToolTipText=\ubaa9\ub85d FileChooser.listViewButtonToolTipText=\uBAA9\uB85D
FileChooser.listViewButtonAccessibleName=\ubaa9\ub85d FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
FileChooser.listViewActionLabelText=\ubaa9\ub85d FileChooser.listViewActionLabelText=\uBAA9\uB85D
FileChooser.detailsViewButtonToolTipText=\uc790\uc138\ud788 FileChooser.detailsViewButtonToolTipText=\uC138\uBD80 \uC815\uBCF4
FileChooser.detailsViewButtonAccessibleName=\uc790\uc138\ud788 FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80 \uC815\uBCF4
FileChooser.detailsViewActionLabelText=\uc790\uc138\ud788 FileChooser.detailsViewActionLabelText=\uC138\uBD80 \uC815\uBCF4
FileChooser.refreshActionLabelText=\uac31\uc2e0 FileChooser.refreshActionLabelText=\uC0C8\uB85C \uACE0\uCE68
FileChooser.viewMenuLabelText=\ubcf4\uae30 FileChooser.viewMenuLabelText=\uBCF4\uAE30
FileChooser.fileNameHeaderText=\uc774\ub984 FileChooser.fileNameHeaderText=\uC774\uB984
FileChooser.fileSizeHeaderText=\ud06c\uae30 FileChooser.fileSizeHeaderText=\uD06C\uAE30
FileChooser.fileTypeHeaderText=\uc885\ub958 FileChooser.fileTypeHeaderText=\uC720\uD615
FileChooser.fileDateHeaderText=\uc218\uc815 FileChooser.fileDateHeaderText=\uC218\uC815 \uB0A0\uC9DC
FileChooser.fileAttrHeaderText=\uc18d\uc131 FileChooser.fileAttrHeaderText=\uC18D\uC131

View file

@ -10,22 +10,26 @@
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them.
#
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=Consultar em: FileChooser.lookInLabelText=Consultar Em:
FileChooser.saveInLabelText=Salvar em: FileChooser.saveInLabelText=Salvar Em:
FileChooser.fileNameLabelText=Nome de arquivo: FileChooser.fileNameLabelText=Nome do Arquivo:
FileChooser.filesOfTypeLabelText=Arquivos de tipo: FileChooser.folderNameLabelText=Nome da pasta:
FileChooser.upFolderToolTipText=Um n\u00edvel acima FileChooser.filesOfTypeLabelText=Arquivos do Tipo:
FileChooser.upFolderToolTipText=Um N\u00EDvel Acima
FileChooser.upFolderAccessibleName=Acima FileChooser.upFolderAccessibleName=Acima
FileChooser.homeFolderToolTipText=In\u00edcio FileChooser.homeFolderToolTipText=In\u00EDcio
FileChooser.homeFolderAccessibleName=In\u00edcio FileChooser.homeFolderAccessibleName=In\u00EDcio
FileChooser.newFolderToolTipText=Criar nova pasta FileChooser.newFolderToolTipText=Criar Nova Pasta
FileChooser.newFolderAccessibleName=Nova pasta FileChooser.newFolderAccessibleName=Nova Pasta
FileChooser.newFolderActionLabelText=Nova pasta FileChooser.newFolderActionLabelText=Nova Pasta
FileChooser.listViewButtonToolTipText=Lista FileChooser.listViewButtonToolTipText=Lista
FileChooser.listViewButtonAccessibleName=Lista FileChooser.listViewButtonAccessibleName=Lista
FileChooser.listViewActionLabelText=Lista FileChooser.listViewActionLabelText=Lista

View file

@ -10,28 +10,36 @@
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them.
#
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=S\u00f6k i: FileChooser.lookInLabelText=Leta i:
FileChooser.saveInLabelText=Spara i: FileChooser.saveInLabelText=Spara i:
FileChooser.fileNameLabelText=Filnamn: FileChooser.fileNameLabelText=Filnamn:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=Mapp:
FileChooser.filesOfTypeLabelText=Filformat: FileChooser.filesOfTypeLabelText=Filformat:
FileChooser.upFolderToolTipText=Upp en niv\u00e5 FileChooser.upFolderToolTipText=Upp en niv\u00E5
FileChooser.upFolderAccessibleName=Upp FileChooser.upFolderAccessibleName=Upp
FileChooser.homeFolderToolTipText=Hem FileChooser.homeFolderToolTipText=Hem
FileChooser.homeFolderAccessibleName=Hem FileChooser.homeFolderAccessibleName=Hem
FileChooser.newFolderToolTipText=Skapa ny mapp FileChooser.newFolderToolTipText=Skapa ny mapp
FileChooser.newFolderAccessibleName=Ny mapp FileChooser.newFolderAccessibleName=Ny mapp
FileChooser.newFolderActionLabelText=Ny mapp
FileChooser.listViewButtonToolTipText=Lista FileChooser.listViewButtonToolTipText=Lista
FileChooser.listViewButtonAccessibleName=Lista FileChooser.listViewButtonAccessibleName=Lista
FileChooser.detailsViewButtonToolTipText=Detaljerad lista FileChooser.listViewActionLabelText=Lista
FileChooser.detailsViewButtonAccessibleName=Detaljerad lista FileChooser.detailsViewButtonToolTipText=Detaljer
FileChooser.detailsViewButtonAccessibleName=Detaljer
FileChooser.detailsViewActionLabelText=Detaljer
FileChooser.refreshActionLabelText=F\u00F6rnya
FileChooser.viewMenuLabelText=Vy
FileChooser.fileNameHeaderText=Namn FileChooser.fileNameHeaderText=Namn
FileChooser.fileSizeHeaderText=Storlek FileChooser.fileSizeHeaderText=Storlek
FileChooser.fileTypeHeaderText=Typ FileChooser.fileTypeHeaderText=Typ
FileChooser.fileDateHeaderText=\u00c4ndrad FileChooser.fileDateHeaderText=\u00C4ndrad
FileChooser.fileAttrHeaderText=Attribut FileChooser.fileAttrHeaderText=Attribut

View file

@ -10,28 +10,36 @@
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them.
#
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=\u67e5\u770b\uff1a FileChooser.lookInLabelText=\u67E5\u770B:
FileChooser.saveInLabelText=\u4fdd\u5b58\uff1a FileChooser.saveInLabelText=\u4FDD\u5B58:
FileChooser.fileNameLabelText=\u6587\u4ef6\u540d\uff1a FileChooser.fileNameLabelText=\u6587\u4EF6\u540D:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=\u6587\u4EF6\u5939\u540D:
FileChooser.filesOfTypeLabelText=\u6587\u4ef6\u7c7b\u578b\uff1a FileChooser.filesOfTypeLabelText=\u6587\u4EF6\u7C7B\u578B:
FileChooser.upFolderToolTipText=\u5411\u4e0a\u4e00\u5c42 FileChooser.upFolderToolTipText=\u5411\u4E0A\u4E00\u7EA7
FileChooser.upFolderAccessibleName=\u5411\u4e0a FileChooser.upFolderAccessibleName=\u5411\u4E0A
FileChooser.homeFolderToolTipText=\u8d77\u59cb\u76ee\u5f55 FileChooser.homeFolderToolTipText=\u4E3B\u76EE\u5F55
FileChooser.homeFolderAccessibleName=\u8d77\u59cb\u76ee\u5f55 FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u5F55
FileChooser.newFolderToolTipText=\u521b\u5efa\u65b0\u7684\u6587\u4ef6\u5939 FileChooser.newFolderToolTipText=\u521B\u5EFA\u65B0\u6587\u4EF6\u5939
FileChooser.newFolderAccessibleName=\u65b0\u5efa\u6587\u4ef6\u5939 FileChooser.newFolderAccessibleName=\u65B0\u5EFA\u6587\u4EF6\u5939
FileChooser.newFolderActionLabelText=\u65B0\u5EFA\u6587\u4EF6\u5939
FileChooser.listViewButtonToolTipText=\u5217\u8868 FileChooser.listViewButtonToolTipText=\u5217\u8868
FileChooser.listViewButtonAccessibleName=\u5217\u8868 FileChooser.listViewButtonAccessibleName=\u5217\u8868
FileChooser.detailsViewButtonToolTipText=\u8be6\u7ec6\u4fe1\u606f FileChooser.listViewActionLabelText=\u5217\u8868
FileChooser.detailsViewButtonAccessibleName=\u8be6\u7ec6\u4fe1\u606f FileChooser.detailsViewButtonToolTipText=\u8BE6\u7EC6\u8D44\u6599
FileChooser.fileNameHeaderText=\u540d\u79f0 FileChooser.detailsViewButtonAccessibleName=\u8BE6\u7EC6\u8D44\u6599
FileChooser.fileSizeHeaderText=\u5927\u5c0f FileChooser.detailsViewActionLabelText=\u8BE6\u7EC6\u8D44\u6599
FileChooser.fileTypeHeaderText=\u7c7b\u578b FileChooser.refreshActionLabelText=\u5237\u65B0
FileChooser.fileDateHeaderText=\u4fee\u6b63\u7248 FileChooser.viewMenuLabelText=\u89C6\u56FE
FileChooser.fileAttrHeaderText=\u5c5e\u6027 FileChooser.fileNameHeaderText=\u540D\u79F0
FileChooser.fileSizeHeaderText=\u5927\u5C0F
FileChooser.fileTypeHeaderText=\u7C7B\u578B
FileChooser.fileDateHeaderText=\u4FEE\u6539\u65E5\u671F
FileChooser.fileAttrHeaderText=\u5C5E\u6027

View file

@ -10,28 +10,36 @@
# This may change in future versions of Swing as we improve localization # This may change in future versions of Swing as we improve localization
# support. # support.
# #
# Refer to the note in basic.properties for a description as to what
# the mnemonics correspond to and how to calculate them.
#
# @author Steve Wilson # @author Steve Wilson
############ FILE CHOOSER STRINGS ############# ############ FILE CHOOSER STRINGS #############
FileChooser.lookInLabelText=\u67e5\u770b\ufe55 FileChooser.lookInLabelText=\u67E5\u8A62:
FileChooser.saveInLabelText=\u5132\u5b58\u65bc\uff1a FileChooser.saveInLabelText=\u5132\u5B58\u65BC:
FileChooser.fileNameLabelText=\u6a94\u6848\u540d\u7a31\ufe55 FileChooser.fileNameLabelText=\u6A94\u6848\u540D\u7A31:
FileChooser.folderNameLabelText=Folder name: FileChooser.folderNameLabelText=\u8CC7\u6599\u593E\u540D\u7A31:
FileChooser.filesOfTypeLabelText=\u6a94\u6848\u985e\u578b\ufe55 FileChooser.filesOfTypeLabelText=\u6A94\u6848\u985E\u578B:
FileChooser.upFolderToolTipText=\u5f80\u4e0a\u4e00\u5c64 FileChooser.upFolderToolTipText=\u5F80\u4E0A\u4E00\u5C64
FileChooser.upFolderAccessibleName=\u5f80\u4e0a FileChooser.upFolderAccessibleName=\u5F80\u4E0A
FileChooser.homeFolderToolTipText=\u4e3b\u76ee\u9304 FileChooser.homeFolderToolTipText=\u4E3B\u76EE\u9304
FileChooser.homeFolderAccessibleName=\u4e3b\u76ee\u9304 FileChooser.homeFolderAccessibleName=\u4E3B\u76EE\u9304
FileChooser.newFolderToolTipText=\u5efa\u7acb\u65b0\u8cc7\u6599\u593e FileChooser.newFolderToolTipText=\u5EFA\u7ACB\u65B0\u8CC7\u6599\u593E
FileChooser.newFolderAccessibleName=\u65b0\u8cc7\u6599\u593e FileChooser.newFolderAccessibleName=\u65B0\u8CC7\u6599\u593E
FileChooser.listViewButtonToolTipText=\u6e05\u55ae FileChooser.newFolderActionLabelText=\u65B0\u8CC7\u6599\u593E
FileChooser.listViewButtonAccessibleName=\u6e05\u55ae FileChooser.listViewButtonToolTipText=\u6E05\u55AE
FileChooser.detailsViewButtonToolTipText=\u8a73\u7d30\u8cc7\u8a0a FileChooser.listViewButtonAccessibleName=\u6E05\u55AE
FileChooser.detailsViewButtonAccessibleName=\u8a73\u7d30\u8cc7\u8a0a FileChooser.listViewActionLabelText=\u6E05\u55AE
FileChooser.fileNameHeaderText=\u540d\u7a31 FileChooser.detailsViewButtonToolTipText=\u8A73\u7D30\u8CC7\u8A0A
FileChooser.fileSizeHeaderText=\u5927\u5c0f FileChooser.detailsViewButtonAccessibleName=\u8A73\u7D30\u8CC7\u8A0A
FileChooser.fileTypeHeaderText=\u985e\u578b FileChooser.detailsViewActionLabelText=\u8A73\u7D30\u8CC7\u8A0A
FileChooser.fileDateHeaderText=\u5df2\u4fee\u6539 FileChooser.refreshActionLabelText=\u91CD\u65B0\u6574\u7406
FileChooser.fileAttrHeaderText=\u5c6c\u6027 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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,52 +1,52 @@
true = true true = true
false = false false = false
version_format = Java Debug Interface (\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u5b9f\u88c5) \u30d0\u30fc\u30b8\u30e7\u30f3{0}.{1} \n{2} version_format = Java Debug Interface(\u30EA\u30D5\u30A1\u30EC\u30F3\u30B9\u5B9F\u88C5)\u30D0\u30FC\u30B8\u30E7\u30F3{0}.{1}\n{2}
raw.command = \u30c7\u30d0\u30c3\u30b0\u3059\u308b\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3 VM \u3092\u8d77\u52d5\u3055\u305b\u308b raw \u30b3\u30de\u30f3\u30c9 raw.command = \u30C7\u30D0\u30C3\u30B0\u3059\u308B\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3VM\u3092\u8D77\u52D5\u3055\u305B\u308Braw\u30B3\u30DE\u30F3\u30C9
raw.command.label = \u30b3\u30de\u30f3\u30c9 raw.command.label = \u30B3\u30DE\u30F3\u30C9
raw.address = raw \u30b3\u30de\u30f3\u30c9\u5b9f\u884c\u5f8c\u306b\u63a5\u7d9a\u3092\u5f85\u6a5f\u3059\u308b\u30a2\u30c9\u30ec\u30b9 raw.address = raw\u30B3\u30DE\u30F3\u30C9\u5B9F\u884C\u5F8C\u306B\u63A5\u7D9A\u3092\u30EA\u30B9\u30CB\u30F3\u30B0\u3059\u308B\u30A2\u30C9\u30EC\u30B9
raw.address.label = \u30a2\u30c9\u30ec\u30b9 raw.address.label = \u30A2\u30C9\u30EC\u30B9
raw.quote = \u5358\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u884c\u5f15\u6570\u5185\u306b\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u3089\u308c\u305f\u30c6\u30ad\u30b9\u30c8\u3092\u7d50\u3073\u4ed8\u3051\u308b\u305f\u3081\u306b\u4f7f\u7528\u3055\u308c\u308b\u6587\u5b57 raw.quote = \u5358\u4E00\u306E\u30B3\u30DE\u30F3\u30C9\u30E9\u30A4\u30F3\u5F15\u6570\u5185\u306B\u30B9\u30DA\u30FC\u30B9\u3067\u533A\u5207\u3089\u308C\u305F\u30C6\u30AD\u30B9\u30C8\u3092\u7D50\u3073\u4ED8\u3051\u308B\u305F\u3081\u306B\u4F7F\u7528\u3055\u308C\u308B\u6587\u5B57
raw.quote.label = \u5f15\u7528\u7b26 raw.quote.label = \u5F15\u7528\u7B26
raw.description = \u30e6\u30fc\u30b6\u304c\u6307\u5b9a\u3057\u305f\u30b3\u30de\u30f3\u30c9\u884c\u3092\u4f7f\u7528\u3057\u3066\u30bf\u30fc\u30b2\u30c3\u30c8\u3092\u8d77\u52d5\u3057\u3001\u63a5\u7d9a\u3057\u307e\u3059\u3002 raw.description = \u30E6\u30FC\u30B6\u30FC\u304C\u6307\u5B9A\u3057\u305F\u30B3\u30DE\u30F3\u30C9\u30E9\u30A4\u30F3\u3092\u4F7F\u7528\u3057\u3066\u30BF\u30FC\u30B2\u30C3\u30C8\u3092\u8D77\u52D5\u3057\u3001\u63A5\u7D9A\u3057\u307E\u3059
sun.home = SDK \u306e\u30db\u30fc\u30e0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u307e\u305f\u306f\u3001\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u8d77\u52d5\u306b\u4f7f\u7528\u3055\u308c\u308b\u5b9f\u884c\u74b0\u5883 sun.home = SDK\u306E\u30DB\u30FC\u30E0\u30FB\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u307E\u305F\u306F\u3001\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u306E\u8D77\u52D5\u306B\u4F7F\u7528\u3055\u308C\u308B\u5B9F\u884C\u74B0\u5883
sun.home.label = \u30db\u30fc\u30e0 sun.home.label = \u30DB\u30FC\u30E0
sun.options = \u8d77\u52d5\u3059\u308b VM \u306e\u30aa\u30d7\u30b7\u30e7\u30f3 sun.options = \u8D77\u52D5\u3059\u308BVM\u306E\u30AA\u30D7\u30B7\u30E7\u30F3
sun.options.label = \u30aa\u30d7\u30b7\u30e7\u30f3 sun.options.label = \u30AA\u30D7\u30B7\u30E7\u30F3
sun.main = \u30e1\u30a4\u30f3\u30af\u30e9\u30b9\u3068\u5f15\u6570\u3001\u307e\u305f\u306f -jar \u304c\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5834\u5408\u306b\u306f\u30e1\u30a4\u30f3 jar \u30d5\u30a1\u30a4\u30eb\u3068\u5f15\u6570 sun.main = \u30E1\u30A4\u30F3\u30FB\u30AF\u30E9\u30B9\u3068\u5F15\u6570\u3001\u307E\u305F\u306F-jar\u304C\u30AA\u30D7\u30B7\u30E7\u30F3\u306E\u5834\u5408\u306B\u306F\u30E1\u30A4\u30F3jar\u30D5\u30A1\u30A4\u30EB\u3068\u5F15\u6570
sun.main.label = \u30e1\u30a4\u30f3 sun.main.label = \u30E1\u30A4\u30F3
sun.init_suspend = \u30e1\u30a4\u30f3\u306e\u5b9f\u884c\u524d\u306b\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u304c\u4e2d\u65ad\u3055\u308c\u307e\u3059\u3002 sun.init_suspend = \u30E1\u30A4\u30F3\u306E\u5B9F\u884C\u524D\u306B\u3059\u3079\u3066\u306E\u30B9\u30EC\u30C3\u30C9\u304C\u4E2D\u65AD\u3055\u308C\u307E\u3059\u3002
sun.init_suspend.label = \u4e2d\u65ad sun.init_suspend.label = \u4E2D\u65AD
sun.quote = \u5358\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u884c\u5f15\u6570\u5185\u306b\u30b9\u30da\u30fc\u30b9\u3067\u533a\u5207\u3089\u308c\u305f\u30c6\u30ad\u30b9\u30c8\u3092\u7d50\u3073\u4ed8\u3051\u308b\u305f\u3081\u306b\u4f7f\u7528\u3055\u308c\u308b\u6587\u5b57 sun.quote = \u5358\u4E00\u306E\u30B3\u30DE\u30F3\u30C9\u30E9\u30A4\u30F3\u5F15\u6570\u5185\u306B\u30B9\u30DA\u30FC\u30B9\u3067\u533A\u5207\u3089\u308C\u305F\u30C6\u30AD\u30B9\u30C8\u3092\u7D50\u3073\u4ED8\u3051\u308B\u305F\u3081\u306B\u4F7F\u7528\u3055\u308C\u308B\u6587\u5B57
sun.quote.label = \u5f15\u7528\u7b26 sun.quote.label = \u5F15\u7528\u7B26
sun.vm_exec = Java VM \u8d77\u52d5\u30c4\u30fc\u30eb\u540d sun.vm_exec = Java VM\u8D77\u52D5\u30C4\u30FC\u30EB\u540D
sun.vm_exec.label = \u8d77\u52d5\u30c4\u30fc\u30eb sun.vm_exec.label = \u8D77\u52D5\u30C4\u30FC\u30EB
sun.description = Sun \u306e Java VM \u30b3\u30de\u30f3\u30c9\u884c\u3092\u4f7f\u7528\u3057\u3066\u30bf\u30fc\u30b2\u30c3\u30c8\u3092\u8d77\u52d5\u3057\u3001\u63a5\u7d9a\u3057\u307e\u3059\u3002 sun.description = Sun\u306EJava VM\u30B3\u30DE\u30F3\u30C9\u30E9\u30A4\u30F3\u3092\u4F7F\u7528\u3057\u3066\u30BF\u30FC\u30B2\u30C3\u30C8\u3092\u8D77\u52D5\u3057\u3001\u63A5\u7D9A\u3057\u307E\u3059
generic_attaching.address = VM \u306b\u63a5\u7d9a\u3059\u308b\u30a2\u30c9\u30ec\u30b9 generic_attaching.address = VM\u306B\u63A5\u7D9A\u3059\u308B\u30A2\u30C9\u30EC\u30B9
generic_attaching.address.label = \u30a2\u30c9\u30ec\u30b9 generic_attaching.address.label = \u30A2\u30C9\u30EC\u30B9
generic_attaching.timeout = \u63a5\u7d9a\u3092\u5f85\u3064\u9593\u306e\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8 generic_attaching.timeout = \u63A5\u7D9A\u3092\u5F85\u3064\u9593\u306E\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8
generic_attaching.timeout.label = \u30bf\u30a4\u30e0\u30a2\u30a6\u30c8 generic_attaching.timeout.label = \u30BF\u30A4\u30E0\u30A2\u30A6\u30C8
generic_listening.address = VM \u3078\u306e\u63a5\u7d9a\u3092\u5f85\u6a5f\u3059\u308b\u30a2\u30c9\u30ec\u30b9 generic_listening.address = VM\u3078\u306E\u63A5\u7D9A\u3092\u30EA\u30B9\u30CB\u30F3\u30B0\u3059\u308B\u30A2\u30C9\u30EC\u30B9
generic_listening.address.label = \u30a2\u30c9\u30ec\u30b9 generic_listening.address.label = \u30A2\u30C9\u30EC\u30B9
generic_listening.timeout = \u63a5\u7d9a\u3092\u5f85\u3064\u9593\u306e\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8 generic_listening.timeout = \u63A5\u7D9A\u3092\u5F85\u3064\u9593\u306E\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8
generic_listening.timeout.label = \u30bf\u30a4\u30e0\u30a2\u30a6\u30c8 generic_listening.timeout.label = \u30BF\u30A4\u30E0\u30A2\u30A6\u30C8
socket_transportservice.description = TCP \u63a5\u7d9a\u3067\u30c7\u30d0\u30c3\u30ac\u3068\u30bf\u30fc\u30b2\u30c3\u30c8\u3092\u63a5\u7d9a\u3057\u307e\u3059\u3002 socket_transportservice.description = TCP\u63A5\u7D9A\u3067\u30C7\u30D0\u30C3\u30AC\u3068\u30BF\u30FC\u30B2\u30C3\u30C8\u3092\u63A5\u7D9A\u3057\u307E\u3059
memory_transportservice.description = \u5171\u6709\u30e1\u30e2\u30ea\u63a5\u7d9a\u3067\u30c7\u30d0\u30c3\u30ac\u3068\u30bf\u30fc\u30b2\u30c3\u30c8\u3092\u63a5\u7d9a\u3057\u307e\u3059\u3002 memory_transportservice.description = \u5171\u6709\u30E1\u30E2\u30EA\u30FC\u63A5\u7D9A\u3067\u30C7\u30D0\u30C3\u30AC\u3068\u30BF\u30FC\u30B2\u30C3\u30C8\u3092\u63A5\u7D9A\u3057\u307E\u3059
socket_attaching.host = VM \u306b\u63a5\u7d9a\u3059\u308b\u30de\u30b7\u30f3\u540d socket_attaching.host = VM\u306B\u63A5\u7D9A\u3059\u308B\u30DE\u30B7\u30F3\u540D
socket_attaching.host.label = \u30db\u30b9\u30c8 socket_attaching.host.label = \u30DB\u30B9\u30C8
socket_attaching.port = VM \u306b\u63a5\u7d9a\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7 socket_attaching.port = VM\u306B\u63A5\u7D9A\u3059\u308B\u30DD\u30FC\u30C8\u756A\u53F7
socket_attaching.port.label = \u30dd\u30fc\u30c8 socket_attaching.port.label = \u30DD\u30FC\u30C8
socket_attaching.description = \u30bd\u30b1\u30c3\u30c8\u3067\u305d\u306e\u4ed6\u306e VM \u306b\u63a5\u7d9a\u3057\u307e\u3059 socket_attaching.description = \u30BD\u30B1\u30C3\u30C8\u3067\u305D\u306E\u4ED6\u306EVM\u306B\u63A5\u7D9A\u3057\u307E\u3059
socket_listening.localaddr = \u30ea\u30b9\u30ca\u30fc\u306e\u30d0\u30a4\u30f3\u30c9\u5148\u30ed\u30fc\u30ab\u30eb\u30a2\u30c9\u30ec\u30b9 socket_listening.localaddr = \u30EA\u30B9\u30CA\u30FC\u306E\u30D0\u30A4\u30F3\u30C9\u5148\u30ED\u30FC\u30AB\u30EB\u30FB\u30A2\u30C9\u30EC\u30B9
socket_listening.localaddr.label = \u30ed\u30fc\u30ab\u30eb\u30a2\u30c9\u30ec\u30b9 socket_listening.localaddr.label = \u30ED\u30FC\u30AB\u30EB\u30FB\u30A2\u30C9\u30EC\u30B9
socket_listening.port = VM \u3078\u306e\u63a5\u7d9a\u3092\u5f85\u6a5f\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7 socket_listening.port = VM\u3078\u306E\u63A5\u7D9A\u3092\u30EA\u30B9\u30CB\u30F3\u30B0\u3059\u308B\u30DD\u30FC\u30C8\u756A\u53F7
socket_listening.port.label = \u30dd\u30fc\u30c8 socket_listening.port.label = \u30DD\u30FC\u30C8
socket_listening.description = \u305d\u306e\u4ed6\u306e VM \u306b\u3088\u308a\u958b\u59cb\u3055\u308c\u308b\u30bd\u30b1\u30c3\u30c8\u63a5\u7d9a\u3092\u53d7\u3051\u5165\u308c\u307e\u3059 socket_listening.description = \u305D\u306E\u4ED6\u306EVM\u306B\u3088\u308A\u958B\u59CB\u3055\u308C\u308B\u30BD\u30B1\u30C3\u30C8\u63A5\u7D9A\u3092\u53D7\u5165\u308C\u307E\u3059
memory_attaching.name = VM \u3078\u306e\u63a5\u7d9a\u306b\u4f7f\u7528\u3055\u308c\u308b\u5171\u6709\u30e1\u30e2\u30ea\u9818\u57df\u540d memory_attaching.name = VM\u3078\u306E\u63A5\u7D9A\u306B\u4F7F\u7528\u3055\u308C\u308B\u5171\u6709\u30E1\u30E2\u30EA\u30FC\u9818\u57DF\u540D
memory_attaching.name.label = \u540d\u524d memory_attaching.name.label = \u540D\u524D
memory_attaching.description = \u5171\u6709\u30e1\u30e2\u30ea\u3067\u305d\u306e\u4ed6\u306e VM \u306b\u63a5\u7d9a\u3057\u307e\u3059 memory_attaching.description = \u5171\u6709\u30E1\u30E2\u30EA\u30FC\u3067\u305D\u306E\u4ED6\u306EVM\u306B\u63A5\u7D9A\u3057\u307E\u3059
memory_listening.name = VM \u3078\u306e\u63a5\u7d9a\u3092\u5f85\u6a5f\u3059\u308b\u305f\u3081\u306e\u5171\u6709\u30e1\u30e2\u30ea\u9818\u57df\u540d memory_listening.name = VM\u3078\u306E\u63A5\u7D9A\u3092\u30EA\u30B9\u30CB\u30F3\u30B0\u3059\u308B\u305F\u3081\u306E\u5171\u6709\u30E1\u30E2\u30EA\u30FC\u9818\u57DF\u540D
memory_listening.name.label = \u540d\u524d memory_listening.name.label = \u540D\u524D
memory_listening.description = \u305d\u306e\u4ed6\u306e VM \u306b\u3088\u308a\u958b\u59cb\u3055\u308c\u308b\u5171\u6709\u30e1\u30e2\u30ea\u63a5\u7d9a\u3092\u53d7\u3051\u5165\u308c\u307e\u3059 memory_listening.description = \u305D\u306E\u4ED6\u306EVM\u306B\u3088\u308A\u958B\u59CB\u3055\u308C\u308B\u5171\u6709\u30E1\u30E2\u30EA\u30FC\u63A5\u7D9A\u3092\u53D7\u3051\u5165\u308C\u307E\u3059
process_attaching.description = \u30c7\u30d0\u30c3\u30b0\u3059\u308b\u30d7\u30ed\u30bb\u30b9\u306b\u30d7\u30ed\u30bb\u30b9 ID (pid) \u3092\u4f7f\u3063\u3066\u63a5\u7d9a\u3057\u307e\u3059 process_attaching.description = \u30C7\u30D0\u30C3\u30B0\u3059\u308B\u30D7\u30ED\u30BB\u30B9\u306B\u30D7\u30ED\u30BB\u30B9ID(pid)\u3092\u4F7F\u7528\u3057\u3066\u63A5\u7D9A\u3057\u307E\u3059
process_attaching.pid = pid process_attaching.pid = pid
process_attaching.pid.label = \u30c7\u30d0\u30c3\u30b0\u3059\u308b\u30d7\u30ed\u30bb\u30b9 ID (pid) process_attaching.pid.label = \u30C7\u30D0\u30C3\u30B0\u3059\u308B\u30D7\u30ED\u30BB\u30B9ID(pid)

View file

@ -1,52 +1,52 @@
true = true true = true
false = false false = false
version_format = Java \u8c03\u8bd5\u63a5\u53e3\uff08\u53c2\u8003\u5b9e\u73b0\uff09\u7248\u672c {0}.{1}\n{2} version_format = Java \u8C03\u8BD5\u63A5\u53E3 (\u53C2\u8003\u5B9E\u73B0) \u7248\u672C {0}.{1}\n{2}
raw.command = \u7528\u4e8e\u542f\u52a8\u8c03\u8bd5\u5e94\u7528\u7a0b\u5e8f VM \u7684\u539f\u59cb\u547d\u4ee4 raw.command = \u7528\u4E8E\u542F\u52A8\u8C03\u8BD5\u5E94\u7528\u7A0B\u5E8F VM \u7684\u539F\u59CB\u547D\u4EE4
raw.command.label = \u547d\u4ee4 raw.command.label = \u547D\u4EE4
raw.address = \u8fd0\u884c\u539f\u59cb\u547d\u4ee4\u4e4b\u540e\uff0c\u4fa6\u542c\u8fde\u63a5\u65f6\u4f7f\u7528\u7684\u5730\u5740 raw.address = \u8FD0\u884C\u539F\u59CB\u547D\u4EE4\u4E4B\u540E, \u76D1\u542C\u8FDE\u63A5\u65F6\u4F7F\u7528\u7684\u5730\u5740
raw.address.label = \u5730\u5740 raw.address.label = \u5730\u5740
raw.quote = \u7528\u4e8e\u5c06\u4ee5\u7a7a\u683c\u5206\u9694\u7684\u6587\u672c\u7ec4\u5408\u4e3a\u4e00\u4e2a\u547d\u4ee4\u884c\u53c2\u6570\u7684\u5b57\u7b26 raw.quote = \u7528\u4E8E\u5C06\u4EE5\u7A7A\u683C\u5206\u9694\u7684\u6587\u672C\u7EC4\u5408\u4E3A\u4E00\u4E2A\u547D\u4EE4\u884C\u53C2\u6570\u7684\u5B57\u7B26
raw.quote.label = \u5f15\u53f7 raw.quote.label = \u5F15\u53F7
raw.description = \u4f7f\u7528\u7528\u6237\u6307\u5b9a\u7684\u547d\u4ee4\u884c\u542f\u52a8\u76ee\u6807\u5e76\u8fde\u63a5\u5230\u8be5\u76ee\u6807\u3002 raw.description = \u4F7F\u7528\u7528\u6237\u6307\u5B9A\u7684\u547D\u4EE4\u884C\u542F\u52A8\u76EE\u6807\u5E76\u9644\u52A0\u5230\u8BE5\u76EE\u6807
sun.home = \u7528\u4e8e\u542f\u52a8\u5e94\u7528\u7a0b\u5e8f\u7684 SDK \u6216\u8fd0\u884c\u65f6\u73af\u5883\u7684\u4e3b\u76ee\u5f55 sun.home = \u7528\u4E8E\u542F\u52A8\u5E94\u7528\u7A0B\u5E8F\u7684 SDK \u6216\u8FD0\u884C\u65F6\u73AF\u5883\u7684\u4E3B\u76EE\u5F55
sun.home.label = \u4e3b\u76ee\u5f55 sun.home.label = \u4E3B\u76EE\u5F55
sun.options = \u5df2\u542f\u7528\u7684 VM \u9009\u9879 sun.options = \u5DF2\u542F\u52A8\u7684 VM \u9009\u9879
sun.options.label = \u9009\u9879 sun.options.label = \u9009\u9879
sun.main = \u4e3b\u7c7b\u548c\u53c2\u6570\uff0c\u6216\u8005\u5982\u679c -jar \u662f\u4e00\u4e2a\u9009\u9879\uff0c\u5219\u4e3a\u4e3b jar \u6587\u4ef6\u548c\u53c2\u6570 sun.main = \u4E3B\u7C7B\u548C\u53C2\u6570, \u6216\u8005\u5982\u679C -jar \u662F\u4E00\u4E2A\u9009\u9879, \u5219\u4E3A\u4E3B jar \u6587\u4EF6\u548C\u53C2\u6570
sun.main.label = \u4e3b sun.main.label = \u4E3B
sun.init_suspend = \u5728\u6267\u884c\u4e3b\u7c7b\uff08jar \u6587\u4ef6\uff09\u548c\u53c2\u6570\u4e4b\u524d\uff0c\u5c06\u6682\u505c\u6240\u6709\u7ebf\u7a0b sun.init_suspend = \u5728\u6267\u884C\u4E3B\u7C7B\u4E4B\u524D, \u5C06\u6302\u8D77\u6240\u6709\u7EBF\u7A0B
sun.init_suspend.label = \u6682\u505c sun.init_suspend.label = \u6302\u8D77
sun.quote = \u7528\u4e8e\u5c06\u4ee5\u7a7a\u683c\u5206\u9694\u7684\u6587\u672c\u7ec4\u5408\u4e3a\u4e00\u4e2a\u547d\u4ee4\u884c\u53c2\u6570\u7684\u5b57\u7b26 sun.quote = \u7528\u4E8E\u5C06\u4EE5\u7A7A\u683C\u5206\u9694\u7684\u6587\u672C\u7EC4\u5408\u4E3A\u4E00\u4E2A\u547D\u4EE4\u884C\u53C2\u6570\u7684\u5B57\u7B26
sun.quote.label = \u5f15\u53f7 sun.quote.label = \u5F15\u53F7
sun.vm_exec = Java VM \u542f\u52a8\u7a0b\u5e8f\u7684\u540d\u79f0 sun.vm_exec = Java VM \u542F\u52A8\u7A0B\u5E8F\u7684\u540D\u79F0
sun.vm_exec.label = \u542f\u52a8\u7a0b\u5e8f sun.vm_exec.label = \u542F\u52A8\u7A0B\u5E8F
sun.description = \u4f7f\u7528 Sun Java VM \u547d\u4ee4\u884c\u542f\u52a8\u76ee\u6807\u5e76\u8fde\u63a5\u5230\u8be5\u76ee\u6807 sun.description = \u4F7F\u7528 Sun Java VM \u547D\u4EE4\u884C\u542F\u52A8\u76EE\u6807\u5E76\u9644\u52A0\u5230\u8BE5\u76EE\u6807
generic_attaching.address = VM \u8fde\u63a5\u6307\u5411\u7684\u5730\u5740 generic_attaching.address = VM \u8FDE\u63A5\u6240\u9644\u52A0\u5230\u7684\u5730\u5740
generic_attaching.address.label = \u5730\u5740 generic_attaching.address.label = \u5730\u5740
generic_attaching.timeout = \u7b49\u5f85\u8fde\u63a5\u65f6\u7684\u8d85\u65f6 generic_attaching.timeout = \u7B49\u5F85\u9644\u52A0\u64CD\u4F5C\u65F6\u7684\u8D85\u65F6
generic_attaching.timeout.label = \u8d85\u65f6 generic_attaching.timeout.label = \u8D85\u65F6
generic_listening.address = \u4fa6\u542c VM \u8fde\u63a5\u65f6\u4f7f\u7528\u7684\u5730\u5740 generic_listening.address = \u76D1\u542C VM \u8FDE\u63A5\u65F6\u4F7F\u7528\u7684\u5730\u5740
generic_listening.address.label = \u5730\u5740 generic_listening.address.label = \u5730\u5740
generic_listening.timeout = \u7b49\u5f85\u8fde\u63a5\u65f6\u7684\u8d85\u65f6 generic_listening.timeout = \u7B49\u5F85\u8FDE\u63A5\u65F6\u7684\u8D85\u65F6
generic_listening.timeout.label = \u8d85\u65f6 generic_listening.timeout.label = \u8D85\u65F6
socket_transportservice.description = \u4f7f\u7528 TCP \u8fde\u63a5\u8fde\u63a5\u8c03\u8bd5\u5668\u548c\u88ab\u8c03\u8bd5\u5bf9\u8c61 socket_transportservice.description = \u4F7F\u7528 TCP \u8FDE\u63A5\u6765\u8FDE\u63A5\u8C03\u8BD5\u5668\u548C\u88AB\u8C03\u8BD5\u8FDB\u7A0B
memory_transportservice.description = \u4f7f\u7528\u5171\u4eab\u5185\u5b58\u8fde\u63a5\u8fde\u63a5\u8c03\u8bd5\u5668\u548c\u88ab\u8c03\u8bd5\u5bf9\u8c61 memory_transportservice.description = \u4F7F\u7528\u5171\u4EAB\u5185\u5B58\u8FDE\u63A5\u6765\u8FDE\u63A5\u8C03\u8BD5\u5668\u548C\u88AB\u8C03\u8BD5\u8FDB\u7A0B
socket_attaching.host = VM \u8fde\u63a5\u6307\u5411\u7684\u8ba1\u7b97\u673a\u540d\u79f0 socket_attaching.host = VM \u8FDE\u63A5\u6240\u9644\u52A0\u5230\u7684\u8BA1\u7B97\u673A\u540D\u79F0
socket_attaching.host.label = \u4e3b\u673a socket_attaching.host.label = \u4E3B\u673A
socket_attaching.port = VM \u8fde\u63a5\u6307\u5411\u7684\u7aef\u53e3\u53f7 socket_attaching.port = VM \u8FDE\u63A5\u6240\u9644\u52A0\u5230\u7684\u7AEF\u53E3\u53F7
socket_attaching.port.label = \u7aef\u53e3 socket_attaching.port.label = \u7AEF\u53E3
socket_attaching.description = \u901a\u8fc7\u5957\u63a5\u5b57\u4e0e\u5176\u4ed6 VM \u8fdb\u884c\u8fde\u63a5 socket_attaching.description = \u901A\u8FC7\u5957\u63A5\u5B57\u9644\u52A0\u5230\u5176\u4ED6 VM
socket_listening.localaddr = \u4fa6\u542c\u5668\u7ed1\u5b9a\u5230\u7684\u672c\u5730\u5730\u5740 socket_listening.localaddr = \u76D1\u542C\u7A0B\u5E8F\u7ED1\u5B9A\u5230\u7684\u672C\u5730\u5730\u5740
socket_listening.localaddr.label = \u672c\u5730\u5730\u5740 socket_listening.localaddr.label = \u672C\u5730\u5730\u5740
socket_listening.port = \u4fa6\u542c VM \u8fde\u63a5\u65f6\u4f7f\u7528\u7684\u7aef\u53e3\u53f7 socket_listening.port = \u76D1\u542C VM \u8FDE\u63A5\u65F6\u4F7F\u7528\u7684\u7AEF\u53E3\u53F7
socket_listening.port.label = \u7aef\u53e3 socket_listening.port.label = \u7AEF\u53E3
socket_listening.description = \u63a5\u53d7\u7531\u5176\u4ed6 VM \u542f\u52a8\u7684\u5957\u63a5\u5b57\u8fde\u63a5 socket_listening.description = \u63A5\u53D7\u7531\u5176\u4ED6 VM \u542F\u52A8\u7684\u5957\u63A5\u5B57\u8FDE\u63A5
memory_attaching.name = VM \u8fde\u63a5\u6307\u5411\u7684\u5171\u4eab\u5185\u5b58\u533a\u57df\u7684\u540d\u79f0 memory_attaching.name = VM \u8FDE\u63A5\u6240\u9644\u52A0\u5230\u7684\u5171\u4EAB\u5185\u5B58\u533A\u57DF\u7684\u540D\u79F0
memory_attaching.name.label = \u540d\u79f0 memory_attaching.name.label = \u540D\u79F0
memory_attaching.description = \u901a\u8fc7\u5171\u4eab\u5185\u5b58\u8fde\u63a5\u5230\u5176\u4ed6 VM memory_attaching.description = \u901A\u8FC7\u5171\u4EAB\u5185\u5B58\u9644\u52A0\u5230\u5176\u4ED6 VM
memory_listening.name = \u4fa6\u542c VM \u8fde\u63a5\u65f6\u6240\u5728\u7684\u5171\u4eab\u5185\u5b58\u533a\u57df\u7684\u540d\u79f0 memory_listening.name = \u76D1\u542C VM \u8FDE\u63A5\u65F6\u6240\u5728\u7684\u5171\u4EAB\u5185\u5B58\u533A\u57DF\u7684\u540D\u79F0
memory_listening.name.label = \u540d\u79f0 memory_listening.name.label = \u540D\u79F0
memory_listening.description = \u63a5\u53d7\u7531\u5176\u4ed6 VM \u542f\u52a8\u7684\u5171\u4eab\u5185\u5b58\u8fde\u63a5 memory_listening.description = \u63A5\u53D7\u7531\u5176\u4ED6 VM \u542F\u52A8\u7684\u5171\u4EAB\u5185\u5B58\u8FDE\u63A5
process_attaching.description = \u901a\u8fc7\u8fdb\u7a0b ID (PID) \u8fde\u63a5\u5230\u88ab\u8c03\u8bd5\u8fdb\u7a0b process_attaching.description = \u901A\u8FC7\u8FDB\u7A0B ID (PID) \u9644\u52A0\u5230\u88AB\u8C03\u8BD5\u8FDB\u7A0B
process_attaching.pid = PID process_attaching.pid = PID
process_attaching.pid.label = \u88ab\u8c03\u8bd5\u8fdb\u7a0b\u7684\u8fdb\u7a0b ID (PID) process_attaching.pid.label = \u88AB\u8C03\u8BD5\u8FDB\u7A0B\u7684\u8FDB\u7A0B ID (PID)

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -29,173 +29,175 @@ import java.util.ListResourceBundle;
public class MsgAppletViewer_de extends ListResourceBundle { public class MsgAppletViewer_de extends ListResourceBundle {
public Object[][] getContents() { public Object[][] getContents() {
return new Object[][] { Object[][] temp = new Object[][] {
{"textframe.button.dismiss", "Ignorieren"}, {"textframe.button.dismiss", "Verwerfen"},
{"appletviewer.tool.title", "Applet-Ansicht: {0}"}, {"appletviewer.tool.title", "Applet Viewer: {0}"},
{"appletviewer.menu.applet", "Applet"}, {"appletviewer.menu.applet", "Applet"},
{"appletviewer.menuitem.restart", "Neu starten"}, {"appletviewer.menuitem.restart", "Neu starten"},
{"appletviewer.menuitem.reload", "Neu laden"}, {"appletviewer.menuitem.reload", "Neu laden"},
{"appletviewer.menuitem.stop", "Abbrechen"}, {"appletviewer.menuitem.stop", "Stoppen"},
{"appletviewer.menuitem.save", "Speichern..."}, {"appletviewer.menuitem.save", "Speichern..."},
{"appletviewer.menuitem.start", "Starten"}, {"appletviewer.menuitem.start", "Starten..."},
{"appletviewer.menuitem.clone", "Klonen..."}, {"appletviewer.menuitem.clone", "Clonen..."},
{"appletviewer.menuitem.tag", "Markieren..."}, {"appletviewer.menuitem.tag", "Tag..."},
{"appletviewer.menuitem.info", "Info..."}, {"appletviewer.menuitem.info", "Informationen..."},
{"appletviewer.menuitem.edit", "Bearbeiten"}, {"appletviewer.menuitem.edit", "Bearbeiten"},
{"appletviewer.menuitem.encoding", "Zeichencodierung"}, {"appletviewer.menuitem.encoding", "Zeichencodierung"},
{"appletviewer.menuitem.print", "Drucken..."}, {"appletviewer.menuitem.print", "Drucken..."},
{"appletviewer.menuitem.props", "Eigenschaften..."}, {"appletviewer.menuitem.props", "Eigenschaften..."},
{"appletviewer.menuitem.close", "Schlie\u00dfen"}, {"appletviewer.menuitem.close", "Schlie\u00DFen"},
{"appletviewer.menuitem.quit", "Beenden"}, {"appletviewer.menuitem.quit", "Beenden"},
{"appletviewer.label.hello", "Willkommen..."}, {"appletviewer.label.hello", "Hallo..."},
{"appletviewer.status.start", "Starte Applet..."}, {"appletviewer.status.start", "Applet wird gestartet..."},
{"appletviewer.appletsave.filedialogtitle","Applet in Datei serialisieren"}, {"appletviewer.appletsave.filedialogtitle","Applet in Datei serialisieren"},
{"appletviewer.appletsave.err1", "Serialisiere {0} zu {1}"}, {"appletviewer.appletsave.err1", "{0} in {1} serialisieren"},
{"appletviewer.appletsave.err2", "In appletSave: {0}"}, {"appletviewer.appletsave.err2", "in appletSave: {0}"},
{"appletviewer.applettag", "Angezeigte Marke"}, {"appletviewer.applettag", "Angezeigtes Tag"},
{"appletviewer.applettag.textframe", "Applet-HTML-Marke"}, {"appletviewer.applettag.textframe", "Applet-HTML-Tag"},
{"appletviewer.appletinfo.applet", "-- Keine Applet-Info --"}, {"appletviewer.appletinfo.applet", "-- keine Applet-Informationen --"},
{"appletviewer.appletinfo.param", "-- Keine Parameter-Info --"}, {"appletviewer.appletinfo.param", "-- keine Parameterinformationen --"},
{"appletviewer.appletinfo.textframe", "Applet-Info"}, {"appletviewer.appletinfo.textframe", "Applet-Informationen"},
{"appletviewer.appletprint.fail", "Drucken fehlgeschlagen"}, {"appletviewer.appletprint.fail", "Druck nicht erfolgreich."},
{"appletviewer.appletprint.finish", "Drucken beendet"}, {"appletviewer.appletprint.finish", "Druck abgeschlossen."},
{"appletviewer.appletprint.cancel", "Drucken abgebrochen"}, {"appletviewer.appletprint.cancel", "Druck abgebrochen."},
{"appletviewer.appletencoding", "Zeichencodierung: {0}"}, {"appletviewer.appletencoding", "Zeichencodierung: {0}"},
{"appletviewer.parse.warning.requiresname", "Warnung: <param name=... value=...>-Marke erfordert Namensattribut."}, {"appletviewer.parse.warning.requiresname", "Warnung: F\u00FCr <param name=... value=...>-Tag ist ein \"name\"-Attribut erforderlich."},
{"appletviewer.parse.warning.paramoutside", "Warnung: <param>-Marke au\u00dferhalb <applet> ... </applet>."}, {"appletviewer.parse.warning.paramoutside", "Warnung: <param>-Tag au\u00DFerhalb von <applet> ... </applet>."},
{"appletviewer.parse.warning.applet.requirescode", "Warnung: <applet>-Marke erfordert Code-Attribut."}, {"appletviewer.parse.warning.applet.requirescode", "Warnung: F\u00FCr <applet>-Tag ist ein \"code\"-Attribut erforderlich."},
{"appletviewer.parse.warning.applet.requiresheight", "Warnung: <applet>-Marke erfordert H\u00f6henattribut."}, {"appletviewer.parse.warning.applet.requiresheight", "Warnung: F\u00FCr <applet>-Tag ist ein \"height\"-Attribut erforderlich."},
{"appletviewer.parse.warning.applet.requireswidth", "Warnung: <applet>-Marke erfordert Breitenattribut."}, {"appletviewer.parse.warning.applet.requireswidth", "Warnung: F\u00FCr <applet>-Tag ist ein \"width\"-Attribut erforderlich."},
{"appletviewer.parse.warning.object.requirescode", "Warnung: <object>-Marke erfordert Code-Attribut."}, {"appletviewer.parse.warning.object.requirescode", "Warnung: F\u00FCr <object>-Tag ist ein \"code\"-Attribut erforderlich."},
{"appletviewer.parse.warning.object.requiresheight", "Warnung: <object>-Marke erfordert H\u00f6henattribut."}, {"appletviewer.parse.warning.object.requiresheight", "Warnung: F\u00FCr <object>-Tag ist ein \"height\"-Attribut erforderlich."},
{"appletviewer.parse.warning.object.requireswidth", "Warnung: <object>-Marke erfordert Breitenattribut."}, {"appletviewer.parse.warning.object.requireswidth", "Warnung: F\u00FCr <object>-Tag ist ein \"width\"-Attribut erforderlich."},
{"appletviewer.parse.warning.embed.requirescode", "Warnung: <embed>-Marke erfordert Code-Attribut."}, {"appletviewer.parse.warning.embed.requirescode", "Warnung: F\u00FCr <embed>-Tag ist ein \"code\"-Attribut erforderlich."},
{"appletviewer.parse.warning.embed.requiresheight", "Warnung: <embed>-Marke erfordert H\u00f6henattribut."}, {"appletviewer.parse.warning.embed.requiresheight", "Warnung: F\u00FCr <embed>-Tag ist ein \"height\"-Attribut erforderlich."},
{"appletviewer.parse.warning.embed.requireswidth", "Warnung: <embed>-Marke erfordert Breitenattribut."}, {"appletviewer.parse.warning.embed.requireswidth", "Warnung: F\u00FCr <embed>-Tag ist ein \"width\"-Attribut erforderlich."},
{"appletviewer.parse.warning.appnotLongersupported", "Warnung: <app>-Marke wird nicht mehr unterst\u00fctzt, verwenden Sie statt dessen <applet>:"}, {"appletviewer.parse.warning.appnotLongersupported", "Warnung: <app>-Tag wird nicht mehr unterst\u00FCtzt. Verwenden Sie stattdessen <applet>:"},
{"appletviewer.usage", "Syntax: appletviewer <Optionen> url(s)\n\nwobei zu den <Optionen> geh\u00f6ren:\n -debug Starten des Applet-Viewers im Java-Debugger\n -encoding <Codierung> Angabe der von HTML-Dateien verwendeten Zeichencodierung\n -J<Laufzeit-Flag> \u00dcbergeben des Arguments an den Java-Interpreter\n\nDie Option -J ist keine Standardoption und kann \u00c4nderungen unterliegen."}, {"appletviewer.usage", "Verwendung: appletviewer <Optionen> url(s)\n\nwobei die <Optionen> Folgendes umfassen:\n -debug Applet Viewer im Java-Debugger starten\n -encoding <Codierung> Zeichencodierung f\u00FCr HTML-Dateien angeben\n -J <Laufzeitkennzeichen> Argument an den Java-Interpreter \u00FCbergeben\n\nDie Option \"-J\" ist nicht standardm\u00E4\u00DFig und kann ohne vorherige Ank\u00FCndigung ge\u00E4ndert werden."},
{"appletviewer.main.err.unsupportedopt", "Nicht unterst\u00fctzte Option: {0}"}, {"appletviewer.main.err.unsupportedopt", "Nicht unterst\u00FCtzte Option: {0}"},
{"appletviewer.main.err.unrecognizedarg", "Nicht erkanntes Argument: {0}"}, {"appletviewer.main.err.unrecognizedarg", "Unbekanntes Argument: {0}"},
{"appletviewer.main.err.dupoption", "Doppelte Verwendung der Option: {0}"}, {"appletviewer.main.err.dupoption", "Doppelte Verwendung von Option: {0}"},
{"appletviewer.main.err.inputfile", "Keine Eingabedateien angegeben."}, {"appletviewer.main.err.inputfile", "Keine Eingabedateien angegeben."},
{"appletviewer.main.err.badurl", "Fehlerhafte URL: {0} ( {1} )"}, {"appletviewer.main.err.badurl", "Ung\u00FCltige URL: {0} ( {1} )"},
{"appletviewer.main.err.io", "E/A-Ausnahme beim Lesen: {0}"}, {"appletviewer.main.err.io", "I/O-Ausnahme beim Lesen von: {0}"},
{"appletviewer.main.err.readablefile", "Stellen Sie sicher, dass {0} eine lesbare Datei ist."}, {"appletviewer.main.err.readablefile", "Stellen Sie sicher, dass {0} eine lesbare Datei ist."},
{"appletviewer.main.err.correcturl", "Ist {0} die richtige URL?"}, {"appletviewer.main.err.correcturl", "Ist {0} die richtige URL?"},
{"appletviewer.main.prop.store", "Benutzerspezifische Eigenschaften f\u00fcr AppletViewer"}, {"appletviewer.main.prop.store", "Benutzerspezifische Eigenschaften f\u00FCr AppletViewer"},
{"appletviewer.main.err.prop.cantread", "Benutzereigenschaftendatei kann nicht gelesen werden: {0}"}, {"appletviewer.main.err.prop.cantread", "Benutzereigenschaftendatei kann nicht gelesen werden: {0}"},
{"appletviewer.main.err.prop.cantsave", "Benutzereigenschaftendatei kann nicht gespeichert werden: {0}"}, {"appletviewer.main.err.prop.cantsave", "Benutzereigenschaftendatei kann nicht gespeichert werden: {0}"},
{"appletviewer.main.warn.nosecmgr", "Warnung: Sicherheit wird deaktiviert."}, {"appletviewer.main.warn.nosecmgr", "Warnung: Sicherheit wird deaktiviert."},
{"appletviewer.main.debug.cantfinddebug", "Der Debugger wurde nicht gefunden!"}, {"appletviewer.main.debug.cantfinddebug", "Debugger kann nicht gefunden werden."},
{"appletviewer.main.debug.cantfindmain", "Hauptmethode wurde nicht im Debugger gefunden!"}, {"appletviewer.main.debug.cantfindmain", "Hauptmethode im Debugger kann nicht gefunden werden."},
{"appletviewer.main.debug.exceptionindebug", "Ausnahme im Debugger!"}, {"appletviewer.main.debug.exceptionindebug", "Ausnahme im Debugger."},
{"appletviewer.main.debug.cantaccess", "Zugriff auf den Debugger nicht m\u00f6glich!"}, {"appletviewer.main.debug.cantaccess", "Zugriff auf Debugger nicht m\u00F6glich."},
{"appletviewer.main.nosecmgr", "Warnung: SecurityManager nicht installiert!"}, {"appletviewer.main.nosecmgr", "Warnung: SecurityManager nicht installiert."},
{"appletviewer.main.warning", "Warnung: Es wurden keine Applets gestartet. Stellen Sie sicher, dass die Eingabe eine <applet>-Marke enth\u00e4lt."}, {"appletviewer.main.warning", "Warnung: Es wurden keine Applets gestartet. Stellen Sie sicher, dass die Eingabe ein <applet>-Tag enth\u00E4lt."},
{"appletviewer.main.warn.prop.overwrite", "Warnung: Auf Anforderung des Benutzers wird die Systemeigenschaft vor\u00fcbergehend \u00fcberschrieben: Schl\u00fcssel: {0} alter Wert: {1} neuer Wert: {2}"}, {"appletviewer.main.warn.prop.overwrite", "Warnung: Systemeigenschaft wird tempor\u00E4r aufgrund von Benutzeranforderung \u00FCberschrieben: Schl\u00FCssel: {0} Alter Wert: {1} Neuer Wert: {2}"},
{"appletviewer.main.warn.cantreadprops", "Warnung: AppletViewer-Eigenschaftendatei kann nicht gelesen werden: {0} Standardwerte werden verwendet."}, {"appletviewer.main.warn.cantreadprops", "Warnung: AppletViewer-Eigenschaftendatei kann nicht gelesen werden: {0} Standardwerte werden verwendet."},
{"appletioexception.loadclass.throw.interrupted", "Laden von Klassen unterbrochen: {0}"}, {"appletioexception.loadclass.throw.interrupted", "Laden der Klasse unterbrochen: {0}"},
{"appletioexception.loadclass.throw.notloaded", "Klasse nicht geladen: {0}"}, {"appletioexception.loadclass.throw.notloaded", "Klasse nicht geladen: {0}"},
{"appletclassloader.loadcode.verbose", "\u00d6ffne Stream zu {0}, um {1} abzurufen."}, {"appletclassloader.loadcode.verbose", "\u00D6ffnen von Stream zu: {0}, um {1} abzurufen"},
{"appletclassloader.filenotfound", "Datei beim Suchen nach {0} nicht gefunden"}, {"appletclassloader.filenotfound", "Datei nicht gefunden beim Suchen nach: {0}"},
{"appletclassloader.fileformat", "Dateiformatausnahme beim Laden: {0}"}, {"appletclassloader.fileformat", "Dateiformatausnahme beim Laden von: {0}"},
{"appletclassloader.fileioexception", "E/A-Ausnahme beim Laden: {0}"}, {"appletclassloader.fileioexception", "I/O-Ausnahme beim Laden von: {0}"},
{"appletclassloader.fileexception", "{0} Ausnahme beim Laden: {1}"}, {"appletclassloader.fileexception", "{0}-Ausnahme beim Laden von: {1}"},
{"appletclassloader.filedeath", "{0} gel\u00f6scht beim Laden: {1}"}, {"appletclassloader.filedeath", "{0} abgebrochen beim Laden von: {1}"},
{"appletclassloader.fileerror", "{0} Fehler beim Laden: {1}"}, {"appletclassloader.fileerror", "{0}-Fehler beim Laden von: {1}"},
{"appletclassloader.findclass.verbose.findclass", "{0} sucht Klasse {1}"}, {"appletclassloader.findclass.verbose.findclass", "{0} Klasse {1} suchen"},
{"appletclassloader.findclass.verbose.openstream", "\u00d6ffne Stream zu {0}, um {1} abzurufen."}, {"appletclassloader.findclass.verbose.openstream", "\u00D6ffnen von Stream zu: {0}, um {1} abzurufen"},
{"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource f\u00fcr Name: {0}"}, {"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource f\u00FCr Name: {0}"},
{"appletclassloader.getresource.verbose.found", "Ressource {0} als Systemressource gefunden"}, {"appletclassloader.getresource.verbose.found", "Ressource {0} als Systemressource gefunden"},
{"appletclassloader.getresourceasstream.verbose", "Ressource {0} als Systemressource gefunden"}, {"appletclassloader.getresourceasstream.verbose", "Ressource {0} als Systemressource gefunden"},
{"appletpanel.runloader.err", "Entweder Objekt oder Code-Parameter!"}, {"appletpanel.runloader.err", "Objekt oder Codeparameter."},
{"appletpanel.runloader.exception", "Ausnahme beim Deserialisieren von {0}"}, {"appletpanel.runloader.exception", "Ausnahme beim Deserialisieren von {0}"},
{"appletpanel.destroyed", "Applet vernichtet"}, {"appletpanel.destroyed", "Applet endg\u00FCltig gel\u00F6scht."},
{"appletpanel.loaded", "Applet geladen"}, {"appletpanel.loaded", "Applet geladen."},
{"appletpanel.started", "Applet gestartet"}, {"appletpanel.started", "Applet gestartet."},
{"appletpanel.inited", "Applet initialisiert"}, {"appletpanel.inited", "Applet initialisiert."},
{"appletpanel.stopped", "Applet gestoppt"}, {"appletpanel.stopped", "Applet gestoppt."},
{"appletpanel.disposed", "Applet abgelegt"}, {"appletpanel.disposed", "Applet verworfen."},
{"appletpanel.nocode", "APPLET-Marke ohne CODE-Parameter"}, {"appletpanel.nocode", "Bei APPLET-Tag fehlt CODE-Parameter."},
{"appletpanel.notfound", "Laden: Klasse {0} nicht gefunden"}, {"appletpanel.notfound", "Laden: Klasse {0} nicht gefunden."},
{"appletpanel.nocreate", "Laden: Instanz von {0} kann nicht erstellt werden."}, {"appletpanel.nocreate", "Laden: {0} kann nicht instanziiert werden."},
{"appletpanel.noconstruct", "Laden: {0} ist nicht \u00f6ffentlich oder hat keinen \u00f6ffentlichen Autor."}, {"appletpanel.noconstruct", "Laden: {0} ist nicht \"public\" oder hat keinen \"public\"-Constructor."},
{"appletpanel.death", "gel\u00f6scht"}, {"appletpanel.death", "abgebrochen"},
{"appletpanel.exception", "Ausnahme: {0}"}, {"appletpanel.exception", "Ausnahme: {0}."},
{"appletpanel.exception2", "Ausnahme: {0}: {1}"}, {"appletpanel.exception2", "Ausnahme: {0}: {1}."},
{"appletpanel.error", "Fehler: {0}"}, {"appletpanel.error", "Fehler: {0}."},
{"appletpanel.error2", "Fehler: {0}: {1}"}, {"appletpanel.error2", "Fehler: {0}: {1}."},
{"appletpanel.notloaded", "Initialisierung: Applet nicht geladen"}, {"appletpanel.notloaded", "Init.: Applet nicht geladen."},
{"appletpanel.notinited", "Start: Applet nicht initialisiert"}, {"appletpanel.notinited", "Starten: Applet nicht initialisiert."},
{"appletpanel.notstarted", "Stopp: Applet nicht gestartet"}, {"appletpanel.notstarted", "Stoppen: Applet nicht gestartet."},
{"appletpanel.notstopped", "Vernichten: Applet nicht gestoppt"}, {"appletpanel.notstopped", "Endg\u00FCltig l\u00F6schen: Applet nicht gestoppt."},
{"appletpanel.notdestroyed", "Ablegen: Applet nicht vernichtet"}, {"appletpanel.notdestroyed", "Verwerfen: Applet nicht endg\u00FCltig gel\u00F6scht."},
{"appletpanel.notdisposed", "Laden: Applet nicht abgelegt"}, {"appletpanel.notdisposed", "Laden: Applet nicht verworfen."},
{"appletpanel.bail", "Unterbrochen: breche ab."}, {"appletpanel.bail", "Unterbrochen: Zur\u00FCckziehen."},
{"appletpanel.filenotfound", "Datei beim Suchen nach {0} nicht gefunden"}, {"appletpanel.filenotfound", "Datei nicht gefunden beim Suchen nach: {0}"},
{"appletpanel.fileformat", "Dateiformatausnahme beim Laden von: {0}"}, {"appletpanel.fileformat", "Dateiformatausnahme beim Laden von: {0}"},
{"appletpanel.fileioexception", "E/A-Ausnahme beim Laden von: {0}"}, {"appletpanel.fileioexception", "I/O-Ausnahme beim Laden von: {0}"},
{"appletpanel.fileexception", "{0} Ausnahme beim Laden von: {1}"}, {"appletpanel.fileexception", "{0}-Ausnahme beim Laden von: {1}"},
{"appletpanel.filedeath", "{0} gel\u00f6scht beim Laden von: {1}"}, {"appletpanel.filedeath", "{0} abgebrochen beim Laden von: {1}"},
{"appletpanel.fileerror", "{0} Fehler beim Laden von: {1}"}, {"appletpanel.fileerror", "{0}-Fehler beim Laden von: {1}"},
{"appletpanel.badattribute.exception", "HTML-Parsing: fehlerhafter Wert bei Attribut f\u00fcr Breite/H\u00f6he"}, {"appletpanel.badattribute.exception", "HTML-Parsing: Falscher Wert f\u00FCr \"width/height\"-Attribut"},
{"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream erfordert Nicht-Null-Lader."}, {"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream erfordert Loader ungleich null"},
{"appletprops.title", "AppletViewer-Eigenschaften"}, {"appletprops.title", "AppletViewer-Eigenschaften"},
{"appletprops.label.http.server", "Http-Proxy-Server:"}, {"appletprops.label.http.server", "HTTP-Proxyserver:"},
{"appletprops.label.http.proxy", "Http-Proxy-Port:"}, {"appletprops.label.http.proxy", "HTTP-Proxyport:"},
{"appletprops.label.network", "Netzwerkzugriff:"}, {"appletprops.label.network", "Netzwerkzugriff:"},
{"appletprops.choice.network.item.none", "Keiner"}, {"appletprops.choice.network.item.none", "Keine"},
{"appletprops.choice.network.item.applethost", "Applet-Host"}, {"appletprops.choice.network.item.applethost", "Applet-Host"},
{"appletprops.choice.network.item.unrestricted", "Unbeschr\u00e4nkt"}, {"appletprops.choice.network.item.unrestricted", "Uneingeschr\u00E4nkt"},
{"appletprops.label.class", "Klassenzugriff:"}, {"appletprops.label.class", "Klassenzugriff:"},
{"appletprops.choice.class.item.restricted", "Beschr\u00e4nkt"}, {"appletprops.choice.class.item.restricted", "Eingeschr\u00E4nkt"},
{"appletprops.choice.class.item.unrestricted", "Unbeschr\u00e4nkt"}, {"appletprops.choice.class.item.unrestricted", "Uneingeschr\u00E4nkt"},
{"appletprops.label.unsignedapplet", "Unsignierte Applets zulassen:"}, {"appletprops.label.unsignedapplet", "Nicht signierte Applets zulassen:"},
{"appletprops.choice.unsignedapplet.no", "Nein"}, {"appletprops.choice.unsignedapplet.no", "Nein"},
{"appletprops.choice.unsignedapplet.yes", "Ja"}, {"appletprops.choice.unsignedapplet.yes", "Ja"},
{"appletprops.button.apply", "Anwenden"}, {"appletprops.button.apply", "Anwenden"},
{"appletprops.button.cancel", "Abbrechen"}, {"appletprops.button.cancel", "Abbrechen"},
{"appletprops.button.reset", "Zur\u00fccksetzen"}, {"appletprops.button.reset", "Zur\u00FCcksetzen"},
{"appletprops.apply.exception", "Konnte Eigenschaften nicht speichern: {0}"}, {"appletprops.apply.exception", "Eigenschaften konnten nicht gespeichert werden: {0}"},
/* 4066432 */ /* 4066432 */
{"appletprops.title.invalidproxy", "Ung\u00fcltiger Eintrag"}, {"appletprops.title.invalidproxy", "Ung\u00FCltiger Eintrag"},
{"appletprops.label.invalidproxy", "Proxy-Anschluss muss eine positive ganze Zahl sein."}, {"appletprops.label.invalidproxy", "Proxyport muss ein positiver Ganzzahlwert sein."},
{"appletprops.button.ok", "OK"}, {"appletprops.button.ok", "OK"},
/* end 4066432 */ /* end 4066432 */
{"appletprops.prop.store", "Benutzerspezifische Eigenschaften f\u00fcr AppletViewer"}, {"appletprops.prop.store", "Benutzerspezifische Eigenschaften f\u00FCr AppletViewer"},
{"appletsecurityexception.checkcreateclassloader", "Sicherheitsausnahme: classloader"}, {"appletsecurityexception.checkcreateclassloader", "Sicherheitsausnahme: Class Loader"},
{"appletsecurityexception.checkaccess.thread", "Sicherheitsausnahme: Thread"}, {"appletsecurityexception.checkaccess.thread", "Sicherheitsausnahme: Thread"},
{"appletsecurityexception.checkaccess.threadgroup", "Sicherheitsausnahme: Thread-Gruppe: {0}"}, {"appletsecurityexception.checkaccess.threadgroup", "Sicherheitsausnahme: Threadgruppe: {0}"},
{"appletsecurityexception.checkexit", "Sicherheitsausnahme: beenden: {0}"}, {"appletsecurityexception.checkexit", "Sicherheitsausnahme: Beenden: {0}"},
{"appletsecurityexception.checkexec", "Sicherheitsausnahme: ausf\u00fchren: {0}"}, {"appletsecurityexception.checkexec", "Sicherheitsausnahme: Ausf\u00FChrung: {0}"},
{"appletsecurityexception.checklink", "Sicherheitsausnahme: verkn\u00fcpfen: {0}"}, {"appletsecurityexception.checklink", "Sicherheitsausnahme: Link: {0}"},
{"appletsecurityexception.checkpropsaccess", "Sicherheitsausnahme: Eigenschaften"}, {"appletsecurityexception.checkpropsaccess", "Sicherheitsausnahme: Eigenschaften"},
{"appletsecurityexception.checkpropsaccess.key", "Sicherheitsausnahme: Eigenschaftenzugriff {0}"}, {"appletsecurityexception.checkpropsaccess.key", "Sicherheitsausnahme: Eigenschaftszugriff {0}"},
{"appletsecurityexception.checkread.exception1", "Sicherheitsausnahme: {0}, {1}"}, {"appletsecurityexception.checkread.exception1", "Sicherheitsausnahme: {0}, {1}"},
{"appletsecurityexception.checkread.exception2", "Sicherheitsausnahme: Datei.lesen: {0}"}, {"appletsecurityexception.checkread.exception2", "Sicherheitsausnahme: file.read: {0}"},
{"appletsecurityexception.checkread", "Sicherheitsausnahme: Datei.lesen: {0} == {1}"}, {"appletsecurityexception.checkread", "Sicherheitsausnahme: file.read: {0} == {1}"},
{"appletsecurityexception.checkwrite.exception", "Sicherheitsausnahme: {0}, {1}"}, {"appletsecurityexception.checkwrite.exception", "Sicherheitsausnahme: {0}, {1}"},
{"appletsecurityexception.checkwrite", "Sicherheitsausnahme: Datei.schreiben: {0} == {1}"}, {"appletsecurityexception.checkwrite", "Sicherheitsausnahme: file.write: {0} == {1}"},
{"appletsecurityexception.checkread.fd", "Sicherheitsausnahme: fd.lesen"}, {"appletsecurityexception.checkread.fd", "Sicherheitsausnahme: fd.read"},
{"appletsecurityexception.checkwrite.fd", "Sicherheitsausnahme: fd.schreiben"}, {"appletsecurityexception.checkwrite.fd", "Sicherheitsausnahme: fd.write"},
{"appletsecurityexception.checklisten", "Sicherheitsausnahme: Socket.empfangen: {0}"}, {"appletsecurityexception.checklisten", "Sicherheitsausnahme: socket.listen: {0}"},
{"appletsecurityexception.checkaccept", "Sicherheitsausnahme: Socket.best\u00e4tigen: {0}:{1}"}, {"appletsecurityexception.checkaccept", "Sicherheitsausnahme: socket.accept: {0}:{1}"},
{"appletsecurityexception.checkconnect.networknone", "Sicherheitsausnahme: Socket.verbinden: {0}->{1}"}, {"appletsecurityexception.checkconnect.networknone", "Sicherheitsausnahme: socket.connect: {0}->{1}"},
{"appletsecurityexception.checkconnect.networkhost1", "Sicherheitsausnahme: Konnte von {1} aus keine Verbindung mit {0} herstellen."}, {"appletsecurityexception.checkconnect.networkhost1", "Sicherheitsausnahme: Verbindung mit {0} mit Ursprung aus {1} konnte nicht hergestellt werden."},
{"appletsecurityexception.checkconnect.networkhost2", "Sicherheitsausnahme: Konnte IP f\u00fcr Host {0} oder {1} nicht aufl\u00f6sen."}, {"appletsecurityexception.checkconnect.networkhost2", "Sicherheitsausnahme: IP f\u00FCr Host {0} oder f\u00FCr {1} konnte nicht aufgel\u00F6st werden. "},
{"appletsecurityexception.checkconnect.networkhost3", "Sicherheitsausnahme: Konnte IP f\u00fcr Host {0} nicht aufl\u00f6sen. Siehe Eigenschaft trustProxy."}, {"appletsecurityexception.checkconnect.networkhost3", "Sicherheitsausnahme: IP f\u00FCr Host {0} konnte nicht aufgel\u00F6st werden. Siehe trustProxy-Eigenschaft."},
{"appletsecurityexception.checkconnect", "Sicherheitsausnahme: verbinden: {0}->{1}"}, {"appletsecurityexception.checkconnect", "Sicherheitsausnahme: Verbinden: {0}->{1}"},
{"appletsecurityexception.checkpackageaccess", "Sicherheitsausnahme: Kann nicht auf Package zugreifen: {0}"}, {"appletsecurityexception.checkpackageaccess", "Sicherheitsausnahme: Zugriff auf Package nicht m\u00F6glich: {0}"},
{"appletsecurityexception.checkpackagedefinition", "Sicherheitsausnahme: Kann Package nicht definieren: {0}"}, {"appletsecurityexception.checkpackagedefinition", "Sicherheitsausnahme: Package kann nicht definiert werden: {0}"},
{"appletsecurityexception.cannotsetfactory", "Sicherheitsausnahme: Kann Werkseinstellungen nicht setzen"}, {"appletsecurityexception.cannotsetfactory", "Sicherheitsausnahme: Factory kann nicht festgelegt werden"},
{"appletsecurityexception.checkmemberaccess", "Sicherheitsausnahme: Mitgliedszugriff pr\u00fcfen"}, {"appletsecurityexception.checkmemberaccess", "Sicherheitsausnahme: Mitgliedszugriff pr\u00FCfen"},
{"appletsecurityexception.checkgetprintjob", "Sicherheitsausnahme: getPrintJob"}, {"appletsecurityexception.checkgetprintjob", "Sicherheitsausnahme: getPrintJob"},
{"appletsecurityexception.checksystemclipboardaccess", "Sicherheitsausnahme: getSystemClipboard"}, {"appletsecurityexception.checksystemclipboardaccess", "Sicherheitsausnahme: getSystemClipboard"},
{"appletsecurityexception.checkawteventqueueaccess", "Sicherheitsausnahme: getEventQueue"}, {"appletsecurityexception.checkawteventqueueaccess", "Sicherheitsausnahme: getEventQueue"},
{"appletsecurityexception.checksecurityaccess", "Sicherheitsausnahme: Sicherheitsoperation: {0}"}, {"appletsecurityexception.checksecurityaccess", "Sicherheitsausnahme: Sicherheitsvorgang: {0}"},
{"appletsecurityexception.getsecuritycontext.unknown", "Unbekannter Klassenladertyp. Konnte nicht auf getContext pr\u00fcfen."}, {"appletsecurityexception.getsecuritycontext.unknown", "Unbekannter Class Loader-Typ. Pr\u00FCfen auf getContext nicht m\u00F6glich"},
{"appletsecurityexception.checkread.unknown", "Unbekannter Klassenladertyp. Konnte \u00dcberpr\u00fcfen des Lesevorgangs {0} nicht pr\u00fcfen."}, {"appletsecurityexception.checkread.unknown", "Unbekannter Class Loader-Typ. Pr\u00FCfen auf checkRead {0} nicht m\u00F6glich"},
{"appletsecurityexception.checkconnect.unknown", "Unbekannter Klassenladertyp. Konnte \u00dcberpr\u00fcfen der Verbindung nicht pr\u00fcfen."}, {"appletsecurityexception.checkconnect.unknown", "Unbekannter Class Loader-Typ. Pr\u00FCfen auf checkConnect nicht m\u00F6glich"},
}; };
return temp;
} }
} }

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -29,173 +29,175 @@ import java.util.ListResourceBundle;
public class MsgAppletViewer_es extends ListResourceBundle { public class MsgAppletViewer_es extends ListResourceBundle {
public Object[][] getContents() { public Object[][] getContents() {
return new Object[][] { Object[][] temp = new Object[][] {
{"textframe.button.dismiss", "Rechazar"}, {"textframe.button.dismiss", "Descartar"},
{"appletviewer.tool.title", "AppletViewer: {0}"}, {"appletviewer.tool.title", "Visor de Applet: {0}"},
{"appletviewer.menu.applet", "Subprograma"}, {"appletviewer.menu.applet", "Applet"},
{"appletviewer.menuitem.restart", "Reiniciar"}, {"appletviewer.menuitem.restart", "Reiniciar"},
{"appletviewer.menuitem.reload", "Volver a cargar"}, {"appletviewer.menuitem.reload", "Volver a Cargar"},
{"appletviewer.menuitem.stop", "Parar"}, {"appletviewer.menuitem.stop", "Parar"},
{"appletviewer.menuitem.save", "Guardar..."}, {"appletviewer.menuitem.save", "Guardar..."},
{"appletviewer.menuitem.start", "Iniciar"}, {"appletviewer.menuitem.start", "Iniciar"},
{"appletviewer.menuitem.clone", "Clonar..."}, {"appletviewer.menuitem.clone", "Clonar..."},
{"appletviewer.menuitem.tag", "Etiqueta..."}, {"appletviewer.menuitem.tag", "Etiqueta..."},
{"appletviewer.menuitem.info", "Informaci\u00f3n..."}, {"appletviewer.menuitem.info", "Informaci\u00F3n..."},
{"appletviewer.menuitem.edit", "Editar"}, {"appletviewer.menuitem.edit", "Editar"},
{"appletviewer.menuitem.encoding", "Codificaci\u00f3n de caracteres"}, {"appletviewer.menuitem.encoding", "Codificaci\u00F3n de Caracteres"},
{"appletviewer.menuitem.print", "Imprimir..."}, {"appletviewer.menuitem.print", "Imprimir..."},
{"appletviewer.menuitem.props", "Propiedades..."}, {"appletviewer.menuitem.props", "Propiedades..."},
{"appletviewer.menuitem.close", "Cerrar"}, {"appletviewer.menuitem.close", "Cerrar"},
{"appletviewer.menuitem.quit", "Salir"}, {"appletviewer.menuitem.quit", "Salir"},
{"appletviewer.label.hello", "Hola..."}, {"appletviewer.label.hello", "Hola..."},
{"appletviewer.status.start", "iniciando subprograma..."}, {"appletviewer.status.start", "iniciando applet..."},
{"appletviewer.appletsave.filedialogtitle","Serializar subprograma en archivo"}, {"appletviewer.appletsave.filedialogtitle","Serializar Applet en Archivo"},
{"appletviewer.appletsave.err1", "serializando {0} como {1}"}, {"appletviewer.appletsave.err1", "serializando {0} en {1}"},
{"appletviewer.appletsave.err2", "en appletSave: {0}"}, {"appletviewer.appletsave.err2", "en appletSave: {0}"},
{"appletviewer.applettag", "Etiqueta mostrada"}, {"appletviewer.applettag", "Etiqueta Mostrada"},
{"appletviewer.applettag.textframe", "Etiqueta HTML de subprograma"}, {"appletviewer.applettag.textframe", "Etiqueta HTML de Applet"},
{"appletviewer.appletinfo.applet", "-- sin informaci\u00f3n de subprograma --"}, {"appletviewer.appletinfo.applet", "-- ninguna informaci\u00F3n de applet --"},
{"appletviewer.appletinfo.param", "-- sin informaci\u00f3n de par\u00e1metro --"}, {"appletviewer.appletinfo.param", "-- ninguna informaci\u00F3n de par\u00E1metros --"},
{"appletviewer.appletinfo.textframe", "Informaci\u00f3n de subprograma"}, {"appletviewer.appletinfo.textframe", "Informaci\u00F3n del Applet"},
{"appletviewer.appletprint.fail", "Fallo en la impresi\u00f3n."}, {"appletviewer.appletprint.fail", "Fallo de impresi\u00F3n."},
{"appletviewer.appletprint.finish", "Impresi\u00f3n finalizada."}, {"appletviewer.appletprint.finish", "Impresi\u00F3n terminada."},
{"appletviewer.appletprint.cancel", "Impresi\u00f3n cancelada."}, {"appletviewer.appletprint.cancel", "Impresi\u00F3n cancelada."},
{"appletviewer.appletencoding", "Codificaci\u00f3n de caracteres: {0}"}, {"appletviewer.appletencoding", "Codificaci\u00F3n de Caracteres: {0}"},
{"appletviewer.parse.warning.requiresname", "Advertencia: la etiqueta <param name=... value=...> requiere el atributo del nombre."}, {"appletviewer.parse.warning.requiresname", "Advertencia: la etiqueta <param name=... value=...> requiere un atributo name."},
{"appletviewer.parse.warning.paramoutside", "Advertencia: la etiqueta <param> est\u00e1 fuera de <applet> ... </applet>."}, {"appletviewer.parse.warning.paramoutside", "Advertencia: la etiqueta <param> est\u00E1 fuera de <applet> ... </applet>."},
{"appletviewer.parse.warning.applet.requirescode", "Advertencia: <applet> requiere el atributo de c\u00f3digo."}, {"appletviewer.parse.warning.applet.requirescode", "Advertencia: la etiqueta <applet> requiere el atributo code."},
{"appletviewer.parse.warning.applet.requiresheight", "Advertencia: <applet> requiere el atributo de altura."}, {"appletviewer.parse.warning.applet.requiresheight", "Advertencia: la etiqueta <applet> requiere el atributo height."},
{"appletviewer.parse.warning.applet.requireswidth", "Advertencia: <applet> requiere el atributo de anchura."}, {"appletviewer.parse.warning.applet.requireswidth", "Advertencia: la etiqueta <applet> requiere el atributo width."},
{"appletviewer.parse.warning.object.requirescode", "Advertencia: <object> requiere el atributo de c\u00f3digo."}, {"appletviewer.parse.warning.object.requirescode", "Advertencia: la etiqueta <object> requiere el atributo code."},
{"appletviewer.parse.warning.object.requiresheight", "Advertencia: <object> requiere el atributo de altura."}, {"appletviewer.parse.warning.object.requiresheight", "Advertencia: la etiqueta <object> requiere el atributo height."},
{"appletviewer.parse.warning.object.requireswidth", "Advertencia: <object> requiere el atributo de anchura."}, {"appletviewer.parse.warning.object.requireswidth", "Advertencia: la etiqueta <object> requiere el atributo width."},
{"appletviewer.parse.warning.embed.requirescode", "Advertencia: <embed> requiere el atributo de c\u00f3digo."}, {"appletviewer.parse.warning.embed.requirescode", "Advertencia: la etiqueta <embed> requiere el atributo code."},
{"appletviewer.parse.warning.embed.requiresheight", "Advertencia: <embed> requiere el atributo de altura."}, {"appletviewer.parse.warning.embed.requiresheight", "Advertencia: la etiqueta <embed> requiere el atributo height."},
{"appletviewer.parse.warning.embed.requireswidth", "Advertencia: <embed> requiere el atributo de anchura."}, {"appletviewer.parse.warning.embed.requireswidth", "Advertencia: la etiqueta <embed> requiere el atributo width."},
{"appletviewer.parse.warning.appnotLongersupported", "Advertencia: la etiqueta <app> ya no est\u00e1 soportada; utilice <applet> en su lugar:"}, {"appletviewer.parse.warning.appnotLongersupported", "Advertencia: la etiqueta <app> ya no est\u00E1 soportada, utilice <applet> en su lugar:"},
{"appletviewer.usage", "Sintaxis: appletviewer <opciones> url(s)\n\ndonde <opciones> incluye:\n -debug Iniciar el AppletViewer en el depurador de Java\n -encoding <codificaci\u00f3n> Especificar la codificaci\u00f3n de caracteres utilizada por los archivos HTML\n -J<etiqueta de runtime> Pasar argumento al int\u00e9rprete de Java\n\nLa opci\u00f3n -J no es est\u00e1ndar, y puede modificarse sin previo aviso."}, {"appletviewer.usage", "Sintaxis: appletviewer <opciones> url(s)\n\ndonde <opciones> incluye:\n -debug Iniciar el visor de applet en el depurador Java\n -encoding <codificaci\u00F3n> Especificar la codificaci\u00F3n de caracteres utilizada por los archivos HTML\n -J<indicador de tiempo de ejecuci\u00F3n> Transferir argumento al int\u00E9rprete de Java\n\nLa opci\u00F3n -J es no est\u00E1ndar y est\u00E1 sujeta a cambios sin previo aviso."},
{"appletviewer.main.err.unsupportedopt", "Opci\u00f3n no admitida: {0}"}, {"appletviewer.main.err.unsupportedopt", "Opci\u00F3n no soportada: {0}"},
{"appletviewer.main.err.unrecognizedarg", "Argumento no reconocido: {0}"}, {"appletviewer.main.err.unrecognizedarg", "Argumento no reconocido: {0}"},
{"appletviewer.main.err.dupoption", "Uso duplicado de la opci\u00f3n: {0}"}, {"appletviewer.main.err.dupoption", "Uso duplicado de la opci\u00F3n: {0}"},
{"appletviewer.main.err.inputfile", "No se ha especificado ning\u00fan archivo de entrada."}, {"appletviewer.main.err.inputfile", "No se ha especificado ning\u00FAn archivo de entrada."},
{"appletviewer.main.err.badurl", "URL err\u00f3neo: {0} ( {1} )"}, {"appletviewer.main.err.badurl", "URL Err\u00F3nea: {0} ( {1} )"},
{"appletviewer.main.err.io", "Excepci\u00f3n de E/S durante la lectura: {0}"}, {"appletviewer.main.err.io", "Excepci\u00F3n de E/S durante la lectura: {0}"},
{"appletviewer.main.err.readablefile", "Aseg\u00farese de que {0} es un archivo y que puede leerse."}, {"appletviewer.main.err.readablefile", "Aseg\u00FArese de que {0} es un archivo y que se puede leer."},
{"appletviewer.main.err.correcturl", "\u00bfEs {0} el URL correcto?"}, {"appletviewer.main.err.correcturl", "\u00BFEs {0} la URL correcta?"},
{"appletviewer.main.prop.store", "Propiedades del AppletViewer espec\u00edficos del usuario"}, {"appletviewer.main.prop.store", "Propiedades Espec\u00EDficas del Usuario para AppletViewer"},
{"appletviewer.main.err.prop.cantread", "No se puede leer el archivo de propiedades del usuario: {0}"}, {"appletviewer.main.err.prop.cantread", "No se puede leer el archivo de propiedades del usuario: {0}"},
{"appletviewer.main.err.prop.cantsave", "No se puede guardar el archivo de propiedades del usuario: {0}"}, {"appletviewer.main.err.prop.cantsave", "No se puede guardar el archivo de propiedades del usuario: {0}"},
{"appletviewer.main.warn.nosecmgr", "Advertencia: inhabilitando seguridad."}, {"appletviewer.main.warn.nosecmgr", "Advertencia: desactivando seguridad."},
{"appletviewer.main.debug.cantfinddebug", "No se puede encontrar el depurador."}, {"appletviewer.main.debug.cantfinddebug", "No se ha encontrado el depurador."},
{"appletviewer.main.debug.cantfindmain", "No se puede encontrar el m\u00e9todo principal en el depurador."}, {"appletviewer.main.debug.cantfindmain", "No se ha encontrado el m\u00E9todo principal en el depurador."},
{"appletviewer.main.debug.exceptionindebug", "Excepci\u00f3n en el depurador."}, {"appletviewer.main.debug.exceptionindebug", "Excepci\u00F3n en el depurador."},
{"appletviewer.main.debug.cantaccess", "No se puede acceder al depurador."}, {"appletviewer.main.debug.cantaccess", "No se puede acceder al depurador."},
{"appletviewer.main.nosecmgr", "Advertencia: SecurityManager no est\u00e1 instalado."}, {"appletviewer.main.nosecmgr", "Advertencia: no se ha instalado SecurityManager."},
{"appletviewer.main.warning", "Advertencia: No se ha iniciado ning\u00fan subprograma. Aseg\u00farese de que la entrada contiene una etiqueta <applet>."}, {"appletviewer.main.warning", "Advertencia: no se ha iniciado ning\u00FAn applet. Aseg\u00FArese de que la entrada contiene una etiqueta <applet>."},
{"appletviewer.main.warn.prop.overwrite", "Advertencia: Sobrescribiendo temporalmente propiedad del sistema por solicitud del usuario: clave: {0} valor antiguo: {1} valor nuevo: {2}"}, {"appletviewer.main.warn.prop.overwrite", "Advertencia: se sobrescribir\u00E1 temporalmente la propiedad del sistema cuando lo solicite el usuario: clave: {0} valor anterior: {1} nuevo valor: {2}"},
{"appletviewer.main.warn.cantreadprops", "Advertencia: No se puede leer el archivo de propiedades del AppletViewer: {0} Utilizando valores predeterminados."}, {"appletviewer.main.warn.cantreadprops", "Advertencia: no se puede leer el archivo de propiedades de AppletViewer: {0}. Utilizando valores por defecto."},
{"appletioexception.loadclass.throw.interrupted", "carga de clase interrumpida: {0}"}, {"appletioexception.loadclass.throw.interrupted", "carga de clase interrumpida: {0}"},
{"appletioexception.loadclass.throw.notloaded", "clase no cargada: {0}"}, {"appletioexception.loadclass.throw.notloaded", "clase no cargada: {0}"},
{"appletclassloader.loadcode.verbose", "Abriendo cadena de flujo: {0} para obtener {1}"}, {"appletclassloader.loadcode.verbose", "Abriendo flujo a: {0} para obtener {1}"},
{"appletclassloader.filenotfound", "Archivo no encontrado al buscar: {0}"}, {"appletclassloader.filenotfound", "No se ha encontrado el archivo al buscar: {0}"},
{"appletclassloader.fileformat", "Excepci\u00f3n de formato de archivo al cargar: {0}"}, {"appletclassloader.fileformat", "Excepci\u00F3n de formato de archivo al cargar: {0}"},
{"appletclassloader.fileioexception", "Excepci\u00f3n de E/S al cargar: {0}"}, {"appletclassloader.fileioexception", "Excepci\u00F3n de E/S al cargar: {0}"},
{"appletclassloader.fileexception", "Excepci\u00f3n de {0} al cargar: {1}"}, {"appletclassloader.fileexception", "Excepci\u00F3n de {0} al cargar: {1}"},
{"appletclassloader.filedeath", "{0} eliminado al cargar: {1}"}, {"appletclassloader.filedeath", "{0} interrumpido al cargar: {1}"},
{"appletclassloader.fileerror", "error de {0} al cargar: {1}"}, {"appletclassloader.fileerror", "error de {0} al cargar: {1}"},
{"appletclassloader.findclass.verbose.findclass", "{0} buscar clase {1}"}, {"appletclassloader.findclass.verbose.findclass", "{0} encontrar la clase {1}"},
{"appletclassloader.findclass.verbose.openstream", "Abriendo cadena de flujo: {0} para obtener {1}"}, {"appletclassloader.findclass.verbose.openstream", "Abriendo flujo a: {0} para obtener {1}"},
{"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource para el nombre: {0}"}, {"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource para nombre: {0}"},
{"appletclassloader.getresource.verbose.found", "Recurso encontrado: {0} como recurso del sistema"}, {"appletclassloader.getresource.verbose.found", "Recurso encontrado: {0} como un recurso de sistema"},
{"appletclassloader.getresourceasstream.verbose", "Recurso encontrado: {0} como recurso del sistema"}, {"appletclassloader.getresourceasstream.verbose", "Recurso encontrado: {0} como un recurso de sistema"},
{"appletpanel.runloader.err", "Par\u00e1metro de objeto o c\u00f3digo"}, {"appletpanel.runloader.err", "Par\u00E1metro de c\u00F3digo u objeto."},
{"appletpanel.runloader.exception", "excepci\u00f3n al cancelar serializaci\u00f3n de {0}"}, {"appletpanel.runloader.exception", "excepci\u00F3n al deserializar {0}"},
{"appletpanel.destroyed", "subprograma destruido."}, {"appletpanel.destroyed", "Applet destruido."},
{"appletpanel.loaded", "Subprograma cargado."}, {"appletpanel.loaded", "Applet cargado."},
{"appletpanel.started", "Subprograma iniciado."}, {"appletpanel.started", "Applet iniciado."},
{"appletpanel.inited", "Subprograma inicializado."}, {"appletpanel.inited", "Applet inicializado."},
{"appletpanel.stopped", "Subprograma parado."}, {"appletpanel.stopped", "Applet parado."},
{"appletpanel.disposed", "Subprograma desechado."}, {"appletpanel.disposed", "Applet desechado."},
{"appletpanel.nocode", "La etiqueta APPLET carece del par\u00e1metro CODE."}, {"appletpanel.nocode", "Falta el par\u00E1metro CODE en la etiqueta APPLET."},
{"appletpanel.notfound", "cargar: clase {0} no encontrada."}, {"appletpanel.notfound", "cargar: clase {0} no encontrada."},
{"appletpanel.nocreate", "cargar: no se puede crear un caso de {0}."}, {"appletpanel.nocreate", "cargar: {0} no se puede instanciar."},
{"appletpanel.noconstruct", "cargar: {0} no es p\u00fablico o no tiene ning\u00fan constructor p\u00fablico."}, {"appletpanel.noconstruct", "cargar: {0} no es p\u00FAblico o no tiene un constructor p\u00FAblico."},
{"appletpanel.death", "eliminado"}, {"appletpanel.death", "interrumpido"},
{"appletpanel.exception", "excepci\u00f3n: {0}."}, {"appletpanel.exception", "excepci\u00F3n: {0}."},
{"appletpanel.exception2", "excepci\u00f3n: {0}: {1}."}, {"appletpanel.exception2", "excepci\u00F3n: {0}: {1}."},
{"appletpanel.error", "error: {0}."}, {"appletpanel.error", "error: {0}."},
{"appletpanel.error2", "error: {0}: {1}."}, {"appletpanel.error2", "error: {0}: {1}."},
{"appletpanel.notloaded", "Inicializar: subprograma no cargado."}, {"appletpanel.notloaded", "Iniciaci\u00F3n: applet no cargado."},
{"appletpanel.notinited", "Iniciar: subprograma no inicializado."}, {"appletpanel.notinited", "Iniciar: applet no inicializado."},
{"appletpanel.notstarted", "Parar: subprograma no iniciado."}, {"appletpanel.notstarted", "Parar: applet no iniciado."},
{"appletpanel.notstopped", "Destruir: subprograma no parado."}, {"appletpanel.notstopped", "Destruir: applet no parado."},
{"appletpanel.notdestroyed", "Desechar: subprograma no destruido."}, {"appletpanel.notdestroyed", "Desechar: applet no destruido."},
{"appletpanel.notdisposed", "Cargar: subprograma no desechado."}, {"appletpanel.notdisposed", "Cargar: applet no desechado."},
{"appletpanel.bail", "Interrupci\u00f3n: efectuando salida."}, {"appletpanel.bail", "Interrumpido: rescatando."},
{"appletpanel.filenotfound", "Archivo no encontrado al buscar: {0}"}, {"appletpanel.filenotfound", "No se ha encontrado el archivo al buscar: {0}"},
{"appletpanel.fileformat", "Excepci\u00f3n de formato de archivo al cargar: {0}"}, {"appletpanel.fileformat", "Excepci\u00F3n de formato de archivo al cargar: {0}"},
{"appletpanel.fileioexception", "Excepci\u00f3n de E/S al cargar: {0}"}, {"appletpanel.fileioexception", "Excepci\u00F3n de E/S al cargar: {0}"},
{"appletpanel.fileexception", "Excepci\u00f3n de {0} al cargar: {1}"}, {"appletpanel.fileexception", "Excepci\u00F3n de {0} al cargar: {1}"},
{"appletpanel.filedeath", "{0} eliminado al cargar: {1}"}, {"appletpanel.filedeath", "{0} interrumpido al cargar: {1}"},
{"appletpanel.fileerror", "Error de {0} al cargar: {1}"}, {"appletpanel.fileerror", "error de {0} al cargar: {1}"},
{"appletpanel.badattribute.exception", "An\u00e1lisis de HTML: valor incorrecto para el atributo ancho/alto"}, {"appletpanel.badattribute.exception", "An\u00E1lisis HTML: valor incorrecto para el atributo width/height."},
{"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream requiere un cargador que no sea nulo (non-null)"}, {"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream requiere un cargador no nulo"},
{"appletprops.title", "Propiedades de AppletViewer"}, {"appletprops.title", "Propiedades de AppletViewer"},
{"appletprops.label.http.server", "Servidor proxy Http:"}, {"appletprops.label.http.server", "Servidor Proxy HTTP:"},
{"appletprops.label.http.proxy", "Puerto proxy Http:"}, {"appletprops.label.http.proxy", "Puerto Proxy HTTP:"},
{"appletprops.label.network", "Acceso a la red:"}, {"appletprops.label.network", "Acceso de Red:"},
{"appletprops.choice.network.item.none", "Ninguno"}, {"appletprops.choice.network.item.none", "Ninguno"},
{"appletprops.choice.network.item.applethost", "Sistema de subprogramas"}, {"appletprops.choice.network.item.applethost", "Host del Applet"},
{"appletprops.choice.network.item.unrestricted", "Sin restricciones"}, {"appletprops.choice.network.item.unrestricted", "No Restringido"},
{"appletprops.label.class", "Acceso a clase:"}, {"appletprops.label.class", "Acceso de Clase:"},
{"appletprops.choice.class.item.restricted", "Restringido"}, {"appletprops.choice.class.item.restricted", "Restringido"},
{"appletprops.choice.class.item.unrestricted", "Sin restricciones"}, {"appletprops.choice.class.item.unrestricted", "No Restringido"},
{"appletprops.label.unsignedapplet", "Permitir subprogramas sin firmar:"}, {"appletprops.label.unsignedapplet", "Permitir Applets no Firmados:"},
{"appletprops.choice.unsignedapplet.no", "No"}, {"appletprops.choice.unsignedapplet.no", "No"},
{"appletprops.choice.unsignedapplet.yes", "S\u00ed"}, {"appletprops.choice.unsignedapplet.yes", "S\u00ED"},
{"appletprops.button.apply", "Aplicar"}, {"appletprops.button.apply", "Aplicar"},
{"appletprops.button.cancel", "Cancelar"}, {"appletprops.button.cancel", "Cancelar"},
{"appletprops.button.reset", "Restablecer"}, {"appletprops.button.reset", "Restablecer"},
{"appletprops.apply.exception", "Fallo al guardar propiedades: {0}"}, {"appletprops.apply.exception", "Fallo al guardar las propiedades: {0}"},
/* 4066432 */ /* 4066432 */
{"appletprops.title.invalidproxy", "Entrada no v\u00e1lida"}, {"appletprops.title.invalidproxy", "Entrada no V\u00E1lida"},
{"appletprops.label.invalidproxy", "El puerto del delegado debe ser un entero positivo"}, {"appletprops.label.invalidproxy", "El puerto proxy debe ser un valor entero positivo."},
{"appletprops.button.ok", "Aceptar"}, {"appletprops.button.ok", "Aceptar"},
/* end 4066432 */ /* end 4066432 */
{"appletprops.prop.store", "Propiedades del AppletViewer espec\u00edficos del usuario"}, {"appletprops.prop.store", "Propiedades espec\u00EDficas del usuario para AppletViewer"},
{"appletsecurityexception.checkcreateclassloader", "Excepci\u00f3n de seguridad: classloader"}, {"appletsecurityexception.checkcreateclassloader", "Excepci\u00F3n de Seguridad: classloader"},
{"appletsecurityexception.checkaccess.thread", "Excepci\u00f3n de seguridad: thread"}, {"appletsecurityexception.checkaccess.thread", "Excepci\u00F3n de Seguridad: thread"},
{"appletsecurityexception.checkaccess.threadgroup", "Excepci\u00f3n de seguridad: threadgroup: {0}"}, {"appletsecurityexception.checkaccess.threadgroup", "Excepci\u00F3n de Seguridad: threadgroup: {0}"},
{"appletsecurityexception.checkexit", "Excepci\u00f3n de seguridad: exit: {0}"}, {"appletsecurityexception.checkexit", "Excepci\u00F3n de Seguridad: salir: {0}"},
{"appletsecurityexception.checkexec", "Excepci\u00f3n de seguridad: exec: {0}"}, {"appletsecurityexception.checkexec", "Excepci\u00F3n de Seguridad: ejecutar: {0}"},
{"appletsecurityexception.checklink", "Excepci\u00f3n de seguridad: link: {0}"}, {"appletsecurityexception.checklink", "Excepci\u00F3n de Seguridad: enlace: {0}"},
{"appletsecurityexception.checkpropsaccess", "Excepci\u00f3n de seguridad: properties"}, {"appletsecurityexception.checkpropsaccess", "Excepci\u00F3n de Seguridad: propiedades"},
{"appletsecurityexception.checkpropsaccess.key", "Excepci\u00f3n de seguridad: properties access {0}"}, {"appletsecurityexception.checkpropsaccess.key", "Excepci\u00F3n de Seguridad: acceso a propiedades {0}"},
{"appletsecurityexception.checkread.exception1", "Excepci\u00f3n de seguridad: {0}, {1}"}, {"appletsecurityexception.checkread.exception1", "Excepci\u00F3n de Seguridad: {0}, {1}"},
{"appletsecurityexception.checkread.exception2", "Excepci\u00f3n de seguridad: file.read: {0}"}, {"appletsecurityexception.checkread.exception2", "Excepci\u00F3n de Seguridad: file.read: {0}"},
{"appletsecurityexception.checkread", "Excepci\u00f3n de seguridad: file.read: {0} == {1}"}, {"appletsecurityexception.checkread", "Excepci\u00F3n de Seguridad: file.read: {0} == {1}"},
{"appletsecurityexception.checkwrite.exception", "Excepci\u00f3n de seguridad: {0}, {1}"}, {"appletsecurityexception.checkwrite.exception", "Excepci\u00F3n de Seguridad: {0}, {1}"},
{"appletsecurityexception.checkwrite", "Excepci\u00f3n de seguridad: file.write: {0} == {1}"}, {"appletsecurityexception.checkwrite", "Excepci\u00F3n de Seguridad: file.write: {0} == {1}"},
{"appletsecurityexception.checkread.fd", "Excepci\u00f3n de seguridad: fd.read"}, {"appletsecurityexception.checkread.fd", "Excepci\u00F3n de Seguridad: fd.read"},
{"appletsecurityexception.checkwrite.fd", "Excepci\u00f3n de seguridad: fd.write"}, {"appletsecurityexception.checkwrite.fd", "Excepci\u00F3n de Seguridad: fd.write"},
{"appletsecurityexception.checklisten", "Excepci\u00f3n de seguridad: socket.listen: {0}"}, {"appletsecurityexception.checklisten", "Excepci\u00F3n de Seguridad: socket.listen: {0}"},
{"appletsecurityexception.checkaccept", "Excepci\u00f3n de seguridad: socket.accept: {0}:{1}"}, {"appletsecurityexception.checkaccept", "Excepci\u00F3n de Seguridad: socket.accept: {0}:{1}"},
{"appletsecurityexception.checkconnect.networknone", "Excepci\u00f3n de seguridad: socket.connect: {0}->{1}"}, {"appletsecurityexception.checkconnect.networknone", "Excepci\u00F3n de Seguridad: socket.connect: {0}->{1}"},
{"appletsecurityexception.checkconnect.networkhost1", "Excepci\u00f3n de seguridad: No se puede conectar a {0} con un origen de {1}."}, {"appletsecurityexception.checkconnect.networkhost1", "Excepci\u00F3n de Seguridad: no se puede conectar a {0} con origen de {1}."},
{"appletsecurityexception.checkconnect.networkhost2", "Excepci\u00f3n de seguridad: No se puede resolver IP para el sistema {0} o para {1}. "}, {"appletsecurityexception.checkconnect.networkhost2", "Excepci\u00F3n de Seguridad: no se puede resolver la IP para el host {0} o para {1}. "},
{"appletsecurityexception.checkconnect.networkhost3", "Excepci\u00f3n de seguridad: No se puede resolver IP para el sistema {0}. V\u00e9ase la propiedad trustProxy."}, {"appletsecurityexception.checkconnect.networkhost3", "Excepci\u00F3n de Seguridad: no se puede resolver la IP para el host {0}. Consulte la propiedad trustProxy."},
{"appletsecurityexception.checkconnect", "Excepci\u00f3n de seguridad: connect: {0}->{1}"}, {"appletsecurityexception.checkconnect", "Excepci\u00F3n de Seguridad: conexi\u00F3n: {0}->{1}"},
{"appletsecurityexception.checkpackageaccess", "Excepci\u00f3n de seguridad: no se puede acceder al paquete: {0}"}, {"appletsecurityexception.checkpackageaccess", "Excepci\u00F3n de Seguridad: no se puede acceder al paquete: {0}"},
{"appletsecurityexception.checkpackagedefinition", "Excepci\u00f3n de seguridad: no se puede definir el paquete: {0}"}, {"appletsecurityexception.checkpackagedefinition", "Excepci\u00F3n de Seguridad: no se puede definir el paquete: {0}"},
{"appletsecurityexception.cannotsetfactory", "Excepci\u00f3n de seguridad: no se puede definir factory"}, {"appletsecurityexception.cannotsetfactory", "Excepci\u00F3n de Seguridad: no se puede definir el valor de f\u00E1brica"},
{"appletsecurityexception.checkmemberaccess", "Excepci\u00f3n de seguridad: compruebe el acceso del miembro"}, {"appletsecurityexception.checkmemberaccess", "Excepci\u00F3n de Seguridad: comprobar el acceso de miembro"},
{"appletsecurityexception.checkgetprintjob", "Excepci\u00f3n de seguridad: getPrintJob"}, {"appletsecurityexception.checkgetprintjob", "Excepci\u00F3n de Seguridad: getPrintJob"},
{"appletsecurityexception.checksystemclipboardaccess", "Excepci\u00f3n de seguridad: getSystemClipboard"}, {"appletsecurityexception.checksystemclipboardaccess", "Excepci\u00F3n de Seguridad: getSystemClipboard"},
{"appletsecurityexception.checkawteventqueueaccess", "Excepci\u00f3n de seguridad: getEventQueue"}, {"appletsecurityexception.checkawteventqueueaccess", "Excepci\u00F3n de Seguridad: getEventQueue"},
{"appletsecurityexception.checksecurityaccess", "Excepci\u00f3n de seguridad: operaci\u00f3n de seguridad: {0}"}, {"appletsecurityexception.checksecurityaccess", "Excepci\u00F3n de Seguridad: operaci\u00F3n de seguridad: {0}"},
{"appletsecurityexception.getsecuritycontext.unknown", "Tipo de cargador de clase desconocido. No es posible comprobar getContext"}, {"appletsecurityexception.getsecuritycontext.unknown", "tipo de cargador de clase desconocido. no se puede comprobar para getContext"},
{"appletsecurityexception.checkread.unknown", "Tipo de cargador de clase desconocido. No es posible comprobar la verificaci\u00f3n de lectura {0}"}, {"appletsecurityexception.checkread.unknown", "tipo de cargador de clase desconocido. no se puede comprobar para lectura de comprobaci\u00F3n {0}"},
{"appletsecurityexception.checkconnect.unknown", "Tipo de cargador de clase desconocido. No es posible comprobar la verificaci\u00f3n de conexi\u00f3n"}, {"appletsecurityexception.checkconnect.unknown", "tipo de cargador de clase desconocido. no se puede comprobar para conexi\u00F3n de comprobaci\u00F3n"},
}; };
return temp;
} }
} }

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -29,173 +29,175 @@ import java.util.ListResourceBundle;
public class MsgAppletViewer_fr extends ListResourceBundle { public class MsgAppletViewer_fr extends ListResourceBundle {
public Object[][] getContents() { public Object[][] getContents() {
return new Object[][] { Object[][] temp = new Object[][] {
{"textframe.button.dismiss", "Annuler"}, {"textframe.button.dismiss", "Abandonner"},
{"appletviewer.tool.title", "AppletViewer : {0}"}, {"appletviewer.tool.title", "Visualiseur d''applets : {0}"},
{"appletviewer.menu.applet", "Applet"}, {"appletviewer.menu.applet", "Applet"},
{"appletviewer.menuitem.restart", "Red\u00e9marrer"}, {"appletviewer.menuitem.restart", "Red\u00E9marrer"},
{"appletviewer.menuitem.reload", "Recharger"}, {"appletviewer.menuitem.reload", "Recharger"},
{"appletviewer.menuitem.stop", "Arr\u00eater"}, {"appletviewer.menuitem.stop", "Arr\u00EAter"},
{"appletviewer.menuitem.save", "Enregistrer..."}, {"appletviewer.menuitem.save", "Enregistrer..."},
{"appletviewer.menuitem.start", "D\u00e9marrer"}, {"appletviewer.menuitem.start", "D\u00E9marrer"},
{"appletviewer.menuitem.clone", "Dupliquer..."}, {"appletviewer.menuitem.clone", "Cloner..."},
{"appletviewer.menuitem.tag", "Marquer..."}, {"appletviewer.menuitem.tag", "Baliser..."},
{"appletviewer.menuitem.info", "Informations..."}, {"appletviewer.menuitem.info", "Informations..."},
{"appletviewer.menuitem.edit", "Editer"}, {"appletviewer.menuitem.edit", "Modifier"},
{"appletviewer.menuitem.encoding", "Codage des caract\u00e8res"}, {"appletviewer.menuitem.encoding", "Encodage de caract\u00E8res"},
{"appletviewer.menuitem.print", "Imprimer..."}, {"appletviewer.menuitem.print", "Imprimer..."},
{"appletviewer.menuitem.props", "Propri\u00e9t\u00e9s..."}, {"appletviewer.menuitem.props", "Propri\u00E9t\u00E9s..."},
{"appletviewer.menuitem.close", "Fermer"}, {"appletviewer.menuitem.close", "Fermer"},
{"appletviewer.menuitem.quit", "Quitter"}, {"appletviewer.menuitem.quit", "Quitter"},
{"appletviewer.label.hello", "Bonjour..."}, {"appletviewer.label.hello", "Bonjour..."},
{"appletviewer.status.start", "d\u00e9marrage de l'applet"}, {"appletviewer.status.start", "d\u00E9marrage de l'applet..."},
{"appletviewer.appletsave.filedialogtitle","S\u00e9rialiser un applet en fichier"}, {"appletviewer.appletsave.filedialogtitle","S\u00E9rialiser l'applet dans le fichier"},
{"appletviewer.appletsave.err1", "num\u00e9rotation d''un {0} vers {1}"}, {"appletviewer.appletsave.err1", "S\u00E9rialisation de {0} vers {1}"},
{"appletviewer.appletsave.err2", "dans appletSave : {0}"}, {"appletviewer.appletsave.err2", "dans appletSave : {0}"},
{"appletviewer.applettag", "Etiquette affich\u00e9e"}, {"appletviewer.applettag", "Balise affich\u00E9e"},
{"appletviewer.applettag.textframe", "Etiquette HTML applet"}, {"appletviewer.applettag.textframe", "Balise HTML d'applet"},
{"appletviewer.appletinfo.applet", "-- aucune information applet --"}, {"appletviewer.appletinfo.applet", "-- aucune information d'applet --"},
{"appletviewer.appletinfo.param", "-- aucune information de param\u00e8tre --"}, {"appletviewer.appletinfo.param", "-- aucune information de param\u00E8tre --"},
{"appletviewer.appletinfo.textframe", "Information applet"}, {"appletviewer.appletinfo.textframe", "Informations d'applet"},
{"appletviewer.appletprint.fail", "Echec de l'impression."}, {"appletviewer.appletprint.fail", "Echec de l'impression."},
{"appletviewer.appletprint.finish", "Impression achev\u00e9e."}, {"appletviewer.appletprint.finish", "Impression termin\u00E9e."},
{"appletviewer.appletprint.cancel", "Impression annul\u00e9e."}, {"appletviewer.appletprint.cancel", "Impression annul\u00E9e."},
{"appletviewer.appletencoding", "Codage de caract\u00e8re : {0}"}, {"appletviewer.appletencoding", "Encodage de caract\u00E8res : {0}"},
{"appletviewer.parse.warning.requiresname", "Avertissement : l'\u00e9tiquette <param name=... value=...> n\u00e9cessite un attribut name."}, {"appletviewer.parse.warning.requiresname", "Avertissement : la balise <param name=... value=...> requiert un attribut de nom."},
{"appletviewer.parse.warning.paramoutside", "Avertissement : \u00e9tiquette <param> en dehors de <applet> ... </applet>."}, {"appletviewer.parse.warning.paramoutside", "Avertissement : la balise <param> est en dehors des balises <applet> ... </applet>."},
{"appletviewer.parse.warning.applet.requirescode", "Avertissement : l'\u00e9tiquette <applet> exige un attribut de code."}, {"appletviewer.parse.warning.applet.requirescode", "Avertissement : la balise <applet> requiert un attribut de code."},
{"appletviewer.parse.warning.applet.requiresheight", "Avertissement : l'\u00e9tiquette <applet> exige un attribut de hauteur."}, {"appletviewer.parse.warning.applet.requiresheight", "Avertissement : la balise <applet> requiert un attribut de hauteur."},
{"appletviewer.parse.warning.applet.requireswidth", "Avertissement : l'\u00e9tiquette <applet> exige un attribut de largeur."}, {"appletviewer.parse.warning.applet.requireswidth", "Avertissement : la balise <applet> requiert un attribut de largeur."},
{"appletviewer.parse.warning.object.requirescode", "Avertissement : l'\u00e9tiquette <object> exige un attribut de code."}, {"appletviewer.parse.warning.object.requirescode", "Avertissement : la balise <object> requiert un attribut de code."},
{"appletviewer.parse.warning.object.requiresheight", "Avertissement : l'\u00e9tiquette <object> exige un attribut de hauteur."}, {"appletviewer.parse.warning.object.requiresheight", "Avertissement : la balise <object> requiert un attribut de hauteur."},
{"appletviewer.parse.warning.object.requireswidth", "Avertissement : l'\u00e9tiquette <object> exige un attribut de largeur."}, {"appletviewer.parse.warning.object.requireswidth", "Avertissement : la balise <object> requiert un attribut de largeur."},
{"appletviewer.parse.warning.embed.requirescode", "Avertissement : l'\u00e9tiquette <embed> exige un attribut de code."}, {"appletviewer.parse.warning.embed.requirescode", "Avertissement : la balise <embed> requiert un attribut de code."},
{"appletviewer.parse.warning.embed.requiresheight", "Avertissement : l'\u00e9tiquette <embed> exige un attribut de hauteur."}, {"appletviewer.parse.warning.embed.requiresheight", "Avertissement : la balise <embed> requiert un attribut de hauteur."},
{"appletviewer.parse.warning.embed.requireswidth", "Avertissement : l'\u00e9tiquette <embed> exige un attribut de largeur."}, {"appletviewer.parse.warning.embed.requireswidth", "Avertissement : la balise <embed> requiert un attribut de largeur."},
{"appletviewer.parse.warning.appnotLongersupported", "Avertissement : l'\u00e9tiquette <app> n'est plus prise en charge ; utilisez <applet> \u00e0 la place :"}, {"appletviewer.parse.warning.appnotLongersupported", "Avertissement : la balise <app> n'est plus prise en charge, utilisez <applet> \u00E0 la place :"},
{"appletviewer.usage", "Syntaxe : appletviewer <options> url(s)\n\nO\u00f9 les <options> sont :\n -debug Lancer le visualiseur d'applet dans le d\u00e9bogueur Java\n -encoding <codage> Sp\u00e9cifier le codage de caract\u00e8res utilis\u00e9 par les fichiers HTML\n -J<indicateur d'ex\u00e9cution> Transmettre l'argument \u00e0 l'interpr\u00e9teur Java\n\nL'option -J n'est pas standard et peut \u00eatre modifi\u00e9e sans pr\u00e9avis."}, {"appletviewer.usage", "Syntaxe : appletviewer <options> url(s)\n\no\u00F9 <options> inclut :\n -debug D\u00E9marrer le visualiseur d'applets dans le d\u00E9bogueur Java\n -encoding <encoding> Indiquer l'encodage de caract\u00E8res utilis\u00E9 par les fichiers HTML\n -J<runtime flag> Transmettre l'argument \u00E0 l'interpr\u00E9teur Java\n\nL'option -J n'est pas standard et elle peut \u00EAtre modifi\u00E9e sans pr\u00E9avis."},
{"appletviewer.main.err.unsupportedopt", "Option non prise en charge : {0}"}, {"appletviewer.main.err.unsupportedopt", "Option non prise en charge : {0}"},
{"appletviewer.main.err.unrecognizedarg", "Argument inconnu : {0}"}, {"appletviewer.main.err.unrecognizedarg", "Argument non reconnu : {0}"},
{"appletviewer.main.err.dupoption", "Option en double : {0}"}, {"appletviewer.main.err.dupoption", "Utilisation en double de l''option : {0}"},
{"appletviewer.main.err.inputfile", "Aucun fichier d'entr\u00e9e n'a \u00e9t\u00e9 sp\u00e9cifi\u00e9."}, {"appletviewer.main.err.inputfile", "Aucun fichier d'entr\u00E9e indiqu\u00E9."},
{"appletviewer.main.err.badurl", "URL incorrect : {0} ( {1} )"}, {"appletviewer.main.err.badurl", "URL incorrecte : {0} ({1})"},
{"appletviewer.main.err.io", "Exception d''E/S pendant la lecture de {0}"}, {"appletviewer.main.err.io", "Exception d''E/S lors de la lecture : {0}"},
{"appletviewer.main.err.readablefile", "{0} doit \u00eatre un fichier accessible en lecture."}, {"appletviewer.main.err.readablefile", "Assurez-vous que {0} est un fichier accessible en lecture."},
{"appletviewer.main.err.correcturl", "{0} est-il l''URL correct ?"}, {"appletviewer.main.err.correcturl", "L''\u00E9l\u00E9ment {0} est-il l''URL correcte ?"},
{"appletviewer.main.prop.store", "Propri\u00e9t\u00e9s AppletViewer propres \u00e0 l'utilisateur"}, {"appletviewer.main.prop.store", "Propri\u00E9t\u00E9s utilisateur pour AppletViewer"},
{"appletviewer.main.err.prop.cantread", "Echec de lecture du fichier de propri\u00e9t\u00e9s des utilisateurs : {0}"}, {"appletviewer.main.err.prop.cantread", "Impossible de lire le fichier de propri\u00E9t\u00E9s utilisateur : {0}"},
{"appletviewer.main.err.prop.cantsave", "Echec de sauvegarde du fichier de propri\u00e9t\u00e9s des utilisateurs : {0}"}, {"appletviewer.main.err.prop.cantsave", "Impossible d''enregistrer le fichier de propri\u00E9t\u00E9s utilisateur : {0}"},
{"appletviewer.main.warn.nosecmgr", "Avertissement : d\u00e9sactivation de la s\u00e9curit\u00e9."}, {"appletviewer.main.warn.nosecmgr", "Avertissement : d\u00E9sactivation de la s\u00E9curit\u00E9."},
{"appletviewer.main.debug.cantfinddebug", "D\u00e9bogueur introuvable !"}, {"appletviewer.main.debug.cantfinddebug", "D\u00E9bogueur introuvable."},
{"appletviewer.main.debug.cantfindmain", "M\u00e9thode principale introuvable dans le d\u00e9bogueur !"}, {"appletviewer.main.debug.cantfindmain", "La m\u00E9thode principale est introuvable dans le d\u00E9bogueur."},
{"appletviewer.main.debug.exceptionindebug", "Exception dans le d\u00e9bogueur !"}, {"appletviewer.main.debug.exceptionindebug", "Exception d\u00E9tect\u00E9e dans le d\u00E9bogueur."},
{"appletviewer.main.debug.cantaccess", "D\u00e9bogueur inaccessible !"}, {"appletviewer.main.debug.cantaccess", "Impossible d'acc\u00E9der au d\u00E9bogueur."},
{"appletviewer.main.nosecmgr", "Avertissement : SecurityManager n'est pas install\u00e9 !"}, {"appletviewer.main.nosecmgr", "Avertissement : SecurityManager n'est pas install\u00E9."},
{"appletviewer.main.warning", "Avertissement : aucun applet n'a \u00e9t\u00e9 d\u00e9marr\u00e9. Assurez-vous que l'entr\u00e9e contient une \u00e9tiquette <applet>."}, {"appletviewer.main.warning", "Avertissement : aucune applet n'a \u00E9t\u00E9 d\u00E9marr\u00E9e. Assurez-vous que l'entr\u00E9e contient une balise <applet>."},
{"appletviewer.main.warn.prop.overwrite", "Avertissement : remplacement temporaire de propri\u00e9t\u00e9 de syst\u00e8me \u00e0 la demande de l''utilisateur : cl\u00e9 : {0} ancienne valeur : {1} nouvelle valeur : {2}"}, {"appletviewer.main.warn.prop.overwrite", "Avertissement : remplacement temporaire de la propri\u00E9t\u00E9 syst\u00E8me \u00E0 la demande de l''utilisateur - Cl\u00E9 : {0}, ancienne valeur : {1}, nouvelle valeur : {2}"},
{"appletviewer.main.warn.cantreadprops", "Avertissement : \u00e9chec de lecture du fichier de propri\u00e9t\u00e9s AppletViewer : {0} Utilisation des valeurs par d\u00e9faut."}, {"appletviewer.main.warn.cantreadprops", "Avertissement : impossible de lire le fichier de propri\u00E9t\u00E9s d''AppletViewer : {0} Utilisation des valeurs par d\u00E9faut."},
{"appletioexception.loadclass.throw.interrupted", "chargement de classe interrompu : {0}"}, {"appletioexception.loadclass.throw.interrupted", "chargement de classe interrompu : {0}"},
{"appletioexception.loadclass.throw.notloaded", "classe non charg\u00e9e : {0}"}, {"appletioexception.loadclass.throw.notloaded", "classe non charg\u00E9e : {0}"},
{"appletclassloader.loadcode.verbose", "Ouverture d''un flux vers {0} pour obtenir {1}"}, {"appletclassloader.loadcode.verbose", "Ouverture du flux de donn\u00E9es dans {0} pour obtenir {1}"},
{"appletclassloader.filenotfound", "Fichier introuvable pendant la recherche de {0}"}, {"appletclassloader.filenotfound", "Fichier introuvable lors de la recherche de {0}"},
{"appletclassloader.fileformat", "Exception de format de fichier pendant le chargement de {0}"}, {"appletclassloader.fileformat", "Exception de format de fichier d\u00E9tect\u00E9e lors du chargement de : {0}"},
{"appletclassloader.fileioexception", "Exception d''E/S pendant le chargement de {0}"}, {"appletclassloader.fileioexception", "Exception d''E/S lors du chargement de : {0}"},
{"appletclassloader.fileexception", "exception {0} pendant le chargement de : {1}"}, {"appletclassloader.fileexception", "Exception {0} lors du chargement de : {1}"},
{"appletclassloader.filedeath", "{0} \u00e9limin\u00e9 pendant le chargement de {1}"}, {"appletclassloader.filedeath", "Fermeture de {0} lors du chargement de : {1}"},
{"appletclassloader.fileerror", "erreur {0} pendant le chargement de {1}"}, {"appletclassloader.fileerror", "Erreur {0} lors du chargement de : {1}"},
{"appletclassloader.findclass.verbose.findclass", "{0} rechercher la classe {1}"}, {"appletclassloader.findclass.verbose.findclass", "{0} : recherche de la classe {1}"},
{"appletclassloader.findclass.verbose.openstream", "Ouverture d''un flux vers {0} pour obtenir {1}"}, {"appletclassloader.findclass.verbose.openstream", "Ouverture du flux de donn\u00E9es dans {0} pour obtenir {1}"},
{"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource pour le nom {0}"}, {"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource pour le nom : {0}"},
{"appletclassloader.getresource.verbose.found", "Ressource {0} trouv\u00e9e en tant que ressource syst\u00e8me"}, {"appletclassloader.getresource.verbose.found", "Ressource {0} trouv\u00E9e en tant que ressource syst\u00E8me"},
{"appletclassloader.getresourceasstream.verbose", "Ressource {0} trouv\u00e9e en tant que ressource syst\u00e8me"}, {"appletclassloader.getresourceasstream.verbose", "Ressource {0} trouv\u00E9e en tant que ressource syst\u00E8me"},
{"appletpanel.runloader.err", "Param\u00e8tre d'objet ou de code !"}, {"appletpanel.runloader.err", "Param\u00E8tre d'objet ou de code."},
{"appletpanel.runloader.exception", "exception pendant la d\u00e9num\u00e9rotation de {0}"}, {"appletpanel.runloader.exception", "exception lors de la d\u00E9s\u00E9rialisation de {0}"},
{"appletpanel.destroyed", "Applet d\u00e9truit."}, {"appletpanel.destroyed", "Applet d\u00E9truite."},
{"appletpanel.loaded", "Applet charg\u00e9."}, {"appletpanel.loaded", "Applet charg\u00E9e."},
{"appletpanel.started", "Applet d\u00e9marr\u00e9."}, {"appletpanel.started", "Applet d\u00E9marr\u00E9e."},
{"appletpanel.inited", "Applet initialis\u00e9."}, {"appletpanel.inited", "Applet initialis\u00E9e."},
{"appletpanel.stopped", "Applet arr\u00eat\u00e9."}, {"appletpanel.stopped", "Applet arr\u00EAt\u00E9e."},
{"appletpanel.disposed", "Applet jet\u00e9."}, {"appletpanel.disposed", "Applet \u00E9limin\u00E9e."},
{"appletpanel.nocode", "Param\u00e8tre CODE manquant dans une \u00e9tiquette APPLET."}, {"appletpanel.nocode", "Param\u00E8tre CODE manquant dans la balise APPLET."},
{"appletpanel.notfound", "charger : classe {0} introuvable."}, {"appletpanel.notfound", "Charger : la classe {0} est introuvable."},
{"appletpanel.nocreate", "charger : {0} ne peut pas \u00eatre instanci\u00e9."}, {"appletpanel.nocreate", "Charger : impossible d''instantier {0}."},
{"appletpanel.noconstruct", "charger : {0} n''est pas public ou n''a pas de concepteur public."}, {"appletpanel.noconstruct", "Charger : l''\u00E9l\u00E9ment {0} n''est pas public ou ne poss\u00E8de aucun constructeur public."},
{"appletpanel.death", "\u00e9limin\u00e9"}, {"appletpanel.death", "arr\u00EAt\u00E9"},
{"appletpanel.exception", "exception : {0}."}, {"appletpanel.exception", "exception : {0}."},
{"appletpanel.exception2", "exception : {0} : {1}."}, {"appletpanel.exception2", "exception : {0} : {1}."},
{"appletpanel.error", "erreur : {0}."}, {"appletpanel.error", "erreur : {0}."},
{"appletpanel.error2", "erreur : {0} : {1}."}, {"appletpanel.error2", "erreur : {0} : {1}."},
{"appletpanel.notloaded", "Initialiser : applet non charg\u00e9."}, {"appletpanel.notloaded", "Initialiser : applet non charg\u00E9e."},
{"appletpanel.notinited", "D\u00e9marrer : applet non initialis\u00e9."}, {"appletpanel.notinited", "D\u00E9marrer : applet non initialis\u00E9e."},
{"appletpanel.notstarted", "Arr\u00eater : applet non d\u00e9marr\u00e9."}, {"appletpanel.notstarted", "Arr\u00EAter : applet non d\u00E9marr\u00E9e."},
{"appletpanel.notstopped", "D\u00e9truire : applet non arr\u00eat\u00e9."}, {"appletpanel.notstopped", "D\u00E9truire : applet non arr\u00EAt\u00E9e."},
{"appletpanel.notdestroyed", "Jeter : applet non d\u00e9truit."}, {"appletpanel.notdestroyed", "Eliminer : applet non d\u00E9truite."},
{"appletpanel.notdisposed", "Charger : applet non jet\u00e9."}, {"appletpanel.notdisposed", "Charger : applet non \u00E9limin\u00E9e."},
{"appletpanel.bail", "Interrompu : fin de bail."}, {"appletpanel.bail", "Interrompu : r\u00E9solution."},
{"appletpanel.filenotfound", "Fichier introuvable pendant la recherche de {0}"}, {"appletpanel.filenotfound", "Fichier introuvable lors de la recherche de {0}"},
{"appletpanel.fileformat", "Exception de format de fichier pendant le chargement de {0}"}, {"appletpanel.fileformat", "Exception de format de fichier d\u00E9tect\u00E9e lors du chargement de : {0}"},
{"appletpanel.fileioexception", "Exception d''E/S pendant le chargement de {0}"}, {"appletpanel.fileioexception", "Exception d''E/S lors du chargement de : {0}"},
{"appletpanel.fileexception", "exception {0} pendant le chargement de : {1}"}, {"appletpanel.fileexception", "Exception {0} lors du chargement de : {1}"},
{"appletpanel.filedeath", "{0} \u00e9limin\u00e9 pendant le chargement de {1}"}, {"appletpanel.filedeath", "Fermeture de {0} lors du chargement de : {1}"},
{"appletpanel.fileerror", "erreur {0} pendant le chargement de {1}"}, {"appletpanel.fileerror", "Erreur {0} lors du chargement de : {1}"},
{"appletpanel.badattribute.exception", "Analyse HTML\u00a0: valeur incorrecte pour l'attribut de largeur/hauteur"}, {"appletpanel.badattribute.exception", "Analyse HTML : valeur incorrecte pour l'attribut de largeur/hauteur"},
{"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream n\u00e9cessite un chargeur 'non null'"}, {"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream requiert un chargeur non NULL"},
{"appletprops.title", "Propri\u00e9t\u00e9s de AppletViewer"}, {"appletprops.title", "Propri\u00E9t\u00E9s d'AppletViewer"},
{"appletprops.label.http.server", "Serveur proxy http :"}, {"appletprops.label.http.server", "Serveur proxy HTTP :"},
{"appletprops.label.http.proxy", "Port proxy http :"}, {"appletprops.label.http.proxy", "Port proxy HTTP :"},
{"appletprops.label.network", "Acc\u00e8s r\u00e9seau :"}, {"appletprops.label.network", "Acc\u00E8s au r\u00E9seau :"},
{"appletprops.choice.network.item.none", "Aucun"}, {"appletprops.choice.network.item.none", "Aucun"},
{"appletprops.choice.network.item.applethost", "H\u00f4te applet"}, {"appletprops.choice.network.item.applethost", "H\u00F4te de l'applet"},
{"appletprops.choice.network.item.unrestricted", "Illimit\u00e9"}, {"appletprops.choice.network.item.unrestricted", "Sans restriction"},
{"appletprops.label.class", "Acc\u00e8s \u00e0 la classe :"}, {"appletprops.label.class", "Acc\u00E8s \u00E0 la classe :"},
{"appletprops.choice.class.item.restricted", "Limit\u00e9"}, {"appletprops.choice.class.item.restricted", "Avec restriction"},
{"appletprops.choice.class.item.unrestricted", "Illimit\u00e9"}, {"appletprops.choice.class.item.unrestricted", "Sans restriction"},
{"appletprops.label.unsignedapplet", "Autoriser les applets non sign\u00e9s"}, {"appletprops.label.unsignedapplet", "Autoriser les applets non sign\u00E9es :"},
{"appletprops.choice.unsignedapplet.no", "Non"}, {"appletprops.choice.unsignedapplet.no", "Non"},
{"appletprops.choice.unsignedapplet.yes", "Oui"}, {"appletprops.choice.unsignedapplet.yes", "Oui"},
{"appletprops.button.apply", "Appliquer"}, {"appletprops.button.apply", "Appliquer"},
{"appletprops.button.cancel", "Annuler"}, {"appletprops.button.cancel", "Annuler"},
{"appletprops.button.reset", "Restaurer"}, {"appletprops.button.reset", "R\u00E9initialiser"},
{"appletprops.apply.exception", "Echec de l''enregistrement des propri\u00e9t\u00e9s : {0}"}, {"appletprops.apply.exception", "Echec de l''enregistrement des propri\u00E9t\u00E9s : {0}"},
/* 4066432 */ /* 4066432 */
{"appletprops.title.invalidproxy", "Entr\u00e9e non valide"}, {"appletprops.title.invalidproxy", "Entr\u00E9e non valide"},
{"appletprops.label.invalidproxy", "Le num\u00e9ro de port du proxy doit \u00eatre un entier positif."}, {"appletprops.label.invalidproxy", "Le port proxy doit \u00EAtre un entier positif."},
{"appletprops.button.ok", "OK"}, {"appletprops.button.ok", "OK"},
/* end 4066432 */ /* end 4066432 */
{"appletprops.prop.store", "Propri\u00e9t\u00e9s AppletViewer propres \u00e0 l'utilisateur"}, {"appletprops.prop.store", "Propri\u00E9t\u00E9s utilisateur pour AppletViewer"},
{"appletsecurityexception.checkcreateclassloader", "Exception de s\u00e9curit\u00e9 : chargeur de classes"}, {"appletsecurityexception.checkcreateclassloader", "Exception de s\u00E9curit\u00E9 : chargeur de classe"},
{"appletsecurityexception.checkaccess.thread", "Exception de s\u00e9curit\u00e9 : unit\u00e9 d'ex\u00e9cution"}, {"appletsecurityexception.checkaccess.thread", "Exception de s\u00E9curit\u00E9 : thread"},
{"appletsecurityexception.checkaccess.threadgroup", "Exception de s\u00e9curit\u00e9 : groupe d''unit\u00e9s d''ex\u00e9cution : {0}"}, {"appletsecurityexception.checkaccess.threadgroup", "Exception de s\u00E9curit\u00E9 : groupe de threads : {0}"},
{"appletsecurityexception.checkexit", "Exception de s\u00e9curit\u00e9 : exit : {0}"}, {"appletsecurityexception.checkexit", "Exception de s\u00E9curit\u00E9 : sortie : {0}"},
{"appletsecurityexception.checkexec", "Exception de s\u00e9curit\u00e9 : exec : {0}"}, {"appletsecurityexception.checkexec", "Exception de s\u00E9curit\u00E9 : ex\u00E9cution : {0}"},
{"appletsecurityexception.checklink", "Exception de s\u00e9curit\u00e9 : link : {0}"}, {"appletsecurityexception.checklink", "Exception de s\u00E9curit\u00E9 : lien : {0}"},
{"appletsecurityexception.checkpropsaccess", "Exception de s\u00e9curit\u00e9 : propri\u00e9t\u00e9s"}, {"appletsecurityexception.checkpropsaccess", "Exception de s\u00E9curit\u00E9 : propri\u00E9t\u00E9s"},
{"appletsecurityexception.checkpropsaccess.key", "Exception de s\u00e9curit\u00e9 : acc\u00e8s aux propri\u00e9t\u00e9s {0}"}, {"appletsecurityexception.checkpropsaccess.key", "Exception de s\u00E9curit\u00E9 : acc\u00E8s aux propri\u00E9t\u00E9s {0}"},
{"appletsecurityexception.checkread.exception1", "Exception de s\u00e9curit\u00e9 : {0}, {1}"}, {"appletsecurityexception.checkread.exception1", "Exception de s\u00E9curit\u00E9 : {0}, {1}"},
{"appletsecurityexception.checkread.exception2", "Exception de s\u00e9curit\u00e9 : file.read : {0}"}, {"appletsecurityexception.checkread.exception2", "Exception de s\u00E9curit\u00E9 : file.read : {0}"},
{"appletsecurityexception.checkread", "Exception de s\u00e9curit\u00e9 : file.read : {0} == {1}"}, {"appletsecurityexception.checkread", "Exception de s\u00E9curit\u00E9 : file.read : {0} == {1}"},
{"appletsecurityexception.checkwrite.exception", "Exception de s\u00e9curit\u00e9 : {0}, {1}"}, {"appletsecurityexception.checkwrite.exception", "Exception de s\u00E9curit\u00E9 : {0}, {1}"},
{"appletsecurityexception.checkwrite", "Exception de s\u00e9curit\u00e9 : file.write : {0} == {1}"}, {"appletsecurityexception.checkwrite", "Exception de s\u00E9curit\u00E9 : file.write : {0} == {1}"},
{"appletsecurityexception.checkread.fd", "Exception de s\u00e9curit\u00e9 : fd.read"}, {"appletsecurityexception.checkread.fd", "Exception de s\u00E9curit\u00E9 : fd.read"},
{"appletsecurityexception.checkwrite.fd", "Exception de s\u00e9curit\u00e9 : fd.write"}, {"appletsecurityexception.checkwrite.fd", "Exception de s\u00E9curit\u00E9 : fd.write"},
{"appletsecurityexception.checklisten", "Exception de s\u00e9curit\u00e9 : socket.listen : {0}"}, {"appletsecurityexception.checklisten", "Exception de s\u00E9curit\u00E9 : socket.listen : {0}"},
{"appletsecurityexception.checkaccept", "Exception de s\u00e9curit\u00e9 : socket.accept : {0}:{1}"}, {"appletsecurityexception.checkaccept", "Exception de s\u00E9curit\u00E9 : socket.accept : {0} : {1}"},
{"appletsecurityexception.checkconnect.networknone", "Exception de s\u00e9curit\u00e9 : socket.connect : {0}->{1}"}, {"appletsecurityexception.checkconnect.networknone", "Exception de s\u00E9curit\u00E9 : socket.connect : {0} -> {1}"},
{"appletsecurityexception.checkconnect.networkhost1", "Exception de s\u00e9curit\u00e9 : \u00e9chec de la connexion \u00e0 {0} avec une origine de {1}."}, {"appletsecurityexception.checkconnect.networkhost1", "Exception de s\u00E9curit\u00E9 : impossible de se connecter \u00E0 {0} dont l''origine est {1}."},
{"appletsecurityexception.checkconnect.networkhost2", "Exception de s\u00e9curit\u00e9 : impossible de r\u00e9soudre l''adresse IP pour l''h\u00f4te {0} ou pour {1}. "}, {"appletsecurityexception.checkconnect.networkhost2", "Exception de s\u00E9curit\u00E9 : impossible de r\u00E9soudre l''adresse IP pour l''h\u00F4te {0} ou pour {1}. "},
{"appletsecurityexception.checkconnect.networkhost3", "Exception de s\u00e9curit\u00e9 : impossible de r\u00e9soudre l''adresse IP pour l''h\u00f4te {0}. Voir la propri\u00e9t\u00e9 trustProxy."}, {"appletsecurityexception.checkconnect.networkhost3", "Exception de s\u00E9curit\u00E9 : impossible de r\u00E9soudre l''adresse IP pour l''h\u00F4te {0}. Voir la propri\u00E9t\u00E9 trustProxy."},
{"appletsecurityexception.checkconnect", "Exception de s\u00e9curit\u00e9 : connect : {0}->{1}"}, {"appletsecurityexception.checkconnect", "Exception de s\u00E9curit\u00E9 : connexion : {0} -> {1}"},
{"appletsecurityexception.checkpackageaccess", "Exception de s\u00e9curit\u00e9 : impossible d''acc\u00e9der au module : {0}"}, {"appletsecurityexception.checkpackageaccess", "Exception de s\u00E9curit\u00E9 : impossible d''acc\u00E9der au package : {0}"},
{"appletsecurityexception.checkpackagedefinition", "Exception de s\u00e9curit\u00e9 : impossible de d\u00e9finir le module : {0}"}, {"appletsecurityexception.checkpackagedefinition", "Exception de s\u00E9curit\u00E9 : impossible de d\u00E9finir le package : {0}"},
{"appletsecurityexception.cannotsetfactory", "Exception de s\u00e9curit\u00e9 : impossible de d\u00e9finir les param\u00e8tres d'usine"}, {"appletsecurityexception.cannotsetfactory", "Exception de s\u00E9curit\u00E9 : impossible de d\u00E9finir la fabrique"},
{"appletsecurityexception.checkmemberaccess", "Exception de s\u00e9curit\u00e9 : v\u00e9rifier l'acc\u00e8s des membres"}, {"appletsecurityexception.checkmemberaccess", "Exception de s\u00E9curit\u00E9 : v\u00E9rifier l'acc\u00E8s des membres"},
{"appletsecurityexception.checkgetprintjob", "Exception de s\u00e9curit\u00e9 : getPrintJob"}, {"appletsecurityexception.checkgetprintjob", "Exception de s\u00E9curit\u00E9 : getPrintJob"},
{"appletsecurityexception.checksystemclipboardaccess", "Exception de s\u00e9curit\u00e9 : getSystemClipboard"}, {"appletsecurityexception.checksystemclipboardaccess", "Exception de s\u00E9curit\u00E9 : getSystemClipboard"},
{"appletsecurityexception.checkawteventqueueaccess", "Exception de s\u00e9curit\u00e9 : getEventQueue"}, {"appletsecurityexception.checkawteventqueueaccess", "Exception de s\u00E9curit\u00E9 : getEventQueue"},
{"appletsecurityexception.checksecurityaccess", "Exception de s\u00e9curit\u00e9 : op\u00e9ration de s\u00e9curit\u00e9 : {0}"}, {"appletsecurityexception.checksecurityaccess", "Exception de s\u00E9curit\u00E9 : op\u00E9ration de s\u00E9curit\u00E9 : {0}"},
{"appletsecurityexception.getsecuritycontext.unknown", "type de chargeur de classe inconnu ; impossible de v\u00e9rifier getContext"}, {"appletsecurityexception.getsecuritycontext.unknown", "type de chargeur de classe inconnu, impossible de rechercher getContext"},
{"appletsecurityexception.checkread.unknown", "type de chargeur de classe inconnu ; impossible de v\u00e9rifier la lecture de contr\u00f4le {0}"}, {"appletsecurityexception.checkread.unknown", "type de chargeur de classe inconnu, impossible de rechercher la v\u00E9rification de lecture {0}"},
{"appletsecurityexception.checkconnect.unknown", "type de chargeur de classe inconnu ; impossible de v\u00e9rifier la connexion de contr\u00f4le {0}"}, {"appletsecurityexception.checkconnect.unknown", "type de chargeur de classe inconnu, impossible de rechercher la v\u00E9rification de connexion"},
}; };
return temp;
} }
} }

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -29,173 +29,175 @@ import java.util.ListResourceBundle;
public class MsgAppletViewer_it extends ListResourceBundle { public class MsgAppletViewer_it extends ListResourceBundle {
public Object[][] getContents() { public Object[][] getContents() {
return new Object[][] { Object[][] temp = new Object[][] {
{"textframe.button.dismiss", "Annulla"}, {"textframe.button.dismiss", "Chiudi"},
{"appletviewer.tool.title", "Visualizzatore applet: {0}"}, {"appletviewer.tool.title", "Visualizzatore applet: {0}"},
{"appletviewer.menu.applet", "Applet"}, {"appletviewer.menu.applet", "Applet"},
{"appletviewer.menuitem.restart", "Riavvia"}, {"appletviewer.menuitem.restart", "Riavvia"},
{"appletviewer.menuitem.reload", "Ricarica"}, {"appletviewer.menuitem.reload", "Ricarica"},
{"appletviewer.menuitem.stop", "Arresta"}, {"appletviewer.menuitem.stop", "Arresta"},
{"appletviewer.menuitem.save", "Salva..."}, {"appletviewer.menuitem.save", "Salva..."},
{"appletviewer.menuitem.start", "Avvio"}, {"appletviewer.menuitem.start", "Avvia"},
{"appletviewer.menuitem.clone", "Clona..."}, {"appletviewer.menuitem.clone", "Copia..."},
{"appletviewer.menuitem.tag", "Tag..."}, {"appletviewer.menuitem.tag", "Tag..."},
{"appletviewer.menuitem.info", "Informazioni..."}, {"appletviewer.menuitem.info", "Informazioni..."},
{"appletviewer.menuitem.edit", "Modifica"}, {"appletviewer.menuitem.edit", "Modifica"},
{"appletviewer.menuitem.encoding", "Codifica caratteri"}, {"appletviewer.menuitem.encoding", "Codifica caratteri"},
{"appletviewer.menuitem.print", "Stampa..."}, {"appletviewer.menuitem.print", "Stampa..."},
{"appletviewer.menuitem.props", "Propriet\u00e0..."}, {"appletviewer.menuitem.props", "Propriet\u00E0..."},
{"appletviewer.menuitem.close", "Chiudi"}, {"appletviewer.menuitem.close", "Chiudi"},
{"appletviewer.menuitem.quit", "Esci"}, {"appletviewer.menuitem.quit", "Esci"},
{"appletviewer.label.hello", "Ciao..."}, {"appletviewer.label.hello", "Benvenuti..."},
{"appletviewer.status.start", "avvio dell'applet in corso..."}, {"appletviewer.status.start", "avvio applet in corso..."},
{"appletviewer.appletsave.filedialogtitle","Serializza applet in file"}, {"appletviewer.appletsave.filedialogtitle","Serializza applet in file"},
{"appletviewer.appletsave.err1", "serializzazione di {0} in {1}"}, {"appletviewer.appletsave.err1", "serializzazione di {0} in {1}"},
{"appletviewer.appletsave.err2", "in appletSave: {0}"}, {"appletviewer.appletsave.err2", "in appletSave: {0}"},
{"appletviewer.applettag", "Mostra tag"}, {"appletviewer.applettag", "Tag visualizzata"},
{"appletviewer.applettag.textframe", "Tag HTML dell'applet"}, {"appletviewer.applettag.textframe", "Applet tag HTML"},
{"appletviewer.appletinfo.applet", "-- nessuna informazione sull'applet --"}, {"appletviewer.appletinfo.applet", "-- nessuna informazione sull'applet --"},
{"appletviewer.appletinfo.param", "-- nessuna informazione sul parametro --"}, {"appletviewer.appletinfo.param", "-- nessuna informazione sul parametro --"},
{"appletviewer.appletinfo.textframe", "Informazioni sull'applet"}, {"appletviewer.appletinfo.textframe", "Informazioni applet"},
{"appletviewer.appletprint.fail", "Stampa non riuscita."}, {"appletviewer.appletprint.fail", "Stampa non riuscita."},
{"appletviewer.appletprint.finish", "Operazione di stampa completata."}, {"appletviewer.appletprint.finish", "Stampa completata."},
{"appletviewer.appletprint.cancel", "Stampa annullata."}, {"appletviewer.appletprint.cancel", "Stampa annullata."},
{"appletviewer.appletencoding", "Codifica caratteri: {0}"}, {"appletviewer.appletencoding", "Codifica caratteri: {0}"},
{"appletviewer.parse.warning.requiresname", "Avviso: il tag <param name=... value=...> richiede un attributo per il nome."}, {"appletviewer.parse.warning.requiresname", "Avvertenza: la tag <param name=... value=...> richiede un attributo name."},
{"appletviewer.parse.warning.paramoutside", "Avviso: il tag <param> non \u00e8 racchiuso tra <applet> ... </applet>."}, {"appletviewer.parse.warning.paramoutside", "Avvertenza: la tag <param> non rientra in <applet>... </applet>."},
{"appletviewer.parse.warning.applet.requirescode", "Avviso: <applet> il tag <applet> richiede un attributo di codice"}, {"appletviewer.parse.warning.applet.requirescode", "Avvertenza: la tag <applet> richiede un attributo code."},
{"appletviewer.parse.warning.applet.requiresheight", "Avviso: <applet> il tag <applet> richiede un attributo di altezza"}, {"appletviewer.parse.warning.applet.requiresheight", "Avvertenza: la tag <applet> richiede un attributo height."},
{"appletviewer.parse.warning.applet.requireswidth", "Avviso: il tag <applet> richiede un attributo di larghezza"}, {"appletviewer.parse.warning.applet.requireswidth", "Avvertenza: la tag <applet> richiede un attributo width."},
{"appletviewer.parse.warning.object.requirescode", "Avviso: il tag <object> richiede un attributo di codice"}, {"appletviewer.parse.warning.object.requirescode", "Avvertenza: la tag <object> richiede un attributo code."},
{"appletviewer.parse.warning.object.requiresheight", "Avviso: il tag <object> richiede un attributo di altezza"}, {"appletviewer.parse.warning.object.requiresheight", "Avvertenza: la tag <object> richiede un attributo height."},
{"appletviewer.parse.warning.object.requireswidth", "Avviso: il tag <object> richiede un attributo di larghezza"}, {"appletviewer.parse.warning.object.requireswidth", "Avvertenza: la tag <object> richiede un attributo width."},
{"appletviewer.parse.warning.embed.requirescode", "Avviso: il tag <embed> richiede un attributo di codice"}, {"appletviewer.parse.warning.embed.requirescode", "Avvertenza: la tag <embed> richiede un attributo code."},
{"appletviewer.parse.warning.embed.requiresheight", "Avviso: il tag <embed> richiede un attributo di altezza"}, {"appletviewer.parse.warning.embed.requiresheight", "Avvertenza: la tag <embed> richiede un attributo height."},
{"appletviewer.parse.warning.embed.requireswidth", "Avviso: il tag <embed> richiede un attributo di larghezza"}, {"appletviewer.parse.warning.embed.requireswidth", "Avvertenza: la tag <embed> richiede un attributo width."},
{"appletviewer.parse.warning.appnotLongersupported", "Avviso: il tag <app> non \u00e8 pi\u00f9 supportato, usare <applet> al suo posto:"}, {"appletviewer.parse.warning.appnotLongersupported", "Avvertenza: la tag <app> non \u00E8 pi\u00F9 supportata. Utilizzare <applet>:"},
{"appletviewer.usage", "Utilizzo: appletviewer <opzioni> url\n\ndove <opzioni> includono i valori:\n -debug Avvia l'applet viewer nel debugger Java\n -encoding <codifica> Specifica la codifica dei caratteri utilizzata dai file HTML\n -J<flag di runtime> Passa l'argomento all'interprete java\n\nL'opzione -J \u00e8 non standard ed \u00e8 soggetta a cambiamenti senza preavviso."}, {"appletviewer.usage", "Uso: appletviewer <opzioni> url(s)\n\ndove <opzioni> includono:\n -debug Avvia il visualizzatore applet nel debugger Java\n -encoding <codifica> Specifica la codifica dei caratteri utilizzata dai file HTML\n -J<flag runtime> Passa l'argomento all'interpreter Java\n\nL'opzione -J non \u00E8 standard ed \u00E8 soggetta a modifica senza preavviso."},
{"appletviewer.main.err.unsupportedopt", "Opzione non supportata: {0}"}, {"appletviewer.main.err.unsupportedopt", "Opzione non supportata: {0}"},
{"appletviewer.main.err.unrecognizedarg", "Argomento non riconosciuto {0}"}, {"appletviewer.main.err.unrecognizedarg", "Argomento non riconosciuto: {0}"},
{"appletviewer.main.err.dupoption", "Uso duplice dell''opzione: {0}"}, {"appletviewer.main.err.dupoption", "Uso duplicato dell''opzione: {0}"},
{"appletviewer.main.err.inputfile", "Nessun file di input specificato."}, {"appletviewer.main.err.inputfile", "Nessun file di input specificato."},
{"appletviewer.main.err.badurl", "URL errato: {0} ( {1} )"}, {"appletviewer.main.err.badurl", "URL non valido: {0} ( {1} )"},
{"appletviewer.main.err.io", "Eccezione di I/O durante la lettura: {0}"}, {"appletviewer.main.err.io", "Eccezione I/O durante la lettura di {0}"},
{"appletviewer.main.err.readablefile", "Verificare che {0} sia un file leggibile."}, {"appletviewer.main.err.readablefile", "Assicurarsi che {0} sia un file e che sia leggibile."},
{"appletviewer.main.err.correcturl", "Verificare che {0} sia l''URL corretto"}, {"appletviewer.main.err.correcturl", "{0} \u00E8 l''URL corretto?"},
{"appletviewer.main.prop.store", "Propriet\u00e0 specifiche dell'utente per AppletViewer"}, {"appletviewer.main.prop.store", "Propriet\u00E0 specifiche dell'utente per AppletViewer"},
{"appletviewer.main.err.prop.cantread", "Impossibile leggere il file di propriet\u00e0 dell''utente: {0}"}, {"appletviewer.main.err.prop.cantread", "Impossibile leggere il file delle propriet\u00E0 utente: {0}"},
{"appletviewer.main.err.prop.cantsave", "Impossibile salvare il file di propriet\u00e0 dell''utente: {0}"}, {"appletviewer.main.err.prop.cantsave", "Impossibile salvare il file delle propriet\u00E0 utente: {0}"},
{"appletviewer.main.warn.nosecmgr", "Avviso: Disabilitazione sicurezza in corso."}, {"appletviewer.main.warn.nosecmgr", "Avvertenza: la sicurezza verr\u00E0 disabilitata."},
{"appletviewer.main.debug.cantfinddebug", "Impossibile trovare il debugger!"}, {"appletviewer.main.debug.cantfinddebug", "Impossibile trovare il debugger."},
{"appletviewer.main.debug.cantfindmain", "Impossibile trovare il metodo principale del debugger"}, {"appletviewer.main.debug.cantfindmain", "Impossibile trovare il metodo principale nel debugger."},
{"appletviewer.main.debug.exceptionindebug", "Eccezione nel debugger"}, {"appletviewer.main.debug.exceptionindebug", "Eccezione nel debugger."},
{"appletviewer.main.debug.cantaccess", "Impossibile accedere al debugger"}, {"appletviewer.main.debug.cantaccess", "Impossibile accedere al debugger."},
{"appletviewer.main.nosecmgr", "Avviso: SecurityManager non installato!"}, {"appletviewer.main.nosecmgr", "Avvertenza: SecurityManager non installato."},
{"appletviewer.main.warning", "Avviso: nessun applet avviato. Verificare che i dati inseriti contengano un tag <applet>."}, {"appletviewer.main.warning", "Avvertenza: nessuna applet avviata. Assicurarsi che l'input contenga una tag <applet>."},
{"appletviewer.main.warn.prop.overwrite", "Avviso: si sta temporaneamente sovrascrivendo le propriet\u00e0 del sistema come richiesto dell''utente: tasto: {0} valore precedente: {1} nuovo valore: {2}"}, {"appletviewer.main.warn.prop.overwrite", "Avvertenza: la propriet\u00E0 di sistema verr\u00E0 sovrascritta temporaneamente su richiesta dell''utente. Chiave {0}, valore precedente {1}, nuovo valore {2}."},
{"appletviewer.main.warn.cantreadprops", "Avviso: Impossibile leggere il file di propriet\u00e0 di AppletViewer: {0} verranno utilizzati i valori di default."}, {"appletviewer.main.warn.cantreadprops", "Avvertenza: impossibile leggere il file delle propriet\u00E0 AppletViewer {0}. Verranno utilizzate le impostazioni predefinite."},
{"appletioexception.loadclass.throw.interrupted", "caricamento della classe interrotto: {0}"}, {"appletioexception.loadclass.throw.interrupted", "caricamento della classe interrotto: {0}"},
{"appletioexception.loadclass.throw.notloaded", "classe non caricata: {0}"}, {"appletioexception.loadclass.throw.notloaded", "classe non caricata: {0}"},
{"appletclassloader.loadcode.verbose", "Apertura del flusso su: {0} per ottenere {1}"}, {"appletclassloader.loadcode.verbose", "Apertura del flusso per {0} per recuperare {1}"},
{"appletclassloader.filenotfound", "File non trovato durante la ricerca di: {0}"}, {"appletclassloader.filenotfound", "File non trovato durante la ricerca di {0}"},
{"appletclassloader.fileformat", "Eccezione del formato di file durante il caricamento: {0}"}, {"appletclassloader.fileformat", "Eccezione di formato file durante il caricamento di {0}"},
{"appletclassloader.fileioexception", "Eccezione di I/O durante il caricamento: {0}"}, {"appletclassloader.fileioexception", "Eccezione I/O durante il caricamento di {0}"},
{"appletclassloader.fileexception", "Eccezione di {0} durante il caricamento: {1}"}, {"appletclassloader.fileexception", "Eccezione {0} durante il caricamento di {1}"},
{"appletclassloader.filedeath", "{0} terminato durante il caricamento di: {1}"}, {"appletclassloader.filedeath", "{0} terminato durante il caricamento di {1}"},
{"appletclassloader.fileerror", "Errore di {0} durante il caricamento: {1}"}, {"appletclassloader.fileerror", "Errore {0} durante il caricamento di {1}"},
{"appletclassloader.findclass.verbose.findclass", "{0} individuazione classe {1}"}, {"appletclassloader.findclass.verbose.findclass", "{0} trova classe {1}"},
{"appletclassloader.findclass.verbose.openstream", "Apertura del flusso su: {0} per ottenere {1}"}, {"appletclassloader.findclass.verbose.openstream", "Apertura del flusso per {0} per recuperare {1}"},
{"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource per il nome: {0}"}, {"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource per il nome: {0}"},
{"appletclassloader.getresource.verbose.found", "Risorsa {0} individuata come risorsa di sistema"}, {"appletclassloader.getresource.verbose.found", "\u00C8 stata trovata la risorsa {0} come risorsa di sistema"},
{"appletclassloader.getresourceasstream.verbose", "Risorsa {0} individuata come risorsa di sistema"}, {"appletclassloader.getresourceasstream.verbose", "\u00C8 stata trovata la risorsa {0} come risorsa di sistema"},
{"appletpanel.runloader.err", "Specificare un parametro per l'oggetto o per il codice"}, {"appletpanel.runloader.err", "Parametro di oggetto o di codice."},
{"appletpanel.runloader.exception", "eccezione durante la deserializzazione {0}"}, {"appletpanel.runloader.exception", "eccezione durante la deserializzazione di {0}"},
{"appletpanel.destroyed", "Applet distrutto."}, {"appletpanel.destroyed", "Applet rimossa."},
{"appletpanel.loaded", "Applet caricato."}, {"appletpanel.loaded", "Applet caricata."},
{"appletpanel.started", "Applet avviato."}, {"appletpanel.started", "Applet avviata."},
{"appletpanel.inited", "Applet inizializzato."}, {"appletpanel.inited", "Applet inizializzata."},
{"appletpanel.stopped", "Applet interrotto."}, {"appletpanel.stopped", "Applet arrestata."},
{"appletpanel.disposed", "Applet eliminato."}, {"appletpanel.disposed", "Applet eliminata."},
{"appletpanel.nocode", "Tag APPLET mancante dal parametro CODE."}, {"appletpanel.nocode", "Nella tag APPLET manca il parametro CODE."},
{"appletpanel.notfound", "caricamento: classe {0} non trovata."}, {"appletpanel.notfound", "caricamento: classe {0} non trovata."},
{"appletpanel.nocreate", "caricamento: impossibile definire istanze per {0}."}, {"appletpanel.nocreate", "caricamento: impossibile creare un''istanza di {0}."},
{"appletpanel.noconstruct", "caricamento: {0} non \u00e8 pubblico o non \u00e8 associato a un costruttore pubblico."}, {"appletpanel.noconstruct", "caricamento: {0} non \u00E8 pubblico o non ha un costruttore pubblico."},
{"appletpanel.death", "terminato"}, {"appletpanel.death", "terminato"},
{"appletpanel.exception", "eccezione: {0}."}, {"appletpanel.exception", "eccezione: {0}"},
{"appletpanel.exception2", "eccezione: {0}: {1}."}, {"appletpanel.exception2", "eccezione: {0}: {1}."},
{"appletpanel.error", "errore: {0}."}, {"appletpanel.error", "errore: {0}."},
{"appletpanel.error2", "errore: {0}: {1}."}, {"appletpanel.error2", "errore: {0}: {1}."},
{"appletpanel.notloaded", "Inizializzazione: applet non caricato."}, {"appletpanel.notloaded", "Inizializzazione: applet non caricata."},
{"appletpanel.notinited", "Avvio: applet non inizializzato."}, {"appletpanel.notinited", "Avvio: applet non inizializzata."},
{"appletpanel.notstarted", "Arresto: applet non avviato."}, {"appletpanel.notstarted", "Arresto: applet non avviata."},
{"appletpanel.notstopped", "Distruzione: applet non arrestato."}, {"appletpanel.notstopped", "Rimozione: applet non arrestata."},
{"appletpanel.notdestroyed", "Eliminazione: applet non distrutto."}, {"appletpanel.notdestroyed", "Eliminazione: applet non rimossa."},
{"appletpanel.notdisposed", "Caricamento: applet non eliminato."}, {"appletpanel.notdisposed", "Caricamento: applet non eliminata."},
{"appletpanel.bail", "Interruzione: uscita in corso."}, {"appletpanel.bail", "Interrotto: chiusura."},
{"appletpanel.filenotfound", "File non trovato durante la ricerca di: {0}"}, {"appletpanel.filenotfound", "File non trovato durante la ricerca di {0}"},
{"appletpanel.fileformat", "Eccezione del formato di file durante il caricamento: {0}"}, {"appletpanel.fileformat", "Eccezione di formato file durante il caricamento di {0}"},
{"appletpanel.fileioexception", "Eccezione di I/O durante il caricamento: {0}"}, {"appletpanel.fileioexception", "Eccezione I/O durante il caricamento di {0}"},
{"appletpanel.fileexception", "Eccezione di {0} durante il caricamento: {1}"}, {"appletpanel.fileexception", "Eccezione {0} durante il caricamento di {1}"},
{"appletpanel.filedeath", "{0} terminato durante il caricamento di: {1}"}, {"appletpanel.filedeath", "{0} terminato durante il caricamento di {1}"},
{"appletpanel.fileerror", "Errore di {0} durante il caricamento: {1}"}, {"appletpanel.fileerror", "Errore {0} durante il caricamento di {1}"},
{"appletpanel.badattribute.exception", "Analisi HTML: valore specificato per l'attributo larghezza/altezza non corretto"}, {"appletpanel.badattribute.exception", "Analisi HTML: valore errato per l'attributo width/height"},
{"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream richiede una funzione di caricamento non nulla"}, {"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream richiede un loader non nullo"},
{"appletprops.title", "Propriet\u00e0 di AppletViewer"}, {"appletprops.title", "Propriet\u00E0 AppletViewer"},
{"appletprops.label.http.server", "Server proxy Http:"}, {"appletprops.label.http.server", "Server proxy http:"},
{"appletprops.label.http.proxy", "Porta proxy Http:"}, {"appletprops.label.http.proxy", "Porta proxy http:"},
{"appletprops.label.network", "Accesso alla rete:"}, {"appletprops.label.network", "Accesso alla rete:"},
{"appletprops.choice.network.item.none", "Nessuno"}, {"appletprops.choice.network.item.none", "Nessuno"},
{"appletprops.choice.network.item.applethost", "Host applet"}, {"appletprops.choice.network.item.applethost", "Host applet"},
{"appletprops.choice.network.item.unrestricted", "Illimitato"}, {"appletprops.choice.network.item.unrestricted", "Non limitato"},
{"appletprops.label.class", "Accesso alle classi:"}, {"appletprops.label.class", "Accesso alla classe:"},
{"appletprops.choice.class.item.restricted", "Limitato"}, {"appletprops.choice.class.item.restricted", "Limitato"},
{"appletprops.choice.class.item.unrestricted", "Illimitato"}, {"appletprops.choice.class.item.unrestricted", "Non limitato"},
{"appletprops.label.unsignedapplet", "Consenti applet non firmati:"}, {"appletprops.label.unsignedapplet", "Consenti applet senza firma:"},
{"appletprops.choice.unsignedapplet.no", "No"}, {"appletprops.choice.unsignedapplet.no", "No"},
{"appletprops.choice.unsignedapplet.yes", "S\u00ec"}, {"appletprops.choice.unsignedapplet.yes", "S\u00EC"},
{"appletprops.button.apply", "Applica"}, {"appletprops.button.apply", "Applica"},
{"appletprops.button.cancel", "Annulla"}, {"appletprops.button.cancel", "Annulla"},
{"appletprops.button.reset", "Reimposta"}, {"appletprops.button.reset", "Reimposta"},
{"appletprops.apply.exception", "Salvataggio delle propriet\u00e0 non riuscito: {0}"}, {"appletprops.apply.exception", "Salvataggio delle propriet\u00E0 non riuscito: {0}"},
/* 4066432 */ /* 4066432 */
{"appletprops.title.invalidproxy", "Voce non valida"}, {"appletprops.title.invalidproxy", "Voce non valida"},
{"appletprops.label.invalidproxy", "La porta Proxy deve essere un valore intero positivo"}, {"appletprops.label.invalidproxy", "La porta del proxy deve essere un valore intero positivo."},
{"appletprops.button.ok", "OK"}, {"appletprops.button.ok", "OK"},
/* end 4066432 */ /* end 4066432 */
{"appletprops.prop.store", "Propriet\u00e0 specifiche dell'utente per AppletViewer"}, {"appletprops.prop.store", "Propriet\u00E0 specifiche dell'utente per AppletViewer"},
{"appletsecurityexception.checkcreateclassloader", "Eccezione di protezione: classloader"}, {"appletsecurityexception.checkcreateclassloader", "Eccezione di sicurezza: classloader"},
{"appletsecurityexception.checkaccess.thread", "Eccezione di protezione: thread"}, {"appletsecurityexception.checkaccess.thread", "Eccezione di sicurezza: thread"},
{"appletsecurityexception.checkaccess.threadgroup", "Eccezione di protezione: threadgroup: {0}"}, {"appletsecurityexception.checkaccess.threadgroup", "Eccezione di sicurezza: threadgroup: {0}"},
{"appletsecurityexception.checkexit", "Eccezione di protezione: exit: {0}"}, {"appletsecurityexception.checkexit", "Eccezione di sicurezza: exit: {0}"},
{"appletsecurityexception.checkexec", "Eccezione di protezione: exec: {0}"}, {"appletsecurityexception.checkexec", "Eccezione di sicurezza: exec: {0}"},
{"appletsecurityexception.checklink", "Eccezione di protezione: link: {0}"}, {"appletsecurityexception.checklink", "Eccezione di sicurezza: link: {0}"},
{"appletsecurityexception.checkpropsaccess", "Eccezione di protezione: properties"}, {"appletsecurityexception.checkpropsaccess", "Eccezione di sicurezza: properties"},
{"appletsecurityexception.checkpropsaccess.key", "Eccezione di protezione: properties access {0}"}, {"appletsecurityexception.checkpropsaccess.key", "Eccezione di sicurezza: properties access {0}"},
{"appletsecurityexception.checkread.exception1", "Eccezione di protezione: {0}, {1}"}, {"appletsecurityexception.checkread.exception1", "Eccezione di sicurezza: {0}, {1}"},
{"appletsecurityexception.checkread.exception2", "Eccezione di protezione: file.read: {0}"}, {"appletsecurityexception.checkread.exception2", "Eccezione di sicurezza: file.read: {0}"},
{"appletsecurityexception.checkread", "Eccezione di protezione: file.read: {0} == {1}"}, {"appletsecurityexception.checkread", "Eccezione di sicurezza: file.read: {0} == {1}"},
{"appletsecurityexception.checkwrite.exception", "Eccezione di protezione: {0}, {1}"}, {"appletsecurityexception.checkwrite.exception", "Eccezione di sicurezza: {0}, {1}"},
{"appletsecurityexception.checkwrite", "Eccezione di protezione: file.write: {0} == {1}"}, {"appletsecurityexception.checkwrite", "Eccezione di sicurezza: file.write: {0} == {1}"},
{"appletsecurityexception.checkread.fd", "Eccezione di protezione: fd.read"}, {"appletsecurityexception.checkread.fd", "Eccezione di sicurezza: fd.read"},
{"appletsecurityexception.checkwrite.fd", "Eccezione di protezione: fd.write"}, {"appletsecurityexception.checkwrite.fd", "Eccezione di sicurezza: fd.write"},
{"appletsecurityexception.checklisten", "Eccezione di protezione: socket.listen: {0}"}, {"appletsecurityexception.checklisten", "Eccezione di sicurezza: socket.listen: {0}"},
{"appletsecurityexception.checkaccept", "Eccezione di protezione: socket.accept: {0}:{1}"}, {"appletsecurityexception.checkaccept", "Eccezione di sicurezza: socket.accept: {0}:{1}"},
{"appletsecurityexception.checkconnect.networknone", "Eccezione di protezione: socket.connect: {0}->{1}"}, {"appletsecurityexception.checkconnect.networknone", "Eccezione di sicurezza: socket.connect: {0}->{1}"},
{"appletsecurityexception.checkconnect.networkhost1", "Eccezione di protezione: impossibile connettersi a {0} con origine {1}."}, {"appletsecurityexception.checkconnect.networkhost1", "Eccezione di sicurezza: impossibile connettersi a {0} con origine da {1}."},
{"appletsecurityexception.checkconnect.networkhost2", "Eccezione di protezione: impossibile risolvere l''indirizzo IP per l''host {0} o per {1}. "}, {"appletsecurityexception.checkconnect.networkhost2", "Eccezione di sicurezza: impossibile risolvere l''IP per l''host {0} o per {1}. "},
{"appletsecurityexception.checkconnect.networkhost3", "Eccezione di protezione: impossibile risolvere l''indirizzo IP per l''host {0}. Vedere la propriet\u00e0 trustProxy."}, {"appletsecurityexception.checkconnect.networkhost3", "Eccezione di sicurezza: impossibile non risolvere l''IP per l''host {0}. Vedere la propriet\u00E0 trustProxy."},
{"appletsecurityexception.checkconnect", "Eccezione di protezione: connessione: {0}->{1}"}, {"appletsecurityexception.checkconnect", "Eccezione di sicurezza: connect: {0}->{1}"},
{"appletsecurityexception.checkpackageaccess", "Eccezione di protezione: impossibile accedere al package: {0}"}, {"appletsecurityexception.checkpackageaccess", "Eccezione di sicurezza: impossibile accedere al package {0}"},
{"appletsecurityexception.checkpackagedefinition", "Eccezione di protezione: impossibile definire il package: {0}"}, {"appletsecurityexception.checkpackagedefinition", "Eccezione di sicurezza: impossibile definire il package {0}"},
{"appletsecurityexception.cannotsetfactory", "Eccezione di protezione: impossibile impostare i valori predefiniti"}, {"appletsecurityexception.cannotsetfactory", "Eccezione di sicurezza: impossibile impostare il factory"},
{"appletsecurityexception.checkmemberaccess", "Eccezione di protezione: controllare l'accesso del membro"}, {"appletsecurityexception.checkmemberaccess", "Eccezione di sicurezza: controllare l'accesso dei membri"},
{"appletsecurityexception.checkgetprintjob", "Eccezione di protezione: getPrintJob"}, {"appletsecurityexception.checkgetprintjob", "Eccezione di sicurezza: getPrintJob"},
{"appletsecurityexception.checksystemclipboardaccess", "Eccezione di protezione: getSystemClipboard"}, {"appletsecurityexception.checksystemclipboardaccess", "Eccezione di sicurezza: getSystemClipboard"},
{"appletsecurityexception.checkawteventqueueaccess", "Eccezione di protezione: getEventQueue"}, {"appletsecurityexception.checkawteventqueueaccess", "Eccezione di sicurezza: getEventQueue"},
{"appletsecurityexception.checksecurityaccess", "Eccezione di protezione: operazione di protezione: {0}"}, {"appletsecurityexception.checksecurityaccess", "Eccezione di sicurezza: operazione di sicurezza {0}"},
{"appletsecurityexception.getsecuritycontext.unknown", "tipo di funzione di caricamento della classe sconosciuto, impossibile verificare la presenza di getContext"}, {"appletsecurityexception.getsecuritycontext.unknown", "tipo di loader della classe sconosciuto. Impossibile verificare la presenza di getContext."},
{"appletsecurityexception.checkread.unknown", "tipo di funzione di caricamento della classe sconosciuto, impossibile verificare la lettura di {0}"}, {"appletsecurityexception.checkread.unknown", "tipo di loader della classe sconosciuto. Impossibile verificare la presenza della lettura di controllo {0}."},
{"appletsecurityexception.checkconnect.unknown", "tipo di funzione di caricamento della classe sconosciuto, impossibile verificare la connessione"}, {"appletsecurityexception.checkconnect.unknown", "tipo di loader della classe sconosciuto. Impossibile verificare la presenza della connessione di controllo."},
}; };
return temp;
} }
} }

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1998, 2005, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -29,173 +29,175 @@ import java.util.ListResourceBundle;
public class MsgAppletViewer_ja extends ListResourceBundle { public class MsgAppletViewer_ja extends ListResourceBundle {
public Object[][] getContents() { public Object[][] getContents() {
return new Object[][] { Object[][] temp = new Object[][] {
{"textframe.button.dismiss", "\u9589\u3058\u308b"}, {"textframe.button.dismiss", "\u53D6\u6D88"},
{"appletviewer.tool.title", "\u30a2\u30d7\u30ec\u30c3\u30c8\u30d3\u30e5\u30fc\u30a2: {0}"}, {"appletviewer.tool.title", "\u30A2\u30D7\u30EC\u30C3\u30C8\u30FB\u30D3\u30E5\u30FC\u30A2: {0}"},
{"appletviewer.menu.applet", "\u30a2\u30d7\u30ec\u30c3\u30c8"}, {"appletviewer.menu.applet", "\u30A2\u30D7\u30EC\u30C3\u30C8"},
{"appletviewer.menuitem.restart", "\u518d\u8d77\u52d5"}, {"appletviewer.menuitem.restart", "\u518D\u8D77\u52D5"},
{"appletviewer.menuitem.reload", "\u518d\u8aad\u8fbc\u307f"}, {"appletviewer.menuitem.reload", "\u518D\u30ED\u30FC\u30C9"},
{"appletviewer.menuitem.stop", "\u4e2d\u6b62"}, {"appletviewer.menuitem.stop", "\u505C\u6B62"},
{"appletviewer.menuitem.save", "\u4fdd\u5b58..."}, {"appletviewer.menuitem.save", "\u4FDD\u5B58..."},
{"appletviewer.menuitem.start", "\u958b\u59cb"}, {"appletviewer.menuitem.start", "\u958B\u59CB"},
{"appletviewer.menuitem.clone", "\u8907\u88fd..."}, {"appletviewer.menuitem.clone", "\u30AF\u30ED\u30FC\u30F3\u306E\u4F5C\u6210..."},
{"appletviewer.menuitem.tag", "\u30bf\u30b0..."}, {"appletviewer.menuitem.tag", "\u30BF\u30B0..."},
{"appletviewer.menuitem.info", "\u60c5\u5831..."}, {"appletviewer.menuitem.info", "\u60C5\u5831..."},
{"appletviewer.menuitem.edit", "\u7de8\u96c6"}, {"appletviewer.menuitem.edit", "\u7DE8\u96C6"},
{"appletviewer.menuitem.encoding", "\u6587\u5b57\u30b3\u30fc\u30c9"}, {"appletviewer.menuitem.encoding", "\u6587\u5B57\u30A8\u30F3\u30B3\u30FC\u30C7\u30A3\u30F3\u30B0"},
{"appletviewer.menuitem.print", "\u5370\u5237..."}, {"appletviewer.menuitem.print", "\u5370\u5237..."},
{"appletviewer.menuitem.props", "\u30d7\u30ed\u30d1\u30c6\u30a3..."}, {"appletviewer.menuitem.props", "\u30D7\u30ED\u30D1\u30C6\u30A3..."},
{"appletviewer.menuitem.close", "\u9589\u3058\u308b"}, {"appletviewer.menuitem.close", "\u9589\u3058\u308B"},
{"appletviewer.menuitem.quit", "\u7d42\u4e86"}, {"appletviewer.menuitem.quit", "\u7D42\u4E86"},
{"appletviewer.label.hello", "Hello..."}, {"appletviewer.label.hello", "Hello..."},
{"appletviewer.status.start", "\u30a2\u30d7\u30ec\u30c3\u30c8\u3092\u958b\u59cb\u3057\u307e\u3059\u3002"}, {"appletviewer.status.start", "\u30A2\u30D7\u30EC\u30C3\u30C8\u3092\u958B\u59CB\u3057\u3066\u3044\u307E\u3059..."},
{"appletviewer.appletsave.filedialogtitle","\u30a2\u30d7\u30ec\u30c3\u30c8\u3092\u76f4\u5217\u5316\u3057\u3066\u4fdd\u5b58"}, {"appletviewer.appletsave.filedialogtitle","\u30A2\u30D7\u30EC\u30C3\u30C8\u3092\u30D5\u30A1\u30A4\u30EB\u306B\u30B7\u30EA\u30A2\u30E9\u30A4\u30BA"},
{"appletviewer.appletsave.err1", "{0} \u3092 {1} \u306b\u76f4\u5217\u5316\u3057\u3066\u66f8\u304d\u8fbc\u307f\u307e\u3059\u3002"}, {"appletviewer.appletsave.err1", "{0}\u3092{1}\u306B\u30B7\u30EA\u30A2\u30E9\u30A4\u30BA"},
{"appletviewer.appletsave.err2", "\u30a2\u30d7\u30ec\u30c3\u30c8\u4fdd\u5b58: {0}"}, {"appletviewer.appletsave.err2", "appletSave\u5185: {0}"},
{"appletviewer.applettag", "\u30bf\u30b0\u8868\u793a"}, {"appletviewer.applettag", "\u30BF\u30B0\u306E\u8868\u793A"},
{"appletviewer.applettag.textframe", "\u30a2\u30d7\u30ec\u30c3\u30c8\u306e HTML \u30bf\u30b0"}, {"appletviewer.applettag.textframe", "\u30A2\u30D7\u30EC\u30C3\u30C8HTML\u30BF\u30B0"},
{"appletviewer.appletinfo.applet", "-- \u30a2\u30d7\u30ec\u30c3\u30c8\u60c5\u5831\u306a\u3057 --"}, {"appletviewer.appletinfo.applet", "-- \u30A2\u30D7\u30EC\u30C3\u30C8\u60C5\u5831\u306A\u3057 --"},
{"appletviewer.appletinfo.param", "-- \u30d1\u30e9\u30e1\u30fc\u30bf\u60c5\u5831\u306a\u3057 --"}, {"appletviewer.appletinfo.param", "-- \u30D1\u30E9\u30E1\u30FC\u30BF\u60C5\u5831\u306A\u3057 --"},
{"appletviewer.appletinfo.textframe", "\u30a2\u30d7\u30ec\u30c3\u30c8\u60c5\u5831"}, {"appletviewer.appletinfo.textframe", "\u30A2\u30D7\u30EC\u30C3\u30C8\u60C5\u5831"},
{"appletviewer.appletprint.fail", "\u5370\u5237\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002"}, {"appletviewer.appletprint.fail", "\u5370\u5237\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002"},
{"appletviewer.appletprint.finish", "\u5370\u5237\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002"}, {"appletviewer.appletprint.finish", "\u5370\u5237\u304C\u5B8C\u4E86\u3057\u307E\u3057\u305F\u3002"},
{"appletviewer.appletprint.cancel", "\u5370\u5237\u306f\u53d6\u308a\u6d88\u3055\u308c\u307e\u3057\u305f\u3002"}, {"appletviewer.appletprint.cancel", "\u5370\u5237\u304C\u4E2D\u6B62\u3055\u308C\u307E\u3057\u305F\u3002"},
{"appletviewer.appletencoding", "\u6587\u5b57\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0: {0}"}, {"appletviewer.appletencoding", "\u6587\u5B57\u30A8\u30F3\u30B3\u30FC\u30C7\u30A3\u30F3\u30B0: {0}"},
{"appletviewer.parse.warning.requiresname", "\u8b66\u544a: <param name=... value=...> \u30bf\u30b0\u306b name \u5c5e\u6027\u304c\u3042\u308a\u307e\u305b\u3093\u3002"}, {"appletviewer.parse.warning.requiresname", "\u8B66\u544A: <param name=... value=...>\u30BF\u30B0\u306Bname\u5C5E\u6027\u304C\u5FC5\u8981\u3067\u3059\u3002"},
{"appletviewer.parse.warning.paramoutside", "\u8b66\u544a: <param> \u30bf\u30b0\u304c <applet> ... </applet> \u306e\u5916\u306b\u3042\u308a\u307e\u3059\u3002"}, {"appletviewer.parse.warning.paramoutside", "\u8B66\u544A: <param>\u30BF\u30B0\u304C<applet> ... </applet>\u306E\u5916\u5074\u3067\u3059\u3002"},
{"appletviewer.parse.warning.applet.requirescode", "\u8b66\u544a: <applet> \u30bf\u30b0\u306b code \u5c5e\u6027\u304c\u3042\u308a\u307e\u305b\u3093\u3002"}, {"appletviewer.parse.warning.applet.requirescode", "\u8B66\u544A: <applet>\u30BF\u30B0\u306Bcode\u5C5E\u6027\u304C\u5FC5\u8981\u3067\u3059\u3002"},
{"appletviewer.parse.warning.applet.requiresheight", "\u8b66\u544a: <applet> \u30bf\u30b0\u306b height \u5c5e\u6027\u304c\u3042\u308a\u307e\u305b\u3093\u3002"}, {"appletviewer.parse.warning.applet.requiresheight", "\u8B66\u544A: <applet>\u30BF\u30B0\u306Bheight\u5C5E\u6027\u304C\u5FC5\u8981\u3067\u3059\u3002"},
{"appletviewer.parse.warning.applet.requireswidth", "\u8b66\u544a: <applet> \u30bf\u30b0\u306b width \u5c5e\u6027\u304c\u3042\u308a\u307e\u305b\u3093\u3002"}, {"appletviewer.parse.warning.applet.requireswidth", "\u8B66\u544A: <applet>\u30BF\u30B0\u306Bwidth\u5C5E\u6027\u304C\u5FC5\u8981\u3067\u3059\u3002"},
{"appletviewer.parse.warning.object.requirescode", "\u8b66\u544a: <object> \u30bf\u30b0\u306b code \u5c5e\u6027\u304c\u3042\u308a\u307e\u305b\u3093\u3002"}, {"appletviewer.parse.warning.object.requirescode", "\u8B66\u544A: <object>\u30BF\u30B0\u306Bcode\u5C5E\u6027\u304C\u5FC5\u8981\u3067\u3059\u3002"},
{"appletviewer.parse.warning.object.requiresheight", "\u8b66\u544a: <object> \u30bf\u30b0\u306b height \u5c5e\u6027\u304c\u3042\u308a\u307e\u305b\u3093\u3002"}, {"appletviewer.parse.warning.object.requiresheight", "\u8B66\u544A: <object>\u30BF\u30B0\u306Bheight\u5C5E\u6027\u304C\u5FC5\u8981\u3067\u3059\u3002"},
{"appletviewer.parse.warning.object.requireswidth", "\u8b66\u544a: <object> \u30bf\u30b0\u306b width \u5c5e\u6027\u304c\u3042\u308a\u307e\u305b\u3093\u3002"}, {"appletviewer.parse.warning.object.requireswidth", "\u8B66\u544A: <object>\u30BF\u30B0\u306Bwidth\u5C5E\u6027\u304C\u5FC5\u8981\u3067\u3059\u3002"},
{"appletviewer.parse.warning.embed.requirescode", "\u8b66\u544a: <embed> \u30bf\u30b0\u306b code \u5c5e\u6027\u304c\u3042\u308a\u307e\u305b\u3093\u3002"}, {"appletviewer.parse.warning.embed.requirescode", "\u8B66\u544A: <embed>\u30BF\u30B0\u306Bcode\u5C5E\u6027\u304C\u5FC5\u8981\u3067\u3059\u3002"},
{"appletviewer.parse.warning.embed.requiresheight", "\u8b66\u544a: <embed> \u30bf\u30b0\u306b height \u5c5e\u6027\u304c\u3042\u308a\u307e\u305b\u3093\u3002"}, {"appletviewer.parse.warning.embed.requiresheight", "\u8B66\u544A: <embed>\u30BF\u30B0\u306Bheight\u5C5E\u6027\u304C\u5FC5\u8981\u3067\u3059\u3002"},
{"appletviewer.parse.warning.embed.requireswidth", "\u8b66\u544a: <embed> \u30bf\u30b0\u306b width \u5c5e\u6027\u304c\u3042\u308a\u307e\u305b\u3093\u3002"}, {"appletviewer.parse.warning.embed.requireswidth", "\u8B66\u544A: <embed>\u30BF\u30B0\u306Bwidth\u5C5E\u6027\u304C\u5FC5\u8981\u3067\u3059\u3002"},
{"appletviewer.parse.warning.appnotLongersupported", "\u8b66\u544a: <app> \u30bf\u30b0\u306f\u73fe\u5728\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u4ee3\u308f\u308a\u306b <applet> \u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002"}, {"appletviewer.parse.warning.appnotLongersupported", "\u8B66\u544A: <app>\u30BF\u30B0\u306F\u73FE\u5728\u306F\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002\u304B\u308F\u308A\u306B<applet>\u3092\u4F7F\u7528\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},
{"appletviewer.usage", "\u4f7f\u3044\u65b9: appletviewer <options> url(s)\n\n<options> \u306b\u306f\u6b21\u306e\u3082\u306e\u304c\u3042\u308a\u307e\u3059\u3002\n -debug Java \u30c7\u30d0\u30c3\u30ac\u3067\u30a2\u30d7\u30ec\u30c3\u30c8\u30d3\u30e5\u30fc\u30a2\u3092\u8d77\u52d5\u3059\u308b\n -encoding <encoding> HTML \u30d5\u30a1\u30a4\u30eb\u3067\u4f7f\u7528\u3055\u308c\u308b\u6587\u5b57\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3092\u6307\u5b9a\u3059\u308b\n -J<runtime flag> java \u30a4\u30f3\u30bf\u30d7\u30ea\u30bf\u306b\u5f15\u6570\u3092\u6e21\u3059\n\n-J \u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u6a19\u6e96\u3067\u306f\u306a\u304f\u3001\u4e88\u544a\u306a\u3057\u306b\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002"}, {"appletviewer.usage", "\u4F7F\u7528\u65B9\u6CD5: appletviewer <options> url(s)\n\n<options>\u306B\u306F\u6B21\u306E\u3082\u306E\u304C\u3042\u308A\u307E\u3059:\n -debug Java\u30C7\u30D0\u30C3\u30AC\u3067\u30A2\u30D7\u30EC\u30C3\u30C8\u30FB\u30D3\u30E5\u30FC\u30A2\u3092\u958B\u59CB\u3059\u308B\n -encoding <encoding> HTML\u30D5\u30A1\u30A4\u30EB\u306B\u3088\u3063\u3066\u4F7F\u7528\u3055\u308C\u308B\u6587\u5B57\u30A8\u30F3\u30B3\u30FC\u30C7\u30A3\u30F3\u30B0\u3092\u6307\u5B9A\u3059\u308B\n -J<runtime flag> \u5F15\u6570\u3092Java\u30A4\u30F3\u30BF\u30D7\u30EA\u30BF\u306B\u6E21\u3059\n\n-J\u306F\u975E\u6A19\u6E96\u30AA\u30D7\u30B7\u30E7\u30F3\u3067\u3042\u308A\u3001\u4E88\u544A\u306A\u3057\u306B\u5909\u66F4\u3055\u308C\u308B\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059\u3002"},
{"appletviewer.main.err.unsupportedopt", "\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u306a\u3044\u30aa\u30d7\u30b7\u30e7\u30f3: {0}"}, {"appletviewer.main.err.unsupportedopt", "\u30B5\u30DD\u30FC\u30C8\u3055\u308C\u3066\u3044\u306A\u3044\u30AA\u30D7\u30B7\u30E7\u30F3: {0}"},
{"appletviewer.main.err.unrecognizedarg", "\u8a8d\u8b58\u3055\u308c\u306a\u3044\u5f15\u6570: {0}"}, {"appletviewer.main.err.unrecognizedarg", "\u8A8D\u8B58\u3055\u308C\u306A\u3044\u5F15\u6570: {0}"},
{"appletviewer.main.err.dupoption", "\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u91cd\u8907\u3057\u3066\u4f7f\u7528: {0}"}, {"appletviewer.main.err.dupoption", "\u30AA\u30D7\u30B7\u30E7\u30F3\u306E\u4F7F\u7528\u304C\u91CD\u8907\u3057\u3066\u3044\u307E\u3059: {0}"},
{"appletviewer.main.err.inputfile", "\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"}, {"appletviewer.main.err.inputfile", "\u5165\u529B\u30D5\u30A1\u30A4\u30EB\u304C\u6307\u5B9A\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002"},
{"appletviewer.main.err.badurl", "\u4e0d\u6b63\u306a URL: {0} ( {1} )"}, {"appletviewer.main.err.badurl", "\u4E0D\u6B63\u306AURL: {0} ( {1} )"},
{"appletviewer.main.err.io", "{0} \u8aad\u307f\u8fbc\u307f\u4e2d\u306b\u5165\u51fa\u529b\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}, {"appletviewer.main.err.io", "\u8AAD\u8FBC\u307F\u4E2D\u306E\u5165\u51FA\u529B\u4F8B\u5916\u3067\u3059: {0}"},
{"appletviewer.main.err.readablefile", " {0} \u304c\u30d5\u30a1\u30a4\u30eb\u3067\u304b\u3064\u8aad\u307f\u8fbc\u307f\u53ef\u80fd\u304b\u3069\u3046\u304b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002"}, {"appletviewer.main.err.readablefile", "{0}\u304C\u30D5\u30A1\u30A4\u30EB\u3067\u3042\u308A\u3001\u8AAD\u8FBC\u307F\u53EF\u80FD\u3067\u3042\u308B\u3053\u3068\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},
{"appletviewer.main.err.correcturl", " {0} \u306f\u6b63\u3057\u3044 URL \u3067\u3059\u304b?"}, {"appletviewer.main.err.correcturl", "{0}\u306F\u6B63\u3057\u3044URL\u3067\u3059\u304B\u3002"},
{"appletviewer.main.prop.store", "AppletViewer \u306e\u30e6\u30fc\u30b6\u56fa\u6709\u30d7\u30ed\u30d1\u30c6\u30a3"}, {"appletviewer.main.prop.store", "AppletViewer\u7528\u306E\u30E6\u30FC\u30B6\u30FC\u304C\u6307\u5B9A\u3057\u305F\u30D7\u30ED\u30D1\u30C6\u30A3"},
{"appletviewer.main.err.prop.cantread", "\u30e6\u30fc\u30b6\u30d7\u30ed\u30d1\u30c6\u30a3\u30d5\u30a1\u30a4\u30eb\u304c\u8aad\u307f\u8fbc\u307e\u308c\u307e\u305b\u3093: {0}"}, {"appletviewer.main.err.prop.cantread", "\u30E6\u30FC\u30B6\u30FC\u30FB\u30D7\u30ED\u30D1\u30C6\u30A3\u30FB\u30D5\u30A1\u30A4\u30EB\u3092\u8AAD\u307F\u8FBC\u3081\u307E\u305B\u3093: {0}"},
{"appletviewer.main.err.prop.cantsave", "\u30e6\u30fc\u30b6\u30d7\u30ed\u30d1\u30c6\u30a3\u30d5\u30a1\u30a4\u30eb\u3092\u4fdd\u5b58\u3067\u304d\u307e\u305b\u3093: {0}"}, {"appletviewer.main.err.prop.cantsave", "\u30E6\u30FC\u30B6\u30FC\u30FB\u30D7\u30ED\u30D1\u30C6\u30A3\u30FB\u30D5\u30A1\u30A4\u30EB\u3092\u4FDD\u5B58\u3067\u304D\u307E\u305B\u3093: {0}"},
{"appletviewer.main.warn.nosecmgr", "\u8b66\u544a: \u30c7\u30d0\u30c3\u30ac\u3067\u306e\u73fe\u5728\u306e\u5236\u9650\u306b\u3088\u308a\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3092\u7121\u52b9\u306b\u3057\u3066\u3044\u307e\u3059\u3002"}, {"appletviewer.main.warn.nosecmgr", "\u8B66\u544A: \u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u3092\u7121\u52B9\u5316\u3057\u307E\u3059\u3002"},
{"appletviewer.main.debug.cantfinddebug", "\u30c7\u30d0\u30c3\u30ac\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002"}, {"appletviewer.main.debug.cantfinddebug", "\u30C7\u30D0\u30C3\u30AC\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3002"},
{"appletviewer.main.debug.cantfindmain", "\u30c7\u30d0\u30c3\u30ac\u3067 main \u30e1\u30bd\u30c3\u30c9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002"}, {"appletviewer.main.debug.cantfindmain", "\u30C7\u30D0\u30C3\u30AC\u306E\u30E1\u30A4\u30F3\u30FB\u30E1\u30BD\u30C3\u30C9\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3002"},
{"appletviewer.main.debug.exceptionindebug", "\u30c7\u30d0\u30c3\u30ac\u3067\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}, {"appletviewer.main.debug.exceptionindebug", "\u30C7\u30D0\u30C3\u30AC\u306B\u4F8B\u5916\u304C\u767A\u751F\u3057\u307E\u3057\u305F\u3002"},
{"appletviewer.main.debug.cantaccess", "\u30c7\u30d0\u30c3\u30ac\u306b\u30a2\u30af\u30bb\u30b9\u3067\u304d\u307e\u305b\u3093\u3002"}, {"appletviewer.main.debug.cantaccess", "\u30C7\u30D0\u30C3\u30AC\u306B\u30A2\u30AF\u30BB\u30B9\u3067\u304D\u307E\u305B\u3093\u3002"},
{"appletviewer.main.nosecmgr", "\u8b66\u544a: SecurityManager \u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"}, {"appletviewer.main.nosecmgr", "\u8B66\u544A: SecurityManager\u304C\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002"},
{"appletviewer.main.warning", "\u8b66\u544a: \u30a2\u30d7\u30ec\u30c3\u30c8\u304c\u8d77\u52d5\u3057\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u5165\u529b\u306b <applet> \u30bf\u30b0\u304c\u542b\u307e\u308c\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002"}, {"appletviewer.main.warning", "\u8B66\u544A: \u30A2\u30D7\u30EC\u30C3\u30C8\u304C\u958B\u59CB\u3055\u308C\u307E\u305B\u3093\u3067\u3057\u305F\u3002\u5165\u529B\u306B<applet>\u30BF\u30B0\u304C\u3042\u308B\u3053\u3068\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},
{"appletviewer.main.warn.prop.overwrite", "\u8b66\u544a: \u30e6\u30fc\u30b6\u306e\u8981\u6c42\u306b\u3088\u308a\u30b7\u30b9\u30c6\u30e0\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u4e00\u6642\u7684\u306b\u4e0a\u66f8\u304d\u3057\u3066\u3044\u307e\u3059: \u30ad\u30fc: {0} \u53e4\u3044\u5024: {1} \u65b0\u3057\u3044\u5024: {2}"}, {"appletviewer.main.warn.prop.overwrite", "\u8B66\u544A: \u30E6\u30FC\u30B6\u30FC\u306E\u30EA\u30AF\u30A8\u30B9\u30C8\u3067\u30B7\u30B9\u30C6\u30E0\u30FB\u30D7\u30ED\u30D1\u30C6\u30A3\u3092\u4E00\u6642\u7684\u306B\u4E0A\u66F8\u304D\u3057\u307E\u3059: \u30AD\u30FC: {0} \u53E4\u3044\u5024: {1} \u65B0\u3057\u3044\u5024: {2}"},
{"appletviewer.main.warn.cantreadprops", "\u8b66\u544a: AppletViewer \u30d7\u30ed\u30d1\u30c6\u30a3\u30d5\u30a1\u30a4\u30eb\u304c\u8aad\u307f\u8fbc\u307e\u308c\u307e\u305b\u3093: {0} \u30c7\u30d5\u30a9\u30eb\u30c8\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002"}, {"appletviewer.main.warn.cantreadprops", "\u8B66\u544A: AppletViewer\u30D7\u30ED\u30D1\u30C6\u30A3\u30FB\u30D5\u30A1\u30A4\u30EB{0}\u3092\u8AAD\u307F\u8FBC\u3081\u307E\u305B\u3093\u3002\u30C7\u30D5\u30A9\u30EB\u30C8\u3092\u4F7F\u7528\u3057\u307E\u3059\u3002"},
{"appletioexception.loadclass.throw.interrupted", "\u30af\u30e9\u30b9\u30d5\u30a1\u30a4\u30eb\u306e\u8aad\u307f\u8fbc\u307f\u304c\u4e2d\u65ad\u3055\u308c\u307e\u3057\u305f: {0}"}, {"appletioexception.loadclass.throw.interrupted", "\u30AF\u30E9\u30B9\u306E\u30ED\u30FC\u30C9\u304C\u4E2D\u65AD\u3057\u307E\u3057\u305F: {0}"},
{"appletioexception.loadclass.throw.notloaded", "\u30af\u30e9\u30b9\u30d5\u30a1\u30a4\u30eb\u304c\u8aad\u307f\u8fbc\u307e\u308c\u307e\u305b\u3093: {0}"}, {"appletioexception.loadclass.throw.notloaded", "\u30AF\u30E9\u30B9\u304C\u30ED\u30FC\u30C9\u3055\u308C\u307E\u305B\u3093: {0}"},
{"appletclassloader.loadcode.verbose", "{1} \u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306e\u30b9\u30c8\u30ea\u30fc\u30e0 {0} \u3092\u30aa\u30fc\u30d7\u30f3\u3067\u304d\u307e\u305b\u3093"}, {"appletclassloader.loadcode.verbose", "{1}\u3092\u53D6\u5F97\u3059\u308B\u305F\u3081\u306E{0}\u3078\u306E\u30B9\u30C8\u30EA\u30FC\u30E0\u3092\u958B\u304D\u307E\u3059"},
{"appletclassloader.filenotfound", "\u30d5\u30a1\u30a4\u30eb\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093: {0}"}, {"appletclassloader.filenotfound", "{0}\u306E\u691C\u7D22\u4E2D\u306B\u30D5\u30A1\u30A4\u30EB\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093"},
{"appletclassloader.fileformat", "{0} \u8aad\u307f\u8fbc\u307f\u4e2d\u306b\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}, {"appletclassloader.fileformat", "{0}\u306E\u30ED\u30FC\u30C9\u4E2D\u306B\u30D5\u30A1\u30A4\u30EB\u30FB\u30D5\u30A9\u30FC\u30DE\u30C3\u30C8\u4F8B\u5916\u304C\u767A\u751F\u3057\u307E\u3057\u305F"},
{"appletclassloader.fileioexception", "{0} \u8aad\u307f\u8fbc\u307f\u4e2d\u306b\u5165\u51fa\u529b\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}, {"appletclassloader.fileioexception", "{0}\u306E\u30ED\u30FC\u30C9\u4E2D\u306B\u5165\u51FA\u529B\u4F8B\u5916\u304C\u767A\u751F\u3057\u307E\u3057\u305F"},
{"appletclassloader.fileexception", "{1} \u8aad\u307f\u8fbc\u307f\u4e2d\u306b {0} \u306e\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}, {"appletclassloader.fileexception", "{1}\u306E\u30ED\u30FC\u30C9\u4E2D\u306B{0}\u4F8B\u5916\u304C\u767A\u751F\u3057\u307E\u3057\u305F"},
{"appletclassloader.filedeath", "{1} \u8aad\u307f\u8fbc\u307f\u4e2d\u306b {0} \u304c\u5f37\u5236\u7d42\u4e86\u3055\u308c\u307e\u3057\u305f\u3002"}, {"appletclassloader.filedeath", "{1}\u306E\u30ED\u30FC\u30C9\u4E2D\u306B{0}\u304C\u5F37\u5236\u7D42\u4E86\u3057\u307E\u3057\u305F"},
{"appletclassloader.fileerror", "{1} \u8aad\u307f\u8fbc\u307f\u4e2d\u306b {0} \u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}, {"appletclassloader.fileerror", "{1}\u306E\u30ED\u30FC\u30C9\u4E2D\u306B{0}\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F"},
{"appletclassloader.findclass.verbose.findclass", "\u30af\u30e9\u30b9 {1} \u3092\u898b\u3064\u3051\u308b {0}}"}, {"appletclassloader.findclass.verbose.findclass", "{0}\u306F\u30AF\u30E9\u30B9{1}\u3092\u691C\u51FA\u3057\u307E\u3057\u305F"},
{"appletclassloader.findclass.verbose.openstream", "{1} \u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306e\u30b9\u30c8\u30ea\u30fc\u30e0 {0} \u3092\u30aa\u30fc\u30d7\u30f3\u3067\u304d\u307e\u305b\u3093"}, {"appletclassloader.findclass.verbose.openstream", "{1}\u3092\u53D6\u5F97\u3059\u308B\u305F\u3081\u306E{0}\u3078\u306E\u30B9\u30C8\u30EA\u30FC\u30E0\u3092\u958B\u304D\u307E\u3059"},
{"appletclassloader.getresource.verbose.forname", "\u540d\u524d\u7528\u306e AppletClassLoader.getResource: {0}"}, {"appletclassloader.getresource.verbose.forname", "\u540D\u524D{0}\u306EAppletClassLoader.getResource\u3067\u3059"},
{"appletclassloader.getresource.verbose.found", "\u30ea\u30bd\u30fc\u30b9\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f: \u30b7\u30b9\u30c6\u30e0\u30ea\u30bd\u30fc\u30b9\u3068\u3057\u3066\u306e {0}"}, {"appletclassloader.getresource.verbose.found", "\u30EA\u30BD\u30FC\u30B9{0}\u304C\u30B7\u30B9\u30C6\u30E0\u30FB\u30EA\u30BD\u30FC\u30B9\u3068\u3057\u3066\u691C\u51FA\u3055\u308C\u307E\u3057\u305F"},
{"appletclassloader.getresourceasstream.verbose", "\u30ea\u30bd\u30fc\u30b9\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f: \u30b7\u30b9\u30c6\u30e0\u30ea\u30bd\u30fc\u30b9\u3068\u3057\u3066\u306e {0}"}, {"appletclassloader.getresourceasstream.verbose", "\u30EA\u30BD\u30FC\u30B9{0}\u304C\u30B7\u30B9\u30C6\u30E0\u30FB\u30EA\u30BD\u30FC\u30B9\u3068\u3057\u3066\u691C\u51FA\u3055\u308C\u307E\u3057\u305F"},
{"appletpanel.runloader.err", "object \u304b code \u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u3069\u3061\u3089\u304b\u304c\u5fc5\u8981\u3067\u3059\uff01"}, {"appletpanel.runloader.err", "\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u307E\u305F\u306F\u30B3\u30FC\u30C9\u30FB\u30D1\u30E9\u30E1\u30FC\u30BF\u306E\u3044\u305A\u308C\u304B\u3067\u3059\u3002"},
{"appletpanel.runloader.exception", "{0} \u3092\u518d\u69cb\u6210\u4e2d\u306b\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}, {"appletpanel.runloader.exception", "{0}\u306E\u30C7\u30B7\u30EA\u30A2\u30E9\u30A4\u30BA\u4E2D\u306B\u4F8B\u5916\u304C\u767A\u751F\u3057\u307E\u3057\u305F"},
{"appletpanel.destroyed", "\u30a2\u30d7\u30ec\u30c3\u30c8\u304c\u6301\u3064\u30ea\u30bd\u30fc\u30b9\u3092\u89e3\u653e\u3057\u307e\u3057\u305f\u3002"}, {"appletpanel.destroyed", "\u30A2\u30D7\u30EC\u30C3\u30C8\u304C\u7834\u68C4\u3055\u308C\u307E\u3057\u305F\u3002"},
{"appletpanel.loaded", "\u30a2\u30d7\u30ec\u30c3\u30c8\u304c\u8aad\u307f\u8fbc\u307e\u308c\u307e\u3057\u305f\u3002"}, {"appletpanel.loaded", "\u30A2\u30D7\u30EC\u30C3\u30C8\u304C\u30ED\u30FC\u30C9\u3055\u308C\u307E\u3057\u305F\u3002"},
{"appletpanel.started", "\u30a2\u30d7\u30ec\u30c3\u30c8\u304c\u958b\u59cb\u3055\u308c\u307e\u3057\u305f\u3002"}, {"appletpanel.started", "\u30A2\u30D7\u30EC\u30C3\u30C8\u304C\u958B\u59CB\u3055\u308C\u307E\u3057\u305F\u3002"},
{"appletpanel.inited", "\u30a2\u30d7\u30ec\u30c3\u30c8\u304c\u521d\u671f\u5316\u3055\u308c\u307e\u3057\u305f\u3002"}, {"appletpanel.inited", "\u30A2\u30D7\u30EC\u30C3\u30C8\u304C\u521D\u671F\u5316\u3055\u308C\u307E\u3057\u305F\u3002"},
{"appletpanel.stopped", "\u30a2\u30d7\u30ec\u30c3\u30c8\u304c\u7d42\u4e86\u3057\u307e\u3057\u305f\u3002"}, {"appletpanel.stopped", "\u30A2\u30D7\u30EC\u30C3\u30C8\u304C\u505C\u6B62\u3055\u308C\u307E\u3057\u305F\u3002"},
{"appletpanel.disposed", "\u30a2\u30d7\u30ec\u30c3\u30c8\u304c\u7834\u68c4\u3055\u308c\u307e\u3057\u305f\u3002"}, {"appletpanel.disposed", "\u30A2\u30D7\u30EC\u30C3\u30C8\u304C\u7834\u68C4\u3055\u308C\u307E\u3057\u305F\u3002"},
{"appletpanel.nocode", "APLLET \u30bf\u30b0\u306b CODE \u5c5e\u6027\u304c\u3042\u308a\u307e\u305b\u3093\u3002"}, {"appletpanel.nocode", "APPLET\u30BF\u30B0\u306BCODE\u30D1\u30E9\u30E1\u30FC\u30BF\u304C\u3042\u308A\u307E\u305B\u3093\u3002"},
{"appletpanel.notfound", "load: \u30af\u30e9\u30b9 {0} \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002"}, {"appletpanel.notfound", "\u30ED\u30FC\u30C9: \u30AF\u30E9\u30B9{0}\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3002"},
{"appletpanel.nocreate", "load: {0} \u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u751f\u6210\u3067\u304d\u307e\u305b\u3093\u3002"}, {"appletpanel.nocreate", "\u30ED\u30FC\u30C9: {0}\u3092\u30A4\u30F3\u30B9\u30BF\u30F3\u30B9\u5316\u3067\u304D\u307E\u305B\u3093\u3002"},
{"appletpanel.noconstruct", "load: {0} \u306f public \u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u3042\u308b\u3044\u306f public \u306a\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u3092\u6301\u3063\u3066\u3044\u307e\u305b\u3093\u3002"}, {"appletpanel.noconstruct", "\u30ED\u30FC\u30C9: {0}\u306Fpublic\u3067\u306A\u3044\u304B\u3001public\u30B3\u30F3\u30B9\u30C8\u30E9\u30AF\u30BF\u3092\u6301\u3063\u3066\u3044\u307E\u305B\u3093\u3002"},
{"appletpanel.death", "\u5f37\u5236\u7d42\u4e86\u3055\u308c\u307e\u3057\u305f\u3002"}, {"appletpanel.death", "\u5F37\u5236\u7D42\u4E86\u3055\u308C\u307E\u3057\u305F"},
{"appletpanel.exception", "\u4f8b\u5916: {0}."}, {"appletpanel.exception", "\u4F8B\u5916: {0}\u3002"},
{"appletpanel.exception2", "\u4f8b\u5916: {0}: {1}."}, {"appletpanel.exception2", "\u4F8B\u5916: {0}: {1}\u3002"},
{"appletpanel.error", "\u30a8\u30e9\u30fc: {0}."}, {"appletpanel.error", "\u30A8\u30E9\u30FC: {0}\u3002"},
{"appletpanel.error2", "\u30a8\u30e9\u30fc: {0}: {1}."}, {"appletpanel.error2", "\u30A8\u30E9\u30FC: {0}: {1}\u3002"},
{"appletpanel.notloaded", "Init: \u30a2\u30d7\u30ec\u30c3\u30c8\u306f\u8aad\u307f\u8fbc\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002"}, {"appletpanel.notloaded", "\u521D\u671F\u5316: \u30A2\u30D7\u30EC\u30C3\u30C8\u304C\u30ED\u30FC\u30C9\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002"},
{"appletpanel.notinited", "Start: \u30a2\u30d7\u30ec\u30c3\u30c8\u306f\u521d\u671f\u5316\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"}, {"appletpanel.notinited", "\u958B\u59CB: \u30A2\u30D7\u30EC\u30C3\u30C8\u304C\u521D\u671F\u5316\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002"},
{"appletpanel.notstarted", "Stop: \u30a2\u30d7\u30ec\u30c3\u30c8\u306f\u958b\u59cb\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"}, {"appletpanel.notstarted", "\u505C\u6B62: \u30A2\u30D7\u30EC\u30C3\u30C8\u304C\u958B\u59CB\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002"},
{"appletpanel.notstopped", "Destroy: \u30a2\u30d7\u30ec\u30c3\u30c8\u306f\u505c\u6b62\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"}, {"appletpanel.notstopped", "\u7834\u68C4: \u30A2\u30D7\u30EC\u30C3\u30C8\u304C\u505C\u6B62\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002"},
{"appletpanel.notdestroyed", "Dispose: \u30a2\u30d7\u30ec\u30c3\u30c8\u306f\u7834\u68c4\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"}, {"appletpanel.notdestroyed", "\u7834\u68C4: \u30A2\u30D7\u30EC\u30C3\u30C8\u304C\u7834\u68C4\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002"},
{"appletpanel.notdisposed", "Load: \u30a2\u30d7\u30ec\u30c3\u30c8\u306f\u7834\u68c4\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"}, {"appletpanel.notdisposed", "\u30ED\u30FC\u30C9: \u30A2\u30D7\u30EC\u30C3\u30C8\u304C\u7834\u68C4\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002"},
{"appletpanel.bail", "\u4e2d\u65ad\u3055\u308c\u307e\u3057\u305f\u3002"}, {"appletpanel.bail", "\u4E2D\u65AD\u6E08: \u7D42\u4E86\u3057\u3066\u3044\u307E\u3059\u3002"},
{"appletpanel.filenotfound", "\u30d5\u30a1\u30a4\u30eb\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093: {0}"}, {"appletpanel.filenotfound", "{0}\u306E\u691C\u7D22\u4E2D\u306B\u30D5\u30A1\u30A4\u30EB\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093"},
{"appletpanel.fileformat", "{0} \u8aad\u307f\u8fbc\u307f\u4e2d\u306b\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}, {"appletpanel.fileformat", "{0}\u306E\u30ED\u30FC\u30C9\u4E2D\u306B\u30D5\u30A1\u30A4\u30EB\u30FB\u30D5\u30A9\u30FC\u30DE\u30C3\u30C8\u4F8B\u5916\u304C\u767A\u751F\u3057\u307E\u3057\u305F"},
{"appletpanel.fileioexception", "{0} \u8aad\u307f\u8fbc\u307f\u4e2d\u306b\u5165\u51fa\u529b\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}, {"appletpanel.fileioexception", "{0}\u306E\u30ED\u30FC\u30C9\u4E2D\u306B\u5165\u51FA\u529B\u4F8B\u5916\u304C\u767A\u751F\u3057\u307E\u3057\u305F"},
{"appletpanel.fileexception", "{1} \u8aad\u307f\u8fbc\u307f\u4e2d\u306b {0} \u306e\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}, {"appletpanel.fileexception", "{1}\u306E\u30ED\u30FC\u30C9\u4E2D\u306B{0}\u4F8B\u5916\u304C\u767A\u751F\u3057\u307E\u3057\u305F"},
{"appletpanel.filedeath", "{1} \u8aad\u307f\u8fbc\u307f\u4e2d\u306b {0} \u304c\u5f37\u5236\u7d42\u4e86\u3055\u308c\u307e\u3057\u305f\u3002"}, {"appletpanel.filedeath", "{1}\u306E\u30ED\u30FC\u30C9\u4E2D\u306B{0}\u304C\u5F37\u5236\u7D42\u4E86\u3057\u307E\u3057\u305F"},
{"appletpanel.fileerror", "{1} \u8aad\u307f\u8fbc\u307f\u4e2d\u306b {0} \u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}, {"appletpanel.fileerror", "{1}\u306E\u30ED\u30FC\u30C9\u4E2D\u306B{0}\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u307E\u3057\u305F"},
{"appletpanel.badattribute.exception", "HTML \u69cb\u6587\u89e3\u6790: width/height \u5c5e\u6027\u306e\u5024\u304c\u6b63\u3057\u304f\u3042\u308a\u307e\u305b\u3093"}, {"appletpanel.badattribute.exception", "HTML\u89E3\u6790: width\u307E\u305F\u306Fheight\u5C5E\u6027\u306E\u5024\u304C\u4E0D\u6B63\u3067\u3059"},
{"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream \u306b\u306f null \u3067\u306a\u3044\u30af\u30e9\u30b9\u30ed\u30fc\u30c0\u304c\u5fc5\u8981\u3067\u3059\u3002"}, {"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream\u306F\u975Enull\u306E\u30ED\u30FC\u30C0\u30FC\u304C\u5FC5\u8981\u3067\u3059"},
{"appletprops.title", "\u30a2\u30d7\u30ec\u30c3\u30c8\u30d3\u30e5\u30fc\u30a2\u306e\u30d7\u30ed\u30d1\u30c6\u30a3"}, {"appletprops.title", "AppletViewer\u30D7\u30ED\u30D1\u30C6\u30A3"},
{"appletprops.label.http.server", "Http \u30d7\u30ed\u30ad\u30b7\u30b5\u30fc\u30d0:"}, {"appletprops.label.http.server", "Http\u30D7\u30ED\u30AD\u30B7\u30FB\u30B5\u30FC\u30D0\u30FC:"},
{"appletprops.label.http.proxy", "Http \u30d7\u30ed\u30ad\u30b7\u306e\u30dd\u30fc\u30c8:"}, {"appletprops.label.http.proxy", "Http\u30D7\u30ED\u30AD\u30B7\u30FB\u30DD\u30FC\u30C8:"},
{"appletprops.label.network", "\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30a2\u30af\u30bb\u30b9:"}, {"appletprops.label.network", "\u30CD\u30C3\u30C8\u30EF\u30FC\u30AF\u30FB\u30A2\u30AF\u30BB\u30B9:"},
{"appletprops.choice.network.item.none", "\u306a\u3057"}, {"appletprops.choice.network.item.none", "\u306A\u3057"},
{"appletprops.choice.network.item.applethost", "\u30a2\u30d7\u30ec\u30c3\u30c8\u30db\u30b9\u30c8\u306e\u307f"}, {"appletprops.choice.network.item.applethost", "\u30A2\u30D7\u30EC\u30C3\u30C8\u30FB\u30DB\u30B9\u30C8"},
{"appletprops.choice.network.item.unrestricted", "\u5236\u9650\u306a\u3057"}, {"appletprops.choice.network.item.unrestricted", "\u5236\u9650\u306A\u3057"},
{"appletprops.label.class", "\u30af\u30e9\u30b9\u30a2\u30af\u30bb\u30b9:"}, {"appletprops.label.class", "\u30AF\u30E9\u30B9\u30FB\u30A2\u30AF\u30BB\u30B9:"},
{"appletprops.choice.class.item.restricted", "\u5236\u9650\u3042\u308a"}, {"appletprops.choice.class.item.restricted", "\u5236\u9650\u4ED8\u304D"},
{"appletprops.choice.class.item.unrestricted", "\u5236\u9650\u306a\u3057"}, {"appletprops.choice.class.item.unrestricted", "\u5236\u9650\u306A\u3057"},
{"appletprops.label.unsignedapplet", "\u7f72\u540d\u306e\u306a\u3044\u30a2\u30d7\u30ec\u30c3\u30c8\u3092\u8a31\u53ef\u3057\u307e\u3059\u304b:"}, {"appletprops.label.unsignedapplet", "\u7F72\u540D\u3055\u308C\u3066\u3044\u306A\u3044\u30A2\u30D7\u30EC\u30C3\u30C8\u3092\u8A31\u53EF:"},
{"appletprops.choice.unsignedapplet.no", "\u3044\u3044\u3048"}, {"appletprops.choice.unsignedapplet.no", "\u3044\u3044\u3048"},
{"appletprops.choice.unsignedapplet.yes", "\u306f\u3044"}, {"appletprops.choice.unsignedapplet.yes", "\u306F\u3044"},
{"appletprops.button.apply", "\u9069\u7528"}, {"appletprops.button.apply", "\u9069\u7528"},
{"appletprops.button.cancel", "\u53d6\u6d88\u3057"}, {"appletprops.button.cancel", "\u53D6\u6D88"},
{"appletprops.button.reset", "\u30ea\u30bb\u30c3\u30c8"}, {"appletprops.button.reset", "\u30EA\u30BB\u30C3\u30C8"},
{"appletprops.apply.exception", "\u30d7\u30ed\u30d1\u30c6\u30a3\u306e\u4fdd\u5b58\u306b\u5931\u6557\u3057\u307e\u3057\u305f: {0}"}, {"appletprops.apply.exception", "\u30D7\u30ED\u30D1\u30C6\u30A3{0}\u306E\u4FDD\u5B58\u306B\u5931\u6557\u3057\u307E\u3057\u305F"},
/* 4066432 */ /* 4066432 */
{"appletprops.title.invalidproxy", "\u7121\u52b9\u306a\u5165\u529b"}, {"appletprops.title.invalidproxy", "\u30A8\u30F3\u30C8\u30EA\u304C\u7121\u52B9\u3067\u3059"},
{"appletprops.label.invalidproxy", "\u30d7\u30ed\u30ad\u30b7\u306e\u30dd\u30fc\u30c8\u756a\u53f7\u306f\u6b63\u306e\u6574\u6570\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002"}, {"appletprops.label.invalidproxy", "\u30D7\u30ED\u30AD\u30B7\u30FB\u30DD\u30FC\u30C8\u306F\u6B63\u306E\u6574\u6570\u5024\u3067\u3042\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002"},
{"appletprops.button.ok", "\u4e86\u89e3"}, {"appletprops.button.ok", "OK"},
/* end 4066432 */ /* end 4066432 */
{"appletprops.prop.store", "AppletViewer \u306e\u30e6\u30fc\u30b6\u56fa\u6709\u30d7\u30ed\u30d1\u30c6\u30a3"}, {"appletprops.prop.store", "AppletViewer\u7528\u306E\u30E6\u30FC\u30B6\u30FC\u304C\u6307\u5B9A\u3057\u305F\u30D7\u30ED\u30D1\u30C6\u30A3"},
{"appletsecurityexception.checkcreateclassloader", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: classloader"}, {"appletsecurityexception.checkcreateclassloader", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u30AF\u30E9\u30B9\u30ED\u30FC\u30C0\u30FC"},
{"appletsecurityexception.checkaccess.thread", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: thread"}, {"appletsecurityexception.checkaccess.thread", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u30B9\u30EC\u30C3\u30C9"},
{"appletsecurityexception.checkaccess.threadgroup", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: threadgroup: {0}"}, {"appletsecurityexception.checkaccess.threadgroup", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u30B9\u30EC\u30C3\u30C9\u30B0\u30EB\u30FC\u30D7: {0}"},
{"appletsecurityexception.checkexit", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: exit: {0}"}, {"appletsecurityexception.checkexit", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u7D42\u4E86: {0}"},
{"appletsecurityexception.checkexec", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: exec: {0}"}, {"appletsecurityexception.checkexec", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u5B9F\u884C: {0}"},
{"appletsecurityexception.checklink", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: link: {0}"}, {"appletsecurityexception.checklink", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u30EA\u30F3\u30AF: {0}"},
{"appletsecurityexception.checkpropsaccess", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: properties"}, {"appletsecurityexception.checkpropsaccess", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u30D7\u30ED\u30D1\u30C6\u30A3"},
{"appletsecurityexception.checkpropsaccess.key", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: properties access {0}"}, {"appletsecurityexception.checkpropsaccess.key", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u30D7\u30ED\u30D1\u30C6\u30A3\u30FB\u30A2\u30AF\u30BB\u30B9{0}"},
{"appletsecurityexception.checkread.exception1", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: {0}, {1}"}, {"appletsecurityexception.checkread.exception1", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: {0}, {1}"},
{"appletsecurityexception.checkread.exception2", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: file.read: {0}"}, {"appletsecurityexception.checkread.exception2", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: file.read: {0}"},
{"appletsecurityexception.checkread", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: file.read: {0} == {1}"}, {"appletsecurityexception.checkread", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: file.read: {0} == {1}"},
{"appletsecurityexception.checkwrite.exception", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: {0}, {1}"}, {"appletsecurityexception.checkwrite.exception", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: {0}, {1}"},
{"appletsecurityexception.checkwrite", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: file.write: {0} == {1}"}, {"appletsecurityexception.checkwrite", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: file.write: {0} == {1}"},
{"appletsecurityexception.checkread.fd", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: fd.read"}, {"appletsecurityexception.checkread.fd", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: fd.read"},
{"appletsecurityexception.checkwrite.fd", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: fd.write"}, {"appletsecurityexception.checkwrite.fd", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: fd.write"},
{"appletsecurityexception.checklisten", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: socket.listen: {0}"}, {"appletsecurityexception.checklisten", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: socket.listen: {0}"},
{"appletsecurityexception.checkaccept", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: socket.accept: {0}:{1}"}, {"appletsecurityexception.checkaccept", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: socket.accept: {0}:{1}"},
{"appletsecurityexception.checkconnect.networknone", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: socket.connect: {0}->{1}"}, {"appletsecurityexception.checkconnect.networknone", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: socket.connect: {0}->{1}"},
{"appletsecurityexception.checkconnect.networkhost1", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: {1} \u306e\u5143\u306b\u306a\u308b {0} \u306b\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\u3002"}, {"appletsecurityexception.checkconnect.networkhost1", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: {1}\u306E\u8D77\u70B9\u3092\u4F7F\u7528\u3057\u3066{0}\u306B\u63A5\u7D9A\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002"},
{"appletsecurityexception.checkconnect.networkhost2", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: \u30db\u30b9\u30c8 {0} \u307e\u305f\u306f {1} \u306e IP \u3092\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093\u3002"}, {"appletsecurityexception.checkconnect.networkhost2", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u30DB\u30B9\u30C8{0}\u307E\u305F\u306F{1}\u306EIP\u3092\u89E3\u6C7A\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002 "},
{"appletsecurityexception.checkconnect.networkhost3", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: \u30db\u30b9\u30c8 {0} \u306e IP \u3092\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093\u3002 trustProxy \u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8abf\u3079\u3066\u304f\u3060\u3055\u3044\u3002"}, {"appletsecurityexception.checkconnect.networkhost3", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u30DB\u30B9\u30C8{0}\u306EIP\u3092\u89E3\u6C7A\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002trustProxy\u30D7\u30ED\u30D1\u30C6\u30A3\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},
{"appletsecurityexception.checkconnect", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: connect: {0}->{1}"}, {"appletsecurityexception.checkconnect", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u63A5\u7D9A: {0}->{1}"},
{"appletsecurityexception.checkpackageaccess", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: \u30d1\u30c3\u30b1\u30fc\u30b8 {0} \u306b\u30a2\u30af\u30bb\u30b9\u3067\u304d\u307e\u305b\u3093\u3002"}, {"appletsecurityexception.checkpackageaccess", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u30D1\u30C3\u30B1\u30FC\u30B8\u306B\u30A2\u30AF\u30BB\u30B9\u3067\u304D\u307E\u305B\u3093: {0}"},
{"appletsecurityexception.checkpackagedefinition", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: \u30d1\u30c3\u30b1\u30fc\u30b8 {0} \u3092\u5b9a\u7fa9\u3067\u304d\u307e\u305b\u3093\u3002"}, {"appletsecurityexception.checkpackagedefinition", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u30D1\u30C3\u30B1\u30FC\u30B8\u3092\u5B9A\u7FA9\u3067\u304D\u307E\u305B\u3093: {0}"},
{"appletsecurityexception.cannotsetfactory", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: \u30d5\u30a1\u30af\u30c8\u30ea\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093\u3002"}, {"appletsecurityexception.cannotsetfactory", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u30D5\u30A1\u30AF\u30C8\u30EA\u3092\u8A2D\u5B9A\u3067\u304D\u307E\u305B\u3093"},
{"appletsecurityexception.checkmemberaccess", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: \u30e1\u30f3\u30d0\u30a2\u30af\u30bb\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002"}, {"appletsecurityexception.checkmemberaccess", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u30E1\u30F3\u30D0\u30FC\u30FB\u30A2\u30AF\u30BB\u30B9\u306E\u78BA\u8A8D"},
{"appletsecurityexception.checkgetprintjob", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: getPrintJob"}, {"appletsecurityexception.checkgetprintjob", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: getPrintJob"},
{"appletsecurityexception.checksystemclipboardaccess", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: getSystemClipboard"}, {"appletsecurityexception.checksystemclipboardaccess", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: getSystemClipboard"},
{"appletsecurityexception.checkawteventqueueaccess", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: getEventQueue"}, {"appletsecurityexception.checkawteventqueueaccess", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: getEventQueue"},
{"appletsecurityexception.checksecurityaccess", "\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: security operation: {0}"}, {"appletsecurityexception.checksecurityaccess", "\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u4F8B\u5916: \u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u64CD\u4F5C: {0}"},
{"appletsecurityexception.getsecuritycontext.unknown", "\u30af\u30e9\u30b9\u30ed\u30fc\u30c0\u30bf\u30a4\u30d7\u304c\u4e0d\u660e\u3067\u3059\u3002getContext \u306e\u30c1\u30a7\u30c3\u30af\u304c\u3067\u304d\u307e\u305b\u3093\u3002"}, {"appletsecurityexception.getsecuritycontext.unknown", "\u4E0D\u660E\u306A\u30AF\u30E9\u30B9\u30ED\u30FC\u30C0\u30FC\u30FB\u30BF\u30A4\u30D7\u3067\u3059\u3002getContext\u3092\u78BA\u8A8D\u3067\u304D\u307E\u305B\u3093"},
{"appletsecurityexception.checkread.unknown", "\u30af\u30e9\u30b9\u30ed\u30fc\u30c0\u30bf\u30a4\u30d7\u304c\u4e0d\u660e\u3067\u3059\u3002{0} \u306e\u8aad\u307f\u8fbc\u307f\u30c1\u30a7\u30c3\u30af\u304c\u3067\u304d\u307e\u305b\u3093\u3002"}, {"appletsecurityexception.checkread.unknown", "\u4E0D\u660E\u306A\u30AF\u30E9\u30B9\u30ED\u30FC\u30C0\u30FC\u30FB\u30BF\u30A4\u30D7\u3067\u3059\u3002{0}\u306E\u8AAD\u53D6\u308A\u30C1\u30A7\u30C3\u30AF\u3092\u78BA\u8A8D\u3067\u304D\u307E\u305B\u3093"},
{"appletsecurityexception.checkconnect.unknown", "\u30af\u30e9\u30b9\u30ed\u30fc\u30c0\u30bf\u30a4\u30d7\u304c\u4e0d\u660e\u3067\u3059\u3002\u63a5\u7d9a\u30c1\u30a7\u30c3\u30af\u304c\u3067\u304d\u307e\u305b\u3093\u3002"}, {"appletsecurityexception.checkconnect.unknown", "\u4E0D\u660E\u306A\u30AF\u30E9\u30B9\u30ED\u30FC\u30C0\u30FC\u30FB\u30BF\u30A4\u30D7\u3067\u3059\u3002\u63A5\u7D9A\u30C1\u30A7\u30C3\u30AF\u3092\u78BA\u8A8D\u3067\u304D\u307E\u305B\u3093"},
}; };
return temp;
} }
} }

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -29,173 +29,175 @@ import java.util.ListResourceBundle;
public class MsgAppletViewer_ko extends ListResourceBundle { public class MsgAppletViewer_ko extends ListResourceBundle {
public Object[][] getContents() { public Object[][] getContents() {
return new Object[][] { Object[][] temp = new Object[][] {
{"textframe.button.dismiss", "\ub2eb\uae30"}, {"textframe.button.dismiss", "\uD574\uC81C"},
{"appletviewer.tool.title", "\uc560\ud50c\ub9bf \ubdf0\uc5b4: {0}"}, {"appletviewer.tool.title", "\uC560\uD50C\uB9BF \uBDF0\uC5B4: {0}"},
{"appletviewer.menu.applet", "\uc560\ud50c\ub9bf "}, {"appletviewer.menu.applet", "\uC560\uD50C\uB9BF"},
{"appletviewer.menuitem.restart", "\uc7ac\uc2dc\uc791"}, {"appletviewer.menuitem.restart", "\uC7AC\uC2DC\uC791"},
{"appletviewer.menuitem.reload", "\uc7ac\ub85c\ub4dc"}, {"appletviewer.menuitem.reload", "\uC7AC\uB85C\uB4DC"},
{"appletviewer.menuitem.stop", "\uba48\ucda4"}, {"appletviewer.menuitem.stop", "\uC815\uC9C0"},
{"appletviewer.menuitem.save", "\uc800\uc7a5..."}, {"appletviewer.menuitem.save", "\uC800\uC7A5..."},
{"appletviewer.menuitem.start", "\uc2dc\uc791"}, {"appletviewer.menuitem.start", "\uC2DC\uC791"},
{"appletviewer.menuitem.clone", "\ubcf5\uc81c..."}, {"appletviewer.menuitem.clone", "\uBCF5\uC81C..."},
{"appletviewer.menuitem.tag", "\ud0dc\uadf8..."}, {"appletviewer.menuitem.tag", "\uD0DC\uADF8 \uC9C0\uC815..."},
{"appletviewer.menuitem.info", "\uc815\ubcf4..."}, {"appletviewer.menuitem.info", "\uC815\uBCF4..."},
{"appletviewer.menuitem.edit", "\ud3b8\uc9d1"}, {"appletviewer.menuitem.edit", "\uD3B8\uC9D1"},
{"appletviewer.menuitem.encoding", "\ubb38\uc790 \uc778\ucf54\ub529"}, {"appletviewer.menuitem.encoding", "\uBB38\uC790 \uC778\uCF54\uB529"},
{"appletviewer.menuitem.print", "\uc778\uc1c4..."}, {"appletviewer.menuitem.print", "\uC778\uC1C4..."},
{"appletviewer.menuitem.props", "\ub4f1\ub85d \uc815\ubcf4..."}, {"appletviewer.menuitem.props", "\uC18D\uC131..."},
{"appletviewer.menuitem.close", "\ub2eb\uae30"}, {"appletviewer.menuitem.close", "\uB2EB\uAE30"},
{"appletviewer.menuitem.quit", "\uc885\ub8cc"}, {"appletviewer.menuitem.quit", "\uC885\uB8CC"},
{"appletviewer.label.hello", "\ud658\uc601\ud569\ub2c8\ub2e4..."}, {"appletviewer.label.hello", "\uC2DC\uC791..."},
{"appletviewer.status.start", "\uc560\ud50c\ub9bf \uc2dc\uc791 \uc911..."}, {"appletviewer.status.start", "\uC560\uD50C\uB9BF\uC744 \uC2DC\uC791\uD558\uB294 \uC911..."},
{"appletviewer.appletsave.filedialogtitle","\uc560\ud50c\ub9bf \uc77c\ub828 \ubc88\ud638\ub97c \ud30c\uc77c\uc5d0 \uc800\uc7a5"}, {"appletviewer.appletsave.filedialogtitle","\uD30C\uC77C\uB85C \uC560\uD50C\uB9BF \uC9C1\uB82C\uD654"},
{"appletviewer.appletsave.err1", "{0}\uc5d0\uc11c {1}\uae4c\uc9c0 \uc77c\ub828 \ubc88\ud638\ub97c \uc9c0\uc815\ud558\ub294 \uc911"}, {"appletviewer.appletsave.err1", "{0}\uC744(\uB97C) {1}(\uC73C)\uB85C \uC9C1\uB82C\uD654\uD558\uB294 \uC911"},
{"appletviewer.appletsave.err2", "appletSave \uc5d0\uc11c {0} \ubc1c\uc0dd"}, {"appletviewer.appletsave.err2", "appletSave\uC5D0 \uC624\uB958 \uBC1C\uC0DD: {0}"},
{"appletviewer.applettag", "\ud0dc\uadf8 \ud45c\uc2dc"}, {"appletviewer.applettag", "\uD0DC\uADF8\uAC00 \uD45C\uC2DC\uB428"},
{"appletviewer.applettag.textframe", "\uc560\ud50c\ub9bf HTML \ud0dc\uadf8"}, {"appletviewer.applettag.textframe", "\uC560\uD50C\uB9BF HTML \uD0DC\uADF8"},
{"appletviewer.appletinfo.applet", "-- \uc560\ud50c\ub9bf \uc815\ubcf4 \uc5c6\uc74c --"}, {"appletviewer.appletinfo.applet", "-- \uC560\uD50C\uB9BF \uC815\uBCF4 \uC5C6\uC74C --"},
{"appletviewer.appletinfo.param", "-- \ub9e4\uac1c\ubcc0\uc218 \uc815\ubcf4 \uc5c6\uc74c --"}, {"appletviewer.appletinfo.param", "-- \uB9E4\uAC1C\uBCC0\uC218 \uC815\uBCF4 \uC5C6\uC74C --"},
{"appletviewer.appletinfo.textframe", "\uc560\ud50c\ub9bf \uc815\ubcf4"}, {"appletviewer.appletinfo.textframe", "\uC560\uD50C\uB9BF \uC815\uBCF4"},
{"appletviewer.appletprint.fail", "\uc778\uc1c4 \uc624\ub958 \ubc1c\uc0dd"}, {"appletviewer.appletprint.fail", "\uC778\uC1C4\uB97C \uC2E4\uD328\uD588\uC2B5\uB2C8\uB2E4."},
{"appletviewer.appletprint.finish", "\uc778\uc1c4 \uc644\ub8cc"}, {"appletviewer.appletprint.finish", "\uC778\uC1C4\uB97C \uC644\uB8CC\uD588\uC2B5\uB2C8\uB2E4."},
{"appletviewer.appletprint.cancel", "\uc778\uc1c4 \ucde8\uc18c"}, {"appletviewer.appletprint.cancel", "\uC778\uC1C4\uAC00 \uCDE8\uC18C\uB418\uC5C8\uC2B5\uB2C8\uB2E4."},
{"appletviewer.appletencoding", "\ubb38\uc790 \uc778\ucf54\ub529: {0}"}, {"appletviewer.appletencoding", "\uBB38\uC790 \uC778\uCF54\uB529: {0}"},
{"appletviewer.parse.warning.requiresname", "\uacbd\uace0: \uc774\ub984 \uc18d\uc131\uc5d0 <param name=... value=...> \ud0dc\uadf8\uac00 \ud544\uc694\ud569\ub2c8\ub2e4."}, {"appletviewer.parse.warning.requiresname", "\uACBD\uACE0: <param name=... value=...> \uD0DC\uADF8\uC5D0\uB294 name \uC18D\uC131\uC774 \uD544\uC694\uD569\uB2C8\uB2E4."},
{"appletviewer.parse.warning.paramoutside", "\uacbd\uace0: <applet> ... </applet> \uc678\ubd80\uc5d0 <param> \ud0dc\uadf8\uac00 \uc788\uc2b5\ub2c8\ub2e4."}, {"appletviewer.parse.warning.paramoutside", "\uACBD\uACE0: <param> \uD0DC\uADF8\uAC00 <applet> ... </applet> \uBC16\uC5D0 \uC788\uC2B5\uB2C8\uB2E4."},
{"appletviewer.parse.warning.applet.requirescode", "\uacbd\uace0: <applet> \ud0dc\uadf8\uc5d0 \ucf54\ub4dc \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, {"appletviewer.parse.warning.applet.requirescode", "\uACBD\uACE0: <applet> \uD0DC\uADF8\uC5D0\uB294 code \uC18D\uC131\uC774 \uD544\uC694\uD569\uB2C8\uB2E4."},
{"appletviewer.parse.warning.applet.requiresheight", "\uacbd\uace0: <applet> \ud0dc\uadf8\uc5d0 \ub192\uc774 \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, {"appletviewer.parse.warning.applet.requiresheight", "\uACBD\uACE0: <applet> \uD0DC\uADF8\uC5D0\uB294 height \uC18D\uC131\uC774 \uD544\uC694\uD569\uB2C8\uB2E4."},
{"appletviewer.parse.warning.applet.requireswidth", "\uacbd\uace0: <applet> \ud0dc\uadf8\uc5d0 \ub108\ube44 \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, {"appletviewer.parse.warning.applet.requireswidth", "\uACBD\uACE0: <applet> \uD0DC\uADF8\uC5D0\uB294 width \uC18D\uC131\uC774 \uD544\uC694\uD569\uB2C8\uB2E4."},
{"appletviewer.parse.warning.object.requirescode", "\uacbd\uace0: <object> \ud0dc\uadf8\uc5d0 \ucf54\ub4dc \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, {"appletviewer.parse.warning.object.requirescode", "\uACBD\uACE0: <object> \uD0DC\uADF8\uC5D0\uB294 code \uC18D\uC131\uC774 \uD544\uC694\uD569\uB2C8\uB2E4."},
{"appletviewer.parse.warning.object.requiresheight", "\uacbd\uace0: <object> \ud0dc\uadf8\uc5d0 \ub192\uc774 \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, {"appletviewer.parse.warning.object.requiresheight", "\uACBD\uACE0: <object> \uD0DC\uADF8\uC5D0\uB294 height \uC18D\uC131\uC774 \uD544\uC694\uD569\uB2C8\uB2E4."},
{"appletviewer.parse.warning.object.requireswidth", "\uacbd\uace0: <object> \ud0dc\uadf8\uc5d0 \ub108\ube44 \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, {"appletviewer.parse.warning.object.requireswidth", "\uACBD\uACE0: <object> \uD0DC\uADF8\uC5D0\uB294 width \uC18D\uC131\uC774 \uD544\uC694\uD569\uB2C8\uB2E4."},
{"appletviewer.parse.warning.embed.requirescode", "\uacbd\uace0: <embed> \ud0dc\uadf8\uc5d0 \ucf54\ub4dc \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, {"appletviewer.parse.warning.embed.requirescode", "\uACBD\uACE0: <embed> \uD0DC\uADF8\uC5D0\uB294 code \uC18D\uC131\uC774 \uD544\uC694\uD569\uB2C8\uB2E4."},
{"appletviewer.parse.warning.embed.requiresheight", "\uacbd\uace0: <embed> \ud0dc\uadf8\uc5d0 \ub192\uc774 \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, {"appletviewer.parse.warning.embed.requiresheight", "\uACBD\uACE0: <embed> \uD0DC\uADF8\uC5D0\uB294 height \uC18D\uC131\uC774 \uD544\uC694\uD569\uB2C8\uB2E4."},
{"appletviewer.parse.warning.embed.requireswidth", "\uacbd\uace0: <embed> \ud0dc\uadf8\uc5d0 \ub108\ube44 \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, {"appletviewer.parse.warning.embed.requireswidth", "\uACBD\uACE0: <embed> \uD0DC\uADF8\uC5D0\uB294 width \uC18D\uC131\uC774 \uD544\uC694\uD569\uB2C8\uB2E4."},
{"appletviewer.parse.warning.appnotLongersupported", "\uacbd\uace0: <app> \ud0dc\uadf8\ub97c \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ub300\uc548\uc73c\ub85c <applet>\uc744 \uc0ac\uc6a9\ud558\uac8c \ub418\ub294 \ub300\uc0c1:"}, {"appletviewer.parse.warning.appnotLongersupported", "\uACBD\uACE0: <app> \uD0DC\uADF8\uB294 \uB354 \uC774\uC0C1 \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. \uB300\uC2E0 <applet>\uC744 \uC0AC\uC6A9\uD558\uC2ED\uC2DC\uC624."},
{"appletviewer.usage", "\uc0ac\uc6a9\ubc95: appletviewer <options> url(s)\n\nwhere <options> \ub2e4\uc74c\uc744 \ud3ec\ud568:\n -debug Java \ub514\ubc84\uac70\uc5d0\uc11c applet viewer \uc2dc\uc791\n -encoding <encoding> HTML \ud30c\uc77c\uc744 \ud1b5\ud574 \ubb38\uc790 \uc778\ucf54\ub529 \uc9c0\uc815\n -J<runtime flag> Java \uc778\ud130\ud504\ub9ac\ud130\uc5d0 \uc778\uc790 \uc804\ub2ec\n\n -J \uc635\uc158\uc740 \ud45c\uc900\uc774 \uc544\ub2c8\uba70 \uc54c\ub9bc \uc5c6\uc774 \ubcc0\uacbd\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4."}, {"appletviewer.usage", "\uC0AC\uC6A9\uBC95: appletviewer <options> url(s)\n\n\uC5EC\uAE30\uC11C <options>\uB294 \uB2E4\uC74C\uACFC \uAC19\uC2B5\uB2C8\uB2E4.\n -debug Java \uB514\uBC84\uAC70\uC5D0\uC11C \uC560\uD50C\uB9BF \uBDF0\uC5B4\uB97C \uC2DC\uC791\uD569\uB2C8\uB2E4.\n -encoding <encoding> HTML \uD30C\uC77C\uC5D0 \uC0AC\uC6A9\uB420 \uBB38\uC790 \uC778\uCF54\uB529\uC744 \uC9C0\uC815\uD569\uB2C8\uB2E4.\n -J<runtime flag> Java \uC778\uD130\uD504\uB9AC\uD130\uB85C \uC778\uC218\uB97C \uC804\uB2EC\uD569\uB2C8\uB2E4.\n\n-J \uC635\uC158\uC740 \uD45C\uC900\uC774 \uC544\uB2C8\uBA70 \uC608\uACE0 \uC5C6\uC774 \uBCC0\uACBD\uB420 \uC218 \uC788\uC2B5\uB2C8\uB2E4."},
{"appletviewer.main.err.unsupportedopt", "\uc9c0\uc6d0\ud558\uc9c0 \uc54a\ub294 \uc635\uc158: {0}"}, {"appletviewer.main.err.unsupportedopt", "\uC9C0\uC6D0\uB418\uC9C0 \uC54A\uB294 \uC635\uC158: {0}"},
{"appletviewer.main.err.unrecognizedarg", "\uc54c \uc218 \uc5c6\ub294 \uc778\uc790: {0}"}, {"appletviewer.main.err.unrecognizedarg", "\uC54C \uC218 \uC5C6\uB294 \uC778\uC218: {0}"},
{"appletviewer.main.err.dupoption", "\uc635\uc158 \uc911\ubcf5 \uc0ac\uc6a9: {0}"}, {"appletviewer.main.err.dupoption", "\uC911\uBCF5\uB41C \uC635\uC158 \uC0AC\uC6A9: {0}"},
{"appletviewer.main.err.inputfile", "\uc9c0\uc815\ub41c \uc785\ub825 \ud30c\uc77c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."}, {"appletviewer.main.err.inputfile", "\uC9C0\uC815\uB41C \uC785\uB825 \uD30C\uC77C\uC774 \uC5C6\uC2B5\uB2C8\uB2E4."},
{"appletviewer.main.err.badurl", "\uc798\ubabb\ub41c URL: {0} ( {1} )"}, {"appletviewer.main.err.badurl", "\uC798\uBABB\uB41C URL: {0}({1})"},
{"appletviewer.main.err.io", "\uc77d\ub294 \uc911\uc5d0 I/O \uc608\uc678 \uc624\ub958: {0}"}, {"appletviewer.main.err.io", "\uC77D\uB294 \uC911 I/O \uC608\uC678 \uC0AC\uD56D \uBC1C\uC0DD: {0}"},
{"appletviewer.main.err.readablefile", "{0}\uc774(\uac00) \uc77d\uc744 \uc218 \uc788\ub294 \ud30c\uc77c\uc778\uc9c0 \ud655\uc778\ud558\uc2ed\uc2dc\uc624."}, {"appletviewer.main.err.readablefile", "{0}\uC774(\uAC00) \uD30C\uC77C\uC774\uBA70 \uC77D\uAE30 \uAC00\uB2A5\uD55C \uC0C1\uD0DC\uC778\uC9C0 \uD655\uC778\uD558\uC2ED\uC2DC\uC624."},
{"appletviewer.main.err.correcturl", "{0}\uc774(\uac00) \uc62c\ubc14\ub978 URL\uc785\ub2c8\uae4c?"}, {"appletviewer.main.err.correcturl", "{0}\uC774(\uAC00) \uC62C\uBC14\uB978 URL\uC785\uB2C8\uAE4C?"},
{"appletviewer.main.prop.store", "AppletViewer\uc5d0 \ub300\ud55c \ud2b9\uc815 \uc0ac\uc6a9\uc790 \ub4f1\ub85d \uc815\ubcf4"}, {"appletviewer.main.prop.store", "\uC0AC\uC6A9\uC790 \uAD00\uB828 AppletViewer \uC18D\uC131"},
{"appletviewer.main.err.prop.cantread", "\uc0ac\uc6a9\uc790 \ub4f1\ub85d \uc815\ubcf4 \ud30c\uc77c\uc744 \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"}, {"appletviewer.main.err.prop.cantread", "\uC0AC\uC6A9\uC790 \uC18D\uC131 \uD30C\uC77C\uC744 \uC77D\uC744 \uC218 \uC5C6\uC74C: {0}"},
{"appletviewer.main.err.prop.cantsave", "\uc0ac\uc6a9\uc790 \ub4f1\ub85d \uc815\ubcf4 \ud30c\uc77c\uc744 \uc800\uc7a5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"}, {"appletviewer.main.err.prop.cantsave", "\uC0AC\uC6A9\uC790 \uC18D\uC131 \uD30C\uC77C\uC744 \uC800\uC7A5\uD560 \uC218 \uC5C6\uC74C: {0}"},
{"appletviewer.main.warn.nosecmgr", "\uacbd\uace0: \ubcf4\uc548 \uc0ac\uc6a9 \ubd88\uac00"}, {"appletviewer.main.warn.nosecmgr", "\uACBD\uACE0: \uBCF4\uC548\uC744 \uC0AC\uC6A9 \uC548\uD568\uC73C\uB85C \uC124\uC815\uD558\uB294 \uC911\uC785\uB2C8\uB2E4."},
{"appletviewer.main.debug.cantfinddebug", "\ub514\ubc84\uac70\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!"}, {"appletviewer.main.debug.cantfinddebug", "\uB514\uBC84\uAC70\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4!"},
{"appletviewer.main.debug.cantfindmain", "\ub514\ubc84\uac70\uc5d0\uc11c \ud575\uc2ec \uba54\uc18c\ub4dc\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!"}, {"appletviewer.main.debug.cantfindmain", "\uB514\uBC84\uAC70\uC5D0\uC11C \uAE30\uBCF8 \uBA54\uC18C\uB4DC\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4!"},
{"appletviewer.main.debug.exceptionindebug", "\ub514\ubc84\uac70\uc5d0\uc11c \uc608\uc678!"}, {"appletviewer.main.debug.exceptionindebug", "\uB514\uBC84\uAC70\uC5D0 \uC608\uC678 \uC0AC\uD56D\uC774 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4!"},
{"appletviewer.main.debug.cantaccess", "\ub514\ubc84\uac70\ub97c \uc561\uc138\uc2a4\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!"}, {"appletviewer.main.debug.cantaccess", "\uB514\uBC84\uAC70\uC5D0 \uC561\uC138\uC2A4\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4!"},
{"appletviewer.main.nosecmgr", "\uacbd\uace0: SecurityManager\uac00 \uc124\uce58\ub418\uc5b4 \uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!"}, {"appletviewer.main.nosecmgr", "\uACBD\uACE0: SecurityManager\uAC00 \uC124\uCE58\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4!"},
{"appletviewer.main.warning", "\uacbd\uace0: \uc560\ud50c\ub9bf\uc744 \uc2dc\uc791\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4. <applet> \ud0dc\uadf8\uac00 \uc785\ub825\ub418\uc5b4 \uc788\ub294\uc9c0 \ud655\uc778\ud558\uc2ed\uc2dc\uc624."}, {"appletviewer.main.warning", "\uACBD\uACE0: \uC2DC\uC791\uB41C \uC560\uD50C\uB9BF\uC774 \uC5C6\uC2B5\uB2C8\uB2E4. <applet> \uD0DC\uADF8\uAC00 \uC785\uB825\uB418\uC5C8\uB294\uC9C0 \uD655\uC778\uD558\uC2ED\uC2DC\uC624."},
{"appletviewer.main.warn.prop.overwrite", "\uacbd\uace0: \uc0ac\uc6a9\uc790\uc758 \uc694\uad6c\uc5d0 \uc77c\uc2dc\uc801\uc73c\ub85c \uc2dc\uc2a4\ud15c \uc18d\uc131\uc744 \uacb9\uccd0\uc501\ub2c8\ub2e4: \ud0a4: {0} \uc774\uc804 \uac12: {1} \uc0c8\ub85c\uc6b4 \uac12: {2}"}, {"appletviewer.main.warn.prop.overwrite", "\uACBD\uACE0: \uC0AC\uC6A9\uC790\uC758 \uC694\uCCAD\uC5D0 \uB530\uB77C \uC77C\uC2DC\uC801\uC73C\uB85C \uC2DC\uC2A4\uD15C \uC18D\uC131\uC744 \uACB9\uCCD0 \uC4F0\uB294 \uC911: \uD0A4: {0}, \uC774\uC804 \uAC12: {1}, \uC0C8 \uAC12: {2}"},
{"appletviewer.main.warn.cantreadprops", "\uacbd\uace0: AppletViewer \ub4f1\ub85d \uc815\ubcf4 \ud30c\uc77c\uc744 \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}\uc774(\uac00) \uae30\ubcf8\uac12\uc73c\ub85c \uc0ac\uc6a9\ub429\ub2c8\ub2e4."}, {"appletviewer.main.warn.cantreadprops", "\uACBD\uACE0: AppletViewer \uC18D\uC131 \uD30C\uC77C\uC744 \uC77D\uC744 \uC218 \uC5C6\uC74C: {0}. \uAE30\uBCF8\uAC12\uC744 \uC0AC\uC6A9\uD558\uB294 \uC911\uC785\uB2C8\uB2E4."},
{"appletioexception.loadclass.throw.interrupted", "\ud074\ub798\uc2a4 \ub85c\ub4dc \uc911\ub2e8: {0}"}, {"appletioexception.loadclass.throw.interrupted", "\uD074\uB798\uC2A4 \uB85C\uB4DC\uAC00 \uC911\uB2E8\uB428: {0}"},
{"appletioexception.loadclass.throw.notloaded", "\ud074\ub798\uc2a4 \ub85c\ub4dc \uc2e4\ud328: {0}"}, {"appletioexception.loadclass.throw.notloaded", "\uD074\uB798\uC2A4\uAC00 \uB85C\uB4DC\uB418\uC9C0 \uC54A\uC74C: {0}"},
{"appletclassloader.loadcode.verbose", "{1}\uc744(\ub97c) \uac00\uc838\uc624\uae30 \uc704\ud574 stream\uc744 \uc5ec\ub294 \uc911: {0}"}, {"appletclassloader.loadcode.verbose", "{1}\uC744(\uB97C) \uAC00\uC838\uC624\uAE30 \uC704\uD574 {0}\uC5D0 \uB300\uD55C \uC2A4\uD2B8\uB9BC\uC744 \uC5EC\uB294 \uC911"},
{"appletclassloader.filenotfound", "\ucc3e\uace0 \uc788\ub294 \ud30c\uc77c\uc774 \uc5c6\uc74c: {0}"}, {"appletclassloader.filenotfound", "{0}\uC744(\uB97C) \uAC80\uC0C9\uD558\uB294 \uC911 \uD30C\uC77C\uC744 \uCC3E\uC9C0 \uBABB\uD588\uC2B5\uB2C8\uB2E4."},
{"appletclassloader.fileformat", "\ub85c\ub4dc\ud558\ub294 \uc911\uc5d0 \ud30c\uc77c \ud615\uc2dd \uc608\uc678 \uc624\ub958: {0}"}, {"appletclassloader.fileformat", "\uB85C\uB4DC \uC911 \uD30C\uC77C \uD615\uC2DD \uC608\uC678 \uC0AC\uD56D \uBC1C\uC0DD: {0}"},
{"appletclassloader.fileioexception", "\ub85c\ub4dc\ud558\ub294 \uc911\uc5d0 I/O \uc608\uc678 \uc624\ub958: {0}"}, {"appletclassloader.fileioexception", "\uB85C\uB4DC \uC911 I/O \uC608\uC678 \uC0AC\uD56D \uBC1C\uC0DD: {0}"},
{"appletclassloader.fileexception", "\ub85c\ub4dc\ud558\ub294 \uc911\uc5d0 {0} \uc608\uc678 \uc624\ub958: {1}"}, {"appletclassloader.fileexception", "\uB85C\uB4DC \uC911 {0} \uC608\uC678 \uC0AC\uD56D \uBC1C\uC0DD: {1}"},
{"appletclassloader.filedeath", "\ub85c\ub4dc\ud558\ub294 \uc911\uc5d0 {0} \uc0ad\uc81c: {1}"}, {"appletclassloader.filedeath", "\uB85C\uB4DC \uC911 {0}\uC774(\uAC00) \uC885\uB8CC\uB428: {1}"},
{"appletclassloader.fileerror", "\ub85c\ub4dc\ud558\ub294 \uc911\uc5d0 {0} \uc624\ub958: {1}"}, {"appletclassloader.fileerror", "\uB85C\uB4DC \uC911 {0} \uC624\uB958 \uBC1C\uC0DD: {1}"},
{"appletclassloader.findclass.verbose.findclass", "{0}\uc5d0\uc11c {1} \ud074\ub798\uc2a4\ub97c \ucc3e\uc2b5\ub2c8\ub2e4."}, {"appletclassloader.findclass.verbose.findclass", "{0}\uC774(\uAC00) {1} \uD074\uB798\uC2A4\uB97C \uCC3E\uC2B5\uB2C8\uB2E4."},
{"appletclassloader.findclass.verbose.openstream", "{1}\uc744(\ub97c) \uac00\uc838\uc624\uae30 \uc704\ud574 stream\uc744 \uc5ec\ub294 \uc911: {0}"}, {"appletclassloader.findclass.verbose.openstream", "{1}\uC744(\uB97C) \uAC00\uC838\uC624\uAE30 \uC704\uD574 {0}\uC5D0 \uB300\uD55C \uC2A4\uD2B8\uB9BC\uC744 \uC5EC\uB294 \uC911"},
{"appletclassloader.getresource.verbose.forname", "{0} \uc774\ub984\uc5d0 \ub300\ud55c AppletClassLoader.getResource"}, {"appletclassloader.getresource.verbose.forname", "\uC774\uB984\uC5D0 \uB300\uD55C AppletClassLoader.getResource: {0}"},
{"appletclassloader.getresource.verbose.found", "\uc2dc\uc2a4\ud15c \uc790\uc6d0\uc778 {0} \uc790\uc6d0\uc744 \ucc3e\uc558\uc2b5\ub2c8\ub2e4."}, {"appletclassloader.getresource.verbose.found", "\uC2DC\uC2A4\uD15C \uB9AC\uC18C\uC2A4\uB85C {0} \uB9AC\uC18C\uC2A4\uB97C \uCC3E\uC558\uC2B5\uB2C8\uB2E4."},
{"appletclassloader.getresourceasstream.verbose", "\uc2dc\uc2a4\ud15c \uc790\uc6d0\uc778 {0} \uc790\uc6d0\uc744 \ucc3e\uc558\uc2b5\ub2c8\ub2e4."}, {"appletclassloader.getresourceasstream.verbose", "\uC2DC\uC2A4\uD15C \uB9AC\uC18C\uC2A4\uB85C {0} \uB9AC\uC18C\uC2A4\uB97C \uCC3E\uC558\uC2B5\uB2C8\uB2E4."},
{"appletpanel.runloader.err", "\uac1c\uccb4 \ub610\ub294 \ucf54\ub4dc \ub9e4\uac1c\ubcc0\uc218\uc785\ub2c8\ub2e4!"}, {"appletpanel.runloader.err", "\uAC1D\uCCB4 \uB610\uB294 \uCF54\uB4DC \uB9E4\uAC1C\uBCC0\uC218\uC785\uB2C8\uB2E4!"},
{"appletpanel.runloader.exception", "{0}\uc758 \uc77c\ub828 \ubc88\ud638\ub97c \ud574\uc81c\ud558\ub294 \ub3d9\uc548 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4."}, {"appletpanel.runloader.exception", "{0}\uC758 \uC9C1\uB82C\uD654\uB97C \uD574\uC81C\uD558\uB294 \uC911 \uC608\uC678 \uC0AC\uD56D\uC774 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4."},
{"appletpanel.destroyed", "\uc560\ud50c\ub9bf\uc744 \uc0ad\uc81c\ud558\uc600\uc2b5\ub2c8\ub2e4."}, {"appletpanel.destroyed", "\uC560\uD50C\uB9BF\uC774 \uC0AD\uC81C\uB418\uC5C8\uC2B5\uB2C8\uB2E4."},
{"appletpanel.loaded", "\uc560\ud50c\ub9bf\uc744 \ub85c\ub4dc\ud558\uc600\uc2b5\ub2c8\ub2e4."}, {"appletpanel.loaded", "\uC560\uD50C\uB9BF\uC774 \uB85C\uB4DC\uB418\uC5C8\uC2B5\uB2C8\uB2E4."},
{"appletpanel.started", "\uc560\ud50c\ub9bf\uc744 \uc2dc\uc791\ud558\uc600\uc2b5\ub2c8\ub2e4."}, {"appletpanel.started", "\uC560\uD50C\uB9BF\uC774 \uC2DC\uC791\uB418\uC5C8\uC2B5\uB2C8\uB2E4."},
{"appletpanel.inited", "\uc560\ud50c\ub9bf\uc744 \ucd08\uae30\ud654\ud558\uc600\uc2b5\ub2c8\ub2e4."}, {"appletpanel.inited", "\uC560\uD50C\uB9BF\uC774 \uCD08\uAE30\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4."},
{"appletpanel.stopped", "\uc560\ud50c\ub9bf\uc744 \uba48\ucd94\uc5c8\uc2b5\ub2c8\ub2e4."}, {"appletpanel.stopped", "\uC560\uD50C\uB9BF\uC774 \uC815\uC9C0\uB418\uC5C8\uC2B5\uB2C8\uB2E4."},
{"appletpanel.disposed", "\uc560\ud50c\ub9bf\uc744 \ubc30\uc5f4\ud558\uc600\uc2b5\ub2c8\ub2e4."}, {"appletpanel.disposed", "\uC560\uD50C\uB9BF\uC774 \uBC30\uCE58\uB418\uC5C8\uC2B5\uB2C8\uB2E4."},
{"appletpanel.nocode", "\uc560\ud50c\ub9bf \ud0dc\uadf8\uc5d0\uc11c CODE \ub9e4\uac1c\ubcc0\uc218\ub97c \ube60\ub728\ub838\uc2b5\ub2c8\ub2e4."}, {"appletpanel.nocode", "APPLET \uD0DC\uADF8\uC5D0 CODE \uB9E4\uAC1C\uBCC0\uC218\uAC00 \uB204\uB77D\uB418\uC5C8\uC2B5\uB2C8\uB2E4."},
{"appletpanel.notfound", "load: class {0}\uc774(\uac00) \uc5c6\uc2b5\ub2c8\ub2e4."}, {"appletpanel.notfound", "\uB85C\uB4DC: {0} \uD074\uB798\uC2A4\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4."},
{"appletpanel.nocreate", "load: {0}\uc744(\ub97c) \uc778\uc2a4\ud134\uc2a4\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, {"appletpanel.nocreate", "\uB85C\uB4DC: {0}\uC744(\uB97C) \uC778\uC2A4\uD134\uC2A4\uD654\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4."},
{"appletpanel.noconstruct", "load: {0}\uc774(\uac00) public\uc774 \uc544\ub2c8\uac70\ub098 public \uc0dd\uc131\uc790\ub97c \uac00\uc9c0\uace0 \uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, {"appletpanel.noconstruct", "\uB85C\uB4DC: {0}\uC740(\uB294) \uACF5\uC6A9\uC774 \uC544\uB2C8\uAC70\uB098 \uACF5\uC6A9 \uC0DD\uC131\uC790\uB97C \uD3EC\uD568\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4."},
{"appletpanel.death", "\uc0ad\uc81c"}, {"appletpanel.death", "\uC885\uB8CC\uB428"},
{"appletpanel.exception", "\uc608\uc678 \uc624\ub958: {0}."}, {"appletpanel.exception", "\uC608\uC678 \uC0AC\uD56D: {0}."},
{"appletpanel.exception2", "{0} \uc608\uc678 \uc624\ub958: {1}."}, {"appletpanel.exception2", "\uC608\uC678 \uC0AC\uD56D: {0}: {1}."},
{"appletpanel.error", "\uc624\ub958: {0}."}, {"appletpanel.error", "\uC624\uB958: {0}."},
{"appletpanel.error2", "{0} \uc624\ub958: {1}."}, {"appletpanel.error2", "\uC624\uB958: {0}: {1}."},
{"appletpanel.notloaded", "Init: \uc560\ud50c\ub9bf\uc744 \ub85c\ub4dc\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."}, {"appletpanel.notloaded", "\uCD08\uAE30\uD654: \uC560\uD50C\uB9BF\uC774 \uB85C\uB4DC\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4."},
{"appletpanel.notinited", "Start: \uc560\ud50c\ub9bf\uc744 \ucd08\uae30\ud654\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."}, {"appletpanel.notinited", "\uC2DC\uC791: \uC560\uD50C\uB9BF\uC774 \uCD08\uAE30\uD654\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4."},
{"appletpanel.notstarted", "Stop: \uc560\ud50c\ub9bf\uc744 \uc2dc\uc791\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."}, {"appletpanel.notstarted", "\uC815\uC9C0: \uC560\uD50C\uB9BF\uC774 \uC2DC\uC791\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4."},
{"appletpanel.notstopped", "Destroy: \uc560\ud50c\ub9bf\uc744 \uba48\ucd94\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."}, {"appletpanel.notstopped", "\uC0AD\uC81C: \uC560\uD50C\uB9BF\uC774 \uC815\uC9C0\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4."},
{"appletpanel.notdestroyed", "Dispose: \uc560\ud50c\ub9bf\uc744 \uc9c0\uc6b0\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."}, {"appletpanel.notdestroyed", "\uBC30\uCE58: \uC560\uD50C\uB9BF\uC774 \uC0AD\uC81C\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4."},
{"appletpanel.notdisposed", "Load: \uc560\ud50c\ub9bf\uc744 \ubc30\uc5f4\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."}, {"appletpanel.notdisposed", "\uB85C\uB4DC: \uC560\uD50C\uB9BF\uC774 \uBC30\uCE58\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4."},
{"appletpanel.bail", "Interrupted: \uc560\ud50c\ub9bf\uc744 \uae34\uae09 \ubcf5\uad6c\ud558\ub294 \uc911\uc785\ub2c8\ub2e4."}, {"appletpanel.bail", "\uC911\uB2E8\uB428: \uC911\uB2E8\uD558\uB294 \uC911\uC785\uB2C8\uB2E4."},
{"appletpanel.filenotfound", "\ucc3e\uace0 \uc788\ub294 \ud30c\uc77c\uc774 \uc5c6\uc74c: {0}"}, {"appletpanel.filenotfound", "{0}\uC744(\uB97C) \uAC80\uC0C9\uD558\uB294 \uC911 \uD30C\uC77C\uC744 \uCC3E\uC9C0 \uBABB\uD588\uC2B5\uB2C8\uB2E4."},
{"appletpanel.fileformat", "\ub85c\ub4dc\ud558\ub294 \uc911\uc5d0 \ud30c\uc77c \ud615\uc2dd \uc608\uc678 \uc624\ub958: {0}"}, {"appletpanel.fileformat", "\uB85C\uB4DC \uC911 \uD30C\uC77C \uD615\uC2DD \uC608\uC678 \uC0AC\uD56D \uBC1C\uC0DD: {0}"},
{"appletpanel.fileioexception", "\ub85c\ub4dc\ud558\ub294 \uc911\uc5d0 I/O \uc608\uc678 \uc624\ub958: {0}"}, {"appletpanel.fileioexception", "\uB85C\uB4DC \uC911 I/O \uC608\uC678 \uC0AC\uD56D \uBC1C\uC0DD: {0}"},
{"appletpanel.fileexception", "\ub85c\ub4dc\ud558\ub294 \uc911\uc5d0 {0} \uc608\uc678 \uc624\ub958: {1}"}, {"appletpanel.fileexception", "\uB85C\uB4DC \uC911 {0} \uC608\uC678 \uC0AC\uD56D \uBC1C\uC0DD: {1}"},
{"appletpanel.filedeath", "\ub85c\ub4dc\ud558\ub294 \uc911\uc5d0 {0} \uc0ad\uc81c: {1}"}, {"appletpanel.filedeath", "\uB85C\uB4DC \uC911 {0}\uC774(\uAC00) \uC885\uB8CC\uB428: {1}"},
{"appletpanel.fileerror", "\ub85c\ub4dc\ud558\ub294 \uc911\uc5d0 {0} \uc624\ub958: {1}"}, {"appletpanel.fileerror", "\uB85C\uB4DC \uC911 {0} \uC624\uB958 \uBC1C\uC0DD: {1}"},
{"appletpanel.badattribute.exception", "HTML \uad6c\ubb38 \ubd84\uc11d: \uc798\ubabb\ub41c width/height \uc18d\uc131 \uac12"}, {"appletpanel.badattribute.exception", "HTML \uAD6C\uBB38 \uBD84\uC11D \uC911: width/height \uC18D\uC131\uC5D0 \uB300\uD55C \uAC12\uC774 \uC62C\uBC14\uB974\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4."},
{"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream\uc5d0\ub294 \ub110\uc774 \uc544\ub2cc \ub85c\ub354\uac00 \ud544\uc694\ud569\ub2c8\ub2e4."}, {"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream\uC5D0 \uB110\uC774 \uC544\uB2CC \uB85C\uB354\uAC00 \uD544\uC694\uD569\uB2C8\uB2E4."},
{"appletprops.title", "AppletViewer \ub4f1\ub85d \uc815\ubcf4"}, {"appletprops.title", "AppletViewer \uC18D\uC131"},
{"appletprops.label.http.server", "Http \ud504\ub85d\uc2dc \uc11c\ubc84:"}, {"appletprops.label.http.server", "HTTP \uD504\uB85D\uC2DC \uC11C\uBC84:"},
{"appletprops.label.http.proxy", "Http \ud504\ub85d\uc2dc \ud3ec\ud2b8:"}, {"appletprops.label.http.proxy", "HTTP \uD504\uB85D\uC2DC \uD3EC\uD2B8:"},
{"appletprops.label.network", "\ub124\ud2b8\uc6cc\ud06c \uc561\uc138\uc2a4:"}, {"appletprops.label.network", "\uB124\uD2B8\uC6CC\uD06C \uC561\uC138\uC2A4:"},
{"appletprops.choice.network.item.none", "\uc5c6\uc74c"}, {"appletprops.choice.network.item.none", "\uC5C6\uC74C"},
{"appletprops.choice.network.item.applethost", "\uc560\ud50c\ub9bf \ud638\uc2a4\ud2b8"}, {"appletprops.choice.network.item.applethost", "\uC560\uD50C\uB9BF \uD638\uC2A4\uD2B8"},
{"appletprops.choice.network.item.unrestricted", "\ubb34\uc81c\ud55c"}, {"appletprops.choice.network.item.unrestricted", "\uC81C\uD55C\uB418\uC9C0 \uC54A\uC74C"},
{"appletprops.label.class", "\ud074\ub798\uc2a4 \uc561\uc138\uc2a4"}, {"appletprops.label.class", "\uD074\uB798\uC2A4 \uC561\uC138\uC2A4:"},
{"appletprops.choice.class.item.restricted", "\uc81c\ud55c"}, {"appletprops.choice.class.item.restricted", "\uC81C\uD55C\uB428"},
{"appletprops.choice.class.item.unrestricted", "\ubb34\uc81c\ud55c"}, {"appletprops.choice.class.item.unrestricted", "\uC81C\uD55C\uB418\uC9C0 \uC54A\uC74C"},
{"appletprops.label.unsignedapplet", "\uc11c\uba85\ub418\uc9c0 \uc54a\uc740 \uc560\ud50c\ub9bf \ud5c8\uc6a9:"}, {"appletprops.label.unsignedapplet", "\uC11C\uBA85\uB418\uC9C0 \uC54A\uC740 \uC560\uD50C\uB9BF \uD5C8\uC6A9:"},
{"appletprops.choice.unsignedapplet.no", "\uc544\ub2c8\uc624"}, {"appletprops.choice.unsignedapplet.no", "\uC544\uB2C8\uC624"},
{"appletprops.choice.unsignedapplet.yes", "\uc608"}, {"appletprops.choice.unsignedapplet.yes", "\uC608"},
{"appletprops.button.apply", "\uc801\uc6a9"}, {"appletprops.button.apply", "\uC801\uC6A9"},
{"appletprops.button.cancel", "\ucde8\uc18c"}, {"appletprops.button.cancel", "\uCDE8\uC18C"},
{"appletprops.button.reset", "\uc7ac\uc124\uc815"}, {"appletprops.button.reset", "\uC7AC\uC124\uC815"},
{"appletprops.apply.exception", "{0} \ub4f1\ub85d \uc815\ubcf4\ub97c \uc800\uc7a5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, {"appletprops.apply.exception", "\uC18D\uC131 \uC800\uC7A5 \uC2E4\uD328: {0}"},
/* 4066432 */ /* 4066432 */
{"appletprops.title.invalidproxy", "\uc798\ubabb\ub41c \uc785\ub825"}, {"appletprops.title.invalidproxy", "\uBD80\uC801\uD569\uD55C \uD56D\uBAA9"},
{"appletprops.label.invalidproxy", "\ud504\ub85d\uc2dc \ud3ec\ud2b8\ub294 \uc591\uc758 \uc815\uc218\uac12\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4."}, {"appletprops.label.invalidproxy", "\uD504\uB85D\uC2DC \uD3EC\uD2B8\uB294 \uC591\uC758 \uC815\uC218 \uAC12\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4."},
{"appletprops.button.ok", "\ud655\uc778"}, {"appletprops.button.ok", "\uD655\uC778"},
/* end 4066432 */ /* end 4066432 */
{"appletprops.prop.store", "AppletViewer\uc5d0 \ub300\ud55c \ud2b9\uc815 \uc0ac\uc6a9\uc790 \ub4f1\ub85d \uc815\ubcf4"}, {"appletprops.prop.store", "\uC0AC\uC6A9\uC790 \uAD00\uB828 AppletViewer \uC18D\uC131"},
{"appletsecurityexception.checkcreateclassloader", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: classloader"}, {"appletsecurityexception.checkcreateclassloader", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: \uD074\uB798\uC2A4 \uB85C\uB354"},
{"appletsecurityexception.checkaccess.thread", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: thread"}, {"appletsecurityexception.checkaccess.thread", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: \uC2A4\uB808\uB4DC"},
{"appletsecurityexception.checkaccess.threadgroup", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: threadgroup: {0}"}, {"appletsecurityexception.checkaccess.threadgroup", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: \uC2A4\uB808\uB4DC \uADF8\uB8F9: {0}"},
{"appletsecurityexception.checkexit", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: exit: {0}"}, {"appletsecurityexception.checkexit", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: \uC885\uB8CC: {0}"},
{"appletsecurityexception.checkexec", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: exec: {0}"}, {"appletsecurityexception.checkexec", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: \uC2E4\uD589: {0}"},
{"appletsecurityexception.checklink", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: link: {0}"}, {"appletsecurityexception.checklink", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: \uB9C1\uD06C: {0}"},
{"appletsecurityexception.checkpropsaccess", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: properties"}, {"appletsecurityexception.checkpropsaccess", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: \uC18D\uC131"},
{"appletsecurityexception.checkpropsaccess.key", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: properties access {0}"}, {"appletsecurityexception.checkpropsaccess.key", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: \uC18D\uC131 \uC561\uC138\uC2A4 {0}"},
{"appletsecurityexception.checkread.exception1", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: {0}, {1}"}, {"appletsecurityexception.checkread.exception1", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: {0}, {1}"},
{"appletsecurityexception.checkread.exception2", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: file.read: {0}"}, {"appletsecurityexception.checkread.exception2", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: file.read: {0}"},
{"appletsecurityexception.checkread", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: file.read: {0} == {1}"}, {"appletsecurityexception.checkread", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: file.read: {0} == {1}"},
{"appletsecurityexception.checkwrite.exception", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: {0}, {1}"}, {"appletsecurityexception.checkwrite.exception", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: {0}, {1}"},
{"appletsecurityexception.checkwrite", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: file.write: {0} == {1}"}, {"appletsecurityexception.checkwrite", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: file.write: {0} == {1}"},
{"appletsecurityexception.checkread.fd", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: fd.read"}, {"appletsecurityexception.checkread.fd", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: fd.read"},
{"appletsecurityexception.checkwrite.fd", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: fd.write"}, {"appletsecurityexception.checkwrite.fd", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: fd.write"},
{"appletsecurityexception.checklisten", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: socket.listen: {0}"}, {"appletsecurityexception.checklisten", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: socket.listen: {0}"},
{"appletsecurityexception.checkaccept", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: socket.accept: {0}:{1}"}, {"appletsecurityexception.checkaccept", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: socket.accept: {0}:{1}"},
{"appletsecurityexception.checkconnect.networknone", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: socket.connect: {0}->{1}"}, {"appletsecurityexception.checkconnect.networknone", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: socket.connect: {0}->{1}"},
{"appletsecurityexception.checkconnect.networkhost1", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: {1}\uc744(\ub97c) \uae30\uc810\uc73c\ub85c \ud558\uc5ec {0}\uc5d0 \uc5f0\uacb0\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, {"appletsecurityexception.checkconnect.networkhost1", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: {1}\uC5D0\uC11C {0}\uC5D0 \uC811\uC18D\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4."},
{"appletsecurityexception.checkconnect.networkhost2", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: {0} \ub610\ub294 {1} \ud638\uc2a4\ud2b8\uc758 IP \uc8fc\uc18c\ub97c \ud574\ub3c5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. "}, {"appletsecurityexception.checkconnect.networkhost2", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: {0} \uD638\uC2A4\uD2B8 \uB610\uB294 {1}\uC5D0 \uB300\uD55C IP\uB97C \uBD84\uC11D\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. "},
{"appletsecurityexception.checkconnect.networkhost3", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: {0} \ud638\uc2a4\ud2b8\uc758 IP \uc8fc\uc18c\ub97c \ud574\ub3c5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. trustProxy \ub4f1\ub85d \uc815\ubcf4\ub97c \ucc38\uc870\ud558\uc2ed\uc2dc\uc624."}, {"appletsecurityexception.checkconnect.networkhost3", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: {0} \uD638\uC2A4\uD2B8\uC5D0 \uB300\uD55C IP\uB97C \uBD84\uC11D\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. trustProxy \uC18D\uC131\uC744 \uCC38\uC870\uD558\uC2ED\uC2DC\uC624."},
{"appletsecurityexception.checkconnect", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: connect: {0}->{1}"}, {"appletsecurityexception.checkconnect", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: \uC811\uC18D: {0}->{1}"},
{"appletsecurityexception.checkpackageaccess", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: {0} \ud328\ud0a4\uc9c0\ub97c \uc561\uc138\uc2a4\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, {"appletsecurityexception.checkpackageaccess", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: \uD328\uD0A4\uC9C0\uC5D0 \uC561\uC138\uC2A4\uD560 \uC218 \uC5C6\uC74C: {0}"},
{"appletsecurityexception.checkpackagedefinition", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: {0} \ud328\ud0a4\uc9c0\ub97c \uc815\uc758\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, {"appletsecurityexception.checkpackagedefinition", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: \uD328\uD0A4\uC9C0\uB97C \uC815\uC758\uD560 \uC218 \uC5C6\uC74C: {0}"},
{"appletsecurityexception.cannotsetfactory", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: factory\ub97c \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, {"appletsecurityexception.cannotsetfactory", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: \uD329\uD1A0\uB9AC\uB97C \uC124\uC815\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4."},
{"appletsecurityexception.checkmemberaccess", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: \ud56d\ubaa9 \uc561\uc138\uc2a4\ub97c \ud655\uc778\ud558\uc2ed\uc2dc\uc624."}, {"appletsecurityexception.checkmemberaccess", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: \uBA64\uBC84 \uC561\uC138\uC2A4\uB97C \uD655\uC778\uD558\uC2ED\uC2DC\uC624."},
{"appletsecurityexception.checkgetprintjob", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: getPrintJob"}, {"appletsecurityexception.checkgetprintjob", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: getPrintJob"},
{"appletsecurityexception.checksystemclipboardaccess", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: getSystemClipboard"}, {"appletsecurityexception.checksystemclipboardaccess", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: getSystemClipboard"},
{"appletsecurityexception.checkawteventqueueaccess", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: getEventQueue"}, {"appletsecurityexception.checkawteventqueueaccess", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: getEventQueue"},
{"appletsecurityexception.checksecurityaccess", "\ubcf4\uc548 \uc608\uc678 \uc624\ub958: security operation: {0}"}, {"appletsecurityexception.checksecurityaccess", "\uBCF4\uC548 \uC608\uC678 \uC0AC\uD56D: \uBCF4\uC548 \uC791\uC5C5: {0}"},
{"appletsecurityexception.getsecuritycontext.unknown", "\uc54c \uc218 \uc5c6\ub294 \ud074\ub798\uc2a4\ub85c\ub354 \uc720\ud615\uc774\ubbc0\ub85c GetContext\ub97c \ud655\uc778\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, {"appletsecurityexception.getsecuritycontext.unknown", "\uC54C \uC218 \uC5C6\uB294 \uD074\uB798\uC2A4 \uB85C\uB354 \uC720\uD615\uC785\uB2C8\uB2E4. getContext\uB97C \uD655\uC778\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4."},
{"appletsecurityexception.checkread.unknown", "\uc54c \uc218 \uc5c6\ub294 \ud074\ub798\uc2a4\ub85c\ub354 \uc720\ud615\uc774\ubbc0\ub85c {0}\uc744 \ud655\uc778\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, {"appletsecurityexception.checkread.unknown", "\uC54C \uC218 \uC5C6\uB294 \uD074\uB798\uC2A4 \uB85C\uB354 \uC720\uD615\uC785\uB2C8\uB2E4. {0} \uC77D\uAE30\uB97C \uD655\uC778\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4."},
{"appletsecurityexception.checkconnect.unknown", "\uc54c \uc218 \uc5c6\ub294 \ud074\ub798\uc2a4\ub85c\ub354 \uc720\ud615\uc774\ubbc0\ub85c checking connect\ub97c \ud655\uc778\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, {"appletsecurityexception.checkconnect.unknown", "\uC54C \uC218 \uC5C6\uB294 \uD074\uB798\uC2A4 \uB85C\uB354 \uC720\uD615\uC785\uB2C8\uB2E4. \uC811\uC18D\uC744 \uD655\uC778\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4."},
}; };
return temp;
} }
} }

View file

@ -29,173 +29,175 @@ import java.util.ListResourceBundle;
public class MsgAppletViewer_pt_BR extends ListResourceBundle { public class MsgAppletViewer_pt_BR extends ListResourceBundle {
public Object[][] getContents() { public Object[][] getContents() {
return new Object[][] { Object[][] temp = new Object[][] {
{"textframe.button.dismiss", "Rejeitar"}, {"textframe.button.dismiss", "Rejeitar"},
{"appletviewer.tool.title", "Visualizador de applet: {0}"}, {"appletviewer.tool.title", "Visualizador do Applet: {0}"},
{"appletviewer.menu.applet", "Applet"}, {"appletviewer.menu.applet", "Applet"},
{"appletviewer.menuitem.restart", "Reiniciar"}, {"appletviewer.menuitem.restart", "Reiniciar"},
{"appletviewer.menuitem.reload", "Recarregar"}, {"appletviewer.menuitem.reload", "Recarregar"},
{"appletviewer.menuitem.stop", "Parar"}, {"appletviewer.menuitem.stop", "Interromper"},
{"appletviewer.menuitem.save", "Salvar..."}, {"appletviewer.menuitem.save", "Salvar"},
{"appletviewer.menuitem.start", "Iniciar"}, {"appletviewer.menuitem.start", "Iniciar"},
{"appletviewer.menuitem.clone", "Clonar..."}, {"appletviewer.menuitem.clone", "Clonar..."},
{"appletviewer.menuitem.tag", "Marca..."}, {"appletviewer.menuitem.tag", "Tag..."},
{"appletviewer.menuitem.info", "Info..."}, {"appletviewer.menuitem.info", "Informa\u00E7\u00F5es..."},
{"appletviewer.menuitem.edit", "Editar"}, {"appletviewer.menuitem.edit", "Editar"},
{"appletviewer.menuitem.encoding", "Codifica\u00e7\u00e3o de caracteres"}, {"appletviewer.menuitem.encoding", "Codifica\u00E7\u00E3o do Caractere"},
{"appletviewer.menuitem.print", "Imprimir..."}, {"appletviewer.menuitem.print", "Imprimir..."},
{"appletviewer.menuitem.props", "Propriedades..."}, {"appletviewer.menuitem.props", "Propriedades..."},
{"appletviewer.menuitem.close", "Fechar"}, {"appletviewer.menuitem.close", "Fechar"},
{"appletviewer.menuitem.quit", "Sair"}, {"appletviewer.menuitem.quit", "Sair"},
{"appletviewer.label.hello", "Ol\u00e1..."}, {"appletviewer.label.hello", "Ol\u00E1..."},
{"appletviewer.status.start", "iniciando applet..."}, {"appletviewer.status.start", "iniciando o applet..."},
{"appletviewer.appletsave.filedialogtitle","Serializar applet no arquivo"}, {"appletviewer.appletsave.filedialogtitle","Serializar Applet no Arquivo"},
{"appletviewer.appletsave.err1", "serializando um {0} para {1}"}, {"appletviewer.appletsave.err1", "serializando um {0} para {1}"},
{"appletviewer.appletsave.err2", "em appletSave: {0}"}, {"appletviewer.appletsave.err2", "no appletSave: {0}"},
{"appletviewer.applettag", "Marca exibida"}, {"appletviewer.applettag", "Tag mostrada"},
{"appletviewer.applettag.textframe", "Marca HTML do applet"}, {"appletviewer.applettag.textframe", "Tag HTML do Applet"},
{"appletviewer.appletinfo.applet", "-- sem informa\u00e7\u00f5es do applet --"}, {"appletviewer.appletinfo.applet", "-- nenhuma informa\u00E7\u00E3o do applet --"},
{"appletviewer.appletinfo.param", "-- sem informa\u00e7\u00f5es do par\u00e2metro --"}, {"appletviewer.appletinfo.param", "-- sem informa\u00E7\u00E3o de par\u00E2metro --"},
{"appletviewer.appletinfo.textframe", "Informa\u00e7\u00f5es do applet"}, {"appletviewer.appletinfo.textframe", "Informa\u00E7\u00F5es do Applet"},
{"appletviewer.appletprint.fail", "Falha na impress\u00e3o."}, {"appletviewer.appletprint.fail", "Falha na impress\u00E3o."},
{"appletviewer.appletprint.finish", "Impress\u00e3o finalizada."}, {"appletviewer.appletprint.finish", "Impress\u00E3o finalizada."},
{"appletviewer.appletprint.cancel", "Impress\u00e3o cancelada."}, {"appletviewer.appletprint.cancel", "Impress\u00E3o cancelada."},
{"appletviewer.appletencoding", "Codifica\u00e7\u00e3o de caracteres: {0}"}, {"appletviewer.appletencoding", "Codifica\u00E7\u00E3o de Caractere: {0}"},
{"appletviewer.parse.warning.requiresname", "Aviso: a marca <param name=... value=...> requer nome do atributo."}, {"appletviewer.parse.warning.requiresname", "Advert\u00EAncia: a tag <param name=... value=...> requer um atributo de nome."},
{"appletviewer.parse.warning.paramoutside", "Aviso: marca <param> fora de <applet> ... </applet>."}, {"appletviewer.parse.warning.paramoutside", "Advert\u00EAncia: a tag <param> externa <applet> ... </applet>."},
{"appletviewer.parse.warning.applet.requirescode", "Aviso: marca <applet> requer c\u00f3digo de atributo."}, {"appletviewer.parse.warning.applet.requirescode", "Advert\u00EAncia: a tag <applet> requer um atributo de c\u00F3digo."},
{"appletviewer.parse.warning.applet.requiresheight", "Aviso: marca <applet> requer atributo de altura."}, {"appletviewer.parse.warning.applet.requiresheight", "Advert\u00EAncia: a tag <applet> requer um atributo de altura."},
{"appletviewer.parse.warning.applet.requireswidth", "Aviso: marca <applet> requer atributo de largura."}, {"appletviewer.parse.warning.applet.requireswidth", "Advert\u00EAncia: a tag <applet> requer um atributo de largura."},
{"appletviewer.parse.warning.object.requirescode", "Aviso: marca <object> requer c\u00f3digo de atributo."}, {"appletviewer.parse.warning.object.requirescode", "Advert\u00EAncia: a tag <object> requer um atributo de c\u00F3digo."},
{"appletviewer.parse.warning.object.requiresheight", "Aviso: marca <object> requer atributo de altura."}, {"appletviewer.parse.warning.object.requiresheight", "Advert\u00EAncia: a tag <object> requer um atributo de altura."},
{"appletviewer.parse.warning.object.requireswidth", "Aviso: marca <object> requer atributo de largura."}, {"appletviewer.parse.warning.object.requireswidth", "Advert\u00EAncia: a tag <object> requer um atributo de largura."},
{"appletviewer.parse.warning.embed.requirescode", "Aviso: marca <embed> requer c\u00f3digo de atributo."}, {"appletviewer.parse.warning.embed.requirescode", "Advert\u00EAncia: a tag <embed> requer um atributo de c\u00F3digo."},
{"appletviewer.parse.warning.embed.requiresheight", "Aviso: marca <embed> requer atributo de altura."}, {"appletviewer.parse.warning.embed.requiresheight", "Advert\u00EAncia: a tag <embed> requer um atributo de altura."},
{"appletviewer.parse.warning.embed.requireswidth", "Aviso: marca <embed> requer atributo de largura."}, {"appletviewer.parse.warning.embed.requireswidth", "Advert\u00EAncia: a tag <embed> requer um atributo de largura."},
{"appletviewer.parse.warning.appnotLongersupported", "Aviso: marca <app> n\u00e3o mais suportada, usar <applet> em seu lugar:"}, {"appletviewer.parse.warning.appnotLongersupported", "Advert\u00EAncia: a tag <app> n\u00E3o \u00E9 mais suportada; use <applet>:"},
{"appletviewer.usage", "Uso: url(s) de <options> do visualizador de applets\n\nem que <options> inclui:\n -debug inicia o visualizador de applet no depurador Java\n -encoding <encoding> especifica a codifica\u00e7\u00e3o de caracteres usada pelos arquivos HTML\n -J<runtime flag> passa o argumento para o int\u00e9rprete de java\n\nA op\u00e7\u00e3o -J n\u00e3o \u00e9 padr\u00e3o e est\u00e1 sujeita a altera\u00e7\u00f5es sem aviso."}, {"appletviewer.usage", "Uso: appletviewer <op\u00E7\u00F5es> url(s)\n\nem que as <op\u00E7\u00F5es> incluem:\n -debug Inicia o visualizador do applet no depurador Java\n -encoding <codifica\u00E7\u00E3o> Especifica a codifica\u00E7\u00E3o de caractere usada pelos arquivos HTML\n -J<flag de runtime> Informa o argumento ao intepretador java\n\nA op\u00E7\u00E3o -J n\u00E3o \u00E9 padr\u00E3o e est\u00E1 sujeita \u00E0 altera\u00E7\u00E3o sem notifica\u00E7\u00E3o."},
{"appletviewer.main.err.unsupportedopt", "Op\u00e7\u00e3o n\u00e3o suportada: {0}"}, {"appletviewer.main.err.unsupportedopt", "Op\u00E7\u00E3o n\u00E3o suportada: {0}"},
{"appletviewer.main.err.unrecognizedarg", "Argumento n\u00e3o reconhecido: {0}"}, {"appletviewer.main.err.unrecognizedarg", "Argumento n\u00E3o reconhecido: {0}"},
{"appletviewer.main.err.dupoption", "Uso duplicado da op\u00e7\u00e3o: {0}"}, {"appletviewer.main.err.dupoption", "Uso duplicado da op\u00E7\u00E3o: {0}"},
{"appletviewer.main.err.inputfile", "Nenhum arquivo de entrada especificado."}, {"appletviewer.main.err.inputfile", "Nenhum arquivo de entrada especificado."},
{"appletviewer.main.err.badurl", "URL incorreto: {0} ( {1} )"}, {"appletviewer.main.err.badurl", "URL Inv\u00E1lido: {0} ( {1} )"},
{"appletviewer.main.err.io", "Exce\u00e7\u00e3o de E/S durante a leitura: {0}"}, {"appletviewer.main.err.io", "Exce\u00E7\u00E3o de E/S ao ler: {0}"},
{"appletviewer.main.err.readablefile", "Certifique-se de que {0} seja um arquivo e seja leg\u00edvel."}, {"appletviewer.main.err.readablefile", "Certifique-se de que {0} seja um arquivo e seja leg\u00EDvel."},
{"appletviewer.main.err.correcturl", "{0} \u00e9 o URL correto?"}, {"appletviewer.main.err.correcturl", "O URL {0} est\u00E1 correto?"},
{"appletviewer.main.prop.store", "Propriedades espec\u00edficas do usu\u00e1rio para AppletViewer"}, {"appletviewer.main.prop.store", "Propriedades espec\u00EDficas do usu\u00E1rio do AppletViewer"},
{"appletviewer.main.err.prop.cantread", "N\u00e3o \u00e9 poss\u00edvel ler o arquivo de propriedades do usu\u00e1rio: {0}"}, {"appletviewer.main.err.prop.cantread", "N\u00E3o \u00E9 poss\u00EDvel ler o arquivo de propriedades do usu\u00E1rio: {0}"},
{"appletviewer.main.err.prop.cantsave", "N\u00e3o \u00e9 poss\u00edvel salvar o arquivo de propriedades do usu\u00e1rio: {0}"}, {"appletviewer.main.err.prop.cantsave", "N\u00E3o \u00E9 poss\u00EDvel salvar o arquivo de propriedades do usu\u00E1rio: {0}"},
{"appletviewer.main.warn.nosecmgr", "Aviso: desabilitando a seguran\u00e7a."}, {"appletviewer.main.warn.nosecmgr", "Advert\u00EAncia: desativando a seguran\u00E7a."},
{"appletviewer.main.debug.cantfinddebug", "N\u00e3o \u00e9 poss\u00edvel localizar o depurador!"}, {"appletviewer.main.debug.cantfinddebug", "N\u00E3o \u00E9 poss\u00EDvel localizar o depurador!"},
{"appletviewer.main.debug.cantfindmain", "N\u00e3o \u00e9 poss\u00edvel localizar o m\u00e9todo principal no depurador!"}, {"appletviewer.main.debug.cantfindmain", "N\u00E3o \u00E9 poss\u00EDvel localizar o m\u00E9todo principal no depurador!"},
{"appletviewer.main.debug.exceptionindebug", "Exce\u00e7\u00e3o no depurador!"}, {"appletviewer.main.debug.exceptionindebug", "Exce\u00E7\u00E3o no depurador!"},
{"appletviewer.main.debug.cantaccess", "N\u00e3o \u00e9 poss\u00edvel acessar o depurador!"}, {"appletviewer.main.debug.cantaccess", "N\u00E3o \u00E9 poss\u00EDvel acessar o depurador!"},
{"appletviewer.main.nosecmgr", "Aviso: SecurityManager n\u00e3o instalado!"}, {"appletviewer.main.nosecmgr", "Advert\u00EAncia: SecurityManager n\u00E3o instalado!"},
{"appletviewer.main.warning", "Aviso: nenhum applet foi iniciado. Certifique-se de que a entrada contenha uma marca <applet>."}, {"appletviewer.main.warning", "Advert\u00EAncia: Nenhum applet iniciado. Certifique-se de que a entrada contenha uma tag <applet>."},
{"appletviewer.main.warn.prop.overwrite", "Aviso: substituindo temporariamente a propriedade do sistema em solicita\u00e7\u00e3o do usu\u00e1rio: chave: {0} valor antigo: {1} valor novo: {2}"}, {"appletviewer.main.warn.prop.overwrite", "Advert\u00EAncia: Substituindo a propriedade do sistema temporariamente a pedido do usu\u00E1rio: chave: {0} valor antigo: {1} valor novo: {2}"},
{"appletviewer.main.warn.cantreadprops", "Aviso: n\u00e3o \u00e9 poss\u00edvel ler o arquivo de propriedades do AppletViewer: {0} usando padr\u00f5es."}, {"appletviewer.main.warn.cantreadprops", "Advert\u00EAncia: N\u00E3o \u00E9 poss\u00EDvel ler o arquivo de propriedades AppletViewer: {0} Usando defaults."},
{"appletioexception.loadclass.throw.interrupted", "carregamento de classe interrompido: {0}"}, {"appletioexception.loadclass.throw.interrupted", "carregamento de classe interrompido: {0}"},
{"appletioexception.loadclass.throw.notloaded", "classe n\u00e3o carregada: {0}"}, {"appletioexception.loadclass.throw.notloaded", "classe n\u00E3o carregada: {0}"},
{"appletclassloader.loadcode.verbose", "Abrindo fluxo para: {0} para obter {1}"}, {"appletclassloader.loadcode.verbose", "Fluxo de abertura para: {0} para obter {1}"},
{"appletclassloader.filenotfound", "Arquivo n\u00e3o encontrado ao procurar por: {0}"}, {"appletclassloader.filenotfound", "Arquivo n\u00E3o encontrado ao procurar: {0}"},
{"appletclassloader.fileformat", "Exce\u00e7\u00e3o de formato de arquivo ao carregar: {0}"}, {"appletclassloader.fileformat", "Exce\u00E7\u00E3o de formato do arquivo ao carregar: {0}"},
{"appletclassloader.fileioexception", "Exce\u00e7\u00e3o de E/S ao carregar: {0}"}, {"appletclassloader.fileioexception", "Exce\u00E7\u00E3o de E/S ao carregar: {0}"},
{"appletclassloader.fileexception", "Exce\u00e7\u00e3o {0} ao carregar: {0}"}, {"appletclassloader.fileexception", "exce\u00E7\u00E3o de {0} ao carregar: {1}"},
{"appletclassloader.filedeath", "{0} eliminado ao carregar: {1}"}, {"appletclassloader.filedeath", "{0} eliminado ao carregar: {1}"},
{"appletclassloader.fileerror", "Erro {0} ao carregar: {1}"}, {"appletclassloader.fileerror", "erro de {0} ao carregar: {1}"},
{"appletclassloader.findclass.verbose.findclass", "{0} encontra classe {1}"}, {"appletclassloader.findclass.verbose.findclass", "{0} localizar classe {1}"},
{"appletclassloader.findclass.verbose.openstream", "Abrindo fluxo para: {0} para obter {1}"}, {"appletclassloader.findclass.verbose.openstream", "Fluxo de abertura para: {0} para obter {1}"},
{"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource do nome: {0}"}, {"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource do nome: {0}"},
{"appletclassloader.getresource.verbose.found", "Recurso encontrado: {0} como um recurso do sistema"}, {"appletclassloader.getresource.verbose.found", "Recurso encontrado: {0} como um recurso do sistema"},
{"appletclassloader.getresourceasstream.verbose", "Recurso encontrado: {0} como um recurso do sistema"}, {"appletclassloader.getresourceasstream.verbose", "Recurso encontrado: {0} como um recurso do sistema"},
{"appletpanel.runloader.err", "Par\u00e2metro de c\u00f3digo ou objeto!"}, {"appletpanel.runloader.err", "Par\u00E2metro de c\u00F3digo ou objeto!"},
{"appletpanel.runloader.exception", "exce\u00e7\u00e3o ao desserializar {0}"}, {"appletpanel.runloader.exception", "exce\u00E7\u00E3o ao desserializar {0}"},
{"appletpanel.destroyed", "Applet destru\u00eddo."}, {"appletpanel.destroyed", "Applet destru\u00EDdo."},
{"appletpanel.loaded", "Applet carregado."}, {"appletpanel.loaded", "Applet carregado."},
{"appletpanel.started", "Applet iniciado."}, {"appletpanel.started", "Applet iniciado."},
{"appletpanel.inited", "Applet inicializado."}, {"appletpanel.inited", "Applet inicializado."},
{"appletpanel.stopped", "Applet interrompido."}, {"appletpanel.stopped", "Applet interrompido."},
{"appletpanel.disposed", "Applet descartado."}, {"appletpanel.disposed", "Applet descartado."},
{"appletpanel.nocode", "Marca APPLET ausente no par\u00e2metro CODE."}, {"appletpanel.nocode", "A tag APPLET n\u00E3o encontrou o par\u00E2metro CODE."},
{"appletpanel.notfound", "carregar: classe {0} n\u00e3o encontrada."}, {"appletpanel.notfound", "carga: classe {0} n\u00E3o encontrada."},
{"appletpanel.nocreate", "carregar: {0} n\u00e3o pode ser instanciado."}, {"appletpanel.nocreate", "carga: {0} n\u00E3o pode ser instanciada."},
{"appletpanel.noconstruct", "carregar: {0} n\u00e3o \u00e9 p\u00fablico ou n\u00e3o possui um construtor p\u00fablico."}, {"appletpanel.noconstruct", "carga: {0} n\u00E3o \u00E9 p\u00FAblica ou n\u00E3o tem construtor p\u00FAblico."},
{"appletpanel.death", "eliminado"}, {"appletpanel.death", "eliminado"},
{"appletpanel.exception", "exce\u00e7\u00e3o: {0}."}, {"appletpanel.exception", "exce\u00E7\u00E3o: {0}."},
{"appletpanel.exception2", "exce\u00e7\u00e3o: {0}: {1}."}, {"appletpanel.exception2", "exce\u00E7\u00E3o: {0}: {1}."},
{"appletpanel.error", "erro: {0}."}, {"appletpanel.error", "erro: {0}."},
{"appletpanel.error2", "erro: {0}: {1}."}, {"appletpanel.error2", "erro: {0}: {1}."},
{"appletpanel.notloaded", "Inicializar: applet n\u00e3o carregado."}, {"appletpanel.notloaded", "Inic: applet n\u00E3o carregado."},
{"appletpanel.notinited", "Iniciar: applet n\u00e3o inicializado."}, {"appletpanel.notinited", "Iniciar: applet n\u00E3o inicializado."},
{"appletpanel.notstarted", "Parar: applet n\u00e3o iniciado."}, {"appletpanel.notstarted", "Interromper: applet n\u00E3o inicializado."},
{"appletpanel.notstopped", "Destruir: applet n\u00e3o interrompido."}, {"appletpanel.notstopped", "Destruir: applet n\u00E3o interrompido."},
{"appletpanel.notdestroyed", "Descartar: applet n\u00e3o destru\u00eddo."}, {"appletpanel.notdestroyed", "Descartar: applet n\u00E3o destru\u00EDdo."},
{"appletpanel.notdisposed", "Carregar: applet n\u00e3o descartado."}, {"appletpanel.notdisposed", "Carregar: applet n\u00E3o descartado."},
{"appletpanel.bail", "Interrompido: salvando."}, {"appletpanel.bail", "Interrompido: esvaziando."},
{"appletpanel.filenotfound", "Arquivo n\u00e3o encontrado ao procurar por: {0}"}, {"appletpanel.filenotfound", "Arquivo n\u00E3o encontrado ao procurar: {0}"},
{"appletpanel.fileformat", "Exce\u00e7\u00e3o de formato de arquivo ao carregar: {0}"}, {"appletpanel.fileformat", "Exce\u00E7\u00E3o de formato do arquivo ao carregar: {0}"},
{"appletpanel.fileioexception", "Exce\u00e7\u00e3o de E/S ao carregar: {0}"}, {"appletpanel.fileioexception", "Exce\u00E7\u00E3o de E/S ao carregar: {0}"},
{"appletpanel.fileexception", "Exce\u00e7\u00e3o {0} ao carregar: {0}"}, {"appletpanel.fileexception", "exce\u00E7\u00E3o de {0} ao carregar: {1}"},
{"appletpanel.filedeath", "{0} eliminado ao carregar: {1}"}, {"appletpanel.filedeath", "{0} eliminado ao carregar: {1}"},
{"appletpanel.fileerror", "Erro {0} ao carregar: {1}"}, {"appletpanel.fileerror", "erro de {0} ao carregar: {1}"},
{"appletpanel.badattribute.exception", "An\u00e1lise de HTML: valor incorreto do atributo de largura/altura"}, {"appletpanel.badattribute.exception", "Parse de HTML: valor incorreto do atributo de largura/altura"},
{"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream requer carregador n\u00e3o nulo"}, {"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream requer um carregador n\u00E3o nulo"},
{"appletprops.title", "Propriedades do AppletViewer"}, {"appletprops.title", "Propriedades do AppletViewer"},
{"appletprops.label.http.server", "Servidor proxy de http:"}, {"appletprops.label.http.server", "Servidor proxy Http:"},
{"appletprops.label.http.proxy", "Porta do proxy de http:"}, {"appletprops.label.http.proxy", "Porta proxy Http:"},
{"appletprops.label.network", "Acesso \u00e0 rede:"}, {"appletprops.label.network", "Acesso de rede:"},
{"appletprops.choice.network.item.none", "Nenhum"}, {"appletprops.choice.network.item.none", "Nenhum"},
{"appletprops.choice.network.item.applethost", "Host do applet"}, {"appletprops.choice.network.item.applethost", "Host do Applet"},
{"appletprops.choice.network.item.unrestricted", "N\u00e3o registrado"}, {"appletprops.choice.network.item.unrestricted", "Irrestrito"},
{"appletprops.label.class", "Acesso \u00e0 classe:"}, {"appletprops.label.class", "Acesso \u00E0 classe:"},
{"appletprops.choice.class.item.restricted", "Restrito"}, {"appletprops.choice.class.item.restricted", "Restrito"},
{"appletprops.choice.class.item.unrestricted", "N\u00e3o registrado"}, {"appletprops.choice.class.item.unrestricted", "Irrestrito"},
{"appletprops.label.unsignedapplet", "Permitir applets n\u00e3o assinados:"}, {"appletprops.label.unsignedapplet", "Permitir applets n\u00E3o assinados:"},
{"appletprops.choice.unsignedapplet.no", "N\u00e3o"}, {"appletprops.choice.unsignedapplet.no", "N\u00E3o"},
{"appletprops.choice.unsignedapplet.yes", "Sim"}, {"appletprops.choice.unsignedapplet.yes", "Sim"},
{"appletprops.button.apply", "Aplicar"}, {"appletprops.button.apply", "Aplicar"},
{"appletprops.button.cancel", "Cancelar"}, {"appletprops.button.cancel", "Cancelar"},
{"appletprops.button.reset", "Redefinir"}, {"appletprops.button.reset", "Redefinir"},
{"appletprops.apply.exception", "Falha ao salvar propriedades: {0}"}, {"appletprops.apply.exception", "Falha ao salvar as propriedades: {0}"},
/* 4066432 */ /* 4066432 */
{"appletprops.title.invalidproxy", "Entrada inv\u00e1lida"}, {"appletprops.title.invalidproxy", "Entrada Inv\u00E1lida"},
{"appletprops.label.invalidproxy", "A porta do proxy deve ser um valor inteiro positivo."}, {"appletprops.label.invalidproxy", "A Porta Proxy deve ser um valor inteiro positivo."},
{"appletprops.button.ok", "OK"}, {"appletprops.button.ok", "OK"},
/* end 4066432 */ /* end 4066432 */
{"appletprops.prop.store", "Propriedades espec\u00edficas do usu\u00e1rio para AppletViewer"}, {"appletprops.prop.store", "Propriedades espec\u00EDficas do usu\u00E1rio do AppletViewer"},
{"appletsecurityexception.checkcreateclassloader", "Exce\u00e7\u00e3o de seguran\u00e7a: classloader"}, {"appletsecurityexception.checkcreateclassloader", "Exce\u00E7\u00E3o de Seguran\u00E7a: carregador de classes"},
{"appletsecurityexception.checkaccess.thread", "Exce\u00e7\u00e3o de seguran\u00e7a: thread"}, {"appletsecurityexception.checkaccess.thread", "Exce\u00E7\u00E3o de Seguran\u00E7a: thread"},
{"appletsecurityexception.checkaccess.threadgroup", "Exce\u00e7\u00e3o de seguran\u00e7a: threadgroup: {0}"}, {"appletsecurityexception.checkaccess.threadgroup", "Exce\u00E7\u00E3o de Seguran\u00E7a: grupo de threads: {0}"},
{"appletsecurityexception.checkexit", "Exce\u00e7\u00e3o de seguran\u00e7a: exit: {0}"}, {"appletsecurityexception.checkexit", "Exce\u00E7\u00E3o de Seguran\u00E7a: sa\u00EDda: {0}"},
{"appletsecurityexception.checkexec", "Exce\u00e7\u00e3o de seguran\u00e7a: exec: {0}"}, {"appletsecurityexception.checkexec", "Exce\u00E7\u00E3o de Seguran\u00E7a: exec.: {0}"},
{"appletsecurityexception.checklink", "Exce\u00e7\u00e3o de seguran\u00e7a: link: {0}"}, {"appletsecurityexception.checklink", "Exce\u00E7\u00E3o de Seguran\u00E7a: link: {0}"},
{"appletsecurityexception.checkpropsaccess", "Exce\u00e7\u00e3o de seguran\u00e7a: properties"}, {"appletsecurityexception.checkpropsaccess", "Exce\u00E7\u00E3o de Seguran\u00E7a: propriedades"},
{"appletsecurityexception.checkpropsaccess.key", "Exce\u00e7\u00e3o de seguran\u00e7a: properties access {0}"}, {"appletsecurityexception.checkpropsaccess.key", "Exce\u00E7\u00E3o de Seguran\u00E7a: acesso \u00E0s propriedades {0}"},
{"appletsecurityexception.checkread.exception1", "Exce\u00e7\u00e3o de seguran\u00e7a: {0}, {1}"}, {"appletsecurityexception.checkread.exception1", "Exce\u00E7\u00E3o de Seguran\u00E7a: {0}, {1}"},
{"appletsecurityexception.checkread.exception2", "Exce\u00e7\u00e3o de seguran\u00e7a: file.read: {0}"}, {"appletsecurityexception.checkread.exception2", "Exce\u00E7\u00E3o de Seguran\u00E7a: file.read: {0}"},
{"appletsecurityexception.checkread", "Exce\u00e7\u00e3o de seguran\u00e7a: file.read: {0} == {1}"}, {"appletsecurityexception.checkread", "Exce\u00E7\u00E3o de Seguran\u00E7a: file.read: {0} == {1}"},
{"appletsecurityexception.checkwrite.exception", "Exce\u00e7\u00e3o de seguran\u00e7a: {0}, {1}"}, {"appletsecurityexception.checkwrite.exception", "Exce\u00E7\u00E3o de Seguran\u00E7a: {0}, {1}"},
{"appletsecurityexception.checkwrite", "Exce\u00e7\u00e3o de seguran\u00e7a: file.write: {0} == {1}"}, {"appletsecurityexception.checkwrite", "Exce\u00E7\u00E3o de Seguran\u00E7a: file.write: {0} == {1}"},
{"appletsecurityexception.checkread.fd", "Exce\u00e7\u00e3o de seguran\u00e7a: fd.read"}, {"appletsecurityexception.checkread.fd", "Exce\u00E7\u00E3o de Seguran\u00E7a: fd.read"},
{"appletsecurityexception.checkwrite.fd", "Exce\u00e7\u00e3o de seguran\u00e7a: fd.write"}, {"appletsecurityexception.checkwrite.fd", "Exce\u00E7\u00E3o de Seguran\u00E7a: fd.write"},
{"appletsecurityexception.checklisten", "Exce\u00e7\u00e3o de seguran\u00e7a: socket.listen: {0}"}, {"appletsecurityexception.checklisten", "Exce\u00E7\u00E3o de Seguran\u00E7a: socket.listen: {0}"},
{"appletsecurityexception.checkaccept", "Exce\u00e7\u00e3o de seguran\u00e7a: socket.accept: {0} == {1}"}, {"appletsecurityexception.checkaccept", "Exce\u00E7\u00E3o de Seguran\u00E7a: socket.accept: {0}:{1}"},
{"appletsecurityexception.checkconnect.networknone", "Exce\u00e7\u00e3o de seguran\u00e7a: socket.connect: {0} == {1}"}, {"appletsecurityexception.checkconnect.networknone", "Exce\u00E7\u00E3o de Seguran\u00E7a: socket.connect: {0}->{1}"},
{"appletsecurityexception.checkconnect.networkhost1", "Exce\u00e7\u00e3o de seguran\u00e7a: n\u00e3o foi poss\u00edvel conectar a {0} com a origem de {1}."}, {"appletsecurityexception.checkconnect.networkhost1", "Exce\u00E7\u00E3o de Seguran\u00E7a: N\u00E3o foi poss\u00EDvel estabelecer conex\u00E3o com {0} com a origem de {1}."},
{"appletsecurityexception.checkconnect.networkhost2", "Exce\u00e7\u00e3o de seguran\u00e7a: n\u00e3o foi poss\u00edvel resolver o IP para o host {0} ou para {1}. "}, {"appletsecurityexception.checkconnect.networkhost2", "Exce\u00E7\u00E3o de Seguran\u00E7a: N\u00E3o foi poss\u00EDvel resolver o IP para o host {0} ou para {1}. "},
{"appletsecurityexception.checkconnect.networkhost3", "Exce\u00e7\u00e3o de seguran\u00e7a: n\u00e3o foi poss\u00edvel resolver o IP para o host {0}. Consulte a propriedade trustProxy."}, {"appletsecurityexception.checkconnect.networkhost3", "Exce\u00E7\u00E3o de Seguran\u00E7a: N\u00E3o foi poss\u00EDvel resolver o IP para o host {0}. Consulte a propriedade trustProxy."},
{"appletsecurityexception.checkconnect", "Exce\u00e7\u00e3o de seguran\u00e7a: connect: {0}->{1}"}, {"appletsecurityexception.checkconnect", "Exce\u00E7\u00E3o de Seguran\u00E7a: conectar: {0}->{1}"},
{"appletsecurityexception.checkpackageaccess", "Exce\u00e7\u00e3o de seguran\u00e7a: n\u00e3o \u00e9 poss\u00edvel acessar o pacote: {0}"}, {"appletsecurityexception.checkpackageaccess", "Exce\u00E7\u00E3o de Seguran\u00E7a: n\u00E3o \u00E9 poss\u00EDvel acessar o pacote: {0}"},
{"appletsecurityexception.checkpackagedefinition", "Exce\u00e7\u00e3o de seguran\u00e7a: n\u00e3o \u00e9 poss\u00edvel definir o pacote: {0}"}, {"appletsecurityexception.checkpackagedefinition", "Exce\u00E7\u00E3o de Seguran\u00E7a: n\u00E3o \u00E9 poss\u00EDvel definir o pacote: {0}"},
{"appletsecurityexception.cannotsetfactory", "Exce\u00e7\u00e3o de seguran\u00e7a: n\u00e3o \u00e9 poss\u00edvel definir a f\u00e1brica"}, {"appletsecurityexception.cannotsetfactory", "Exce\u00E7\u00E3o de Seguran\u00E7a: n\u00E3o \u00E9 poss\u00EDvel definir o factory"},
{"appletsecurityexception.checkmemberaccess", "Exce\u00e7\u00e3o de seguran\u00e7a: verificar acesso de membro"}, {"appletsecurityexception.checkmemberaccess", "Exce\u00E7\u00E3o de Seguran\u00E7a: verificar acesso do membro"},
{"appletsecurityexception.checkgetprintjob", "Exce\u00e7\u00e3o de seguran\u00e7a: getPrintJob"}, {"appletsecurityexception.checkgetprintjob", "Exce\u00E7\u00E3o de Seguran\u00E7a: getPrintJob"},
{"appletsecurityexception.checksystemclipboardaccess", "Exce\u00e7\u00e3o de seguran\u00e7a: getSystemClipboard"}, {"appletsecurityexception.checksystemclipboardaccess", "Exce\u00E7\u00E3o de Seguran\u00E7a: getSystemClipboard"},
{"appletsecurityexception.checkawteventqueueaccess", "Exce\u00e7\u00e3o de seguran\u00e7a: getEventQueue"}, {"appletsecurityexception.checkawteventqueueaccess", "Exce\u00E7\u00E3o de Seguran\u00E7a: getEventQueue"},
{"appletsecurityexception.checksecurityaccess", "Exce\u00e7\u00e3o de seguran\u00e7a: opera\u00e7\u00e3o de seguran\u00e7a: {0}"}, {"appletsecurityexception.checksecurityaccess", "Exce\u00E7\u00E3o de Seguran\u00E7a: opera\u00E7\u00E3o de seguran\u00E7a: {0}"},
{"appletsecurityexception.getsecuritycontext.unknown", "tipo desconhecido de carregador de classe. n\u00e3o \u00e9 poss\u00edvel verificar para getContext"}, {"appletsecurityexception.getsecuritycontext.unknown", "tipo de carregador de classe desconhecido. n\u00E3o \u00E9 poss\u00EDvel verificar getContext"},
{"appletsecurityexception.checkread.unknown", "tipo desconhecido de carregador de classe. n\u00e3o \u00e9 poss\u00edvel verificar para verifica\u00e7\u00e3o de leitura {0}"}, {"appletsecurityexception.checkread.unknown", "tipo de carregador de classe desconhecido. n\u00E3o \u00E9 poss\u00EDvel verificar a leitura {0}"},
{"appletsecurityexception.checkconnect.unknown", "tipo desconhecido de carregador de classe. n\u00e3o \u00e9 poss\u00edvel verificar para verifica\u00e7\u00e3o de conex\u00e3o"}, {"appletsecurityexception.checkconnect.unknown", "tipo de carregador de classe desconhecido. n\u00E3o \u00E9 poss\u00EDvel verificar a conex\u00E3o"},
}; };
return temp;
} }
} }

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -29,173 +29,175 @@ import java.util.ListResourceBundle;
public class MsgAppletViewer_sv extends ListResourceBundle { public class MsgAppletViewer_sv extends ListResourceBundle {
public Object[][] getContents() { public Object[][] getContents() {
return new Object[][] { Object[][] temp = new Object[][] {
{"textframe.button.dismiss", "St\u00e4ng"}, {"textframe.button.dismiss", "St\u00E4ng"},
{"appletviewer.tool.title", "Applet Viewer: {0}"}, {"appletviewer.tool.title", "Applet Viewer: {0}"},
{"appletviewer.menu.applet", "Applet"}, {"appletviewer.menu.applet", "Applet"},
{"appletviewer.menuitem.restart", "Starta om"}, {"appletviewer.menuitem.restart", "Starta om"},
{"appletviewer.menuitem.reload", "L\u00e4s in igen"}, {"appletviewer.menuitem.reload", "Ladda om"},
{"appletviewer.menuitem.stop", "Stoppa"}, {"appletviewer.menuitem.stop", "Stopp"},
{"appletviewer.menuitem.save", "Spara ..."}, {"appletviewer.menuitem.save", "Spara..."},
{"appletviewer.menuitem.start", "Starta"}, {"appletviewer.menuitem.start", "Starta"},
{"appletviewer.menuitem.clone", "Klona ..."}, {"appletviewer.menuitem.clone", "Klona..."},
{"appletviewer.menuitem.tag", "Tagga ..."}, {"appletviewer.menuitem.tag", "Tagg..."},
{"appletviewer.menuitem.info", "Info ..."}, {"appletviewer.menuitem.info", "Information..."},
{"appletviewer.menuitem.edit", "Redigera"}, {"appletviewer.menuitem.edit", "Redigera"},
{"appletviewer.menuitem.encoding", "Teckenkodning"}, {"appletviewer.menuitem.encoding", "Teckenkodning"},
{"appletviewer.menuitem.print", "Skriv ut ..."}, {"appletviewer.menuitem.print", "Skriv ut..."},
{"appletviewer.menuitem.props", "Egenskaper ..."}, {"appletviewer.menuitem.props", "Egenskaper..."},
{"appletviewer.menuitem.close", "St\u00e4ng"}, {"appletviewer.menuitem.close", "St\u00E4ng"},
{"appletviewer.menuitem.quit", "Avsluta"}, {"appletviewer.menuitem.quit", "Avsluta"},
{"appletviewer.label.hello", "Hall\u00e5 ..."}, {"appletviewer.label.hello", "Hej..."},
{"appletviewer.status.start", "startar applet ..."}, {"appletviewer.status.start", "startar applet..."},
{"appletviewer.appletsave.filedialogtitle","Ordna appletar seriellt i filen"}, {"appletviewer.appletsave.filedialogtitle","Serialisera applet till fil"},
{"appletviewer.appletsave.err1", "serialiserar en {0} till {1}"}, {"appletviewer.appletsave.err1", "serialiserar {0} till {1}"},
{"appletviewer.appletsave.err2", "i appletSave: {0}"}, {"appletviewer.appletsave.err2", "i appletSave: {0}"},
{"appletviewer.applettag", "Visad tagg"}, {"appletviewer.applettag", "Tagg visas"},
{"appletviewer.applettag.textframe", "HTML-tagg f\u00f6r applet"}, {"appletviewer.applettag.textframe", "HTML-tagg f\u00F6r applet"},
{"appletviewer.appletinfo.applet", "-- ingen applet-info --"}, {"appletviewer.appletinfo.applet", "-- ingen appletinformation --"},
{"appletviewer.appletinfo.param", "-- ingen parameterinfo --"}, {"appletviewer.appletinfo.param", "-- ingen parameterinformation --"},
{"appletviewer.appletinfo.textframe", "Applet-info"}, {"appletviewer.appletinfo.textframe", "Appletinformation"},
{"appletviewer.appletprint.fail", "Utskrift misslyckades."}, {"appletviewer.appletprint.fail", "Kunde inte skriva ut."},
{"appletviewer.appletprint.finish", "Utskriften \u00e4r klar."}, {"appletviewer.appletprint.finish", "Utskriften klar."},
{"appletviewer.appletprint.cancel", "Utskriften avbr\u00f6ts."}, {"appletviewer.appletprint.cancel", "Utskriften avbruten."},
{"appletviewer.appletencoding", "Teckenkodning: {0}"}, {"appletviewer.appletencoding", "Teckenkodning: {0}"},
{"appletviewer.parse.warning.requiresname", "Varning: Taggen <param name=... value=...> kr\u00e4ver ett namnattribut."}, {"appletviewer.parse.warning.requiresname", "Varning: <param name=... value=...>-taggen kr\u00E4ver ett namnattribut."},
{"appletviewer.parse.warning.paramoutside", "Varning: Taggen <param> utanf\u00f6r <applet> ... </applet>."}, {"appletviewer.parse.warning.paramoutside", "Varning: <param>-taggen finns utanf\u00F6r <applet> ... </applet>."},
{"appletviewer.parse.warning.applet.requirescode", "Varning: <applet> Taggen kr\u00e4ver kodattribut."}, {"appletviewer.parse.warning.applet.requirescode", "Varning: <applet>-taggen kr\u00E4ver ett kodattribut."},
{"appletviewer.parse.warning.applet.requiresheight", "Varning: <applet> Taggen kr\u00e4ver h\u00f6jdattribut."}, {"appletviewer.parse.warning.applet.requiresheight", "Varning: <applet>-taggen kr\u00E4ver ett h\u00F6jdattribut."},
{"appletviewer.parse.warning.applet.requireswidth", "Varning: <applet> Taggen kr\u00e4ver breddattribut."}, {"appletviewer.parse.warning.applet.requireswidth", "Varning: <applet>-taggen kr\u00E4ver ett breddattribut."},
{"appletviewer.parse.warning.object.requirescode", "Varning: <object> Taggen kr\u00e4ver kodattribut."}, {"appletviewer.parse.warning.object.requirescode", "Varning: <object>-taggen kr\u00E4ver ett kodattribut."},
{"appletviewer.parse.warning.object.requiresheight", "Varning: <object> Taggen kr\u00e4ver h\u00f6jdattribut."}, {"appletviewer.parse.warning.object.requiresheight", "Varning: <object>-taggen kr\u00E4ver ett h\u00F6jdattribut."},
{"appletviewer.parse.warning.object.requireswidth", "Varning: <object> koden kr\u00e4ver breddattribut."}, {"appletviewer.parse.warning.object.requireswidth", "Varning: <object>-taggen kr\u00E4ver ett breddattribut."},
{"appletviewer.parse.warning.embed.requirescode", "Varning: <embed> koden kr\u00e4ver programkodattribut."}, {"appletviewer.parse.warning.embed.requirescode", "Varning: <embed>-taggen kr\u00E4ver ett kodattribut."},
{"appletviewer.parse.warning.embed.requiresheight", "Varning: <embed> koden kr\u00e4ver h\u00f6jdattribut."}, {"appletviewer.parse.warning.embed.requiresheight", "Varning: <embed>-taggen kr\u00E4ver ett h\u00F6jdattribut."},
{"appletviewer.parse.warning.embed.requireswidth", "Varning: <embed> koden kr\u00e4ver breddattribut."}, {"appletviewer.parse.warning.embed.requireswidth", "Varning: <embed>-taggen kr\u00E4ver ett breddattribut."},
{"appletviewer.parse.warning.appnotLongersupported", "Varning: Taggen <app> st\u00f6ds inte l\u00e4ngre, anv\u00e4nd <applet> ist\u00e4llet:"}, {"appletviewer.parse.warning.appnotLongersupported", "Varning: <app>-taggen st\u00F6ds inte l\u00E4ngre, anv\u00E4nd <applet> ist\u00E4llet:"},
{"appletviewer.usage", "Syntax: appletviewer <alternativ> url(s)\n\nd\u00e4r <alternativ> omfattar:\n -debug Starta applet-granskaren i Java-fels\u00f6karen\n -encoding <kodning> Ange teckenkodningen som anv\u00e4nds av HTML-filer\n -J<k\u00f6rtidsflagga> Skicka argumentet till Java-tolken\n\nAlternativet -J \u00e4r inte ett standardalternativ och kan \u00e4ndras utan f\u00f6reg\u00e5ende meddelande."}, {"appletviewer.usage", "Syntax: URL:er f\u00F6r appletviewer-<alternativ>.\n\nF\u00F6ljande <alternativ> finns:\n -debug Startar appletvisning i Java-fels\u00F6kningen\n -encoding <kodning> Anger teckenkodning som anv\u00E4nds i HTML-filer\n -J<k\u00F6rningsflagga> \u00D6verf\u00F6r argument till Java-tolkningen\n\nAlternativet -J \u00E4r inte standard och kan \u00E4ndras utan f\u00F6reg\u00E5ende meddelande."},
{"appletviewer.main.err.unsupportedopt", "Alternativet st\u00f6ds inte: {0}"}, {"appletviewer.main.err.unsupportedopt", "Alternativ som inte st\u00F6ds: {0}"},
{"appletviewer.main.err.unrecognizedarg", "Ok\u00e4nt argument: {0}"}, {"appletviewer.main.err.unrecognizedarg", "Ok\u00E4nt argument: {0}"},
{"appletviewer.main.err.dupoption", "Alternativet \u00e4r duplicerat: {0}"}, {"appletviewer.main.err.dupoption", "Duplicerat alternativ: {0}"},
{"appletviewer.main.err.inputfile", "Inga indatafiler har angetts."}, {"appletviewer.main.err.inputfile", "Inga angivna indatafiler."},
{"appletviewer.main.err.badurl", "Felaktig URL: {0} ( {1} )"}, {"appletviewer.main.err.badurl", "Felaktig URL: {0} ( {1} )"},
{"appletviewer.main.err.io", "I/O-undantag vid l\u00e4sning: {0}"}, {"appletviewer.main.err.io", "I/O-undantag vid l\u00E4sning: {0}"},
{"appletviewer.main.err.readablefile", "Kontrollera att {0} \u00e4r en l\u00e4sbar fil."}, {"appletviewer.main.err.readablefile", "Kontrollera att {0} \u00E4r en fil som \u00E4r l\u00E4sbar."},
{"appletviewer.main.err.correcturl", "\u00c4r {0} r\u00e4tt URL?"}, {"appletviewer.main.err.correcturl", "\u00C4r {0} den korrekta URL:en?"},
{"appletviewer.main.prop.store", "Anv\u00e4ndarspecifika egenskaper f\u00f6r AppletViewer"}, {"appletviewer.main.prop.store", "Anv\u00E4ndarspecifika egenskaper f\u00F6r AppletViewer"},
{"appletviewer.main.err.prop.cantread", "Det g\u00e5r inte att l\u00e4sa filen med anv\u00e4ndaregenskaper: {0}"}, {"appletviewer.main.err.prop.cantread", "Kan inte l\u00E4sa egenskapsfilen: {0}"},
{"appletviewer.main.err.prop.cantsave", "Det g\u00e5r inte att spara filen med anv\u00e4ndaregenskaper: {0}"}, {"appletviewer.main.err.prop.cantsave", "Kan inte spara egenskapsfilen: {0}"},
{"appletviewer.main.warn.nosecmgr", "Varning: avaktiverar s\u00e4kerheten."}, {"appletviewer.main.warn.nosecmgr", "Varning: s\u00E4kerheten inaktiveras."},
{"appletviewer.main.debug.cantfinddebug", "Det g\u00e5r inte att hitta fels\u00f6karen!"}, {"appletviewer.main.debug.cantfinddebug", "Hittar inte fels\u00F6kningsprogrammet!"},
{"appletviewer.main.debug.cantfindmain", "Det g\u00e5r inte att hitta huvudmetod i fels\u00f6karen!"}, {"appletviewer.main.debug.cantfindmain", "Hittar inte huvudmetoden i fels\u00F6kningsprogrammet!"},
{"appletviewer.main.debug.exceptionindebug", "Undantagsavbrott i fels\u00f6karen!"}, {"appletviewer.main.debug.exceptionindebug", "Undantag i fels\u00F6kningsprogrammet!"},
{"appletviewer.main.debug.cantaccess", "Det g\u00e5r inte att h\u00e4mta fels\u00f6karen!"}, {"appletviewer.main.debug.cantaccess", "Det finns ingen \u00E5tkomst till fels\u00F6kningsprogrammet!"},
{"appletviewer.main.nosecmgr", "Varning: SecurityManager har inte installerats!"}, {"appletviewer.main.nosecmgr", "Varning: SecurityManager har inte installerats!"},
{"appletviewer.main.warning", "Varning: Inga appletar startades. Kontrollera att indata inneh\u00e5ller en <applet>-tagg."}, {"appletviewer.main.warning", "Varning: Inga appletar har startats. Kontrollera att indata inneh\u00E5ller <applet>-tagg."},
{"appletviewer.main.warn.prop.overwrite", "Varning: Skriver tillf\u00e4lligt \u00f6ver systemegenskap p\u00e5 anv\u00e4ndarens beg\u00e4ran: nyckel: {0} gammalt v\u00e4rde: {1} nytt v\u00e4rde: {2}"}, {"appletviewer.main.warn.prop.overwrite", "Varning: Skriver tillf\u00E4lligt \u00F6ver systemegenskap enligt beg\u00E4ran fr\u00E5n anv\u00E4ndare: nyckel: {0} gammalt v\u00E4rde: {1} nytt v\u00E4rde: {2}"},
{"appletviewer.main.warn.cantreadprops", "Varning: Det g\u00e5r inte att l\u00e4sa egenskapsfilen till AppletViewer: {0} Anv\u00e4nder standardv\u00e4rden."}, {"appletviewer.main.warn.cantreadprops", "Varning: Kan inte l\u00E4sa egenskapsfil f\u00F6r AppletViewer: {0} Standardv\u00E4rden anv\u00E4nds."},
{"appletioexception.loadclass.throw.interrupted", "klassinl\u00e4sning avbr\u00f6ts: {0}"}, {"appletioexception.loadclass.throw.interrupted", "klassinl\u00E4sning avbr\u00F6ts: {0}"},
{"appletioexception.loadclass.throw.notloaded", "klassen har inte l\u00e4sts in: {0}"}, {"appletioexception.loadclass.throw.notloaded", "klass inte inl\u00E4st: {0}"},
{"appletclassloader.loadcode.verbose", "\u00d6ppnar str\u00f6m till: {0} f\u00f6r att f\u00e5 {1}"}, {"appletclassloader.loadcode.verbose", "\u00D6ppnar str\u00F6m till: {0} f\u00F6r h\u00E4mtning av {1}"},
{"appletclassloader.filenotfound", "Fil saknas vid s\u00f6kning efter: {0}"}, {"appletclassloader.filenotfound", "Hittade inte fil vid s\u00F6kning efter: {0}"},
{"appletclassloader.fileformat", "Filformatundantag vid inl\u00e4sning: {0}"}, {"appletclassloader.fileformat", "Undantag av filformat vid l\u00E4sning av: {0}"},
{"appletclassloader.fileioexception", "I/O-undantag vid inl\u00e4sning: {0}"}, {"appletclassloader.fileioexception", "I/O-undantag vid l\u00E4sning: {0}"},
{"appletclassloader.fileexception", "{0}-undantag vid inl\u00e4sning: {1}"}, {"appletclassloader.fileexception", "{0} undantag vid l\u00E4sning: {1}"},
{"appletclassloader.filedeath", "{0} avslutades vid inl\u00e4sning: {1}"}, {"appletclassloader.filedeath", "{0} avslutad vid l\u00E4sning: {1}"},
{"appletclassloader.fileerror", "{0} fel vid inl\u00e4sning: {1}"}, {"appletclassloader.fileerror", "{0} fel vid l\u00E4sning: {1}"},
{"appletclassloader.findclass.verbose.findclass", "{0} s\u00f6k klass {1}"}, {"appletclassloader.findclass.verbose.findclass", "{0} hittar klass {1}"},
{"appletclassloader.findclass.verbose.openstream", "\u00d6ppnar str\u00f6m till: {0} f\u00f6r att f\u00e5 {1}"}, {"appletclassloader.findclass.verbose.openstream", "\u00D6ppnar str\u00F6m till: {0} f\u00F6r h\u00E4mtning av {1}"},
{"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource f\u00f6r namnet {0}"}, {"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource f\u00F6r namnet: {0}"},
{"appletclassloader.getresource.verbose.found", "Hittade resursen {0} som en systemresurs"}, {"appletclassloader.getresource.verbose.found", "Hittade resursen: {0} som systemresurs"},
{"appletclassloader.getresourceasstream.verbose", "Hittade resursen {0} som en systemresurs"}, {"appletclassloader.getresourceasstream.verbose", "Hittade resursen: {0} som systemresurs"},
{"appletpanel.runloader.err", "Antingen objekt- eller kodparameter!"}, {"appletpanel.runloader.err", "Antingen objekt- eller kodparameter!"},
{"appletpanel.runloader.exception", "undantag vid avserialisering {0}"}, {"appletpanel.runloader.exception", "undantag vid avserialisering {0}"},
{"appletpanel.destroyed", "Appleten f\u00f6rst\u00f6rd."}, {"appletpanel.destroyed", "Applet raderad."},
{"appletpanel.loaded", "Appleten \u00e4r inl\u00e4st."}, {"appletpanel.loaded", "Applet laddad."},
{"appletpanel.started", "Appleten har startat."}, {"appletpanel.started", "Applet startad."},
{"appletpanel.inited", "Appleten har initierats."}, {"appletpanel.inited", "Applet initierad."},
{"appletpanel.stopped", "Appleten har stoppats."}, {"appletpanel.stopped", "Applet stoppad."},
{"appletpanel.disposed", "Appleten har sl\u00e4ngts."}, {"appletpanel.disposed", "Applet kasserad."},
{"appletpanel.nocode", "Taggen APPLET saknar parametern CODE."}, {"appletpanel.nocode", "APPLET-tagg saknar CODE-parameter."},
{"appletpanel.notfound", "inl\u00e4sning: klassen {0} finns inte."}, {"appletpanel.notfound", "load: hittade inte klassen {0}."},
{"appletpanel.nocreate", "inl\u00e4sning: kan inte skapa instans av {0}."}, {"appletpanel.nocreate", "load: {0} kan inte instansieras."},
{"appletpanel.noconstruct", "inl\u00e4sning: {0} \u00e4r inte allm\u00e4n eller har ingen allm\u00e4n konstruktor."}, {"appletpanel.noconstruct", "load: {0} \u00E4r inte allm\u00E4n eller saknar allm\u00E4n konstruktor."},
{"appletpanel.death", "avslutad"}, {"appletpanel.death", "avslutad"},
{"appletpanel.exception", "undantag: {0}."}, {"appletpanel.exception", "undantag: {0}."},
{"appletpanel.exception2", "undantag: {0}: {1}."}, {"appletpanel.exception2", "undantag: {0}: {1}."},
{"appletpanel.error", "fel: {0}."}, {"appletpanel.error", "fel: {0}."},
{"appletpanel.error2", "fel: {0}: {1}."}, {"appletpanel.error2", "fel {0}: {1}."},
{"appletpanel.notloaded", "Init: appleten har inte l\u00e4sts in."}, {"appletpanel.notloaded", "Initiera: applet \u00E4r inte inl\u00E4st."},
{"appletpanel.notinited", "Start: appleten har inte initierats."}, {"appletpanel.notinited", "Starta: applet \u00E4r inte initierad."},
{"appletpanel.notstarted", "Stopp: appleten har inte startats."}, {"appletpanel.notstarted", "Stoppa: applet har inte startats."},
{"appletpanel.notstopped", "Destruktion: appleten har inte stoppats."}, {"appletpanel.notstopped", "Radera: applet har inte stoppats."},
{"appletpanel.notdestroyed", "Sl\u00e4ng: appleten har inte f\u00f6rst\u00f6rts."}, {"appletpanel.notdestroyed", "Kassera: applet har inte raderats."},
{"appletpanel.notdisposed", "Inl\u00e4sning: appletten har inte sl\u00e4ngts."}, {"appletpanel.notdisposed", "Ladda: applet har inte kasserats."},
{"appletpanel.bail", "Avbruten: avaktiverar."}, {"appletpanel.bail", "Avbruten."},
{"appletpanel.filenotfound", "Fil saknas vid s\u00f6kning efter: {0}"}, {"appletpanel.filenotfound", "Hittade inte fil vid s\u00F6kning efter: {0}"},
{"appletpanel.fileformat", "Filformatundantag vid inl\u00e4sning: {0}"}, {"appletpanel.fileformat", "Undantag av filformat vid l\u00E4sning av: {0}"},
{"appletpanel.fileioexception", "I/O-undantag vid inl\u00e4sning: {0}"}, {"appletpanel.fileioexception", "I/O-undantag vid l\u00E4sning: {0}"},
{"appletpanel.fileexception", "{0}-undantag vid inl\u00e4sning: {1}"}, {"appletpanel.fileexception", "{0} undantag vid l\u00E4sning: {1}"},
{"appletpanel.filedeath", "{0} avslutades vid inl\u00e4sning: {1}"}, {"appletpanel.filedeath", "{0} avslutad vid l\u00E4sning: {1}"},
{"appletpanel.fileerror", "{0} fel vid inl\u00e4sning: {1}"}, {"appletpanel.fileerror", "{0} fel vid l\u00E4sning: {1}"},
{"appletpanel.badattribute.exception", "Html-tolkning: felaktigt v\u00e4rde f\u00f6r h\u00f6jd-breddattribut"}, {"appletpanel.badattribute.exception", "HTML-tolkning: felaktigt v\u00E4rde f\u00F6r bredd-/h\u00F6jdattribut"},
{"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream kr\u00e4ver inl\u00e4sare som inte \u00e4r tom"}, {"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream kr\u00E4ver laddare med icke-null"},
{"appletprops.title", "Egenskaper f\u00f6r AppletViewer"}, {"appletprops.title", "AppletViewer-egenskaper"},
{"appletprops.label.http.server", "Proxy-server f\u00f6r HTTP:"}, {"appletprops.label.http.server", "HTTP-proxyserver:"},
{"appletprops.label.http.proxy", "HTTP-proxyns port:"}, {"appletprops.label.http.proxy", "HTTP-proxyport:"},
{"appletprops.label.network", "N\u00e4tverks\u00e5tkomst:"}, {"appletprops.label.network", "N\u00E4tverks\u00E5tkomst:"},
{"appletprops.choice.network.item.none", "Inget"}, {"appletprops.choice.network.item.none", "Ingen"},
{"appletprops.choice.network.item.applethost", "Applet-v\u00e4rd"}, {"appletprops.choice.network.item.applethost", "Appletv\u00E4rd"},
{"appletprops.choice.network.item.unrestricted", "Obegr\u00e4nsad"}, {"appletprops.choice.network.item.unrestricted", "Obegr\u00E4nsad"},
{"appletprops.label.class", "Klass\u00e5tkomst:"}, {"appletprops.label.class", "Klass\u00E5tkomst:"},
{"appletprops.choice.class.item.restricted", "Begr\u00e4nsad"}, {"appletprops.choice.class.item.restricted", "Begr\u00E4nsad"},
{"appletprops.choice.class.item.unrestricted", "Obegr\u00e4nsad"}, {"appletprops.choice.class.item.unrestricted", "Obegr\u00E4nsad"},
{"appletprops.label.unsignedapplet", "Till\u00e5t osignerade appletar:"}, {"appletprops.label.unsignedapplet", "Till\u00E5t osignerade appletar:"},
{"appletprops.choice.unsignedapplet.no", "Nej"}, {"appletprops.choice.unsignedapplet.no", "Nej"},
{"appletprops.choice.unsignedapplet.yes", "Ja"}, {"appletprops.choice.unsignedapplet.yes", "Ja"},
{"appletprops.button.apply", "Utf\u00f6r"}, {"appletprops.button.apply", "Till\u00E4mpa"},
{"appletprops.button.cancel", "Avbryt"}, {"appletprops.button.cancel", "Avbryt"},
{"appletprops.button.reset", "\u00c5terst\u00e4ll"}, {"appletprops.button.reset", "\u00C5terst\u00E4ll"},
{"appletprops.apply.exception", "Kunde inte spara egenskaperna: {0}"}, {"appletprops.apply.exception", "Kunde inte spara egenskaper: {0}"},
/* 4066432 */ /* 4066432 */
{"appletprops.title.invalidproxy", "Ogiltig inmatning"}, {"appletprops.title.invalidproxy", "Ogiltig post"},
{"appletprops.label.invalidproxy", "Proxyporten m\u00e5ste anges som ett positivt heltal"}, {"appletprops.label.invalidproxy", "Proxyport m\u00E5ste vara ett positivt heltal."},
{"appletprops.button.ok", "OK"}, {"appletprops.button.ok", "OK"},
/* end 4066432 */ /* end 4066432 */
{"appletprops.prop.store", "Anv\u00e4ndarspecifika egenskaper f\u00f6r AppletViewer"}, {"appletprops.prop.store", "Anv\u00E4ndarspecifika egenskaper f\u00F6r AppletViewer"},
{"appletsecurityexception.checkcreateclassloader", "S\u00e4kerhetsundantag: klassinl\u00e4sare"}, {"appletsecurityexception.checkcreateclassloader", "S\u00E4kerhetsundantag: klassladdare"},
{"appletsecurityexception.checkaccess.thread", "S\u00e4kerhetsundantag: tr\u00e5d"}, {"appletsecurityexception.checkaccess.thread", "S\u00E4kerhetsundantag: tr\u00E5d"},
{"appletsecurityexception.checkaccess.threadgroup", "S\u00e4kerhetsundantag: tr\u00e5dgruppen {0}"}, {"appletsecurityexception.checkaccess.threadgroup", "S\u00E4kerhetsundantag: tr\u00E5dgrupp: {0}"},
{"appletsecurityexception.checkexit", "S\u00e4kerhetsundantag: exit-punkten {0}"}, {"appletsecurityexception.checkexit", "S\u00E4kerhetsundantag: utg\u00E5ng: {0}"},
{"appletsecurityexception.checkexec", "S\u00e4kerhetsundantag: programfilen {0}"}, {"appletsecurityexception.checkexec", "S\u00E4kerhetsundantag: exec: {0}"},
{"appletsecurityexception.checklink", "S\u00e4kerhetsundantag: l\u00e4nken {0}"}, {"appletsecurityexception.checklink", "S\u00E4kerhetsundantag: l\u00E4nk: {0}"},
{"appletsecurityexception.checkpropsaccess", "S\u00e4kerhetsundantag: egenskaperna"}, {"appletsecurityexception.checkpropsaccess", "S\u00E4kerhetsundantag: egenskaper"},
{"appletsecurityexception.checkpropsaccess.key", "S\u00e4kerhetsundantag: egenskaps\u00e5tkomsten {0}"}, {"appletsecurityexception.checkpropsaccess.key", "S\u00E4kerhetsundantag: egenskaps\u00E5tkomst {0}"},
{"appletsecurityexception.checkread.exception1", "S\u00e4kerhetsundantag: {0}, {1}"}, {"appletsecurityexception.checkread.exception1", "S\u00E4kerhetsundantag: {0}, {1}"},
{"appletsecurityexception.checkread.exception2", "S\u00e4kerhetsundantag: file.read: {0}"}, {"appletsecurityexception.checkread.exception2", "S\u00E4kerhetsundantag: file.read: {0}"},
{"appletsecurityexception.checkread", "S\u00e4kerhetsundantag: file.read: {0} == {1}"}, {"appletsecurityexception.checkread", "S\u00E4kerhetsundantag: file.read: {0} == {1}"},
{"appletsecurityexception.checkwrite.exception", "S\u00e4kerhetsundantag: {0}, {1}"}, {"appletsecurityexception.checkwrite.exception", "S\u00E4kerhetsundantag: {0}, {1}"},
{"appletsecurityexception.checkwrite", "S\u00e4kerhetsundantag: file.write: {0} == {1}"}, {"appletsecurityexception.checkwrite", "S\u00E4kerhetsundantag: file.write: {0} == {1}"},
{"appletsecurityexception.checkread.fd", "S\u00e4kerhetsundantag: fd.read"}, {"appletsecurityexception.checkread.fd", "S\u00E4kerhetsundantag: fd.read"},
{"appletsecurityexception.checkwrite.fd", "S\u00e4kerhetsundantag: fd.write"}, {"appletsecurityexception.checkwrite.fd", "S\u00E4kerhetsundantag: fd.write"},
{"appletsecurityexception.checklisten", "S\u00e4kerhetsundantag: socket.listen: {0}"}, {"appletsecurityexception.checklisten", "S\u00E4kerhetsundantag: socket.listen: {0}"},
{"appletsecurityexception.checkaccept", "S\u00e4kerhetsundantag: socket.accept: {0}:{1}"}, {"appletsecurityexception.checkaccept", "S\u00E4kerhetsundantag: socket.accept: {0}:{1}"},
{"appletsecurityexception.checkconnect.networknone", "S\u00e4kerhetsundantag: socket.connect: {0}->{1}"}, {"appletsecurityexception.checkconnect.networknone", "S\u00E4kerhetsundantag: socket.connect: {0}->{1}"},
{"appletsecurityexception.checkconnect.networkhost1", "S\u00e4kerhetsundantag: Kan inte koppla upp till {0} som kommer fr\u00e5n {1}."}, {"appletsecurityexception.checkconnect.networkhost1", "S\u00E4kerhetsundantag: Kunde inte ansluta till {0} med ursprung fr\u00E5n {1}."},
{"appletsecurityexception.checkconnect.networkhost2", "S\u00e4kerhetsundantag: Kan inte \u00f6vers\u00e4tta adressen f\u00f6r v\u00e4rdsystemet {0} eller for {1}. "}, {"appletsecurityexception.checkconnect.networkhost2", "S\u00E4kerhetsundantag: Kunde inte matcha IP f\u00F6r v\u00E4rd {0} eller f\u00F6r {1}. "},
{"appletsecurityexception.checkconnect.networkhost3", "S\u00e4kerhetsundantag: Kan inte \u00f6vers\u00e4tta adressen f\u00f6r v\u00e4rdsystemet {0}. Kontrollera egenskapen trustProxy."}, {"appletsecurityexception.checkconnect.networkhost3", "S\u00E4kerhetsundantag: Kunde inte matcha IP f\u00F6r v\u00E4rd {0}. Se egenskapen trustProxy."},
{"appletsecurityexception.checkconnect", "S\u00e4kerhetsundantag: uppkoppling: {0}->{1}"}, {"appletsecurityexception.checkconnect", "S\u00E4kerhetsundantag: connect: {0}->{1}"},
{"appletsecurityexception.checkpackageaccess", "S\u00e4kerhetsundantag: f\u00e5r inte \u00e5tkomst till paketet: {0}"}, {"appletsecurityexception.checkpackageaccess", "S\u00E4kerhetsundantag: ingen \u00E5tkomst till paket: {0}"},
{"appletsecurityexception.checkpackagedefinition", "S\u00e4kerhetsundantag: kan inte definiera paketet: {0}"}, {"appletsecurityexception.checkpackagedefinition", "S\u00E4kerhetsundantag: kan inte definiera paket: {0}"},
{"appletsecurityexception.cannotsetfactory", "S\u00e4kerhetsundantag: kan inte st\u00e4lla in factory"}, {"appletsecurityexception.cannotsetfactory", "S\u00E4kerhetsundantag: kan inte ange fabrik"},
{"appletsecurityexception.checkmemberaccess", "S\u00e4kerhetsundantag: kontrollera medlems\u00e5tkomst"}, {"appletsecurityexception.checkmemberaccess", "S\u00E4kerhetsundantag: kontrollera medlems\u00E5tkomst"},
{"appletsecurityexception.checkgetprintjob", "S\u00e4kerhetsundantag: getPrintJob"}, {"appletsecurityexception.checkgetprintjob", "S\u00E4kerhetsundantag: getPrintJob"},
{"appletsecurityexception.checksystemclipboardaccess", "S\u00e4kerhetsundantag: getSystemClipboard"}, {"appletsecurityexception.checksystemclipboardaccess", "S\u00E4kerhetsundantag: getSystemClipboard"},
{"appletsecurityexception.checkawteventqueueaccess", "S\u00e4kerhetsundantag: getEventQueue"}, {"appletsecurityexception.checkawteventqueueaccess", "S\u00E4kerhetsundantag: getEventQueue"},
{"appletsecurityexception.checksecurityaccess", "S\u00e4kerhetsundantag: s\u00e4kerhetsbearbetning: {0}"}, {"appletsecurityexception.checksecurityaccess", "S\u00E4kerhetsundantag: s\u00E4kerhets\u00E5tg\u00E4rd: {0}"},
{"appletsecurityexception.getsecuritycontext.unknown", "Ok\u00e4nd typ av klassinl\u00e4sare. Kan inte leta efter getContext"}, {"appletsecurityexception.getsecuritycontext.unknown", "ok\u00E4nd typ av klassladdare. kan inte kontrollera getContext"},
{"appletsecurityexception.checkread.unknown", "Ok\u00e4nd typ av klassinl\u00e4sare. Kan inte leta efter checking read {0}"}, {"appletsecurityexception.checkread.unknown", "ok\u00E4nd typ av klassladdare. kan inte kontrollera kontroll\u00E4sning {0}"},
{"appletsecurityexception.checkconnect.unknown", "Ok\u00e4nd typ av klassinl\u00e4sare. Kan inte leta efter checking connect"}, {"appletsecurityexception.checkconnect.unknown", "ok\u00E4nd typ av klassladdare. kan inte kontrollera kontrollanslutning"},
}; };
return temp;
} }
} }

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -29,173 +29,175 @@ import java.util.ListResourceBundle;
public class MsgAppletViewer_zh_CN extends ListResourceBundle { public class MsgAppletViewer_zh_CN extends ListResourceBundle {
public Object[][] getContents() { public Object[][] getContents() {
return new Object[][] { Object[][] temp = new Object[][] {
{"textframe.button.dismiss", "\u5173\u95ed"}, {"textframe.button.dismiss", "\u5173\u95ED"},
{"appletviewer.tool.title", "\u5c0f\u7a0b\u5e8f\u67e5\u770b\u5668\uff1a{0}"}, {"appletviewer.tool.title", "\u5C0F\u5E94\u7528\u7A0B\u5E8F\u67E5\u770B\u5668: {0}"},
{"appletviewer.menu.applet", "\u5c0f\u7a0b\u5e8f"}, {"appletviewer.menu.applet", "\u5C0F\u5E94\u7528\u7A0B\u5E8F"},
{"appletviewer.menuitem.restart", "\u91cd\u65b0\u542f\u52a8"}, {"appletviewer.menuitem.restart", "\u91CD\u65B0\u542F\u52A8"},
{"appletviewer.menuitem.reload", "\u91cd\u65b0\u8f7d\u5165"}, {"appletviewer.menuitem.reload", "\u91CD\u65B0\u52A0\u8F7D"},
{"appletviewer.menuitem.stop", "\u505c\u6b62"}, {"appletviewer.menuitem.stop", "\u505C\u6B62"},
{"appletviewer.menuitem.save", "\u4fdd\u5b58..."}, {"appletviewer.menuitem.save", "\u4FDD\u5B58..."},
{"appletviewer.menuitem.start", "\u542f\u52a8"}, {"appletviewer.menuitem.start", "\u542F\u52A8"},
{"appletviewer.menuitem.clone", "\u590d\u5236..."}, {"appletviewer.menuitem.clone", "\u514B\u9686..."},
{"appletviewer.menuitem.tag", "\u6807\u8bb0..."}, {"appletviewer.menuitem.tag", "\u6807\u8BB0..."},
{"appletviewer.menuitem.info", "\u4fe1\u606f..."}, {"appletviewer.menuitem.info", "\u4FE1\u606F..."},
{"appletviewer.menuitem.edit", "\u7f16\u8f91"}, {"appletviewer.menuitem.edit", "\u7F16\u8F91"},
{"appletviewer.menuitem.encoding", "\u5b57\u7b26\u7f16\u7801"}, {"appletviewer.menuitem.encoding", "\u5B57\u7B26\u7F16\u7801"},
{"appletviewer.menuitem.print", "\u6253\u5370..."}, {"appletviewer.menuitem.print", "\u6253\u5370..."},
{"appletviewer.menuitem.props", "\u5c5e\u6027..."}, {"appletviewer.menuitem.props", "\u5C5E\u6027..."},
{"appletviewer.menuitem.close", "\u5173\u95ed"}, {"appletviewer.menuitem.close", "\u5173\u95ED"},
{"appletviewer.menuitem.quit", "\u9000\u51fa"}, {"appletviewer.menuitem.quit", "\u9000\u51FA"},
{"appletviewer.label.hello", "Hello..."}, {"appletviewer.label.hello", "\u60A8\u597D..."},
{"appletviewer.status.start", "\u6b63\u5728\u542f\u52a8\u5c0f\u7a0b\u5e8f..."}, {"appletviewer.status.start", "\u6B63\u5728\u542F\u52A8\u5C0F\u5E94\u7528\u7A0B\u5E8F..."},
{"appletviewer.appletsave.filedialogtitle","\u5c06\u5c0f\u7a0b\u5e8f\u5e8f\u5217\u5316\u4e3a\u6587\u4ef6"}, {"appletviewer.appletsave.filedialogtitle","\u5C06\u5C0F\u5E94\u7528\u7A0B\u5E8F\u5E8F\u5217\u5316\u4E3A\u6587\u4EF6"},
{"appletviewer.appletsave.err1", "\u5c06 {0} \u5e8f\u5217\u5316\u4e3a {1}"}, {"appletviewer.appletsave.err1", "\u5C06{0}\u5E8F\u5217\u5316\u4E3A{1}"},
{"appletviewer.appletsave.err2", "\u5728 appletSave \u4e2d\uff1a{0}"}, {"appletviewer.appletsave.err2", "\u5728 appletSave \u4E2D: {0}"},
{"appletviewer.applettag", "\u663e\u793a\u7684\u6807\u8bb0"}, {"appletviewer.applettag", "\u663E\u793A\u7684\u6807\u8BB0"},
{"appletviewer.applettag.textframe", "\u5c0f\u7a0b\u5e8f HTML \u6807\u8bb0"}, {"appletviewer.applettag.textframe", "\u5C0F\u5E94\u7528\u7A0B\u5E8F HTML \u6807\u8BB0"},
{"appletviewer.appletinfo.applet", "-- \u6ca1\u6709\u4efb\u4f55\u5c0f\u7a0b\u5e8f\u4fe1\u606f --"}, {"appletviewer.appletinfo.applet", "-- \u6CA1\u6709\u5C0F\u5E94\u7528\u7A0B\u5E8F\u4FE1\u606F --"},
{"appletviewer.appletinfo.param", "-- \u6ca1\u6709\u4efb\u4f55\u53c2\u6570\u4fe1\u606f --"}, {"appletviewer.appletinfo.param", "-- \u6CA1\u6709\u53C2\u6570\u4FE1\u606F --"},
{"appletviewer.appletinfo.textframe", "\u5c0f\u7a0b\u5e8f\u4fe1\u606f"}, {"appletviewer.appletinfo.textframe", "\u5C0F\u5E94\u7528\u7A0B\u5E8F\u4FE1\u606F"},
{"appletviewer.appletprint.fail", "\u6253\u5370\u5931\u8d25\u3002"}, {"appletviewer.appletprint.fail", "\u6253\u5370\u5931\u8D25\u3002"},
{"appletviewer.appletprint.finish", "\u5df2\u5b8c\u6210\u6253\u5370\u3002"}, {"appletviewer.appletprint.finish", "\u5DF2\u5B8C\u6210\u6253\u5370\u3002"},
{"appletviewer.appletprint.cancel", "\u6253\u5370\u88ab\u53d6\u6d88\u3002"}, {"appletviewer.appletprint.cancel", "\u6253\u5370\u5DF2\u53D6\u6D88\u3002"},
{"appletviewer.appletencoding", "\u5b57\u7b26\u7f16\u7801\uff1a {0}"}, {"appletviewer.appletencoding", "\u5B57\u7B26\u7F16\u7801: {0}"},
{"appletviewer.parse.warning.requiresname", "\u8b66\u544a\uff1a<param name=... value=...> \u6807\u8bb0\u9700\u8981\u540d\u79f0\u5c5e\u6027\u3002"}, {"appletviewer.parse.warning.requiresname", "\u8B66\u544A: <param name=... value=...> \u6807\u8BB0\u9700\u8981\u540D\u79F0\u5C5E\u6027\u3002"},
{"appletviewer.parse.warning.paramoutside", "\u8b66\u544a\uff1a<param> \u6807\u8bb0\u5728 <applet> ... </applet> \u5916\u90e8\u3002"}, {"appletviewer.parse.warning.paramoutside", "\u8B66\u544A: <param> \u6807\u8BB0\u5728 <applet> ... </applet> \u5916\u90E8\u3002"},
{"appletviewer.parse.warning.applet.requirescode", "\u8b66\u544a\uff1a <applet> \u6807\u8bb0\u9700\u8981\u4ee3\u7801\u5c5e\u6027\u3002"}, {"appletviewer.parse.warning.applet.requirescode", "\u8B66\u544A: <applet> \u6807\u8BB0\u9700\u8981\u4EE3\u7801\u5C5E\u6027\u3002"},
{"appletviewer.parse.warning.applet.requiresheight", "\u8b66\u544a\uff1a<applet> \u6807\u8bb0\u9700\u8981\u9ad8\u5ea6\u5c5e\u6027\u3002"}, {"appletviewer.parse.warning.applet.requiresheight", "\u8B66\u544A: <applet> \u6807\u8BB0\u9700\u8981\u9AD8\u5EA6\u5C5E\u6027\u3002"},
{"appletviewer.parse.warning.applet.requireswidth", "\u8b66\u544a\uff1a <applet> \u6807\u8bb0\u9700\u8981\u5bbd\u5ea6\u5c5e\u6027\u3002"}, {"appletviewer.parse.warning.applet.requireswidth", "\u8B66\u544A: <applet> \u6807\u8BB0\u9700\u8981\u5BBD\u5EA6\u5C5E\u6027\u3002"},
{"appletviewer.parse.warning.object.requirescode", "\u8b66\u544a\uff1a <object> \u6807\u8bb0\u9700\u8981\u4ee3\u7801\u5c5e\u6027\u3002"}, {"appletviewer.parse.warning.object.requirescode", "\u8B66\u544A: <object> \u6807\u8BB0\u9700\u8981\u4EE3\u7801\u5C5E\u6027\u3002"},
{"appletviewer.parse.warning.object.requiresheight", "\u8b66\u544a\uff1a<object> \u6807\u8bb0\u9700\u8981\u9ad8\u5ea6\u5c5e\u6027\u3002"}, {"appletviewer.parse.warning.object.requiresheight", "\u8B66\u544A: <object> \u6807\u8BB0\u9700\u8981\u9AD8\u5EA6\u5C5E\u6027\u3002"},
{"appletviewer.parse.warning.object.requireswidth", "\u8b66\u544a\uff1a<object> \u6807\u8bb0\u9700\u8981\u5bbd\u5ea6\u5c5e\u6027\u3002"}, {"appletviewer.parse.warning.object.requireswidth", "\u8B66\u544A: <object> \u6807\u8BB0\u9700\u8981\u5BBD\u5EA6\u5C5E\u6027\u3002"},
{"appletviewer.parse.warning.embed.requirescode", "\u8b66\u544a\uff1a <embed> \u6807\u8bb0\u9700\u8981\u4ee3\u7801\u5c5e\u6027\u3002"}, {"appletviewer.parse.warning.embed.requirescode", "\u8B66\u544A: <embed> \u6807\u8BB0\u9700\u8981\u4EE3\u7801\u5C5E\u6027\u3002"},
{"appletviewer.parse.warning.embed.requiresheight", "\u8b66\u544a\uff1a <embed> \u6807\u8bb0\u9700\u8981\u9ad8\u5ea6\u5c5e\u6027\u3002"}, {"appletviewer.parse.warning.embed.requiresheight", "\u8B66\u544A: <embed> \u6807\u8BB0\u9700\u8981\u9AD8\u5EA6\u5C5E\u6027\u3002"},
{"appletviewer.parse.warning.embed.requireswidth", "\u8b66\u544a\uff1a <embed> \u6807\u8bb0\u9700\u8981\u5bbd\u5ea6\u5c5e\u6027\u3002"}, {"appletviewer.parse.warning.embed.requireswidth", "\u8B66\u544A: <embed> \u6807\u8BB0\u9700\u8981\u5BBD\u5EA6\u5C5E\u6027\u3002"},
{"appletviewer.parse.warning.appnotLongersupported", "\u8b66\u544a\uff1a \u4e0d\u518d\u652f\u6301 <app> \u6807\u8bb0\uff0c\u8bf7\u4f7f\u7528 <applet> \uff1a"}, {"appletviewer.parse.warning.appnotLongersupported", "\u8B66\u544A: \u4E0D\u518D\u652F\u6301 <app> \u6807\u8BB0, \u8BF7\u6539\u7528 <applet>:"},
{"appletviewer.usage", "\u7528\u6cd5\uff1aappletviewer <options> url(s)\n\n\u5176\u4e2d\uff0c<options> \u5305\u62ec\uff1a\n -debug \u5728 Java \u8c03\u8bd5\u5668\u4e2d\u542f\u52a8 applet \u5c0f\u7a0b\u5e8f\u67e5\u770b\u5668\n -encoding <encoding> \u6307\u5b9a\u7531 HTML \u6587\u4ef6\u4f7f\u7528\u7684\u5b57\u7b26\u7f16\u7801\n -J<runtime flag> \u5411 Java \u89e3\u91ca\u5668\u4f20\u9012\u53c2\u6570\n\n-J \u9009\u9879\u4e0d\u662f\u6807\u51c6\u9009\u9879\uff0c\u5982\u6709\u66f4\u6539\uff0c\u4e0d\u53e6\u884c\u901a\u77e5\u3002"}, {"appletviewer.usage", "\u7528\u6CD5: appletviewer <options> url\n\n\u5176\u4E2D, <options> \u5305\u62EC:\n -debug \u5728 Java \u8C03\u8BD5\u5668\u4E2D\u542F\u52A8\u5C0F\u5E94\u7528\u7A0B\u5E8F\u67E5\u770B\u5668\n -encoding <encoding> \u6307\u5B9A HTML \u6587\u4EF6\u4F7F\u7528\u7684\u5B57\u7B26\u7F16\u7801\n -J<runtime flag> \u5C06\u53C2\u6570\u4F20\u9012\u5230 java \u89E3\u91CA\u5668\n\n-J \u9009\u9879\u662F\u975E\u6807\u51C6\u9009\u9879, \u5982\u6709\u66F4\u6539, \u6055\u4E0D\u53E6\u884C\u901A\u77E5\u3002"},
{"appletviewer.main.err.unsupportedopt", "\u4e0d\u652f\u6301\u7684\u9009\u9879\uff1a{0}"}, {"appletviewer.main.err.unsupportedopt", "\u4E0D\u652F\u6301\u7684\u9009\u9879: {0}"},
{"appletviewer.main.err.unrecognizedarg", "\u4e0d\u53ef\u8bc6\u522b\u7684\u53c2\u6570\uff1a{0}"}, {"appletviewer.main.err.unrecognizedarg", "\u65E0\u6CD5\u8BC6\u522B\u7684\u53C2\u6570: {0}"},
{"appletviewer.main.err.dupoption", "\u91cd\u590d\u4f7f\u7528\u7684\u9009\u9879\uff1a{0}"}, {"appletviewer.main.err.dupoption", "\u91CD\u590D\u4F7F\u7528\u9009\u9879: {0}"},
{"appletviewer.main.err.inputfile", "\u6ca1\u6709\u6307\u5b9a\u8f93\u5165\u6587\u4ef6\u3002"}, {"appletviewer.main.err.inputfile", "\u672A\u6307\u5B9A\u8F93\u5165\u6587\u4EF6\u3002"},
{"appletviewer.main.err.badurl", "URL \u9519\u8bef\uff1a{0} ( {1} )"}, {"appletviewer.main.err.badurl", "\u9519\u8BEF URL: {0} ({1})"},
{"appletviewer.main.err.io", "\u8fdb\u884c\u8bfb\u53d6\u65f6\u51fa\u73b0 I/O \u5f02\u5e38\uff1a {0}"}, {"appletviewer.main.err.io", "\u8BFB\u53D6{0}\u65F6\u51FA\u73B0 I/O \u5F02\u5E38\u9519\u8BEF"},
{"appletviewer.main.err.readablefile", "\u786e\u4fdd {0} \u662f\u4e00\u4e2a\u6587\u4ef6\uff0c\u5e76\u4e14\u662f\u53ef\u8bfb\u7684\u3002"}, {"appletviewer.main.err.readablefile", "\u786E\u4FDD{0}\u662F\u6587\u4EF6\u4E14\u53EF\u8BFB\u3002"},
{"appletviewer.main.err.correcturl", "{0} \u662f\u5426\u662f\u6b63\u786e\u7684 URL\uff1f"}, {"appletviewer.main.err.correcturl", "{0} \u662F\u5426\u662F\u6B63\u786E\u7684 URL?"},
{"appletviewer.main.prop.store", "\u7528\u6237\u6307\u5b9a\u7684 AppletViewer \u5c5e\u6027"}, {"appletviewer.main.prop.store", "AppletViewer \u7684\u7528\u6237\u7279\u5B9A\u5C5E\u6027"},
{"appletviewer.main.err.prop.cantread", "\u4e0d\u80fd\u8bfb\u53d6\u7528\u6237\u5c5e\u6027\u6587\u4ef6\uff1a{0}"}, {"appletviewer.main.err.prop.cantread", "\u65E0\u6CD5\u8BFB\u53D6\u7528\u6237\u5C5E\u6027\u6587\u4EF6: {0}"},
{"appletviewer.main.err.prop.cantsave", "\u4e0d\u80fd\u4fdd\u5b58\u7528\u6237\u5c5e\u6027\u6587\u4ef6\uff1a{0}"}, {"appletviewer.main.err.prop.cantsave", "\u65E0\u6CD5\u4FDD\u5B58\u7528\u6237\u5C5E\u6027\u6587\u4EF6: {0}"},
{"appletviewer.main.warn.nosecmgr", "\u8b66\u544a\uff1a \u7981\u7528\u5b89\u5168\u63a7\u5236"}, {"appletviewer.main.warn.nosecmgr", "\u8B66\u544A: \u7981\u7528\u5B89\u5168\u3002"},
{"appletviewer.main.debug.cantfinddebug", "\u6ca1\u6709\u627e\u5230\u8c03\u8bd5\u5668\uff01"}, {"appletviewer.main.debug.cantfinddebug", "\u627E\u4E0D\u5230\u8C03\u8BD5\u5668!"},
{"appletviewer.main.debug.cantfindmain", "\u5728\u8c03\u8bd5\u5668\u4e2d\u6ca1\u6709\u627e\u5230\u4e3b\u51fd\u6570\uff01"}, {"appletviewer.main.debug.cantfindmain", "\u5728\u8C03\u8BD5\u5668\u4E2D\u627E\u4E0D\u5230\u4E3B\u8981\u65B9\u6CD5!"},
{"appletviewer.main.debug.exceptionindebug", "\u5728\u8c03\u8bd5\u5668\u4e2d\u53d1\u751f\u5f02\u5e38\uff01"}, {"appletviewer.main.debug.exceptionindebug", "\u8C03\u8BD5\u5668\u4E2D\u5B58\u5728\u5F02\u5E38\u9519\u8BEF!"},
{"appletviewer.main.debug.cantaccess", "\u4e0d\u80fd\u8bbf\u95ee\u8c03\u8bd5\u5668\uff01"}, {"appletviewer.main.debug.cantaccess", "\u65E0\u6CD5\u8BBF\u95EE\u8C03\u8BD5\u5668!"},
{"appletviewer.main.nosecmgr", "\u8b66\u544a\uff1a\u6ca1\u6709\u5b89\u88c5 SecurityManager\uff01"}, {"appletviewer.main.nosecmgr", "\u8B66\u544A: \u672A\u5B89\u88C5 SecurityManager!"},
{"appletviewer.main.warning", "\u8b66\u544a\uff1a\u6ca1\u6709\u542f\u52a8\u4efb\u4f55\u5c0f\u7a0b\u5e8f\u3002\u8bf7\u786e\u4fdd\u8f93\u5165\u4e2d\u5305\u542b <applet> \u6807\u8bb0\u3002"}, {"appletviewer.main.warning", "\u8B66\u544A: \u672A\u542F\u52A8\u5C0F\u5E94\u7528\u7A0B\u5E8F\u3002\u786E\u4FDD\u8F93\u5165\u5305\u542B <applet> \u6807\u8BB0\u3002"},
{"appletviewer.main.warn.prop.overwrite", "\u8b66\u544a\uff1a\u5e94\u7528\u6237\u8bf7\u6c42\u4e34\u65f6\u8986\u76d6\u7cfb\u7edf\u5c5e\u6027\uff1a\u5173\u952e\u5b57\uff1a{0} \u65e7\u503c\uff1a{1} \u65b0\u503c\uff1a{2}"}, {"appletviewer.main.warn.prop.overwrite", "\u8B66\u544A: \u6839\u636E\u7528\u6237\u8BF7\u6C42\u4E34\u65F6\u8986\u76D6\u7CFB\u7EDF\u5C5E\u6027: \u5173\u952E\u5B57: {0}, \u65E7\u503C: {1}, \u65B0\u503C: {2}"},
{"appletviewer.main.warn.cantreadprops", "\u8b66\u544a\uff1a\u4e0d\u80fd\u8bfb\u53d6 AppletViewer \u7684\u5c5e\u6027\u6587\u4ef6\uff1a {0} \u4f7f\u7528\u9ed8\u8ba4\u503c\u3002"}, {"appletviewer.main.warn.cantreadprops", "\u8B66\u544A: \u65E0\u6CD5\u8BFB\u53D6 AppletViewer \u5C5E\u6027\u6587\u4EF6: {0}\u3002\u8BF7\u4F7F\u7528\u9ED8\u8BA4\u503C\u3002"},
{"appletioexception.loadclass.throw.interrupted", "\u7c7b\u8f7d\u5165\u88ab\u4e2d\u65ad\uff1a{0}"}, {"appletioexception.loadclass.throw.interrupted", "\u7C7B\u52A0\u8F7D\u4E2D\u65AD: {0}"},
{"appletioexception.loadclass.throw.notloaded", "\u672a\u8f7d\u5165\u7c7b\uff1a{0}"}, {"appletioexception.loadclass.throw.notloaded", "\u672A\u52A0\u8F7D\u7C7B: {0}"},
{"appletclassloader.loadcode.verbose", "\u6b63\u5728\u6253\u5f00\u6d41\u5230\uff1a {0} \u4ee5\u83b7\u53d6 {1}"}, {"appletclassloader.loadcode.verbose", "\u6253\u5F00\u5230{0}\u7684\u6D41\u4EE5\u83B7\u53D6{1}"},
{"appletclassloader.filenotfound", "\u67e5\u627e\u65f6\u627e\u4e0d\u5230\u6587\u4ef6\uff1a{0}"}, {"appletclassloader.filenotfound", "\u67E5\u627E\u65F6\u627E\u4E0D\u5230\u6587\u4EF6: {0}"},
{"appletclassloader.fileformat", "\u8f7d\u5165\u65f6\u5f15\u53d1\u6587\u4ef6\u683c\u5f0f\u5f02\u5e38\uff1a{0}"}, {"appletclassloader.fileformat", "\u52A0\u8F7D\u65F6\u51FA\u73B0\u6587\u4EF6\u683C\u5F0F\u5F02\u5E38\u9519\u8BEF: {0}"},
{"appletclassloader.fileioexception", "\u8f7d\u5165\u65f6\u5f15\u53d1\u51fa\u73b0 I/O \u5f02\u5e38\uff1a{0}"}, {"appletclassloader.fileioexception", "\u52A0\u8F7D\u65F6\u51FA\u73B0 I/O \u5F02\u5E38\u9519\u8BEF: {0}"},
{"appletclassloader.fileexception", "\u8f7d\u5165\u65f6\u5f15\u53d1 {0} \u5f02\u5e38\uff1a{1}"}, {"appletclassloader.fileexception", "\u52A0\u8F7D\u65F6\u51FA\u73B0{0}\u5F02\u5E38\u9519\u8BEF: {1}"},
{"appletclassloader.filedeath", "\u8f7d\u5165\u65f6 {0} \u88ab\u53d6\u6d88\uff1a{1}"}, {"appletclassloader.filedeath", "\u52A0\u8F7D\u65F6\u5DF2\u7EC8\u6B62{0}: {1}"},
{"appletclassloader.fileerror", "\u8f7d\u5165\u65f6 {0} \u51fa\u9519\uff1a{1}"}, {"appletclassloader.fileerror", "\u52A0\u8F7D\u65F6\u51FA\u73B0{0}\u9519\u8BEF: {1}"},
{"appletclassloader.findclass.verbose.findclass", "{0} \u67e5\u627e\u7c7b {1}"}, {"appletclassloader.findclass.verbose.findclass", "{0}\u627E\u5230\u7C7B{1}"},
{"appletclassloader.findclass.verbose.openstream", "\u6b63\u5728\u6253\u5f00\u6d41\u5230\uff1a {0} \u4ee5\u83b7\u53d6 {1}"}, {"appletclassloader.findclass.verbose.openstream", "\u6253\u5F00\u5230{0}\u7684\u6D41\u4EE5\u83B7\u53D6{1}"},
{"appletclassloader.getresource.verbose.forname", "\u7528\u4e8e\u540d\u79f0\u7684 AppletClassLoader.getResource\uff1a {0} "}, {"appletclassloader.getresource.verbose.forname", "\u540D\u79F0\u7684 AppletClassLoader.getResource: {0}"},
{"appletclassloader.getresource.verbose.found", "\u5df2\u627e\u5230\u7684\u8d44\u6e90\uff1a{0} \u4f5c\u4e3a\u7cfb\u7edf\u8d44\u6e90"}, {"appletclassloader.getresource.verbose.found", "\u5DF2\u627E\u5230\u4F5C\u4E3A\u7CFB\u7EDF\u8D44\u6E90\u7684\u8D44\u6E90{0}"},
{"appletclassloader.getresourceasstream.verbose", "\u5df2\u627e\u5230\u7684\u8d44\u6e90\uff1a{0} \u4f5c\u4e3a\u7cfb\u7edf\u8d44\u6e90"}, {"appletclassloader.getresourceasstream.verbose", "\u5DF2\u627E\u5230\u4F5C\u4E3A\u7CFB\u7EDF\u8D44\u6E90\u7684\u8D44\u6E90{0}"},
{"appletpanel.runloader.err", "\u5bf9\u8c61\u6216\u4ee3\u7801\u53c2\u6570\uff01"}, {"appletpanel.runloader.err", "\u5BF9\u8C61\u6216\u4EE3\u7801\u53C2\u6570!"},
{"appletpanel.runloader.exception", "\u5e76\u884c\u5316 {0} \u65f6\u5f15\u53d1\u5f02\u5e38"}, {"appletpanel.runloader.exception", "\u53CD\u5E8F\u5217\u5316{0}\u65F6\u51FA\u73B0\u5F02\u5E38\u9519\u8BEF"},
{"appletpanel.destroyed", "\u5c0f\u7a0b\u5e8f\u5df2\u9500\u6bc1\u3002"}, {"appletpanel.destroyed", "\u5DF2\u9500\u6BC1\u5C0F\u5E94\u7528\u7A0B\u5E8F\u3002"},
{"appletpanel.loaded", "\u5c0f\u7a0b\u5e8f\u5df2\u8f7d\u5165\u3002"}, {"appletpanel.loaded", "\u5DF2\u52A0\u8F7D\u5C0F\u5E94\u7528\u7A0B\u5E8F\u3002"},
{"appletpanel.started", "\u5c0f\u7a0b\u5e8f\u5df2\u542f\u52a8\u3002"}, {"appletpanel.started", "\u5DF2\u542F\u52A8\u5C0F\u5E94\u7528\u7A0B\u5E8F\u3002"},
{"appletpanel.inited", "\u5c0f\u7a0b\u5e8f\u5df2\u521d\u59cb\u5316\u3002"}, {"appletpanel.inited", "\u5DF2\u521D\u59CB\u5316\u5C0F\u5E94\u7528\u7A0B\u5E8F\u3002"},
{"appletpanel.stopped", "\u5c0f\u7a0b\u5e8f\u5df2\u505c\u6b62\u3002"}, {"appletpanel.stopped", "\u5DF2\u505C\u6B62\u5C0F\u5E94\u7528\u7A0B\u5E8F\u3002"},
{"appletpanel.disposed", "\u5c0f\u7a0b\u5e8f\u5df2\u64a4\u6d88\u3002"}, {"appletpanel.disposed", "\u5DF2\u5904\u7406\u5C0F\u5E94\u7528\u7A0B\u5E8F\u3002"},
{"appletpanel.nocode", "APPLET \u6807\u8bb0\u4e22\u5931 CODE \u53c2\u6570\u3002"}, {"appletpanel.nocode", "APPLET \u6807\u8BB0\u7F3A\u5C11 CODE \u53C2\u6570\u3002"},
{"appletpanel.notfound", "\u8f7d\u5165\uff1a\u627e\u4e0d\u5230\u7c7b {0}\u3002"}, {"appletpanel.notfound", "\u52A0\u8F7D: \u627E\u4E0D\u5230\u7C7B{0}\u3002"},
{"appletpanel.nocreate", "\u8f7d\u5165\uff1a\u65e0\u6cd5\u5b9e\u4f8b\u5316 {0}\u3002"}, {"appletpanel.nocreate", "\u52A0\u8F7D: \u65E0\u6CD5\u5B9E\u4F8B\u5316{0}\u3002"},
{"appletpanel.noconstruct", "\u8f7d\u5165\uff1a{0} \u4e0d\u662f public \u5bf9\u8c61\u6216\u6ca1\u6709\u516c\u5171\u6784\u9020\u51fd\u6570\u3002"}, {"appletpanel.noconstruct", "\u52A0\u8F7D: {0}\u4E0D\u662F\u516C\u5171\u7684, \u6216\u8005\u6CA1\u6709\u516C\u5171\u6784\u9020\u5668\u3002"},
{"appletpanel.death", "\u5df2\u7ec8\u6b62"}, {"appletpanel.death", "\u5DF2\u7EC8\u6B62"},
{"appletpanel.exception", "\u5f02\u5e38\uff1a {0}\u3002"}, {"appletpanel.exception", "\u5F02\u5E38\u9519\u8BEF: {0}\u3002"},
{"appletpanel.exception2", "\u5f02\u5e38\uff1a{0}: {1}\u3002"}, {"appletpanel.exception2", "\u5F02\u5E38\u9519\u8BEF: {0}: {1}\u3002"},
{"appletpanel.error", "\u9519\u8bef\uff1a{0}\u3002"}, {"appletpanel.error", "\u9519\u8BEF: {0}\u3002"},
{"appletpanel.error2", "\u9519\u8bef\uff1a{0}: {1}\u3002"}, {"appletpanel.error2", "\u9519\u8BEF: {0}: {1}\u3002"},
{"appletpanel.notloaded", "\u521d\u59cb\u5316\uff1a \u672a\u8f7d\u5165\u5c0f\u7a0b\u5e8f\u3002"}, {"appletpanel.notloaded", "\u521D\u59CB\u5316: \u672A\u52A0\u8F7D\u5C0F\u5E94\u7528\u7A0B\u5E8F\u3002"},
{"appletpanel.notinited", "\u542f\u52a8\uff1a \u672a\u521d\u59cb\u5316\u5c0f\u7a0b\u5e8f\u3002"}, {"appletpanel.notinited", "\u542F\u52A8: \u672A\u521D\u59CB\u5316\u5C0F\u5E94\u7528\u7A0B\u5E8F\u3002"},
{"appletpanel.notstarted", "\u505c\u6b62\uff1a \u672a\u542f\u52a8\u5c0f\u7a0b\u5e8f\u3002"}, {"appletpanel.notstarted", "\u505C\u6B62: \u672A\u542F\u52A8\u5C0F\u5E94\u7528\u7A0B\u5E8F\u3002"},
{"appletpanel.notstopped", "\u9500\u6bc1\uff1a \u672a\u505c\u6b62\u5c0f\u7a0b\u5e8f\u3002"}, {"appletpanel.notstopped", "\u9500\u6BC1: \u672A\u505C\u6B62\u5C0F\u5E94\u7528\u7A0B\u5E8F\u3002"},
{"appletpanel.notdestroyed", "\u64a4\u6d88\uff1a \u672a\u9500\u6bc1\u5c0f\u7a0b\u5e8f\u3002"}, {"appletpanel.notdestroyed", "\u5904\u7406: \u672A\u9500\u6BC1\u5C0F\u5E94\u7528\u7A0B\u5E8F\u3002"},
{"appletpanel.notdisposed", "\u8f7d\u5165\uff1a \u672a\u64a4\u6d88\u5c0f\u7a0b\u5e8f\u3002"}, {"appletpanel.notdisposed", "\u52A0\u8F7D: \u672A\u5904\u7406\u5C0F\u5E94\u7528\u7A0B\u5E8F\u3002"},
{"appletpanel.bail", "\u5df2\u4e2d\u65ad\uff1a\u6b63\u5728\u8df3\u51fa\u3002"}, {"appletpanel.bail", "\u5DF2\u4E2D\u65AD: \u79BB\u5F00\u3002"},
{"appletpanel.filenotfound", "\u67e5\u627e\u65f6\u627e\u4e0d\u5230\u6587\u4ef6\uff1a {0}"}, {"appletpanel.filenotfound", "\u67E5\u627E\u65F6\u627E\u4E0D\u5230\u6587\u4EF6: {0}"},
{"appletpanel.fileformat", "\u8f7d\u5165\u65f6\u53d1\u751f\u6587\u4ef6\u683c\u5f0f\u5f02\u5e38\uff1a {0}"}, {"appletpanel.fileformat", "\u52A0\u8F7D\u65F6\u51FA\u73B0\u6587\u4EF6\u683C\u5F0F\u5F02\u5E38\u9519\u8BEF: {0}"},
{"appletpanel.fileioexception", "\u8f7d\u5165\u65f6\u53d1\u751f I/O \u5f02\u5e38\uff1a {0}"}, {"appletpanel.fileioexception", "\u52A0\u8F7D\u65F6\u51FA\u73B0 I/O \u5F02\u5E38\u9519\u8BEF: {0}"},
{"appletpanel.fileexception", "\u8f7d\u5165 {1} \u65f6\u53d1\u751f {0} \u5f02\u5e38"}, {"appletpanel.fileexception", "\u52A0\u8F7D\u65F6\u51FA\u73B0{0}\u5F02\u5E38\u9519\u8BEF: {1}"},
{"appletpanel.filedeath", "\u8f7d\u5165 {1} \u65f6\u7ec8\u6b62 {0}"}, {"appletpanel.filedeath", "\u52A0\u8F7D\u65F6\u5DF2\u7EC8\u6B62{0}: {1}"},
{"appletpanel.fileerror", "\u8f7d\u5165 {1} \u65f6 {0} \u51fa\u9519"}, {"appletpanel.fileerror", "\u52A0\u8F7D\u65F6\u51FA\u73B0{0}\u9519\u8BEF: {1}"},
{"appletpanel.badattribute.exception", "HTML \u89e3\u6790: \u5bbd\u5ea6/\u9ad8\u5ea6\u5c5e\u6027\u503c\u4e0d\u6b63\u786e"}, {"appletpanel.badattribute.exception", "HTML \u8BED\u6CD5\u5206\u6790: \u5BBD\u5EA6/\u9AD8\u5EA6\u5C5E\u6027\u7684\u503C\u4E0D\u6B63\u786E"},
{"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream \u9700\u8981\u975e\u7a7a\u8f7d\u5165\u7a0b\u5e8f"}, {"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream \u9700\u8981\u975E\u7A7A\u52A0\u8F7D\u5668"},
{"appletprops.title", "AppletViewer \u5c5e\u6027"}, {"appletprops.title", "AppletViewer \u5C5E\u6027"},
{"appletprops.label.http.server", "Http \u4ee3\u7406\u670d\u52a1\u5668\uff1a"}, {"appletprops.label.http.server", "Http \u4EE3\u7406\u670D\u52A1\u5668:"},
{"appletprops.label.http.proxy", "Http \u4ee3\u7406\u670d\u52a1\u5668\u7aef\u53e3\uff1a"}, {"appletprops.label.http.proxy", "Http \u4EE3\u7406\u7AEF\u53E3:"},
{"appletprops.label.network", "\u7f51\u7edc\u8bbf\u95ee\uff1a"}, {"appletprops.label.network", "\u7F51\u7EDC\u8BBF\u95EE\u6743\u9650:"},
{"appletprops.choice.network.item.none", "\u65e0"}, {"appletprops.choice.network.item.none", "\u65E0"},
{"appletprops.choice.network.item.applethost", "\u5c0f\u7a0b\u5e8f\u4e3b\u673a"}, {"appletprops.choice.network.item.applethost", "\u5C0F\u5E94\u7528\u7A0B\u5E8F\u4E3B\u673A"},
{"appletprops.choice.network.item.unrestricted", "\u65e0\u9650\u5236"}, {"appletprops.choice.network.item.unrestricted", "\u4E0D\u53D7\u9650\u5236"},
{"appletprops.label.class", "\u7c7b\u8bbf\u95ee\uff1a"}, {"appletprops.label.class", "\u7C7B\u8BBF\u95EE\u6743\u9650:"},
{"appletprops.choice.class.item.restricted", "\u6709\u9650\u5236"}, {"appletprops.choice.class.item.restricted", "\u53D7\u9650\u5236"},
{"appletprops.choice.class.item.unrestricted", "\u65e0\u9650\u5236"}, {"appletprops.choice.class.item.unrestricted", "\u4E0D\u53D7\u9650\u5236"},
{"appletprops.label.unsignedapplet", "\u5141\u8bb8\u4f7f\u7528\u65e0\u7b7e\u540d\u7684\u5c0f\u7a0b\u5e8f\uff1a"}, {"appletprops.label.unsignedapplet", "\u5141\u8BB8\u672A\u7B7E\u540D\u5C0F\u5E94\u7528\u7A0B\u5E8F:"},
{"appletprops.choice.unsignedapplet.no", "\u5426"}, {"appletprops.choice.unsignedapplet.no", "\u5426"},
{"appletprops.choice.unsignedapplet.yes", "\u662f"}, {"appletprops.choice.unsignedapplet.yes", "\u662F"},
{"appletprops.button.apply", "\u5e94\u7528"}, {"appletprops.button.apply", "\u5E94\u7528"},
{"appletprops.button.cancel", "\u53d6\u6d88"}, {"appletprops.button.cancel", "\u53D6\u6D88"},
{"appletprops.button.reset", "\u91cd\u8bbe"}, {"appletprops.button.reset", "\u91CD\u8BBE"},
{"appletprops.apply.exception", "\u4fdd\u5b58\u5c5e\u6027\u65f6\u5931\u8d25\uff1a {0}"}, {"appletprops.apply.exception", "\u65E0\u6CD5\u4FDD\u5B58\u5C5E\u6027: {0}"},
/* 4066432 */ /* 4066432 */
{"appletprops.title.invalidproxy", "\u65e0\u6548\u7684\u9879\u76ee"}, {"appletprops.title.invalidproxy", "\u6761\u76EE\u65E0\u6548"},
{"appletprops.label.invalidproxy", "\u4ee3\u7406\u670d\u52a1\u5668\u7684\u7aef\u53e3\u53f7\u5fc5\u987b\u662f\u4e00\u4e2a\u6b63\u6574\u6570\u503c\u3002"}, {"appletprops.label.invalidproxy", "\u4EE3\u7406\u7AEF\u53E3\u5FC5\u987B\u662F\u4E00\u4E2A\u6B63\u6574\u6570\u503C\u3002"},
{"appletprops.button.ok", "\u786e\u5b9a"}, {"appletprops.button.ok", "\u786E\u5B9A"},
/* end 4066432 */ /* end 4066432 */
{"appletprops.prop.store", "AppletViewer \u7684\u7528\u6237\u7279\u6709\u5c5e\u6027"}, {"appletprops.prop.store", "AppletViewer \u7684\u7528\u6237\u7279\u5B9A\u5C5E\u6027"},
{"appletsecurityexception.checkcreateclassloader", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u7c7b\u8f7d\u5165\u7a0b\u5e8f"}, {"appletsecurityexception.checkcreateclassloader", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u7C7B\u52A0\u8F7D\u5668"},
{"appletsecurityexception.checkaccess.thread", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u7ebf\u7a0b "}, {"appletsecurityexception.checkaccess.thread", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u7EBF\u7A0B"},
{"appletsecurityexception.checkaccess.threadgroup", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a \u7ebf\u7a0b\u7ec4\uff1a {0}"}, {"appletsecurityexception.checkaccess.threadgroup", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u7EBF\u7A0B\u7EC4: {0}"},
{"appletsecurityexception.checkexit", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u9000\u51fa\uff1a {0}"}, {"appletsecurityexception.checkexit", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u9000\u51FA: {0}"},
{"appletsecurityexception.checkexec", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u6267\u884c\uff1a {0}"}, {"appletsecurityexception.checkexec", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u6267\u884C: {0}"},
{"appletsecurityexception.checklink", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u8fde\u63a5\uff1a {0}"}, {"appletsecurityexception.checklink", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u94FE\u63A5: {0}"},
{"appletsecurityexception.checkpropsaccess", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u5c5e\u6027"}, {"appletsecurityexception.checkpropsaccess", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u5C5E\u6027"},
{"appletsecurityexception.checkpropsaccess.key", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u5c5e\u6027\u8bbf\u95ee {0}"}, {"appletsecurityexception.checkpropsaccess.key", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u5C5E\u6027\u8BBF\u95EE{0}"},
{"appletsecurityexception.checkread.exception1", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a{0}, {1}"}, {"appletsecurityexception.checkread.exception1", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: {0}, {1}"},
{"appletsecurityexception.checkread.exception2", "\u5b89\u5168\u6027\u5f02\u5e38\uff1afile.read: {0}"}, {"appletsecurityexception.checkread.exception2", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: file.read: {0}"},
{"appletsecurityexception.checkread", "\u5b89\u5168\u6027\u5f02\u5e38\uff1afile.read: {0} == {1}"}, {"appletsecurityexception.checkread", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: file.read: {0} == {1}"},
{"appletsecurityexception.checkwrite.exception", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a{0}, {1}"}, {"appletsecurityexception.checkwrite.exception", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: {0}, {1}"},
{"appletsecurityexception.checkwrite", "\u5b89\u5168\u6027\u5f02\u5e38\uff1afile.write: {0} == {1}"}, {"appletsecurityexception.checkwrite", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: file.write: {0} == {1}"},
{"appletsecurityexception.checkread.fd", "\u5b89\u5168\u6027\u5f02\u5e38\uff1afd.read"}, {"appletsecurityexception.checkread.fd", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: fd.read"},
{"appletsecurityexception.checkwrite.fd", "\u5b89\u5168\u6027\u5f02\u5e38\uff1afd.write"}, {"appletsecurityexception.checkwrite.fd", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: fd.write"},
{"appletsecurityexception.checklisten", "\u5b89\u5168\u6027\u5f02\u5e38\uff1asocket.listen: {0}"}, {"appletsecurityexception.checklisten", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: socket.listen: {0}"},
{"appletsecurityexception.checkaccept", "\u5b89\u5168\u6027\u5f02\u5e38\uff1asocket.accept: {0}:{1}"}, {"appletsecurityexception.checkaccept", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: socket.accept: {0}:{1}"},
{"appletsecurityexception.checkconnect.networknone", "\u5b89\u5168\u6027\u5f02\u5e38\uff1asocket.connect: {0}->{1}"}, {"appletsecurityexception.checkconnect.networknone", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: socket.connect: {0}->{1}"},
{"appletsecurityexception.checkconnect.networkhost1", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u65e0\u6cd5\u7528\u6765\u81ea {1} \u7684\u6e90\u8fde\u63a5\u5230 {0}\u3002"}, {"appletsecurityexception.checkconnect.networkhost1", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u65E0\u6CD5\u8FDE\u63A5\u5230\u6E90\u81EA{1}\u7684{0}\u3002"},
{"appletsecurityexception.checkconnect.networkhost2", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u65e0\u6cd5\u89e3\u6790\u4e3b\u673a {0} \u6216 {1} \u7684 IP\u3002"}, {"appletsecurityexception.checkconnect.networkhost2", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u65E0\u6CD5\u89E3\u6790\u4E3B\u673A{0}\u6216{1}\u7684 IP\u3002"},
{"appletsecurityexception.checkconnect.networkhost3", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u65e0\u6cd5\u89e3\u6790\u4e3b\u673a {0} \u7684 IP\u3002\u8bf7\u53c2\u89c1\u5c5e\u6027 trustProxy\u3002"}, {"appletsecurityexception.checkconnect.networkhost3", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u65E0\u6CD5\u89E3\u6790\u4E3B\u673A{0}\u7684 IP\u3002\u8BF7\u53C2\u9605 trustProxy \u5C5E\u6027\u3002"},
{"appletsecurityexception.checkconnect", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a \u8fde\u63a5: {0}->{1}"}, {"appletsecurityexception.checkconnect", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u8FDE\u63A5: {0}->{1}"},
{"appletsecurityexception.checkpackageaccess", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u65e0\u6cd5\u8bbf\u95ee\u7a0b\u5e8f\u5305\uff1a{0}"}, {"appletsecurityexception.checkpackageaccess", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u65E0\u6CD5\u8BBF\u95EE\u7A0B\u5E8F\u5305: {0}"},
{"appletsecurityexception.checkpackagedefinition", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u65e0\u6cd5\u5b9a\u4e49\u7a0b\u5e8f\u5305\uff1a{0}"}, {"appletsecurityexception.checkpackagedefinition", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u65E0\u6CD5\u5B9A\u4E49\u7A0B\u5E8F\u5305: {0}"},
{"appletsecurityexception.cannotsetfactory", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u65e0\u6cd5\u8bbe\u7f6e\u5de5\u5382"}, {"appletsecurityexception.cannotsetfactory", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u65E0\u6CD5\u8BBE\u7F6E\u5DE5\u5382"},
{"appletsecurityexception.checkmemberaccess", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u68c0\u67e5\u6210\u5458\u8bbf\u95ee"}, {"appletsecurityexception.checkmemberaccess", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u68C0\u67E5\u6210\u5458\u8BBF\u95EE\u6743\u9650"},
{"appletsecurityexception.checkgetprintjob", "\u5b89\u5168\u6027\u5f02\u5e38\uff1agetPrintJob"}, {"appletsecurityexception.checkgetprintjob", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: getPrintJob"},
{"appletsecurityexception.checksystemclipboardaccess", "\u5b89\u5168\u6027\u5f02\u5e38\uff1agetSystemClipboard"}, {"appletsecurityexception.checksystemclipboardaccess", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: getSystemClipboard"},
{"appletsecurityexception.checkawteventqueueaccess", "\u5b89\u5168\u6027\u5f02\u5e38\uff1agetEventQueue"}, {"appletsecurityexception.checkawteventqueueaccess", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: getEventQueue"},
{"appletsecurityexception.checksecurityaccess", "\u5b89\u5168\u6027\u5f02\u5e38\uff1a\u5b89\u5168\u64cd\u4f5c {0}"}, {"appletsecurityexception.checksecurityaccess", "\u5B89\u5168\u5F02\u5E38\u9519\u8BEF: \u5B89\u5168\u64CD\u4F5C: {0}"},
{"appletsecurityexception.getsecuritycontext.unknown", "\u672a\u77e5\u7684\u7c7b\u8f7d\u5165\u7a0b\u5e8f\u7c7b\u578b\u3002\u65e0\u6cd5\u68c0\u67e5 getContext"}, {"appletsecurityexception.getsecuritycontext.unknown", "\u7C7B\u52A0\u8F7D\u5668\u7C7B\u578B\u672A\u77E5\u3002\u65E0\u6CD5\u68C0\u67E5 getContext"},
{"appletsecurityexception.checkread.unknown", "\u672a\u77e5\u7684\u7c7b\u8f7d\u5165\u7a0b\u5e8f\u7c7b\u578b\u3002\u65e0\u6cd5\u68c0\u67e5\u7531\u68c0\u67e5\u8bfb {0} \u751f\u6210\u7684\u7ed3\u679c"}, {"appletsecurityexception.checkread.unknown", "\u7C7B\u52A0\u8F7D\u5668\u7C7B\u578B\u672A\u77E5\u3002\u65E0\u6CD5\u4E3A\u68C0\u67E5\u8BFB\u53D6\u6743\u9650{0}\u800C\u8FDB\u884C\u68C0\u67E5"},
{"appletsecurityexception.checkconnect.unknown", "\u672a\u77e5\u7684\u7c7b\u8f7d\u5165\u7a0b\u5e8f\u7c7b\u578b\u3002\u65e0\u6cd5\u68c0\u67e5\u7531\u68c0\u67e5\u8fde\u63a5\u751f\u6210\u7684\u7ed3\u679c"}, {"appletsecurityexception.checkconnect.unknown", "\u7C7B\u52A0\u8F7D\u5668\u7C7B\u578B\u672A\u77E5\u3002\u65E0\u6CD5\u4E3A\u68C0\u67E5\u8FDE\u63A5\u800C\u8FDB\u884C\u68C0\u67E5"},
}; };
return temp;
} }
} }

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -29,173 +29,175 @@ import java.util.ListResourceBundle;
public class MsgAppletViewer_zh_TW extends ListResourceBundle { public class MsgAppletViewer_zh_TW extends ListResourceBundle {
public Object[][] getContents() { public Object[][] getContents() {
return new Object[][] { Object[][] temp = new Object[][] {
{"textframe.button.dismiss", "\u95dc\u9589"}, {"textframe.button.dismiss", "\u95DC\u9589"},
{"appletviewer.tool.title", "Applet \u6aa2\u8996\u5668\uff1a{0}"}, {"appletviewer.tool.title", "Applet \u6AA2\u8996\u5668: {0}"},
{"appletviewer.menu.applet", "Applet"}, {"appletviewer.menu.applet", "Applet"},
{"appletviewer.menuitem.restart", "\u91cd\u65b0\u555f\u52d5"}, {"appletviewer.menuitem.restart", "\u91CD\u65B0\u555F\u52D5"},
{"appletviewer.menuitem.reload", "\u91cd\u65b0\u8f09\u5165"}, {"appletviewer.menuitem.reload", "\u91CD\u65B0\u8F09\u5165"},
{"appletviewer.menuitem.stop", "\u505c\u6b62"}, {"appletviewer.menuitem.stop", "\u505C\u6B62"},
{"appletviewer.menuitem.save", "\u5132\u5b58..."}, {"appletviewer.menuitem.save", "\u5132\u5B58..."},
{"appletviewer.menuitem.start", "\u555f\u52d5"}, {"appletviewer.menuitem.start", "\u555F\u52D5"},
{"appletviewer.menuitem.clone", "\u8907\u88fd..."}, {"appletviewer.menuitem.clone", "\u8907\u88FD..."},
{"appletviewer.menuitem.tag", "\u6a19\u7c64..."}, {"appletviewer.menuitem.tag", "\u6A19\u8A18..."},
{"appletviewer.menuitem.info", "\u8cc7\u8a0a..."}, {"appletviewer.menuitem.info", "\u8CC7\u8A0A..."},
{"appletviewer.menuitem.edit", "\u7de8\u8f2f"}, {"appletviewer.menuitem.edit", "\u7DE8\u8F2F"},
{"appletviewer.menuitem.encoding", "\u5b57\u5143\u7de8\u78bc"}, {"appletviewer.menuitem.encoding", "\u5B57\u5143\u7DE8\u78BC"},
{"appletviewer.menuitem.print", "\u5217\u5370..."}, {"appletviewer.menuitem.print", "\u5217\u5370..."},
{"appletviewer.menuitem.props", "\u5c6c\u6027..."}, {"appletviewer.menuitem.props", "\u5C6C\u6027..."},
{"appletviewer.menuitem.close", "\u95dc\u9589"}, {"appletviewer.menuitem.close", "\u95DC\u9589"},
{"appletviewer.menuitem.quit", "\u7d50\u675f"}, {"appletviewer.menuitem.quit", "\u7D50\u675F"},
{"appletviewer.label.hello", "Hello..."}, {"appletviewer.label.hello", "\u60A8\u597D..."},
{"appletviewer.status.start", "\u555f\u52d5 applet..."}, {"appletviewer.status.start", "\u6B63\u5728\u555F\u52D5 Applet..."},
{"appletviewer.appletsave.filedialogtitle","\u5c07 Applet \u4e32\u5217\u5316\u81f3\u6a94\u6848\u4e2d"}, {"appletviewer.appletsave.filedialogtitle","\u5C07 Applet \u5E8F\u5217\u5316\u70BA\u6A94\u6848"},
{"appletviewer.appletsave.err1", "\u5c07 {0} \u4e32\u5217\u5316\u70ba {1}"}, {"appletviewer.appletsave.err1", "\u5C07 {0} \u5E8F\u5217\u5316\u70BA {1}"},
{"appletviewer.appletsave.err2", "\u5728 appletSave\uff1a{0} \u4e2d"}, {"appletviewer.appletsave.err2", "\u5728 appletSave \u4E2D: {0}"},
{"appletviewer.applettag", "\u986f\u793a\u7684\u6a19\u7c64"}, {"appletviewer.applettag", "\u986F\u793A\u7684\u6A19\u8A18"},
{"appletviewer.applettag.textframe", "Applet HTML \u6a19\u7c64"}, {"appletviewer.applettag.textframe", "Applet HTML \u6A19\u8A18"},
{"appletviewer.appletinfo.applet", "-- \u6c92\u6709 applet \u8cc7\u8a0a --"}, {"appletviewer.appletinfo.applet", "-- \u7121 Applet \u8CC7\u8A0A --"},
{"appletviewer.appletinfo.param", "-- \u6c92\u6709\u53c3\u6578\u8cc7\u8a0a --"}, {"appletviewer.appletinfo.param", "-- \u7121\u53C3\u6578\u8CC7\u8A0A --"},
{"appletviewer.appletinfo.textframe", "Applet \u8cc7\u8a0a"}, {"appletviewer.appletinfo.textframe", "Applet \u8CC7\u8A0A"},
{"appletviewer.appletprint.fail", "\u5217\u5370\u5931\u6557\u3002"}, {"appletviewer.appletprint.fail", "\u5217\u5370\u5931\u6557\u3002"},
{"appletviewer.appletprint.finish", "\u7d50\u675f\u5217\u5370\u3002"}, {"appletviewer.appletprint.finish", "\u5B8C\u6210\u5217\u5370\u3002"},
{"appletviewer.appletprint.cancel", "\u53d6\u6d88\u5217\u5370\u3002"}, {"appletviewer.appletprint.cancel", "\u5217\u5370\u53D6\u6D88\u3002"},
{"appletviewer.appletencoding", "\u5b57\u5143\u7de8\u78bc\uff1a{0}"}, {"appletviewer.appletencoding", "\u5B57\u5143\u7DE8\u78BC: {0}"},
{"appletviewer.parse.warning.requiresname", "\u8b66\u544a\uff1a <param name=... value=...> \u6a19\u7c64\u9700\u8981\u540d\u7a31\u5c6c\u6027\u3002"}, {"appletviewer.parse.warning.requiresname", "\u8B66\u544A: <\u53C3\u6578\u540D\u7A31=... \u503C=...> \u6A19\u8A18\u9700\u8981\u540D\u7A31\u5C6C\u6027\u3002"},
{"appletviewer.parse.warning.paramoutside", "\u8b66\u544a\uff1a<param> \u6a19\u7c64\u5728 <applet> ... </applet>\u4e4b\u5916\u3002"}, {"appletviewer.parse.warning.paramoutside", "\u8B66\u544A: <param> \u6A19\u8A18\u5728 <applet> ... </applet> \u4E4B\u5916\u3002"},
{"appletviewer.parse.warning.applet.requirescode", "\u8b66\u544a\uff1a<applet> \u6a19\u7c64\u9700\u8981\u7a0b\u5f0f\u78bc\u5c6c\u6027"}, {"appletviewer.parse.warning.applet.requirescode", "\u8B66\u544A: <applet> \u6A19\u8A18\u9700\u8981\u4EE3\u78BC\u5C6C\u6027\u3002"},
{"appletviewer.parse.warning.applet.requiresheight", "\u8b66\u544a\uff1a<applet> \u6a19\u7c64\u9700\u8981\u9ad8\u5ea6\u5c6c\u6027\u3002"}, {"appletviewer.parse.warning.applet.requiresheight", "\u8B66\u544A: <applet> \u6A19\u8A18\u9700\u8981\u9AD8\u5EA6\u5C6C\u6027\u3002"},
{"appletviewer.parse.warning.applet.requireswidth", "\u8b66\u544a\uff1a<applet> \u6a19\u7c64\u9700\u8981\u5bec\u5ea6\u5c6c\u6027\u3002"}, {"appletviewer.parse.warning.applet.requireswidth", "\u8B66\u544A: <applet> \u6A19\u8A18\u9700\u8981\u5BEC\u5EA6\u5C6C\u6027\u3002"},
{"appletviewer.parse.warning.object.requirescode", "\u8b66\u544a\uff1a<object> \u6a19\u7c64\u9700\u8981\u7a0b\u5f0f\u78bc\u5c6c\u6027\u3002"}, {"appletviewer.parse.warning.object.requirescode", "\u8B66\u544A: <object> \u6A19\u8A18\u9700\u8981\u4EE3\u78BC\u5C6C\u6027\u3002"},
{"appletviewer.parse.warning.object.requiresheight", "\u8b66\u544a\uff1a<object> \u6a19\u7c64\u9700\u8981\u9ad8\u5ea6\u5c6c\u6027\u3002"}, {"appletviewer.parse.warning.object.requiresheight", "\u8B66\u544A: <object> \u6A19\u8A18\u9700\u8981\u9AD8\u5EA6\u5C6C\u6027\u3002"},
{"appletviewer.parse.warning.object.requireswidth", "\u8b66\u544a\uff1a<object> \u6a19\u7c64\u9700\u8981\u5bec\u5ea6\u5c6c\u6027\u3002"}, {"appletviewer.parse.warning.object.requireswidth", "\u8B66\u544A: <object> \u6A19\u8A18\u9700\u8981\u5BEC\u5EA6\u5C6C\u6027\u3002"},
{"appletviewer.parse.warning.embed.requirescode", "\u8b66\u544a\uff1a<embed> \u6a19\u7c64\u9700\u8981\u7a0b\u5f0f\u78bc\u5c6c\u6027\u3002"}, {"appletviewer.parse.warning.embed.requirescode", "\u8B66\u544A: <embed> \u6A19\u8A18\u9700\u8981\u4EE3\u78BC\u5C6C\u6027\u3002"},
{"appletviewer.parse.warning.embed.requiresheight", "\u8b66\u544a\uff1a<embed> \u6a19\u7c64\u9700\u8981\u9ad8\u5ea6\u5c6c\u6027\u3002"}, {"appletviewer.parse.warning.embed.requiresheight", "\u8B66\u544A: <embed> \u6A19\u8A18\u9700\u8981\u9AD8\u5EA6\u5C6C\u6027\u3002"},
{"appletviewer.parse.warning.embed.requireswidth", "\u8b66\u544a\uff1a<embed> \u6a19\u7c64\u9700\u8981\u5bec\u5ea6\u5c6c\u6027"}, {"appletviewer.parse.warning.embed.requireswidth", "\u8B66\u544A: <embed> \u6A19\u8A18\u9700\u8981\u5BEC\u5EA6\u5C6C\u6027\u3002"},
{"appletviewer.parse.warning.appnotLongersupported", "\u8b66\u544a\uff1a\u4e0d\u518d\u652f\u63f4 <app> \u6a19\u7c64\uff0c\u8acb\u6539\u7528 <applet> \u3002"}, {"appletviewer.parse.warning.appnotLongersupported", "\u8B66\u544A: \u4E0D\u518D\u652F\u63F4 <app> \u6A19\u8A18\uFF0C\u8ACB\u6539\u7528 <applet>:"},
{"appletviewer.usage", "\u4f7f\u7528\uff1aappletviewer <options> url(s)\n\n\u5176\u4e2d <options> \u5305\u542b:\n -debug \u5728 JAVA \u9664\u932f\u4e2d\u555f\u52d5 applet \u6aa2\u8996\u5668\n -encoding <encoding> \u6307\u5b9a HTML \u6a94\u6848\u6240\u4f7f\u7528\u7684\u5b57\u5143\u7de8\u78bc\u65b9\u5f0f\n -J<runtime flag> \u5c07\u5f15\u6578\u50b3\u81f3 JAVA \u76f4\u8b6f\u7a0b\u5f0f\n\n -J \u9078\u9805\u4e26\u975e\u6a19\u6e96\u7684\uff0c\u800c\u4e14\u53d7\u6539\u8b8a\u63a7\u5236\u6642\u4e0d\u53e6\u884c\u901a\u77e5\u3002"}, {"appletviewer.usage", "\u7528\u6CD5: appletviewer <\u9078\u9805> url(s)\n\n\u5176\u4E2D\u7684 <\u9078\u9805> \u5305\u62EC:\n -debug \u5728 Java \u9664\u932F\u7A0B\u5F0F\u4E2D\u555F\u52D5 Applet \u6AA2\u8996\u5668\n -encoding <\u7DE8\u78BC> \u6307\u5B9A HTML \u6A94\u6848\u4F7F\u7528\u7684\u5B57\u5143\u7DE8\u78BC\n -J<\u57F7\u884C\u968E\u6BB5\u65D7\u6A19> \u5C07\u5F15\u6578\u50B3\u9001\u81F3 java \u89E3\u8B6F\u5668\n\n -J \u9078\u9805\u4E0D\u662F\u6A19\u6E96\u9078\u9805\uFF0C\u82E5\u6709\u8B8A\u66F4\u4E0D\u53E6\u884C\u901A\u77E5\u3002"},
{"appletviewer.main.err.unsupportedopt", "\u4e0d\u652f\u63f4\u7684\u9078\u9805\uff1a{0}"}, {"appletviewer.main.err.unsupportedopt", "\u4E0D\u652F\u63F4\u7684\u9078\u9805: {0}"},
{"appletviewer.main.err.unrecognizedarg", "\u7121\u6cd5\u8fa8\u8b58\u7684\u5f15\u6578\uff1a{0}"}, {"appletviewer.main.err.unrecognizedarg", "\u7121\u6CD5\u8FA8\u8B58\u7684\u5F15\u6578: {0}"},
{"appletviewer.main.err.dupoption", "\u91cd\u8907\u4f7f\u7528\u9078\u9805\uff1a{0}"}, {"appletviewer.main.err.dupoption", "\u91CD\u8907\u4F7F\u7528\u9078\u9805: {0}"},
{"appletviewer.main.err.inputfile", "\u672a\u6307\u5b9a\u8f38\u5165\u6a94\u6848\u3002"}, {"appletviewer.main.err.inputfile", "\u672A\u6307\u5B9A\u8F38\u5165\u6A94\u6848\u3002"},
{"appletviewer.main.err.badurl", "\u932f\u8aa4\u7684 URL: {0} ( {1} )"}, {"appletviewer.main.err.badurl", "\u932F\u8AA4\u7684 URL: {0} ( {1} )"},
{"appletviewer.main.err.io", "\u5728\u8b80\u53d6\u6642\u767c\u751f I/O \u7570\u5e38\uff1a{0}"}, {"appletviewer.main.err.io", "\u8B80\u53D6\u6642\u767C\u751F I/O \u7570\u5E38\u72C0\u6CC1: {0}"},
{"appletviewer.main.err.readablefile", "\u8acb\u78ba\u5b9a {0} \u662f\u4e00\u500b\u6a94\u6848\u800c\u4e14\u53ef\u8b80\u53d6\u3002"}, {"appletviewer.main.err.readablefile", "\u78BA\u8A8D {0} \u70BA\u6A94\u6848\u4E14\u53EF\u8B80\u53D6\u3002"},
{"appletviewer.main.err.correcturl", " {0} \u662f\u6b63\u78ba\u7684 URL \u55ce?"}, {"appletviewer.main.err.correcturl", "{0} \u662F\u5426\u70BA\u6B63\u78BA\u7684 URL\uFF1F"},
{"appletviewer.main.prop.store", "\u7d66 AppletViewer \u7684\u4f7f\u7528\u8005\u6307\u5b9a\u5c6c\u6027"}, {"appletviewer.main.prop.store", "AppletViewer \u7684\u4F7F\u7528\u8005\u7279\u5B9A\u5C6C\u6027"},
{"appletviewer.main.err.prop.cantread", "\u7121\u6cd5\u8b80\u53d6\u4f7f\u7528\u8005\u5c6c\u6027\u6a94\u6848\uff1a{0}"}, {"appletviewer.main.err.prop.cantread", "\u7121\u6CD5\u8B80\u53D6\u4F7F\u7528\u8005\u5C6C\u6027\u6A94\u6848: {0}"},
{"appletviewer.main.err.prop.cantsave", "\u7121\u6cd5\u5132\u5b58\u4f7f\u7528\u8005\u5c6c\u6027\u6a94\u6848\uff1a{0}"}, {"appletviewer.main.err.prop.cantsave", "\u7121\u6CD5\u5132\u5B58\u4F7F\u7528\u8005\u5C6C\u6027\u6A94\u6848: {0}"},
{"appletviewer.main.warn.nosecmgr", "\u8b66\u544a\uff1a\u505c\u7528\u5b89\u5168\u6027\u529f\u80fd\u3002"}, {"appletviewer.main.warn.nosecmgr", "\u8B66\u544A: \u505C\u7528\u5B89\u5168\u529F\u80FD\u3002"},
{"appletviewer.main.debug.cantfinddebug", "\u627e\u4e0d\u5230\u9664\u932f\u7a0b\u5f0f!"}, {"appletviewer.main.debug.cantfinddebug", "\u627E\u4E0D\u5230\u9664\u932F\u7A0B\u5F0F\uFF01"},
{"appletviewer.main.debug.cantfindmain", "\u5728\u9664\u932f\u7a0b\u5f0f\u4e2d\u627e\u4e0d\u5230\u4e3b\u65b9\u6cd5!"}, {"appletviewer.main.debug.cantfindmain", "\u5728\u9664\u932F\u7A0B\u5F0F\u4E2D\u627E\u4E0D\u5230\u4E3B\u8981\u65B9\u6CD5\uFF01"},
{"appletviewer.main.debug.exceptionindebug", "\u9664\u932f\u7a0b\u5f0f\u767c\u751f\u7570\u5e38"}, {"appletviewer.main.debug.exceptionindebug", "\u9664\u932F\u7A0B\u5F0F\u767C\u751F\u7570\u5E38\u72C0\u6CC1\uFF01"},
{"appletviewer.main.debug.cantaccess", "\u7121\u6cd5\u5b58\u53d6\u9664\u932f\u7a0b\u5f0f!"}, {"appletviewer.main.debug.cantaccess", "\u7121\u6CD5\u5B58\u53D6\u9664\u932F\u7A0B\u5F0F\uFF01"},
{"appletviewer.main.nosecmgr", "\u8b66\u544a\uff1a\u672a\u5b89\u88dd SecurityManager"}, {"appletviewer.main.nosecmgr", "\u8B66\u544A: \u672A\u5B89\u88DD SecurityManager\uFF01"},
{"appletviewer.main.warning", "\u8b66\u544a\uff1a\u672a\u555f\u52d5 applet\u3002\u8acb\u78ba\u5b9a\u6240\u8f38\u5165\u7684\u5305\u542b <applet> \u6a19\u7c64\u3002"}, {"appletviewer.main.warning", "\u8B66\u544A: \u672A\u555F\u52D5 Applet\u3002\u8ACB\u78BA\u8A8D\u8F38\u5165\u5305\u542B <applet> \u6A19\u8A18\u3002"},
{"appletviewer.main.warn.prop.overwrite", "\u8b66\u544a\uff1a\u5728\u4f7f\u7528\u8005\u8981\u6c42\u4e0b\u66ab\u6642\u8986\u5beb\u7cfb\u7d71\u5c6c\u6027: key: {0} \u820a\u503c\uff1a{1} \u65b0\u503c\uff1a{2}"}, {"appletviewer.main.warn.prop.overwrite", "\u8B66\u544A: \u4F9D\u7167\u4F7F\u7528\u8005\u8981\u6C42\uFF0C\u66AB\u6642\u8986\u5BEB\u7CFB\u7D71\u5C6C\u6027: \u7D22\u5F15\u9375: {0} \u820A\u503C: {1} \u65B0\u503C: {2}"},
{"appletviewer.main.warn.cantreadprops", "\u8b66\u544a\uff1a\u7121\u6cd5\u8b80\u53d6 AppletViewer \u5c6c\u6027\u6a94\uff1a{0} \u4f7f\u7528\u9810\u8a2d\u503c\u3002"}, {"appletviewer.main.warn.cantreadprops", "\u8B66\u544A: \u7121\u6CD5\u8B80\u53D6 AppletViewer \u5C6C\u6027\u6A94\u6848: {0} \u4F7F\u7528\u9810\u8A2D\u503C\u3002"},
{"appletioexception.loadclass.throw.interrupted", "\u985e\u5225\u8f09\u5165\u4e2d\u65b7\uff1a{0}"}, {"appletioexception.loadclass.throw.interrupted", "\u985E\u5225\u8F09\u5165\u4E2D\u65B7: {0}"},
{"appletioexception.loadclass.throw.notloaded", "\u985e\u5225\u672a\u88ab\u8f09\u5165\uff1a{0}"}, {"appletioexception.loadclass.throw.notloaded", "\u672A\u8F09\u5165\u985E\u5225: {0}"},
{"appletclassloader.loadcode.verbose", "\u958b\u555f\u4e32\u6d41\u81f3\uff1a{0} \u4ee5\u7372\u5f97\uff1a{1}"}, {"appletclassloader.loadcode.verbose", "\u958B\u555F {0} \u7684\u4E32\u6D41\u4EE5\u53D6\u5F97 {1}"},
{"appletclassloader.filenotfound", "\u5728\u5c0b\u627e\uff1a{0} \u6642\u672a\u627e\u5230\u6a94\u6848"}, {"appletclassloader.filenotfound", "\u5C0B\u627E {0} \u6642\u627E\u4E0D\u5230\u6A94\u6848"},
{"appletclassloader.fileformat", "\u5728\u8f09\u5165\uff1a{0} \u6642\u767c\u751f\u6a94\u6848\u683c\u5f0f\u7570\u5e38"}, {"appletclassloader.fileformat", "\u8F09\u5165\u6642\u767C\u751F\u6A94\u6848\u683C\u5F0F\u7570\u5E38\u72C0\u6CC1: {0}"},
{"appletclassloader.fileioexception", "\u5728\u8f09\u5165\uff1a{0} \u6642\u767c\u751f I/O \u7570\u5e38"}, {"appletclassloader.fileioexception", "\u8F09\u5165\u6642\u767C\u751F I/O \u7570\u5E38\u72C0\u6CC1: {0}"},
{"appletclassloader.fileexception", "\u5728\u8f09\u5165\uff1a{1} \u6642\u767c\u751f {0} \u7570\u5e38"}, {"appletclassloader.fileexception", "\u8F09\u5165\u6642\u767C\u751F {0} \u7570\u5E38\u72C0\u6CC1: {1}"},
{"appletclassloader.filedeath", "\u5728\u8f09\u5165 {1} \u6642 {0} \u88ab\u522a\u9664"}, {"appletclassloader.filedeath", "\u8F09\u5165\u6642\u522A\u9664 {0}: {1}"},
{"appletclassloader.fileerror", "\u5728\u8f09\u5165 {1} \u6642\u767c\u751f {0} \u932f\u8aa4"}, {"appletclassloader.fileerror", "\u8F09\u5165\u6642\u767C\u751F {0} \u932F\u8AA4: {1}"},
{"appletclassloader.findclass.verbose.findclass", "{0} \u767c\u73fe\u985e\u5225 {1}"}, {"appletclassloader.findclass.verbose.findclass", "{0} \u5C0B\u627E\u985E\u5225 {1}"},
{"appletclassloader.findclass.verbose.openstream", "\u958b\u555f\u8cc7\u6599\u6d41\u81f3\uff1a{0} \u4ee5\u7372\u5f97 {1}"}, {"appletclassloader.findclass.verbose.openstream", "\u958B\u555F {0} \u7684\u4E32\u6D41\u4EE5\u53D6\u5F97 {1}"},
{"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource \u540d\u7a31\uff1a{0}"}, {"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource \u7684\u540D\u7A31: {0}"},
{"appletclassloader.getresource.verbose.found", "\u767c\u73fe\u8cc7\u6e90\uff1a {0} \u662f\u7cfb\u7d71\u8cc7\u6e90"}, {"appletclassloader.getresource.verbose.found", "\u627E\u5230\u8CC7\u6E90: {0} \u4F5C\u70BA\u7CFB\u7D71\u8CC7\u6E90"},
{"appletclassloader.getresourceasstream.verbose", "\u88ab\u767c\u73fe\u7684\u8cc7\u6e90\uff1a{0} \u662f\u7cfb\u7d71\u8cc7\u6e90"}, {"appletclassloader.getresourceasstream.verbose", "\u627E\u5230\u8CC7\u6E90: {0} \u4F5C\u70BA\u7CFB\u7D71\u8CC7\u6E90"},
{"appletpanel.runloader.err", "\u7269\u4ef6\u6216\u662f\u7a0b\u5f0f\u78bc\u53c3\u6578!"}, {"appletpanel.runloader.err", "\u7269\u4EF6\u6216\u4EE3\u78BC\u53C3\u6578\uFF01"},
{"appletpanel.runloader.exception", "\u53cd\u4e32\u5217\u5316 {0} \u6642\u767c\u751f\u7570\u5e38"}, {"appletpanel.runloader.exception", "\u9084\u539F\u5E8F\u5217\u5316 {0} \u6642\u767C\u751F\u7570\u5E38\u72C0\u6CC1"},
{"appletpanel.destroyed", "Applet \u5df2\u92b7\u6bc0"}, {"appletpanel.destroyed", "\u5DF2\u640D\u6BC0 Applet\u3002"},
{"appletpanel.loaded", "Applet \u5df2\u8f09\u5165\u3002"}, {"appletpanel.loaded", "\u5DF2\u8F09\u5165 Applet\u3002"},
{"appletpanel.started", "Applet \u5df2\u555f\u52d5\u3002"}, {"appletpanel.started", "\u5DF2\u555F\u7528 Applet\u3002"},
{"appletpanel.inited", "Applet \u5df2\u521d\u59cb\u5316\u3002"}, {"appletpanel.inited", "\u5DF2\u8D77\u59CB Applet\u3002"},
{"appletpanel.stopped", "Applet \u5df2\u505c\u6b62\u3002"}, {"appletpanel.stopped", "\u5DF2\u505C\u6B62 Applet\u3002"},
{"appletpanel.disposed", "Applet \u5df2\u68c4\u7f6e\u3002"}, {"appletpanel.disposed", "\u5DF2\u8655\u7F6E Applet\u3002"},
{"appletpanel.nocode", "APPLET \u6a19\u7c64\u907a\u6f0f CODE \u53c3\u6578\u3002"}, {"appletpanel.nocode", "APPLET \u6A19\u8A18\u907A\u6F0F CODE \u53C3\u6578\u3002"},
{"appletpanel.notfound", "\u8f09\u5165\ufe30\u627e\u4e0d\u5230\u985e\u5225 {0}\u3002"}, {"appletpanel.notfound", "\u8F09\u5165: \u627E\u4E0D\u5230\u985E\u5225 {0}\u3002"},
{"appletpanel.nocreate", "\u8f09\u5165\ufe30\u7121\u6cd5\u5275\u8a2d {0}\u3002"}, {"appletpanel.nocreate", "\u8F09\u5165: \u7121\u6CD5\u5EFA\u7ACB {0}\u3002"},
{"appletpanel.noconstruct", "\u8f09\u5165\ufe30{0} \u4e0d\u662f\u516c\u7528\u6216\u6c92\u6709\u516c\u7528\u5efa\u69cb\u5143\u3002"}, {"appletpanel.noconstruct", "\u8F09\u5165: {0} \u975E\u516C\u7528\u6216\u6C92\u6709\u516C\u7528\u5EFA\u69CB\u5B50\u3002"},
{"appletpanel.death", "\u5df2\u522a\u9664"}, {"appletpanel.death", "\u5DF2\u522A\u9664"},
{"appletpanel.exception", "\u7570\u5e38\ufe30{0}\u3002"}, {"appletpanel.exception", "\u7570\u5E38\u72C0\u6CC1: {0}\u3002"},
{"appletpanel.exception2", "\u7570\u5e38\ufe30{0}\ufe30{1}\u3002"}, {"appletpanel.exception2", "\u7570\u5E38\u72C0\u6CC1: {0}: {1}\u3002"},
{"appletpanel.error", "\u932f\u8aa4\ufe30{0}\u3002"}, {"appletpanel.error", "\u932F\u8AA4: {0}\u3002"},
{"appletpanel.error2", "\u932f\u8aa4\ufe30{0}\ufe30{1}\u3002"}, {"appletpanel.error2", "\u932F\u8AA4: {0}: {1}\u3002"},
{"appletpanel.notloaded", "\u521d\u59cb\u5316\ufe30\u6c92\u6709\u8f09\u5165 applet\u3002"}, {"appletpanel.notloaded", "\u8D77\u59CB: \u672A\u8F09\u5165 Applet\u3002"},
{"appletpanel.notinited", "\u555f\u52d5\ufe30\u6c92\u6709\u521d\u59cb\u5316 applet\u3002"}, {"appletpanel.notinited", "\u555F\u52D5: \u672A\u8D77\u59CB Applet\u3002"},
{"appletpanel.notstarted", "\u505c\u6b62\ufe30\u6c92\u6709\u555f\u52d5 applet\u3002"}, {"appletpanel.notstarted", "\u505C\u6B62: \u672A\u555F\u52D5 Applet\u3002"},
{"appletpanel.notstopped", "\u92b7\u6bc0\ufe30\u6c92\u6709\u505c\u6b62 applet\u3002"}, {"appletpanel.notstopped", "\u640D\u6BC0: \u672A\u505C\u6B62 Applet\u3002"},
{"appletpanel.notdestroyed", "\u68c4\u7f6e\ufe30\u6c92\u6709\u92b7\u6bc0 applet\u3002"}, {"appletpanel.notdestroyed", "\u8655\u7F6E: \u672A\u640D\u6BC0 Applet\u3002"},
{"appletpanel.notdisposed", "\u8f09\u5165\ufe30\u6c92\u6709\u68c4\u7f6e applet\u3002"}, {"appletpanel.notdisposed", "\u8F09\u5165: \u672A\u8655\u7F6E Applet\u3002"},
{"appletpanel.bail", "\u4e2d\u65b7\ufe30\u91cb\u51fa\u3002"}, {"appletpanel.bail", "\u5DF2\u4E2D\u65B7: \u6B63\u5728\u7D50\u675F\u3002"},
{"appletpanel.filenotfound", "\u5c0b\u627e\ufe30{0} \u6642\u627e\u4e0d\u5230\u6a94\u6848"}, {"appletpanel.filenotfound", "\u5C0B\u627E {0} \u6642\u627E\u4E0D\u5230\u6A94\u6848"},
{"appletpanel.fileformat", "\u8f09\u5165\ufe30{0} \u6642\u767c\u751f\u6a94\u6848\u683c\u5f0f\u7570\u5e38"}, {"appletpanel.fileformat", "\u8F09\u5165\u6642\u767C\u751F\u6A94\u6848\u683C\u5F0F\u7570\u5E38\u72C0\u6CC1: {0}"},
{"appletpanel.fileioexception", "\u8f09\u5165\ufe30{0} \u6642\u767c\u751f I/O \u7570\u5e38"}, {"appletpanel.fileioexception", "\u8F09\u5165\u6642\u767C\u751F I/O \u7570\u5E38\u72C0\u6CC1: {0}"},
{"appletpanel.fileexception", "\u8f09\u5165\ufe30{1} \u6642\u767c\u751f {0} \u7570\u5e38"}, {"appletpanel.fileexception", "\u8F09\u5165\u6642\u767C\u751F {0} \u7570\u5E38\u72C0\u6CC1: {1}"},
{"appletpanel.filedeath", "\u8f09\u5165\ufe30{1} \u6642\u522a\u9664\u4e86 {0}"}, {"appletpanel.filedeath", "\u8F09\u5165\u6642\u522A\u9664 {0}: {1}"},
{"appletpanel.fileerror", "\u8f09\u5165\ufe30{1} \u6642\u767c\u751f {0} \u932f\u8aa4"}, {"appletpanel.fileerror", "\u8F09\u5165\u6642\u767C\u751F {0} \u932F\u8AA4: {1}"},
{"appletpanel.badattribute.exception", "HTML \u5256\u6790\uff1a\u5bec\u5ea6/\u9ad8\u5ea6\u5c6c\u6027\u503c\u4e0d\u6b63\u78ba"}, {"appletpanel.badattribute.exception", "HTML \u5256\u6790: \u5BEC\u5EA6/\u9AD8\u5EA6\u5C6C\u6027\u7684\u503C\u4E0D\u6B63\u78BA"},
{"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream \u9700\u8981\u975e\u7a7a\u7684\u8f09\u5165\u5668"}, {"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream \u9700\u8981\u975E\u7A7A\u503C\u8F09\u5165\u5668"},
{"appletprops.title", "AppletViewer \u5c6c\u6027"}, {"appletprops.title", "AppletViewer \u5C6C\u6027"},
{"appletprops.label.http.server", "Http \u4ee3\u7406\u4f3a\u670d\u5668\ufe30"}, {"appletprops.label.http.server", "Http \u4EE3\u7406\u4E3B\u6A5F\u4F3A\u670D\u5668:"},
{"appletprops.label.http.proxy", "Http \u4ee3\u7406\u9023\u63a5\u57e0\ufe30"}, {"appletprops.label.http.proxy", "Http \u4EE3\u7406\u4E3B\u6A5F\u9023\u63A5\u57E0:"},
{"appletprops.label.network", "\u7db2\u8def\u5b58\u53d6\ufe30"}, {"appletprops.label.network", "\u7DB2\u8DEF\u5B58\u53D6:"},
{"appletprops.choice.network.item.none", "\u7121"}, {"appletprops.choice.network.item.none", "\u7121"},
{"appletprops.choice.network.item.applethost", "Applet \u4e3b\u6a5f"}, {"appletprops.choice.network.item.applethost", "Applet \u4E3B\u6A5F"},
{"appletprops.choice.network.item.unrestricted", "\u7121\u9650\u5236\u7684"}, {"appletprops.choice.network.item.unrestricted", "\u4E0D\u53D7\u9650\u5236"},
{"appletprops.label.class", "\u985e\u5225\u5b58\u53d6\ufe30"}, {"appletprops.label.class", "\u985E\u5225\u5B58\u53D6:"},
{"appletprops.choice.class.item.restricted", "\u53d7\u9650\u5236\u7684"}, {"appletprops.choice.class.item.restricted", "\u53D7\u9650\u5236"},
{"appletprops.choice.class.item.unrestricted", "\u7121\u9650\u5236\u7684"}, {"appletprops.choice.class.item.unrestricted", "\u4E0D\u53D7\u9650\u5236"},
{"appletprops.label.unsignedapplet", "\u5141\u8a31\u7121\u7c3d\u540d\u7684 applet\ufe30"}, {"appletprops.label.unsignedapplet", "\u5141\u8A31\u672A\u7C3D\u7F72\u7684 Applet:"},
{"appletprops.choice.unsignedapplet.no", "\u5426"}, {"appletprops.choice.unsignedapplet.no", "\u5426"},
{"appletprops.choice.unsignedapplet.yes", "\u662f"}, {"appletprops.choice.unsignedapplet.yes", "\u662F"},
{"appletprops.button.apply", "\u5957\u7528"}, {"appletprops.button.apply", "\u5957\u7528"},
{"appletprops.button.cancel", "\u53d6\u6d88"}, {"appletprops.button.cancel", "\u53D6\u6D88"},
{"appletprops.button.reset", "\u91cd\u8a2d"}, {"appletprops.button.reset", "\u91CD\u8A2D"},
{"appletprops.apply.exception", "\u7121\u6cd5\u5132\u5b58\u5c6c\u6027\ufe30{0}"}, {"appletprops.apply.exception", "\u7121\u6CD5\u5132\u5B58\u5C6C\u6027: {0}"},
/* 4066432 */ /* 4066432 */
{"appletprops.title.invalidproxy", "\u8f38\u5165\u9805\u76ee\u7121\u6548"}, {"appletprops.title.invalidproxy", "\u7121\u6548\u7684\u9805\u76EE"},
{"appletprops.label.invalidproxy", "\u4ee3\u7406\u9023\u63a5\u57e0\u5fc5\u9808\u662f\u6b63\u6574\u6578\u503c\u3002"}, {"appletprops.label.invalidproxy", "\u4EE3\u7406\u4E3B\u6A5F\u9023\u63A5\u57E0\u5FC5\u9808\u662F\u6B63\u6574\u6578\u503C\u3002"},
{"appletprops.button.ok", "\u78ba\u5b9a"}, {"appletprops.button.ok", "\u78BA\u5B9A"},
/* end 4066432 */ /* end 4066432 */
{"appletprops.prop.store", "\u7528\u65bc AppletViewer \u7684\u4f7f\u7528\u8005\u6307\u5b9a\u5c6c\u6027"}, {"appletprops.prop.store", "AppletViewer \u7684\u4F7F\u7528\u8005\u7279\u5B9A\u5C6C\u6027"},
{"appletsecurityexception.checkcreateclassloader", "\u5b89\u5168\u6027\u7570\u5e38\uff1a\u985e\u5225\u8f09\u5165\u5668"}, {"appletsecurityexception.checkcreateclassloader", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: classloader"},
{"appletsecurityexception.checkaccess.thread", "\u5b89\u5168\u6027\u7570\u5e38\ufe30\u57f7\u884c\u7dd2"}, {"appletsecurityexception.checkaccess.thread", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: thread"},
{"appletsecurityexception.checkaccess.threadgroup", "\u5b89\u5168\u6027\u7570\u5e38\ufe30\u57f7\u884c\u7dd2\u7fa4\u7d44\ufe30{0}"}, {"appletsecurityexception.checkaccess.threadgroup", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: threadgroup: {0}"},
{"appletsecurityexception.checkexit", "\u5b89\u5168\u6027\u7570\u5e38\ufe30\u7d50\u675f\ufe30{0}"}, {"appletsecurityexception.checkexit", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: exit: {0}"},
{"appletsecurityexception.checkexec", "\u5b89\u5168\u6027\u7570\u5e38\ufe30\u57f7\u884c\ufe30{0}"}, {"appletsecurityexception.checkexec", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: exec: {0}"},
{"appletsecurityexception.checklink", "\u5b89\u5168\u6027\u7570\u5e38\ufe30\u9023\u7d50\ufe30{0}"}, {"appletsecurityexception.checklink", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: link: {0}"},
{"appletsecurityexception.checkpropsaccess", "\u5b89\u5168\u6027\u7570\u5e38\ufe30\u5c6c\u6027"}, {"appletsecurityexception.checkpropsaccess", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: \u5C6C\u6027"},
{"appletsecurityexception.checkpropsaccess.key", "\u5b89\u5168\u6027\u7570\u5e38\ufe30\u5c6c\u6027\u5b58\u53d6 {0}"}, {"appletsecurityexception.checkpropsaccess.key", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: \u5C6C\u6027\u5B58\u53D6 {0}"},
{"appletsecurityexception.checkread.exception1", "\u5b89\u5168\u6027\u7570\u5e38\ufe30{0}, {1}"}, {"appletsecurityexception.checkread.exception1", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: {0}\uFF0C{1}"},
{"appletsecurityexception.checkread.exception2", "\u5b89\u5168\u6027\u7570\u5e38\ufe30file.read: {0}"}, {"appletsecurityexception.checkread.exception2", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: file.read: {0}"},
{"appletsecurityexception.checkread", "file.write: {0} == {1}"}, {"appletsecurityexception.checkread", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: file.read: {0} == {1}"},
{"appletsecurityexception.checkwrite.exception", "\u5b89\u5168\u6027\u7570\u5e38\ufe30{0}, {1}"}, {"appletsecurityexception.checkwrite.exception", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: {0}\uFF0C{1}"},
{"appletsecurityexception.checkwrite", "\u5b89\u5168\u6027\u7570\u5e38\ufe30{0} == {1}"}, {"appletsecurityexception.checkwrite", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: file.write: {0} == {1}"},
{"appletsecurityexception.checkread.fd", "\u5b89\u5168\u6027\u7570\u5e38\ufe30 fd.read"}, {"appletsecurityexception.checkread.fd", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: fd.read"},
{"appletsecurityexception.checkwrite.fd", "\u5b89\u5168\u6027\u7570\u5e38\ufe30 fd.write"}, {"appletsecurityexception.checkwrite.fd", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: fd.write"},
{"appletsecurityexception.checklisten", "\u5b89\u5168\u6027\u7570\u5e38\ufe30 socket.listen: {0}"}, {"appletsecurityexception.checklisten", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: socket.listen: {0}"},
{"appletsecurityexception.checkaccept", "\u5b89\u5168\u6027\u7570\u5e38\ufe30 socket.accept: {0}:{1}"}, {"appletsecurityexception.checkaccept", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: socket.accept: {0}:{1}"},
{"appletsecurityexception.checkconnect.networknone", "\u5b89\u5168\u6027\u7570\u5e38\ufe30{0}->{1}"}, {"appletsecurityexception.checkconnect.networknone", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: socket.connect: {0}->{1}"},
{"appletsecurityexception.checkconnect.networkhost1", "\u5b89\u5168\u6027\u7570\u5e38\ufe30 \u7121\u6cd5\u5f9e {1} \u9023\u63a5\u5230\u539f\u59cb\u7684 {0}\u3002"}, {"appletsecurityexception.checkconnect.networkhost1", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: \u7121\u6CD5\u5F9E\u4F86\u6E90 {1} \u9023\u7DDA\u81F3 {0}\u3002"},
{"appletsecurityexception.checkconnect.networkhost2", "\u5b89\u5168\u6027\u7570\u5e38\ufe30\u7121\u6cd5\u89e3\u8b6f\u4e3b\u6a5f {0} \u6216 {1} \u7684 IP\u3002"}, {"appletsecurityexception.checkconnect.networkhost2", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: \u7121\u6CD5\u89E3\u6790\u4E3B\u6A5F {0} \u6216 {1} \u7684 IP\u3002"},
{"appletsecurityexception.checkconnect.networkhost3", "\u5168\u6027\u7570\u5e38\ufe30\u7121\u6cd5\u89e3\u8b6f\u4e3b\u6a5f {0} \u7684 IP\u3002\u8acb\u53c3\u95b1 trustProxy \u5c6c\u6027\u3002"}, {"appletsecurityexception.checkconnect.networkhost3", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: \u7121\u6CD5\u89E3\u6790\u4E3B\u6A5F {0} \u7684 IP\u3002\u8ACB\u53C3\u95B1 trustProxy \u5C6C\u6027\u3002"},
{"appletsecurityexception.checkconnect", "\u5b89\u5168\u6027\u7570\u5e38\ufe30\u9023\u63a5\ufe30{0}->{1}"}, {"appletsecurityexception.checkconnect", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: connect: {0}->{1}"},
{"appletsecurityexception.checkpackageaccess", "\u5b89\u5168\u6027\u7570\u5e38\ufe30\u7121\u6cd5\u5b58\u53d6\u5957\u88dd\u8edf\u9ad4\ufe30{0}"}, {"appletsecurityexception.checkpackageaccess", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: \u7121\u6CD5\u5B58\u53D6\u5957\u88DD\u7A0B\u5F0F: {0}"},
{"appletsecurityexception.checkpackagedefinition", "\u5b89\u5168\u6027\u7570\u5e38\ufe30\u7121\u6cd5\u5b9a\u7fa9\u5957\u88dd\u8edf\u9ad4\ufe30{0}"}, {"appletsecurityexception.checkpackagedefinition", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: \u7121\u6CD5\u5B9A\u7FA9\u5957\u88DD\u7A0B\u5F0F: {0}"},
{"appletsecurityexception.cannotsetfactory", "\u5b89\u5168\u6027\u7570\u5e38\ufe30\u7121\u6cd5\u8a2d\u5b9a factory"}, {"appletsecurityexception.cannotsetfactory", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: \u7121\u6CD5\u8A2D\u5B9A\u8655\u7406\u7AD9"},
{"appletsecurityexception.checkmemberaccess", "\u5b89\u5168\u6027\u7570\u5e38\ufe30\u6aa2\u67e5\u6210\u54e1\u5b58\u53d6\u6b0a\u9650"}, {"appletsecurityexception.checkmemberaccess", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: \u6AA2\u67E5\u6210\u54E1\u5B58\u53D6"},
{"appletsecurityexception.checkgetprintjob", "\u5b89\u5168\u6027\u7570\u5e38\ufe30getPrintJob"}, {"appletsecurityexception.checkgetprintjob", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: getPrintJob"},
{"appletsecurityexception.checksystemclipboardaccess", "\u5b89\u5168\u6027\u7570\u5e38\ufe30getSystemClipboard"}, {"appletsecurityexception.checksystemclipboardaccess", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: getSystemClipboard"},
{"appletsecurityexception.checkawteventqueueaccess", "\u5b89\u5168\u6027\u7570\u5e38\ufe30getEventQueue"}, {"appletsecurityexception.checkawteventqueueaccess", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: getEventQueue"},
{"appletsecurityexception.checksecurityaccess", "\u5b89\u5168\u6027\u7570\u5e38\ufe30\u5b89\u5168\u6027\u64cd\u4f5c\ufe30{0}"}, {"appletsecurityexception.checksecurityaccess", "\u5B89\u5168\u7570\u5E38\u72C0\u6CC1: \u5B89\u5168\u4F5C\u696D: {0}"},
{"appletsecurityexception.getsecuritycontext.unknown", "\u672a\u77e5\u7684\u985e\u5225\u8f09\u5165\u5668\u985e\u578b\u3002\u7121\u6cd5\u6aa2\u67e5 getContext"}, {"appletsecurityexception.getsecuritycontext.unknown", "\u4E0D\u660E\u7684\u985E\u5225\u8F09\u5165\u5668\u985E\u578B\u3002\u7121\u6CD5\u6AA2\u67E5 getContext"},
{"appletsecurityexception.checkread.unknown", "\u672a\u77e5\u7684\u985e\u5225\u8f09\u5165\u5668\u985e\u578b\u3002\u7121\u6cd5\u67e5\u770b\u6aa2\u67e5\u8b80\u53d6 {0}"}, {"appletsecurityexception.checkread.unknown", "\u4E0D\u660E\u7684\u985E\u5225\u8F09\u5165\u5668\u985E\u578B\u3002\u7121\u6CD5\u6AA2\u67E5 read {0}"},
{"appletsecurityexception.checkconnect.unknown", "\u672a\u77e5\u7684\u985e\u5225\u8f09\u5165\u5668\u985e\u578b\u3002\u7121\u6cd5\u67e5\u770b\u6aa2\u67e5\u9023\u63a5"}, {"appletsecurityexception.checkconnect.unknown", "\u4E0D\u660E\u7684\u985E\u5225\u8F09\u5165\u5668\u985E\u578B\u3002\u7121\u6CD5\u6AA2\u67E5\u9023\u7DDA"},
}; };
return temp;
} }
} }

View file

@ -12,12 +12,12 @@ AWT.altGraph=Alt Gr
# Key names # Key names
AWT.enter=Eingabe AWT.enter=Eingabe
AWT.backSpace=R\u00fccktaste AWT.backSpace=R\u00FCcktaste
AWT.tab=Tabulator AWT.tab=Tabulator
AWT.cancel=Abbrechen AWT.cancel=Abbrechen
AWT.clear=L\u00f6schen AWT.clear=L\u00F6schen
AWT.pause=Pause AWT.pause=Pause
AWT.capsLock=Umschalttaste Gro\u00df-/Kleinschreibung AWT.capsLock=Feststelltaste
AWT.escape=ESC AWT.escape=ESC
AWT.space=Leertaste AWT.space=Leertaste
AWT.pgup=Bild auf AWT.pgup=Bild auf
@ -28,25 +28,25 @@ AWT.left=Links
AWT.up=Oben AWT.up=Oben
AWT.right=Rechts AWT.right=Rechts
AWT.down=Unten AWT.down=Unten
AWT.begin=Begin AWT.begin=Anfang
AWT.comma=Comma AWT.comma=Komma
AWT.period=Period AWT.period=Punkt
AWT.slash=Slash AWT.slash=Schr\u00E4gstrich
AWT.semicolon=Semicolon AWT.semicolon=Semikolon
AWT.equals=Equals AWT.equals=Entspricht
AWT.openBracket=Open Bracket AWT.openBracket=\u00D6ffnende Klammer
AWT.backSlash=Back Slash AWT.backSlash=Umgekehrter Schr\u00E4gstrich
AWT.closeBracket=Close Bracket AWT.closeBracket=Schlie\u00DFende Klammer
AWT.multiply=Tastenblock * AWT.multiply=NumPad *
AWT.add=Tastenblock + AWT.add=NumPad +
AWT.separator=Tastenblock , AWT.separator=NumPad ,
AWT.separater=Tastenblock , AWT.separater=NumPad ,
AWT.subtract=Tastenblock - AWT.subtract=NumPad -
AWT.decimal=Tastenblock . AWT.decimal=NumPad .
AWT.divide=Tastenblock / AWT.divide=NumPad /
AWT.delete=Entf AWT.delete=Entf
AWT.numLock=Num AWT.numLock=Num
AWT.scrollLock=Rollsperre AWT.scrollLock=Rollen
AWT.f1=F1 AWT.f1=F1
AWT.f2=F2 AWT.f2=F2
AWT.f3=F3 AWT.f3=F3
@ -75,9 +75,9 @@ AWT.printScreen=Druck
AWT.insert=Einfg AWT.insert=Einfg
AWT.help=Hilfe AWT.help=Hilfe
AWT.windows=Windows AWT.windows=Windows
AWT.context=Context Menu AWT.context=Kontextmen\u00FC
AWT.backQuote=Schlie\u00dfendes Anf\u00fchrungszeichen AWT.backQuote=Schlie\u00DFendes Anf\u00FChrungszeichen
AWT.quote=Einfaches Anf\u00fchrungszeichen AWT.quote=Anf\u00FChrungszeichen
AWT.deadGrave=Gravis (Dead) AWT.deadGrave=Gravis (Dead)
AWT.deadAcute=Akut (Dead) AWT.deadAcute=Akut (Dead)
AWT.deadCircumflex=Zirkumflex (Dead) AWT.deadCircumflex=Zirkumflex (Dead)
@ -94,11 +94,11 @@ AWT.deadOgonek=Ogonek (Dead)
AWT.deadIota=Iota (Dead) AWT.deadIota=Iota (Dead)
AWT.deadVoicedSound=Stimmhaft (Dead) AWT.deadVoicedSound=Stimmhaft (Dead)
AWT.deadSemivoicedSound=Halbstimmhaft (Dead) AWT.deadSemivoicedSound=Halbstimmhaft (Dead)
AWT.ampersand=Kaufm\u00e4nnisches Und AWT.ampersand=Et-Zeichen
AWT.asterisk=Stern AWT.asterisk=Sternchen
AWT.quoteDbl=Doppelte Anf\u00fchrungszeichen AWT.quoteDbl=Doppelte Anf\u00FChrungszeichen
AWT.Less=Kleiner als AWT.Less=Kleiner als
AWT.greater=Gr\u00f6\u00dfer als AWT.greater=Gr\u00F6\u00DFer als
AWT.braceLeft=Linke geschweifte Klammer AWT.braceLeft=Linke geschweifte Klammer
AWT.braceRight=Rechte geschweifte Klammer AWT.braceRight=Rechte geschweifte Klammer
AWT.at=Klammeraffe AWT.at=Klammeraffe
@ -117,8 +117,8 @@ AWT.underscore=Unterstrich
AWT.final=Abschluss AWT.final=Abschluss
AWT.convert=Konvertieren AWT.convert=Konvertieren
AWT.noconvert=Nicht konvertieren AWT.noconvert=Nicht konvertieren
AWT.accept=Annehmen AWT.accept=Akzeptieren
AWT.modechange=Modus\u00e4nderung AWT.modechange=Modus\u00E4nderung
AWT.kana=Kana AWT.kana=Kana
AWT.kanji=Kanji AWT.kanji=Kanji
AWT.alphanumeric=Alphanumerisch AWT.alphanumeric=Alphanumerisch
@ -129,26 +129,26 @@ AWT.halfWidth=Halbe Breite
AWT.romanCharacters=Lateinische Zeichen AWT.romanCharacters=Lateinische Zeichen
AWT.allCandidates=Alle Kandidaten AWT.allCandidates=Alle Kandidaten
AWT.previousCandidate=Vorheriger Kandidat AWT.previousCandidate=Vorheriger Kandidat
AWT.codeInput=Code-Eingabe AWT.codeInput=Codeeingabe
AWT.japaneseKatakana=Japanisch (Katakana) AWT.japaneseKatakana=Japanisch (Katakana)
AWT.japaneseHiragana=Japanisch (Hiragana) AWT.japaneseHiragana=Japanisch (Hiragana)
AWT.japaneseRoman=Japanisch (Latein) AWT.japaneseRoman=Japanisch (Latein)
AWT.kanaLock=Kana Lock AWT.kanaLock=Kana Lock
AWT.inputMethodOnOff=Eingabemethode ein/aus AWT.inputMethodOnOff=Eingabemethode ein/aus
AWT.again=Wiederholen AWT.again=Wiederholen
AWT.undo=R\u00fcckg\u00e4ngig AWT.undo=R\u00FCckg\u00E4ngig
AWT.copy=Kopieren AWT.copy=Kopieren
AWT.paste=Einf\u00fcgen AWT.paste=Einf\u00FCgen
AWT.cut=Ausschneiden AWT.cut=Ausschneiden
AWT.find=Suchen AWT.find=Suchen
AWT.props=Eigenschaften AWT.props=Eigenschaften
AWT.stop=Stop AWT.stop=Stopp
AWT.compose=Verfassen AWT.compose=Verfassen
# Numeric Keypad # Numeric Keypad
AWT.numpad=NumPad AWT.numpad=NumPad
AWT.unknown=Unknown AWT.unknown=Unbekannt
AWT.undefined=Undefined AWT.undefined=Undefiniert
# Predefined cursor names # Predefined cursor names
AWT.DefaultCursor=Standardcursor AWT.DefaultCursor=Standardcursor
@ -166,12 +166,12 @@ AWT.EResizeCursor=Skaliercursor nach rechts
AWT.HandCursor=Handcursor AWT.HandCursor=Handcursor
AWT.MoveCursor=Verschiebecursor AWT.MoveCursor=Verschiebecursor
AWT.DefaultDragCursor=Standardcursor beim Ziehen AWT.DefaultDragCursor=Standardcursor beim Ziehen
AWT.DefaultNoDropCursor=Standardcursor beim Nichtziehen AWT.DefaultNoDropCursor=Standardcursor NoDrag
AWT.DefaultDropCursor=Standardcursor beim Ablegen AWT.DefaultDropCursor=Standardcursor beim Ablegen
# Input method related strings # Input method related strings
AWT.CompositionWindowTitle=Eingabefenster AWT.CompositionWindowTitle=Eingabefenster
AWT.InputMethodSelectionMenu=Eingabemethode ausw\u00e4hlen AWT.InputMethodSelectionMenu=Eingabemethode ausw\u00E4hlen
AWT.HostInputMethodDisplayName=Systemeingabemethoden AWT.HostInputMethodDisplayName=Systemeingabemethoden
AWT.InputMethodLanguage.ja=Japanisch AWT.InputMethodLanguage.ja=Japanisch
AWT.InputMethodLanguage.ko=Koreanisch AWT.InputMethodLanguage.ko=Koreanisch
@ -188,5 +188,5 @@ java.awt.im.style=On-the-Spot
java.awt.def.delay=30 java.awt.def.delay=30
# Warnings # Warnings
AWT.InconsistentDLLsWarning=Textbasierte Operationen arbeiten m\u00f6glicherweise nicht richtig, weil auf Ihrem System ein inkonsistenter Satz von Dynamic Linking Libraries (DLLs) installiert ist. Weitere Informationen zu diesem Problem sowie eine Empfehlung zu deren Umgehung finden Sie in den Java(TM) 2 SDK, Standard Edition Release Notes unter java.sun.com. AWT.InconsistentDLLsWarning=Textbasierte Vorg\u00E4nge funktionieren m\u00F6glicherweise nicht richtig, weil inkonsistente Dynamic Linking Librarys (DLLs) auf dem System installiert sind. Weitere Informationen zu diesem Problem sowie eine Empfehlung zu der Umgehung finden Sie in den Java(TM) 2 SDK, Standard Edition Release Notes unter java.sun.com.

View file

@ -4,49 +4,49 @@
# #
# Modifier names # Modifier names
AWT.shift=May\u00fasculas AWT.shift=May\u00FAsculas
AWT.control=Ctrl AWT.control=Ctrl
AWT.alt=Alt AWT.alt=Alt
AWT.meta=Meta AWT.meta=Meta
AWT.altGraph=Alt Gr AWT.altGraph=Alt Gr
# Key names # Key names
AWT.enter=Introduzca AWT.enter=Intro
AWT.backSpace=Retroceso AWT.backSpace=Retroceso
AWT.tab=Tabulador AWT.tab=Tabulador
AWT.cancel=Cancelar AWT.cancel=Cancelar
AWT.clear=Borrar AWT.clear=Borrar
AWT.pause=Pausa AWT.pause=Pausa
AWT.capsLock=Bloqueo de may\u00fasculas AWT.capsLock=Bloqueo de May\u00FAsculas
AWT.escape=Escape AWT.escape=Escape
AWT.space=Espacio AWT.space=Espacio
AWT.pgup=ReP\u00e1g AWT.pgup=ReP\u00E1g
AWT.pgdn=AvP\u00e1g AWT.pgdn=AvP\u00E1g
AWT.end=Fin AWT.end=Fin
AWT.home=Inicio AWT.home=Inicio
AWT.left=Izquierda AWT.left=Izquierda
AWT.up=Arriba AWT.up=Arriba
AWT.right=Derecha AWT.right=Derecha
AWT.down=Abajo AWT.down=Abajo
AWT.begin=Begin AWT.begin=Inicio
AWT.comma=Comma AWT.comma=Coma
AWT.period=Period AWT.period=Punto
AWT.slash=Slash AWT.slash=Barra
AWT.semicolon=Semicolon AWT.semicolon=Punto y coma
AWT.equals=Equals AWT.equals=Igual
AWT.openBracket=Open Bracket AWT.openBracket=Par\u00E9ntesis de Apertura
AWT.backSlash=Back Slash AWT.backSlash=Barra Invertida
AWT.closeBracket=Close Bracket AWT.closeBracket=Par\u00E9ntesis de Cierre
AWT.multiply=* de teclado num\u00e9rico AWT.multiply=* de Teclado Num\u00E9rico
AWT.add=+ de teclado num\u00e9rico AWT.add=+ de Teclado Num\u00E9rico
AWT.separator=, de teclado num\u00e9rico AWT.separator=, de Teclado Num\u00E9rico
AWT.separater=, de teclado num\u00e9rico # for backwards compatibility only AWT.separater=, de Teclado Num\u00E9rico
AWT.subtract=- de teclado num\u00e9rico AWT.subtract=- de Teclado Num\u00E9rico
AWT.decimal=. de teclado num\u00e9rico AWT.decimal=. de Teclado Num\u00E9rico
AWT.divide=/ de teclado num\u00e9rico AWT.divide=/ de Teclado Num\u00E9rico
AWT.delete=Suprimir AWT.delete=Suprimir
AWT.numLock=Bloqueo num\u00e9rico AWT.numLock=Bloqueo Num\u00E9rico
AWT.scrollLock=Bloqueo de desplazamiento AWT.scrollLock=Bloqueo de Desplazamiento
AWT.f1=F1 AWT.f1=F1
AWT.f2=F2 AWT.f2=F2
AWT.f3=F3 AWT.f3=F3
@ -71,70 +71,70 @@ AWT.f21=F21
AWT.f22=F22 AWT.f22=F22
AWT.f23=F23 AWT.f23=F23
AWT.f24=F24 AWT.f24=F24
AWT.printScreen=Imprimir pantalla AWT.printScreen=Imprimir Pantalla
AWT.insert=Insertar AWT.insert=Insertar
AWT.help=Ayuda AWT.help=Ayuda
AWT.windows=Windows AWT.windows=Windows
AWT.context=Context Menu AWT.context=Men\u00FA Contextual
AWT.backQuote=Abrir comilla AWT.backQuote=Comilla Invertida
AWT.quote=Cerrar comilla AWT.quote=Comilla
AWT.deadGrave=Acento grave muerto AWT.deadGrave=Acento Grave (Tecla Muerta)
AWT.deadAcute=Acento agudio muerto AWT.deadAcute=Acento Agudo Muerto
AWT.deadCircumflex=Circunflejo muerto AWT.deadCircumflex=Circunflejo (Tecla Muerta)
AWT.deadTilde=Tilde muerto AWT.deadTilde=Tilde (Tecla Muerta)
AWT.deadMacron=Macron muerto AWT.deadMacron=Macr\u00F3n (Tecla Muerta)
AWT.deadBreve=Breve muerto AWT.deadBreve=Acento Breve (Tecla Muerta)
AWT.deadAboveDot=Punto superior muerto AWT.deadAboveDot=Punto Superior (Tecla Muerta)
AWT.deadDiaeresis=Di\u00e9resis muerta AWT.deadDiaeresis=Di\u00E9resis (Tecla Muerta)
AWT.deadAboveRing=C\u00edrculo superior muerto AWT.deadAboveRing=C\u00EDrculo Superior (Tecla Muerta)
AWT.deadDoubleAcute=Acento agudo doble muerto AWT.deadDoubleAcute=Acento Agudo Doble (Tecla Muerta)
AWT.deadCaron=Caron muerto AWT.deadCaron=Acento Articircunflejo (Tecla Muerta)
AWT.deadCedilla=Cedilla muerta AWT.deadCedilla=Cedilla (Tecla Muerta)
AWT.deadOgonek=Ogonek muerto AWT.deadOgonek=Esp\u00EDritu \u00C1spero (Tecla Muerta)
AWT.deadIota=Iota muerta AWT.deadIota=Iota (Tecla Muerta)
AWT.deadVoicedSound=Sonido sonoro muerto AWT.deadVoicedSound=Sonido Sonoro (Tecla Muerta)
AWT.deadSemivoicedSound=Sonido semisonoro muerto AWT.deadSemivoicedSound=Sonido Semisonoro (Tecla Muerta)
AWT.ampersand=S\u00edmbolo & AWT.ampersand=Ampersand
AWT.asterisk=Asterisco AWT.asterisk=Asterisco
AWT.quoteDbl=Dobles comillas AWT.quoteDbl=Dobles Comillas
AWT.Less=Menor que AWT.Less=Menor que
AWT.greater=Mayor que AWT.greater=Mayor que
AWT.braceLeft=Abrir llave AWT.braceLeft=Llave de Apertura
AWT.braceRight=Cerrar llave AWT.braceRight=Llave de Cierre
AWT.at=Arroba AWT.at=Arroba
AWT.colon=Dos puntos AWT.colon=Dos puntos
AWT.circumflex=Circunflejo AWT.circumflex=Circunflejo
AWT.dollar=D\u00f3lar AWT.dollar=D\u00F3lar
AWT.euro=Euro AWT.euro=Euro
AWT.exclamationMark=Signo de exclamaci\u00f3n izquierdo AWT.exclamationMark=Signo de Exclamaci\u00F3n de Cierre
AWT.invertedExclamationMark=Signo de exclamaci\u00f3n derecho AWT.invertedExclamationMark=Signo de Exclamaci\u00F3n de Apertura
AWT.leftParenthesis=Par\u00e9ntesis izquierdo AWT.leftParenthesis=Par\u00E9ntesis Izquierdo
AWT.numberSign=Signo de n\u00famero AWT.numberSign=Signo de N\u00FAmero
AWT.plus=M\u00e1s AWT.plus=M\u00E1s
AWT.minus=Menos AWT.minus=Menos
AWT.rightParenthesis=Par\u00e9ntesis derecho AWT.rightParenthesis=Par\u00E9ntesis Derecho
AWT.underscore=Subrayado AWT.underscore=Subrayado
AWT.final=Final AWT.final=Final
AWT.convert=Convertir AWT.convert=Convertir
AWT.noconvert=No Convertir AWT.noconvert=No Convertir
AWT.accept=Aceptar AWT.accept=Aceptar
AWT.modechange=Cambio de modo AWT.modechange=Cambio de Modo
AWT.kana=Kana AWT.kana=Kana
AWT.kanji=Kanji AWT.kanji=Kanji
AWT.alphanumeric=Alfanum\u00e9rico AWT.alphanumeric=Alfanum\u00E9rico
AWT.katakana=Katakana AWT.katakana=Katakana
AWT.hiragana=Hiragana AWT.hiragana=Hiragana
AWT.fullWidth=Anchura completa AWT.fullWidth=Anchura Completa
AWT.halfWidth=Media anchura AWT.halfWidth=Media Anchura
AWT.romanCharacters=Caracteres romanos AWT.romanCharacters=Caracteres Romanos
AWT.allCandidates=Todos los candidatos AWT.allCandidates=Todos los Candidatos
AWT.previousCandidate=Candidato anterior AWT.previousCandidate=Candidato Anterior
AWT.codeInput=Entrada de c\u00f3digo AWT.codeInput=Entrada de C\u00F3digo
AWT.japaneseKatakana=Caracteres katakana japoneses AWT.japaneseKatakana=Caracteres Katakana Japoneses
AWT.japaneseHiragana=Caracteres hiragana japoneses AWT.japaneseHiragana=Caracteres Hiragana Japoneses
AWT.japaneseRoman=Caracteres romanos japoneses AWT.japaneseRoman=Caracteres Romanos Japoneses
AWT.kanaLock=Bloquear kana AWT.kanaLock=Bloqueo Kana
AWT.inputMethodOnOff=Activar/desactivar m\u00e9todo de entrada AWT.inputMethodOnOff=Activar/Desactivar M\u00E9todo de Entrada
AWT.again=Repetir AWT.again=Repetir
AWT.undo=Deshacer AWT.undo=Deshacer
AWT.copy=Copiar AWT.copy=Copiar
@ -146,48 +146,47 @@ AWT.stop=Parar
AWT.compose=Componer AWT.compose=Componer
# Numeric Keypad # Numeric Keypad
AWT.numpad=NumPad AWT.numpad=Teclado Num\u00E9rico
AWT.unknown=Unknown AWT.unknown=Desconocido
AWT.undefined=Undefined AWT.undefined=No Definido
# Predefined cursor names # Predefined cursor names
AWT.DefaultCursor=Cursor predeterminado AWT.DefaultCursor=Cursor Por defecto
AWT.CrosshairCursor=Cursor de punto de mira AWT.CrosshairCursor=Cursor de Punto de Mira
AWT.TextCursor=Cursor de texto AWT.TextCursor=Cursor de Texto
AWT.WaitCursor=Cursor de espera AWT.WaitCursor=Cursor de Espera
AWT.SWResizeCursor=Cursor de cambio de tama\u00f1o suroeste AWT.SWResizeCursor=Cursor de Cambio de Tama\u00F1o Suroeste
AWT.SEResizeCursor=Cursor de cambio de tama\u00f1o sudeste AWT.SEResizeCursor=Cursor de Cambio de Tama\u00F1o Sudeste
AWT.NWResizeCursor=Cursor de cambio de tama\u00f1o noroeste AWT.NWResizeCursor=Cursor de Cambio de Tama\u00F1o Noroeste
AWT.NEResizeCursor=Cursor de cambio de tama\u00f1o nordeste AWT.NEResizeCursor=Cursor de Cambio de Tama\u00F1o Nordeste
AWT.NResizeCursor=Cursor de cambio de tama\u00f1o norte AWT.NResizeCursor=Cursor de Cambio de Tama\u00F1o Norte
AWT.SResizeCursor=Cursor de cambio de tama\u00f1o sur AWT.SResizeCursor=Cursor de Cambio de Tama\u00F1o Sur
AWT.WResizeCursor=Cursor de cambio de tama\u00f1o oeste AWT.WResizeCursor=Cursor de Cambio de Tama\u00F1o Oeste
AWT.EResizeCursor=Cursor de cambio de tama\u00f1o este AWT.EResizeCursor=Cursor de Cambio de Tama\u00F1o este
AWT.HandCursor=Cursor de mano AWT.HandCursor=Cursor de Mano
AWT.MoveCursor=Cursor de movimiento AWT.MoveCursor=Cursor de Movimiento
AWT.DefaultDragCursor=Cursor de arrastrar predeterminado AWT.DefaultDragCursor=Cursor de Arrastrar Por defecto
AWT.DefaultNoDropCursor=Cursor de no arrastrar predeterminado AWT.DefaultNoDropCursor=Cursor de No Arrastrar Por Defecto
AWT.DefaultDropCursor=Cursor de soltar predeterminado AWT.DefaultDropCursor=Cursor de Soltar Por Defecto
# Input method related strings # Input method related strings
AWT.CompositionWindowTitle=Ventana de entrada AWT.CompositionWindowTitle=Ventana de Entrada
AWT.InputMethodSelectionMenu=Seleccionar m\u00e9todo de entrada AWT.InputMethodSelectionMenu=Seleccionar M\u00E9todo de Entrada
AWT.HostInputMethodDisplayName=M\u00e9todos de entrada del sistema AWT.HostInputMethodDisplayName=M\u00E9todos de Entrada del Sistema
AWT.InputMethodLanguage.ja=Japon\u00e9s AWT.InputMethodLanguage.ja=Japon\u00E9s
AWT.InputMethodLanguage.ko=Coreano AWT.InputMethodLanguage.ko=Coreano
AWT.InputMethodLanguage.zh=Chino AWT.InputMethodLanguage.zh=Chino
AWT.InputMethodLanguage.zh_CN=Chino simplificado AWT.InputMethodLanguage.zh_CN=Chino Simplificado
AWT.InputMethodLanguage.zh_TW=Chino tradicional AWT.InputMethodLanguage.zh_TW=Chino Tradicional
AWT.InputMethodCreationFailed=No se ha podido crear {0}. Motivo: {1} AWT.InputMethodCreationFailed=No se ha podido crear {0}. Motivo: {1}
# Property to select between on-the-spot and below-the-spot # Property to select between on-the-spot and below-the-spot
# composition with input methods. Valid values: # composition with input methods. Valid values:
# "on-the-spot", "below-the-spot". # "on-the-spot", "below-the-spot".
# May be overridden from command line. # May be overridden from command line.
java.awt.im.style=en-el-acto java.awt.im.style=en el lugar
java.awt.def.delay=30 java.awt.def.delay=30
# Warnings # Warnings
AWT.InconsistentDLLsWarning=Puede que las operaciones textuales no funcionen correctamente debido a un conjunto incompatible de librer\u00edas de enlace \ AWT.InconsistentDLLsWarning=Puede que las operaciones textuales no funcionen correctamente debido a un juego incoherente de bibliotecas de enlaces din\u00E1micos (DLL) instaladas en su sistema. Para obtener m\u00E1s informaci\u00F3n acerca de este problema y de la soluci\u00F3n alternativa sugerida, consulte Java(TM) 2 SDK, Standard Edition Release Notes en java.sun.com.

View file

@ -7,20 +7,20 @@
AWT.shift=Maj AWT.shift=Maj
AWT.control=Ctrl AWT.control=Ctrl
AWT.alt=Alt AWT.alt=Alt
AWT.meta=M\u00e9ta AWT.meta=M\u00E9ta
AWT.altGraph=Alt graphe AWT.altGraph=Alt graphique
# Key names # Key names
AWT.enter=Entr\u00e9e AWT.enter=Entr\u00E9e
AWT.backSpace=Retour arri\u00e8re AWT.backSpace=Retour arri\u00E8re
AWT.tab=Tab AWT.tab=Tab
AWT.cancel=Annuler AWT.cancel=Annuler
AWT.clear=Effacer AWT.clear=Effacer
AWT.pause=Pause AWT.pause=Pause
AWT.capsLock=Verrouillage des majuscules AWT.capsLock=Verrouillage des majuscules
AWT.escape=Esc AWT.escape=Echap
AWT.space=Espace AWT.space=Espace
AWT.pgup=Page pr\u00e9c\u00e9dente AWT.pgup=Page pr\u00E9c\u00E9dente
AWT.pgdn=Page suivante AWT.pgdn=Page suivante
AWT.end=Fin AWT.end=Fin
AWT.home=Origine AWT.home=Origine
@ -28,25 +28,25 @@ AWT.left=Gauche
AWT.up=Haut AWT.up=Haut
AWT.right=Droite AWT.right=Droite
AWT.down=Bas AWT.down=Bas
AWT.begin=Begin AWT.begin=D\u00E9but
AWT.comma=Comma AWT.comma=Virgule
AWT.period=Period AWT.period=Point
AWT.slash=Slash AWT.slash=Barre oblique
AWT.semicolon=Semicolon AWT.semicolon=Point-virgule
AWT.equals=Equals AWT.equals=Egal
AWT.openBracket=Open Bracket AWT.openBracket=Crochet ouvrant
AWT.backSlash=Back Slash AWT.backSlash=Barre oblique inverse
AWT.closeBracket=Close Bracket AWT.closeBracket=Crochet fermant
AWT.multiply=Pav\u00e9 num\u00e9rique * AWT.multiply=Pav\u00E9 num\u00E9rique *
AWT.add=Pav\u00e9 num\u00e9rique + AWT.add=Pav\u00E9 num\u00E9rique +
AWT.separator=Pav\u00e9 num\u00e9rique , AWT.separator=Pav\u00E9 num\u00E9rique ,
AWT.separater=Pav\u00e9 num\u00e9rique , # for backwards compatibility only AWT.separater=Pav\u00E9 num\u00E9rique ,
AWT.subtract=Pav\u00e9 num\u00e9rique - AWT.subtract=Pav\u00E9 num\u00E9rique -
AWT.decimal=Pav\u00e9 num\u00e9rique . AWT.decimal=Pav\u00E9 num\u00E9rique .
AWT.divide=Pav\u00e9 num\u00e9rique / AWT.divide=Pav\u00E9 num\u00E9rique /
AWT.delete=Supprimer AWT.delete=Supprimer
AWT.numLock=Verrouillage du pav\u00e9 num\u00e9rique AWT.numLock=Verrouillage du pav\u00E9 num\u00E9rique
AWT.scrollLock=Verrouillage du d\u00e9filement AWT.scrollLock=Verrouillage du d\u00E9filement
AWT.f1=F1 AWT.f1=F1
AWT.f2=F2 AWT.f2=F2
AWT.f3=F3 AWT.f3=F3
@ -71,34 +71,34 @@ AWT.f21=F21
AWT.f22=F22 AWT.f22=F22
AWT.f23=F23 AWT.f23=F23
AWT.f24=F24 AWT.f24=F24
AWT.printScreen=Impression d''\u00e9cran AWT.printScreen=Impression d'\u00E9cran
AWT.insert=Ins\u00e9rer AWT.insert=Ins\u00E9rer
AWT.help=Aide AWT.help=Aide
AWT.windows=Windows AWT.windows=Windows
AWT.context=Context Menu AWT.context=Menu contextuel
AWT.backQuote=Guillemet ouvrant AWT.backQuote=Apostrophe invers\u00E9e
AWT.quote=Guillemet fermant AWT.quote=Apostrophe
AWT.deadGrave=Accent grave AWT.deadGrave=Accent grave
AWT.deadAcute=Accent aigu AWT.deadAcute=Accent aigu
AWT.deadCircumflex=Accent circonflexe AWT.deadCircumflex=Accent circonflexe
AWT.deadTilde=Tilde AWT.deadTilde=Tilde
AWT.deadMacron=Macron AWT.deadMacron=Macron
AWT.deadBreve=Demi-cercle AWT.deadBreve=Demi-cercle
AWT.deadAboveDot=Point en haut AWT.deadAboveDot=Point en chef
AWT.deadDiaeresis=Tr\u00e9ma AWT.deadDiaeresis=Tr\u00E9ma
AWT.deadAboveRing=Anneau en haut AWT.deadAboveRing=Anneau en chef
AWT.deadDoubleAcute=Double accent pointu AWT.deadDoubleAcute=Double accent aigu
AWT.deadCaron=Caron AWT.deadCaron=Caron
AWT.deadCedilla=C\u00e9dille AWT.deadCedilla=C\u00E9dille
AWT.deadOgonek=Ogonek AWT.deadOgonek=Ogonek
AWT.deadIota=Iota AWT.deadIota=Iota
AWT.deadVoicedSound=Son vois\u00e9 AWT.deadVoicedSound=Son vois\u00E9
AWT.deadSemivoicedSound=Son semi-vois\u00e9 AWT.deadSemivoicedSound=Son semi-vois\u00E9
AWT.ampersand=Perlu\u00e8te AWT.ampersand=Esperluette
AWT.asterisk=Ast\u00e9risque AWT.asterisk=Ast\u00E9risque
AWT.quoteDbl=Guillemets AWT.quoteDbl=Guillemets
AWT.Less=Inf\u00e9rieur \u00e0 AWT.Less=Inf\u00E9rieur \u00E0
AWT.greater=Sup\u00e9rieur \u00e0 AWT.greater=Sup\u00E9rieur \u00E0
AWT.braceLeft=Accolade ouvrante AWT.braceLeft=Accolade ouvrante
AWT.braceRight=Accolade fermante AWT.braceRight=Accolade fermante
AWT.at=A commercial AWT.at=A commercial
@ -106,14 +106,14 @@ AWT.colon=Deux-points
AWT.circumflex=Circonflexe AWT.circumflex=Circonflexe
AWT.dollar=Dollar AWT.dollar=Dollar
AWT.euro=Euro AWT.euro=Euro
AWT.exclamationMark=Point d''exclamation AWT.exclamationMark=Point d'exclamation
AWT.invertedExclamationMark=Point d''exclamation invers\u00e9 AWT.invertedExclamationMark=Point d'exclamation invers\u00E9
AWT.leftParenthesis=Parenth\u00e8se ouvrante AWT.leftParenthesis=Parenth\u00E8se ouvrante
AWT.numberSign=Signe Num\u00e9ro AWT.numberSign=Di\u00E8se
AWT.plus=Plus AWT.plus=Plus
AWT.minus=Moins AWT.minus=Moins
AWT.rightParenthesis=Parenth\u00e8se fermante AWT.rightParenthesis=Parenth\u00E8se fermante
AWT.underscore=Tiret de soulignement AWT.underscore=Trait de soulignement
AWT.final=Final AWT.final=Final
AWT.convert=Convertir AWT.convert=Convertir
AWT.noconvert=Ne pas convertir AWT.noconvert=Ne pas convertir
@ -121,64 +121,64 @@ AWT.accept=Accepter
AWT.modechange=Changement de mode AWT.modechange=Changement de mode
AWT.kana=Kana AWT.kana=Kana
AWT.kanji=Kanji AWT.kanji=Kanji
AWT.alphanumeric=Alphanum\u00e9rique AWT.alphanumeric=Alphanum\u00E9rique
AWT.katakana=Katakana AWT.katakana=Katakana
AWT.hiragana=Hiragana AWT.hiragana=Hiragana
AWT.fullWidth=Pleine largeur AWT.fullWidth=Pleine largeur
AWT.halfWidth=Demi-largeur AWT.halfWidth=Demi-largeur
AWT.romanCharacters=Caract\u00e8res romains AWT.romanCharacters=Caract\u00E8res romains
AWT.allCandidates=Tous les candidats AWT.allCandidates=Tous les candidats
AWT.previousCandidate=Candidat pr\u00e9c\u00e9dent AWT.previousCandidate=Candidat pr\u00E9c\u00E9dent
AWT.codeInput=Entr\u00e9e de code AWT.codeInput=Entr\u00E9e de code
AWT.japaneseKatakana=Japonais Katakana AWT.japaneseKatakana=Japonais Katakana
AWT.japaneseHiragana=Japonais Hiragana AWT.japaneseHiragana=Japonais Hiragana
AWT.japaneseRoman=Japonais romain AWT.japaneseRoman=Japonais romain
AWT.kanaLock=Verrouiller Kana AWT.kanaLock=Verrouiller Kana
AWT.inputMethodOnOff=Activation/d\u00e9sactivation de la m\u00e9thode d''entr\u00e9e AWT.inputMethodOnOff=Activation/d\u00E9sactivation de la m\u00E9thode d'entr\u00E9e
AWT.again=R\u00e9p\u00e9ter AWT.again=R\u00E9p\u00E9ter
AWT.undo=Annuler AWT.undo=Annuler
AWT.copy=Copier AWT.copy=Copier
AWT.paste=Coller AWT.paste=Coller
AWT.cut=Couper AWT.cut=Couper
AWT.find=Rechercher AWT.find=Rechercher
AWT.props=Props AWT.props=Props
AWT.stop=Arr\u00eater AWT.stop=Arr\u00EAter
AWT.compose=Composer AWT.compose=Composer
# Numeric Keypad # Numeric Keypad
AWT.numpad=NumPad AWT.numpad=Pav\u00E9 num\u00E9rique
AWT.unknown=Unknown AWT.unknown=Inconnu
AWT.undefined=Undefined AWT.undefined=Non d\u00E9fini
# Predefined cursor names # Predefined cursor names
AWT.DefaultCursor=Pointeur par d\u00e9faut AWT.DefaultCursor=Curseur par d\u00E9faut
AWT.CrosshairCursor=Pointeur r\u00e9ticulaire AWT.CrosshairCursor=Curseur r\u00E9ticulaire
AWT.TextCursor=Curseur de texte AWT.TextCursor=Curseur de texte
AWT.WaitCursor=Pointeur d''attente AWT.WaitCursor=Curseur d'attente
AWT.SWResizeCursor=Pointeur de redimensionnement sud-ouest AWT.SWResizeCursor=Curseur de redimensionnement sud-ouest
AWT.SEResizeCursor=Pointeur de redimensionnement sud-est AWT.SEResizeCursor=Curseur de redimensionnement sud-est
AWT.NWResizeCursor=Pointeur de redimensionnement nord-ouest AWT.NWResizeCursor=Curseur de redimensionnement nord-ouest
AWT.NEResizeCursor=Pointeur de redimensionnement nord-est AWT.NEResizeCursor=Curseur de redimensionnement nord-est
AWT.NResizeCursor=Pointeur de redimensionnement nord AWT.NResizeCursor=Curseur de redimensionnement nord
AWT.SResizeCursor=Pointeur de redimensionnement sud AWT.SResizeCursor=Curseur de redimensionnement sud
AWT.WResizeCursor=Pointeur de redimensionnement ouest AWT.WResizeCursor=Curseur de redimensionnement ouest
AWT.EResizeCursor=Pointeur de redimensionnement est AWT.EResizeCursor=Curseur de redimensionnement est
AWT.HandCursor=Pointeur en forme de main AWT.HandCursor=Curseur en forme de main
AWT.MoveCursor=Pointeur de d\u00e9placement AWT.MoveCursor=Curseur de d\u00E9placement
AWT.DefaultDragCursor=Pointeur de d\u00e9placement par d\u00e9faut AWT.DefaultDragCursor=Curseur de d\u00E9placement par d\u00E9faut
AWT.DefaultNoDropCursor=Pointeur non d\u00e9pla\u00e7ant par d\u00e9faut AWT.DefaultNoDropCursor=Curseur non d\u00E9pla\u00E7ant par d\u00E9faut
AWT.DefaultDropCursor=Pointeur de pose par d\u00e9faut AWT.DefaultDropCursor=Curseur de pose par d\u00E9faut
# Input method related strings # Input method related strings
AWT.CompositionWindowTitle=Fen\u00eatre d''entr\u00e9e AWT.CompositionWindowTitle=Fen\u00EAtre d'entr\u00E9e
AWT.InputMethodSelectionMenu=S\u00e9lectionner la m\u00e9thode d''entr\u00e9e AWT.InputMethodSelectionMenu=S\u00E9lectionner la m\u00E9thode d'entr\u00E9e
AWT.HostInputMethodDisplayName=M\u00e9thodes syst\u00e8me d''entr\u00e9e AWT.HostInputMethodDisplayName=M\u00E9thodes d'entr\u00E9e syst\u00E8me
AWT.InputMethodLanguage.ja=Japonais AWT.InputMethodLanguage.ja=Japonais
AWT.InputMethodLanguage.ko=Cor\u00e9en AWT.InputMethodLanguage.ko=Cor\u00E9en
AWT.InputMethodLanguage.zh=Chinois AWT.InputMethodLanguage.zh=Chinois
AWT.InputMethodLanguage.zh_CN=Chinois simplifi\u00e9 AWT.InputMethodLanguage.zh_CN=Chinois simplifi\u00E9
AWT.InputMethodLanguage.zh_TW=Chinois traditionnel AWT.InputMethodLanguage.zh_TW=Chinois traditionnel
AWT.InputMethodCreationFailed=Impossible de cr\u00e9er {0}. Raison\u00a0: {1} AWT.InputMethodCreationFailed=Impossible de cr\u00E9er {0}. Raison\u00A0: {1}
# Property to select between on-the-spot and below-the-spot # Property to select between on-the-spot and below-the-spot
# composition with input methods. Valid values: # composition with input methods. Valid values:
@ -188,5 +188,5 @@ java.awt.im.style=sur place
java.awt.def.delay=30 java.awt.def.delay=30
# Warnings # Warnings
AWT.InconsistentDLLsWarning=Text based operations may not work correctly due to an inconsistent set of dynamic linking libraries (DLLs) installed on your system. For more information on this problem and a suggested workaround please see the Java(TM) 2 SDK, Standard Edition Release Notes on java.sun.com. AWT.InconsistentDLLsWarning=Il se peut que les op\u00E9rations li\u00E9es au texte ne fonctionnent pas correctement lorsqu'un ensemble incoh\u00E9rent de DLL est install\u00E9 sur le syst\u00E8me. Vous trouverez plus de d\u00E9tails sur ce probl\u00E8me et sur sa solution dans le document Java(TM) 2 SDK, Standard Edition Release Notes sur java.sun.com.

Some files were not shown because too many files have changed in this diff Show more