Merge
This commit is contained in:
commit
f8b5445f50
@ -578,9 +578,7 @@ ifeq ($(BUILD_HEADLESS), true)
|
|||||||
$(X_CFLAGS) \
|
$(X_CFLAGS) \
|
||||||
$(LIBAWT_HEADLESS_CFLAGS), \
|
$(LIBAWT_HEADLESS_CFLAGS), \
|
||||||
DISABLED_WARNINGS_xlc := 1506-356, \
|
DISABLED_WARNINGS_xlc := 1506-356, \
|
||||||
DISABLED_WARNINGS_gcc := maybe-uninitialized int-to-pointer-cast, \
|
DISABLED_WARNINGS_solstudio := E_EMPTY_TRANSLATION_UNIT, \
|
||||||
DISABLED_WARNINGS_solstudio := E_DECLARATION_IN_CODE \
|
|
||||||
E_EMPTY_TRANSLATION_UNIT, \
|
|
||||||
MAPFILE := $(JDK_TOPDIR)/make/mapfiles/libawt_headless/mapfile-vers, \
|
MAPFILE := $(JDK_TOPDIR)/make/mapfiles/libawt_headless/mapfile-vers, \
|
||||||
LDFLAGS := $(LDFLAGS_JDKLIB) \
|
LDFLAGS := $(LDFLAGS_JDKLIB) \
|
||||||
$(call SET_SHARED_LIBRARY_ORIGIN), \
|
$(call SET_SHARED_LIBRARY_ORIGIN), \
|
||||||
|
@ -128,7 +128,6 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
/// General Graphics Variable
|
/// General Graphics Variable
|
||||||
private final JScrollBar verticalBar;
|
private final JScrollBar verticalBar;
|
||||||
private final FontCanvas fc;
|
private final FontCanvas fc;
|
||||||
private boolean updateBackBuffer = true;
|
|
||||||
private boolean updateFontMetrics = true;
|
private boolean updateFontMetrics = true;
|
||||||
private boolean updateFont = true;
|
private boolean updateFont = true;
|
||||||
private boolean force16Cols = false;
|
private boolean force16Cols = false;
|
||||||
@ -178,7 +177,6 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
verticalBar.addAdjustmentListener( this );
|
verticalBar.addAdjustmentListener( this );
|
||||||
this.addComponentListener( new ComponentAdapter() {
|
this.addComponentListener( new ComponentAdapter() {
|
||||||
public void componentResized( ComponentEvent e ) {
|
public void componentResized( ComponentEvent e ) {
|
||||||
updateBackBuffer = true;
|
|
||||||
updateFontMetrics = true;
|
updateFontMetrics = true;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -199,7 +197,6 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
|
|
||||||
public void setTransformG2( int transform ) {
|
public void setTransformG2( int transform ) {
|
||||||
g2Transform = transform;
|
g2Transform = transform;
|
||||||
updateBackBuffer = true;
|
|
||||||
updateFontMetrics = true;
|
updateFontMetrics = true;
|
||||||
fc.repaint();
|
fc.repaint();
|
||||||
}
|
}
|
||||||
@ -252,7 +249,6 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
AffineTransform at = getAffineTransform( fontTransform );
|
AffineTransform at = getAffineTransform( fontTransform );
|
||||||
testFont = testFont.deriveFont( at );
|
testFont = testFont.deriveFont( at );
|
||||||
}
|
}
|
||||||
updateBackBuffer = true;
|
|
||||||
updateFontMetrics = true;
|
updateFontMetrics = true;
|
||||||
fc.repaint();
|
fc.repaint();
|
||||||
if ( fontModified ) {
|
if ( fontModified ) {
|
||||||
@ -266,14 +262,12 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
antiAliasType = ((AAValues)aa).getHint();
|
antiAliasType = ((AAValues)aa).getHint();
|
||||||
fractionalMetricsType = ((FMValues)fm).getHint();
|
fractionalMetricsType = ((FMValues)fm).getHint();
|
||||||
lcdContrast = contrast;
|
lcdContrast = contrast;
|
||||||
updateBackBuffer = true;
|
|
||||||
updateFontMetrics = true;
|
updateFontMetrics = true;
|
||||||
fc.repaint();
|
fc.repaint();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDrawMethod( int i ) {
|
public void setDrawMethod( int i ) {
|
||||||
drawMethod = i;
|
drawMethod = i;
|
||||||
updateBackBuffer = true;
|
|
||||||
fc.repaint();
|
fc.repaint();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -292,7 +286,6 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
drawMethod = TL_DRAW;
|
drawMethod = TL_DRAW;
|
||||||
}
|
}
|
||||||
|
|
||||||
updateBackBuffer = true;
|
|
||||||
updateFontMetrics = true;
|
updateFontMetrics = true;
|
||||||
fc.repaint();
|
fc.repaint();
|
||||||
updateFontInfo();
|
updateFontInfo();
|
||||||
@ -300,13 +293,11 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
|
|
||||||
public void setGridDisplay( boolean b ) {
|
public void setGridDisplay( boolean b ) {
|
||||||
showGrid = b;
|
showGrid = b;
|
||||||
updateBackBuffer = true;
|
|
||||||
fc.repaint();
|
fc.repaint();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setForce16Columns( boolean b ) {
|
public void setForce16Columns( boolean b ) {
|
||||||
force16Cols = b;
|
force16Cols = b;
|
||||||
updateBackBuffer = true;
|
|
||||||
updateFontMetrics = true;
|
updateFontMetrics = true;
|
||||||
fc.repaint();
|
fc.repaint();
|
||||||
}
|
}
|
||||||
@ -411,7 +402,6 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
|
|
||||||
/// When scrolled using the scroll bar, update the backbuffer
|
/// When scrolled using the scroll bar, update the backbuffer
|
||||||
public void adjustmentValueChanged( AdjustmentEvent e ) {
|
public void adjustmentValueChanged( AdjustmentEvent e ) {
|
||||||
updateBackBuffer = true;
|
|
||||||
fc.repaint();
|
fc.repaint();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -443,9 +433,6 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
/// Offset from the top left edge of the canvas where the draw will start
|
/// Offset from the top left edge of the canvas where the draw will start
|
||||||
private int canvasInset_X = 5, canvasInset_Y = 5;
|
private int canvasInset_X = 5, canvasInset_Y = 5;
|
||||||
|
|
||||||
/// Offscreen buffer of this canvas
|
|
||||||
private BufferedImage backBuffer = null;
|
|
||||||
|
|
||||||
/// LineBreak'ed TextLayout vector
|
/// LineBreak'ed TextLayout vector
|
||||||
private Vector lineBreakTLs = null;
|
private Vector lineBreakTLs = null;
|
||||||
|
|
||||||
@ -509,7 +496,6 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
public boolean firstTime() { return firstTime; }
|
public boolean firstTime() { return firstTime; }
|
||||||
public void refresh() {
|
public void refresh() {
|
||||||
firstTime = false;
|
firstTime = false;
|
||||||
updateBackBuffer = true;
|
|
||||||
repaint();
|
repaint();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -895,19 +881,10 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
|
|
||||||
/// Draws text according to the parameters set by Font2DTest GUI
|
/// Draws text according to the parameters set by Font2DTest GUI
|
||||||
private void drawText( Graphics g, int w, int h ) {
|
private void drawText( Graphics g, int w, int h ) {
|
||||||
Graphics2D g2;
|
Graphics2D g2 = (Graphics2D) g;
|
||||||
|
g2.setColor(Color.white);
|
||||||
/// Create back buffer when not printing, and its Graphics2D
|
g2.fillRect(0, 0, w, h);
|
||||||
/// Then set drawing parameters for that Graphics2D object
|
g2.setColor(Color.black);
|
||||||
if ( isPrinting )
|
|
||||||
g2 = (Graphics2D) g;
|
|
||||||
else {
|
|
||||||
backBuffer = (BufferedImage) this.createImage( w, h );
|
|
||||||
g2 = backBuffer.createGraphics();
|
|
||||||
g2.setColor(Color.white);
|
|
||||||
g2.fillRect(0, 0, w, h);
|
|
||||||
g2.setColor(Color.black);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// sets font, RenderingHints.
|
/// sets font, RenderingHints.
|
||||||
setParams( g2 );
|
setParams( g2 );
|
||||||
@ -927,8 +904,6 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
int charToDraw = drawStart;
|
int charToDraw = drawStart;
|
||||||
if ( showGrid )
|
if ( showGrid )
|
||||||
drawGrid( g2 );
|
drawGrid( g2 );
|
||||||
if ( !isPrinting )
|
|
||||||
g.drawImage( backBuffer, 0, 0, this );
|
|
||||||
|
|
||||||
for ( int i = 0; i < numCharDown && charToDraw <= drawEnd; i++ ) {
|
for ( int i = 0; i < numCharDown && charToDraw <= drawEnd; i++ ) {
|
||||||
for ( int j = 0; j < numCharAcross && charToDraw <= drawEnd; j++, charToDraw++ ) {
|
for ( int j = 0; j < numCharAcross && charToDraw <= drawEnd; j++, charToDraw++ ) {
|
||||||
@ -938,19 +913,12 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
modeSpecificDrawChar( g2, charToDraw,
|
modeSpecificDrawChar( g2, charToDraw,
|
||||||
gridLocX + gridWidth / 2,
|
gridLocX + gridWidth / 2,
|
||||||
gridLocY + maxAscent );
|
gridLocY + maxAscent );
|
||||||
//if ( !isPrinting ) {
|
|
||||||
// g.setClip( gridLocX, gridLocY, gridWidth + 1, gridHeight + 1 );
|
|
||||||
// g.drawImage( backBuffer, 0, 0, this );
|
|
||||||
//}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if ( textToUse == USER_TEXT ) {
|
else if ( textToUse == USER_TEXT ) {
|
||||||
g2.drawRect( 0, 0, w - 1, h - 1 );
|
g2.drawRect( 0, 0, w - 1, h - 1 );
|
||||||
if ( !isPrinting )
|
|
||||||
g.drawImage( backBuffer, 0, 0, this );
|
|
||||||
|
|
||||||
for ( int i = drawStart; i <= drawEnd; i++ ) {
|
for ( int i = drawStart; i <= drawEnd; i++ ) {
|
||||||
int lineStartX = canvasInset_Y;
|
int lineStartX = canvasInset_Y;
|
||||||
int lineStartY = ( i - drawStart ) * gridHeight + maxAscent;
|
int lineStartY = ( i - drawStart ) * gridHeight + maxAscent;
|
||||||
@ -960,9 +928,6 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
else {
|
else {
|
||||||
float xPos, yPos = (float) canvasInset_Y;
|
float xPos, yPos = (float) canvasInset_Y;
|
||||||
g2.drawRect( 0, 0, w - 1, h - 1 );
|
g2.drawRect( 0, 0, w - 1, h - 1 );
|
||||||
if ( !isPrinting )
|
|
||||||
g.drawImage( backBuffer, 0, 0, this );
|
|
||||||
|
|
||||||
for ( int i = drawStart; i <= drawEnd; i++ ) {
|
for ( int i = drawStart; i <= drawEnd; i++ ) {
|
||||||
TextLayout oneLine = (TextLayout) lineBreakTLs.elementAt( i );
|
TextLayout oneLine = (TextLayout) lineBreakTLs.elementAt( i );
|
||||||
xPos =
|
xPos =
|
||||||
@ -982,33 +947,26 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
yPos += fmData[3] + fmData[5]; // descent + leading
|
yPos += fmData[3] + fmData[5]; // descent + leading
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ( !isPrinting )
|
|
||||||
g.drawImage( backBuffer, 0, 0, this );
|
|
||||||
g2.dispose();
|
g2.dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Component paintComponent function...
|
/// Component paintComponent function...
|
||||||
/// Draws/Refreshes canvas according to flag(s) set by other functions
|
/// Draws/Refreshes canvas according to flag(s) set by other functions
|
||||||
public void paintComponent( Graphics g ) {
|
public void paintComponent( Graphics g ) {
|
||||||
if ( updateBackBuffer ) {
|
super.paintComponent(g);
|
||||||
|
|
||||||
Dimension d = this.getSize();
|
Dimension d = this.getSize();
|
||||||
isPrinting = false;
|
isPrinting = false;
|
||||||
try {
|
try {
|
||||||
drawText( g, d.width, d.height );
|
drawText( g, d.width, d.height );
|
||||||
}
|
}
|
||||||
catch ( CannotDrawException e ) {
|
catch ( CannotDrawException e ) {
|
||||||
f2dt.fireChangeStatus( ERRORS[ e.id ], true );
|
|
||||||
super.paintComponent(g);
|
super.paintComponent(g);
|
||||||
|
f2dt.fireChangeStatus( ERRORS[ e.id ], true );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else {
|
|
||||||
/// Screen refresh
|
|
||||||
g.drawImage( backBuffer, 0, 0, this );
|
|
||||||
}
|
|
||||||
|
|
||||||
showingError = false;
|
showingError = false;
|
||||||
updateBackBuffer = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Printable interface function
|
/// Printable interface function
|
||||||
@ -1087,7 +1045,17 @@ public final class FontPanel extends JPanel implements AdjustmentListener {
|
|||||||
/// Ouputs the current canvas into a given PNG file
|
/// Ouputs the current canvas into a given PNG file
|
||||||
public void writePNG( String fileName ) {
|
public void writePNG( String fileName ) {
|
||||||
try {
|
try {
|
||||||
ImageIO.write(backBuffer, "png", new java.io.File(fileName));
|
int w = this.getSize().width;
|
||||||
|
int h = this.getSize().height;
|
||||||
|
BufferedImage buffer = (BufferedImage) this.createImage( w, h );
|
||||||
|
Graphics2D g2 = buffer.createGraphics();
|
||||||
|
g2.setColor(Color.white);
|
||||||
|
g2.fillRect(0, 0, w, h);
|
||||||
|
g2.setColor(Color.black);
|
||||||
|
updateFontMetrics = true;
|
||||||
|
drawText(g2, w, h);
|
||||||
|
updateFontMetrics = true;
|
||||||
|
ImageIO.write(buffer, "png", new java.io.File(fileName));
|
||||||
}
|
}
|
||||||
catch ( Exception e ) {
|
catch ( Exception e ) {
|
||||||
f2dt.fireChangeStatus( "ERROR: Failed to Save PNG image; See stack trace", true );
|
f2dt.fireChangeStatus( "ERROR: Failed to Save PNG image; See stack trace", true );
|
||||||
|
@ -38,7 +38,7 @@ copyImage=resources/copy.gif
|
|||||||
pasteLabel=\u8CBC\u4ED8\u3051
|
pasteLabel=\u8CBC\u4ED8\u3051
|
||||||
pasteImage=resources/paste.gif
|
pasteImage=resources/paste.gif
|
||||||
undoLabel=\u5143\u306B\u623B\u3059
|
undoLabel=\u5143\u306B\u623B\u3059
|
||||||
redoLabel=\u3084\u308A\u76F4\u3057
|
redoLabel=\u518D\u5B9F\u884C
|
||||||
|
|
||||||
#
|
#
|
||||||
# debug Menu definition
|
# debug Menu definition
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -24,4 +24,3 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
exports jdk.internal.loader to java.desktop;
|
exports jdk.internal.loader to java.desktop;
|
||||||
provides java.security.Provider with apple.security.AppleProvider;
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2005, 2016, 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
|
||||||
@ -61,17 +61,25 @@ public class DriverResource extends ListResourceBundle {
|
|||||||
"Usage: pack200 [-opt... | --option=value]... x.pack[.gz] y.jar",
|
"Usage: pack200 [-opt... | --option=value]... x.pack[.gz] y.jar",
|
||||||
"",
|
"",
|
||||||
"Packing Options",
|
"Packing Options",
|
||||||
" -g, --no-gzip output a plain *.pack file with no zipping",
|
" -r, --repack repack or normalize a jar, suitable for ",
|
||||||
" --gzip (default) post-process the pack output with gzip",
|
" signing with jarsigner",
|
||||||
" -G, --strip-debug remove debugging attributes while packing",
|
" -g, --no-gzip output a plain pack file, suitable to be",
|
||||||
|
" compressed with a file compression utility",
|
||||||
|
" --gzip (default) post compress the pack output",
|
||||||
|
" with gzip",
|
||||||
|
" -G, --strip-debug remove debugging attributes (SourceFile,",
|
||||||
|
" LineNumberTable, LocalVariableTable",
|
||||||
|
" and LocalVariableTypeTable) while packing",
|
||||||
" -O, --no-keep-file-order do not transmit file ordering information",
|
" -O, --no-keep-file-order do not transmit file ordering information",
|
||||||
" --keep-file-order (default) preserve input file ordering",
|
" --keep-file-order (default) preserve input file ordering",
|
||||||
" -S{N}, --segment-limit={N} output segment limit (default N=1Mb)",
|
" -S{N}, --segment-limit={N} limit segment sizes (default unlimited)",
|
||||||
" -E{N}, --effort={N} packing effort (default N=5)",
|
" -E{N}, --effort={N} packing effort (default N=5)",
|
||||||
" -H{h}, --deflate-hint={h} transmit deflate hint: true, false, or keep (default)",
|
" -H{h}, --deflate-hint={h} transmit deflate hint: true, false,",
|
||||||
|
" or keep (default)",
|
||||||
" -m{V}, --modification-time={V} transmit modtimes: latest or keep (default)",
|
" -m{V}, --modification-time={V} transmit modtimes: latest or keep (default)",
|
||||||
" -P{F}, --pass-file={F} transmit the given input element(s) uncompressed",
|
" -P{F}, --pass-file={F} transmit the given input element(s) unchanged",
|
||||||
" -U{a}, --unknown-attribute={a} unknown attribute action: error, strip, or pass (default)",
|
" -U{a}, --unknown-attribute={a} unknown attribute action: error, strip,",
|
||||||
|
" or pass (default)",
|
||||||
" -C{N}={L}, --class-attribute={N}={L} (user-defined attribute)",
|
" -C{N}={L}, --class-attribute={N}={L} (user-defined attribute)",
|
||||||
" -F{N}={L}, --field-attribute={N}={L} (user-defined attribute)",
|
" -F{N}={L}, --field-attribute={N}={L} (user-defined attribute)",
|
||||||
" -M{N}={L}, --method-attribute={N}={L} (user-defined attribute)",
|
" -M{N}={L}, --method-attribute={N}={L} (user-defined attribute)",
|
||||||
@ -79,7 +87,8 @@ public class DriverResource extends ListResourceBundle {
|
|||||||
" -f{F}, --config-file={F} read file F for Pack200.Packer properties",
|
" -f{F}, --config-file={F} read file F for Pack200.Packer properties",
|
||||||
" -v, --verbose increase program verbosity",
|
" -v, --verbose increase program verbosity",
|
||||||
" -q, --quiet set verbosity to lowest level",
|
" -q, --quiet set verbosity to lowest level",
|
||||||
" -l{F}, --log-file={F} output to the given log file, or '-' for System.out",
|
" -l{F}, --log-file={F} output to the given log file, ",
|
||||||
|
" or '-' for System.out",
|
||||||
" -?, -h, --help print this message",
|
" -?, -h, --help print this message",
|
||||||
" -V, --version print program version",
|
" -V, --version print program version",
|
||||||
" -J{X} pass option X to underlying Java VM",
|
" -J{X} pass option X to underlying Java VM",
|
||||||
@ -92,18 +101,23 @@ public class DriverResource extends ListResourceBundle {
|
|||||||
" Layout definitions (like RUH) are defined by JSR 200.",
|
" Layout definitions (like RUH) are defined by JSR 200.",
|
||||||
"",
|
"",
|
||||||
"Repacking mode updates the JAR file with a pack/unpack cycle:",
|
"Repacking mode updates the JAR file with a pack/unpack cycle:",
|
||||||
" pack200 [-r|--repack] [-opt | --option=value]... [repackedy.jar] y.jar\n"
|
" pack200 [-r|--repack] [-opt | --option=value]... [repackedy.jar] y.jar\n",
|
||||||
|
"",
|
||||||
|
"Exit Status:",
|
||||||
|
" 0 if successful, >0 if an error occurred"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{UNPACK_HELP, new String[] {
|
{UNPACK_HELP, new String[] {
|
||||||
"Usage: unpack200 [-opt... | --option=value]... x.pack[.gz] y.jar\n",
|
"Usage: unpack200 [-opt... | --option=value]... x.pack[.gz] y.jar\n",
|
||||||
"",
|
"",
|
||||||
"Unpacking Options",
|
"Unpacking Options",
|
||||||
" -H{h}, --deflate-hint={h} override transmitted deflate hint: true, false, or keep (default)",
|
" -H{h}, --deflate-hint={h} override transmitted deflate hint:",
|
||||||
|
" true, false, or keep (default)",
|
||||||
" -r, --remove-pack-file remove input file after unpacking",
|
" -r, --remove-pack-file remove input file after unpacking",
|
||||||
" -v, --verbose increase program verbosity",
|
" -v, --verbose increase program verbosity",
|
||||||
" -q, --quiet set verbosity to lowest level",
|
" -q, --quiet set verbosity to lowest level",
|
||||||
" -l{F}, --log-file={F} output to the given log file, or '-' for System.out",
|
" -l{F}, --log-file={F} output to the given log file, or",
|
||||||
|
" '-' for System.out",
|
||||||
" -?, -h, --help print this message",
|
" -?, -h, --help print this message",
|
||||||
" -V, --version print program version",
|
" -V, --version print program version",
|
||||||
" -J{X} pass option X to underlying Java VM"
|
" -J{X} pass option X to underlying Java VM"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2005, 2016, 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
|
||||||
@ -84,7 +84,7 @@ public class DriverResource_ja extends ListResourceBundle {
|
|||||||
" -V\u3001--version \u30D7\u30ED\u30B0\u30E9\u30E0\u306E\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u51FA\u529B\u3057\u307E\u3059",
|
" -V\u3001--version \u30D7\u30ED\u30B0\u30E9\u30E0\u306E\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u51FA\u529B\u3057\u307E\u3059",
|
||||||
" -J{X} \u30AA\u30D7\u30B7\u30E7\u30F3X\u3092\u57FA\u790E\u3068\u306A\u308BJava VM\u306B\u6E21\u3057\u307E\u3059",
|
" -J{X} \u30AA\u30D7\u30B7\u30E7\u30F3X\u3092\u57FA\u790E\u3068\u306A\u308BJava VM\u306B\u6E21\u3057\u307E\u3059",
|
||||||
"",
|
"",
|
||||||
"\u6CE8\u610F:",
|
"\u6CE8:",
|
||||||
" -P\u3001-C\u3001-F\u3001-M\u304A\u3088\u3073-D\u30AA\u30D7\u30B7\u30E7\u30F3\u306F\u7D2F\u7A4D\u3055\u308C\u307E\u3059\u3002",
|
" -P\u3001-C\u3001-F\u3001-M\u304A\u3088\u3073-D\u30AA\u30D7\u30B7\u30E7\u30F3\u306F\u7D2F\u7A4D\u3055\u308C\u307E\u3059\u3002",
|
||||||
" \u5C5E\u6027\u5B9A\u7FA9\u306E\u4F8B: -C SourceFile=RUH .",
|
" \u5C5E\u6027\u5B9A\u7FA9\u306E\u4F8B: -C SourceFile=RUH .",
|
||||||
" Config.\u30D5\u30A1\u30A4\u30EB\u30FB\u30D7\u30ED\u30D1\u30C6\u30A3\u306F\u3001Pack200 API\u306B\u3088\u3063\u3066\u5B9A\u7FA9\u3055\u308C\u307E\u3059\u3002",
|
" Config.\u30D5\u30A1\u30A4\u30EB\u30FB\u30D7\u30ED\u30D1\u30C6\u30A3\u306F\u3001Pack200 API\u306B\u3088\u3063\u3066\u5B9A\u7FA9\u3055\u308C\u307E\u3059\u3002",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2005, 2016, 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
|
||||||
@ -48,7 +48,7 @@ public class DriverResource_zh_CN extends ListResourceBundle {
|
|||||||
* Do not translate command arguments and words with a prefix of '-' or '--'.
|
* Do not translate command arguments and words with a prefix of '-' or '--'.
|
||||||
*/
|
*/
|
||||||
private static final Object[][] resource = {
|
private static final Object[][] resource = {
|
||||||
{VERSION, "{0}\u7248\u672C{1}"}, // parameter 0:class name;parameter 1: version value
|
{VERSION, "{0}\u7248\u672C {1}"}, // parameter 0:class name;parameter 1: version value
|
||||||
{BAD_ARGUMENT, "\u9519\u8BEF\u53C2\u6570: {0}"},
|
{BAD_ARGUMENT, "\u9519\u8BEF\u53C2\u6570: {0}"},
|
||||||
{BAD_OPTION, "\u9519\u8BEF\u9009\u9879: {0}={1}"}, // parameter 0:option name;parameter 1:option value
|
{BAD_OPTION, "\u9519\u8BEF\u9009\u9879: {0}={1}"}, // parameter 0:option name;parameter 1:option value
|
||||||
{BAD_REPACK_OUTPUT, "--repack \u8F93\u51FA\u9519\u8BEF: {0}"}, // parameter 0:filename
|
{BAD_REPACK_OUTPUT, "--repack \u8F93\u51FA\u9519\u8BEF: {0}"}, // parameter 0:filename
|
||||||
|
@ -480,6 +480,24 @@ public final class Class<T> implements java.io.Serializable,
|
|||||||
* any exception thrown by the constructor in a (checked) {@link
|
* any exception thrown by the constructor in a (checked) {@link
|
||||||
* java.lang.reflect.InvocationTargetException}.
|
* java.lang.reflect.InvocationTargetException}.
|
||||||
*
|
*
|
||||||
|
* <p>The call
|
||||||
|
*
|
||||||
|
* <pre>{@code
|
||||||
|
* clazz.newInstance()
|
||||||
|
* }</pre>
|
||||||
|
*
|
||||||
|
* can be replaced by
|
||||||
|
*
|
||||||
|
* <pre>{@code
|
||||||
|
* clazz.getConstructor().newInstance()
|
||||||
|
* }</pre>
|
||||||
|
*
|
||||||
|
* The latter sequence of calls is inferred to be able to throw
|
||||||
|
* the additional exception types {@link
|
||||||
|
* InvocationTargetException} and {@link
|
||||||
|
* NoSuchMethodException}. Both of these exception types are
|
||||||
|
* subclasses of {@link ReflectiveOperationException}.
|
||||||
|
*
|
||||||
* @return a newly allocated instance of the class represented by this
|
* @return a newly allocated instance of the class represented by this
|
||||||
* object.
|
* object.
|
||||||
* @throws IllegalAccessException if the class or its nullary
|
* @throws IllegalAccessException if the class or its nullary
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2012, 2016, 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
|
||||||
@ -437,7 +437,7 @@ public final class JapaneseDate
|
|||||||
field == ALIGNED_WEEK_OF_MONTH || field == ALIGNED_WEEK_OF_YEAR) {
|
field == ALIGNED_WEEK_OF_MONTH || field == ALIGNED_WEEK_OF_YEAR) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return ChronoLocalDate.super.isSupported(field);
|
return super.isSupported(field);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -337,11 +337,8 @@ public class PriorityQueue<E> extends AbstractQueue<E>
|
|||||||
int i = size;
|
int i = size;
|
||||||
if (i >= queue.length)
|
if (i >= queue.length)
|
||||||
grow(i + 1);
|
grow(i + 1);
|
||||||
|
siftUp(i, e);
|
||||||
size = i + 1;
|
size = i + 1;
|
||||||
if (i == 0)
|
|
||||||
queue[0] = e;
|
|
||||||
else
|
|
||||||
siftUp(i, e);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -793,7 +793,6 @@ public final class Scanner implements Iterator<String>, Closeable {
|
|||||||
private void readInput() {
|
private void readInput() {
|
||||||
if (buf.limit() == buf.capacity())
|
if (buf.limit() == buf.capacity())
|
||||||
makeSpace();
|
makeSpace();
|
||||||
|
|
||||||
// Prepare to receive data
|
// Prepare to receive data
|
||||||
int p = buf.position();
|
int p = buf.position();
|
||||||
buf.position(buf.limit());
|
buf.position(buf.limit());
|
||||||
@ -806,15 +805,12 @@ public final class Scanner implements Iterator<String>, Closeable {
|
|||||||
lastException = ioe;
|
lastException = ioe;
|
||||||
n = -1;
|
n = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (n == -1) {
|
if (n == -1) {
|
||||||
sourceClosed = true;
|
sourceClosed = true;
|
||||||
needInput = false;
|
needInput = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (n > 0)
|
if (n > 0)
|
||||||
needInput = false;
|
needInput = false;
|
||||||
|
|
||||||
// Restore current position and limit for reading
|
// Restore current position and limit for reading
|
||||||
buf.limit(buf.position());
|
buf.limit(buf.position());
|
||||||
buf.position(p);
|
buf.position(p);
|
||||||
@ -871,15 +867,20 @@ public final class Scanner implements Iterator<String>, Closeable {
|
|||||||
matchValid = false;
|
matchValid = false;
|
||||||
matcher.usePattern(delimPattern);
|
matcher.usePattern(delimPattern);
|
||||||
matcher.region(position, buf.limit());
|
matcher.region(position, buf.limit());
|
||||||
|
|
||||||
// Skip delims first
|
// Skip delims first
|
||||||
if (matcher.lookingAt())
|
if (matcher.lookingAt()) {
|
||||||
|
if (matcher.hitEnd() && !sourceClosed) {
|
||||||
|
// more input might change the match of delims, in which
|
||||||
|
// might change whether or not if there is token left in
|
||||||
|
// buffer (don't update the "position" in this case)
|
||||||
|
needInput = true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
position = matcher.end();
|
position = matcher.end();
|
||||||
|
}
|
||||||
// If we are sitting at the end, no more tokens in buffer
|
// If we are sitting at the end, no more tokens in buffer
|
||||||
if (position == buf.limit())
|
if (position == buf.limit())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -900,7 +901,6 @@ public final class Scanner implements Iterator<String>, Closeable {
|
|||||||
*/
|
*/
|
||||||
private String getCompleteTokenInBuffer(Pattern pattern) {
|
private String getCompleteTokenInBuffer(Pattern pattern) {
|
||||||
matchValid = false;
|
matchValid = false;
|
||||||
|
|
||||||
// Skip delims first
|
// Skip delims first
|
||||||
matcher.usePattern(delimPattern);
|
matcher.usePattern(delimPattern);
|
||||||
if (!skipped) { // Enforcing only one skip of leading delims
|
if (!skipped) { // Enforcing only one skip of leading delims
|
||||||
@ -941,13 +941,16 @@ public final class Scanner implements Iterator<String>, Closeable {
|
|||||||
foundNextDelim = matcher.find();
|
foundNextDelim = matcher.find();
|
||||||
}
|
}
|
||||||
if (foundNextDelim) {
|
if (foundNextDelim) {
|
||||||
// In the rare case that more input could cause the match
|
// In two rare cases that more input might cause the match to be
|
||||||
// to be lost and there is more input coming we must wait
|
// lost or change.
|
||||||
// for more input. Note that hitting the end is okay as long
|
// (1) if requireEnd() is true, more input might cause the match
|
||||||
// as the match cannot go away. It is the beginning of the
|
// to be lost, we must wait for more input.
|
||||||
// next delims we want to be sure about, we don't care if
|
// (2) while hitting the end is okay IF the match does not
|
||||||
// they potentially extend further.
|
// go away AND the beginning of the next delims does not change
|
||||||
if (matcher.requireEnd() && !sourceClosed) {
|
// (we don't care if they potentially extend further). But it's
|
||||||
|
// possible that more input could cause the beginning of the
|
||||||
|
// delims change, so have to wait for more input as well.
|
||||||
|
if ((matcher.requireEnd() || matcher.hitEnd()) && !sourceClosed) {
|
||||||
needInput = true;
|
needInput = true;
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@ -1341,8 +1344,9 @@ public final class Scanner implements Iterator<String>, Closeable {
|
|||||||
saveState();
|
saveState();
|
||||||
modCount++;
|
modCount++;
|
||||||
while (!sourceClosed) {
|
while (!sourceClosed) {
|
||||||
if (hasTokenInBuffer())
|
if (hasTokenInBuffer()) {
|
||||||
return revertState(true);
|
return revertState(true);
|
||||||
|
}
|
||||||
readInput();
|
readInput();
|
||||||
}
|
}
|
||||||
boolean result = hasTokenInBuffer();
|
boolean result = hasTokenInBuffer();
|
||||||
@ -1365,7 +1369,6 @@ public final class Scanner implements Iterator<String>, Closeable {
|
|||||||
ensureOpen();
|
ensureOpen();
|
||||||
clearCaches();
|
clearCaches();
|
||||||
modCount++;
|
modCount++;
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
String token = getCompleteTokenInBuffer(null);
|
String token = getCompleteTokenInBuffer(null);
|
||||||
if (token != null) {
|
if (token != null) {
|
||||||
|
@ -66,7 +66,7 @@ import java.util.function.Consumer;
|
|||||||
* inaccurate results if this collection is modified during traversal.
|
* inaccurate results if this collection is modified during traversal.
|
||||||
* Additionally, the bulk operations {@code addAll},
|
* Additionally, the bulk operations {@code addAll},
|
||||||
* {@code removeAll}, {@code retainAll}, {@code containsAll},
|
* {@code removeAll}, {@code retainAll}, {@code containsAll},
|
||||||
* {@code equals}, and {@code toArray} are <em>not</em> guaranteed
|
* and {@code toArray} are <em>not</em> guaranteed
|
||||||
* to be performed atomically. For example, an iterator operating
|
* to be performed atomically. For example, an iterator operating
|
||||||
* concurrently with an {@code addAll} operation might view only some
|
* concurrently with an {@code addAll} operation might view only some
|
||||||
* of the added elements.
|
* of the added elements.
|
||||||
|
@ -80,7 +80,7 @@ import java.util.function.Consumer;
|
|||||||
* inaccurate results if this collection is modified during traversal.
|
* inaccurate results if this collection is modified during traversal.
|
||||||
* Additionally, the bulk operations {@code addAll},
|
* Additionally, the bulk operations {@code addAll},
|
||||||
* {@code removeAll}, {@code retainAll}, {@code containsAll},
|
* {@code removeAll}, {@code retainAll}, {@code containsAll},
|
||||||
* {@code equals}, and {@code toArray} are <em>not</em> guaranteed
|
* and {@code toArray} are <em>not</em> guaranteed
|
||||||
* to be performed atomically. For example, an iterator operating
|
* to be performed atomically. For example, an iterator operating
|
||||||
* concurrently with an {@code addAll} operation might view only some
|
* concurrently with an {@code addAll} operation might view only some
|
||||||
* of the added elements.
|
* of the added elements.
|
||||||
|
@ -840,6 +840,9 @@ public class ConcurrentSkipListMap<K,V> extends AbstractMap<K,V>
|
|||||||
break; // restart if lost race to replace value
|
break; // restart if lost race to replace value
|
||||||
}
|
}
|
||||||
// else c < 0; fall through
|
// else c < 0; fall through
|
||||||
|
} else if (b == head.node) {
|
||||||
|
// map is empty, so type check key now
|
||||||
|
cpr(cmp, key, key);
|
||||||
}
|
}
|
||||||
|
|
||||||
z = new Node<K,V>(key, value, n);
|
z = new Node<K,V>(key, value, n);
|
||||||
|
@ -61,7 +61,7 @@ import java.util.function.Consumer;
|
|||||||
* inaccurate results if this collection is modified during traversal.
|
* inaccurate results if this collection is modified during traversal.
|
||||||
* Additionally, the bulk operations {@code addAll},
|
* Additionally, the bulk operations {@code addAll},
|
||||||
* {@code removeAll}, {@code retainAll}, {@code containsAll},
|
* {@code removeAll}, {@code retainAll}, {@code containsAll},
|
||||||
* {@code equals}, and {@code toArray} are <em>not</em> guaranteed
|
* and {@code toArray} are <em>not</em> guaranteed
|
||||||
* to be performed atomically. For example, an iterator operating
|
* to be performed atomically. For example, an iterator operating
|
||||||
* concurrently with an {@code addAll} operation might view only some
|
* concurrently with an {@code addAll} operation might view only some
|
||||||
* of the added elements.
|
* of the added elements.
|
||||||
|
@ -151,7 +151,7 @@ public class SSLEngineResult {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* The {@code SSLEngine} needs to unwrap before handshaking can
|
* The {@code SSLEngine} needs to unwrap before handshaking can
|
||||||
* can continue.
|
* continue.
|
||||||
* <P>
|
* <P>
|
||||||
* This value is used to indicate that not-yet-interpreted data
|
* This value is used to indicate that not-yet-interpreted data
|
||||||
* has been previously received from the remote side, and does
|
* has been previously received from the remote side, and does
|
||||||
|
@ -152,10 +152,11 @@ import sun.security.util.Debug;
|
|||||||
*
|
*
|
||||||
* These two APIs provide callers the means to query the
|
* These two APIs provide callers the means to query the
|
||||||
* Policy for Principal-based Permission entries.
|
* Policy for Principal-based Permission entries.
|
||||||
|
* This class is subject to removal in a future version of Java SE.
|
||||||
*
|
*
|
||||||
* @see java.security.Security security properties
|
* @see java.security.Security security properties
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated(since="1.4", forRemoval=true)
|
||||||
public abstract class Policy {
|
public abstract class Policy {
|
||||||
|
|
||||||
private static Policy policy;
|
private static Policy policy;
|
||||||
|
@ -45,7 +45,7 @@ final class JrtUtils {
|
|||||||
private static boolean isGlobMeta(char c) {
|
private static boolean isGlobMeta(char c) {
|
||||||
return globMetaChars.indexOf(c) != -1;
|
return globMetaChars.indexOf(c) != -1;
|
||||||
}
|
}
|
||||||
private static final char EOL = 0; //TBD
|
private static final char EOL = 0;
|
||||||
private static char next(String glob, int i) {
|
private static char next(String glob, int i) {
|
||||||
if (i < glob.length()) {
|
if (i < glob.length()) {
|
||||||
return glob.charAt(i);
|
return glob.charAt(i);
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
#
|
#
|
||||||
# This code is free software; you can redistribute it and/or modify it
|
# This code is free software; you can redistribute it and/or modify it
|
||||||
@ -24,7 +24,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.header = Verwendung: {0} [-options] class [args...]\n (zur Ausf\u00FChrung einer Klasse)\n oder {0} [-options] -jar jarfile [args...]\n (zur Ausf\u00FChrung einer JAR-Datei)\nwobei options Folgendes umfasst:\n
|
java.launcher.opt.header = Verwendung: {0} [options] class [args...]\n (zur Ausf\u00FChrung einer Klasse)\n oder {0} [options] -jar jarfile [args...]\n (zur Ausf\u00FChrung einer JAR-Datei)\n oder {0} [-options] -mp <modulepath> -m <modulename> | <modulename>/<mainclass>\n (zur Ausf\u00FChrung der Hauptklasse in einem Modul)\nwobei "options" Folgendes umfasst:\n
|
||||||
|
|
||||||
java.launcher.opt.datamodel =\ -d{0}\t Verwendet ein {0}-Bit-Datenmodell, sofern verf\u00FCgbar\n
|
java.launcher.opt.datamodel =\ -d{0}\t Verwendet ein {0}-Bit-Datenmodell, sofern verf\u00FCgbar\n
|
||||||
java.launcher.opt.vmselect =\ {0}\t zur Auswahl der "{1}" VM\n
|
java.launcher.opt.vmselect =\ {0}\t zur Auswahl der "{1}" VM\n
|
||||||
@ -34,10 +34,11 @@ java.launcher.ergo.message1 =\ Die Standard-VM ist {0}
|
|||||||
java.launcher.ergo.message2 =\ weil die Ausf\u00FChrung auf einem Server-Class-Rechner erfolgt.\n
|
java.launcher.ergo.message2 =\ weil die Ausf\u00FChrung auf einem Server-Class-Rechner erfolgt.\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.footer =\ -cp <Klassensuchpfad von Verzeichnissen und ZIP-/JAR-Dateien>\n -classpath <Klassensuchpfad von Verzeichnissen und ZIP-/JAR-Dateien>\n Eine durch {0} getrennte Liste mit Verzeichnissen, JAR-Archiven\n und ZIP-Archiven zur Suche nach Klassendateien.\n -D<name>=<value>\n Legt eine Systemeigenschaft fest\n -verbose:[class|gc|jni]\n Aktiviert die Verbose-Ausgabe\n -version Druckt Produktversion und beendet das Programm\n -version:<value>\n Erfordert die angegebene Version zur Ausf\u00FChrung\n -showversion Druckt Produktversion und f\u00E4hrt fort\n -jre-restrict-search | -no-jre-restrict-search\n Bezieht private JREs des Benutzers in Versionssuche ein bzw. schlie\u00DFt sie aus\n -? -help Druckt diese Hilfemeldung\n -X Druckt Hilfe zu Nicht-Standardoptionen\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n Aktiviert Assertionen mit angegebener Granularit\u00E4t\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n Deaktiviert Assertionen mit angegebener Granularit\u00E4t\n -esa | -enablesystemassertions\n Aktiviert Systemassertionen\n -dsa | -disablesystemassertions\n Deaktiviert Systemassertionen\n -agentlib:<libname>[=<options>]\n L\u00E4dt native Agent Library <libname>, z.B. -agentlib:hprof\n siehe auch -agentlib:jdwp=help und -agentlib:hprof=help\n -agentpath:<pathname>[=<options>]\n L\u00E4dt native Agent Library nach vollem Pfadnamen\n -javaagent:<jarpath>[=<options>]\n L\u00E4dt Java-Programmiersprachen-Agent, siehe java.lang.instrument\n -splash:<imagepath>\n Zeigt Startbildschirm mit angegebenem Bild\nWeitere Einzelheiten finden Sie unter http://www.oracle.com/technetwork/java/javase/documentation/index.html
|
java.launcher.opt.footer =\ -cp <Klassensuchpfad von Verzeichnissen und ZIP-/JAR-Dateien>\n -classpath <Klassensuchpfad von Verzeichnissen und ZIP-/JAR-Dateien>\n Eine durch {0} getrennte Liste mit Verzeichnissen, JAR-Archiven\n und ZIP-Archiven zur Suche nach Klassendateien.\n -mp <Modulpfad>\n -modulepath <Modulpfad>...\n Eine durch {0} getrennte Liste mit Verzeichnissen, in der jedes Verzeichnis\n ein Modulverzeichnis darstellt.\n -upgrademodulepath <Modulpfad>...\n Eine durch {0} getrennte Liste mit Verzeichnissen, in der jedes Verzeichnis\n ein Verzeichnis von Modulen darstellt, die upgradef\u00E4hige\n Module im Laufzeitimage ersetzen\n -m <modulename> | <modulename>/<mainclass>\n das anf\u00E4ngliche oder Hauptmodul, das aufgel\u00F6st werden soll\n -addmods <modulename>[,<modulename>...]\n Root-Module, die zus\u00E4tzlich zum anf\u00E4nglichen Modul aufgel\u00F6st werden sollen\n -limitmods <modulename>[,<modulename>...]\n Schr\u00E4nkt die Gesamtzahl der beachtbaren Module ein\n -listmods[:<modulename>[,<modulename>...]]\n Listet die beachtbaren Module auf und beendet den Vorgang\n -D<name>=<value>\n Legt eine Systemeigenschaft fest\n -verbose:[class|gc|jni]\n Aktiviert die Verbose-Ausgabe\n -version Druckt Produktversion und beendet das Programm\n -showversion Druckt Produktversion und f\u00E4hrt fort\n -? -help Druckt diese Hilfemeldung\n -X Druckt Hilfe zu Nicht-Standardoptionen\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n Aktiviert Assertions mit angegebener Granularit\u00E4t\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n Deaktiviert Assertions mit angegebener Granularit\u00E4t\n -esa | -enablesystemassertions\n Aktiviert System-Assertions\n -dsa | -disablesystemassertions\n Deaktiviert System-Assertions\n -agentlib:<libname>[=<options>]\n L\u00E4dt native Agent Library <libname>, z.B. -agentlib:jdwp\n siehe auch -agentlib:jdwp=help\n -agentpath:<pathname>[=<options>]\n L\u00E4dt native Agent Library nach vollem Pfadnamen\n -javaagent:<jarpath>[=<options>]\n L\u00E4dt Java-Programmiersprachen-Agent, siehe java.lang.instrument\n -splash:<imagepath>\n Zeigt Startbildschirm mit angegebenem Bild an\n @<filepath> Liest Optionen aus der angegebenen Datei\n
|
||||||
|
See Weitere Einzelheiten finden Sie unter http://www.oracle.com/technetwork/java/javase/documentation/index.html.
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.usage=\ -Xmixed Ausf\u00FChrung im gemischten Modus (Standard)\n -Xint Nur Ausf\u00FChrung im interpretierten Modus\n -Xbootclasspath:<Verzeichnisse und ZIP-/JAR-Dateien durch {0} getrennt>\n Legt Suchpfad f\u00FCr Bootstrap-Klassen und Ressourcen fest\n -Xbootclasspath/a:<Verzeichnisse und ZIP-/JAR-Dateien durch {0} getrennt>\n H\u00E4ngt an das Ende des Bootstrap Classpath an\n -Xbootclasspath/p:<Verzeichnisse und ZIP-/JAR-Dateien durch {0} getrennt>\n Stellt Bootstrap Classpath voran\n -Xdiag Zeigt zus\u00E4tzliche Diagnosemeldungen an\n -Xnoclassgc Deaktiviert Klassen-Garbage Collection\n -Xincgc Aktiviert inkrementelle Garbage Collection\n -Xloggc:<file> Loggt GC-Status in einer Datei mit Zeitstempeln\n -Xbatch Deaktiviert Hintergrundkompilierung\n -Xms<size> Legt anf\u00E4ngliche Java Heap-Gr\u00F6\u00DFe fest\n -Xmx<size> Legt maximale Java Heap-Gr\u00F6\u00DFe fest\n -Xss<size> Legt Java-Thread-Stackgr\u00F6\u00DFe fest\n -Xprof Gibt CPU-Profiling-Daten aus\n -Xfuture Aktiviert strengste Pr\u00FCfungen, antizipiert zuk\u00FCnftigen Standardwert\n -Xrs Reduziert Verwendung von BS-Signalen durch Java/VM (siehe Dokumentation)\n -Xcheck:jni F\u00FChrt zus\u00E4tzliche Pr\u00FCfungen f\u00FCr JNI-Funktionen durch\n -Xshare:off Kein Versuch, gemeinsame Klassendaten zu verwenden\n -Xshare:auto Verwendet gemeinsame Klassendaten, wenn m\u00F6glich (Standard)\n -Xshare:on Erfordert die Verwendung gemeinsamer Klassendaten, sonst verl\u00E4uft der Vorgang nicht erfolgreich.\n -XshowSettings Zeigt alle Einstellungen und f\u00E4hrt fort\n -XshowSettings:all\n Zeigt alle Einstellungen und f\u00E4hrt fort\n -XshowSettings:vm Zeigt alle VM-bezogenen Einstellungen und f\u00E4hrt fort\n -XshowSettings:properties\n Zeigt alle Eigenschaftseinstellungen und f\u00E4hrt fort\n -XshowSettings:locale\n Zeigt alle gebietsschemabezogenen Einstellungen und f\u00E4hrt fort\n\nDie -X-Optionen sind keine Standardoptionen und k\u00F6nnen ohne Vorank\u00FCndigung ge\u00E4ndert werden.\n
|
java.launcher.X.usage=\ -Xmixed Ausf\u00FChrung im gemischten Modus (Standard)\n -Xint Nur Ausf\u00FChrung im interpretierten Modus\n -Xbootclasspath/a:<Verzeichnisse und ZIP-/JAR-Dateien durch {0} getrennt>\n H\u00E4ngt an das Ende des Bootstrap Classpath an\n -Xdiag Zeigt zus\u00E4tzliche Diagnosemeldungen an\n -Xdiag:resolver Zeigt Resolver-Diagnosemeldungen an\n -Xnoclassgc Deaktiviert Klassen-Garbage Collection\n -Xincgc Aktiviert inkrementelle Garbage Collection\n -Xloggc:<file> Protokolliert GC-Status in einer Datei mit Zeitstempeln\n -Xbatch Deaktiviert Hintergrundkompilierung\n -Xms<size> Legt anf\u00E4ngliche Java-Heap-Gr\u00F6\u00DFe fest\n -Xmx<size> Legt maximale Java-Heap-Gr\u00F6\u00DFe fest\n -Xss<size> Legt Java-Threadstackgr\u00F6\u00DFe fest\n -Xprof Gibt CPU-Profilingdaten aus\n -Xfuture Aktiviert strengste Pr\u00FCfungen, antizipiert zuk\u00FCnftigen Standardwert\n -Xrs Reduziert Verwendung von BS-Signalen durch Java/VM (siehe Dokumentation)\n -Xcheck:jni F\u00FChrt zus\u00E4tzliche Pr\u00FCfungen f\u00FCr JNI-Funktionen durch\n -Xshare:off Kein Versuch, gemeinsame Klassendaten zu verwenden\n -Xshare:auto Verwendet gemeinsame Klassendaten, wenn m\u00F6glich (Standard)\n -Xshare:on Erfordert die Verwendung gemeinsamer Klassendaten, sonst verl\u00E4uft der Vorgang nicht erfolgreich.\n -XshowSettings Zeigt alle Einstellungen an und f\u00E4hrt fort\n -XshowSettings:all\n Zeigt alle Einstellungen an und f\u00E4hrt fort\n -XshowSettings:vm Zeigt alle VM-bezogenen Einstellungen an und f\u00E4hrt fort\n -XshowSettings:properties\n Zeigt alle Eigenschaftseinstellungen an und f\u00E4hrt fort\n -XshowSettings:locale\n Zeigt alle gebietsschemabezogenen Einstellungen an und f\u00E4hrt fort\n -XaddReads:<module>=<other-module>(,<other-module>)*\n <module> liest andere Module\n unabh\u00E4ngig von der Moduldeklaration\n -XaddExports:<module>/<package>=<other-module>(,<other-module>)*\n <module> exportiert <package> in andere Module\n unabh\u00E4ngig von der Moduldeklaration\n -Xpatch:<module>=<file>({0}<file>)*\n Modul mit Klassen und Ressourcen in JAR-Dateien oder Verzeichnissen\n au\u00DFer Kraft setzen oder erg\u00E4nzen\n -Xdisable-@files Deaktiviert weitere Argumentdateierweiterung\n\nDie -X-Optionen sind keine Standardoptionen und k\u00F6nnen ohne Vorank\u00FCndigung ge\u00E4ndert werden.\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.macosx.usage=\nDie folgenden Optionen sind f\u00FCr Mac OS X spezifisch:\n -XstartOnFirstThread\n f\u00FChrt die main()-Methode f\u00FCr den ersten (AppKit) Thread aus\n -Xdock:name=<Anwendungsname>"\n \u00DCberschreibt den in der Uhr angezeigten Standardanwendungsnamen\n -Xdock:icon=<Pfad zu Symboldatei>\n \u00DCberschreibt das in der Uhr angezeigte Standardsymbol\n\n
|
java.launcher.X.macosx.usage=\nDie folgenden Optionen sind f\u00FCr Mac OS X spezifisch:\n -XstartOnFirstThread\n f\u00FChrt die main()-Methode f\u00FCr den ersten (AppKit) Thread aus\n -Xdock:name=<Anwendungsname>"\n \u00DCberschreibt den in der Uhr angezeigten Standardanwendungsnamen\n -Xdock:icon=<Pfad zu Symboldatei>\n \u00DCberschreibt das in der Uhr angezeigte Standardsymbol\n\n
|
||||||
@ -52,3 +53,5 @@ java.launcher.jar.error2=Manifest in {0} nicht gefunden
|
|||||||
java.launcher.jar.error3=kein Hauptmanifestattribut, in {0}
|
java.launcher.jar.error3=kein Hauptmanifestattribut, in {0}
|
||||||
java.launcher.init.error=Initialisierungsfehler
|
java.launcher.init.error=Initialisierungsfehler
|
||||||
java.launcher.javafx.error1=Fehler: Die JavaFX-Methode launchApplication hat die falsche Signatur, sie\nmuss als statisch deklariert werden und einen Wert vom Typ VOID zur\u00FCckgeben
|
java.launcher.javafx.error1=Fehler: Die JavaFX-Methode launchApplication hat die falsche Signatur, sie\nmuss als statisch deklariert werden und einen Wert vom Typ VOID zur\u00FCckgeben
|
||||||
|
java.launcher.module.error1=Modul {0} weist kein MainClass-Attribut auf. Verwenden Sie -m <module>/<main-class>
|
||||||
|
java.launcher.module.error2=Fehler: Hauptklasse {0} konnte in Modul {1} nicht gefunden oder geladen werden
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
#
|
#
|
||||||
# This code is free software; you can redistribute it and/or modify it
|
# This code is free software; you can redistribute it and/or modify it
|
||||||
@ -24,7 +24,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.header = Sintaxis: {0} [-options] class [args...]\n (para ejecutar una clase)\n o {0} [-options] -jar jarfile [args...]\n (para ejecutar un archivo jar)\ndonde las opciones incluyen:\n
|
java.launcher.opt.header = Sintaxis: {0} [opciones] class [args...]\n (para ejecutar una clase)\n or {0} [opciones] -jar jarfile [args...]\n (para ejecutar un archivo jar)\n or {0} [-options] -mp <ruta_m\u00F3dulo> -m <nombre_m\u00F3dulo> | <nombre_m\u00F3dulo>/<clase_principal>\n (para ejecutar una clase principal en un m\u00F3dulo)\ndonde opciones incluye:\n
|
||||||
|
|
||||||
java.launcher.opt.datamodel =\ -d{0}\t usar un modelo de datos de {0} bits, si est\u00E1 disponible\n
|
java.launcher.opt.datamodel =\ -d{0}\t usar un modelo de datos de {0} bits, si est\u00E1 disponible\n
|
||||||
java.launcher.opt.vmselect =\ {0}\t para seleccionar la VM "{1}"\n
|
java.launcher.opt.vmselect =\ {0}\t para seleccionar la VM "{1}"\n
|
||||||
@ -34,10 +34,11 @@ java.launcher.ergo.message1 =\ La VM por defecto es {0}
|
|||||||
java.launcher.ergo.message2 =\ porque la ejecuci\u00F3n se est\u00E1 llevando a cabo en una m\u00E1quina de clase de servidor.\n
|
java.launcher.ergo.message2 =\ porque la ejecuci\u00F3n se est\u00E1 llevando a cabo en una m\u00E1quina de clase de servidor.\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.footer =\ -cp <ruta de acceso de b\u00FAsqueda de clases de los directorios y los archivos zip/jar>\n -classpath <ruta de acceso de b\u00FAsqueda de clases de los directorios y los archivos zip/jar>\n Lista separada por {0} de directorios, archivos JAR\n y archivos ZIP para buscar archivos de clase.\n -D<nombre>=<valor>\n definir una propiedad del sistema\n -verbose:[class|gc|jni]\n activar la salida verbose\n -version imprimir la versi\u00F3n del producto y salir\n -version:<valor>\n es necesario que se ejecute la versi\u00F3n especificada\n -showversion imprimir la versi\u00F3n del producto y continuar\n -jre-restrict-search | -no-jre-restrict-search\n incluir/excluir JRE privados de usuario en la b\u00FAsqueda de versi\u00F3n\n -? -help imprimir este mensaje de ayuda\n -X imprimir la ayuda sobre las opciones que no sean est\u00E1ndar\n -ea[:<nombre_paquete>...|:<nombre_clase>]\n -enableassertions[:<nombre_paquete>...|:<nombre_clase>]\n activar afirmaciones con la granularidad especificada\n -da[:<nombre_paquete>...|:<nombre_clase>]\n -disableassertions[:<nombre_paquete>...|:<nombre_clase>]\n desactivar afirmaciones con la granularidad especificada\n -esa | -enablesystemassertions\n activar afirmaciones del sistema\n -dsa | -disablesystemassertions\n desactivar afirmaciones del sistema\n -agentlib:<nombre_bib>[=<opciones>]\n cargar la biblioteca de agente nativa <nombre_bib>, como -agentlib:hprof\n v\u00E9ase tambi\u00E9n -agentlib:jdwp=help y -agentlib:hprof=help\n -agentpath:<nombre_ruta_acceso>[=<opciones>]\n cargar biblioteca de agente nativa con el nombre de la ruta de acceso completa\n -javaagent:<ruta_acceso_jar>[=<opciones>]\n cargar agente de lenguaje de programaci\u00F3n Java, v\u00E9ase java.lang.instrument\n -splash:<ruta_acceso_imagen>\n mostrar una pantalla de presentaci\u00F3n con la imagen especificada\nConsulte http://www.oracle.com/technetwork/java/javase/documentation/index.html para obtener m\u00E1s informaci\u00F3n.
|
java.launcher.opt.footer =\ -cp <ruta de b\u00FAsqueda de clases de los directorios y los archivos zip/jar>\n -classpath <ruta de b\u00FAsqueda de clases de los directorios y los archivos zip/jar>\n Lista separada por {0} de directorios, archivos JAR\n y archivos ZIP para buscar archivos de clase.\n -mp <ruta de m\u00F3dulo>\n -modulepath <ruta de m\u00F3dulo>...\n Lista de directorios separados por {0}, cada directorio\n es un directorio de m\u00F3dulos.\n -upgrademodulepath <ruta de m\u00F3dulo>...\n Lista de directorios separados por {0}, cada directorio\n es un directorio de m\u00F3dulos que sustituye a los m\u00F3dulos\n actualizables en la imagen de tiempo de ejecuci\u00F3n\n -m <nombre_m\u00F3dulo> | <nombre_m\u00F3dulo>/<clase_principal>\n m\u00F3dulo principal o inicial que resolver\n -addmods <nombre_m\u00F3dulo>[,<nombre_m\u00F3dulo>...]\n m\u00F3dulos ra\u00EDz que resolver, adem\u00E1s del m\u00F3dulo inicial\n -limitmods <nombre_m\u00F3dulo>[,<nombre_m\u00F3dulo>...]\n limita el universo de los m\u00F3dulos observables\n -listmods[:<nombre_m\u00F3dulo>[,<nombre_m\u00F3dulo>...]]\n muestra los m\u00F3dulos observables y sale\n -D<nombre>=<valor>\n define una propiedad del sistema\n -verbose:[class|gc|jni]\n activa la salida verbose\n -version imprime la versi\u00F3n del producto y sale\n -showversion imprime la versi\u00F3n del producto y sale\n -? -help imprime este mensaje de ayuda\n -X imprime la ayuda de opciones no est\u00E1ndar\n -ea[:<nombre_paquete>...|:<nombre_clase>]\n -enableassertions[:<nombre_paquete>...|:<nombre_clase>]\n activar afirmaciones con la granularidad especificada\n -da[:<nombre_paquete>...|:<nombre_clase>]\n -disableassertions[:<nombre_paquete>...|:<nombre_clase>]\n desactivar afirmaciones con la granularidad especificada\n -esa | -enablesystemassertions\n activar afirmaciones del sistema\n -dsa | -disablesystemassertions\n desactivar afirmaciones del sistema\n -agentlib:<nombre_bib>[=<opciones>]\n cargar biblioteca de agentes nativos <nombre_bib>, p. ej,. -agentlib:jdwp\n ver tambi\u00E9n -agentlib:jdwp=help\n -agentpath:<nombre_ruta>[=<opciones>]\n cargar biblioteca de agentes nativos por ruta completa\n -javaagent:<ruta_jar>[=<opciones>]\n cargar agente de lenguaje de programaci\u00F3n Java, ver java.lang.instrument\n -splash:<ruta_imagen>\n mostrar pantalla de bienvenida con la imagen especificada\n @<ruta_archivo> leer opciones del archivo especificado\n
|
||||||
|
See http://www.oracle.com/technetwork/java/javase/documentation/index.html para obtener m\u00E1s informaci\u00F3n.
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.usage=\ -Xmixed ejecuci\u00F3n de modo mixto (por defecto)\n -Xint s\u00F3lo ejecuci\u00F3n de modo interpretado\n -Xbootclasspath:<directorios y archivos zip/jar separados por {0}>\n definir la ruta de acceso de b\u00FAsqueda para los recursos y clases de inicializaci\u00F3n de datos\n -Xbootclasspath/a:<directorios y archivos zip/jar separados por {0}>\n agregar al final de la ruta de acceso de la clase de inicializaci\u00F3n de datos\n -Xbootclasspath/p:<directorios y archivos zip/jar separados por {0}>\n anteponer a la ruta de acceso de la clase de inicializaci\u00F3n de datos\n -Xdiag mostrar mensajes de diagn\u00F3stico adicionales\n -Xnoclassgc desactivar la recolecci\u00F3n de basura de clases\n -Xincgc activar la recolecci\u00F3n de basura de clases\n -Xloggc:<archivo> registrar el estado de GC en un archivo con registros de hora\n -Xbatch desactivar compilaci\u00F3n en segundo plano\n -Xms<tama\u00F1o> definir tama\u00F1o de pila Java inicial\n -Xmx<tama\u00F1o> definir tama\u00F1o de pila Java m\u00E1ximo\n -Xss<tama\u00F1o> definir tama\u00F1o de la pila del thread de Java\n -Xprof datos de salida de creaci\u00F3n de perfil de CPU\n -Xfuture activar las comprobaciones m\u00E1s estrictas, anticip\u00E1ndose al futuro valor por defecto\n -Xrs reducir el uso de se\u00F1ales de sistema operativo por parte de Java/VM (consulte la documentaci\u00F3n)\n -Xcheck:jni realizar comprobaciones adicionales para las funciones de JNI\n -Xshare:off no intentar usar datos de clase compartidos\n -Xshare:auto usar datos de clase compartidos si es posible (valor por defecto)\n -Xshare:on es obligatorio el uso de datos de clase compartidos, de lo contrario se emitir\u00E1 un fallo.\n -XshowSettings mostrar todos los valores y continuar\n -XshowSettings:all\n mostrar todos los valores y continuar\n -XshowSettings:vm mostrar todos los valores de la VM y continuar\n -XshowSettings:properties\n mostrar todos los valores de las propiedades y continuar\n -XshowSettings:locale\n mostrar todos los valores relacionados con la configuraci\u00F3n regional y continuar\n\nLas opciones -X no son est\u00E1ndar, por lo que podr\u00EDan cambiarse sin previo aviso.\n
|
java.launcher.X.usage=\ -Xmixed ejecuci\u00F3n de modo mixto (por defecto)\n -Xint solo ejecuci\u00F3n de modo interpretado\n -Xbootclasspath/a:<directorios y archivos zip/jar separados por {0}>\n agregar al final de la ruta de la clase de inicializaci\u00F3n de datos\n -Xdiag mostrar mensajes de diagn\u00F3stico adicionales\n -Xdiag:resolver mostrar mensajes de diagn\u00F3stico de resoluci\u00F3n\n -Xnoclassgc desactivar la recopilaci\u00F3n de basura de clases\n -Xincgc activar la recopilaci\u00F3n de basura de clases\n -Xloggc:<archivo> registrar el estado de GC en un archivo con registros de hora\n -Xbatch desactivar compilaci\u00F3n en segundo plano\n -Xms<tama\u00F1o> definir tama\u00F1o de pila Java inicial\n -Xmx<tama\u00F1o> definir tama\u00F1o de pila Java m\u00E1ximo\n -Xss<tama\u00F1o> definir tama\u00F1o de la pila del thread de Java\n -Xfuture activar las comprobaciones m\u00E1s estrictas, anticip\u00E1ndose al futuro valor por defecto\n -Xrs reducir el uso de se\u00F1ales de sistema operativo por parte de Java/VM (consulte la documentaci\u00F3n)\n -Xcheck:jni realizar comprobaciones adicionales para las funciones de JNI\n -Xshare:off no intentar usar datos de clase compartidos\n -Xshare:auto usar datos de clase compartidos si es posible (valor por defecto)\n -Xshare:on es obligatorio el uso de datos de clase compartidos, de lo contrario se emitir\u00E1 un fallo.\n -XshowSettings mostrar todos los valores y continuar\n -XshowSettings:all\n mostrar todos los valores y continuar\n -XshowSettings:vm mostrar todos los valores de la VM y continuar\n -XshowSettings:properties\n mostrar todos los valores de las propiedades y continuar\n -XshowSettings:locale\n mostrar todos los valores relacionados con la configuraci\u00F3n regional y continuar\n -XaddReads:<m\u00F3dulo>=<otros-m\u00F3dulos>(,<otros-m\u00F3dulos>)*\n <m\u00F3dulo> lee otros m\u00F3dulos,\n independientemente de su declaraci\u00F3n\n -XaddExports:<m\u00F3dulo>/<paquete>=<otros-m\u00F3dulos>(,<otros-m\u00F3dulos>)*\n <m\u00F3dulo> exporta <paquete> a otros m\u00F3dulos,\n independientemente de su declaraci\u00F3n\n -Xpatch:<m\u00F3dulo>=<archivo>({0}<archivo>)*\n Sustituye o aumenta un m\u00F3dulo con clases y recursos\n en directorios o archivos JAR\n -Xdisable-@files desactiva la ampliaci\u00F3n de archivos de argumentos\n\nLas opciones -X no son est\u00E1ndar, por lo que podr\u00EDan cambiarse sin previo aviso.\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.macosx.usage=\nLas siguientes opciones son espec\u00EDficas para Mac OS X:\n -XstartOnFirstThread\n ejecuta el m\u00E9todo main() del primer thread (AppKit)\n -Xdock:name=<nombre de aplicaci\u00F3n>"\n sustituye al nombre por defecto de la aplicaci\u00F3n que se muestra en el Dock\n -Xdock:icon=<ruta de acceso a archivo de icono>\n sustituye al icono por defecto que se muestra en el Dock\n\n
|
java.launcher.X.macosx.usage=\nLas siguientes opciones son espec\u00EDficas para Mac OS X:\n -XstartOnFirstThread\n ejecuta el m\u00E9todo main() del primer thread (AppKit)\n -Xdock:name=<nombre de aplicaci\u00F3n>"\n sustituye al nombre por defecto de la aplicaci\u00F3n que se muestra en el Dock\n -Xdock:icon=<ruta de acceso a archivo de icono>\n sustituye al icono por defecto que se muestra en el Dock\n\n
|
||||||
@ -52,3 +53,5 @@ java.launcher.jar.error2=no se ha encontrado el manifiesto en {0}
|
|||||||
java.launcher.jar.error3=no hay ning\u00FAn atributo de manifiesto principal en {0}
|
java.launcher.jar.error3=no hay ning\u00FAn atributo de manifiesto principal en {0}
|
||||||
java.launcher.init.error=error de inicializaci\u00F3n
|
java.launcher.init.error=error de inicializaci\u00F3n
|
||||||
java.launcher.javafx.error1=Error: el m\u00E9todo launchApplication de JavaFX tiene una firma que no es correcta.\\nSe debe declarar est\u00E1tico y devolver un valor de tipo nulo
|
java.launcher.javafx.error1=Error: el m\u00E9todo launchApplication de JavaFX tiene una firma que no es correcta.\\nSe debe declarar est\u00E1tico y devolver un valor de tipo nulo
|
||||||
|
java.launcher.module.error1=el m\u00F3dulo {0} no tiene ning\u00FAn atributo MainClass, utilice -m <m\u00F3dulo>/<clase-principal>
|
||||||
|
java.launcher.module.error2=Error: no se ha encontrado o cargado la clase principal {0} en el m\u00F3dulo {1}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
#
|
#
|
||||||
# This code is free software; you can redistribute it and/or modify it
|
# This code is free software; you can redistribute it and/or modify it
|
||||||
@ -24,7 +24,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.header = Syntaxe : {0} [-options] class [args...]\n (pour l''ex\u00E9cution d''une classe)\n ou {0} [-options] -jar jarfile [args...]\n (pour l''ex\u00E9cution d''un fichier JAR)\no\u00F9 les options comprennent :\n
|
java.launcher.opt.header = Syntaxe : {0} [options] class [args...]\n (pour l''ex\u00E9cution d''une classe)\n ou {0} [options] -jar jarfile [args...]\n (pour l''ex\u00E9cution d''un fichier JAR)\n ou {0} [-options] -mp <modulepath> -m <modulename> | <modulename>/<mainclass>\n (pour l''ex\u00E9cution de la classe principale dans un module)\no\u00F9 les options incluent :\n
|
||||||
|
|
||||||
java.launcher.opt.datamodel =\ -d{0}\t utilisez le mod\u00E8le de donn\u00E9es {0} bits s''il est disponible\n
|
java.launcher.opt.datamodel =\ -d{0}\t utilisez le mod\u00E8le de donn\u00E9es {0} bits s''il est disponible\n
|
||||||
java.launcher.opt.vmselect =\ {0}\t pour s\u00E9lectionner la machine virtuelle "{1}"\n
|
java.launcher.opt.vmselect =\ {0}\t pour s\u00E9lectionner la machine virtuelle "{1}"\n
|
||||||
@ -34,10 +34,11 @@ java.launcher.ergo.message1 =\ La machine virtuelle par d\u00E
|
|||||||
java.launcher.ergo.message2 =\ car vous ex\u00E9cutez une machine de classe de serveur.\n
|
java.launcher.ergo.message2 =\ car vous ex\u00E9cutez une machine de classe de serveur.\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.footer =\ -cp <class search path of directories and zip/jar files>\n -classpath <class search path of directories and zip/jar files>\n Liste de r\u00E9pertoires, d''archives JAR et\n d''archives ZIP s\u00E9par\u00E9s par des {0}, dans laquelle rechercher les fichiers de classe.\n -D<name>=<value>\n d\u00E9finition d''une propri\u00E9t\u00E9 syst\u00E8me\n -verbose:[class|gc|jni]\n activation de la sortie en mode verbose\n -version impression de la version du produit et fin de l''op\u00E9ration\n -version:<value>\n ex\u00E9cution de la version sp\u00E9cifi\u00E9e obligatoire\n -showversion impression de la version du produit et poursuite de l''op\u00E9ration\n -jre-restrict-search | -no-jre-restrict-search\n inclusion/exclusion des environnements JRE priv\u00E9s de l''utilisateur dans la recherche de version\n -? -help impression du message d''aide\n -X impression de l''aide sur les options non standard\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n activation des assertions avec la granularit\u00E9 sp\u00E9cifi\u00E9e\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n d\u00E9sactivation des assertions avec la granularit\u00E9 sp\u00E9cifi\u00E9e\n -esa | -enablesystemassertions\n activation des assertions syst\u00E8me\n -dsa | -disablesystemassertions\n d\u00E9sactivation des assertions syst\u00E8me\n -agentlib:<libname>[=<options>]\n chargement de la biblioth\u00E8que d''agent natif <libname>, par exemple -agentlib:hprof\n voir \u00E9galement, -agentlib:jdwp=help et -agentlib:hprof=help\n -agentpath:<pathname>[=<options>]\n chargement de la biblioth\u00E8que d''agent natif via le chemin d''acc\u00E8s complet\n -javaagent:<jarpath>[=<options>]\n chargement de l''agent du langage de programmation Java, voir java.lang.instrument\n -splash:<imagepath>\n affichage de l''\u00E9cran d''accueil avec l''image sp\u00E9cifi\u00E9e\nVoir http://www.oracle.com/technetwork/java/javase/documentation/index.html pour plus de d\u00E9tails.
|
java.launcher.opt.footer =\ -cp <chemin de recherche de classe de r\u00E9pertoire et de fichiers ZIP/JAR>\n -classpath <chemin de recherche de classe de r\u00E9pertoire et de fichiers ZIP/JAR>\n Liste de r\u00E9pertoires, d''archives JAR et\n d''archives ZIP s\u00E9par\u00E9s par des {0}, dans laquelle rechercher des fichiers de classe.\n -mp <chemin de module>\n -modulepath <chemin de module>...\n Liste de r\u00E9pertoires s\u00E9par\u00E9s par des {0}, chaque r\u00E9pertoire\n est un r\u00E9pertoire de modules.\n -upgrademodulepath <chemin de module>...\n Liste de r\u00E9pertoires s\u00E9par\u00E9s par des {0}, chaque r\u00E9pertoire\n est un r\u00E9pertoire de modules qui remplace des modules\n pouvant \u00EAtre mis \u00E0 niveau dans l''image d''ex\u00E9cution\n -m <modulename> | <modulename>/<mainclass>\n modules racines \u00E0 r\u00E9soudre en plus du module initial\n -addmods <modulename>[,<modulename>...]\n modules racines \u00E0 r\u00E9soudre en plus du module initial\n -limitmods <modulename>[,<modulename>...]\n limitation de l''univers de modules observables\n -listmods[:<modulename>[,<modulename>...]]\n \u00E9num\u00E9ration des modules observables et fin de l''op\u00E9ration\n -D<name>=<value>\n d\u00E9finition d''une propri\u00E9t\u00E9 syst\u00E8me\n -verbose:[class|gc|jni]\n activation de la sortie en mode verbose\n -version impression de la version du produit et fin de l''op\u00E9ration\n -showversion impression de la version du produit et poursuite de l''op\u00E9ration\n -? -help impression du message d''aide\n -X impression de l''aide sur les options non standard\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n activation des assertions avec la granularit\u00E9* sp\u00E9cifi\u00E9e\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n d\u00E9sactivation des assertions avec la granularit\u00E9 sp\u00E9cifi\u00E9e\n -esa | -enablesystemassertions\n activation des assertions syst\u00E8me\n -dsa | -disablesystemassertions\n d\u00E9sactivation des assertions syst\u00E8me\n -agentlib:<libname>[=<options>]\n chargement de la biblioth\u00E8que d''agent natif <libname>, par exemple -agentlib:jdwp\n voir aussi, -agentlib:jdwp=help\n -agentpath:<pathname>[=<options>]\n chargement de la biblioth\u00E8que d''agent natif via le chemin d''acc\u00E8s complet\n -javaagent:<jarpath>[=<options>]\n chargement de l''agent du langage de programmation Java, voir java.lang.instrument\n -splash:<imagepath>\n affichage de l''\u00E9cran d''accueil avec l''image indiqu\u00E9e\n @<filepath> lire les options \u00E0 partir du fichier indiqu\u00E9\n
|
||||||
|
See http://www.oracle.com/technetwork/java/javase/documentation/index.html pour plus de d\u00E9tails.
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.usage=\ -Xmixed ex\u00E9cution en mode mixte (valeur par d\u00E9faut)\n -Xint ex\u00E9cution en mode interpr\u00E9t\u00E9 uniquement\n -Xbootclasspath:<directories and zip/jar files separated by {0}>\n d\u00E9finition du chemin de recherche pour les ressources et classes bootstrap\n -Xbootclasspath/a:<directories and zip/jar files separated by {0}>\n ajout \u00E0 la fin du chemin de classe bootstrap\n -Xbootclasspath/p:<directories and zip/jar files separated by {0}>\n ajout au d\u00E9but du chemin de classe bootstrap\n -Xdiag affichage de messages de diagnostic suppl\u00E9mentaires\n -Xnoclassgc d\u00E9sactivation de l''op\u00E9ration de ramasse-miette (garbage collection) de la classe\n -Xincgc activation de l''op\u00E9ration de ramasse-miette (garbage collection) incr\u00E9mentielle\n -Xloggc:<file> journalisation du statut de l''op\u00E9ration de ramasse-miette (garbage collection) dans un fichier avec horodatages\n -Xbatch d\u00E9sactivation de la compilation en arri\u00E8re-plan\n -Xms<size> d\u00E9finition de la taille initiale des portions de m\u00E9moire Java\n -Xmx<size> d\u00E9finition de la taille maximale des portions de m\u00E9moire Java\n -Xss<size> d\u00E9finition de la taille de pile de thread Java\n -Xprof sortie des donn\u00E9es de profilage de l''unit\u00E9 centrale\n -Xfuture activation des contr\u00F4les les plus stricts en vue d''anticiper la future valeur par d\u00E9faut\n -Xrs r\u00E9duction de l''utilisation des signaux OS par Java/la machine virtuelle (voir documentation)\n -Xcheck:jni ex\u00E9cution de contr\u00F4les suppl\u00E9mentaires pour les fonctions JNI\n -Xshare:off aucune tentative d''utilisation des donn\u00E9es de classe partag\u00E9es\n -Xshare:auto utilisation des donn\u00E9es de classe partag\u00E9es si possible (valeur par d\u00E9faut)\n -Xshare:on utilisation des donn\u00E9es de classe partag\u00E9es obligatoire ou \u00E9chec de l''op\u00E9ration\n -XshowSettings affichage de tous les param\u00E8tres et poursuite de l''op\u00E9ration\n -XshowSettings:all\n affichage de tous les param\u00E8tres et poursuite de l''op\u00E9ration\n -XshowSettings:vm affichage de tous les param\u00E8tres de machine virtuelle et poursuite de l''op\u00E9ration\n -XshowSettings:properties\n affichage de tous les param\u00E8tres de propri\u00E9t\u00E9 et poursuite de l''op\u00E9ration\n -XshowSettings:locale\n affichage de tous les param\u00E8tres d''environnement local et poursuite de l''op\u00E9ration\n\nLes options -X ne sont pas des options standard et peuvent faire l''objet de modifications sans pr\u00E9avis.\n
|
java.launcher.X.usage=\ -Xmixed ex\u00E9cution en mode mixte (valeur par d\u00E9faut)\n -Xint ex\u00E9cution en mode interpr\u00E9t\u00E9 uniquement\n -Xbootclasspath/a:<r\u00E9pertoires et fichiers ZIP/JAR s\u00E9par\u00E9s par des {0}>\n ajout \u00E0 la fin du chemin de classe bootstrap\n -Xdiag affichage de messages de diagnostic suppl\u00E9mentaires\n -Xdiag:resolver affichage de messages de diagnostic du r\u00E9solveur\n -Xnoclassgc d\u00E9sactivation du nettoyage de la m\u00E9moire de la classe\n -Xincgc activation du nettoyage de la m\u00E9moire incr\u00E9mentiel\n -Xloggc:<file> journalisation du statut de nettoyage de la m\u00E9moire dans un fichier avec horodatage\n -Xbatch d\u00E9sactivation de la compilation en arri\u00E8re-plan\n -Xms<size> d\u00E9finition de la taille initiale des portions de m\u00E9moire Java\n -Xmx<size> d\u00E9finition de la taille maximale des portions de m\u00E9moire Java\n -Xss<size> d\u00E9finition de la taille de pile de threads Java\n -Xprof sortie des donn\u00E9es de profilage d''UC\n -Xfuture activation des contr\u00F4les les plus stricts en vue d''anticiper la future valeur par d\u00E9faut\n -Xrs r\u00E9duction de l''utilisation des signaux d''OS par Java/la machine virtuelle (voir documentation)\n -Xcheck:jni ex\u00E9cution de contr\u00F4les suppl\u00E9mentaires pour les fonctions JNI\n -Xshare:off aucune tentative d''utilisation des donn\u00E9es de classe partag\u00E9e\n -Xshare:auto utilisation des donn\u00E9es de classe partag\u00E9e si possible (valeur par d\u00E9faut)\n -Xshare:on utilisation des donn\u00E9es de classe partag\u00E9e obligatoire ou \u00E9chec de l''op\u00E9ration\n -XshowSettings affichage de tous les param\u00E8tres et poursuite de l''op\u00E9ration\n -XshowSettings:all\n affichage de tous les param\u00E8tres et poursuite de l''op\u00E9ration\n -XshowSettings:vm affichage de tous les param\u00E8tres de machine virtuelle et poursuite de l''op\u00E9ration\n -XshowSettings:properties\n affichage de tous les param\u00E8tres de propri\u00E9t\u00E9 et poursuite de l''op\u00E9ration\n -XshowSettings:locale\n affichage de tous les param\u00E8tres d''environnement local et poursuite de l''op\u00E9ration\n -XaddReads:<module>=<other-module>(,<other-module>)*\n <module> lecture de tous les modules,\n quelle que soit la d\u00E9claration de module\n -XaddExports:<module>/<package>=<other-module>(,<other-module>)*\n <module> exporte <package> vers d''autres modules,\n quelle que soit la d\u00E9claration de module\n -Xpatch:<module>=<file>({0}<file>)*\n Remplacement ou augmentation d''un module avec des classes et des ressources\n dans des fichiers ou r\u00E9pertoires JAR\n -Xdisable-@files d\u00E9sactivation d''autres d\u00E9veloppements de fichier d''argument\n\nLes options -X ne sont pas standard et sont susceptibles de modification sans pr\u00E9avis.\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.macosx.usage=\nLes options suivantes sont propres \u00E0 Mac OS X :\n -XstartOnFirstThread\n ex\u00E9cute la m\u00E9thode main() sur le premier thread (AppKit)\n -Xdock:name=<application name>"\n remplace le nom d'application par d\u00E9faut affich\u00E9 dans l'ancrage\n -Xdock:icon=<path to icon file>\n remplace l'ic\u00F4ne par d\u00E9faut affich\u00E9e dans l'ancrage\n\n
|
java.launcher.X.macosx.usage=\nLes options suivantes sont propres \u00E0 Mac OS X :\n -XstartOnFirstThread\n ex\u00E9cute la m\u00E9thode main() sur le premier thread (AppKit)\n -Xdock:name=<application name>"\n remplace le nom d'application par d\u00E9faut affich\u00E9 dans l'ancrage\n -Xdock:icon=<path to icon file>\n remplace l'ic\u00F4ne par d\u00E9faut affich\u00E9e dans l'ancrage\n\n
|
||||||
@ -52,3 +53,5 @@ java.launcher.jar.error2=fichier manifeste introuvable dans {0}
|
|||||||
java.launcher.jar.error3=aucun attribut manifest principal dans {0}
|
java.launcher.jar.error3=aucun attribut manifest principal dans {0}
|
||||||
java.launcher.init.error=erreur d'initialisation
|
java.launcher.init.error=erreur d'initialisation
|
||||||
java.launcher.javafx.error1=Erreur : la signature de la m\u00E9thode launchApplication JavaFX est incorrecte, la\nm\u00E9thode doit \u00EAtre d\u00E9clar\u00E9e statique et renvoyer une valeur de type void
|
java.launcher.javafx.error1=Erreur : la signature de la m\u00E9thode launchApplication JavaFX est incorrecte, la\nm\u00E9thode doit \u00EAtre d\u00E9clar\u00E9e statique et renvoyer une valeur de type void
|
||||||
|
java.launcher.module.error1=le module {0} n''a pas d''attribut MainClass, utilisez -m <module>/<main-class>
|
||||||
|
java.launcher.module.error2=Erreur : impossible de trouver ou charger la classe principale {0} dans le module {1}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
#
|
#
|
||||||
# This code is free software; you can redistribute it and/or modify it
|
# This code is free software; you can redistribute it and/or modify it
|
||||||
@ -24,7 +24,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.header = Uso: {0} [-opzioni] class [argomenti...]\n (per eseguire una classe)\n oppure {0} [-opzioni] -jar filejar [argomenti...]\n (per eseguire un file jar)\ndove le opzioni sono:\n
|
java.launcher.opt.header = Uso: {0} [options] class [args...]\n (per eseguire una classe)\n oppure {0} [options] -jar jarfile [args...]\n (per eseguire un file jar)\n oppure {0} [-options] -mp <modulepath> -m <modulename> | <modulename>/<mainclass>\n (per eseguire la classe principale in un modulo)\nin cui options include:\n
|
||||||
|
|
||||||
java.launcher.opt.datamodel =\ -d{0}\t usare un modello di dati {0}-bit se disponibile\n
|
java.launcher.opt.datamodel =\ -d{0}\t usare un modello di dati {0}-bit se disponibile\n
|
||||||
java.launcher.opt.vmselect =\ {0}\t per selezionare la VM "{1}"\n
|
java.launcher.opt.vmselect =\ {0}\t per selezionare la VM "{1}"\n
|
||||||
@ -34,10 +34,11 @@ java.launcher.ergo.message1 =\ La VM predefinita \u00E8 {0}
|
|||||||
java.launcher.ergo.message2 =\ perch\u00E9 si utilizza un computer di classe server.\n
|
java.launcher.ergo.message2 =\ perch\u00E9 si utilizza un computer di classe server.\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.footer =\ -cp <classpath di ricerca di directory e file zip/jar>\n -classpath <classpath di ricerca di directory e file zip/jar>\n Una lista separata da {0} di directory, archivi JAR,\n e archivi ZIP utilizzata per la ricerca di file di classe.\n -D<nome>=<valore>\n imposta una propriet\u00E0 di sistema\n -verbose:[class|gc|jni]\n abilita l''output descrittivo\n -version stampa la versione del prodotto ed esce\n -version:<valore>\n richiede l''esecuzione della versione specificata\n -showversion stampa la versione del prodotto e continua\n -jre-restrict-search | -no-jre-restrict-search\n include/esclude gli ambienti JRE privati dell''utente nella ricerca della versione\n -? -help stampa questo messaggio della Guida\n -X stampa la Guida sulle opzioni non standard\n -ea[:<nomepackage>...|:<nomeclasse>]\n -enableassertions[:<nomepackage>...|:<nomeclasse>]\n abilita le asserzioni con la granularit\u00E0 specificata\n -da[:<nomepackage>...|:<nomeclasse>]\n -disableassertions[:<nomepackage>...|:<nomeclasse>]\n disabilita le asserzioni con la granularit\u00E0 specificata\n -esa | -enablesystemassertions\n abilita le asserzioni di sistema\n -dsa | -disablesystemassertions\n disabilita le asserzioni di sistema\n -agentlib:<nomelib>[=<opzioni>]\n carica la libreria agenti nativa <nomelib>, ad esempio -agentlib:hprof\n vedere anche, -agentlib:jdwp=help and -agentlib:hprof=help\n -agentpath:<nomepercorso>[=<opzioni>]\n carica la libreria agenti nativa con il percorso completo\n -javaagent:<percorsojar>[=<opzioni>]\n carica l''agente del linguaggio di programmazione Java. Vedere java.lang.instrument\n -splash:<percorsoimmagine>\n mostra la schermata iniziale con l''immagine specificata\nPer ulteriori dettagli, vedere http://www.oracle.com/technetwork/java/javase/documentation/index.html.
|
java.launcher.opt.footer =\ -cp <classpath di ricerca di directory e file zip/jar>\n -classpath <classpath di ricerca di directory e file zip/jar>\n Una lista separata da {0} di directory, archivi JAR\n e ZIP utilizzata per la ricerca di file di classe.\n -mp <percorsomodulo>\n -modulepath <percorsomodulo>...\n Una lista separata da {0} di directory; ciascuna directory\n \u00E8 una directory di moduli.\n -upgrademodulepath <percorso modulo>...\n Una lista separata da {0} di directory; ciascuna directory\n \u00E8 una directory dei moduli che sostituiscono i moduli\n aggiornabili nell''immagine in fase di esecuzione\n -m <nomemodulo>| <nomemodulo>/<classeprincipale>\n il modulo iniziale o principale da risolvere\n -addmods <nomemodulo>[,<nomemodulo>...]\n moduli root da risolvere in aggiunta al modulo iniziale\n -limitmods <nomemodulo>[,<nomemodulo>...]\n limita l''universe dei moduli osservabili\n -listmods[:<nomemodulo>[,<nomemodulo>...]]\n elenca i moduli osservabili ed esce\n -D<nome>=<valore>\n imposta una propriet\u00E0 di sistema\n -verbose:[class|gc|jni]\n abilita l''output descrittivo\n -version stampa la versione del prodotto ed esce\n -showversion stampa la versione del prodotto e continua\n -? -help stampa questo messaggio della Guida\n -X stampa la Guida sulle opzioni non standard\n -ea[:<nomepackage>...|:<nomeclasse>]\n -enableassertions[:<nomepackage>...|:<nomeclasse>]\n abilita le asserzioni con la granularit\u00E0 specificata\n -da[:<nomepackage>...|:<nomeclasse>]\n -disableassertions[:<nomepackage>...|:<nomeclasse>]\n disabilita le asserzioni con la granularit\u00E0 specificata\n -esa | -enablesystemassertions\n abilita le asserzioni di sistema\n -dsa | -disablesystemassertions\n disabilita le asserzioni di sistema\n -agentlib:<nomelibreria>[=<opzioni>]\n load native agent library <nomelibreria>, ad esempio -agentlib:jdwp\n vedere anche -agentlib:jdwp=help\n -agentpath:<nomepercorso>[=<opzioni>]\n carica la libreria agenti nativa con il percorso completo\n -javaagent:<percorsojar>[=<opzioni>]\n carica l''agente del linguaggio di programmazione Java. Vedere java.lang.instrument\n -splash:<percorsoimmagine>\n mostra la schermata iniziale con l''immagine specificata\n @<percorsofile> legge le opzioni dal file specificato\n
|
||||||
|
See Per ulteriori dettagli, vedere http://www.oracle.com/technetwork/java/javase/documentation/index.html.
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.usage=\ -Xmixed esecuzione in modalit\u00E0 mista (impostazione predefinita)\n -Xint esecuzione solo in modalit\u00E0 convertita\n -Xbootclasspath:<directory e file zip/jar separati da {0}>\n imposta il percorso di ricerca per le classi e le risorse di bootstrap\n -Xbootclasspath/a:<directory e file zip/jar separati da {0}>\n aggiunge alla fine del classpath di bootstrap\n -Xbootclasspath/p:<directory e file zip/jar separati da {0}>\n antepone al classpath di bootstrap\n -Xdiag mostra messaggi di diagnostica aggiuntivi\n -Xnoclassgc disabilita la garbage collection della classe\n -Xincgc abilita la garbage collection incrementale\n -Xloggc:<file> registra lo stato GC in un file di log con indicatori orari\n -Xbatch disabilita la compilazione in background\n -Xms<dimensione> imposta la dimensione heap Java iniziale\n -Xmx<dimensione> imposta la dimensione heap Java massima\n -Xss<dimensione> imposta la dimensione dello stack di thread Java\n -Xprof visualizza i dati di profilo della CPU\n -Xfuture abilita i controlli pi\u00F9 limitativi anticipando le impostazioni predefinite future\n -Xrs riduce l''uso di segnali del sistema operativo da Java/VM (vedere la documentazione)\n -Xcheck:jni esegue controlli aggiuntivi per le funzioni JNI\n -Xshare:off non tenta di utilizzare i dati della classe condivisi\n -Xshare:auto utilizza i dati di classe condivisi se possibile (impostazione predefinita)\n -Xshare:on richiede l''uso dei dati di classe condivisi, altrimenti l''esecuzione non riesce.\n -XshowSettings mostra tutte le impostazioni e continua\n -XshowSettings:all\n mostra tutte le impostazioni e continua\n -XshowSettings:vm mostra tutte le impostazioni correlate alla VM e continua\n -XshowSettings:properties\n mostra tutte le impostazioni delle propriet\u00E0 e continua\n -XshowSettings:locale\n mostra tutte le impostazioni correlate alle impostazioni nazionali e continua\n\nLe opzioni -X non sono opzioni standard e sono soggette a modifiche senza preavviso.\n
|
java.launcher.X.usage=\ -Xmixed esecuzione in modalit\u00E0 mista (impostazione predefinita)\n -Xint esecuzione solo in modalit\u00E0 convertita\n -Xbootclasspath/a:<directory e file zip/jar separati da {0}>\n aggiunge alla fine del classpath di bootstrap\n -Xdiag mostra messaggi di diagnostica aggiuntivi\n -Xdiag:resolver mostra i messaggi di diagnostica del resolver\n -Xnoclassgc disabilita la garbage collection della classe\n -Xincgc abilita la garbage collection incrementale\n -Xloggc:<file> registra lo stato GC in un file con indicatori orari\n -Xbatch disabilita la compilazione in background\n -Xms<size> imposta la dimensione heap Java iniziale\n -Xmx<size> imposta la dimensione heap Java massima\n -Xss<size> imposta la dimensione dello stack di thread Java\n -Xprof visualizza i dati di profilo della CPU\n -Xfuture abilita i controlli pi\u00F9 limitativi anticipando le impostazioni predefinite future\n -Xrs riduce l''uso di segnali del sistema operativo da Java/VM (vedere la documentazione)\n -Xcheck:jni esegue controlli aggiuntivi per le funzioni JNI\n -Xshare:off non tenta di utilizzare i dati della classe condivisi\n -Xshare:auto utilizza i dati di classe condivisi se possibile (impostazione predefinita)\n -Xshare:on richiede l''uso dei dati di classe condivisi, altrimenti l''esecuzione non riesce.\n -XshowSettings mostra tutte le impostazioni e continua\n -XshowSettings:all\n mostra tutte le impostazioni e continua\n -XshowSettings:vm mostra tutte le impostazioni correlate alla VM e continua\n -XshowSettings:properties\n mostra tutte le impostazioni delle propriet\u00E0 e continua\n -XshowSettings:locale\n mostra tutte le impostazioni correlate alle impostazioni nazionali e continua\n -XaddReads:<module>=<other-module>(,<other-module>)*\n <module> legge altri moduli,\n indipendentemente dalla dichiarazione del modulo\n -XaddExports:<module>/<package>=<other-module>(,<other-module>)*\n <module> esporta il <package> in altri moduli,\n indipendentemente dalla dichiarazione del modulo\n -Xpatch:<module>=<file>({0}<file>)*\n sostituisce o migliora un modulo con classi e risorse\n in file JAR o directory\n -Xdisable-@files disabilita l''ulteriore espansione del file di argomenti\n\nLe opzioni -X non sono opzioni standard e sono soggette a modifiche senza preavviso.\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.macosx.usage=\nLe opzioni riportate di seguito sono specifiche del sistema operativo Mac OS X:\n -XstartOnFirstThread\n Esegue il metodo main() sul primo thread (AppKit).\n -Xdock:name=<nome applicazione>"\n Sostituisce il nome applicazione predefinito visualizzato nel dock\n -Xdock:icon=<percorso file icona>\n Sostituisce l'icona predefinita visualizzata nel dock\n\n
|
java.launcher.X.macosx.usage=\nLe opzioni riportate di seguito sono specifiche del sistema operativo Mac OS X:\n -XstartOnFirstThread\n Esegue il metodo main() sul primo thread (AppKit).\n -Xdock:name=<nome applicazione>"\n Sostituisce il nome applicazione predefinito visualizzato nel dock\n -Xdock:icon=<percorso file icona>\n Sostituisce l'icona predefinita visualizzata nel dock\n\n
|
||||||
@ -52,3 +53,5 @@ java.launcher.jar.error2=manifest non trovato in {0}
|
|||||||
java.launcher.jar.error3=nessun attributo manifest principale in {0}
|
java.launcher.jar.error3=nessun attributo manifest principale in {0}
|
||||||
java.launcher.init.error=errore di inizializzazione
|
java.launcher.init.error=errore di inizializzazione
|
||||||
java.launcher.javafx.error1=Errore: il metodo JavaFX launchApplication dispone di una firma errata, \nla firma deve essere dichiarata static e restituire un valore di tipo void
|
java.launcher.javafx.error1=Errore: il metodo JavaFX launchApplication dispone di una firma errata, \nla firma deve essere dichiarata static e restituire un valore di tipo void
|
||||||
|
java.launcher.module.error1=il modulo {0} non dispone di un attributo MainClass. Utilizzare -m <module>/<mail-class>
|
||||||
|
java.launcher.module.error2=Errore: impossibile trovare o caricare la classe principale {0} nel modulo {1}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
#
|
#
|
||||||
# This code is free software; you can redistribute it and/or modify it
|
# This code is free software; you can redistribute it and/or modify it
|
||||||
@ -24,7 +24,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.header = \u4F7F\u7528\u65B9\u6CD5: {0} [-options] class [args...]\n (\u30AF\u30E9\u30B9\u3092\u5B9F\u884C\u3059\u308B\u5834\u5408)\n \u307E\u305F\u306F {0} [-options] -jar jarfile [args...]\n (jar\u30D5\u30A1\u30A4\u30EB\u3092\u5B9F\u884C\u3059\u308B\u5834\u5408)\noptions\u306B\u306F\u6B21\u306E\u3082\u306E\u304C\u3042\u308A\u307E\u3059\u3002\n
|
java.launcher.opt.header = \u4F7F\u7528\u65B9\u6CD5: {0} [options] class [args...]\n (\u30AF\u30E9\u30B9\u3092\u5B9F\u884C\u3059\u308B\u5834\u5408)\n \u307E\u305F\u306F {0} [options] -jar jarfile [args...]\n (jar\u30D5\u30A1\u30A4\u30EB\u3092\u5B9F\u884C\u3059\u308B\u5834\u5408)\n \u307E\u305F\u306F {0} [-options] -mp <modulepath> -m <modulename> | <modulename>/<mainclass>\n (\u30E2\u30B8\u30E5\u30FC\u30EB\u306E\u30E1\u30A4\u30F3\u30FB\u30AF\u30E9\u30B9\u3092\u5B9F\u884C\u3059\u308B\u5834\u5408)\noptions\u306B\u306F\u6B21\u306E\u3082\u306E\u304C\u3042\u308A\u307E\u3059\u3002\n
|
||||||
|
|
||||||
java.launcher.opt.datamodel =\ -d{0}\t \u4F7F\u7528\u53EF\u80FD\u306A\u5834\u5408\u306F{0}\u30D3\u30C3\u30C8\u306E\u30C7\u30FC\u30BF\u30FB\u30E2\u30C7\u30EB\u3092\u4F7F\u7528\u3059\u308B\n
|
java.launcher.opt.datamodel =\ -d{0}\t \u4F7F\u7528\u53EF\u80FD\u306A\u5834\u5408\u306F{0}\u30D3\u30C3\u30C8\u306E\u30C7\u30FC\u30BF\u30FB\u30E2\u30C7\u30EB\u3092\u4F7F\u7528\u3059\u308B\n
|
||||||
java.launcher.opt.vmselect =\ {0}\t "{1}" VM\u3092\u9078\u629E\u3059\u308B\u5834\u5408\n
|
java.launcher.opt.vmselect =\ {0}\t "{1}" VM\u3092\u9078\u629E\u3059\u308B\u5834\u5408\n
|
||||||
@ -34,11 +34,13 @@ java.launcher.ergo.message1 =\ \u30C7\u30D5\u30A9\u30EB\u30C8V
|
|||||||
java.launcher.ergo.message2 =\ \u3053\u308C\u306F\u30B5\u30FC\u30D0\u30FC\u30AF\u30E9\u30B9\u306E\u30DE\u30B7\u30F3\u3067\u5B9F\u884C\u3057\u3066\u3044\u308B\u305F\u3081\u3067\u3059\u3002\n
|
java.launcher.ergo.message2 =\ \u3053\u308C\u306F\u30B5\u30FC\u30D0\u30FC\u30AF\u30E9\u30B9\u306E\u30DE\u30B7\u30F3\u3067\u5B9F\u884C\u3057\u3066\u3044\u308B\u305F\u3081\u3067\u3059\u3002\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.footer =\ -cp <\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u304A\u3088\u3073zip/jar\u30D5\u30A1\u30A4\u30EB\u306E\u30AF\u30E9\u30B9\u691C\u7D22\u30D1\u30B9>\n -classpath <\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u304A\u3088\u3073zip/jar\u30D5\u30A1\u30A4\u30EB\u306E\u30AF\u30E9\u30B9\u691C\u7D22\u30D1\u30B9>\n \u30AF\u30E9\u30B9\u30FB\u30D5\u30A1\u30A4\u30EB\u3092\u691C\u7D22\u3059\u308B\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3001\n JAR\u30A2\u30FC\u30AB\u30A4\u30D6\u304A\u3088\u3073ZIP\u30A2\u30FC\u30AB\u30A4\u30D6\u306E{0}\u3067\u533A\u5207\u3089\u308C\u305F\u30EA\u30B9\u30C8\u3067\u3059\u3002\n -D<name>=<value>\n \u30B7\u30B9\u30C6\u30E0\u30FB\u30D7\u30ED\u30D1\u30C6\u30A3\u3092\u8A2D\u5B9A\u3059\u308B\n -verbose:[class|gc|jni]\n \u8A73\u7D30\u306A\u51FA\u529B\u3092\u884C\u3046\n -version \u88FD\u54C1\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u51FA\u529B\u3057\u3066\u7D42\u4E86\u3059\u308B\n -version:<value>\n \u6307\u5B9A\u3057\u305F\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u5B9F\u884C\u306B\u5FC5\u9808\u306B\u3059\u308B\n -showversion \u88FD\u54C1\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u51FA\u529B\u3057\u3066\u7D9A\u884C\u3059\u308B\n -jre-restrict-search | -no-jre-restrict-search\n \u30E6\u30FC\u30B6\u30FC\u306E\u30D7\u30E9\u30A4\u30D9\u30FC\u30C8JRE\u3092\u30D0\u30FC\u30B8\u30E7\u30F3\u691C\u7D22\u306B\u542B\u3081\u308B/\u9664\u5916\u3059\u308B\n -? -help \u3053\u306E\u30D8\u30EB\u30D7\u30FB\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u51FA\u529B\u3059\u308B\n -X \u975E\u6A19\u6E96\u30AA\u30D7\u30B7\u30E7\u30F3\u306B\u95A2\u3059\u308B\u30D8\u30EB\u30D7\u3092\u51FA\u529B\u3059\u308B\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n \u6307\u5B9A\u3057\u305F\u7C92\u5EA6\u3067\u30A2\u30B5\u30FC\u30B7\u30E7\u30F3\u3092\u6709\u52B9\u306B\u3059\u308B\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n \u6307\u5B9A\u3057\u305F\u7C92\u5EA6\u3067\u30A2\u30B5\u30FC\u30B7\u30E7\u30F3\u3092\u7121\u52B9\u306B\u3059\u308B\n -esa | -enablesystemassertions\n \u30B7\u30B9\u30C6\u30E0\u30FB\u30A2\u30B5\u30FC\u30B7\u30E7\u30F3\u3092\u6709\u52B9\u306B\u3059\u308B\n -dsa | -disablesystemassertions\n \u30B7\u30B9\u30C6\u30E0\u30FB\u30A2\u30B5\u30FC\u30B7\u30E7\u30F3\u3092\u7121\u52B9\u306B\u3059\u308B\n -agentlib:<libname>[=<options>]\n \u30CD\u30A4\u30C6\u30A3\u30D6\u30FB\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u30FB\u30E9\u30A4\u30D6\u30E9\u30EA<libname>\u3092\u30ED\u30FC\u30C9\u3059\u308B\u3002\u4F8B: -agentlib:hprof\n -agentlib:jdwp=help\u3068-agentlib:hprof=help\u3082\u53C2\u7167\n -agentpath:<pathname>[=<options>]\n \u30D5\u30EB\u30D1\u30B9\u540D\u3067\u30CD\u30A4\u30C6\u30A3\u30D6\u30FB\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u30FB\u30E9\u30A4\u30D6\u30E9\u30EA\u3092\u30ED\u30FC\u30C9\u3059\u308B\n -javaagent:<jarpath>[=<options>]\n Java\u30D7\u30ED\u30B0\u30E9\u30DF\u30F3\u30B0\u8A00\u8A9E\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u30ED\u30FC\u30C9\u3059\u308B\u3002java.lang.instrument\u3092\u53C2\u7167\n -splash:<imagepath>\n \u6307\u5B9A\u3057\u305F\u30A4\u30E1\u30FC\u30B8\u3067\u30B9\u30D7\u30E9\u30C3\u30B7\u30E5\u753B\u9762\u3092\u8868\u793A\u3059\u308B\n\u8A73\u7D30\u306Fhttp://www.oracle.com/technetwork/java/javase/documentation/index.html\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002
|
java.launcher.opt.footer =\ -cp <class search path of directories and zip/jar files>\n -classpath <class search path of directories and zip/jar files>\n \u30AF\u30E9\u30B9\u30FB\u30D5\u30A1\u30A4\u30EB\u3092\u691C\u7D22\u3059\u308B\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3001\n JAR\u30A2\u30FC\u30AB\u30A4\u30D6\u304A\u3088\u3073ZIP\u30A2\u30FC\u30AB\u30A4\u30D6\u306E{0}\u3067\u533A\u5207\u3089\u308C\u305F\u30EA\u30B9\u30C8\u3002\n -mp <module path>\n -modulepath <module path>...\n \u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306E{0}\u3067\u533A\u5207\u3089\u308C\u305F\u30EA\u30B9\u30C8\u3002\u5404\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306F\n \u30E2\u30B8\u30E5\u30FC\u30EB\u306E\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3067\u3059\u3002\n -upgrademodulepath <module path>...\n \u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306E{0}\u3067\u533A\u5207\u3089\u308C\u305F\u30EA\u30B9\u30C8\u3002\u5404\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306F\n \u30E9\u30F3\u30BF\u30A4\u30E0\u30FB\u30A4\u30E1\u30FC\u30B8\u3067\u30A2\u30C3\u30D7\u30B0\u30EC\u30FC\u30C9\u53EF\u80FD\u306A\u30E2\u30B8\u30E5\u30FC\u30EB\u3092\u7F6E\u63DB\u3059\u308B\n \u30E2\u30B8\u30E5\u30FC\u30EB\u306E\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3067\u3059\n -m <modulename> | <modulename>/<mainclass>\n \u89E3\u6C7A\u3059\u308B\u521D\u671F\u307E\u305F\u306F\u30E1\u30A4\u30F3\u30FB\u30E2\u30B8\u30E5\u30FC\u30EB\n -addmods <modulename>[,<modulename>...]\n \u521D\u671F\u30E2\u30B8\u30E5\u30FC\u30EB\u306B\u52A0\u3048\u3066\u89E3\u6C7A\u3059\u308B\u30EB\u30FC\u30C8\u30FB\u30E2\u30B8\u30E5\u30FC\u30EB\n -limitmods <modulename>[,<modulename>...]\n \u76E3\u8996\u53EF\u80FD\u306A\u30E2\u30B8\u30E5\u30FC\u30EB\u306E\u30E6\u30CB\u30D0\u30FC\u30B9\u3092\u5236\u9650\u3059\u308B\n -listmods[:<modulename>[,<modulename>...]]\n \u76E3\u8996\u53EF\u80FD\u306A\u30E2\u30B8\u30E5\u30FC\u30EB\u3092\u30EA\u30B9\u30C8\u3057\u3066\u7D42\u4E86\u3059\u308B\n -D<name>=<value>\n \u30B7\u30B9\u30C6\u30E0\u30FB\u30D7\u30ED\u30D1\u30C6\u30A3\u3092\u8A2D\u5B9A\u3059\u308B\n -verbose:[class|gc|jni]\n \u8A73\u7D30\u306A\u51FA\u529B\u3092\u884C\u3046\n -version \u88FD\u54C1\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u51FA\u529B\u3057\u3066\u7D42\u4E86\u3059\u308B\n -showversion \u88FD\u54C1\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u51FA\u529B\u3057\u3066\u7D9A\u884C\u3059\u308B\n -? -help \u3053\u306E\u30D8\u30EB\u30D7\u30FB\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u51FA\u529B\u3059\u308B\n -X \u975E\u6A19\u6E96\u30AA\u30D7\u30B7\u30E7\u30F3\u306B\u95A2\u3059\u308B\u30D8\u30EB\u30D7\u3092\u51FA\u529B\u3059\u308B\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n \u6307\u5B9A\u3057\u305F\u7C92\u5EA6\u3067\u30A2\u30B5\u30FC\u30B7\u30E7\u30F3\u3092\u6709\u52B9\u306B\u3059\u308B\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n \u6307\u5B9A\u3057\u305F\u7C92\u5EA6\u3067\u30A2\u30B5\u30FC\u30B7\u30E7\u30F3\u3092\u7121\u52B9\u306B\u3059\u308B\n -esa | -enablesystemassertions\n \u30B7\u30B9\u30C6\u30E0\u30FB\u30A2\u30B5\u30FC\u30B7\u30E7\u30F3\u3092\u6709\u52B9\u306B\u3059\u308B\n -dsa | -disablesystemassertions\n \u30B7\u30B9\u30C6\u30E0\u30FB\u30A2\u30B5\u30FC\u30B7\u30E7\u30F3\u3092\u7121\u52B9\u306B\u3059\u308B\n -agentlib:<libname>[=<options>]\n \u30CD\u30A4\u30C6\u30A3\u30D6\u30FB\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u30FB\u30E9\u30A4\u30D6\u30E9\u30EA<libname>\u3092\u30ED\u30FC\u30C9\u3059\u308B\u3002\u4F8B: -agentlib:jdwp\n -agentlib:jdwp=help\u3082\u53C2\u7167\n -agentpath:<pathname>[=<options>]\n \
|
||||||
|
\u30D5\u30EB\u30D1\u30B9\u540D\u3067\u30CD\u30A4\u30C6\u30A3\u30D6\u30FB\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u30FB\u30E9\u30A4\u30D6\u30E9\u30EA\u3092\u30ED\u30FC\u30C9\u3059\u308B\n -javaagent:<jarpath>[=<options>]\n Java\u30D7\u30ED\u30B0\u30E9\u30DF\u30F3\u30B0\u8A00\u8A9E\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u30ED\u30FC\u30C9\u3059\u308B\u3002java.lang.instrument\u3092\u53C2\u7167\n -splash:<imagepath>\n \u6307\u5B9A\u3057\u305F\u30A4\u30E1\u30FC\u30B8\u3067\u30B9\u30D7\u30E9\u30C3\u30B7\u30E5\u753B\u9762\u3092\u8868\u793A\u3059\u308B\n @<filepath> \u6307\u5B9A\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u304B\u3089\u30AA\u30D7\u30B7\u30E7\u30F3\u3092\u8AAD\u307F\u53D6\u308B\n
|
||||||
|
See \u8A73\u7D30\u306F\u3001http://www.oracle.com/technetwork/java/javase/documentation/index.html\u3092\u53C2\u7167\u3057\u3066\u304F\u3060\u3055\u3044\u3002
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.usage=\ -Xmixed \u6DF7\u5408\u30E2\u30FC\u30C9\u306E\u5B9F\u884C(\u30C7\u30D5\u30A9\u30EB\u30C8)\n -Xint \u30A4\u30F3\u30BF\u30D7\u30EA\u30BF\u30FB\u30E2\u30FC\u30C9\u306E\u5B9F\u884C\u306E\u307F\n -Xbootclasspath:<{0}\u3067\u533A\u5207\u3089\u308C\u305F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u304A\u3088\u3073zip/jar\u30D5\u30A1\u30A4\u30EB>\n \u30D6\u30FC\u30C8\u30B9\u30C8\u30E9\u30C3\u30D7\u306E\u30AF\u30E9\u30B9\u3068\u30EA\u30BD\u30FC\u30B9\u306E\u691C\u7D22\u30D1\u30B9\u3092\u8A2D\u5B9A\u3059\u308B\n -Xbootclasspath/a:<{0}\u3067\u533A\u5207\u3089\u308C\u305F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u304A\u3088\u3073zip/jar\u30D5\u30A1\u30A4\u30EB>\n \u30D6\u30FC\u30C8\u30B9\u30C8\u30E9\u30C3\u30D7\u30FB\u30AF\u30E9\u30B9\u30FB\u30D1\u30B9\u306E\u6700\u5F8C\u306B\u8FFD\u52A0\u3059\u308B\n -Xbootclasspath/p:<{0}\u3067\u533A\u5207\u3089\u308C\u305F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u304A\u3088\u3073zip/jar\u30D5\u30A1\u30A4\u30EB>\n \u30D6\u30FC\u30C8\u30B9\u30C8\u30E9\u30C3\u30D7\u30FB\u30AF\u30E9\u30B9\u30FB\u30D1\u30B9\u306E\u524D\u306B\u4ED8\u52A0\u3059\u308B\n -Xdiag \u8FFD\u52A0\u306E\u8A3A\u65AD\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u8868\u793A\u3059\u308B\n -Xnoclassgc \u30AF\u30E9\u30B9\u306E\u30AC\u30D9\u30FC\u30B8\u30FB\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u3092\u7121\u52B9\u306B\u3059\u308B\n -Xincgc \u5897\u5206\u30AC\u30D9\u30FC\u30B8\u30FB\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u3092\u6709\u52B9\u306B\u3059\u308B\n -Xloggc:<file> \u30BF\u30A4\u30E0\u30B9\u30BF\u30F3\u30D7\u304C\u4ED8\u3044\u305F\u30D5\u30A1\u30A4\u30EB\u306BGC\u30B9\u30C6\u30FC\u30BF\u30B9\u306E\u30ED\u30B0\u3092\u8A18\u9332\u3059\u308B\n -Xbatch \u30D0\u30C3\u30AF\u30B0\u30E9\u30A6\u30F3\u30C9\u306E\u30B3\u30F3\u30D1\u30A4\u30EB\u3092\u7121\u52B9\u306B\u3059\u308B\n -Xms<size> Java\u306E\u521D\u671F\u30D2\u30FC\u30D7\u30FB\u30B5\u30A4\u30BA\u3092\u8A2D\u5B9A\u3059\u308B\n -Xmx<size> Java\u306E\u6700\u5927\u30D2\u30FC\u30D7\u30FB\u30B5\u30A4\u30BA\u3092\u8A2D\u5B9A\u3059\u308B\n -Xss<size> Java\u306E\u30B9\u30EC\u30C3\u30C9\u30FB\u30B9\u30BF\u30C3\u30AF\u30FB\u30B5\u30A4\u30BA\u3092\u8A2D\u5B9A\u3059\u308B\n -Xprof CPU\u30D7\u30ED\u30D5\u30A1\u30A4\u30EB\u30FB\u30C7\u30FC\u30BF\u3092\u51FA\u529B\u3059\u308B\n -Xfuture \u5C06\u6765\u306E\u30C7\u30D5\u30A9\u30EB\u30C8\u3092\u898B\u8D8A\u3057\u3066\u3001\u6700\u3082\u53B3\u5BC6\u306A\u30C1\u30A7\u30C3\u30AF\u3092\u6709\u52B9\u306B\u3059\u308B\n -Xrs Java/VM\u306B\u3088\u308BOS\u30B7\u30B0\u30CA\u30EB\u306E\u4F7F\u7528\u3092\u524A\u6E1B\u3059\u308B(\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u3092\u53C2\u7167)\n -Xcheck:jni JNI\u95A2\u6570\u306B\u5BFE\u3059\u308B\u8FFD\u52A0\u306E\u30C1\u30A7\u30C3\u30AF\u3092\u5B9F\u884C\u3059\u308B\n -Xshare:off \u5171\u6709\u30AF\u30E9\u30B9\u306E\u30C7\u30FC\u30BF\u3092\u4F7F\u7528\u3057\u3088\u3046\u3068\u3057\u306A\u3044\n -Xshare:auto \u53EF\u80FD\u3067\u3042\u308C\u3070\u5171\u6709\u30AF\u30E9\u30B9\u306E\u30C7\u30FC\u30BF\u3092\u4F7F\u7528\u3059\u308B(\u30C7\u30D5\u30A9\u30EB\u30C8)\n -Xshare:on \u5171\u6709\u30AF\u30E9\u30B9\u30FB\u30C7\u30FC\u30BF\u306E\u4F7F\u7528\u3092\u5FC5\u9808\u306B\u3057\u3001\u3067\u304D\u306A\u3051\u308C\u3070\u5931\u6557\u3059\u308B\u3002\n -XshowSettings \u3059\u3079\u3066\u306E\u8A2D\u5B9A\u3092\u8868\u793A\u3057\u3066\u7D9A\u884C\u3059\u308B\n -XshowSettings:all\n \u3059\u3079\u3066\u306E\u8A2D\u5B9A\u3092\u8868\u793A\u3057\u3066\u7D9A\u884C\u3059\u308B\n -XshowSettings:vm \u3059\u3079\u3066\u306EVM\u95A2\u9023\u306E\u8A2D\u5B9A\u3092\u8868\u793A\u3057\u3066\u7D9A\u884C\u3059\u308B\n -XshowSettings:properties\n \
|
java.launcher.X.usage=\ -Xmixed \u6DF7\u5408\u30E2\u30FC\u30C9\u306E\u5B9F\u884C(\u30C7\u30D5\u30A9\u30EB\u30C8)\n -Xint \u30A4\u30F3\u30BF\u30D7\u30EA\u30BF\u30FB\u30E2\u30FC\u30C9\u306E\u5B9F\u884C\u306E\u307F\n -Xbootclasspath/a:<{0}\u3067\u533A\u5207\u3089\u308C\u305F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u304A\u3088\u3073zip/jar\u30D5\u30A1\u30A4\u30EB>\n \u30D6\u30FC\u30C8\u30B9\u30C8\u30E9\u30C3\u30D7\u30FB\u30AF\u30E9\u30B9\u30FB\u30D1\u30B9\u306E\u6700\u5F8C\u306B\u8FFD\u52A0\u3059\u308B\n -Xdiag \u8FFD\u52A0\u306E\u8A3A\u65AD\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u8868\u793A\u3059\u308B\n -Xdiag:resolver \u30EA\u30BE\u30EB\u30D0\u8A3A\u65AD\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u8868\u793A\u3059\u308B\n -Xnoclassgc \u30AF\u30E9\u30B9\u306E\u30AC\u30D9\u30FC\u30B8\u30FB\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u3092\u7121\u52B9\u306B\u3059\u308B\n -Xincgc \u5897\u5206\u30AC\u30D9\u30FC\u30B8\u30FB\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u3092\u6709\u52B9\u306B\u3059\u308B\n -Xloggc:<file> \u30BF\u30A4\u30E0\u30B9\u30BF\u30F3\u30D7\u304C\u4ED8\u3044\u305F\u30D5\u30A1\u30A4\u30EB\u306BGC\u30B9\u30C6\u30FC\u30BF\u30B9\u306E\u30ED\u30B0\u3092\u8A18\u9332\u3059\u308B\n -Xbatch \u30D0\u30C3\u30AF\u30B0\u30E9\u30A6\u30F3\u30C9\u306E\u30B3\u30F3\u30D1\u30A4\u30EB\u3092\u7121\u52B9\u306B\u3059\u308B\n -Xms<size> Java\u306E\u521D\u671F\u30D2\u30FC\u30D7\u30FB\u30B5\u30A4\u30BA\u3092\u8A2D\u5B9A\u3059\u308B\n -Xmx<size> Java\u306E\u6700\u5927\u30D2\u30FC\u30D7\u30FB\u30B5\u30A4\u30BA\u3092\u8A2D\u5B9A\u3059\u308B\n -Xss<size> Java\u306E\u30B9\u30EC\u30C3\u30C9\u30FB\u30B9\u30BF\u30C3\u30AF\u30FB\u30B5\u30A4\u30BA\u3092\u8A2D\u5B9A\u3059\u308B\n -Xprof CPU\u30D7\u30ED\u30D5\u30A1\u30A4\u30EB\u30FB\u30C7\u30FC\u30BF\u3092\u51FA\u529B\u3059\u308B\n -Xfuture \u5C06\u6765\u306E\u30C7\u30D5\u30A9\u30EB\u30C8\u3092\u898B\u8D8A\u3057\u3066\u3001\u6700\u3082\u53B3\u5BC6\u306A\u30C1\u30A7\u30C3\u30AF\u3092\u6709\u52B9\u306B\u3059\u308B\n -Xrs Java/VM\u306B\u3088\u308BOS\u30B7\u30B0\u30CA\u30EB\u306E\u4F7F\u7528\u3092\u524A\u6E1B\u3059\u308B(\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8\u3092\u53C2\u7167)\n -Xcheck:jni JNI\u95A2\u6570\u306B\u5BFE\u3059\u308B\u8FFD\u52A0\u306E\u30C1\u30A7\u30C3\u30AF\u3092\u5B9F\u884C\u3059\u308B\n -Xshare:off \u5171\u6709\u30AF\u30E9\u30B9\u306E\u30C7\u30FC\u30BF\u3092\u4F7F\u7528\u3057\u3088\u3046\u3068\u3057\u306A\u3044\n -Xshare:auto \u53EF\u80FD\u3067\u3042\u308C\u3070\u5171\u6709\u30AF\u30E9\u30B9\u306E\u30C7\u30FC\u30BF\u3092\u4F7F\u7528\u3059\u308B(\u30C7\u30D5\u30A9\u30EB\u30C8)\n -Xshare:on \u5171\u6709\u30AF\u30E9\u30B9\u30FB\u30C7\u30FC\u30BF\u306E\u4F7F\u7528\u3092\u5FC5\u9808\u306B\u3057\u3001\u3067\u304D\u306A\u3051\u308C\u3070\u5931\u6557\u3059\u308B\u3002\n -XshowSettings \u3059\u3079\u3066\u306E\u8A2D\u5B9A\u3092\u8868\u793A\u3057\u3066\u7D9A\u884C\u3059\u308B\n -XshowSettings:all\n \u3059\u3079\u3066\u306E\u8A2D\u5B9A\u3092\u8868\u793A\u3057\u3066\u7D9A\u884C\u3059\u308B\n -XshowSettings:vm \u3059\u3079\u3066\u306EVM\u95A2\u9023\u306E\u8A2D\u5B9A\u3092\u8868\u793A\u3057\u3066\u7D9A\u884C\u3059\u308B\n -XshowSettings:properties\n \u3059\u3079\u3066\u306E\u30D7\u30ED\u30D1\u30C6\u30A3\u8A2D\u5B9A\u3092\u8868\u793A\u3057\u3066\u7D9A\u884C\u3059\u308B\n -XshowSettings:locale\n \u3059\u3079\u3066\u306E\u30ED\u30B1\u30FC\u30EB\u95A2\u9023\u306E\u8A2D\u5B9A\u3092\u8868\u793A\u3057\u3066\u7D9A\u884C\u3059\u308B\n -XaddReads:<module>=<other-module>(,<other-module>)*\n \u30E2\u30B8\u30E5\u30FC\u30EB\u5BA3\u8A00\u306B\u95A2\u4FC2\u306A\u304F\u3001\n <module>\u306F\u4ED6\u306E\u30E2\u30B8\u30E5\u30FC\u30EB\u3092\u8AAD\u307F\u53D6\u308B\n \
|
||||||
\u3059\u3079\u3066\u306E\u30D7\u30ED\u30D1\u30C6\u30A3\u8A2D\u5B9A\u3092\u8868\u793A\u3057\u3066\u7D9A\u884C\u3059\u308B\n -XshowSettings:locale\n \u3059\u3079\u3066\u306E\u30ED\u30B1\u30FC\u30EB\u95A2\u9023\u306E\u8A2D\u5B9A\u3092\u8868\u793A\u3057\u3066\u7D9A\u884C\u3059\u308B\n\n-X\u30AA\u30D7\u30B7\u30E7\u30F3\u306F\u975E\u6A19\u6E96\u306A\u306E\u3067\u3001\u4E88\u544A\u306A\u304F\u5909\u66F4\u3055\u308C\u308B\u5834\u5408\u304C\u3042\u308A\u307E\u3059\u3002\n
|
-XaddExports:<module>/<package>=<other-module>(,<other-module>)*\n \u30E2\u30B8\u30E5\u30FC\u30EB\u5BA3\u8A00\u306B\u95A2\u4FC2\u306A\u304F\u3001\n <module>\u306F<package>\u3092\u4ED6\u306E\u30E2\u30B8\u30E5\u30FC\u30EB\u306B\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8\u3059\u308B\n -Xpatch:<module>=<file>({0}<file>)*\n JAR\u30D5\u30A1\u30A4\u30EB\u307E\u305F\u306F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306E\u30AF\u30E9\u30B9\u304A\u3088\u3073\u30EA\u30BD\u30FC\u30B9\u3067\u30E2\u30B8\u30E5\u30FC\u30EB\u3092\n \u30AA\u30FC\u30D0\u30FC\u30E9\u30A4\u30C9\u307E\u305F\u306F\u62E1\u5F35\u3059\u308B\n -Xdisable-@files \u3055\u3089\u306A\u308B\u30D5\u30A1\u30A4\u30EB\u62E1\u5F35\u3092\u7121\u52B9\u306B\u3059\u308B\n\n-X\u30AA\u30D7\u30B7\u30E7\u30F3\u306F\u975E\u6A19\u6E96\u306A\u306E\u3067\u3001\u4E88\u544A\u306A\u304F\u5909\u66F4\u3055\u308C\u308B\u5834\u5408\u304C\u3042\u308A\u307E\u3059\u3002\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.macosx.usage=\n\u6B21\u306E\u30AA\u30D7\u30B7\u30E7\u30F3\u306FMac OS X\u56FA\u6709\u3067\u3059\u3002\n -XstartOnFirstThread\n main()\u30E1\u30BD\u30C3\u30C9\u3092\u6700\u521D(AppKit)\u306E\u30B9\u30EC\u30C3\u30C9\u3067\u5B9F\u884C\u3059\u308B\n -Xdock:name=<application name>"\n Dock\u306B\u8868\u793A\u3055\u308C\u308B\u30C7\u30D5\u30A9\u30EB\u30C8\u30FB\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u540D\u3092\u30AA\u30FC\u30D0\u30FC\u30E9\u30A4\u30C9\u3059\u308B\n -Xdock:icon=<path to icon file>\n Dock\u306B\u8868\u793A\u3055\u308C\u308B\u30C7\u30D5\u30A9\u30EB\u30C8\u30FB\u30A2\u30A4\u30B3\u30F3\u3092\u30AA\u30FC\u30D0\u30FC\u30E9\u30A4\u30C9\u3059\u308B\n\n
|
java.launcher.X.macosx.usage=\n\u6B21\u306E\u30AA\u30D7\u30B7\u30E7\u30F3\u306FMac OS X\u56FA\u6709\u3067\u3059\u3002\n -XstartOnFirstThread\n main()\u30E1\u30BD\u30C3\u30C9\u3092\u6700\u521D(AppKit)\u306E\u30B9\u30EC\u30C3\u30C9\u3067\u5B9F\u884C\u3059\u308B\n -Xdock:name=<application name>"\n Dock\u306B\u8868\u793A\u3055\u308C\u308B\u30C7\u30D5\u30A9\u30EB\u30C8\u30FB\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3\u540D\u3092\u30AA\u30FC\u30D0\u30FC\u30E9\u30A4\u30C9\u3059\u308B\n -Xdock:icon=<path to icon file>\n Dock\u306B\u8868\u793A\u3055\u308C\u308B\u30C7\u30D5\u30A9\u30EB\u30C8\u30FB\u30A2\u30A4\u30B3\u30F3\u3092\u30AA\u30FC\u30D0\u30FC\u30E9\u30A4\u30C9\u3059\u308B\n\n
|
||||||
@ -53,3 +55,5 @@ java.launcher.jar.error2={0}\u306B\u30DE\u30CB\u30D5\u30A7\u30B9\u30C8\u304C\u89
|
|||||||
java.launcher.jar.error3={0}\u306B\u30E1\u30A4\u30F3\u30FB\u30DE\u30CB\u30D5\u30A7\u30B9\u30C8\u5C5E\u6027\u304C\u3042\u308A\u307E\u305B\u3093
|
java.launcher.jar.error3={0}\u306B\u30E1\u30A4\u30F3\u30FB\u30DE\u30CB\u30D5\u30A7\u30B9\u30C8\u5C5E\u6027\u304C\u3042\u308A\u307E\u305B\u3093
|
||||||
java.launcher.init.error=\u521D\u671F\u5316\u30A8\u30E9\u30FC
|
java.launcher.init.error=\u521D\u671F\u5316\u30A8\u30E9\u30FC
|
||||||
java.launcher.javafx.error1=\u30A8\u30E9\u30FC: JavaFX launchApplication\u30E1\u30BD\u30C3\u30C9\u306B\u8AA4\u3063\u305F\u30B7\u30B0\u30CD\u30C1\u30E3\u304C\u3042\u308A\u3001\nstatic\u3092\u5BA3\u8A00\u3057\u3066void\u578B\u306E\u5024\u3092\u8FD4\u3059\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059
|
java.launcher.javafx.error1=\u30A8\u30E9\u30FC: JavaFX launchApplication\u30E1\u30BD\u30C3\u30C9\u306B\u8AA4\u3063\u305F\u30B7\u30B0\u30CD\u30C1\u30E3\u304C\u3042\u308A\u3001\nstatic\u3092\u5BA3\u8A00\u3057\u3066void\u578B\u306E\u5024\u3092\u8FD4\u3059\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059
|
||||||
|
java.launcher.module.error1=\u30E2\u30B8\u30E5\u30FC\u30EB{0}\u306BMainClass\u5C5E\u6027\u304C\u3042\u308A\u307E\u305B\u3093\u3002-m <module>/<main-class>\u3092\u4F7F\u7528\u3057\u3066\u304F\u3060\u3055\u3044
|
||||||
|
java.launcher.module.error2=\u30A8\u30E9\u30FC: \u30E2\u30B8\u30E5\u30FC\u30EB{1}\u306B\u30E1\u30A4\u30F3\u30FB\u30AF\u30E9\u30B9{0}\u304C\u898B\u3064\u304B\u3089\u306A\u304B\u3063\u305F\u304B\u30ED\u30FC\u30C9\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
#
|
#
|
||||||
# This code is free software; you can redistribute it and/or modify it
|
# This code is free software; you can redistribute it and/or modify it
|
||||||
@ -24,7 +24,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.header = \uC0AC\uC6A9\uBC95: {0} [-options] class [args...]\n (\uD074\uB798\uC2A4 \uC2E4\uD589)\n \uB610\uB294 {0} [-options] -jar jarfile [args...]\n (jar \uD30C\uC77C \uC2E4\uD589)\n\uC5EC\uAE30\uC11C options\uB294 \uB2E4\uC74C\uACFC \uAC19\uC2B5\uB2C8\uB2E4.\n
|
java.launcher.opt.header = \uC0AC\uC6A9\uBC95: {0} [options] class [args...]\n (\uD074\uB798\uC2A4 \uC2E4\uD589)\n \uB610\uB294 {0} [options] -jar jarfile [args...]\n (jar \uD30C\uC77C \uC2E4\uD589)\n \uB610\uB294 {0} [-options] -mp <modulepath> -m <modulename> | <modulename>/<mainclass>\n (\uBAA8\uB4C8\uC758 \uAE30\uBCF8 \uD074\uB798\uC2A4 \uC2E4\uD589)\n\uC5EC\uAE30\uC11C options\uB294 \uB2E4\uC74C\uACFC \uAC19\uC2B5\uB2C8\uB2E4.\n
|
||||||
|
|
||||||
java.launcher.opt.datamodel =\ -d{0}\t \uC0AC\uC6A9 \uAC00\uB2A5\uD55C \uACBD\uC6B0 {0}\uBE44\uD2B8 \uB370\uC774\uD130 \uBAA8\uB378\uC744 \uC0AC\uC6A9\uD569\uB2C8\uB2E4.\n
|
java.launcher.opt.datamodel =\ -d{0}\t \uC0AC\uC6A9 \uAC00\uB2A5\uD55C \uACBD\uC6B0 {0}\uBE44\uD2B8 \uB370\uC774\uD130 \uBAA8\uB378\uC744 \uC0AC\uC6A9\uD569\uB2C8\uB2E4.\n
|
||||||
java.launcher.opt.vmselect =\ {0}\t "{1}" VM\uC744 \uC120\uD0DD\uD569\uB2C8\uB2E4.\n
|
java.launcher.opt.vmselect =\ {0}\t "{1}" VM\uC744 \uC120\uD0DD\uD569\uB2C8\uB2E4.\n
|
||||||
@ -34,22 +34,26 @@ java.launcher.ergo.message1 =\ \uAE30\uBCF8 VM\uC740 {0}\uC785
|
|||||||
java.launcher.ergo.message2 =\ \uC11C\uBC84\uAE09 \uC2DC\uC2A4\uD15C\uC5D0\uC11C \uC2E4\uD589 \uC911\uC774\uAE30 \uB54C\uBB38\uC785\uB2C8\uB2E4.\n
|
java.launcher.ergo.message2 =\ \uC11C\uBC84\uAE09 \uC2DC\uC2A4\uD15C\uC5D0\uC11C \uC2E4\uD589 \uC911\uC774\uAE30 \uB54C\uBB38\uC785\uB2C8\uB2E4.\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.footer =\ -cp <\uB514\uB809\uD1A0\uB9AC \uBC0F zip/jar \uD30C\uC77C\uC758 \uD074\uB798\uC2A4 \uAC80\uC0C9 \uACBD\uB85C>\n -classpath <\uB514\uB809\uD1A0\uB9AC \uBC0F zip/jar \uD30C\uC77C\uC758 \uD074\uB798\uC2A4 \uAC80\uC0C9 \uACBD\uB85C>\n \uD074\uB798\uC2A4 \uD30C\uC77C\uC744 \uAC80\uC0C9\uD560 {0}(\uC73C)\uB85C \uAD6C\uBD84\uB41C \uB514\uB809\uD1A0\uB9AC,\n JAR \uC544\uCE74\uC774\uBE0C \uBC0F ZIP \uC544\uCE74\uC774\uBE0C \uBAA9\uB85D\uC785\uB2C8\uB2E4.\n -D<name>=<value>\n \uC2DC\uC2A4\uD15C \uC18D\uC131\uC744 \uC124\uC815\uD569\uB2C8\uB2E4.\n -verbose:[class|gc|jni]\n \uC0C1\uC138 \uC815\uBCF4 \uCD9C\uB825\uC744 \uC0AC\uC6A9\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -version \uC81C\uD488 \uBC84\uC804\uC744 \uC778\uC1C4\uD55C \uD6C4 \uC885\uB8CC\uD569\uB2C8\uB2E4.\n -version:<value>\n \uC2E4\uD589\uD560 \uBC84\uC804\uC744 \uC9C0\uC815\uD574\uC57C \uD569\uB2C8\uB2E4.\n -showversion \uC81C\uD488 \uBC84\uC804\uC744 \uC778\uC1C4\uD55C \uD6C4 \uACC4\uC18D\uD569\uB2C8\uB2E4.\n -jre-restrict-search | -no-jre-restrict-search\n \uBC84\uC804 \uAC80\uC0C9\uC5D0\uC11C \uC0AC\uC6A9\uC790 \uC804\uC6A9 JRE\uB97C \uD3EC\uD568/\uC81C\uC678\uD569\uB2C8\uB2E4.\n -? -help \uC774 \uB3C4\uC6C0\uB9D0 \uBA54\uC2DC\uC9C0\uB97C \uC778\uC1C4\uD569\uB2C8\uB2E4.\n -X \uBE44\uD45C\uC900 \uC635\uC158\uC5D0 \uB300\uD55C \uB3C4\uC6C0\uB9D0\uC744 \uC778\uC1C4\uD569\uB2C8\uB2E4.\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n \uC138\uBD84\uC131\uC774 \uC9C0\uC815\uB41C \uAC80\uC99D\uC744 \uC0AC\uC6A9\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n \uC138\uBD84\uC131\uC774 \uC9C0\uC815\uB41C \uAC80\uC99D\uC744 \uC0AC\uC6A9 \uC548\uD568\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -esa | -enablesystemassertions\n \uC2DC\uC2A4\uD15C \uAC80\uC99D\uC744 \uC0AC\uC6A9\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -dsa | -disablesystemassertions\n \uC2DC\uC2A4\uD15C \uAC80\uC99D\uC744 \uC0AC\uC6A9 \uC548\uD568\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -agentlib:<libname>[=<options>]\n <libname> \uACE0\uC720 \uC5D0\uC774\uC804\uD2B8 \uB77C\uC774\uBE0C\uB7EC\uB9AC\uB97C \uB85C\uB4DC\uD569\uB2C8\uB2E4(\uC608: -agentlib:hprof).\n -agentlib:jdwp=help \uBC0F -agentlib:hprof=help\uB3C4 \uCC38\uC870\uD558\uC2ED\uC2DC\uC624.\n -agentpath:<pathname>[=<options>]\n \uC804\uCCB4 \uACBD\uB85C\uBA85\uC744 \uC0AC\uC6A9\uD558\uC5EC \uACE0\uC720 \uC5D0\uC774\uC804\uD2B8 \uB77C\uC774\uBE0C\uB7EC\uB9AC\uB97C \uB85C\uB4DC\uD569\uB2C8\uB2E4.\n -javaagent:<jarpath>[=<options>]\n Java \uD504\uB85C\uADF8\uB798\uBC0D \uC5B8\uC5B4 \uC5D0\uC774\uC804\uD2B8\uB97C \uB85C\uB4DC\uD569\uB2C8\uB2E4. java.lang.instrument\uB97C \uCC38\uC870\uD558\uC2ED\uC2DC\uC624.\n -splash:<imagepath>\n \uC774\uBBF8\uC9C0\uAC00 \uC9C0\uC815\uB41C \uC2A4\uD50C\uB798\uC2DC \uD654\uBA74\uC744 \uD45C\uC2DC\uD569\uB2C8\uB2E4.\n\uC790\uC138\uD55C \uB0B4\uC6A9\uC740 http://www.oracle.com/technetwork/java/javase/documentation/index.html\uC744 \uCC38\uC870\uD558\uC2ED\uC2DC\uC624.
|
java.launcher.opt.footer =\ -cp <\uB514\uB809\uD1A0\uB9AC \uBC0F zip/jar \uD30C\uC77C\uC758 \uD074\uB798\uC2A4 \uAC80\uC0C9 \uACBD\uB85C>\n -classpath <\uB514\uB809\uD1A0\uB9AC \uBC0F zip/jar \uD30C\uC77C\uC758 \uD074\uB798\uC2A4 \uAC80\uC0C9 \uACBD\uB85C>\n \uD074\uB798\uC2A4 \uD30C\uC77C\uC744 \uAC80\uC0C9\uD560 {0}(\uC73C)\uB85C \uAD6C\uBD84\uB41C \uB514\uB809\uD1A0\uB9AC,\n JAR \uC544\uCE74\uC774\uBE0C \uBC0F ZIP \uC544\uCE74\uC774\uBE0C \uBAA9\uB85D\uC785\uB2C8\uB2E4.\n -mp <\uBAA8\uB4C8 \uACBD\uB85C>\n -modulepath <\uBAA8\uB4C8 \uACBD\uB85C>...\n {0}(\uC73C)\uB85C \uAD6C\uBD84\uB41C \uB514\uB809\uD1A0\uB9AC \uBAA9\uB85D\uC785\uB2C8\uB2E4. \uAC01 \uB514\uB809\uD1A0\uB9AC\uB294\n \uBAA8\uB4C8\uC758 \uB514\uB809\uD1A0\uB9AC\uC785\uB2C8\uB2E4.\n -upgrademodulepath <\uBAA8\uB4C8 \uACBD\uB85C>...\n {0}(\uC73C)\uB85C \uAD6C\uBD84\uB41C \uB514\uB809\uD1A0\uB9AC \uBAA9\uB85D\uC785\uB2C8\uB2E4. \uAC01 \uB514\uB809\uD1A0\uB9AC\uB294\n \uBAA8\uB4C8\uC758 \uB514\uB809\uD1A0\uB9AC\uB85C, \uB7F0\uD0C0\uC784 \uC774\uBBF8\uC9C0\uC5D0\uC11C \uC5C5\uADF8\uB808\uC774\uB4DC\n \uAC00\uB2A5\uD55C \uBAA8\uB4C8\uC744 \uB300\uCCB4\uD569\uB2C8\uB2E4.\n -m <modulename> | <modulename>/<mainclass>\n \uBD84\uC11D\uD560 \uCD08\uAE30 \uB610\uB294 \uAE30\uBCF8 \uBAA8\uB4C8\uC785\uB2C8\uB2E4.\n -addmods <modulename>[,<modulename>...]\n \uCD08\uAE30 \uBAA8\uB4C8 \uC678\uC5D0 \uBD84\uC11D\uD560 \uB8E8\uD2B8 \uBAA8\uB4C8\uC785\uB2C8\uB2E4.\n -limitmods <modulename>[,<modulename>...]\n \uAD00\uCC30 \uAC00\uB2A5\uD55C \uBAA8\uB4C8\uC758 \uBC94\uC704\uB97C \uC81C\uD55C\uD569\uB2C8\uB2E4.\n -listmods[:<modulename>[,<modulename>...]]\n \uAD00\uCC30 \uAC00\uB2A5\uD55C \uBAA8\uB4C8\uC744 \uB098\uC5F4\uD55C \uD6C4 \uC885\uB8CC\uD569\uB2C8\uB2E4.\n -D<name>=<value>\n \uC2DC\uC2A4\uD15C \uC18D\uC131\uC744 \uC124\uC815\uD569\uB2C8\uB2E4.\n -verbose:[class|gc|jni]\n \uC0C1\uC138 \uC815\uBCF4 \uCD9C\uB825\uC744 \uC0AC\uC6A9\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -version \uC81C\uD488 \uBC84\uC804\uC744 \uC778\uC1C4\uD55C \uD6C4 \uC885\uB8CC\uD569\uB2C8\uB2E4.\n -showversion \uC81C\uD488 \uBC84\uC804\uC744 \uC778\uC1C4\uD55C \uD6C4 \uACC4\uC18D\uD569\uB2C8\uB2E4.\n -? -help \uC774 \uB3C4\uC6C0\uB9D0 \uBA54\uC2DC\uC9C0\uB97C \uC778\uC1C4\uD569\uB2C8\uB2E4.\n -X \uBE44\uD45C\uC900 \uC635\uC158\uC5D0 \uB300\uD55C \uB3C4\uC6C0\uB9D0\uC744 \uC778\uC1C4\uD569\uB2C8\uB2E4.\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n \uC138\uBD84\uC131\uC774 \uC9C0\uC815\uB41C \uAC80\uC99D\uC744 \uC0AC\uC6A9\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n \uC138\uBD84\uC131\uC774 \uC9C0\uC815\uB41C \uAC80\uC99D\uC744 \uC0AC\uC6A9 \uC548\uD568\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -esa | -enablesystemassertions\n \uC2DC\uC2A4\uD15C \uAC80\uC99D\uC744 \uC0AC\uC6A9\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -dsa | -disablesystemassertions\n \uC2DC\uC2A4\uD15C \uAC80\uC99D\uC744 \uC0AC\uC6A9 \uC548\uD568\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -agentlib:<libname>[=<options>]\n \uACE0\uC720 \uC5D0\uC774\uC804\uD2B8 \uB77C\uC774\uBE0C\uB7EC\uB9AC <libname>\uC744 \uB85C\uB4DC\uD569\uB2C8\uB2E4(\uC608: -agentlib:jdwp).\n -agentlib:jdwp=help\uB3C4 \uCC38\uC870\uD558\uC2ED\uC2DC\uC624.\n -agentpath:<pathname>[=<options>]\n \uC804\uCCB4 \uACBD\uB85C\uBA85\uC744 \uC0AC\uC6A9\uD558\uC5EC \uACE0\uC720 \uC5D0\uC774\uC804\uD2B8 \uB77C\uC774\uBE0C\uB7EC\uB9AC\uB97C \uB85C\uB4DC\uD569\uB2C8\uB2E4.\n \
|
||||||
|
-javaagent:<jarpath>[=<options>]\n Java \uD504\uB85C\uADF8\uB798\uBC0D \uC5B8\uC5B4 \uC5D0\uC774\uC804\uD2B8\uB97C \uB85C\uB4DC\uD569\uB2C8\uB2E4. java.lang.instrument\uB97C \uCC38\uC870\uD558\uC2ED\uC2DC\uC624.\n -splash:<imagepath>\n \uC774\uBBF8\uC9C0\uAC00 \uC9C0\uC815\uB41C \uC2A4\uD50C\uB798\uC2DC \uD654\uBA74\uC744 \uD45C\uC2DC\uD569\uB2C8\uB2E4.\n @<filepath> \uC9C0\uC815\uB41C \uD30C\uC77C\uC5D0\uC11C \uC635\uC158\uC744 \uC77D\uC2B5\uB2C8\uB2E4.\n
|
||||||
|
See \uC790\uC138\uD55C \uB0B4\uC6A9\uC740 http://www.oracle.com/technetwork/java/javase/documentation/index.html\uC744 \uCC38\uC870\uD558\uC2ED\uC2DC\uC624.
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.usage=\ -Xmixed \uD63C\uD569 \uBAA8\uB4DC\uB97C \uC2E4\uD589\uD569\uB2C8\uB2E4(\uAE30\uBCF8\uAC12).\n -Xint \uD574\uC11D\uB41C \uBAA8\uB4DC\uB9CC \uC2E4\uD589\uD569\uB2C8\uB2E4.\n -Xbootclasspath:<{0}(\uC73C)\uB85C \uAD6C\uBD84\uB41C \uB514\uB809\uD1A0\uB9AC \uBC0F zip/jar \uD30C\uC77C>\n \uBD80\uD2B8\uC2A4\uD2B8\uB7A9 \uD074\uB798\uC2A4 \uBC0F \uB9AC\uC18C\uC2A4\uC5D0 \uB300\uD55C \uAC80\uC0C9 \uACBD\uB85C\uB97C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xbootclasspath/a:<{0}(\uC73C)\uB85C \uAD6C\uBD84\uB41C \uB514\uB809\uD1A0\uB9AC \uBC0F zip/jar \uD30C\uC77C>\n \uBD80\uD2B8\uC2A4\uD2B8\uB7A9 \uD074\uB798\uC2A4 \uACBD\uB85C \uB05D\uC5D0 \uCD94\uAC00\uD569\uB2C8\uB2E4.\n -Xbootclasspath/p:<{0}(\uC73C)\uB85C \uAD6C\uBD84\uB41C \uB514\uB809\uD1A0\uB9AC \uBC0F zip/jar \uD30C\uC77C>\n \uBD80\uD2B8\uC2A4\uD2B8\uB7A9 \uD074\uB798\uC2A4 \uACBD\uB85C \uC55E\uC5D0 \uCD94\uAC00\uD569\uB2C8\uB2E4.\n -Xdiag \uCD94\uAC00 \uC9C4\uB2E8 \uBA54\uC2DC\uC9C0\uB97C \uD45C\uC2DC\uD569\uB2C8\uB2E4.\n -Xnoclassgc \uD074\uB798\uC2A4\uC758 \uBD88\uD544\uC694\uD55C \uC815\uBCF4 \uBAA8\uC74C\uC744 \uC0AC\uC6A9 \uC548\uD568\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xincgc \uC99D\uBD84\uC801\uC778 \uBD88\uD544\uC694\uD55C \uC815\uBCF4 \uBAA8\uC74C\uC744 \uC0AC\uC6A9\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xloggc:<file> \uC2DC\uAC04 \uAE30\uB85D\uACFC \uD568\uAED8 \uD30C\uC77C\uC5D0 GC \uC0C1\uD0DC\uB97C \uAE30\uB85D\uD569\uB2C8\uB2E4.\n -Xbatch \uBC31\uADF8\uB77C\uC6B4\uB4DC \uCEF4\uD30C\uC77C\uC744 \uC0AC\uC6A9 \uC548\uD568\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xms<size> \uCD08\uAE30 Java \uD799 \uD06C\uAE30\uB97C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xmx<size> \uCD5C\uB300 Java \uD799 \uD06C\uAE30\uB97C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xss<size> Java \uC2A4\uB808\uB4DC \uC2A4\uD0DD \uD06C\uAE30\uB97C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xprof CPU \uD504\uB85C\uD30C\uC77C \uC791\uC131 \uB370\uC774\uD130\uB97C \uCD9C\uB825\uD569\uB2C8\uB2E4.\n -Xfuture \uBBF8\uB798 \uAE30\uBCF8\uAC12\uC744 \uC608\uCE21\uD558\uC5EC \uAC00\uC7A5 \uC5C4\uACA9\uD55C \uAC80\uC0AC\uB97C \uC0AC\uC6A9\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xrs Java/VM\uC5D0 \uC758\uD55C OS \uC2E0\uD638 \uC0AC\uC6A9\uC744 \uC904\uC785\uB2C8\uB2E4(\uC124\uBA85\uC11C \uCC38\uC870).\n -Xcheck:jni JNI \uD568\uC218\uC5D0 \uB300\uD55C \uCD94\uAC00 \uAC80\uC0AC\uB97C \uC218\uD589\uD569\uB2C8\uB2E4.\n -Xshare:off \uACF5\uC720 \uD074\uB798\uC2A4 \uB370\uC774\uD130 \uC0AC\uC6A9\uC744 \uC2DC\uB3C4\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.\n -Xshare:auto \uAC00\uB2A5\uD55C \uACBD\uC6B0 \uACF5\uC720 \uD074\uB798\uC2A4 \uB370\uC774\uD130\uB97C \uC0AC\uC6A9\uD569\uB2C8\uB2E4(\uAE30\uBCF8\uAC12).\n -Xshare:on \uACF5\uC720 \uD074\uB798\uC2A4 \uB370\uC774\uD130\uB97C \uC0AC\uC6A9\uD574\uC57C \uD569\uB2C8\uB2E4. \uADF8\uB807\uC9C0 \uC54A\uC744 \uACBD\uC6B0 \uC2E4\uD328\uD569\uB2C8\uB2E4.\n -XshowSettings \uBAA8\uB4E0 \uC124\uC815\uC744 \uD45C\uC2DC\uD55C \uD6C4 \uACC4\uC18D\uD569\uB2C8\uB2E4.\n -XshowSettings:all\n \uBAA8\uB4E0 \uC124\uC815\uC744 \uD45C\uC2DC\uD55C \uD6C4 \uACC4\uC18D\uD569\uB2C8\uB2E4.\n -XshowSettings:vm \uBAA8\uB4E0 VM \uAD00\uB828 \uC124\uC815\uC744 \uD45C\uC2DC\uD55C \uD6C4 \uACC4\uC18D\uD569\uB2C8\uB2E4.\n -XshowSettings:properties\n \uBAA8\uB4E0 \uC18D\uC131 \uC124\uC815\uC744 \uD45C\uC2DC\uD55C \uD6C4 \uACC4\uC18D\uD569\uB2C8\uB2E4.\n -XshowSettings:locale\n \uBAA8\uB4E0 \uB85C\uCF00\uC77C \uAD00\uB828 \uC124\uC815\uC744 \uD45C\uC2DC\uD55C \uD6C4 \uACC4\uC18D\uD569\uB2C8\uB2E4.\n\n-X \uC635\uC158\uC740 \uBE44\uD45C\uC900 \uC635\uC158\uC774\uBBC0\uB85C \uD1B5\uC9C0 \uC5C6\uC774 \uBCC0\uACBD\uB420 \uC218 \
|
java.launcher.X.usage=\ -Xmixed \uD63C\uD569 \uBAA8\uB4DC\uB97C \uC2E4\uD589\uD569\uB2C8\uB2E4(\uAE30\uBCF8\uAC12).\n -Xint \uD574\uC11D\uB41C \uBAA8\uB4DC\uB9CC \uC2E4\uD589\uD569\uB2C8\uB2E4.\n -Xbootclasspath/a:<{0}(\uC73C)\uB85C \uAD6C\uBD84\uB41C \uB514\uB809\uD1A0\uB9AC \uBC0F zip/jar \uD30C\uC77C>\n \uBD80\uD2B8\uC2A4\uD2B8\uB7A9 \uD074\uB798\uC2A4 \uACBD\uB85C \uB05D\uC5D0 \uCD94\uAC00\uD569\uB2C8\uB2E4.\n -Xdiag \uCD94\uAC00 \uC9C4\uB2E8 \uBA54\uC2DC\uC9C0\uB97C \uD45C\uC2DC\uD569\uB2C8\uB2E4.\n -Xdiag:resolver \uBD84\uC11D\uAE30 \uC9C4\uB2E8 \uBA54\uC2DC\uC9C0\uB97C \uD45C\uC2DC\uD569\uB2C8\uB2E4.\n -Xnoclassgc \uD074\uB798\uC2A4\uC758 \uBD88\uD544\uC694\uD55C \uC815\uBCF4 \uBAA8\uC74C\uC744 \uC0AC\uC6A9 \uC548\uD568\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xincgc \uC99D\uBD84\uC801\uC778 \uBD88\uD544\uC694\uD55C \uC815\uBCF4 \uBAA8\uC74C\uC744 \uC0AC\uC6A9\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xloggc:<file> \uC2DC\uAC04 \uAE30\uB85D\uACFC \uD568\uAED8 \uD30C\uC77C\uC5D0 GC \uC0C1\uD0DC\uB97C \uAE30\uB85D\uD569\uB2C8\uB2E4.\n -Xbatch \uBC31\uADF8\uB77C\uC6B4\uB4DC \uCEF4\uD30C\uC77C\uC744 \uC0AC\uC6A9 \uC548\uD568\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xms<size> \uCD08\uAE30 Java \uD799 \uD06C\uAE30\uB97C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xmx<size> \uCD5C\uB300 Java \uD799 \uD06C\uAE30\uB97C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xss<size> Java \uC2A4\uB808\uB4DC \uC2A4\uD0DD \uD06C\uAE30\uB97C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xprof CPU \uD504\uB85C\uD30C\uC77C \uC791\uC131 \uB370\uC774\uD130\uB97C \uCD9C\uB825\uD569\uB2C8\uB2E4.\n -Xfuture \uBBF8\uB798 \uAE30\uBCF8\uAC12\uC744 \uC608\uCE21\uD558\uC5EC \uAC00\uC7A5 \uC5C4\uACA9\uD55C \uAC80\uC0AC\uB97C \uC0AC\uC6A9\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n -Xrs Java/VM\uC5D0 \uC758\uD55C OS \uC2E0\uD638 \uC0AC\uC6A9\uC744 \uC904\uC785\uB2C8\uB2E4(\uC124\uBA85\uC11C \uCC38\uC870).\n -Xcheck:jni JNI \uD568\uC218\uC5D0 \uB300\uD55C \uCD94\uAC00 \uAC80\uC0AC\uB97C \uC218\uD589\uD569\uB2C8\uB2E4.\n -Xshare:off \uACF5\uC720 \uD074\uB798\uC2A4 \uB370\uC774\uD130 \uC0AC\uC6A9\uC744 \uC2DC\uB3C4\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.\n -Xshare:auto \uAC00\uB2A5\uD55C \uACBD\uC6B0 \uACF5\uC720 \uD074\uB798\uC2A4 \uB370\uC774\uD130\uB97C \uC0AC\uC6A9\uD569\uB2C8\uB2E4(\uAE30\uBCF8\uAC12).\n -Xshare:on \uACF5\uC720 \uD074\uB798\uC2A4 \uB370\uC774\uD130\uB97C \uC0AC\uC6A9\uD574\uC57C \uD569\uB2C8\uB2E4. \uADF8\uB807\uC9C0 \uC54A\uC744 \uACBD\uC6B0 \uC2E4\uD328\uD569\uB2C8\uB2E4.\n -XshowSettings \uBAA8\uB4E0 \uC124\uC815\uC744 \uD45C\uC2DC\uD55C \uD6C4 \uACC4\uC18D\uD569\uB2C8\uB2E4.\n -XshowSettings:all\n \uBAA8\uB4E0 \uC124\uC815\uC744 \uD45C\uC2DC\uD55C \uD6C4 \uACC4\uC18D\uD569\uB2C8\uB2E4.\n -XshowSettings:vm\n \uBAA8\uB4E0 VM \uAD00\uB828 \uC124\uC815\uC744 \uD45C\uC2DC\uD55C \uD6C4 \uACC4\uC18D\uD569\uB2C8\uB2E4.\n -XshowSettings:properties\n \uBAA8\uB4E0 \uC18D\uC131 \uC124\uC815\uC744 \uD45C\uC2DC\uD55C \uD6C4 \uACC4\uC18D\uD569\uB2C8\uB2E4.\n -XshowSettings:locale\n \uBAA8\uB4E0 \uB85C\uCF00\uC77C \uAD00\uB828 \uC124\uC815\uC744 \uD45C\uC2DC\uD55C \uD6C4 \uACC4\uC18D\uD569\uB2C8\uB2E4.\n -XaddReads:<module>=<other-module>(,<other-module>)*\n <module>\uC740 \uBAA8\uB4C8 \uC120\uC5B8\uC5D0 \uAD00\uACC4\uC5C6\uC774\n \uB2E4\uB978 \uBAA8\uB4C8\uC744 \uC77D\uC2B5\uB2C8\uB2E4.\n -XaddExports:<module>/<package>=<other-module>(,<other-module>)*\n <module>\uC740 \uBAA8\uB4C8 \uC120\uC5B8\uC5D0 \uAD00\uACC4\uC5C6\uC774\n <package>\uB97C \uB2E4\uB978 \uBAA8\uB4C8\uB85C \uC775\uC2A4\uD3EC\uD2B8\uD569\uB2C8\uB2E4.\n \
|
||||||
\uC788\uC2B5\uB2C8\uB2E4.\n
|
-Xpatch:<module>=<file>({0}<file>)*\n JAR \uD30C\uC77C/\uB514\uB809\uD1A0\uB9AC\uC758 \uD074\uB798\uC2A4\uC640 \uB9AC\uC18C\uC2A4\uB85C\n \uBAA8\uB4C8\uC744 \uBB34\uD6A8\uD654\uD558\uAC70\uB098 \uC778\uC218\uD654\uD569\uB2C8\uB2E4.\n -Xdisable-@files \uCD94\uAC00 \uC778\uC218 \uD30C\uC77C \uD655\uC7A5\uC744 \uC0AC\uC6A9 \uC548\uD568\uC73C\uB85C \uC124\uC815\uD569\uB2C8\uB2E4.\n\n-X \uC635\uC158\uC740 \uBE44\uD45C\uC900 \uC635\uC158\uC774\uBBC0\uB85C \uD1B5\uC9C0 \uC5C6\uC774 \uBCC0\uACBD\uB420 \uC218 \uC788\uC2B5\uB2C8\uB2E4.\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.macosx.usage=\n\uB2E4\uC74C\uC740 Mac OS X\uC5D0 \uD2B9\uC815\uB41C \uC635\uC158\uC785\uB2C8\uB2E4.\n -XstartOnFirstThread\n \uCCAB\uBC88\uC9F8 (AppKit) \uC2A4\uB808\uB4DC\uC5D0 main() \uBA54\uC18C\uB4DC\uB97C \uC2E4\uD589\uD569\uB2C8\uB2E4.\n -Xdock:name=<application name>"\n \uACE0\uC815\uC73C\uB85C \uD45C\uC2DC\uB41C \uAE30\uBCF8 \uC751\uC6A9 \uD504\uB85C\uADF8\uB7A8 \uC774\uB984\uC744 \uBB34\uD6A8\uD654\uD569\uB2C8\uB2E4.\n -Xdock:icon=<path to icon file>\n \uACE0\uC815\uC73C\uB85C \uD45C\uC2DC\uB41C \uAE30\uBCF8 \uC544\uC774\uCF58\uC744 \uBB34\uD6A8\uD654\uD569\uB2C8\uB2E4.\n\n
|
java.launcher.X.macosx.usage=\n\uB2E4\uC74C\uC740 Mac OS X\uC5D0 \uD2B9\uC815\uB41C \uC635\uC158\uC785\uB2C8\uB2E4.\n -XstartOnFirstThread\n \uCCAB\uBC88\uC9F8 (AppKit) \uC2A4\uB808\uB4DC\uC5D0 main() \uBA54\uC18C\uB4DC\uB97C \uC2E4\uD589\uD569\uB2C8\uB2E4.\n -Xdock:name=<application name>"\n \uACE0\uC815\uC73C\uB85C \uD45C\uC2DC\uB41C \uAE30\uBCF8 \uC560\uD50C\uB9AC\uCF00\uC774\uC158 \uC774\uB984\uC744 \uBB34\uD6A8\uD654\uD569\uB2C8\uB2E4.\n -Xdock:icon=<path to icon file>\n \uACE0\uC815\uC73C\uB85C \uD45C\uC2DC\uB41C \uAE30\uBCF8 \uC544\uC774\uCF58\uC744 \uBB34\uD6A8\uD654\uD569\uB2C8\uB2E4.\n\n
|
||||||
|
|
||||||
java.launcher.cls.error1=\uC624\uB958: \uAE30\uBCF8 \uD074\uB798\uC2A4 {0}\uC744(\uB97C) \uCC3E\uAC70\uB098 \uB85C\uB4DC\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
java.launcher.cls.error1=\uC624\uB958: \uAE30\uBCF8 \uD074\uB798\uC2A4 {0}\uC744(\uB97C) \uCC3E\uAC70\uB098 \uB85C\uB4DC\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||||
java.launcher.cls.error2=\uC624\uB958: {1} \uD074\uB798\uC2A4\uC5D0\uC11C \uAE30\uBCF8 \uBA54\uC18C\uB4DC\uAC00 {0}\uC774(\uAC00) \uC544\uB2D9\uB2C8\uB2E4. \uB2E4\uC74C \uD615\uC2DD\uC73C\uB85C \uAE30\uBCF8 \uBA54\uC18C\uB4DC\uB97C \uC815\uC758\uD558\uC2ED\uC2DC\uC624.\n public static void main(String[] args)
|
java.launcher.cls.error2=\uC624\uB958: {1} \uD074\uB798\uC2A4\uC5D0\uC11C \uAE30\uBCF8 \uBA54\uC18C\uB4DC\uAC00 {0}\uC774(\uAC00) \uC544\uB2D9\uB2C8\uB2E4. \uB2E4\uC74C \uD615\uC2DD\uC73C\uB85C \uAE30\uBCF8 \uBA54\uC18C\uB4DC\uB97C \uC815\uC758\uD558\uC2ED\uC2DC\uC624.\n public static void main(String[] args)
|
||||||
java.launcher.cls.error3=\uC624\uB958: \uAE30\uBCF8 \uBA54\uC18C\uB4DC\uB294 {0} \uD074\uB798\uC2A4\uC5D0\uC11C void \uC720\uD615\uC758 \uAC12\uC744 \uBC18\uD658\uD574\uC57C \uD569\uB2C8\uB2E4. \n\uB2E4\uC74C \uD615\uC2DD\uC73C\uB85C \uAE30\uBCF8 \uBA54\uC18C\uB4DC\uB97C \uC815\uC758\uD558\uC2ED\uC2DC\uC624.\n public static void main(String[] args)
|
java.launcher.cls.error3=\uC624\uB958: \uAE30\uBCF8 \uBA54\uC18C\uB4DC\uB294 {0} \uD074\uB798\uC2A4\uC5D0\uC11C void \uC720\uD615\uC758 \uAC12\uC744 \uBC18\uD658\uD574\uC57C \uD569\uB2C8\uB2E4. \n\uB2E4\uC74C \uD615\uC2DD\uC73C\uB85C \uAE30\uBCF8 \uBA54\uC18C\uB4DC\uB97C \uC815\uC758\uD558\uC2ED\uC2DC\uC624.\n public static void main(String[] args)
|
||||||
java.launcher.cls.error4=\uC624\uB958: {0} \uD074\uB798\uC2A4\uC5D0\uC11C \uAE30\uBCF8 \uBA54\uC18C\uB4DC\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. \uB2E4\uC74C \uD615\uC2DD\uC73C\uB85C \uAE30\uBCF8 \uBA54\uC18C\uB4DC\uB97C \uC815\uC758\uD558\uC2ED\uC2DC\uC624.\r\n public static void main(String[] args)\r\n\uB610\uB294 JavaFX \uC751\uC6A9 \uD504\uB85C\uADF8\uB7A8 \uD074\uB798\uC2A4\uB294 {1}\uC744(\uB97C) \uD655\uC7A5\uD574\uC57C \uD569\uB2C8\uB2E4.
|
java.launcher.cls.error4=\uC624\uB958: {0} \uD074\uB798\uC2A4\uC5D0\uC11C \uAE30\uBCF8 \uBA54\uC18C\uB4DC\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. \uB2E4\uC74C \uD615\uC2DD\uC73C\uB85C \uAE30\uBCF8 \uBA54\uC18C\uB4DC\uB97C \uC815\uC758\uD558\uC2ED\uC2DC\uC624.\r\n public static void main(String[] args)\r\n\uB610\uB294 JavaFX \uC560\uD50C\uB9AC\uCF00\uC774\uC158 \uD074\uB798\uC2A4\uB294 {1}\uC744(\uB97C) \uD655\uC7A5\uD574\uC57C \uD569\uB2C8\uB2E4.
|
||||||
java.launcher.cls.error5=\uC624\uB958: \uC774 \uC751\uC6A9 \uD504\uB85C\uADF8\uB7A8\uC744 \uC2E4\uD589\uD558\uB294 \uB370 \uD544\uC694\uD55C JavaFX \uB7F0\uD0C0\uC784 \uAD6C\uC131 \uC694\uC18C\uAC00 \uB204\uB77D\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
|
java.launcher.cls.error5=\uC624\uB958: \uC774 \uC560\uD50C\uB9AC\uCF00\uC774\uC158\uC744 \uC2E4\uD589\uD558\uB294 \uB370 \uD544\uC694\uD55C JavaFX \uB7F0\uD0C0\uC784 \uAD6C\uC131 \uC694\uC18C\uAC00 \uB204\uB77D\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
|
||||||
java.launcher.jar.error1=\uC624\uB958: {0} \uD30C\uC77C\uC744 \uC5F4\uB824\uACE0 \uC2DC\uB3C4\uD558\uB294 \uC911 \uC608\uC0C1\uCE58 \uC54A\uC740 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4.
|
java.launcher.jar.error1=\uC624\uB958: {0} \uD30C\uC77C\uC744 \uC5F4\uB824\uACE0 \uC2DC\uB3C4\uD558\uB294 \uC911 \uC608\uC0C1\uCE58 \uC54A\uC740 \uC624\uB958\uAC00 \uBC1C\uC0DD\uD588\uC2B5\uB2C8\uB2E4.
|
||||||
java.launcher.jar.error2={0}\uC5D0\uC11C Manifest\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
java.launcher.jar.error2={0}\uC5D0\uC11C Manifest\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||||
java.launcher.jar.error3={0}\uC5D0 \uAE30\uBCF8 Manifest \uC18D\uC131\uC774 \uC5C6\uC2B5\uB2C8\uB2E4.
|
java.launcher.jar.error3={0}\uC5D0 \uAE30\uBCF8 Manifest \uC18D\uC131\uC774 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||||
java.launcher.init.error=\uCD08\uAE30\uD654 \uC624\uB958
|
java.launcher.init.error=\uCD08\uAE30\uD654 \uC624\uB958
|
||||||
java.launcher.javafx.error1=\uC624\uB958: JavaFX launchApplication \uBA54\uC18C\uB4DC\uC5D0 \uC798\uBABB\uB41C \uC11C\uBA85\uC774 \uC788\uC2B5\uB2C8\uB2E4.\\n\uB530\uB77C\uC11C static\uC73C\uB85C \uC120\uC5B8\uD558\uACE0 void \uC720\uD615\uC758 \uAC12\uC744 \uBC18\uD658\uD574\uC57C \uD569\uB2C8\uB2E4.
|
java.launcher.javafx.error1=\uC624\uB958: JavaFX launchApplication \uBA54\uC18C\uB4DC\uC5D0 \uC798\uBABB\uB41C \uC11C\uBA85\uC774 \uC788\uC2B5\uB2C8\uB2E4.\\n\uB530\uB77C\uC11C static\uC73C\uB85C \uC120\uC5B8\uD558\uACE0 void \uC720\uD615\uC758 \uAC12\uC744 \uBC18\uD658\uD574\uC57C \uD569\uB2C8\uB2E4.
|
||||||
|
java.launcher.module.error1={0} \uBAA8\uB4C8\uC5D0 MainClass \uC18D\uC131\uC774 \uC5C6\uC2B5\uB2C8\uB2E4. -m <module>/<main-class>\uB97C \uC0AC\uC6A9\uD558\uC2ED\uC2DC\uC624.
|
||||||
|
java.launcher.module.error2=\uC624\uB958: {1} \uBAA8\uB4C8\uC758 \uAE30\uBCF8 \uD074\uB798\uC2A4 {0}\uC744(\uB97C) \uCC3E\uAC70\uB098 \uB85C\uB4DC\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
#
|
#
|
||||||
# This code is free software; you can redistribute it and/or modify it
|
# This code is free software; you can redistribute it and/or modify it
|
||||||
@ -24,31 +24,34 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.header = Uso: {0} [-options] class [args...]\n (para executar uma classe)\n ou {0} [-options] -jar jarfile [args...]\n (para executar um arquivo jar)\nem que as op\u00E7\u00F5es incluem:\n
|
java.launcher.opt.header = Uso: {0} [options] class [args...]\n (para executar uma classe)\n ou {0} [options] -jar jarfile [args...]\n (para executar um arquivo jar)\n ou {0} [-options] -mp <modulepath> -m <modulename> | <modulename>/<mainclass>\n (para executar a classe principal em um m\u00F3dulo class in a module)\nem que as op\u00E7\u00F5es incluem:\n
|
||||||
|
|
||||||
java.launcher.opt.datamodel =\ -d{0}\t usar um modelo de dados de {0} bits, se estiver dispon\u00EDvel\n
|
java.launcher.opt.datamodel =\ -d{0}\t usar um modelo de dados de {0} bits, se estiver dispon\u00EDvel\n
|
||||||
java.launcher.opt.vmselect =\ {0}\t para selecionar a VM "{1}"\n
|
java.launcher.opt.vmselect =\ {0}\t para selecionar a VM "{1}"\n
|
||||||
java.launcher.opt.hotspot =\ {0}\t \u00E9 um sin\u00F4nimo da VM "{1}" [obsoleto]\n
|
java.launcher.opt.hotspot =\ {0}\t \u00E9 um sin\u00F4nimo da VM "{1}" [obsoleto]\n
|
||||||
|
|
||||||
java.launcher.ergo.message1 =\ A VM default \u00E9 {0}
|
java.launcher.ergo.message1 =\ A VM padr\u00E3o \u00E9 {0}
|
||||||
java.launcher.ergo.message2 =\ porque a execu\u00E7\u00E3o est\u00E1 sendo feita em uma m\u00E1quina de classe de servidor.\n
|
java.launcher.ergo.message2 =\ porque a execu\u00E7\u00E3o est\u00E1 sendo feita em uma m\u00E1quina de classe de servidor.\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.footer =\ -cp <caminho de pesquisa da classe dos diret\u00F3rios e arquivos zip/jar>\n -classpath <caminho de pesquisa da classe dos diret\u00F3rios e arquivos zip/jar>\n Uma lista separada por {0} de diret\u00F3rios, archives JAR\n e archives ZIP nos quais ser\u00E3o procurados os arquivos de classe.\n -D<nome>=<valor>\n define uma propriedade do sistema\n -verbose:[class|gc|jni]\n ativa a sa\u00EDda detalhada\n -version imprime a vers\u00E3o do produto e sai do programa\n -version:<valor>\n requer a execu\u00E7\u00E3o da vers\u00E3o especificada\n -showversion imprime a vers\u00E3o do produto e continua\n -jre-restrict-search | -no-jre-restrict-search\n inclui/exclui JREs privados do usu\u00E1rio na pesquisa de vers\u00E3o\n -? -help imprime esta mensagem de ajuda\n -X imprime a ajuda sobre op\u00E7\u00F5es n\u00E3o padronizadas\n -ea[:<nome do pacote>...|:<nome da classe>]\n -enableassertions[:<nome do pacote>...|:<nome da classe>]\n ativa asser\u00E7\u00F5es com granularidade especificada\n -da[:<nome do pacote>...|:<nome da classe>]\n -disableassertions[:<nome do pacote>...|:<nome da classe>]\n desativa asser\u00E7\u00F5es com granularidade especificada\n -esa | -enablesystemassertions\n ativa asser\u00E7\u00F5es do sistema\n -dsa | -disablesystemassertions\n desativa asser\u00E7\u00F5es do sistema\n -agentlib:<nome da biblioteca>[=<op\u00E7\u00F5es>]\n carrega a biblioteca de agentes nativa <nome da biblioteca>, por exemplo: -agentlib:hprof\n consulte tamb\u00E9m: -agentlib:jdwp=help e -agentlib:hprof=help\n -agentpath:<nome do caminho>[=<op\u00E7\u00F5es>]\n carrega a biblioteca de agentes nativa com base no nome do caminho completo\n -javaagent:<caminho do arquivo jar>[=<op\u00E7\u00F5es>]\n carrega o agente da linguagem de programa\u00E7\u00E3o Java; consulte java.lang.instrument\n -splash:<caminho da imagem>\n mostra a tela de abertura com a imagem especificada\nConsulte http://www.oracle.com/technetwork/java/javase/documentation/index.html para obter mais detalhes.
|
java.launcher.opt.footer =\ -cp <caminho de pesquisa de classe de diret\u00F3rios e arquivos zip/jar>\n -classpath <caminho de pesquisa de classe de diret\u00F3rios e arquivos zip/jar>\n Uma lista separada por {0} de diret\u00F3rios, arquivos compactados JAR,\n e arquivos compactados ZIP para procurar arquivos de classe.\n -mp <caminho do m\u00F3dulo>\n -modulepath <caminho do m\u00F3dulo>...\n Uma lista separada por {0} de diret\u00F3rios, cada um\n sendo um diret\u00F3rio de m\u00F3dulos.\n -upgrademodulepath <caminho do m\u00F3dulo>...\n Uma lista separada por {0} de diret\u00F3rios, cada um\n sendo um diret\u00F3rio de m\u00F3dulos que substituem m\u00F3dulos\n pass\u00EDveis de upgrade na imagem de runtime\n -m <modulename> | <modulename>/<mainclass>\n o m\u00F3dulo inicial ou principal a ser resolvido\n -addmods <modulename>[,<modulename>...]\n m\u00F3dulos raiz a serem resolvidos al\u00E9m do m\u00F3dulo inicial\n -limitmods <modulename>[,<modulename>...]\n limita o universo de m\u00F3dulos observ\u00E1veis\n -listmods[:<modulename>[,<modulename>...]]\n lista os m\u00F3dulos observ\u00E1veis e sai\n -D<name>=<value>\n define uma propriedade de sistema\n -verbose:[class|gc|jni]\n ativa sa\u00EDda detalhada\n -version imprime a vers\u00E3o do produto e sai\n -showversion imprime a vers\u00E3o do produto e continua\n -? -help imprime esta mensagem de ajuda\n -X imprime a ajuda em op\u00E7\u00F5es n\u00E3o padronizadas\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n ativa asser\u00E7\u00F5es com granularidade especificada\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n desativa asser\u00E7\u00F5es com granularidade especificada\n -esa | -enablesystemassertions\n ativa asser\u00E7\u00F5es do sistema\n -dsa | -disablesystemassertions\n desativa asser\u00E7\u00F5es do sistema\n -agentlib:<libname>[=<options>]\n carrega a biblioteca de agente nativo <libname>, por exemplo, -agentlib:jdwp\n consulte tamb\u00E9m -agentlib:jdwp=help\n -agentpath:<pathname>[=<options>]\n carrega a biblioteca de agente nativo por nome do caminho completo\n -javaagent:<jarpath>[=<options>]\n carrega o agente de linguagem de programa\u00E7\u00E3o Java; consulte java.lang.instrument\n -splash:<imagepath>\n mostra a tela inicial com a imagem especificada\n @<filepath> op\u00E7\u00F5es de leitura do arquivo especificado\n
|
||||||
|
See http://www.oracle.com/technetwork/java/javase/documentation/index.html para obter mais detalhes.
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.usage=\ -Xmixed execu\u00E7\u00E3o no modo misto (default)\n -Xint execu\u00E7\u00E3o somente no modo interpretado\n -Xbootclasspath:<diret\u00F3rios e arquivos zip/jar separados por {0}>\n define o caminho de pesquisa para classes e recursos de inicializa\u00E7\u00E3o\n -Xbootclasspath/a:<diret\u00F3rios e arquivos zip/jar separados por {0}>\n anexa no final do caminho da classe de inicializa\u00E7\u00E3o\n -Xbootclasspath/p:<diret\u00F3rios e arquivos zip/jar separados por {0}>\n anexa no in\u00EDcio do caminho da classe de inicializa\u00E7\u00E3o\n -Xdiag mostra mensagens de diagn\u00F3stico adicionais\n -Xnoclassgc desativa a coleta de lixo da classe\n -Xincgc ativa a coleta de lixo incremental\n -Xloggc:<arquivo> registra o status do GC status em um arquivo com marca\u00E7\u00F5es de data e hor\u00E1rio\n -Xbatch desativa a compila\u00E7\u00E3o em segundo plano\n -Xms<tamanho> define o tamanho inicial do heap Java\n -Xmx<tamanho> define o tamanho m\u00E1ximo do heap Java\n -Xss<tamanho> define o tamanho da pilha de threads java\n -Xprof produz dados de perfil da cpu\n -Xfuture ativa verifica\u00E7\u00F5es de n\u00EDvel m\u00E1ximo de exig\u00EAncia, prevendo o valor default futuro\n -Xrs reduz o uso de sinais do SO pelo(a) Java/VM (consulte a documenta\u00E7\u00E3o)\n -Xcheck:jni executa verifica\u00E7\u00F5es adicionais de fun\u00E7\u00F5es da JNI\n -Xshare:off n\u00E3o tenta usar dados da classe compartilhada\n -Xshare:auto se poss\u00EDvel, usa dados da classe compartilhada (default)\n -Xshare:on requer o uso de dados da classe compartilhada, caso contr\u00E1rio haver\u00E1 falha.\n -XshowSettings mostra todas as defini\u00E7\u00F5es e continua\n -XshowSettings:all\n mostra todas as defini\u00E7\u00F5es e continua\n -XshowSettings:vm mostra todas as defini\u00E7\u00F5es relacionadas \u00E0 vm e continua\n -XshowSettings:properties\n mostra todas as defini\u00E7\u00F5es da propriedade e continua\n -XshowSettings:locale\n mostra todas as defini\u00E7\u00F5es relativas \u00E0s configura\u00E7\u00F5es regionais e continua\n\nAs -X options n\u00E3o s\u00E3o padronizadas e est\u00E3o sujeitas a altera\u00E7\u00F5es sem aviso.\n
|
java.launcher.X.usage=\ -Xmixed execu\u00E7\u00E3o no modo misto (padr\u00E3o)\n -Xint execu\u00E7\u00E3o somente no modo interpretado\n -Xbootclasspath:<diret\u00F3rios e arquivos zip/jar separados por {0}>\n anexos ao final do caminho de classe de inicializa\u00E7\u00E3o\n -Xdiag mostra mensagens de diagn\u00F3stico adicionais\n -Xdiag:resolver mostra mensagens de diagn\u00F3stico do resolvedor\n -Xnoclassgc desativa a coleta de lixo da classe\n -Xincgc ativa a coleta de lixo incremental\n -Xloggc:<arquivo> registra o status do GC status em um arquivo com marca\u00E7\u00F5es de data e hor\u00E1rio\n -Xbatch desativa a compila\u00E7\u00E3o em segundo plano\n -Xms<tamanho> define o tamanho inicial do heap Java\n -Xmx<tamanho> define o tamanho m\u00E1ximo do heap Java\n -Xss<tamanho> define o tamanho da pilha de threads java\n -Xprof produz dados de perfil da cpu\n -Xfuture ativa verifica\u00E7\u00F5es de n\u00EDvel m\u00E1ximo de exig\u00EAncia, prevendo o valor padr\u00E3o futuro\n -Xrs reduz o uso de sinais do SO pelo(a) Java/VM (consulte a documenta\u00E7\u00E3o)\n -Xcheck:jni executa verifica\u00E7\u00F5es adicionais de fun\u00E7\u00F5es da JNI\n -Xshare:off n\u00E3o tenta usar dados da classe compartilhada\n -Xshare:auto se poss\u00EDvel, usa dados da classe compartilhada (padr\u00E3o)\n -Xshare:on requer o uso de dados da classe compartilhada, caso contr\u00E1rio haver\u00E1 falha.\n -XshowSettings mostra todas as defini\u00E7\u00F5es e continua\n -XshowSettings:all\n mostra todas as defini\u00E7\u00F5es e continua\n -XshowSettings:vm mostra todas as defini\u00E7\u00F5es relacionadas \u00E0 vm e continua\n -XshowSettings:properties\n mostra todas as defini\u00E7\u00F5es da propriedade e continua\n -XshowSettings:locale\n mostra todas as defini\u00E7\u00F5es relativas \u00E0s configura\u00E7\u00F5es regionais e continua\n -XaddReads:<module>=<other-module>(,<other-module>)*\n <module> l\u00EA outros m\u00F3dulos,\n n\u00E3o importando a declara\u00E7\u00E3o do m\u00F3dulo\n -XaddExports:<module>/<package>=<other-module>(,<other-module>)*\n <module> exports <package> para outros m\u00F3dulos,\n n\u00E3o importando a declara\u00E7\u00E3o do m\u00F3dulo\n -Xpatch:<module>=<file>({0}<file>)*\n Substitui ou aumenta um m\u00F3dulo com classes e recursos\n em arquivos JAR ou diret\u00F3rios\n -Xdisable-@files desativa uma expans\u00E3o adicional de arquivo de argumentos\n\nAs op\u00E7\u00F5es -X n\u00E3o s\u00E3o padronizadas e est\u00E3o sujeitas a altera\u00E7\u00F5es sem aviso.\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.macosx.usage=\nAs op\u00E7\u00F5es a seguir s\u00E3o espec\u00EDficas para o Mac OS X:\n -XstartOnFirstThread\n executa o m\u00E9todo main() no primeiro thread (AppKit)\n -Xdock:name=<nome da aplica\u00E7\u00E3o>"\n substitui o nome da aplica\u00E7\u00E3o default exibido no encaixe\n -Xdock:icon=<caminho para o arquivo do \u00EDcone>\n substitui o \u00EDcone exibido no encaixe\n\n
|
java.launcher.X.macosx.usage=\nAs op\u00E7\u00F5es a seguir s\u00E3o espec\u00EDficas para o Mac OS X:\n -XstartOnFirstThread\n executa o m\u00E9todo main() no primeiro thread (AppKit)\n -Xdock:name=<nome do aplicativo>"\n substitui o nome do aplicativo padr\u00E3o exibido no encaixe\n -Xdock:icon=<caminho para o arquivo do \u00EDcone>\n substitui o \u00EDcone exibido no encaixe\n\n
|
||||||
|
|
||||||
java.launcher.cls.error1=Erro: N\u00E3o foi poss\u00EDvel localizar nem carregar a classe principal {0}
|
java.launcher.cls.error1=Erro: N\u00E3o foi poss\u00EDvel localizar nem carregar a classe principal {0}
|
||||||
java.launcher.cls.error2=Erro: o m\u00E9todo main n\u00E3o \u00E9 {0} na classe {1}; defina o m\u00E9todo main como:\n public static void main(String[] args)
|
java.launcher.cls.error2=Erro: o m\u00E9todo main n\u00E3o \u00E9 {0} na classe {1}; defina o m\u00E9todo main como:\n public static void main(String[] args)
|
||||||
java.launcher.cls.error3=Erro: o m\u00E9todo main deve retornar um valor do tipo void na classe {0}; \ndefina o m\u00E9todo main como:\n public static void main(String[] args)
|
java.launcher.cls.error3=Erro: o m\u00E9todo main deve retornar um valor do tipo void na classe {0}; \ndefina o m\u00E9todo main como:\n public static void main(String[] args)
|
||||||
java.launcher.cls.error4=Erro: o m\u00E9todo main n\u00E3o foi encontrado na classe {0}; defina o m\u00E9todo main como:\\n public static void main(String[] args)\\nou uma classe da aplica\u00E7\u00E3o JavaFX deve expandir {1}
|
java.launcher.cls.error4=Erro: o m\u00E9todo main n\u00E3o foi encontrado na classe {0}; defina o m\u00E9todo main como:\n public static void main(String[] args)\nou uma classe de aplicativo JavaFX deve expandir {1}
|
||||||
java.launcher.cls.error5=Erro: os componentes de runtime do JavaFX n\u00E3o foram encontrados. Eles s\u00E3o obrigat\u00F3rios para executar esta aplica\u00E7\u00E3o
|
java.launcher.cls.error5=Erro: os componentes de runtime do JavaFX n\u00E3o foram encontrados. Eles s\u00E3o obrigat\u00F3rios para executar este aplicativo
|
||||||
java.launcher.jar.error1=Erro: ocorreu um erro inesperado ao tentar abrir o arquivo {0}
|
java.launcher.jar.error1=Erro: ocorreu um erro inesperado ao tentar abrir o arquivo {0}
|
||||||
java.launcher.jar.error2=manifesto n\u00E3o encontrado em {0}
|
java.launcher.jar.error2=manifesto n\u00E3o encontrado em {0}
|
||||||
java.launcher.jar.error3=nenhum atributo de manifesto principal em {0}
|
java.launcher.jar.error3=nenhum atributo de manifesto principal em {0}
|
||||||
java.launcher.init.error=erro de inicializa\u00E7\u00E3o
|
java.launcher.init.error=erro de inicializa\u00E7\u00E3o
|
||||||
java.launcher.javafx.error1=Erro: O m\u00E9todo launchApplication do JavaFX tem a assinatura errada. Ele\\ndeve ser declarado como est\u00E1tico e retornar um valor do tipo void
|
java.launcher.javafx.error1=Erro: O m\u00E9todo launchApplication do JavaFX tem a assinatura errada. Ele\\ndeve ser declarado como est\u00E1tico e retornar um valor do tipo void
|
||||||
|
java.launcher.module.error1=o m\u00F3dulo {0} n\u00E3o tem um atributo MainClass, use -m <module>/<main-class>
|
||||||
|
java.launcher.module.error2=Erro: N\u00E3o foi poss\u00EDvel localizar nem carregar a classe principal {0} no m\u00F3dulo {1}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
#
|
#
|
||||||
# This code is free software; you can redistribute it and/or modify it
|
# This code is free software; you can redistribute it and/or modify it
|
||||||
@ -24,7 +24,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.header = Syntax: {0} [-alternativ] class [argument...]\n (f\u00F6r att k\u00F6ra en klass)\n eller {0} [-alternativ] -jar jarfile [argument...]\n (f\u00F6r att k\u00F6ra en jar-fil)\nd\u00E4r alternativen omfattar:\n
|
java.launcher.opt.header = Syntax: {0} [options] class [args...]\n (f\u00F6r att k\u00F6ra en klass)\n eller {0} [options] -jar jarfile [args...]\n (f\u00F6r att k\u00F6ra en jar-fil)\n eller {0} [-options] -mp <modulepath> -m <modulename> | <modulename>/<mainclass>\n (f\u00F6r att k\u00F6ra huvudklassen i en modul)\nmed alternativen:\n
|
||||||
|
|
||||||
java.launcher.opt.datamodel =\ -d{0}\t anv\u00E4nd en {0}-bitsdatamodell om det finns\n
|
java.launcher.opt.datamodel =\ -d{0}\t anv\u00E4nd en {0}-bitsdatamodell om det finns\n
|
||||||
java.launcher.opt.vmselect =\ {0}\t f\u00F6r att v\u00E4lja "{1}" VM\n
|
java.launcher.opt.vmselect =\ {0}\t f\u00F6r att v\u00E4lja "{1}" VM\n
|
||||||
@ -34,21 +34,24 @@ java.launcher.ergo.message1 =\ Standard-VM \u00E4r {0}
|
|||||||
java.launcher.ergo.message2 =\ eftersom du k\u00F6r en serverklassmaskin.\n
|
java.launcher.ergo.message2 =\ eftersom du k\u00F6r en serverklassmaskin.\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.footer =\ -cp <klass\u00F6kv\u00E4g f\u00F6r kataloger och zip-/jar-filer>\n -classpath <klass\u00F6kv\u00E4g f\u00F6r kataloger och zip-/jar-filer>\n En {0}-separerad lista med kataloger, JAR-arkiv,\n och ZIP-arkiv f\u00F6r s\u00F6kning efter klassfiler.\n -D<name>=<value>\n ange en systemegenskap\n -verbose:[class|gc|jni]\n aktivera utf\u00F6rliga utdata\n -version skriv ut produktversionen och avsluta\n -version:<value>\n beg\u00E4r den specifika versionen som ska k\u00F6ras\n -showversion skriv ut produktversionen och forts\u00E4tt\n -jre-restrict-search | -no-jre-restrict-search\n inkludera/exkludera anv\u00E4ndarprivata JRE:er i versions\u00F6kningen\n -? -help skriv ut det h\u00E4r hj\u00E4lpmeddelandet\n -X skriv ut hj\u00E4lp f\u00F6r icke-standardalternativ\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n aktivera verifiering med angiven detaljgrad\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n avaktivera verifiering med angiven detaljgrad\n -esa | -enablesystemassertions\n aktivera systemverifieringar\n -dsa | -disablesystemassertions\n avaktivera systemverifieringar\n -agentlib:<libname>[=<options>]\n ladda ursprungligt agentbibliotek <libname>, e.g. -agentlib:hprof\n se \u00E4ven -agentlib:jdwp=help och -agentlib:hprof=help\n -agentpath:<pathname>[=<options>]\n ladda ursprungligt agentbibliotek med helt s\u00F6kv\u00E4gsnamn\n -javaagent:<jarpath>[=<options>]\n ladda Java-programspr\u00E5ksagent, se java.lang.instrument\n -splash:<imagepath>\n visa v\u00E4lkomstsk\u00E4rm med angiven bild\nMer information finns p\u00E5 http://www.oracle.com/technetwork/java/javase/documentation/index.html.
|
java.launcher.opt.footer =\ -cp <class search path of directories and zip/jar files>\n -classpath <class search path of directories and zip/jar files>\n En {0}-avgr\u00E4nsad lista \u00F6ver kataloger, JAR-arkiv\n och ZIP-arkiv att s\u00F6ka efter klassfiler i.\n -mp <module path>\n -modulepath <module path>...\n En {0}-avgr\u00E4nsad lista \u00F6ver kataloger, d\u00E4r varje\n katalog \u00E4r en katalog med moduler.\n -upgrademodulepath <module path>...\n En {0}-avgr\u00E4nsad lista \u00F6ver kataloger, d\u00E4r varje\n katalog \u00E4r en katalog med moduler som ers\u00E4tter\n uppgraderingsbara moduler i exekveringsavbilden\n -m <modulename> | <modulename>/<mainclass>\n den ursprungliga modulen eller huvudmodulen att l\u00F6sa\n -addmods <modulename>[,<modulename>...]\n rotmoduler att l\u00F6sa f\u00F6rutom den ursprungliga modulen\n -limitmods <modulename>[,<modulename>...]\n begr\u00E4nsar universumet med observerbara moduler\n -listmods[:<modulename>[,<modulename>...]]\n lista observerbara moduler och avsluta\n -D<name>=<value>\n ange en systemegenskap\n -verbose:[class|gc|jni]\n aktivera utf\u00F6rliga utdata\n -version skriv ut produktversion och avsluta\n -showversion skriv ut produktversion och forts\u00E4tt\n -? -help skriv ut det h\u00E4r hj\u00E4lpmeddelandet\n -X skriv ut f\u00F6r icke-standardalternativ\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n aktivera verifieringar med den angivna detaljgraden\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n avaktivera verifieringar med den angivna detaljgraden\n -esa | -enablesystemassertions\n aktivera systemverifieringar\n -dsa | -disablesystemassertions\n avaktivera systemverifieringar\n -agentlib:<libname>[=<options>]\n ladda det ursprungliga agentbiblioteket <libname>, exempel: -agentlib:jdwp\n se \u00E4ven -agentlib:jdwp=help\n -agentpath:<pathname>[=<options>]\n ladda det ursprungliga agentbiblioteket med fullst\u00E4ndigt s\u00F6kv\u00E4gsnamn\n -javaagent:<jarpath>[=<options>]\n ladda agenten f\u00F6r programmeringsspr\u00E5ket Java, se java.lang.instrument\n -splash:<imagepath>\n visa v\u00E4lkomstsk\u00E4rmen med den angivna bilden\n @<filepath> l\u00E4s alternativ fr\u00E5n den angivna filen\n
|
||||||
|
See Se http://www.oracle.com/technetwork/java/javase/documentation/index.html f\u00F6r mer information.
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.usage=\ -Xmixed k\u00F6rning i blandat l\u00E4ge (standard)\n -Xint endast k\u00F6rning i tolkat l\u00E4ge\n -Xbootclasspath:<kataloger och zip-/jar-filer avgr\u00E4nsas med {0}>\n ange s\u00F6kv\u00E4g f\u00F6r programladdningsklasser och -resurser\n -Xbootclasspath/a:<kataloger och zip-/jar-filer avgr\u00E4nsas med {0}>\n l\u00E4gg till i slutet av programladdningsklassens s\u00F6kv\u00E4g\n -Xbootclasspath/p:<kataloger och zip-/jar-filer avgr\u00E4nsas med {0}>\n l\u00E4gg till i b\u00F6rjan av programladdningsklassens s\u00F6kv\u00E4g\n -Xdiag visa ytterligare diagnostiska meddelanden\n -Xnoclassgc avaktivera klassens skr\u00E4pinsamling\n -Xincgc aktivera inkrementell skr\u00E4pinsamling\n -Xloggc:<fil> logga GC-status till en fil med tidsst\u00E4mplar\n -Xbatch avaktivera bakgrundskompilering\n -Xms<storlek> ange ursprunglig storlek f\u00F6r Java-heap\n -Xmx<storlek> ange maximal storlek f\u00F6r Java-heap\n -Xss<storlek> ange storlek f\u00F6r java-tr\u00E5dsstack\n -Xprof utdata f\u00F6r processorprofilering\n -Xfuture aktivera str\u00E4ngaste kontroller, f\u00F6rv\u00E4ntad framtida standard\n -Xrs minska OS-signalanv\u00E4ndning av Java/VM (se dokumentation)\n -Xcheck:jni utf\u00F6r ytterligare kontroller f\u00F6r JNI-funktioner\n -Xshare:off anv\u00E4nd inte delade klassdata\n -Xshare:auto anv\u00E4nd delade klassdata om det g\u00E5r (standard)\n -Xshare:on kr\u00E4v att delade klassdata anv\u00E4nds, annars slutf\u00F6r inte.\n -XshowSettings visa alla inst\u00E4llningar och forts\u00E4tt\n -XshowSettings:all\n visa alla inst\u00E4llningar och forts\u00E4tt\n -XshowSettings:vm visa alla vm-relaterade inst\u00E4llningar och forts\u00E4tt\n -XshowSettings:properties\n visa alla egenskapsinst\u00E4llningar och forts\u00E4tt\n -XshowSettings:locale\n visa alla spr\u00E5krelaterade inst\u00E4llningar och forts\u00E4tt\n\n-X-alternativen \u00E4r inte standard och kan \u00E4ndras utan f\u00F6reg\u00E5ende meddelande.\n
|
java.launcher.X.usage=\ -Xmixed exekvering i blandat l\u00E4ge (standard)\n -Xint endast exekvering i tolkat l\u00E4ge\n -Xbootclasspath/a:<directories and zip/jar files separated by {0}>\n l\u00E4gg till sist i klass\u00F6kv\u00E4gen f\u00F6r programladdning\n -Xdiag visa fler diagnostiska meddelanden\n -Xdiag:resolver visa diagnostiska meddelanden f\u00F6r matchning\n -Xnoclassgc avaktivera klasskr\u00E4pinsamling\n -Xincgc aktivera inkrementell skr\u00E4pinsamling\n -Xloggc:<file> logga GC-status till en fil med tidsst\u00E4mplar\n -Xbatch avaktivera bakgrundskompilering\n -Xms<size> ange ursprunglig storlek f\u00F6r Java-heap-utrymmet\n -Xmx<size> ange st\u00F6rsta storlek f\u00F6r Java-heap-utrymmet\n -Xss<size> ange storlek f\u00F6r java-tr\u00E5dsstacken\n -Xprof utdata f\u00F6r processorprofilering\n -Xfuture aktivera str\u00E4ngaste kontroller, f\u00F6rv\u00E4ntad framtida standard\n -Xrs minska operativsystemssignalanv\u00E4ndning f\u00F6r Java/VM (se dokumentationen)\n -Xcheck:jni utf\u00F6r fler kontroller f\u00F6r JNI-funktioner\n -Xshare:off f\u00F6rs\u00F6k inte anv\u00E4nda delade klassdata\n -Xshare:auto anv\u00E4nd delade klassdata om m\u00F6jligt (standard)\n -Xshare:on kr\u00E4v anv\u00E4ndning av delade klassdata, utf\u00F6r inte i annat fall.\n -XshowSettings visa alla inst\u00E4llningar och forts\u00E4tt\n -XshowSettings:all\n visa alla inst\u00E4llningar och forts\u00E4tt\n -XshowSettings:vm visa alla vm-relaterade inst\u00E4llningar och forts\u00E4tt\n -XshowSettings:properties\n visa alla vm-relaterade inst\u00E4llningar och forts\u00E4tt\n -XshowSettings:locale\n visa alla spr\u00E5kkonventionsrelaterade inst\u00E4llningar och forts\u00E4tt\n -XaddReads:<module>=<other-module>(,<other-module>)*\n <module> l\u00E4ser andra moduler,\n oavsett moduldeklarationen\n -XaddExports:<module>/<package>=<other-module>(,<other-module>)*\n <module> exporterar <package> till andra moduler,\n oavsett moduldeklarationen\n -Xpatch:<module>=<file>({0}<file>)*\n \u00C5sidos\u00E4tt eller ut\u00F6ka en modul med klasser och resurser\n i JAR-filer eller kataloger\n -Xdisable-@files avaktivera framtida argumentfilsut\u00F6kning\n\n-X-alternativen \u00E4r inte standard och kan \u00E4ndras utan f\u00F6reg\u00E5ende meddelande.\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.macosx.usage=\nF\u00F6ljande alternativ \u00E4r specifika f\u00F6r Mac OS X:\n -XstartOnFirstThread\n k\u00F6r huvudmetoden() p\u00E5 den f\u00F6rsta (AppKit) tr\u00E5den\n -Xdock:name=<application name>"\n \u00E5sidosatt standardapplikationsnamn visas i docka\n -Xdock:icon=<path to icon file>\n \u00E5sidosatt standardikon visas i docka\n\n
|
java.launcher.X.macosx.usage=\nF\u00F6ljande alternativ \u00E4r specifika f\u00F6r Mac OS X:\n -XstartOnFirstThread\n k\u00F6r huvudmetoden() p\u00E5 den f\u00F6rsta (AppKit) tr\u00E5den\n -Xdock:name=<application name>"\n \u00E5sidosatt standardapplikationsnamn visas i docka\n -Xdock:icon=<path to icon file>\n \u00E5sidosatt standardikon visas i docka\n\n
|
||||||
|
|
||||||
java.launcher.cls.error1=Fel: Hittar inte eller kan inte ladda huvudklassen {0}
|
java.launcher.cls.error1=Fel: Kan inte hitta eller kan inte ladda huvudklassen {0}
|
||||||
java.launcher.cls.error2=Fel: Huvudmetoden \u00E4r inte {0} i klassen {1}, definiera huvudmetoden som:\n public static void main(String[] args)
|
java.launcher.cls.error2=Fel: Huvudmetoden \u00E4r inte {0} i klassen {1}, definiera huvudmetoden som:\n public static void main(String[] args)
|
||||||
java.launcher.cls.error3=Fel: Huvudmetoden m\u00E5ste returnera ett v\u00E4rde av typen void i klassen {0}, \ndefiniera huvudmetoden som:\n public static void main(String[] args)
|
java.launcher.cls.error3=Fel: Huvudmetoden m\u00E5ste returnera ett v\u00E4rde av typen void i klassen {0}, \ndefiniera huvudmetoden som:\n public static void main(String[] args)
|
||||||
java.launcher.cls.error4=Fel: Huvudmetoden finns inte i klassen {0}, definiera huvudmetoden som:\n public static void main(String[] args)\neller s\u00E5 m\u00E5ste en JavaFX-applikationsklass ut\u00F6ka {1}
|
java.launcher.cls.error4=Fel: Huvudmetoden finns inte i klassen {0}, definiera huvudmetoden som:\n public static void main(String[] args)\neller s\u00E5 m\u00E5ste en JavaFX-applikationsklass ut\u00F6ka {1}
|
||||||
java.launcher.cls.error5=Fel: JavaFX-k\u00F6rningskomponenter saknas, och de kr\u00E4vs f\u00F6r att kunna k\u00F6ra den h\u00E4r applikationen
|
java.launcher.cls.error5=Fel: JavaFX-exekveringskomponenter saknas, och de kr\u00E4vs f\u00F6r att kunna k\u00F6ra den h\u00E4r applikationen
|
||||||
java.launcher.jar.error1=Fel: Ett ov\u00E4ntat fel intr\u00E4ffade n\u00E4r filen {0} skulle \u00F6ppnas
|
java.launcher.jar.error1=Fel: Ett ov\u00E4ntat fel intr\u00E4ffade n\u00E4r filen {0} skulle \u00F6ppnas
|
||||||
java.launcher.jar.error2=manifest finns inte i {0}
|
java.launcher.jar.error2=manifest finns inte i {0}
|
||||||
java.launcher.jar.error3=inget huvudmanifestattribut i {0}
|
java.launcher.jar.error3=inget huvudmanifestattribut i {0}
|
||||||
java.launcher.init.error=initieringsfel
|
java.launcher.init.error=initieringsfel
|
||||||
java.launcher.javafx.error1=Fel: JavaFX launchApplication-metoden har fel signatur, den \nm\u00E5ste ha deklarerats som statisk och returnera ett v\u00E4rde av typen void
|
java.launcher.javafx.error1=Fel: JavaFX launchApplication-metoden har fel signatur, den \nm\u00E5ste ha deklarerats som statisk och returnera ett v\u00E4rde av typen void
|
||||||
|
java.launcher.module.error1=modulen {0} har inget MainClass-attribut, anv\u00E4nd -m <module>/<main-class>
|
||||||
|
java.launcher.module.error2=Fel: kunde inte hitta eller ladda huvudklassen {0} i modulen {1}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
#
|
#
|
||||||
# This code is free software; you can redistribute it and/or modify it
|
# This code is free software; you can redistribute it and/or modify it
|
||||||
@ -24,7 +24,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.header = \u7528\u6CD5: {0} [-options] class [args...]\n (\u6267\u884C\u7C7B)\n \u6216 {0} [-options] -jar jarfile [args...]\n (\u6267\u884C jar \u6587\u4EF6)\n\u5176\u4E2D\u9009\u9879\u5305\u62EC:\n
|
java.launcher.opt.header = \u7528\u6CD5: {0} [options] class [args...]\n (\u6267\u884C\u7C7B)\n or {0} [options] -jar jarfile [args...]\n (\u6267\u884C jar \u6587\u4EF6)\n or {0} [-options] -mp <modulepath> -m <modulename> | <modulename>/<mainclass>\n (\u6267\u884C\u6A21\u5757\u4E2D\u7684\u4E3B\u7C7B)\n\u5176\u4E2D options \u5305\u62EC:\n
|
||||||
|
|
||||||
java.launcher.opt.datamodel =\ -d{0}\t \u4F7F\u7528 {0} \u4F4D\u6570\u636E\u6A21\u578B (\u5982\u679C\u53EF\u7528)\n
|
java.launcher.opt.datamodel =\ -d{0}\t \u4F7F\u7528 {0} \u4F4D\u6570\u636E\u6A21\u578B (\u5982\u679C\u53EF\u7528)\n
|
||||||
java.launcher.opt.vmselect =\ {0}\t \u9009\u62E9 "{1}" VM\n
|
java.launcher.opt.vmselect =\ {0}\t \u9009\u62E9 "{1}" VM\n
|
||||||
@ -34,10 +34,11 @@ java.launcher.ergo.message1 =\ \u9ED8\u8BA4 VM \u662F {0}
|
|||||||
java.launcher.ergo.message2 =\ \u56E0\u4E3A\u60A8\u662F\u5728\u670D\u52A1\u5668\u7C7B\u8BA1\u7B97\u673A\u4E0A\u8FD0\u884C\u3002\n
|
java.launcher.ergo.message2 =\ \u56E0\u4E3A\u60A8\u662F\u5728\u670D\u52A1\u5668\u7C7B\u8BA1\u7B97\u673A\u4E0A\u8FD0\u884C\u3002\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.footer =\ -cp <\u76EE\u5F55\u548C zip/jar \u6587\u4EF6\u7684\u7C7B\u641C\u7D22\u8DEF\u5F84>\n -classpath <\u76EE\u5F55\u548C zip/jar \u6587\u4EF6\u7684\u7C7B\u641C\u7D22\u8DEF\u5F84>\n \u7528 {0} \u5206\u9694\u7684\u76EE\u5F55, JAR \u6863\u6848\n \u548C ZIP \u6863\u6848\u5217\u8868, \u7528\u4E8E\u641C\u7D22\u7C7B\u6587\u4EF6\u3002\n -D<\u540D\u79F0>=<\u503C>\n \u8BBE\u7F6E\u7CFB\u7EDF\u5C5E\u6027\n -verbose:[class|gc|jni]\n \u542F\u7528\u8BE6\u7EC6\u8F93\u51FA\n -version \u8F93\u51FA\u4EA7\u54C1\u7248\u672C\u5E76\u9000\u51FA\n -version:<\u503C>\n \u9700\u8981\u6307\u5B9A\u7684\u7248\u672C\u624D\u80FD\u8FD0\u884C\n -showversion \u8F93\u51FA\u4EA7\u54C1\u7248\u672C\u5E76\u7EE7\u7EED\n -jre-restrict-search | -no-jre-restrict-search\n \u5728\u7248\u672C\u641C\u7D22\u4E2D\u5305\u62EC/\u6392\u9664\u7528\u6237\u4E13\u7528 JRE\n -? -help \u8F93\u51FA\u6B64\u5E2E\u52A9\u6D88\u606F\n -X \u8F93\u51FA\u975E\u6807\u51C6\u9009\u9879\u7684\u5E2E\u52A9\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n \u6309\u6307\u5B9A\u7684\u7C92\u5EA6\u542F\u7528\u65AD\u8A00\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n \u7981\u7528\u5177\u6709\u6307\u5B9A\u7C92\u5EA6\u7684\u65AD\u8A00\n -esa | -enablesystemassertions\n \u542F\u7528\u7CFB\u7EDF\u65AD\u8A00\n -dsa | -disablesystemassertions\n \u7981\u7528\u7CFB\u7EDF\u65AD\u8A00\n -agentlib:<libname>[=<\u9009\u9879>]\n \u52A0\u8F7D\u672C\u673A\u4EE3\u7406\u5E93 <libname>, \u4F8B\u5982 -agentlib:hprof\n \u53E6\u8BF7\u53C2\u9605 -agentlib:jdwp=help \u548C -agentlib:hprof=help\n -agentpath:<pathname>[=<\u9009\u9879>]\n \u6309\u5B8C\u6574\u8DEF\u5F84\u540D\u52A0\u8F7D\u672C\u673A\u4EE3\u7406\u5E93\n -javaagent:<jarpath>[=<\u9009\u9879>]\n \u52A0\u8F7D Java \u7F16\u7A0B\u8BED\u8A00\u4EE3\u7406, \u8BF7\u53C2\u9605 java.lang.instrument\n -splash:<imagepath>\n \u4F7F\u7528\u6307\u5B9A\u7684\u56FE\u50CF\u663E\u793A\u542F\u52A8\u5C4F\u5E55\n\u6709\u5173\u8BE6\u7EC6\u4FE1\u606F, \u8BF7\u53C2\u9605 http://www.oracle.com/technetwork/java/javase/documentation/index.html\u3002
|
java.launcher.opt.footer =\ -cp <\u76EE\u5F55\u548C zip/jar \u6587\u4EF6\u7684\u7C7B\u641C\u7D22\u8DEF\u5F84>\n -classpath <\u76EE\u5F55\u548C zip/jar \u6587\u4EF6\u7684\u7C7B\u641C\u7D22\u8DEF\u5F84>\n \u7528\u4E8E\u641C\u7D22\u7C7B\u6587\u4EF6\u7684\u76EE\u5F55, JAR \u6863\u6848\n \u548C ZIP \u6863\u6848\u7684\u5217\u8868, \u4F7F\u7528 {0} \u5206\u9694\u3002\n -mp <\u6A21\u5757\u8DEF\u5F84>\n -modulepath <\u6A21\u5757\u8DEF\u5F84>...\n \u7528 {0} \u5206\u9694\u7684\u76EE\u5F55\u5217\u8868, \u6BCF\u4E2A\u76EE\u5F55\n \u90FD\u662F\u4E00\u4E2A\u5305\u542B\u6A21\u5757\u7684\u76EE\u5F55\u3002\n -upgrademodulepath <module path>...\n \u7528 {0} \u5206\u9694\u7684\u76EE\u5F55\u5217\u8868, \u6BCF\u4E2A\u76EE\u5F55\n \u90FD\u662F\u4E00\u4E2A\u5305\u542B\u6A21\u5757\u7684\u76EE\u5F55, \u8FD9\u4E9B\u6A21\u5757\n \u7528\u4E8E\u66FF\u6362\u8FD0\u884C\u65F6\u6620\u50CF\u4E2D\u7684\u53EF\u5347\u7EA7\u6A21\u5757\n -m <modulename> | <modulename>/<mainclass>\n \u8981\u89E3\u6790\u7684\u521D\u59CB\u6A21\u5757\u6216\u4E3B\u6A21\u5757\n -addmods <modulename>[,<modulename>...]\n \u9664\u4E86\u521D\u59CB\u6A21\u5757\u4E4B\u5916\u8981\u89E3\u6790\u7684\u6839\u6A21\u5757\n -limitmods <modulename>[,<modulename>...]\n \u9650\u5236\u53EF\u89C2\u5BDF\u6A21\u5757\u7684\u9886\u57DF\n -listmods[:<modulename>[,<modulename>...]]\n \u5217\u51FA\u53EF\u89C2\u5BDF\u6A21\u5757\u5E76\u9000\u51FA\n -D<name>=<value>\n \u8BBE\u7F6E\u7CFB\u7EDF\u5C5E\u6027\n -verbose:[class|gc|jni]\n \u542F\u7528\u8BE6\u7EC6\u8F93\u51FA\n -version \u8F93\u51FA\u4EA7\u54C1\u7248\u672C\u5E76\u9000\u51FA\n -showversion \u8F93\u51FA\u4EA7\u54C1\u7248\u672C\u5E76\u7EE7\u7EED\n -? -help \u8F93\u51FA\u6B64\u5E2E\u52A9\u6D88\u606F\n -X \u8F93\u51FA\u975E\u6807\u51C6\u9009\u9879\u7684\u5E2E\u52A9\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n \u6309\u6307\u5B9A\u7684\u7C92\u5EA6\u542F\u7528\u65AD\u8A00\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n \u7981\u7528\u5177\u6709\u6307\u5B9A\u7C92\u5EA6\u7684\u65AD\u8A00\n -esa | -enablesystemassertions\n \u542F\u7528\u7CFB\u7EDF\u65AD\u8A00\n -dsa | -disablesystemassertions\n \u7981\u7528\u7CFB\u7EDF\u65AD\u8A00\n -agentlib:<libname>[=<options>]\n \u52A0\u8F7D\u672C\u673A\u4EE3\u7406\u5E93 <libname>, \u4F8B\u5982 -agentlib:jdwp\n \u53E6\u8BF7\u53C2\u9605 -agentlib:jdwp=help\n -agentpath:<pathname>[=<options>]\n \u6309\u5B8C\u6574\u8DEF\u5F84\u540D\u52A0\u8F7D\u672C\u673A\u4EE3\u7406\u5E93\n -javaagent:<jarpath>[=<options>]\n \u52A0\u8F7D Java \u7F16\u7A0B\u8BED\u8A00\u4EE3\u7406, \u8BF7\u53C2\u9605 java.lang.instrument\n -splash:<imagepath>\n \u4F7F\u7528\u6307\u5B9A\u7684\u56FE\u50CF\u663E\u793A\u542F\u52A8\u5C4F\u5E55\n @<filepath> \u4ECE\u6307\u5B9A\u6587\u4EF6\u4E2D\u8BFB\u53D6\u9009\u9879\n
|
||||||
|
See \u6709\u5173\u8BE6\u7EC6\u4FE1\u606F, \u8BF7\u53C2\u9605 http://www.oracle.com/technetwork/java/javase/documentation/index.html\u3002
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.usage=\ -Xmixed \u6DF7\u5408\u6A21\u5F0F\u6267\u884C (\u9ED8\u8BA4)\n -Xint \u4EC5\u89E3\u91CA\u6A21\u5F0F\u6267\u884C\n -Xbootclasspath:<\u7528 {0} \u5206\u9694\u7684\u76EE\u5F55\u548C zip/jar \u6587\u4EF6>\n \u8BBE\u7F6E\u641C\u7D22\u8DEF\u5F84\u4EE5\u5F15\u5BFC\u7C7B\u548C\u8D44\u6E90\n -Xbootclasspath/a:<\u7528 {0} \u5206\u9694\u7684\u76EE\u5F55\u548C zip/jar \u6587\u4EF6>\n \u9644\u52A0\u5728\u5F15\u5BFC\u7C7B\u8DEF\u5F84\u672B\u5C3E\n -Xbootclasspath/p:<\u7528 {0} \u5206\u9694\u7684\u76EE\u5F55\u548C zip/jar \u6587\u4EF6>\n \u7F6E\u4E8E\u5F15\u5BFC\u7C7B\u8DEF\u5F84\u4E4B\u524D\n -Xdiag \u663E\u793A\u9644\u52A0\u8BCA\u65AD\u6D88\u606F\n -Xnoclassgc \u7981\u7528\u7C7B\u5783\u573E\u6536\u96C6\n -Xincgc \u542F\u7528\u589E\u91CF\u5783\u573E\u6536\u96C6\n -Xloggc:<file> \u5C06 GC \u72B6\u6001\u8BB0\u5F55\u5728\u6587\u4EF6\u4E2D (\u5E26\u65F6\u95F4\u6233)\n -Xbatch \u7981\u7528\u540E\u53F0\u7F16\u8BD1\n -Xms<size> \u8BBE\u7F6E\u521D\u59CB Java \u5806\u5927\u5C0F\n -Xmx<size> \u8BBE\u7F6E\u6700\u5927 Java \u5806\u5927\u5C0F\n -Xss<size> \u8BBE\u7F6E Java \u7EBF\u7A0B\u5806\u6808\u5927\u5C0F\n -Xprof \u8F93\u51FA cpu \u914D\u7F6E\u6587\u4EF6\u6570\u636E\n -Xfuture \u542F\u7528\u6700\u4E25\u683C\u7684\u68C0\u67E5, \u9884\u671F\u5C06\u6765\u7684\u9ED8\u8BA4\u503C\n -Xrs \u51CF\u5C11 Java/VM \u5BF9\u64CD\u4F5C\u7CFB\u7EDF\u4FE1\u53F7\u7684\u4F7F\u7528 (\u8BF7\u53C2\u9605\u6587\u6863)\n -Xcheck:jni \u5BF9 JNI \u51FD\u6570\u6267\u884C\u5176\u4ED6\u68C0\u67E5\n -Xshare:off \u4E0D\u5C1D\u8BD5\u4F7F\u7528\u5171\u4EAB\u7C7B\u6570\u636E\n -Xshare:auto \u5728\u53EF\u80FD\u7684\u60C5\u51B5\u4E0B\u4F7F\u7528\u5171\u4EAB\u7C7B\u6570\u636E (\u9ED8\u8BA4)\n -Xshare:on \u8981\u6C42\u4F7F\u7528\u5171\u4EAB\u7C7B\u6570\u636E, \u5426\u5219\u5C06\u5931\u8D25\u3002\n -XshowSettings \u663E\u793A\u6240\u6709\u8BBE\u7F6E\u5E76\u7EE7\u7EED\n -XshowSettings:all\n \u663E\u793A\u6240\u6709\u8BBE\u7F6E\u5E76\u7EE7\u7EED\n -XshowSettings:vm \u663E\u793A\u6240\u6709\u4E0E vm \u76F8\u5173\u7684\u8BBE\u7F6E\u5E76\u7EE7\u7EED\n -XshowSettings:properties\n \u663E\u793A\u6240\u6709\u5C5E\u6027\u8BBE\u7F6E\u5E76\u7EE7\u7EED\n -XshowSettings:locale\n \u663E\u793A\u6240\u6709\u4E0E\u533A\u57DF\u8BBE\u7F6E\u76F8\u5173\u7684\u8BBE\u7F6E\u5E76\u7EE7\u7EED\n\n-X \u9009\u9879\u662F\u975E\u6807\u51C6\u9009\u9879, \u5982\u6709\u66F4\u6539, \u6055\u4E0D\u53E6\u884C\u901A\u77E5\u3002\n
|
java.launcher.X.usage=\ -Xmixed \u6DF7\u5408\u6A21\u5F0F\u6267\u884C (\u9ED8\u8BA4\u503C)\n -Xint \u4EC5\u89E3\u91CA\u6A21\u5F0F\u6267\u884C\n -Xbootclasspath/a:<\u7528 {0} \u5206\u9694\u7684\u76EE\u5F55\u548C zip/jar \u6587\u4EF6>\n \u9644\u52A0\u5728\u5F15\u5BFC\u7C7B\u8DEF\u5F84\u672B\u5C3E\n -Xdiag \u663E\u793A\u9644\u52A0\u8BCA\u65AD\u6D88\u606F\n -Xdiag:resolver \u663E\u793A\u89E3\u6790\u5668\u8BCA\u65AD\u6D88\u606F\n -Xnoclassgc \u7981\u7528\u7C7B\u5783\u573E\u6536\u96C6\n -Xincgc \u542F\u7528\u589E\u91CF\u5783\u573E\u6536\u96C6\n -Xloggc:<file> \u5C06 GC \u72B6\u6001\u8BB0\u5F55\u5728\u6587\u4EF6\u4E2D (\u5E26\u65F6\u95F4\u6233)\n -Xbatch \u7981\u7528\u540E\u53F0\u7F16\u8BD1\n -Xms<size> \u8BBE\u7F6E\u521D\u59CB Java \u5806\u5927\u5C0F\n -Xmx<size> \u8BBE\u7F6E\u6700\u5927 Java \u5806\u5927\u5C0F\n -Xss<size> \u8BBE\u7F6E Java \u7EBF\u7A0B\u5806\u6808\u5927\u5C0F\n -Xprof \u8F93\u51FA cpu \u5206\u6790\u6570\u636E\n -Xfuture \u542F\u7528\u6700\u4E25\u683C\u7684\u68C0\u67E5, \u9884\u671F\u5C06\u6765\u7684\u9ED8\u8BA4\u503C\n -Xrs \u51CF\u5C11 Java/VM \u5BF9\u64CD\u4F5C\u7CFB\u7EDF\u4FE1\u53F7\u7684\u4F7F\u7528 (\u8BF7\u53C2\u9605\u6587\u6863)\n -Xcheck:jni \u5BF9 JNI \u51FD\u6570\u6267\u884C\u5176\u4ED6\u68C0\u67E5\n -Xshare:off \u4E0D\u5C1D\u8BD5\u4F7F\u7528\u5171\u4EAB\u7C7B\u6570\u636E\n -Xshare:auto \u5728\u53EF\u80FD\u7684\u60C5\u51B5\u4E0B\u4F7F\u7528\u5171\u4EAB\u7C7B\u6570\u636E (\u9ED8\u8BA4\u503C)\n -Xshare:on \u8981\u6C42\u4F7F\u7528\u5171\u4EAB\u7C7B\u6570\u636E, \u5426\u5219\u5C06\u5931\u8D25\u3002\n -XshowSettings \u663E\u793A\u6240\u6709\u8BBE\u7F6E\u5E76\u7EE7\u7EED\n -XshowSettings:all\n \u663E\u793A\u6240\u6709\u8BBE\u7F6E\u5E76\u7EE7\u7EED\n -XshowSettings:vm \u663E\u793A\u6240\u6709\u4E0E vm \u76F8\u5173\u7684\u8BBE\u7F6E\u5E76\u7EE7\u7EED\n -XshowSettings:properties\n \u663E\u793A\u6240\u6709\u5C5E\u6027\u8BBE\u7F6E\u5E76\u7EE7\u7EED\n -XshowSettings:locale\n \u663E\u793A\u6240\u6709\u4E0E\u533A\u57DF\u8BBE\u7F6E\u76F8\u5173\u7684\u8BBE\u7F6E\u5E76\u7EE7\u7EED\n -XaddReads:<module>=<other-module>(,<other-module>)*\n <module> \u8BFB\u53D6\u5176\u4ED6\u6A21\u5757,\n \u800C\u65E0\u8BBA\u6A21\u5757\u58F0\u660E\u5982\u4F55\n -XaddExports:<module>/<package>=<other-module>(,<other-module>)*\n <module> \u5C06 <package> \u5BFC\u51FA\u5230\u5176\u4ED6\u6A21\u5757,\n \u800C\u65E0\u8BBA\u6A21\u5757\u58F0\u660E\u5982\u4F55\n -Xpatch:<module>=<file>({0}<file>)*\n \u4F7F\u7528 JAR \u6587\u4EF6\u6216\u76EE\u5F55\u4E2D\u7684\u7C7B\u548C\u8D44\u6E90\n \u8986\u76D6\u6216\u589E\u5F3A\u6A21\u5757\n -Xdisable-@files \u7981\u6B62\u8FDB\u4E00\u6B65\u6269\u5C55\u53C2\u6570\u6587\u4EF6\n\n-X \u9009\u9879\u662F\u975E\u6807\u51C6\u9009\u9879, \u5982\u6709\u66F4\u6539, \u6055\u4E0D\u53E6\u884C\u901A\u77E5\u3002\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.macosx.usage=\n\u4EE5\u4E0B\u9009\u9879\u4E3A Mac OS X \u7279\u5B9A\u7684\u9009\u9879:\n -XstartOnFirstThread\n \u5728\u7B2C\u4E00\u4E2A (AppKit) \u7EBF\u7A0B\u4E0A\u8FD0\u884C main() \u65B9\u6CD5\n -Xdock:name=<\u5E94\u7528\u7A0B\u5E8F\u540D\u79F0>"\n \u8986\u76D6\u505C\u9760\u680F\u4E2D\u663E\u793A\u7684\u9ED8\u8BA4\u5E94\u7528\u7A0B\u5E8F\u540D\u79F0\n -Xdock:icon=<\u56FE\u6807\u6587\u4EF6\u7684\u8DEF\u5F84>\n \u8986\u76D6\u505C\u9760\u680F\u4E2D\u663E\u793A\u7684\u9ED8\u8BA4\u56FE\u6807\n\n
|
java.launcher.X.macosx.usage=\n\u4EE5\u4E0B\u9009\u9879\u4E3A Mac OS X \u7279\u5B9A\u7684\u9009\u9879:\n -XstartOnFirstThread\n \u5728\u7B2C\u4E00\u4E2A (AppKit) \u7EBF\u7A0B\u4E0A\u8FD0\u884C main() \u65B9\u6CD5\n -Xdock:name=<\u5E94\u7528\u7A0B\u5E8F\u540D\u79F0>"\n \u8986\u76D6\u505C\u9760\u680F\u4E2D\u663E\u793A\u7684\u9ED8\u8BA4\u5E94\u7528\u7A0B\u5E8F\u540D\u79F0\n -Xdock:icon=<\u56FE\u6807\u6587\u4EF6\u7684\u8DEF\u5F84>\n \u8986\u76D6\u505C\u9760\u680F\u4E2D\u663E\u793A\u7684\u9ED8\u8BA4\u56FE\u6807\n\n
|
||||||
@ -52,3 +53,5 @@ java.launcher.jar.error2=\u5728{0}\u4E2D\u627E\u4E0D\u5230\u6E05\u5355
|
|||||||
java.launcher.jar.error3={0}\u4E2D\u6CA1\u6709\u4E3B\u6E05\u5355\u5C5E\u6027
|
java.launcher.jar.error3={0}\u4E2D\u6CA1\u6709\u4E3B\u6E05\u5355\u5C5E\u6027
|
||||||
java.launcher.init.error=\u521D\u59CB\u5316\u9519\u8BEF
|
java.launcher.init.error=\u521D\u59CB\u5316\u9519\u8BEF
|
||||||
java.launcher.javafx.error1=\u9519\u8BEF: JavaFX launchApplication \u65B9\u6CD5\u5177\u6709\u9519\u8BEF\u7684\u7B7E\u540D, \u5FC5\u987B\n\u5C06\u65B9\u6CD5\u58F0\u660E\u4E3A\u9759\u6001\u65B9\u6CD5\u5E76\u8FD4\u56DE\u7A7A\u7C7B\u578B\u7684\u503C
|
java.launcher.javafx.error1=\u9519\u8BEF: JavaFX launchApplication \u65B9\u6CD5\u5177\u6709\u9519\u8BEF\u7684\u7B7E\u540D, \u5FC5\u987B\n\u5C06\u65B9\u6CD5\u58F0\u660E\u4E3A\u9759\u6001\u65B9\u6CD5\u5E76\u8FD4\u56DE\u7A7A\u7C7B\u578B\u7684\u503C
|
||||||
|
java.launcher.module.error1=\u6A21\u5757 {0} \u4E0D\u5177\u6709 MainClass \u5C5E\u6027, \u8BF7\u4F7F\u7528 -m <module>/<main-class>
|
||||||
|
java.launcher.module.error2=\u9519\u8BEF: \u5728\u6A21\u5757 {1} \u4E2D\u627E\u4E0D\u5230\u6216\u65E0\u6CD5\u52A0\u8F7D\u4E3B\u7C7B {0}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
#
|
#
|
||||||
# This code is free software; you can redistribute it and/or modify it
|
# This code is free software; you can redistribute it and/or modify it
|
||||||
@ -24,7 +24,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.header = \u7528\u6CD5: {0} [-options] class [args...]\n (\u57F7\u884C\u985E\u5225)\n \u6216 {0} [-options] -jar jarfile [args...]\n (\u57F7\u884C jar \u6A94\u6848)\n\u9078\u9805\u5305\u62EC:\n
|
java.launcher.opt.header = \u7528\u6CD5: {0} [options] class [args...]\n (\u7528\u65BC\u57F7\u884C\u985E\u5225)\n \u6216 {0} [options] -jar jarfile [args...]\n (\u7528\u65BC\u57F7\u884C jar \u6A94\u6848)\n \u6216 {0} [-options] -mp <modulepath> -m <modulename> | <modulename>/<mainclass>\n (\u7528\u65BC\u57F7\u884C\u6A21\u7D44\u4E2D\u7684\u4E3B\u8981\u985E\u5225)\n\u5176\u4E2D\u7684\u9078\u9805\u5305\u62EC:\n
|
||||||
|
|
||||||
java.launcher.opt.datamodel =\ -d{0}\t \u4F7F\u7528 {0} \u4F4D\u5143\u8CC7\u6599\u6A21\u578B (\u5982\u679C\u6709\u7684\u8A71)\n
|
java.launcher.opt.datamodel =\ -d{0}\t \u4F7F\u7528 {0} \u4F4D\u5143\u8CC7\u6599\u6A21\u578B (\u5982\u679C\u6709\u7684\u8A71)\n
|
||||||
java.launcher.opt.vmselect =\ {0}\t \u9078\u53D6 "{1}" VM\n
|
java.launcher.opt.vmselect =\ {0}\t \u9078\u53D6 "{1}" VM\n
|
||||||
@ -34,17 +34,18 @@ java.launcher.ergo.message1 =\ \u9810\u8A2D\u7684 VM \u70BA {0
|
|||||||
java.launcher.ergo.message2 =\ \u56E0\u70BA\u60A8\u6B63\u5728\u4F3A\u670D\u5668\u985E\u5225\u6A5F\u5668\u4E0A\u57F7\u884C\u3002\n
|
java.launcher.ergo.message2 =\ \u56E0\u70BA\u60A8\u6B63\u5728\u4F3A\u670D\u5668\u985E\u5225\u6A5F\u5668\u4E0A\u57F7\u884C\u3002\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.opt.footer =\ -cp <class search path of directories and zip/jar files>\n -classpath <class search path of directories and zip/jar files>\n \u4F7F\u7528 {0} \u5340\u9694\u7684\u76EE\u9304\u3001JAR \u5B58\u6A94\u4EE5\u53CA\n ZIP \u5B58\u6A94\u6E05\u55AE\u4F86\u641C\u5C0B\u985E\u5225\u6A94\u6848\u3002\n -D<name>=<value>\n \u8A2D\u5B9A\u7CFB\u7D71\u5C6C\u6027\n -verbose:[class|gc|jni]\n \u555F\u7528\u8A73\u7D30\u8CC7\u8A0A\u8F38\u51FA\n -version \u5217\u5370\u7522\u54C1\u7248\u672C\u4E26\u7D50\u675F\n -version:<value>\n \u9700\u8981\u6307\u5B9A\u7684\u7248\u672C\u624D\u80FD\u57F7\u884C\n -showversion \u5217\u5370\u7522\u54C1\u7248\u672C\u4E26\u7E7C\u7E8C\n -jre-restrict-search | -no-jre-restrict-search\n \u5728\u7248\u672C\u641C\u5C0B\u4E2D\u5305\u62EC/\u6392\u9664\u4F7F\u7528\u8005\u5C08\u7528 JRE\n -? -help \u5217\u5370\u6B64\u8AAA\u660E\u8A0A\u606F\n -X \u5217\u5370\u975E\u6A19\u6E96\u9078\u9805\u7684\u8AAA\u660E\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n \u555F\u7528\u542B\u6307\u5B9A\u8A73\u7D30\u7A0B\u5EA6\u7684\u5BA3\u544A\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n \u505C\u7528\u542B\u6307\u5B9A\u8A73\u7D30\u7A0B\u5EA6\u7684\u5BA3\u544A\n -esa | -enablesystemassertions\n \u555F\u7528\u7CFB\u7D71\u5BA3\u544A\n -dsa | -disablesystemassertions\n \u505C\u7528\u7CFB\u7D71\u5BA3\u544A\n -agentlib:<libname>[=<options>]\n \u8F09\u5165\u539F\u751F\u4EE3\u7406\u7A0B\u5F0F\u7A0B\u5F0F\u5EAB <libname>\uFF0C\u4F8B\u5982 -agentlib:hprof\n \u53E6\u8ACB\u53C3\u95B1 -agentlib:jdwp=help \u8207 -agentlib:hprof=help\n -agentpath:<pathname>[=<options>]\n \u4F7F\u7528\u5B8C\u6574\u8DEF\u5F91\u540D\u7A31\u8F09\u5165\u539F\u751F\u4EE3\u7406\u7A0B\u5F0F\u7A0B\u5F0F\u5EAB\n -javaagent:<jarpath>[=<options>]\n \u8F09\u5165 Java \u7A0B\u5F0F\u8A9E\u8A00\u4EE3\u7406\u7A0B\u5F0F\uFF0C\u8ACB\u53C3\u95B1 java.lang.instrument\n -splash:<imagepath>\n \u986F\u793A\u6307\u5B9A\u5F71\u50CF\u7684\u8EDF\u9AD4\u8CC7\u8A0A\u756B\u9762\n\u8ACB\u53C3\u95B1 http://www.oracle.com/technetwork/java/javase/documentation/index.html \u66B8\u89E3\u8A73\u7D30\u8CC7\u8A0A\u3002
|
java.launcher.opt.footer =\ -cp <class search path of directories and zip/jar files>\n -classpath <class search path of directories and zip/jar files>\n \u4F7F\u7528\u4EE5 {0} \u5340\u9694\u7684\u76EE\u9304\u3001JAR \u5B58\u6A94\u4EE5\u53CA\n ZIP \u5B58\u6A94\u6E05\u55AE\u4F86\u641C\u5C0B\u985E\u5225\u6A94\u6848\u3002\n -mp <module path>\n -modulepath <module path>...\n \u4EE5 {0} \u5340\u9694\u7684\u76EE\u9304\u6E05\u55AE\uFF0C\u6BCF\u500B\u76EE\u9304\n \u5747\u70BA\u6A21\u7D44\u76EE\u9304\u3002\n -upgrademodulepath <module path>...\n \u4EE5 {0} \u5340\u9694\u7684\u76EE\u9304\u6E05\u55AE\uFF0C\u6BCF\u500B\u76EE\u9304\n \u5747\u70BA\u6A21\u7D44\u76EE\u9304\uFF0C\u4E14\u7576\u4E2D\u7684\u6A21\u7D44\u53EF\u53D6\u4EE3\n \u7A0B\u5F0F\u5BE6\u969B\u57F7\u884C\u5F71\u50CF\u4E2D\u7684\u53EF\u5347\u7D1A\u6A21\u7D44\n -m <modulename> | <modulename>/<mainclass>\n \u8981\u89E3\u6790\u7684\u8D77\u59CB\u6216\u4E3B\u8981\u6A21\u7D44\n -addmods <modulename>[,<modulename>...]\n \u9664\u4E86\u8D77\u59CB\u6A21\u7D44\u5916\uFF0C\u8981\u89E3\u6790\u7684\u6839\u6A21\u7D44\n -limitmods <modulename>[,<modulename>...]\n \u9650\u5236\u53EF\u76E3\u6E2C\u6A21\u7D44\u7684\u7BC4\u570D\n -listmods[:<modulename>[,<modulename>...]]\n \u5217\u51FA\u53EF\u76E3\u6E2C\u6A21\u7D44\u4E26\u7D50\u675F\n -D<name>=<value>\n \u8A2D\u5B9A\u7CFB\u7D71\u5C6C\u6027\n -verbose:[class|gc|jni]\n \u555F\u7528\u8A73\u7D30\u8CC7\u8A0A\u8F38\u51FA\n -version \u5217\u5370\u7522\u54C1\u7248\u672C\u4E26\u7D50\u675F\n -showversion \u5217\u5370\u7522\u54C1\u7248\u672C\u4E26\u7E7C\u7E8C\n -? -help \u5217\u5370\u6B64\u8AAA\u660E\u8A0A\u606F\n -X \u5217\u5370\u975E\u6A19\u6E96\u9078\u9805\u7684\u8AAA\u660E\n -ea[:<packagename>...|:<classname>]\n -enableassertions[:<packagename>...|:<classname>]\n \u555F\u7528\u542B\u6307\u5B9A\u8A73\u7D30\u7A0B\u5EA6\u7684\u5BA3\u544A\n -da[:<packagename>...|:<classname>]\n -disableassertions[:<packagename>...|:<classname>]\n \u505C\u7528\u542B\u6307\u5B9A\u8A73\u7D30\u7A0B\u5EA6\u7684\u5BA3\u544A\n -esa | -enablesystemassertions\n \u555F\u7528\u7CFB\u7D71\u5BA3\u544A\n -dsa | -disablesystemassertions\n \u505C\u7528\u7CFB\u7D71\u5BA3\u544A\n -agentlib:<libname>[=<options>]\n \u8F09\u5165\u539F\u751F\u4EE3\u7406\u7A0B\u5F0F\u7A0B\u5F0F\u5EAB <libname>\uFF0C\u4F8B\u5982 -agentlib:jdwp\n \u53E6\u8ACB\u53C3\u95B1 -agentlib:jdwp=help\n -agentpath:<pathname>[=<options>]\n \u4F7F\u7528\u5B8C\u6574\u8DEF\u5F91\u540D\u7A31\u8F09\u5165\u539F\u751F\u4EE3\u7406\u7A0B\u5F0F\u7A0B\u5F0F\u5EAB\n -javaagent:<jarpath>[=<options>]\n \u8F09\u5165 Java \u7A0B\u5F0F\u8A9E\u8A00\u4EE3\u7406\u7A0B\u5F0F\uFF0C\u8ACB\u53C3\u95B1 java.lang.instrument\n -splash:<imagepath>\n \u4EE5\u6307\u5B9A\u5F71\u50CF\u986F\u793A\u8EDF\u9AD4\u8CC7\u8A0A\u756B\u9762\n @<filepath> \u5F9E\u6307\u5B9A\u6A94\u6848\u8B80\u53D6\u9078\u9805\n
|
||||||
|
See \u8ACB\u53C3\u95B1 http://www.oracle.com/technetwork/java/javase/documentation/index.html \u66B8\u89E3\u8A73\u7D30\u8CC7\u8A0A\u3002
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.usage=\ -Xmixed \u6DF7\u5408\u6A21\u5F0F\u57F7\u884C (\u9810\u8A2D)\n -Xint \u50C5\u9650\u89E3\u8B6F\u6A21\u5F0F\u57F7\u884C\n -Xbootclasspath:<\u4EE5 {0} \u5206\u9694\u7684\u76EE\u9304\u548C zip/jar \u6A94\u6848>\n \u8A2D\u5B9A\u555F\u52D5\u5B89\u88DD\u985E\u5225\u548C\u8CC7\u6E90\u7684\u641C\u5C0B\u8DEF\u5F91\n -Xbootclasspath/a:<\u4EE5 {0} \u5206\u9694\u7684\u76EE\u9304\u548C zip/jar \u6A94\u6848>\n \u9644\u52A0\u5728\u555F\u52D5\u5B89\u88DD\u985E\u5225\u8DEF\u5F91\u7684\u7D50\u5C3E\n -Xbootclasspath/p:<\u4EE5 {0} \u5206\u9694\u7684\u76EE\u9304\u548C zip/jar \u6A94\u6848>\n \u9644\u52A0\u5728\u555F\u52D5\u5B89\u88DD\u985E\u5225\u8DEF\u5F91\u7684\u524D\u9762\n -Xdiag \u986F\u793A\u5176\u4ED6\u7684\u8A3A\u65B7\u8A0A\u606F\n -Xnoclassgc \u505C\u7528\u985E\u5225\u8CC7\u6E90\u56DE\u6536\n -Xincgc \u555F\u7528\u6F38\u9032\u8CC7\u6E90\u56DE\u6536\n -Xloggc:<file> \u5229\u7528\u6642\u6233\u5C07 GC \u72C0\u614B\u8A18\u9304\u81F3\u6A94\u6848\u4E2D\n -Xbatch \u505C\u7528\u80CC\u666F\u7DE8\u8B6F\n -Xms<size> \u8A2D\u5B9A\u8D77\u59CB Java \u5806\u96C6\u5927\u5C0F\n -Xmx<size> \u8A2D\u5B9A Java \u5806\u96C6\u5927\u5C0F\u4E0A\u9650\n -Xss<size> \u8A2D\u5B9A Java \u57F7\u884C\u7DD2\u5806\u758A\u5927\u5C0F\n -Xprof \u8F38\u51FA CPU \u5206\u6790\u8CC7\u6599\n -Xfuture \u555F\u7528\u6700\u56B4\u683C\u7684\u6AA2\u67E5\uFF0C\u9810\u5148\u4F5C\u70BA\u5C07\u4F86\u7684\u9810\u8A2D\n -Xrs \u6E1B\u5C11 Java/VM \u4F7F\u7528\u4F5C\u696D\u7CFB\u7D71\u4FE1\u865F (\u8ACB\u53C3\u95B1\u6587\u4EF6)\n -Xcheck:jni \u57F7\u884C\u5176\u4ED6\u7684 JNI \u51FD\u6578\u6AA2\u67E5\n -Xshare:off \u4E0D\u5617\u8A66\u4F7F\u7528\u5171\u7528\u985E\u5225\u8CC7\u6599\n -Xshare:auto \u5118\u53EF\u80FD\u4F7F\u7528\u5171\u7528\u985E\u5225\u8CC7\u6599 (\u9810\u8A2D)\n -Xshare:on \u9700\u8981\u4F7F\u7528\u5171\u7528\u985E\u5225\u8CC7\u6599\uFF0C\u5426\u5247\u5931\u6557\u3002\n -XshowSettings \u986F\u793A\u6240\u6709\u8A2D\u5B9A\u503C\u4E26\u7E7C\u7E8C\n -XshowSettings:all\n \u986F\u793A\u6240\u6709\u8A2D\u5B9A\u503C\u4E26\u7E7C\u7E8C\n -XshowSettings:vm \u986F\u793A\u6240\u6709 VM \u76F8\u95DC\u8A2D\u5B9A\u503C\u4E26\u7E7C\u7E8C\n -XshowSettings:properties\n \u986F\u793A\u6240\u6709\u5C6C\u6027\u8A2D\u5B9A\u503C\u4E26\u7E7C\u7E8C\n -XshowSettings:locale\n \u986F\u793A\u6240\u6709\u5730\u5340\u8A2D\u5B9A\u76F8\u95DC\u8A2D\u5B9A\u503C\u4E26\u7E7C\u7E8C\n\n -X \u9078\u9805\u4E0D\u662F\u6A19\u6E96\u9078\u9805\uFF0C\u82E5\u6709\u8B8A\u66F4\u4E0D\u53E6\u884C\u901A\u77E5\u3002\n
|
java.launcher.X.usage=\ -Xmixed \u6DF7\u5408\u6A21\u5F0F\u57F7\u884C (\u9810\u8A2D)\n -Xint \u50C5\u9650\u89E3\u8B6F\u6A21\u5F0F\u57F7\u884C\n -Xbootclasspath/a:<\u4EE5 {0} \u5206\u9694\u7684\u76EE\u9304\u548C zip/jar \u6A94\u6848>\n \u9644\u52A0\u5728\u555F\u52D5\u5B89\u88DD\u985E\u5225\u8DEF\u5F91\u7684\u7D50\u5C3E\n -Xdiag \u986F\u793A\u5176\u4ED6\u7684\u8A3A\u65B7\u8A0A\u606F\n -Xdiag:resolver \u986F\u793A\u89E3\u6790\u5668\u8A3A\u65B7\u8A0A\u606F\n -Xnoclassgc \u505C\u7528\u985E\u5225\u8CC7\u6E90\u56DE\u6536\n -Xincgc \u555F\u7528\u6F38\u9032\u8CC7\u6E90\u56DE\u6536\n -Xloggc:<file> \u5C07 GC \u72C0\u614B\u548C\u6642\u6233\u8A18\u9304\u81F3\u6A94\u6848\n -Xbatch \u505C\u7528\u80CC\u666F\u7DE8\u8B6F\n -Xms<size> \u8A2D\u5B9A\u8D77\u59CB Java \u5806\u96C6\u5927\u5C0F\n -Xmx<size> \u8A2D\u5B9A Java \u5806\u96C6\u5927\u5C0F\u4E0A\u9650\n -Xss<size> \u8A2D\u5B9A Java \u57F7\u884C\u7DD2\u5806\u758A\u5927\u5C0F\n -Xprof \u8F38\u51FA CPU \u5206\u6790\u8CC7\u6599\n -Xfuture \u555F\u7528\u6700\u56B4\u683C\u7684\u6AA2\u67E5\uFF0C\u9810\u5148\u4F5C\u70BA\u5C07\u4F86\u7684\u9810\u8A2D\n -Xrs \u6E1B\u5C11 Java/VM \u4F7F\u7528\u4F5C\u696D\u7CFB\u7D71\u4FE1\u865F (\u8ACB\u53C3\u95B1\u6587\u4EF6)\n -Xcheck:jni \u57F7\u884C\u5176\u4ED6\u7684 JNI \u51FD\u6578\u6AA2\u67E5\n -Xshare:off \u4E0D\u5617\u8A66\u4F7F\u7528\u5171\u7528\u985E\u5225\u8CC7\u6599\n -Xshare:auto \u5118\u53EF\u80FD\u4F7F\u7528\u5171\u7528\u985E\u5225\u8CC7\u6599 (\u9810\u8A2D)\n -Xshare:on \u9700\u8981\u4F7F\u7528\u5171\u7528\u985E\u5225\u8CC7\u6599\uFF0C\u5426\u5247\u5931\u6557\u3002\n -XshowSettings \u986F\u793A\u6240\u6709\u8A2D\u5B9A\u503C\u4E26\u7E7C\u7E8C\n -XshowSettings:all\n \u986F\u793A\u6240\u6709\u8A2D\u5B9A\u503C\u4E26\u7E7C\u7E8C\n -XshowSettings:vm \u986F\u793A\u6240\u6709 VM \u76F8\u95DC\u8A2D\u5B9A\u503C\u4E26\u7E7C\u7E8C\n -XshowSettings:properties\n \u986F\u793A\u6240\u6709\u5C6C\u6027\u8A2D\u5B9A\u503C\u4E26\u7E7C\u7E8C\n -XshowSettings:locale\n \u986F\u793A\u6240\u6709\u5730\u5340\u8A2D\u5B9A\u76F8\u95DC\u8A2D\u5B9A\u503C\u4E26\u7E7C\u7E8C\n -XaddReads:<module>=<other-module>(,<other-module>)*\n \u7121\u8AD6\u6A21\u7D44\u5BA3\u544A\u70BA\u4F55\uFF0C\n <module> \u6703\u8B80\u53D6\u5176\u4ED6\u6A21\u7D44\n -XaddExports:<module>/<package>=<other-module>(,<other-module>)*\n \u7121\u8AD6\u6A21\u7D44\u5BA3\u544A\u70BA\u4F55\uFF0C<module> \u6703\u5C07 <package>\n \u532F\u51FA\u81F3\u5176\u4ED6\u6A21\u7D44\n -Xpatch:<module>=<file>({0}<file>)*\n \u8986\u5BEB\u6216\u52A0\u5F37 JAR \u6A94\u6848\u6216\u76EE\u9304\u4E2D\u7684\n \u6A21\u7D44\u985E\u578B\u548C\u8CC7\u6E90\n -Xdisable-@files \u505C\u7528\u9032\u4E00\u6B65\u7684\u5F15\u6578\u6A94\u6848\u64F4\u5145\n\n-X \u9078\u9805\u4E0D\u662F\u6A19\u6E96\u9078\u9805\uFF0C\u82E5\u6709\u8B8A\u66F4\u4E0D\u53E6\u884C\u901A\u77E5\u3002\n
|
||||||
|
|
||||||
# Translators please note do not translate the options themselves
|
# Translators please note do not translate the options themselves
|
||||||
java.launcher.X.macosx.usage=\n\u4E0B\u5217\u662F Mac OS X \u7279\u5B9A\u9078\u9805:\n -XstartOnFirstThread\n \u5728\u7B2C\u4E00\u500B (AppKit) \u57F7\u884C\u7DD2\u57F7\u884C main() \u65B9\u6CD5\n -Xdock:name=<application name>"\n \u8986\u5BEB\u7D50\u5408\u8AAA\u660E\u756B\u9762\u4E2D\u986F\u793A\u7684\u9810\u8A2D\u61C9\u7528\u7A0B\u5F0F\u540D\u7A31\n -Xdock:icon=<path to icon file>\n \u8986\u5BEB\u7D50\u5408\u8AAA\u660E\u756B\u9762\u4E2D\u986F\u793A\u7684\u9810\u8A2D\u5716\u793A\n\n
|
java.launcher.X.macosx.usage=\n\u4E0B\u5217\u662F Mac OS X \u7279\u5B9A\u9078\u9805:\n -XstartOnFirstThread\n \u5728\u7B2C\u4E00\u500B (AppKit) \u57F7\u884C\u7DD2\u57F7\u884C main() \u65B9\u6CD5\n -Xdock:name=<application name>"\n \u8986\u5BEB\u7D50\u5408\u8AAA\u660E\u756B\u9762\u4E2D\u986F\u793A\u7684\u9810\u8A2D\u61C9\u7528\u7A0B\u5F0F\u540D\u7A31\n -Xdock:icon=<path to icon file>\n \u8986\u5BEB\u7D50\u5408\u8AAA\u660E\u756B\u9762\u4E2D\u986F\u793A\u7684\u9810\u8A2D\u5716\u793A\n\n
|
||||||
|
|
||||||
java.launcher.cls.error1=\u932F\u8AA4: \u627E\u4E0D\u5230\u6216\u7121\u6CD5\u8F09\u5165\u4E3B\u8981\u985E\u5225 {0}
|
java.launcher.cls.error1=\u932F\u8AA4: \u627E\u4E0D\u5230\u6216\u7121\u6CD5\u8F09\u5165\u4E3B\u8981\u985E\u5225 {0}
|
||||||
java.launcher.cls.error2=\u932F\u8AA4: \u4E3B\u8981\u65B9\u6CD5\u4E0D\u662F\u985E\u5225 {1} \u4E2D\u7684 {0}\uFF0C\u8ACB\u5B9A\u7FA9\u4E3B\u8981\u65B9\u6CD5\u70BA:\n public static void main(String[] args)
|
java.launcher.cls.error2=\u932F\u8AA4: \u4E3B\u8981\u65B9\u6CD5\u4E0D\u662F\u985E\u5225 {1} \u4E2D\u7684 {0}\uFF0C\u8ACB\u5B9A\u7FA9\u4E3B\u8981\u65B9\u6CD5\u70BA:\n public static void main(String[] args)
|
||||||
java.launcher.cls.error3=\u932F\u8AA4: \u4E3B\u8981\u65B9\u6CD5\u5FC5\u9808\u50B3\u56DE\u985E\u5225 {0} \u4E2D void \u985E\u578B\u7684\u503C\uFF0C \n\u8ACB\u5B9A\u7FA9\u4E3B\u8981\u65B9\u6CD5\u70BA:\n public static void main(String[] args)
|
java.launcher.cls.error3=\u932F\u8AA4: \u4E3B\u8981\u65B9\u6CD5\u5FC5\u9808\u50B3\u56DE\u985E\u5225 {0} \u4E2D void \u985E\u578B\u7684\u503C\uFF0C\n\u8ACB\u5B9A\u7FA9\u4E3B\u8981\u65B9\u6CD5\u70BA:\n public static void main(String[] args)
|
||||||
java.launcher.cls.error4=\u932F\u8AA4: \u5728\u985E\u5225 {0} \u4E2D\u627E\u4E0D\u5230\u4E3B\u8981\u65B9\u6CD5\uFF0C\u8ACB\u5B9A\u7FA9\u4E3B\u8981\u65B9\u6CD5\u70BA:\n public static void main(String[] args)\n\u6216\u8005 JavaFX \u61C9\u7528\u7A0B\u5F0F\u985E\u5225\u5FC5\u9808\u64F4\u5145 {1}
|
java.launcher.cls.error4=\u932F\u8AA4: \u5728\u985E\u5225 {0} \u4E2D\u627E\u4E0D\u5230\u4E3B\u8981\u65B9\u6CD5\uFF0C\u8ACB\u5B9A\u7FA9\u4E3B\u8981\u65B9\u6CD5\u70BA:\n public static void main(String[] args)\n\u6216\u8005 JavaFX \u61C9\u7528\u7A0B\u5F0F\u985E\u5225\u5FC5\u9808\u64F4\u5145 {1}
|
||||||
java.launcher.cls.error5=\u932F\u8AA4: \u907A\u6F0F\u57F7\u884C\u6B64\u61C9\u7528\u7A0B\u5F0F\u6240\u9700\u7684 JavaFX \u7A0B\u5F0F\u5BE6\u969B\u57F7\u884C\u5143\u4EF6
|
java.launcher.cls.error5=\u932F\u8AA4: \u907A\u6F0F\u57F7\u884C\u6B64\u61C9\u7528\u7A0B\u5F0F\u6240\u9700\u7684 JavaFX \u7A0B\u5F0F\u5BE6\u969B\u57F7\u884C\u5143\u4EF6
|
||||||
java.launcher.jar.error1=\u932F\u8AA4: \u5617\u8A66\u958B\u555F\u6A94\u6848 {0} \u6642\u767C\u751F\u672A\u9810\u671F\u7684\u932F\u8AA4
|
java.launcher.jar.error1=\u932F\u8AA4: \u5617\u8A66\u958B\u555F\u6A94\u6848 {0} \u6642\u767C\u751F\u672A\u9810\u671F\u7684\u932F\u8AA4
|
||||||
@ -52,3 +53,5 @@ java.launcher.jar.error2=\u5728 {0} \u4E2D\u627E\u4E0D\u5230\u8CC7\u8A0A\u6E05\u
|
|||||||
java.launcher.jar.error3={0} \u4E2D\u6C92\u6709\u4E3B\u8981\u8CC7\u8A0A\u6E05\u55AE\u5C6C\u6027
|
java.launcher.jar.error3={0} \u4E2D\u6C92\u6709\u4E3B\u8981\u8CC7\u8A0A\u6E05\u55AE\u5C6C\u6027
|
||||||
java.launcher.init.error=\u521D\u59CB\u5316\u932F\u8AA4
|
java.launcher.init.error=\u521D\u59CB\u5316\u932F\u8AA4
|
||||||
java.launcher.javafx.error1=\u932F\u8AA4: JavaFX launchApplication \u65B9\u6CD5\u7684\u7C3D\u7AE0\u932F\u8AA4\uFF0C\u5B83\n\u5FC5\u9808\u5BA3\u544A\u70BA\u975C\u614B\u4E26\u50B3\u56DE void \u985E\u578B\u7684\u503C
|
java.launcher.javafx.error1=\u932F\u8AA4: JavaFX launchApplication \u65B9\u6CD5\u7684\u7C3D\u7AE0\u932F\u8AA4\uFF0C\u5B83\n\u5FC5\u9808\u5BA3\u544A\u70BA\u975C\u614B\u4E26\u50B3\u56DE void \u985E\u578B\u7684\u503C
|
||||||
|
java.launcher.module.error1=\u6A21\u7D44 {0} \u4E0D\u542B MainClass \u5C6C\u6027\uFF0C\u8ACB\u4F7F\u7528 -m <module>/<main-class>
|
||||||
|
java.launcher.module.error2=\u932F\u8AA4: \u627E\u4E0D\u5230\u6216\u7121\u6CD5\u8F09\u5165\u6A21\u7D44 {1} \u4E2D\u7684\u4E3B\u8981\u985E\u5225 {0}
|
||||||
|
@ -62,7 +62,7 @@ class AnnotationInvocationHandler implements InvocationHandler, Serializable {
|
|||||||
// Handle Object and Annotation methods
|
// Handle Object and Annotation methods
|
||||||
if (member.equals("equals") && paramTypes.length == 1 &&
|
if (member.equals("equals") && paramTypes.length == 1 &&
|
||||||
paramTypes[0] == Object.class)
|
paramTypes[0] == Object.class)
|
||||||
return equalsImpl(args[0]);
|
return equalsImpl(proxy, args[0]);
|
||||||
if (paramTypes.length != 0)
|
if (paramTypes.length != 0)
|
||||||
throw new AssertionError("Too many parameters for an annotation method");
|
throw new AssertionError("Too many parameters for an annotation method");
|
||||||
|
|
||||||
@ -209,8 +209,8 @@ class AnnotationInvocationHandler implements InvocationHandler, Serializable {
|
|||||||
/**
|
/**
|
||||||
* Implementation of dynamicProxy.equals(Object o)
|
* Implementation of dynamicProxy.equals(Object o)
|
||||||
*/
|
*/
|
||||||
private Boolean equalsImpl(Object o) {
|
private Boolean equalsImpl(Object proxy, Object o) {
|
||||||
if (o == this)
|
if (o == proxy)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
if (!type.isInstance(o))
|
if (!type.isInstance(o))
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.tools.keytool;
|
package sun.security.tools.keytool;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class represents the <code>ResourceBundle</code>
|
* <p> This class represents the <code>ResourceBundle</code>
|
||||||
* for the keytool.
|
* for the keytool.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -48,7 +48,7 @@ public class Resources_de extends java.util.ListResourceBundle {
|
|||||||
"Schl\u00FCssel- und Zertifikatsverwaltungstool"},
|
"Schl\u00FCssel- und Zertifikatsverwaltungstool"},
|
||||||
{"Commands.", "Befehle:"},
|
{"Commands.", "Befehle:"},
|
||||||
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
||||||
"\"keytool -command_name -help\" f\u00FCr Verwendung von command_name verwenden"},
|
"Verwenden Sie \"keytool -command_name -help\" f\u00FCr die Verwendung von command_name.\nVerwenden Sie die Option -conf <url>, um eine vorkonfigurierte Optionsdatei anzugeben."},
|
||||||
// keytool: help: commands
|
// keytool: help: commands
|
||||||
{"Generates.a.certificate.request",
|
{"Generates.a.certificate.request",
|
||||||
"Generiert eine Zertifikatanforderung"}, //-certreq
|
"Generiert eine Zertifikatanforderung"}, //-certreq
|
||||||
@ -72,7 +72,7 @@ public class Resources_de extends java.util.ListResourceBundle {
|
|||||||
{"Imports.entries.from.a.JDK.1.1.x.style.identity.database",
|
{"Imports.entries.from.a.JDK.1.1.x.style.identity.database",
|
||||||
"Importiert Eintr\u00E4ge aus einer Identity-Datenbank im JDK 1.1.x-Stil"}, //-identitydb
|
"Importiert Eintr\u00E4ge aus einer Identity-Datenbank im JDK 1.1.x-Stil"}, //-identitydb
|
||||||
{"Imports.a.certificate.or.a.certificate.chain",
|
{"Imports.a.certificate.or.a.certificate.chain",
|
||||||
"Importiert ein Zertifikat oder eine Zertifikatkette"}, //-importcert
|
"Importiert ein Zertifikat oder eine Zertifikatskette"}, //-importcert
|
||||||
{"Imports.a.password",
|
{"Imports.a.password",
|
||||||
"Importiert ein Kennwort"}, //-importpass
|
"Importiert ein Kennwort"}, //-importpass
|
||||||
{"Imports.one.or.all.entries.from.another.keystore",
|
{"Imports.one.or.all.entries.from.another.keystore",
|
||||||
@ -304,9 +304,9 @@ public class Resources_de extends java.util.ListResourceBundle {
|
|||||||
"{0}, {1,date}, "},
|
"{0}, {1,date}, "},
|
||||||
{"alias.", "{0}, "},
|
{"alias.", "{0}, "},
|
||||||
{"Entry.type.type.", "Eintragstyp: {0}"},
|
{"Entry.type.type.", "Eintragstyp: {0}"},
|
||||||
{"Certificate.chain.length.", "Zertifikatkettenl\u00E4nge: "},
|
{"Certificate.chain.length.", "Zertifikatskettenl\u00E4nge: "},
|
||||||
{"Certificate.i.1.", "Zertifikat[{0,number,integer}]:"},
|
{"Certificate.i.1.", "Zertifikat[{0,number,integer}]:"},
|
||||||
{"Certificate.fingerprint.SHA1.", "Zertifikat-Fingerprint (SHA1): "},
|
{"Certificate.fingerprint.SHA.256.", "Zertifikat-Fingerprint (SHA-256): "},
|
||||||
{"Keystore.type.", "Keystore-Typ: "},
|
{"Keystore.type.", "Keystore-Typ: "},
|
||||||
{"Keystore.provider.", "Keystore-Provider: "},
|
{"Keystore.provider.", "Keystore-Provider: "},
|
||||||
{"Your.keystore.contains.keyStore.size.entry",
|
{"Your.keystore.contains.keyStore.size.entry",
|
||||||
@ -346,7 +346,7 @@ public class Resources_de extends java.util.ListResourceBundle {
|
|||||||
{".RETURN.if.same.as.for.otherAlias.",
|
{".RETURN.if.same.as.for.otherAlias.",
|
||||||
"\t(RETURN, wenn identisch mit <{0}>)"},
|
"\t(RETURN, wenn identisch mit <{0}>)"},
|
||||||
{".PATTERN.printX509Cert",
|
{".PATTERN.printX509Cert",
|
||||||
"Eigent\u00FCmer: {0}\nAussteller: {1}\nSeriennummer: {2}\nG\u00FCltig von: {3} bis: {4}\nZertifikat-Fingerprints:\n\t MD5: {5}\n\t SHA1: {6}\n\t SHA256: {7}\n\t Signaturalgorithmusname: {8}\n\t Version: {9}"},
|
"Eigent\u00FCmer: {0}\nAussteller: {1}\nSeriennummer: {2}\nG\u00FCltig von: {3} bis: {4}\nZertifikatfingerprints:\n\t SHA1: {5}\n\t SHA256: {6}\nSignaturalgorithmusname: {7}\nAlgorithmus des Public Key von Betreff: {8} ({9,number,#})\nVersion: {10}"},
|
||||||
{"What.is.your.first.and.last.name.",
|
{"What.is.your.first.and.last.name.",
|
||||||
"Wie lautet Ihr Vor- und Nachname?"},
|
"Wie lautet Ihr Vor- und Nachname?"},
|
||||||
{"What.is.the.name.of.your.organizational.unit.",
|
{"What.is.the.name.of.your.organizational.unit.",
|
||||||
@ -367,7 +367,7 @@ public class Resources_de extends java.util.ListResourceBundle {
|
|||||||
{"Alias.alias.has.no.key",
|
{"Alias.alias.has.no.key",
|
||||||
"Alias <{0}> verf\u00FCgt \u00FCber keinen Schl\u00FCssel"},
|
"Alias <{0}> verf\u00FCgt \u00FCber keinen Schl\u00FCssel"},
|
||||||
{"Alias.alias.references.an.entry.type.that.is.not.a.private.key.entry.The.keyclone.command.only.supports.cloning.of.private.key",
|
{"Alias.alias.references.an.entry.type.that.is.not.a.private.key.entry.The.keyclone.command.only.supports.cloning.of.private.key",
|
||||||
"Alias <{0}> verweist auf einen Eintragstyp, der kein Private Key-Eintrag ist. Der Befehl -keyclone unterst\u00FCtzt nur das Clonen von Private Key-Eintr\u00E4gen"},
|
"Alias <{0}> verweist auf einen Eintragstyp, der kein Private Key-Eintrag ist. Der Befehl -keyclone unterst\u00FCtzt nur das Klonen von Private Key-Eintr\u00E4gen"},
|
||||||
|
|
||||||
{".WARNING.WARNING.WARNING.",
|
{".WARNING.WARNING.WARNING.",
|
||||||
"***************** WARNING WARNING WARNING *****************"},
|
"***************** WARNING WARNING WARNING *****************"},
|
||||||
@ -388,9 +388,9 @@ public class Resources_de extends java.util.ListResourceBundle {
|
|||||||
{"Certificate.reply.does.not.contain.public.key.for.alias.",
|
{"Certificate.reply.does.not.contain.public.key.for.alias.",
|
||||||
"Zertifikatantwort enth\u00E4lt keinen Public Key f\u00FCr <{0}>"},
|
"Zertifikatantwort enth\u00E4lt keinen Public Key f\u00FCr <{0}>"},
|
||||||
{"Incomplete.certificate.chain.in.reply",
|
{"Incomplete.certificate.chain.in.reply",
|
||||||
"Unvollst\u00E4ndige Zertifikatkette in Antwort"},
|
"Unvollst\u00E4ndige Zertifikatskette in Antwort"},
|
||||||
{"Certificate.chain.in.reply.does.not.verify.",
|
{"Certificate.chain.in.reply.does.not.verify.",
|
||||||
"Zertifikatkette in Antwort verifiziert nicht: "},
|
"Zertifikatskette in Antwort verifiziert nicht: "},
|
||||||
{"Top.level.certificate.in.reply.",
|
{"Top.level.certificate.in.reply.",
|
||||||
"Zertifikat der obersten Ebene in Antwort:\n"},
|
"Zertifikat der obersten Ebene in Antwort:\n"},
|
||||||
{".is.not.trusted.", "... ist nicht vertrauensw\u00FCrdig. "},
|
{".is.not.trusted.", "... ist nicht vertrauensw\u00FCrdig. "},
|
||||||
@ -433,6 +433,8 @@ public class Resources_de extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
|
* <p>
|
||||||
|
*
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.tools.keytool;
|
package sun.security.tools.keytool;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class represents the <code>ResourceBundle</code>
|
* <p> This class represents the <code>ResourceBundle</code>
|
||||||
* for the keytool.
|
* for the keytool.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -48,7 +48,7 @@ public class Resources_es extends java.util.ListResourceBundle {
|
|||||||
"Herramienta de Gesti\u00F3n de Certificados y Claves"},
|
"Herramienta de Gesti\u00F3n de Certificados y Claves"},
|
||||||
{"Commands.", "Comandos:"},
|
{"Commands.", "Comandos:"},
|
||||||
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
||||||
"Utilice \"keytool -command_name -help\" para la sintaxis de nombre_comando"},
|
"Utilice \"keytool -command_name -help\" para la sintaxis de nombre_comando.\nUtilice la opci\u00F3n -conf <url> para especificar un archivo de opciones preconfigurado."},
|
||||||
// keytool: help: commands
|
// keytool: help: commands
|
||||||
{"Generates.a.certificate.request",
|
{"Generates.a.certificate.request",
|
||||||
"Genera una solicitud de certificado"}, //-certreq
|
"Genera una solicitud de certificado"}, //-certreq
|
||||||
@ -306,7 +306,7 @@ public class Resources_es extends java.util.ListResourceBundle {
|
|||||||
{"Entry.type.type.", "Tipo de Entrada: {0}"},
|
{"Entry.type.type.", "Tipo de Entrada: {0}"},
|
||||||
{"Certificate.chain.length.", "Longitud de la Cadena de Certificado: "},
|
{"Certificate.chain.length.", "Longitud de la Cadena de Certificado: "},
|
||||||
{"Certificate.i.1.", "Certificado[{0,number,integer}]:"},
|
{"Certificate.i.1.", "Certificado[{0,number,integer}]:"},
|
||||||
{"Certificate.fingerprint.SHA1.", "Huella Digital de Certificado (SHA1): "},
|
{"Certificate.fingerprint.SHA.256.", "Huella de certificado (SHA-256): "},
|
||||||
{"Keystore.type.", "Tipo de Almac\u00E9n de Claves: "},
|
{"Keystore.type.", "Tipo de Almac\u00E9n de Claves: "},
|
||||||
{"Keystore.provider.", "Proveedor de Almac\u00E9n de Claves: "},
|
{"Keystore.provider.", "Proveedor de Almac\u00E9n de Claves: "},
|
||||||
{"Your.keystore.contains.keyStore.size.entry",
|
{"Your.keystore.contains.keyStore.size.entry",
|
||||||
@ -346,7 +346,7 @@ public class Resources_es extends java.util.ListResourceBundle {
|
|||||||
{".RETURN.if.same.as.for.otherAlias.",
|
{".RETURN.if.same.as.for.otherAlias.",
|
||||||
"\t(INTRO si es el mismo que para <{0}>)"},
|
"\t(INTRO si es el mismo que para <{0}>)"},
|
||||||
{".PATTERN.printX509Cert",
|
{".PATTERN.printX509Cert",
|
||||||
"Propietario: {0}\nEmisor: {1}\nN\u00FAmero de serie: {2}\nV\u00E1lido desde: {3} hasta: {4}\nHuellas digitales del Certificado:\n\t MD5: {5}\n\t SHA1: {6}\n\t SHA256: {7}\n\t Nombre del Algoritmo de Firma: {8}\n\t Versi\u00F3n: {9}"},
|
"Propietario: {0}\nEmisor: {1}\nN\u00FAmero de serie: {2}\nV\u00E1lido desde: {3} hasta: {4}\nHuellas digitales del certificado:\n\t SHA1: {5}\n\t SHA256: {6}\nNombre del algoritmo de firma: {7}\nAlgoritmo de clave p\u00FAblica de asunto: {8} ({9,number,#})\nVersi\u00F3n: {10}"},
|
||||||
{"What.is.your.first.and.last.name.",
|
{"What.is.your.first.and.last.name.",
|
||||||
"\u00BFCu\u00E1les son su nombre y su apellido?"},
|
"\u00BFCu\u00E1les son su nombre y su apellido?"},
|
||||||
{"What.is.the.name.of.your.organizational.unit.",
|
{"What.is.the.name.of.your.organizational.unit.",
|
||||||
@ -433,6 +433,8 @@ public class Resources_es extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
|
* <p>
|
||||||
|
*
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.tools.keytool;
|
package sun.security.tools.keytool;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class represents the <code>ResourceBundle</code>
|
* <p> This class represents the <code>ResourceBundle</code>
|
||||||
* for the keytool.
|
* for the keytool.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -48,7 +48,7 @@ public class Resources_fr extends java.util.ListResourceBundle {
|
|||||||
"Outil de gestion de certificats et de cl\u00E9s"},
|
"Outil de gestion de certificats et de cl\u00E9s"},
|
||||||
{"Commands.", "Commandes :"},
|
{"Commands.", "Commandes :"},
|
||||||
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
||||||
"Utiliser \"keytool -command_name -help\" pour la syntaxe de command_name"},
|
"Utilisez \"keytool -command_name -help\" pour la syntaxe de command_name.\nUtilisez l'option -conf <url> pour indiquer un fichier d'options pr\u00E9configur\u00E9es."},
|
||||||
// keytool: help: commands
|
// keytool: help: commands
|
||||||
{"Generates.a.certificate.request",
|
{"Generates.a.certificate.request",
|
||||||
"G\u00E9n\u00E8re une demande de certificat"}, //-certreq
|
"G\u00E9n\u00E8re une demande de certificat"}, //-certreq
|
||||||
@ -306,7 +306,7 @@ public class Resources_fr extends java.util.ListResourceBundle {
|
|||||||
{"Entry.type.type.", "Type d''entr\u00E9e\u00A0: {0}"},
|
{"Entry.type.type.", "Type d''entr\u00E9e\u00A0: {0}"},
|
||||||
{"Certificate.chain.length.", "Longueur de cha\u00EEne du certificat : "},
|
{"Certificate.chain.length.", "Longueur de cha\u00EEne du certificat : "},
|
||||||
{"Certificate.i.1.", "Certificat[{0,number,integer}]:"},
|
{"Certificate.i.1.", "Certificat[{0,number,integer}]:"},
|
||||||
{"Certificate.fingerprint.SHA1.", "Empreinte du certificat (SHA1) : "},
|
{"Certificate.fingerprint.SHA.256.", "Empreinte du certificat (SHA-256) : "},
|
||||||
{"Keystore.type.", "Type de fichier de cl\u00E9s : "},
|
{"Keystore.type.", "Type de fichier de cl\u00E9s : "},
|
||||||
{"Keystore.provider.", "Fournisseur de fichier de cl\u00E9s : "},
|
{"Keystore.provider.", "Fournisseur de fichier de cl\u00E9s : "},
|
||||||
{"Your.keystore.contains.keyStore.size.entry",
|
{"Your.keystore.contains.keyStore.size.entry",
|
||||||
@ -346,7 +346,7 @@ public class Resources_fr extends java.util.ListResourceBundle {
|
|||||||
{".RETURN.if.same.as.for.otherAlias.",
|
{".RETURN.if.same.as.for.otherAlias.",
|
||||||
"\t(appuyez sur Entr\u00E9e si le r\u00E9sultat est identique \u00E0 <{0}>)"},
|
"\t(appuyez sur Entr\u00E9e si le r\u00E9sultat est identique \u00E0 <{0}>)"},
|
||||||
{".PATTERN.printX509Cert",
|
{".PATTERN.printX509Cert",
|
||||||
"Propri\u00E9taire : {0}\nEmetteur : {1}\nNum\u00E9ro de s\u00E9rie : {2}\nValide du : {3} au : {4}\nEmpreintes du certificat :\n\t MD5: {5}\n\t SHA1 : {6}\n\t SHA256 : {7}\n\t Nom de l''algorithme de signature : {8}\n\t Version : {9}"},
|
"Propri\u00E9taire : {0}\nEmetteur : {1}\nNum\u00E9ro de s\u00E9rie : {2}\nValide du : {3} au : {4}\nEmpreintes du certificat :\n\t SHA1 : {5}\n\t SHA256 : {6}\nNom de l''algorithme de signature : {7}\nAlgorithme de cl\u00E9 publique du sujet : {8} ({9,number,#})\nVersion : {10}"},
|
||||||
{"What.is.your.first.and.last.name.",
|
{"What.is.your.first.and.last.name.",
|
||||||
"Quels sont vos nom et pr\u00E9nom ?"},
|
"Quels sont vos nom et pr\u00E9nom ?"},
|
||||||
{"What.is.the.name.of.your.organizational.unit.",
|
{"What.is.the.name.of.your.organizational.unit.",
|
||||||
@ -433,6 +433,8 @@ public class Resources_fr extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
|
* <p>
|
||||||
|
*
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.tools.keytool;
|
package sun.security.tools.keytool;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class represents the <code>ResourceBundle</code>
|
* <p> This class represents the <code>ResourceBundle</code>
|
||||||
* for the keytool.
|
* for the keytool.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -48,7 +48,7 @@ public class Resources_it extends java.util.ListResourceBundle {
|
|||||||
"Strumento di gestione di chiavi e certificati"},
|
"Strumento di gestione di chiavi e certificati"},
|
||||||
{"Commands.", "Comandi:"},
|
{"Commands.", "Comandi:"},
|
||||||
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
||||||
"Utilizzare \"keytool -command_name -help\" per informazioni sull'uso di command_name"},
|
"Utilizzare \"keytool -command_name -help\" per informazioni sull'uso di command_name.\nUtilizzare l'opzione -conf <url> per specificare un file di opzioni preconfigurato."},
|
||||||
// keytool: help: commands
|
// keytool: help: commands
|
||||||
{"Generates.a.certificate.request",
|
{"Generates.a.certificate.request",
|
||||||
"Genera una richiesta di certificato"}, //-certreq
|
"Genera una richiesta di certificato"}, //-certreq
|
||||||
@ -306,7 +306,7 @@ public class Resources_it extends java.util.ListResourceBundle {
|
|||||||
{"Entry.type.type.", "Tipo di voce: {0}"},
|
{"Entry.type.type.", "Tipo di voce: {0}"},
|
||||||
{"Certificate.chain.length.", "Lunghezza catena certificati: "},
|
{"Certificate.chain.length.", "Lunghezza catena certificati: "},
|
||||||
{"Certificate.i.1.", "Certificato[{0,number,integer}]:"},
|
{"Certificate.i.1.", "Certificato[{0,number,integer}]:"},
|
||||||
{"Certificate.fingerprint.SHA1.", "Impronta digitale certificato (SHA1): "},
|
{"Certificate.fingerprint.SHA.256.", "Copia di certificato (SHA-256): "},
|
||||||
{"Keystore.type.", "Tipo keystore: "},
|
{"Keystore.type.", "Tipo keystore: "},
|
||||||
{"Keystore.provider.", "Provider keystore: "},
|
{"Keystore.provider.", "Provider keystore: "},
|
||||||
{"Your.keystore.contains.keyStore.size.entry",
|
{"Your.keystore.contains.keyStore.size.entry",
|
||||||
@ -346,7 +346,7 @@ public class Resources_it extends java.util.ListResourceBundle {
|
|||||||
{".RETURN.if.same.as.for.otherAlias.",
|
{".RETURN.if.same.as.for.otherAlias.",
|
||||||
"\t(INVIO se corrisponde al nome di <{0}>)"},
|
"\t(INVIO se corrisponde al nome di <{0}>)"},
|
||||||
{".PATTERN.printX509Cert",
|
{".PATTERN.printX509Cert",
|
||||||
"Proprietario: {0}\nAutorit\u00E0 emittente: {1}\nNumero di serie: {2}\nValido da: {3} a: {4}\nImpronte digitali certificato:\n\t MD5: {5}\n\t SHA1: {6}\n\t SHA256: {7}\n\t Nome algoritmo firma: {8}\n\t Versione: {9}"},
|
"Proprietario: {0}\nEmittente: {1}\nNumero di serie: {2}\nValido da: {3} a: {4}\nCopie di certificato:\n\t SHA1: {5}\n\t SHA256: {6}\nNome algoritmo firma: {7}\nAlgoritmo di chiave pubblica oggetto: {8} ({9,number,#})\nVersione: {10}"},
|
||||||
{"What.is.your.first.and.last.name.",
|
{"What.is.your.first.and.last.name.",
|
||||||
"Specificare nome e cognome"},
|
"Specificare nome e cognome"},
|
||||||
{"What.is.the.name.of.your.organizational.unit.",
|
{"What.is.the.name.of.your.organizational.unit.",
|
||||||
@ -433,6 +433,8 @@ public class Resources_it extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
|
* <p>
|
||||||
|
*
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.tools.keytool;
|
package sun.security.tools.keytool;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class represents the <code>ResourceBundle</code>
|
* <p> This class represents the <code>ResourceBundle</code>
|
||||||
* for the keytool.
|
* for the keytool.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -48,7 +48,7 @@ public class Resources_ja extends java.util.ListResourceBundle {
|
|||||||
"\u30AD\u30FC\u304A\u3088\u3073\u8A3C\u660E\u66F8\u7BA1\u7406\u30C4\u30FC\u30EB"},
|
"\u30AD\u30FC\u304A\u3088\u3073\u8A3C\u660E\u66F8\u7BA1\u7406\u30C4\u30FC\u30EB"},
|
||||||
{"Commands.", "\u30B3\u30DE\u30F3\u30C9:"},
|
{"Commands.", "\u30B3\u30DE\u30F3\u30C9:"},
|
||||||
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
||||||
"command_name\u306E\u4F7F\u7528\u65B9\u6CD5\u306B\u3064\u3044\u3066\u306F\"keytool -command_name -help\"\u3092\u4F7F\u7528\u3057\u3066\u304F\u3060\u3055\u3044"},
|
"command_name\u306E\u4F7F\u7528\u65B9\u6CD5\u306B\u3064\u3044\u3066\u306F\u3001\"keytool -command_name -help\"\u3092\u4F7F\u7528\u3057\u307E\u3059\u3002\n\u4E8B\u524D\u69CB\u6210\u6E08\u306E\u30AA\u30D7\u30B7\u30E7\u30F3\u30FB\u30D5\u30A1\u30A4\u30EB\u3092\u6307\u5B9A\u3059\u308B\u306B\u306F\u3001-conf <url>\u30AA\u30D7\u30B7\u30E7\u30F3\u3092\u4F7F\u7528\u3057\u307E\u3059\u3002"},
|
||||||
// keytool: help: commands
|
// keytool: help: commands
|
||||||
{"Generates.a.certificate.request",
|
{"Generates.a.certificate.request",
|
||||||
"\u8A3C\u660E\u66F8\u30EA\u30AF\u30A8\u30B9\u30C8\u3092\u751F\u6210\u3057\u307E\u3059"}, //-certreq
|
"\u8A3C\u660E\u66F8\u30EA\u30AF\u30A8\u30B9\u30C8\u3092\u751F\u6210\u3057\u307E\u3059"}, //-certreq
|
||||||
@ -248,7 +248,7 @@ public class Resources_ja extends java.util.ListResourceBundle {
|
|||||||
"\u65E2\u5B58\u306E\u30A8\u30F3\u30C8\u30EA\u306E\u5225\u540D{0}\u304C\u5B58\u5728\u3057\u3066\u3044\u307E\u3059\u3002\u4E0A\u66F8\u304D\u3057\u307E\u3059\u304B\u3002[\u3044\u3044\u3048]: "},
|
"\u65E2\u5B58\u306E\u30A8\u30F3\u30C8\u30EA\u306E\u5225\u540D{0}\u304C\u5B58\u5728\u3057\u3066\u3044\u307E\u3059\u3002\u4E0A\u66F8\u304D\u3057\u307E\u3059\u304B\u3002[\u3044\u3044\u3048]: "},
|
||||||
{"Too.many.failures.try.later", "\u969C\u5BB3\u304C\u591A\u3059\u304E\u307E\u3059 - \u5F8C\u3067\u5B9F\u884C\u3057\u3066\u304F\u3060\u3055\u3044"},
|
{"Too.many.failures.try.later", "\u969C\u5BB3\u304C\u591A\u3059\u304E\u307E\u3059 - \u5F8C\u3067\u5B9F\u884C\u3057\u3066\u304F\u3060\u3055\u3044"},
|
||||||
{"Certification.request.stored.in.file.filename.",
|
{"Certification.request.stored.in.file.filename.",
|
||||||
"\u8A3C\u660E\u66F8\u30EA\u30AF\u30A8\u30B9\u30C8\u304C\u30D5\u30A1\u30A4\u30EB<{0}>\u306B\u4FDD\u5B58\u3055\u308C\u307E\u3057\u305F"},
|
"\u8A8D\u8A3C\u30EA\u30AF\u30A8\u30B9\u30C8\u304C\u30D5\u30A1\u30A4\u30EB<{0}>\u306B\u4FDD\u5B58\u3055\u308C\u307E\u3057\u305F"},
|
||||||
{"Submit.this.to.your.CA", "\u3053\u308C\u3092CA\u306B\u63D0\u51FA\u3057\u3066\u304F\u3060\u3055\u3044"},
|
{"Submit.this.to.your.CA", "\u3053\u308C\u3092CA\u306B\u63D0\u51FA\u3057\u3066\u304F\u3060\u3055\u3044"},
|
||||||
{"if.alias.not.specified.destalias.and.srckeypass.must.not.be.specified",
|
{"if.alias.not.specified.destalias.and.srckeypass.must.not.be.specified",
|
||||||
"\u5225\u540D\u3092\u6307\u5B9A\u3057\u306A\u3044\u5834\u5408\u3001\u51FA\u529B\u5148\u30AD\u30FC\u30B9\u30C8\u30A2\u306E\u5225\u540D\u304A\u3088\u3073\u30BD\u30FC\u30B9\u30FB\u30AD\u30FC\u30B9\u30C8\u30A2\u306E\u30D1\u30B9\u30EF\u30FC\u30C9\u306F\u6307\u5B9A\u3067\u304D\u307E\u305B\u3093"},
|
"\u5225\u540D\u3092\u6307\u5B9A\u3057\u306A\u3044\u5834\u5408\u3001\u51FA\u529B\u5148\u30AD\u30FC\u30B9\u30C8\u30A2\u306E\u5225\u540D\u304A\u3088\u3073\u30BD\u30FC\u30B9\u30FB\u30AD\u30FC\u30B9\u30C8\u30A2\u306E\u30D1\u30B9\u30EF\u30FC\u30C9\u306F\u6307\u5B9A\u3067\u304D\u307E\u305B\u3093"},
|
||||||
@ -306,7 +306,7 @@ public class Resources_ja extends java.util.ListResourceBundle {
|
|||||||
{"Entry.type.type.", "\u30A8\u30F3\u30C8\u30EA\u30FB\u30BF\u30A4\u30D7: {0}"},
|
{"Entry.type.type.", "\u30A8\u30F3\u30C8\u30EA\u30FB\u30BF\u30A4\u30D7: {0}"},
|
||||||
{"Certificate.chain.length.", "\u8A3C\u660E\u66F8\u30C1\u30A7\u30FC\u30F3\u306E\u9577\u3055: "},
|
{"Certificate.chain.length.", "\u8A3C\u660E\u66F8\u30C1\u30A7\u30FC\u30F3\u306E\u9577\u3055: "},
|
||||||
{"Certificate.i.1.", "\u8A3C\u660E\u66F8[{0,number,integer}]:"},
|
{"Certificate.i.1.", "\u8A3C\u660E\u66F8[{0,number,integer}]:"},
|
||||||
{"Certificate.fingerprint.SHA1.", "\u8A3C\u660E\u66F8\u306E\u30D5\u30A3\u30F3\u30AC\u30D7\u30EA\u30F3\u30C8(SHA1): "},
|
{"Certificate.fingerprint.SHA.256.", "\u8A3C\u660E\u66F8\u306E\u30D5\u30A3\u30F3\u30AC\u30D7\u30EA\u30F3\u30C8(SHA-256): "},
|
||||||
{"Keystore.type.", "\u30AD\u30FC\u30B9\u30C8\u30A2\u306E\u30BF\u30A4\u30D7: "},
|
{"Keystore.type.", "\u30AD\u30FC\u30B9\u30C8\u30A2\u306E\u30BF\u30A4\u30D7: "},
|
||||||
{"Keystore.provider.", "\u30AD\u30FC\u30B9\u30C8\u30A2\u30FB\u30D7\u30ED\u30D0\u30A4\u30C0: "},
|
{"Keystore.provider.", "\u30AD\u30FC\u30B9\u30C8\u30A2\u30FB\u30D7\u30ED\u30D0\u30A4\u30C0: "},
|
||||||
{"Your.keystore.contains.keyStore.size.entry",
|
{"Your.keystore.contains.keyStore.size.entry",
|
||||||
@ -346,22 +346,22 @@ public class Resources_ja extends java.util.ListResourceBundle {
|
|||||||
{".RETURN.if.same.as.for.otherAlias.",
|
{".RETURN.if.same.as.for.otherAlias.",
|
||||||
"\t(<{0}>\u3068\u540C\u3058\u5834\u5408\u306FRETURN\u3092\u62BC\u3057\u3066\u304F\u3060\u3055\u3044)"},
|
"\t(<{0}>\u3068\u540C\u3058\u5834\u5408\u306FRETURN\u3092\u62BC\u3057\u3066\u304F\u3060\u3055\u3044)"},
|
||||||
{".PATTERN.printX509Cert",
|
{".PATTERN.printX509Cert",
|
||||||
"\u6240\u6709\u8005: {0}\n\u767A\u884C\u8005: {1}\n\u30B7\u30EA\u30A2\u30EB\u756A\u53F7: {2}\n\u6709\u52B9\u671F\u9593\u306E\u958B\u59CB\u65E5: {3}\u7D42\u4E86\u65E5: {4}\n\u8A3C\u660E\u66F8\u306E\u30D5\u30A3\u30F3\u30AC\u30D7\u30EA\u30F3\u30C8:\n\t MD5: {5}\n\t SHA1: {6}\n\t SHA256: {7}\n\t \u7F72\u540D\u30A2\u30EB\u30B4\u30EA\u30BA\u30E0\u540D: {8}\n\t \u30D0\u30FC\u30B8\u30E7\u30F3: {9}"},
|
"\u6240\u6709\u8005: {0}\n\u767A\u884C\u8005: {1}\n\u30B7\u30EA\u30A2\u30EB\u756A\u53F7: {2}\n\u6709\u52B9\u671F\u9593\u306E\u958B\u59CB\u65E5: {3}\u7D42\u4E86\u65E5: {4}\n\u8A3C\u660E\u66F8\u306E\u30D5\u30A3\u30F3\u30AC\u30D7\u30EA\u30F3\u30C8:\n\t SHA1: {5}\n\t SHA256: {6}\n\u7F72\u540D\u30A2\u30EB\u30B4\u30EA\u30BA\u30E0\u540D: {7}\n\u30B5\u30D6\u30B8\u30A7\u30AF\u30C8\u516C\u958B\u9375\u30A2\u30EB\u30B4\u30EA\u30BA\u30E0: {8} ({9,number,#})\n\u30D0\u30FC\u30B8\u30E7\u30F3: {10}"},
|
||||||
{"What.is.your.first.and.last.name.",
|
{"What.is.your.first.and.last.name.",
|
||||||
"\u59D3\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},
|
"\u59D3\u540D\u306F\u4F55\u3067\u3059\u304B\u3002"},
|
||||||
{"What.is.the.name.of.your.organizational.unit.",
|
{"What.is.the.name.of.your.organizational.unit.",
|
||||||
"\u7D44\u7E54\u5358\u4F4D\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},
|
"\u7D44\u7E54\u5358\u4F4D\u540D\u306F\u4F55\u3067\u3059\u304B\u3002"},
|
||||||
{"What.is.the.name.of.your.organization.",
|
{"What.is.the.name.of.your.organization.",
|
||||||
"\u7D44\u7E54\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},
|
"\u7D44\u7E54\u540D\u306F\u4F55\u3067\u3059\u304B\u3002"},
|
||||||
{"What.is.the.name.of.your.City.or.Locality.",
|
{"What.is.the.name.of.your.City.or.Locality.",
|
||||||
"\u90FD\u5E02\u540D\u307E\u305F\u306F\u5730\u57DF\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},
|
"\u90FD\u5E02\u540D\u307E\u305F\u306F\u5730\u57DF\u540D\u306F\u4F55\u3067\u3059\u304B\u3002"},
|
||||||
{"What.is.the.name.of.your.State.or.Province.",
|
{"What.is.the.name.of.your.State.or.Province.",
|
||||||
"\u90FD\u9053\u5E9C\u770C\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},
|
"\u90FD\u9053\u5E9C\u770C\u540D\u307E\u305F\u306F\u5DDE\u540D\u306F\u4F55\u3067\u3059\u304B\u3002"},
|
||||||
{"What.is.the.two.letter.country.code.for.this.unit.",
|
{"What.is.the.two.letter.country.code.for.this.unit.",
|
||||||
"\u3053\u306E\u5358\u4F4D\u306B\u8A72\u5F53\u3059\u308B2\u6587\u5B57\u306E\u56FD\u30B3\u30FC\u30C9\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044\u3002"},
|
"\u3053\u306E\u5358\u4F4D\u306B\u8A72\u5F53\u3059\u308B2\u6587\u5B57\u306E\u56FD\u30B3\u30FC\u30C9\u306F\u4F55\u3067\u3059\u304B\u3002"},
|
||||||
{"Is.name.correct.", "{0}\u3067\u3088\u308D\u3057\u3044\u3067\u3059\u304B\u3002"},
|
{"Is.name.correct.", "{0}\u3067\u3088\u308D\u3057\u3044\u3067\u3059\u304B\u3002"},
|
||||||
{"no", "\u3044\u3044\u3048"},
|
{"no", "\u3044\u3044\u3048"},
|
||||||
{"yes", "\u306F\u3044"},
|
{"yes", "yes"},
|
||||||
{"y", "y"},
|
{"y", "y"},
|
||||||
{".defaultValue.", " [{0}]: "},
|
{".defaultValue.", " [{0}]: "},
|
||||||
{"Alias.alias.has.no.key",
|
{"Alias.alias.has.no.key",
|
||||||
@ -433,6 +433,8 @@ public class Resources_ja extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
|
* <p>
|
||||||
|
*
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.tools.keytool;
|
package sun.security.tools.keytool;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class represents the <code>ResourceBundle</code>
|
* <p> This class represents the <code>ResourceBundle</code>
|
||||||
* for the keytool.
|
* for the keytool.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -48,7 +48,7 @@ public class Resources_ko extends java.util.ListResourceBundle {
|
|||||||
"\uD0A4 \uBC0F \uC778\uC99D\uC11C \uAD00\uB9AC \uD234"},
|
"\uD0A4 \uBC0F \uC778\uC99D\uC11C \uAD00\uB9AC \uD234"},
|
||||||
{"Commands.", "\uBA85\uB839:"},
|
{"Commands.", "\uBA85\uB839:"},
|
||||||
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
||||||
"command_name \uC0AC\uC6A9\uBC95\uC5D0 \"keytool -command_name -help\" \uC0AC\uC6A9"},
|
"command_name \uC0AC\uC6A9\uBC95\uC5D0 \"keytool -command_name -help\"\uB97C \uC0AC\uC6A9\uD569\uB2C8\uB2E4.\n-conf <url> \uC635\uC158\uC744 \uC0AC\uC6A9\uD558\uC5EC \uC0AC\uC804 \uAD6C\uC131\uB41C \uC635\uC158 \uD30C\uC77C\uC744 \uC9C0\uC815\uD569\uB2C8\uB2E4."},
|
||||||
// keytool: help: commands
|
// keytool: help: commands
|
||||||
{"Generates.a.certificate.request",
|
{"Generates.a.certificate.request",
|
||||||
"\uC778\uC99D\uC11C \uC694\uCCAD\uC744 \uC0DD\uC131\uD569\uB2C8\uB2E4."}, //-certreq
|
"\uC778\uC99D\uC11C \uC694\uCCAD\uC744 \uC0DD\uC131\uD569\uB2C8\uB2E4."}, //-certreq
|
||||||
@ -306,7 +306,7 @@ public class Resources_ko extends java.util.ListResourceBundle {
|
|||||||
{"Entry.type.type.", "\uD56D\uBAA9 \uC720\uD615: {0}"},
|
{"Entry.type.type.", "\uD56D\uBAA9 \uC720\uD615: {0}"},
|
||||||
{"Certificate.chain.length.", "\uC778\uC99D\uC11C \uCCB4\uC778 \uAE38\uC774: "},
|
{"Certificate.chain.length.", "\uC778\uC99D\uC11C \uCCB4\uC778 \uAE38\uC774: "},
|
||||||
{"Certificate.i.1.", "\uC778\uC99D\uC11C[{0,number,integer}]:"},
|
{"Certificate.i.1.", "\uC778\uC99D\uC11C[{0,number,integer}]:"},
|
||||||
{"Certificate.fingerprint.SHA1.", "\uC778\uC99D\uC11C \uC9C0\uBB38(SHA1): "},
|
{"Certificate.fingerprint.SHA.256.", "\uC778\uC99D\uC11C \uC9C0\uBB38(SHA-256): "},
|
||||||
{"Keystore.type.", "\uD0A4 \uC800\uC7A5\uC18C \uC720\uD615: "},
|
{"Keystore.type.", "\uD0A4 \uC800\uC7A5\uC18C \uC720\uD615: "},
|
||||||
{"Keystore.provider.", "\uD0A4 \uC800\uC7A5\uC18C \uC81C\uACF5\uC790: "},
|
{"Keystore.provider.", "\uD0A4 \uC800\uC7A5\uC18C \uC81C\uACF5\uC790: "},
|
||||||
{"Your.keystore.contains.keyStore.size.entry",
|
{"Your.keystore.contains.keyStore.size.entry",
|
||||||
@ -346,7 +346,7 @@ public class Resources_ko extends java.util.ListResourceBundle {
|
|||||||
{".RETURN.if.same.as.for.otherAlias.",
|
{".RETURN.if.same.as.for.otherAlias.",
|
||||||
"\t(<{0}>\uACFC(\uC640) \uB3D9\uC77C\uD55C \uACBD\uC6B0 Enter \uD0A4\uB97C \uB204\uB984)"},
|
"\t(<{0}>\uACFC(\uC640) \uB3D9\uC77C\uD55C \uACBD\uC6B0 Enter \uD0A4\uB97C \uB204\uB984)"},
|
||||||
{".PATTERN.printX509Cert",
|
{".PATTERN.printX509Cert",
|
||||||
"\uC18C\uC720\uC790: {0}\n\uBC1C\uD589\uC790: {1}\n\uC77C\uB828 \uBC88\uD638: {2}\n\uC801\uD569\uD55C \uC2DC\uC791 \uB0A0\uC9DC: {3}, \uC885\uB8CC \uB0A0\uC9DC: {4}\n\uC778\uC99D\uC11C \uC9C0\uBB38:\n\t MD5: {5}\n\t SHA1: {6}\n\t SHA256: {7}\n\t \uC11C\uBA85 \uC54C\uACE0\uB9AC\uC998 \uC774\uB984: {8}\n\t \uBC84\uC804: {9}"},
|
"\uC18C\uC720\uC790: {0}\n\uBC1C\uD589\uC790: {1}\n\uC77C\uB828 \uBC88\uD638: {2}\n\uC801\uD569\uD55C \uC2DC\uC791 \uB0A0\uC9DC: {3} \uC885\uB8CC \uB0A0\uC9DC: {4}\n\uC778\uC99D\uC11C \uC9C0\uBB38:\n\t SHA1: {5}\n\t SHA256: {6}\n\uC11C\uBA85 \uC54C\uACE0\uB9AC\uC998 \uC774\uB984: {7}\n\uC8FC\uCCB4 \uACF5\uC6A9 \uD0A4 \uC54C\uACE0\uB9AC\uC998: {8} ({9,number,#})\n\uBC84\uC804: {10}"},
|
||||||
{"What.is.your.first.and.last.name.",
|
{"What.is.your.first.and.last.name.",
|
||||||
"\uC774\uB984\uACFC \uC131\uC744 \uC785\uB825\uD558\uC2ED\uC2DC\uC624."},
|
"\uC774\uB984\uACFC \uC131\uC744 \uC785\uB825\uD558\uC2ED\uC2DC\uC624."},
|
||||||
{"What.is.the.name.of.your.organizational.unit.",
|
{"What.is.the.name.of.your.organizational.unit.",
|
||||||
@ -433,6 +433,8 @@ public class Resources_ko extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
|
* <p>
|
||||||
|
*
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.tools.keytool;
|
package sun.security.tools.keytool;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class represents the <code>ResourceBundle</code>
|
* <p> This class represents the <code>ResourceBundle</code>
|
||||||
* for the keytool.
|
* for the keytool.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -48,14 +48,14 @@ public class Resources_pt_BR extends java.util.ListResourceBundle {
|
|||||||
"Ferramenta de Gerenciamento de Chave e Certificado"},
|
"Ferramenta de Gerenciamento de Chave e Certificado"},
|
||||||
{"Commands.", "Comandos:"},
|
{"Commands.", "Comandos:"},
|
||||||
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
||||||
"Use \"keytool -command_name -help\" para uso de command_name"},
|
"Utilize \"keytool -command_name -help\" para uso de command_name.\nUtilize a op\u00E7\u00E3o -conf <url> para especificar um arquivo de op\u00E7\u00F5es pr\u00E9-configurado."},
|
||||||
// keytool: help: commands
|
// keytool: help: commands
|
||||||
{"Generates.a.certificate.request",
|
{"Generates.a.certificate.request",
|
||||||
"Gera uma solicita\u00E7\u00E3o de certificado"}, //-certreq
|
"Gera uma solicita\u00E7\u00E3o de certificado"}, //-certreq
|
||||||
{"Changes.an.entry.s.alias",
|
{"Changes.an.entry.s.alias",
|
||||||
"Altera um alias de entrada"}, //-changealias
|
"Altera um alias de entrada"}, //-changealias
|
||||||
{"Deletes.an.entry",
|
{"Deletes.an.entry",
|
||||||
"Deleta uma entrada"}, //-delete
|
"Exclui uma entrada"}, //-delete
|
||||||
{"Exports.certificate",
|
{"Exports.certificate",
|
||||||
"Exporta o certificado"}, //-exportcert
|
"Exporta o certificado"}, //-exportcert
|
||||||
{"Generates.a.key.pair",
|
{"Generates.a.key.pair",
|
||||||
@ -306,7 +306,7 @@ public class Resources_pt_BR extends java.util.ListResourceBundle {
|
|||||||
{"Entry.type.type.", "Tipo de entrada: {0}"},
|
{"Entry.type.type.", "Tipo de entrada: {0}"},
|
||||||
{"Certificate.chain.length.", "Comprimento da cadeia de certificados: "},
|
{"Certificate.chain.length.", "Comprimento da cadeia de certificados: "},
|
||||||
{"Certificate.i.1.", "Certificado[{0,number,integer}]:"},
|
{"Certificate.i.1.", "Certificado[{0,number,integer}]:"},
|
||||||
{"Certificate.fingerprint.SHA1.", "Fingerprint (SHA1) do certificado: "},
|
{"Certificate.fingerprint.SHA.256.", "Fingerprint (SHA-256) do certificado: "},
|
||||||
{"Keystore.type.", "Tipo de \u00E1rea de armazenamento de chaves: "},
|
{"Keystore.type.", "Tipo de \u00E1rea de armazenamento de chaves: "},
|
||||||
{"Keystore.provider.", "Fornecedor da \u00E1rea de armazenamento de chaves: "},
|
{"Keystore.provider.", "Fornecedor da \u00E1rea de armazenamento de chaves: "},
|
||||||
{"Your.keystore.contains.keyStore.size.entry",
|
{"Your.keystore.contains.keyStore.size.entry",
|
||||||
@ -346,7 +346,7 @@ public class Resources_pt_BR extends java.util.ListResourceBundle {
|
|||||||
{".RETURN.if.same.as.for.otherAlias.",
|
{".RETURN.if.same.as.for.otherAlias.",
|
||||||
"\t(RETURN se for igual ao de <{0}>)"},
|
"\t(RETURN se for igual ao de <{0}>)"},
|
||||||
{".PATTERN.printX509Cert",
|
{".PATTERN.printX509Cert",
|
||||||
"Propriet\u00E1rio: {0}\nEmissor: {1}\nN\u00FAmero de s\u00E9rie: {2}\nV\u00E1lido de: {3} a: {4}\nFingerprints do certificado:\n\t MD5: {5}\n\t SHA1: {6}\n\t SHA256: {7}\n\t Nome do algoritmo de assinatura: {8}\n\t Vers\u00E3o: {9}"},
|
"Propriet\u00E1rio: {0}\nEmissor: {1}\nN\u00FAmero de s\u00E9rie: {2}\nV\u00E1lido de {3} at\u00E9 {4}\nFingerprints do certificado:\n\t SHA1: {5}\n\t SHA256: {6}\nNome do algoritmo de assinatura: {7}\nAlgoritmo de Chave P\u00FAblica do Assunto: {8} ({9,number,#})\nVers\u00E3o: {10}"},
|
||||||
{"What.is.your.first.and.last.name.",
|
{"What.is.your.first.and.last.name.",
|
||||||
"Qual \u00E9 o seu nome e o seu sobrenome?"},
|
"Qual \u00E9 o seu nome e o seu sobrenome?"},
|
||||||
{"What.is.the.name.of.your.organizational.unit.",
|
{"What.is.the.name.of.your.organizational.unit.",
|
||||||
@ -433,6 +433,8 @@ public class Resources_pt_BR extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
|
* <p>
|
||||||
|
*
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.tools.keytool;
|
package sun.security.tools.keytool;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class represents the <code>ResourceBundle</code>
|
* <p> This class represents the <code>ResourceBundle</code>
|
||||||
* for the keytool.
|
* for the keytool.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -48,7 +48,7 @@ public class Resources_sv extends java.util.ListResourceBundle {
|
|||||||
"Hanteringsverktyg f\u00F6r nycklar och certifikat"},
|
"Hanteringsverktyg f\u00F6r nycklar och certifikat"},
|
||||||
{"Commands.", "Kommandon:"},
|
{"Commands.", "Kommandon:"},
|
||||||
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
||||||
"L\u00E4s \"Hj\u00E4lp - Nyckelverktyg - command_name\" om anv\u00E4ndning av command_name"},
|
"Anv\u00E4nd \"keytool -command_name -help\" f\u00F6r syntax f\u00F6r command_name.\nAnv\u00E4nd alternativet -conf <url> f\u00F6r att ange en f\u00F6rkonfigurerad alternativfil."},
|
||||||
// keytool: help: commands
|
// keytool: help: commands
|
||||||
{"Generates.a.certificate.request",
|
{"Generates.a.certificate.request",
|
||||||
"Genererar certifikatbeg\u00E4ran"}, //-certreq
|
"Genererar certifikatbeg\u00E4ran"}, //-certreq
|
||||||
@ -175,7 +175,7 @@ public class Resources_sv extends java.util.ListResourceBundle {
|
|||||||
{"validity.number.of.days",
|
{"validity.number.of.days",
|
||||||
"antal dagar f\u00F6r giltighet"}, //-validity
|
"antal dagar f\u00F6r giltighet"}, //-validity
|
||||||
{"Serial.ID.of.cert.to.revoke",
|
{"Serial.ID.of.cert.to.revoke",
|
||||||
"Seriellt ID f\u00F6r certifikat som ska \u00E5terkallas"}, //-id
|
"Seriellt id f\u00F6r certifikat som ska \u00E5terkallas"}, //-id
|
||||||
// keytool: Running part
|
// keytool: Running part
|
||||||
{"keytool.error.", "nyckelverktygsfel: "},
|
{"keytool.error.", "nyckelverktygsfel: "},
|
||||||
{"Illegal.option.", "Otill\u00E5tet alternativ: "},
|
{"Illegal.option.", "Otill\u00E5tet alternativ: "},
|
||||||
@ -306,7 +306,7 @@ public class Resources_sv extends java.util.ListResourceBundle {
|
|||||||
{"Entry.type.type.", "Posttyp: {0}"},
|
{"Entry.type.type.", "Posttyp: {0}"},
|
||||||
{"Certificate.chain.length.", "L\u00E4ngd p\u00E5 certifikatskedja: "},
|
{"Certificate.chain.length.", "L\u00E4ngd p\u00E5 certifikatskedja: "},
|
||||||
{"Certificate.i.1.", "Certifikat[{0,number,integer}]:"},
|
{"Certificate.i.1.", "Certifikat[{0,number,integer}]:"},
|
||||||
{"Certificate.fingerprint.SHA1.", "Certifikatets fingeravtryck (SHA1): "},
|
{"Certificate.fingerprint.SHA.256.", "Certifikatfingeravtryck (SHA-256): "},
|
||||||
{"Keystore.type.", "Nyckellagertyp: "},
|
{"Keystore.type.", "Nyckellagertyp: "},
|
||||||
{"Keystore.provider.", "Nyckellagerleverant\u00F6r: "},
|
{"Keystore.provider.", "Nyckellagerleverant\u00F6r: "},
|
||||||
{"Your.keystore.contains.keyStore.size.entry",
|
{"Your.keystore.contains.keyStore.size.entry",
|
||||||
@ -346,7 +346,7 @@ public class Resources_sv extends java.util.ListResourceBundle {
|
|||||||
{".RETURN.if.same.as.for.otherAlias.",
|
{".RETURN.if.same.as.for.otherAlias.",
|
||||||
"\t(RETURN om det \u00E4r det samma som f\u00F6r <{0}>)"},
|
"\t(RETURN om det \u00E4r det samma som f\u00F6r <{0}>)"},
|
||||||
{".PATTERN.printX509Cert",
|
{".PATTERN.printX509Cert",
|
||||||
"\u00C4gare: {0}\nUtf\u00E4rdare: {1}\nSerienummer: {2}\nGiltigt fr\u00E5n den: {3} till: {4}\nCertifikatets fingeravtryck:\n\t MD5: {5}\n\t SHA1: {6}\n\t SHA256: {7}\n\t Namn p\u00E5 signaturalgoritm: {8}\n\t Version: {9}"},
|
"\u00C4gare: {0}\nUtf\u00E4rdare: {1}\nSerienummer: {2}\nGiltigt fr\u00E5n: {3}, till: {4}\nCertifikatfingeravtryck:\n\t SHA1: {5}\n\t SHA256: {6}\nSignaturalgoritmnamn: {7}\n\u00C4mne f\u00F6r algoritm f\u00F6r \u00F6ppen nyckel: {8} ({9,number,#})\nVersion: {10}"},
|
||||||
{"What.is.your.first.and.last.name.",
|
{"What.is.your.first.and.last.name.",
|
||||||
"Vad heter du i f\u00F6r- och efternamn?"},
|
"Vad heter du i f\u00F6r- och efternamn?"},
|
||||||
{"What.is.the.name.of.your.organizational.unit.",
|
{"What.is.the.name.of.your.organizational.unit.",
|
||||||
@ -373,7 +373,7 @@ public class Resources_sv extends java.util.ListResourceBundle {
|
|||||||
"***************** WARNING WARNING WARNING *****************"},
|
"***************** WARNING WARNING WARNING *****************"},
|
||||||
{"Signer.d.", "Signerare #%d:"},
|
{"Signer.d.", "Signerare #%d:"},
|
||||||
{"Timestamp.", "Tidsst\u00E4mpel:"},
|
{"Timestamp.", "Tidsst\u00E4mpel:"},
|
||||||
{"Signature.", "Underskrift:"},
|
{"Signature.", "Signatur:"},
|
||||||
{"CRLs.", "CRL:er:"},
|
{"CRLs.", "CRL:er:"},
|
||||||
{"Certificate.owner.", "Certifikat\u00E4gare: "},
|
{"Certificate.owner.", "Certifikat\u00E4gare: "},
|
||||||
{"Not.a.signed.jar.file", "Ingen signerad jar-fil"},
|
{"Not.a.signed.jar.file", "Ingen signerad jar-fil"},
|
||||||
@ -433,6 +433,8 @@ public class Resources_sv extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
|
* <p>
|
||||||
|
*
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.tools.keytool;
|
package sun.security.tools.keytool;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class represents the <code>ResourceBundle</code>
|
* <p> This class represents the <code>ResourceBundle</code>
|
||||||
* for the keytool.
|
* for the keytool.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -48,7 +48,7 @@ public class Resources_zh_CN extends java.util.ListResourceBundle {
|
|||||||
"\u5BC6\u94A5\u548C\u8BC1\u4E66\u7BA1\u7406\u5DE5\u5177"},
|
"\u5BC6\u94A5\u548C\u8BC1\u4E66\u7BA1\u7406\u5DE5\u5177"},
|
||||||
{"Commands.", "\u547D\u4EE4:"},
|
{"Commands.", "\u547D\u4EE4:"},
|
||||||
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
||||||
"\u4F7F\u7528 \"keytool -command_name -help\" \u83B7\u53D6 command_name \u7684\u7528\u6CD5"},
|
"\u4F7F\u7528 \"keytool -command_name -help\" \u53EF\u83B7\u53D6 command_name \u7684\u7528\u6CD5\u3002\n\u4F7F\u7528 -conf <url> \u9009\u9879\u53EF\u6307\u5B9A\u9884\u914D\u7F6E\u7684\u9009\u9879\u6587\u4EF6\u3002"},
|
||||||
// keytool: help: commands
|
// keytool: help: commands
|
||||||
{"Generates.a.certificate.request",
|
{"Generates.a.certificate.request",
|
||||||
"\u751F\u6210\u8BC1\u4E66\u8BF7\u6C42"}, //-certreq
|
"\u751F\u6210\u8BC1\u4E66\u8BF7\u6C42"}, //-certreq
|
||||||
@ -306,7 +306,7 @@ public class Resources_zh_CN extends java.util.ListResourceBundle {
|
|||||||
{"Entry.type.type.", "\u6761\u76EE\u7C7B\u578B: {0}"},
|
{"Entry.type.type.", "\u6761\u76EE\u7C7B\u578B: {0}"},
|
||||||
{"Certificate.chain.length.", "\u8BC1\u4E66\u94FE\u957F\u5EA6: "},
|
{"Certificate.chain.length.", "\u8BC1\u4E66\u94FE\u957F\u5EA6: "},
|
||||||
{"Certificate.i.1.", "\u8BC1\u4E66[{0,number,integer}]:"},
|
{"Certificate.i.1.", "\u8BC1\u4E66[{0,number,integer}]:"},
|
||||||
{"Certificate.fingerprint.SHA1.", "\u8BC1\u4E66\u6307\u7EB9 (SHA1): "},
|
{"Certificate.fingerprint.SHA.256.", "\u8BC1\u4E66\u6307\u7EB9 (SHA-256): "},
|
||||||
{"Keystore.type.", "\u5BC6\u94A5\u5E93\u7C7B\u578B: "},
|
{"Keystore.type.", "\u5BC6\u94A5\u5E93\u7C7B\u578B: "},
|
||||||
{"Keystore.provider.", "\u5BC6\u94A5\u5E93\u63D0\u4F9B\u65B9: "},
|
{"Keystore.provider.", "\u5BC6\u94A5\u5E93\u63D0\u4F9B\u65B9: "},
|
||||||
{"Your.keystore.contains.keyStore.size.entry",
|
{"Your.keystore.contains.keyStore.size.entry",
|
||||||
@ -346,7 +346,7 @@ public class Resources_zh_CN extends java.util.ListResourceBundle {
|
|||||||
{".RETURN.if.same.as.for.otherAlias.",
|
{".RETURN.if.same.as.for.otherAlias.",
|
||||||
"\t(\u5982\u679C\u548C <{0}> \u76F8\u540C, \u5219\u6309\u56DE\u8F66)"},
|
"\t(\u5982\u679C\u548C <{0}> \u76F8\u540C, \u5219\u6309\u56DE\u8F66)"},
|
||||||
{".PATTERN.printX509Cert",
|
{".PATTERN.printX509Cert",
|
||||||
"\u6240\u6709\u8005: {0}\n\u53D1\u5E03\u8005: {1}\n\u5E8F\u5217\u53F7: {2}\n\u6709\u6548\u671F\u5F00\u59CB\u65E5\u671F: {3}, \u622A\u6B62\u65E5\u671F: {4}\n\u8BC1\u4E66\u6307\u7EB9:\n\t MD5: {5}\n\t SHA1: {6}\n\t SHA256: {7}\n\t \u7B7E\u540D\u7B97\u6CD5\u540D\u79F0: {8}\n\t \u7248\u672C: {9}"},
|
"\u6240\u6709\u8005: {0}\n\u53D1\u5E03\u8005: {1}\n\u5E8F\u5217\u53F7: {2}\n\u751F\u6548\u65F6\u95F4: {3}, \u5931\u6548\u65F6\u95F4: {4}\n\u8BC1\u4E66\u6307\u7EB9:\n\t SHA1: {5}\n\t SHA256: {6}\n\u7B7E\u540D\u7B97\u6CD5\u540D\u79F0: {7}\n\u4E3B\u4F53\u516C\u5171\u5BC6\u94A5\u7B97\u6CD5: {8} ({9,number,#})\n\u7248\u672C: {10}"},
|
||||||
{"What.is.your.first.and.last.name.",
|
{"What.is.your.first.and.last.name.",
|
||||||
"\u60A8\u7684\u540D\u5B57\u4E0E\u59D3\u6C0F\u662F\u4EC0\u4E48?"},
|
"\u60A8\u7684\u540D\u5B57\u4E0E\u59D3\u6C0F\u662F\u4EC0\u4E48?"},
|
||||||
{"What.is.the.name.of.your.organizational.unit.",
|
{"What.is.the.name.of.your.organizational.unit.",
|
||||||
@ -433,6 +433,8 @@ public class Resources_zh_CN extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
|
* <p>
|
||||||
|
*
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.tools.keytool;
|
package sun.security.tools.keytool;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class represents the <code>ResourceBundle</code>
|
* <p> This class represents the <code>ResourceBundle</code>
|
||||||
* for the keytool.
|
* for the keytool.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -48,7 +48,7 @@ public class Resources_zh_TW extends java.util.ListResourceBundle {
|
|||||||
"\u91D1\u9470\u8207\u6191\u8B49\u7BA1\u7406\u5DE5\u5177"},
|
"\u91D1\u9470\u8207\u6191\u8B49\u7BA1\u7406\u5DE5\u5177"},
|
||||||
{"Commands.", "\u547D\u4EE4:"},
|
{"Commands.", "\u547D\u4EE4:"},
|
||||||
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
{"Use.keytool.command.name.help.for.usage.of.command.name",
|
||||||
"\u4F7F\u7528 \"keytool -command_name -help\" \u53D6\u5F97 command_name \u7684\u7528\u6CD5"},
|
"\u4F7F\u7528 \"keytool -command_name -help\" \u53D6\u5F97 command_name \u7684\u7528\u6CD5\u3002\n\u4F7F\u7528 -conf <url> \u9078\u9805\u6307\u5B9A\u9810\u5148\u8A2D\u5B9A\u7684\u9078\u9805\u6A94\u6848\u3002"},
|
||||||
// keytool: help: commands
|
// keytool: help: commands
|
||||||
{"Generates.a.certificate.request",
|
{"Generates.a.certificate.request",
|
||||||
"\u7522\u751F\u6191\u8B49\u8981\u6C42"}, //-certreq
|
"\u7522\u751F\u6191\u8B49\u8981\u6C42"}, //-certreq
|
||||||
@ -306,7 +306,7 @@ public class Resources_zh_TW extends java.util.ListResourceBundle {
|
|||||||
{"Entry.type.type.", "\u9805\u76EE\u985E\u578B: {0}"},
|
{"Entry.type.type.", "\u9805\u76EE\u985E\u578B: {0}"},
|
||||||
{"Certificate.chain.length.", "\u6191\u8B49\u93C8\u9577\u5EA6: "},
|
{"Certificate.chain.length.", "\u6191\u8B49\u93C8\u9577\u5EA6: "},
|
||||||
{"Certificate.i.1.", "\u6191\u8B49 [{0,number,integer}]:"},
|
{"Certificate.i.1.", "\u6191\u8B49 [{0,number,integer}]:"},
|
||||||
{"Certificate.fingerprint.SHA1.", "\u6191\u8B49\u6307\u7D0B (SHA1): "},
|
{"Certificate.fingerprint.SHA.256.", "\u6191\u8B49\u6307\u7D0B (SHA-256): "},
|
||||||
{"Keystore.type.", "\u91D1\u9470\u5132\u5B58\u5EAB\u985E\u578B: "},
|
{"Keystore.type.", "\u91D1\u9470\u5132\u5B58\u5EAB\u985E\u578B: "},
|
||||||
{"Keystore.provider.", "\u91D1\u9470\u5132\u5B58\u5EAB\u63D0\u4F9B\u8005: "},
|
{"Keystore.provider.", "\u91D1\u9470\u5132\u5B58\u5EAB\u63D0\u4F9B\u8005: "},
|
||||||
{"Your.keystore.contains.keyStore.size.entry",
|
{"Your.keystore.contains.keyStore.size.entry",
|
||||||
@ -346,7 +346,7 @@ public class Resources_zh_TW extends java.util.ListResourceBundle {
|
|||||||
{".RETURN.if.same.as.for.otherAlias.",
|
{".RETURN.if.same.as.for.otherAlias.",
|
||||||
"\t(RETURN \u5982\u679C\u548C <{0}> \u7684\u76F8\u540C)"},
|
"\t(RETURN \u5982\u679C\u548C <{0}> \u7684\u76F8\u540C)"},
|
||||||
{".PATTERN.printX509Cert",
|
{".PATTERN.printX509Cert",
|
||||||
"\u64C1\u6709\u8005: {0}\n\u767C\u51FA\u8005: {1}\n\u5E8F\u865F: {2}\n\u6709\u6548\u671F\u81EA: {3} \u5230: {4}\n\u6191\u8B49\u6307\u7D0B:\n\t MD5: {5}\n\t SHA1: {6}\n\t SHA256: {7}\n\t \u7C3D\u7AE0\u6F14\u7B97\u6CD5\u540D\u7A31: {8}\n\t \u7248\u672C: {9}"},
|
"\u64C1\u6709\u8005: {0}\n\u767C\u51FA\u8005: {1}\n\u5E8F\u865F: {2}\n\u6709\u6548\u671F\u81EA: {3} \u5230: {4}\n\u6191\u8B49\u6307\u7D0B:\n\t SHA1: {5}\n\t SHA256: {6}\n\u7C3D\u7AE0\u6F14\u7B97\u6CD5\u540D\u7A31: {7}\n\u4E3B\u9AD4\u516C\u958B\u91D1\u9470\u6F14\u7B97\u6CD5: {8} ({9,number,#})\n\u7248\u672C: {10}"},
|
||||||
{"What.is.your.first.and.last.name.",
|
{"What.is.your.first.and.last.name.",
|
||||||
"\u60A8\u7684\u540D\u5B57\u8207\u59D3\u6C0F\u70BA\u4F55\uFF1F"},
|
"\u60A8\u7684\u540D\u5B57\u8207\u59D3\u6C0F\u70BA\u4F55\uFF1F"},
|
||||||
{"What.is.the.name.of.your.organizational.unit.",
|
{"What.is.the.name.of.your.organizational.unit.",
|
||||||
@ -381,9 +381,9 @@ public class Resources_zh_TW extends java.util.ListResourceBundle {
|
|||||||
"\u6C92\u6709\u4F86\u81EA SSL \u4F3A\u670D\u5668\u7684\u6191\u8B49"},
|
"\u6C92\u6709\u4F86\u81EA SSL \u4F3A\u670D\u5668\u7684\u6191\u8B49"},
|
||||||
|
|
||||||
{".The.integrity.of.the.information.stored.in.your.keystore.",
|
{".The.integrity.of.the.information.stored.in.your.keystore.",
|
||||||
"* \u5C1A\u672A\u9A57\u8B49\u5132\u5B58\u65BC\u91D1\u9470\u5132\u5B58\u5EAB\u4E2D\u8CC7\u8A0A *\n* \u7684\u5B8C\u6574\u6027\uFF01\u82E5\u8981\u9A57\u8B49\u5176\u5B8C\u6574\u6027\uFF0C*\n* \u60A8\u5FC5\u9808\u63D0\u4F9B\u60A8\u7684\u91D1\u9470\u5132\u5B58\u5EAB\u5BC6\u78BC\u3002 *"},
|
"* \u5C1A\u672A\u9A57\u8B49\u5132\u5B58\u65BC\u91D1\u9470\u5132\u5B58\u5EAB\u4E2D\u8CC7\u8A0A *\n* \u7684\u5B8C\u6574\u6027\uFF01\u82E5\u8981\u9A57\u8B49\u5176\u5B8C\u6574\u6027\uFF0C *\n* \u60A8\u5FC5\u9808\u63D0\u4F9B\u60A8\u7684\u91D1\u9470\u5132\u5B58\u5EAB\u5BC6\u78BC\u3002 *"},
|
||||||
{".The.integrity.of.the.information.stored.in.the.srckeystore.",
|
{".The.integrity.of.the.information.stored.in.the.srckeystore.",
|
||||||
"* \u5C1A\u672A\u9A57\u8B49\u5132\u5B58\u65BC srckeystore \u4E2D\u8CC7\u8A0A*\n* \u7684\u5B8C\u6574\u6027\uFF01\u82E5\u8981\u9A57\u8B49\u5176\u5B8C\u6574\u6027\uFF0C\u60A8\u5FC5\u9808 *\n* \u63D0\u4F9B srckeystore \u5BC6\u78BC\u3002 *"},
|
"* \u5C1A\u672A\u9A57\u8B49\u5132\u5B58\u65BC srckeystore \u4E2D\u8CC7\u8A0A *\n* \u7684\u5B8C\u6574\u6027\uFF01\u82E5\u8981\u9A57\u8B49\u5176\u5B8C\u6574\u6027\uFF0C\u60A8 *\n* \u5FC5\u9808\u63D0\u4F9B srckeystore \u5BC6\u78BC\u3002 *"},
|
||||||
|
|
||||||
{"Certificate.reply.does.not.contain.public.key.for.alias.",
|
{"Certificate.reply.does.not.contain.public.key.for.alias.",
|
||||||
"\u6191\u8B49\u56DE\u8986\u4E26\u672A\u5305\u542B <{0}> \u7684\u516C\u958B\u91D1\u9470"},
|
"\u6191\u8B49\u56DE\u8986\u4E26\u672A\u5305\u542B <{0}> \u7684\u516C\u958B\u91D1\u9470"},
|
||||||
@ -433,6 +433,8 @@ public class Resources_zh_TW extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
|
* <p>
|
||||||
|
*
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, 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
|
||||||
@ -88,7 +88,7 @@ public class AuthResources_ko extends java.util.ListResourceBundle {
|
|||||||
{"Keystore.alias.","\uD0A4 \uC800\uC7A5\uC18C \uBCC4\uCE6D: "},
|
{"Keystore.alias.","\uD0A4 \uC800\uC7A5\uC18C \uBCC4\uCE6D: "},
|
||||||
{"Keystore.password.","\uD0A4 \uC800\uC7A5\uC18C \uBE44\uBC00\uBC88\uD638: "},
|
{"Keystore.password.","\uD0A4 \uC800\uC7A5\uC18C \uBE44\uBC00\uBC88\uD638: "},
|
||||||
{"Private.key.password.optional.",
|
{"Private.key.password.optional.",
|
||||||
"\uC804\uC6A9 \uD0A4 \uBE44\uBC00\uBC88\uD638(\uC120\uD0DD \uC0AC\uD56D): "},
|
"\uC804\uC6A9 \uD0A4 \uBE44\uBC00\uBC88\uD638(\uC120\uD0DD\uC0AC\uD56D): "},
|
||||||
|
|
||||||
// com.sun.security.auth.module.Krb5LoginModule
|
// com.sun.security.auth.module.Krb5LoginModule
|
||||||
{"Kerberos.username.defUsername.",
|
{"Kerberos.username.defUsername.",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, 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
|
||||||
@ -117,7 +117,7 @@ public class AuthResources_sv extends java.util.ListResourceBundle {
|
|||||||
{"only.Principal.based.grant.entries.permitted",
|
{"only.Principal.based.grant.entries.permitted",
|
||||||
"endast identitetshavarbaserade poster till\u00E5ts"},
|
"endast identitetshavarbaserade poster till\u00E5ts"},
|
||||||
{"expected.permission.entry", "f\u00F6rv\u00E4ntade beh\u00F6righetspost"},
|
{"expected.permission.entry", "f\u00F6rv\u00E4ntade beh\u00F6righetspost"},
|
||||||
{"number.", "antal "},
|
{"number.", "nummer"},
|
||||||
{"expected.expect.read.end.of.file.",
|
{"expected.expect.read.end.of.file.",
|
||||||
"f\u00F6rv\u00E4ntade {0}, l\u00E4ste filslut"},
|
"f\u00F6rv\u00E4ntade {0}, l\u00E4ste filslut"},
|
||||||
{"expected.read.end.of.file", "f\u00F6rv\u00E4ntade ';', l\u00E4ste filslut"},
|
{"expected.read.end.of.file", "f\u00F6rv\u00E4ntade ';', l\u00E4ste filslut"},
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.util;
|
package sun.security.util;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p> This class represents the <code>ResourceBundle</code>
|
* This class represents the <code>ResourceBundle</code>
|
||||||
* for javax.security.auth and sun.security.
|
* for javax.security.auth and sun.security.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -160,8 +160,6 @@ public class Resources_de extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
* <p>
|
|
||||||
*
|
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.util;
|
package sun.security.util;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p> This class represents the <code>ResourceBundle</code>
|
* This class represents the <code>ResourceBundle</code>
|
||||||
* for javax.security.auth and sun.security.
|
* for javax.security.auth and sun.security.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -134,7 +134,7 @@ public class Resources_es extends java.util.ListResourceBundle {
|
|||||||
"no se puede especificar Principal con una clase de comod\u00EDn sin un nombre de comod\u00EDn"},
|
"no se puede especificar Principal con una clase de comod\u00EDn sin un nombre de comod\u00EDn"},
|
||||||
{"expected.codeBase.or.SignedBy.or.Principal",
|
{"expected.codeBase.or.SignedBy.or.Principal",
|
||||||
"se esperaba codeBase o SignedBy o Principal"},
|
"se esperaba codeBase o SignedBy o Principal"},
|
||||||
{"expected.permission.entry", "se esperaba una entrada de permiso"},
|
{"expected.permission.entry", "se esperaba un permiso de entrada"},
|
||||||
{"number.", "n\u00FAmero "},
|
{"number.", "n\u00FAmero "},
|
||||||
{"expected.expect.read.end.of.file.",
|
{"expected.expect.read.end.of.file.",
|
||||||
"se esperaba [{0}], se ha le\u00EDdo [final de archivo]"},
|
"se esperaba [{0}], se ha le\u00EDdo [final de archivo]"},
|
||||||
@ -160,8 +160,6 @@ public class Resources_es extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
* <p>
|
|
||||||
*
|
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.util;
|
package sun.security.util;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p> This class represents the <code>ResourceBundle</code>
|
* This class represents the <code>ResourceBundle</code>
|
||||||
* for javax.security.auth and sun.security.
|
* for javax.security.auth and sun.security.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -160,8 +160,6 @@ public class Resources_fr extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
* <p>
|
|
||||||
*
|
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.util;
|
package sun.security.util;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p> This class represents the <code>ResourceBundle</code>
|
* This class represents the <code>ResourceBundle</code>
|
||||||
* for javax.security.auth and sun.security.
|
* for javax.security.auth and sun.security.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -160,8 +160,6 @@ public class Resources_it extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
* <p>
|
|
||||||
*
|
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.util;
|
package sun.security.util;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p> This class represents the <code>ResourceBundle</code>
|
* This class represents the <code>ResourceBundle</code>
|
||||||
* for javax.security.auth and sun.security.
|
* for javax.security.auth and sun.security.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -160,8 +160,6 @@ public class Resources_ja extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
* <p>
|
|
||||||
*
|
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.util;
|
package sun.security.util;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p> This class represents the <code>ResourceBundle</code>
|
* This class represents the <code>ResourceBundle</code>
|
||||||
* for javax.security.auth and sun.security.
|
* for javax.security.auth and sun.security.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -160,8 +160,6 @@ public class Resources_ko extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
* <p>
|
|
||||||
*
|
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.util;
|
package sun.security.util;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p> This class represents the <code>ResourceBundle</code>
|
* This class represents the <code>ResourceBundle</code>
|
||||||
* for javax.security.auth and sun.security.
|
* for javax.security.auth and sun.security.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -160,8 +160,6 @@ public class Resources_pt_BR extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
* <p>
|
|
||||||
*
|
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.util;
|
package sun.security.util;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p> This class represents the <code>ResourceBundle</code>
|
* This class represents the <code>ResourceBundle</code>
|
||||||
* for javax.security.auth and sun.security.
|
* for javax.security.auth and sun.security.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -135,7 +135,7 @@ public class Resources_sv extends java.util.ListResourceBundle {
|
|||||||
{"expected.codeBase.or.SignedBy.or.Principal",
|
{"expected.codeBase.or.SignedBy.or.Principal",
|
||||||
"f\u00F6rv\u00E4ntad codeBase eller SignedBy eller identitetshavare"},
|
"f\u00F6rv\u00E4ntad codeBase eller SignedBy eller identitetshavare"},
|
||||||
{"expected.permission.entry", "f\u00F6rv\u00E4ntade beh\u00F6righetspost"},
|
{"expected.permission.entry", "f\u00F6rv\u00E4ntade beh\u00F6righetspost"},
|
||||||
{"number.", "antal "},
|
{"number.", "nummer"},
|
||||||
{"expected.expect.read.end.of.file.",
|
{"expected.expect.read.end.of.file.",
|
||||||
"f\u00F6rv\u00E4ntade [{0}], l\u00E4ste [filslut]"},
|
"f\u00F6rv\u00E4ntade [{0}], l\u00E4ste [filslut]"},
|
||||||
{"expected.read.end.of.file.",
|
{"expected.read.end.of.file.",
|
||||||
@ -160,8 +160,6 @@ public class Resources_sv extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
* <p>
|
|
||||||
*
|
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.util;
|
package sun.security.util;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p> This class represents the <code>ResourceBundle</code>
|
* This class represents the <code>ResourceBundle</code>
|
||||||
* for javax.security.auth and sun.security.
|
* for javax.security.auth and sun.security.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -160,8 +160,6 @@ public class Resources_zh_CN extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
* <p>
|
|
||||||
*
|
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -26,7 +26,7 @@
|
|||||||
package sun.security.util;
|
package sun.security.util;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p> This class represents the <code>ResourceBundle</code>
|
* This class represents the <code>ResourceBundle</code>
|
||||||
* for javax.security.auth and sun.security.
|
* for javax.security.auth and sun.security.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -83,7 +83,7 @@ public class Resources_zh_TW extends java.util.ListResourceBundle {
|
|||||||
// javax.security.auth.login.LoginContext
|
// javax.security.auth.login.LoginContext
|
||||||
{"Invalid.null.input.name", "\u7121\u6548\u7A7A\u503C\u8F38\u5165: \u540D\u7A31"},
|
{"Invalid.null.input.name", "\u7121\u6548\u7A7A\u503C\u8F38\u5165: \u540D\u7A31"},
|
||||||
{"No.LoginModules.configured.for.name",
|
{"No.LoginModules.configured.for.name",
|
||||||
"\u7121\u91DD\u5C0D {0} \u914D\u7F6E\u7684 LoginModules"},
|
"\u7121\u91DD\u5C0D {0} \u8A2D\u5B9A\u7684 LoginModules"},
|
||||||
{"invalid.null.Subject.provided", "\u63D0\u4F9B\u7121\u6548\u7A7A\u503C\u4E3B\u984C"},
|
{"invalid.null.Subject.provided", "\u63D0\u4F9B\u7121\u6548\u7A7A\u503C\u4E3B\u984C"},
|
||||||
{"invalid.null.CallbackHandler.provided",
|
{"invalid.null.CallbackHandler.provided",
|
||||||
"\u63D0\u4F9B\u7121\u6548\u7A7A\u503C CallbackHandler"},
|
"\u63D0\u4F9B\u7121\u6548\u7A7A\u503C CallbackHandler"},
|
||||||
@ -160,8 +160,6 @@ public class Resources_zh_TW extends java.util.ListResourceBundle {
|
|||||||
/**
|
/**
|
||||||
* Returns the contents of this <code>ResourceBundle</code>.
|
* Returns the contents of this <code>ResourceBundle</code>.
|
||||||
*
|
*
|
||||||
* <p>
|
|
||||||
*
|
|
||||||
* @return the contents of this <code>ResourceBundle</code>.
|
* @return the contents of this <code>ResourceBundle</code>.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2012, 2016, 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
|
||||||
@ -228,7 +228,8 @@ public final class LocaleMatcher {
|
|||||||
rangeForRegex = rangeForRegex.substring(0, index);
|
rangeForRegex = rangeForRegex.substring(0, index);
|
||||||
|
|
||||||
// if range ends with an extension key, truncate it.
|
// if range ends with an extension key, truncate it.
|
||||||
if (rangeForRegex.lastIndexOf('-') == rangeForRegex.length()-2) {
|
index = rangeForRegex.lastIndexOf('-');
|
||||||
|
if (index >= 0 && index == rangeForRegex.length()-2) {
|
||||||
rangeForRegex =
|
rangeForRegex =
|
||||||
rangeForRegex.substring(0, rangeForRegex.length()-2);
|
rangeForRegex.substring(0, rangeForRegex.length()-2);
|
||||||
}
|
}
|
||||||
|
@ -100,6 +100,18 @@ grant codeBase "jrt:/jdk.scripting.nashorn.shell" {
|
|||||||
permission java.security.AllPermission;
|
permission java.security.AllPermission;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
grant codeBase "jrt:/java.smartcardio" {
|
||||||
|
permission javax.smartcardio.CardPermission "*", "*";
|
||||||
|
permission java.lang.RuntimePermission "loadLibrary.j2pcsc";
|
||||||
|
permission java.lang.RuntimePermission "accessClassInPackage.sun.security.*";
|
||||||
|
permission java.util.PropertyPermission "*", "read";
|
||||||
|
// needed for looking up native PC/SC library
|
||||||
|
permission java.io.FilePermission "<<ALL FILES>>","read";
|
||||||
|
permission java.security.SecurityPermission "putProviderProperty.SunPCSC";
|
||||||
|
permission java.security.SecurityPermission "clearProviderProperties.SunPCSC";
|
||||||
|
permission java.security.SecurityPermission "removeProviderProperty.SunPCSC";
|
||||||
|
};
|
||||||
|
|
||||||
grant codeBase "jrt:/java.xml.bind" {
|
grant codeBase "jrt:/java.xml.bind" {
|
||||||
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.xml.internal.*";
|
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.xml.internal.*";
|
||||||
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.istack.internal";
|
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.istack.internal";
|
||||||
|
@ -33,9 +33,9 @@
|
|||||||
#
|
#
|
||||||
# Each provider must implement a subclass of the Provider class.
|
# Each provider must implement a subclass of the Provider class.
|
||||||
# To register a provider in this master security properties file,
|
# To register a provider in this master security properties file,
|
||||||
# specify the Provider subclass name and priority in the format
|
# specify the provider and priority in the format
|
||||||
#
|
#
|
||||||
# security.provider.<n>=<className>
|
# security.provider.<n>=<provName | className>
|
||||||
#
|
#
|
||||||
# This declares a provider, and specifies its preference
|
# This declares a provider, and specifies its preference
|
||||||
# order n. The preference order is the order in which providers are
|
# order n. The preference order is the order in which providers are
|
||||||
@ -43,20 +43,15 @@
|
|||||||
# requested). The order is 1-based; 1 is the most preferred, followed
|
# requested). The order is 1-based; 1 is the most preferred, followed
|
||||||
# by 2, and so on.
|
# by 2, and so on.
|
||||||
#
|
#
|
||||||
|
# <provName> must specify the name of the Provider as passed to its super
|
||||||
|
# class java.security.Provider constructor. This is for providers loaded
|
||||||
|
# through the ServiceLoader mechanism.
|
||||||
|
#
|
||||||
# <className> must specify the subclass of the Provider class whose
|
# <className> must specify the subclass of the Provider class whose
|
||||||
# constructor sets the values of various properties that are required
|
# constructor sets the values of various properties that are required
|
||||||
# for the Java Security API to look up the algorithms or other
|
# for the Java Security API to look up the algorithms or other
|
||||||
# facilities implemented by the provider.
|
# facilities implemented by the provider. This is for providers loaded
|
||||||
#
|
# through classpath.
|
||||||
# There must be at least one provider specification in java.security.
|
|
||||||
# There is a default provider that comes standard with the JDK. It
|
|
||||||
# is called the "SUN" provider, and its Provider subclass
|
|
||||||
# named Sun appears in the sun.security.provider package. Thus, the
|
|
||||||
# "SUN" provider is registered via the following:
|
|
||||||
#
|
|
||||||
# security.provider.1=sun.security.provider.Sun
|
|
||||||
#
|
|
||||||
# (The number 1 is used for the default provider.)
|
|
||||||
#
|
#
|
||||||
# Note: Providers can be dynamically registered instead by calls to
|
# Note: Providers can be dynamically registered instead by calls to
|
||||||
# either the addProvider or insertProviderAt method in the Security
|
# either the addProvider or insertProviderAt method in the Security
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2011, 2016, 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
|
||||||
@ -124,9 +124,9 @@ PrintingDialog.contentInitial.textAndMnemonic=Druckvorgang l\u00E4uft...
|
|||||||
|
|
||||||
# The following string will be formatted by a MessageFormat
|
# The following string will be formatted by a MessageFormat
|
||||||
# and {0} will be replaced by page number being printed
|
# and {0} will be replaced by page number being printed
|
||||||
PrintingDialog.contentProgress.textAndMnemonic=Seite {0} wurde gedruckt ...
|
PrintingDialog.contentProgress.textAndMnemonic=Seite {0} wurde gedruckt...
|
||||||
|
|
||||||
PrintingDialog.contentAborting.textAndMnemonic=Druckvorgang wird abgebrochen ...
|
PrintingDialog.contentAborting.textAndMnemonic=Druckvorgang wird abgebrochen...
|
||||||
|
|
||||||
PrintingDialog.abortButton.textAndMnemonic=&Abbruch
|
PrintingDialog.abortButton.textAndMnemonic=&Abbruch
|
||||||
PrintingDialog.abortButtonToolTip.textAndMnemonic=Druckvorgang abbrechen
|
PrintingDialog.abortButtonToolTip.textAndMnemonic=Druckvorgang abbrechen
|
||||||
@ -149,7 +149,7 @@ InternalFrameTitlePane.closeButton.textAndMnemonic=Schlie\u00DFen
|
|||||||
# Used for html forms
|
# Used for html forms
|
||||||
FormView.submitButton.textAndMnemonic=Abfrage weiterleiten
|
FormView.submitButton.textAndMnemonic=Abfrage weiterleiten
|
||||||
FormView.resetButton.textAndMnemonic=Zur\u00FCcksetzen
|
FormView.resetButton.textAndMnemonic=Zur\u00FCcksetzen
|
||||||
FormView.browseFileButton.textAndMnemonic=Durchsuchen ...
|
FormView.browseFileButton.textAndMnemonic=Durchsuchen...
|
||||||
|
|
||||||
############ Abstract Document Strings ############
|
############ Abstract Document Strings ############
|
||||||
AbstractDocument.styleChange.textAndMnemonic=Formatvorlagen\u00E4nderung
|
AbstractDocument.styleChange.textAndMnemonic=Formatvorlagen\u00E4nderung
|
||||||
@ -169,7 +169,7 @@ AbstractUndoableEdit.redo.textAndMnemonic=Wiederherstellen
|
|||||||
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
ComboBox.togglePopup.textAndMnemonic=togglePopup
|
||||||
|
|
||||||
############ Progress Monitor Strings ############
|
############ Progress Monitor Strings ############
|
||||||
ProgressMonitor.progress.textAndMnemonic=Fortschritt ...
|
ProgressMonitor.progress.textAndMnemonic=Fortschritt...
|
||||||
|
|
||||||
############ Split Pane Strings ############
|
############ Split Pane Strings ############
|
||||||
SplitPane.leftButton.textAndMnemonic=linke Schaltfl\u00E4che
|
SplitPane.leftButton.textAndMnemonic=linke Schaltfl\u00E4che
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2011, 2016, 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
|
||||||
@ -124,7 +124,7 @@ PrintingDialog.contentInitial.textAndMnemonic=Utskrift p\u00E5g\u00E5r...
|
|||||||
|
|
||||||
# The following string will be formatted by a MessageFormat
|
# The following string will be formatted by a MessageFormat
|
||||||
# and {0} will be replaced by page number being printed
|
# and {0} will be replaced by page number being printed
|
||||||
PrintingDialog.contentProgress.textAndMnemonic=Utskriven sida {0}...
|
PrintingDialog.contentProgress.textAndMnemonic=Skriver ut sida {0}...
|
||||||
|
|
||||||
PrintingDialog.contentAborting.textAndMnemonic=Utskriften avbryts...
|
PrintingDialog.contentAborting.textAndMnemonic=Utskriften avbryts...
|
||||||
|
|
||||||
@ -172,8 +172,8 @@ ComboBox.togglePopup.textAndMnemonic=v\u00E4xlaPopup
|
|||||||
ProgressMonitor.progress.textAndMnemonic=P\u00E5g\u00E5r...
|
ProgressMonitor.progress.textAndMnemonic=P\u00E5g\u00E5r...
|
||||||
|
|
||||||
############ Split Pane Strings ############
|
############ Split Pane Strings ############
|
||||||
SplitPane.leftButton.textAndMnemonic=v\u00E4nster knapp
|
SplitPane.leftButton.textAndMnemonic=v\u00E4nsterknapp
|
||||||
SplitPane.rightButton.textAndMnemonic=h\u00F6ger knapp
|
SplitPane.rightButton.textAndMnemonic=h\u00F6gerknapp
|
||||||
# Used for Isindex
|
# Used for Isindex
|
||||||
IsindexView.prompt=Detta \u00E4r ett s\u00F6kbart index. Ange s\u00F6kord:
|
IsindexView.prompt=Detta \u00E4r ett s\u00F6kbart index. Ange s\u00F6kord:
|
||||||
|
|
||||||
|
@ -430,9 +430,6 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
|||||||
|
|
||||||
@Override // PlatformWindow
|
@Override // PlatformWindow
|
||||||
public void dispose() {
|
public void dispose() {
|
||||||
if (owner != null) {
|
|
||||||
CWrapper.NSWindow.removeChildWindow(owner.getNSWindowPtr(), getNSWindowPtr());
|
|
||||||
}
|
|
||||||
contentView.dispose();
|
contentView.dispose();
|
||||||
nativeDispose(getNSWindowPtr());
|
nativeDispose(getNSWindowPtr());
|
||||||
CPlatformWindow.super.dispose();
|
CPlatformWindow.super.dispose();
|
||||||
@ -527,26 +524,6 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
|||||||
public void setVisible(boolean visible) {
|
public void setVisible(boolean visible) {
|
||||||
final long nsWindowPtr = getNSWindowPtr();
|
final long nsWindowPtr = getNSWindowPtr();
|
||||||
|
|
||||||
// Process parent-child relationship when hiding
|
|
||||||
final ComponentAccessor acc = AWTAccessor.getComponentAccessor();
|
|
||||||
if (!visible) {
|
|
||||||
// Unparent my children
|
|
||||||
for (Window w : target.getOwnedWindows()) {
|
|
||||||
WindowPeer p = acc.getPeer(w);
|
|
||||||
if (p instanceof LWWindowPeer) {
|
|
||||||
CPlatformWindow pw = (CPlatformWindow)((LWWindowPeer)p).getPlatformWindow();
|
|
||||||
if (pw != null && pw.isVisible()) {
|
|
||||||
CWrapper.NSWindow.removeChildWindow(nsWindowPtr, pw.getNSWindowPtr());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Unparent myself
|
|
||||||
if (owner != null && owner.isVisible()) {
|
|
||||||
CWrapper.NSWindow.removeChildWindow(owner.getNSWindowPtr(), nsWindowPtr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Configure stuff
|
// Configure stuff
|
||||||
updateIconImages();
|
updateIconImages();
|
||||||
updateFocusabilityForAutoRequestFocus(false);
|
updateFocusabilityForAutoRequestFocus(false);
|
||||||
@ -619,20 +596,22 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
|||||||
updateFocusabilityForAutoRequestFocus(true);
|
updateFocusabilityForAutoRequestFocus(true);
|
||||||
|
|
||||||
// Manage parent-child relationship when showing
|
// Manage parent-child relationship when showing
|
||||||
|
final ComponentAccessor acc = AWTAccessor.getComponentAccessor();
|
||||||
|
|
||||||
if (visible) {
|
if (visible) {
|
||||||
// Add myself as a child
|
// Order myself above my parent
|
||||||
if (owner != null && owner.isVisible()) {
|
if (owner != null && owner.isVisible()) {
|
||||||
CWrapper.NSWindow.addChildWindow(owner.getNSWindowPtr(), nsWindowPtr, CWrapper.NSWindow.NSWindowAbove);
|
CWrapper.NSWindow.orderWindow(nsWindowPtr, CWrapper.NSWindow.NSWindowAbove, owner.getNSWindowPtr());
|
||||||
applyWindowLevel(target);
|
applyWindowLevel(target);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add my own children to myself
|
// Order my own children above myself
|
||||||
for (Window w : target.getOwnedWindows()) {
|
for (Window w : target.getOwnedWindows()) {
|
||||||
final Object p = acc.getPeer(w);
|
final Object p = acc.getPeer(w);
|
||||||
if (p instanceof LWWindowPeer) {
|
if (p instanceof LWWindowPeer) {
|
||||||
CPlatformWindow pw = (CPlatformWindow)((LWWindowPeer)p).getPlatformWindow();
|
CPlatformWindow pw = (CPlatformWindow)((LWWindowPeer)p).getPlatformWindow();
|
||||||
if (pw != null && pw.isVisible()) {
|
if (pw != null && pw.isVisible()) {
|
||||||
CWrapper.NSWindow.addChildWindow(nsWindowPtr, pw.getNSWindowPtr(), CWrapper.NSWindow.NSWindowAbove);
|
CWrapper.NSWindow.orderWindow(pw.getNSWindowPtr(), CWrapper.NSWindow.NSWindowAbove, nsWindowPtr);
|
||||||
pw.applyWindowLevel(w);
|
pw.applyWindowLevel(w);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1052,8 +1031,8 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
|
|||||||
// Order the window to front of the stack of child windows
|
// Order the window to front of the stack of child windows
|
||||||
final long nsWindowSelfPtr = getNSWindowPtr();
|
final long nsWindowSelfPtr = getNSWindowPtr();
|
||||||
final long nsWindowOwnerPtr = owner.getNSWindowPtr();
|
final long nsWindowOwnerPtr = owner.getNSWindowPtr();
|
||||||
CWrapper.NSWindow.removeChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr);
|
CWrapper.NSWindow.orderFront(nsWindowOwnerPtr);
|
||||||
CWrapper.NSWindow.addChildWindow(nsWindowOwnerPtr, nsWindowSelfPtr, CWrapper.NSWindow.NSWindowAbove);
|
CWrapper.NSWindow.orderWindow(nsWindowSelfPtr, CWrapper.NSWindow.NSWindowAbove, nsWindowOwnerPtr);
|
||||||
}
|
}
|
||||||
|
|
||||||
applyWindowLevel(target);
|
applyWindowLevel(target);
|
||||||
|
@ -166,8 +166,7 @@ public class CPrinterGraphicsConfig extends GraphicsConfiguration {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* Returns an {@code AffineTransform} that can be concatenated
|
||||||
* Returns a {@code AffineTransform} that can be concatenated
|
|
||||||
* with the default {@code AffineTransform}
|
* with the default {@code AffineTransform}
|
||||||
* of a {@code GraphicsConfiguration} so that 72 units in user
|
* of a {@code GraphicsConfiguration} so that 72 units in user
|
||||||
* space equals 1 inch in device space.
|
* space equals 1 inch in device space.
|
||||||
|
@ -206,15 +206,6 @@ public final class CWarningWindow extends CPlatformWindow
|
|||||||
synchronized (lock) {
|
synchronized (lock) {
|
||||||
final long nsWindowPtr = getNSWindowPtr();
|
final long nsWindowPtr = getNSWindowPtr();
|
||||||
|
|
||||||
// Process parent-child relationship when hiding
|
|
||||||
if (!visible) {
|
|
||||||
// Unparent myself
|
|
||||||
if (owner != null && owner.isVisible()) {
|
|
||||||
CWrapper.NSWindow.removeChildWindow(
|
|
||||||
owner.getNSWindowPtr(), nsWindowPtr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Actually show or hide the window
|
// Actually show or hide the window
|
||||||
if (visible) {
|
if (visible) {
|
||||||
CWrapper.NSWindow.orderFront(nsWindowPtr);
|
CWrapper.NSWindow.orderFront(nsWindowPtr);
|
||||||
@ -226,10 +217,10 @@ public final class CWarningWindow extends CPlatformWindow
|
|||||||
|
|
||||||
// Manage parent-child relationship when showing
|
// Manage parent-child relationship when showing
|
||||||
if (visible) {
|
if (visible) {
|
||||||
// Add myself as a child
|
// Order myself above my parent
|
||||||
if (owner != null && owner.isVisible()) {
|
if (owner != null && owner.isVisible()) {
|
||||||
CWrapper.NSWindow.addChildWindow(owner.getNSWindowPtr(),
|
CWrapper.NSWindow.orderWindow(nsWindowPtr,
|
||||||
nsWindowPtr, CWrapper.NSWindow.NSWindowAbove);
|
CWrapper.NSWindow.NSWindowAbove, owner.getNSWindowPtr());
|
||||||
|
|
||||||
// do not allow security warning to be obscured by other windows
|
// do not allow security warning to be obscured by other windows
|
||||||
applyWindowLevel(ownerWindow);
|
applyWindowLevel(ownerWindow);
|
||||||
|
@ -46,6 +46,7 @@
|
|||||||
AWTWindow *ownerWindow;
|
AWTWindow *ownerWindow;
|
||||||
jint preFullScreenLevel;
|
jint preFullScreenLevel;
|
||||||
NSRect standardFrame;
|
NSRect standardFrame;
|
||||||
|
BOOL isMinimizing;
|
||||||
}
|
}
|
||||||
|
|
||||||
// An instance of either AWTWindow_Normal or AWTWindow_Panel
|
// An instance of either AWTWindow_Normal or AWTWindow_Panel
|
||||||
@ -60,6 +61,7 @@
|
|||||||
@property (nonatomic) BOOL isEnabled;
|
@property (nonatomic) BOOL isEnabled;
|
||||||
@property (nonatomic) jint preFullScreenLevel;
|
@property (nonatomic) jint preFullScreenLevel;
|
||||||
@property (nonatomic) NSRect standardFrame;
|
@property (nonatomic) NSRect standardFrame;
|
||||||
|
@property (nonatomic) BOOL isMinimizing;
|
||||||
|
|
||||||
- (id) initWithPlatformWindow:(JNFWeakJObjectWrapper *)javaPlatformWindow
|
- (id) initWithPlatformWindow:(JNFWeakJObjectWrapper *)javaPlatformWindow
|
||||||
ownerWindow:owner
|
ownerWindow:owner
|
||||||
|
@ -180,6 +180,7 @@ AWT_NS_WINDOW_IMPLEMENTATION
|
|||||||
@synthesize ownerWindow;
|
@synthesize ownerWindow;
|
||||||
@synthesize preFullScreenLevel;
|
@synthesize preFullScreenLevel;
|
||||||
@synthesize standardFrame;
|
@synthesize standardFrame;
|
||||||
|
@synthesize isMinimizing;
|
||||||
|
|
||||||
- (void) updateMinMaxSize:(BOOL)resizable {
|
- (void) updateMinMaxSize:(BOOL)resizable {
|
||||||
if (resizable) {
|
if (resizable) {
|
||||||
@ -304,6 +305,7 @@ AWT_ASSERT_APPKIT_THREAD;
|
|||||||
[self.nsWindow release]; // the property retains the object already
|
[self.nsWindow release]; // the property retains the object already
|
||||||
|
|
||||||
self.isEnabled = YES;
|
self.isEnabled = YES;
|
||||||
|
self.isMinimizing = NO;
|
||||||
self.javaPlatformWindow = platformWindow;
|
self.javaPlatformWindow = platformWindow;
|
||||||
self.styleBits = bits;
|
self.styleBits = bits;
|
||||||
self.ownerWindow = owner;
|
self.ownerWindow = owner;
|
||||||
@ -423,6 +425,68 @@ AWT_ASSERT_APPKIT_THREAD;
|
|||||||
[super dealloc];
|
[super dealloc];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Tests wheather the corresponding Java paltform window is visible or not
|
||||||
|
+ (BOOL) isJavaPlatformWindowVisible:(NSWindow *)window {
|
||||||
|
BOOL isVisible = NO;
|
||||||
|
|
||||||
|
if ([AWTWindow isAWTWindow:window] && [window delegate] != nil) {
|
||||||
|
AWTWindow *awtWindow = (AWTWindow *)[window delegate];
|
||||||
|
[AWTToolkit eventCountPlusPlus];
|
||||||
|
|
||||||
|
JNIEnv *env = [ThreadUtilities getJNIEnv];
|
||||||
|
jobject platformWindow = [awtWindow.javaPlatformWindow jObjectWithEnv:env];
|
||||||
|
if (platformWindow != NULL) {
|
||||||
|
static JNF_MEMBER_CACHE(jm_isVisible, jc_CPlatformWindow, "isVisible", "()Z");
|
||||||
|
isVisible = JNFCallBooleanMethod(env, platformWindow, jm_isVisible) == JNI_TRUE ? YES : NO;
|
||||||
|
(*env)->DeleteLocalRef(env, platformWindow);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return isVisible;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Orders window's childs based on the current focus state
|
||||||
|
- (void) orderChildWindows:(BOOL)focus {
|
||||||
|
AWT_ASSERT_APPKIT_THREAD;
|
||||||
|
|
||||||
|
if (self.isMinimizing) {
|
||||||
|
// Do not perform any ordering, if iconify is in progress
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
NSEnumerator *windowEnumerator = [[NSApp windows]objectEnumerator];
|
||||||
|
NSWindow *window;
|
||||||
|
while ((window = [windowEnumerator nextObject]) != nil) {
|
||||||
|
if ([AWTWindow isJavaPlatformWindowVisible:window]) {
|
||||||
|
AWTWindow *awtWindow = (AWTWindow *)[window delegate];
|
||||||
|
AWTWindow *owner = awtWindow.ownerWindow;
|
||||||
|
if (IS(awtWindow.styleBits, ALWAYS_ON_TOP)) {
|
||||||
|
// Do not order 'always on top' windows
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
while (awtWindow.ownerWindow != nil) {
|
||||||
|
if (awtWindow.ownerWindow == self) {
|
||||||
|
if (focus) {
|
||||||
|
// Move the childWindow to floating level
|
||||||
|
// so it will appear in front of its
|
||||||
|
// parent which owns the focus
|
||||||
|
[window setLevel:NSFloatingWindowLevel];
|
||||||
|
} else {
|
||||||
|
// Focus owner has changed, move the childWindow
|
||||||
|
// back to normal window level
|
||||||
|
[window setLevel:NSNormalWindowLevel];
|
||||||
|
}
|
||||||
|
// The childWindow should be displayed in front of
|
||||||
|
// its nearest parentWindow
|
||||||
|
[window orderWindow:NSWindowAbove relativeTo:[owner.nsWindow windowNumber]];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
awtWindow = awtWindow.ownerWindow;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// NSWindow overrides
|
// NSWindow overrides
|
||||||
- (BOOL) canBecomeKeyWindow {
|
- (BOOL) canBecomeKeyWindow {
|
||||||
AWT_ASSERT_APPKIT_THREAD;
|
AWT_ASSERT_APPKIT_THREAD;
|
||||||
@ -511,6 +575,30 @@ AWT_ASSERT_APPKIT_THREAD;
|
|||||||
return [self standardFrame];
|
return [self standardFrame];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Hides/shows window's childs during iconify/de-iconify operation
|
||||||
|
- (void) iconifyChildWindows:(BOOL)iconify {
|
||||||
|
AWT_ASSERT_APPKIT_THREAD;
|
||||||
|
|
||||||
|
NSEnumerator *windowEnumerator = [[NSApp windows]objectEnumerator];
|
||||||
|
NSWindow *window;
|
||||||
|
while ((window = [windowEnumerator nextObject]) != nil) {
|
||||||
|
if ([AWTWindow isJavaPlatformWindowVisible:window]) {
|
||||||
|
AWTWindow *awtWindow = (AWTWindow *)[window delegate];
|
||||||
|
while (awtWindow.ownerWindow != nil) {
|
||||||
|
if (awtWindow.ownerWindow == self) {
|
||||||
|
if (iconify) {
|
||||||
|
[window orderOut:window];
|
||||||
|
} else {
|
||||||
|
[window orderFront:window];
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
awtWindow = awtWindow.ownerWindow;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
- (void) _deliverIconify:(BOOL)iconify {
|
- (void) _deliverIconify:(BOOL)iconify {
|
||||||
AWT_ASSERT_APPKIT_THREAD;
|
AWT_ASSERT_APPKIT_THREAD;
|
||||||
|
|
||||||
@ -524,16 +612,28 @@ AWT_ASSERT_APPKIT_THREAD;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)windowWillMiniaturize:(NSNotification *)notification {
|
||||||
|
AWT_ASSERT_APPKIT_THREAD;
|
||||||
|
|
||||||
|
self.isMinimizing = YES;
|
||||||
|
// Excplicitly make myself a key window to avoid possible
|
||||||
|
// negative visual effects during iconify operation
|
||||||
|
[self.nsWindow makeKeyAndOrderFront:self.nsWindow];
|
||||||
|
[self iconifyChildWindows:YES];
|
||||||
|
}
|
||||||
|
|
||||||
- (void)windowDidMiniaturize:(NSNotification *)notification {
|
- (void)windowDidMiniaturize:(NSNotification *)notification {
|
||||||
AWT_ASSERT_APPKIT_THREAD;
|
AWT_ASSERT_APPKIT_THREAD;
|
||||||
|
|
||||||
[self _deliverIconify:JNI_TRUE];
|
[self _deliverIconify:JNI_TRUE];
|
||||||
|
self.isMinimizing = NO;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)windowDidDeminiaturize:(NSNotification *)notification {
|
- (void)windowDidDeminiaturize:(NSNotification *)notification {
|
||||||
AWT_ASSERT_APPKIT_THREAD;
|
AWT_ASSERT_APPKIT_THREAD;
|
||||||
|
|
||||||
[self _deliverIconify:JNI_FALSE];
|
[self _deliverIconify:JNI_FALSE];
|
||||||
|
[self iconifyChildWindows:NO];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) _deliverWindowFocusEvent:(BOOL)focused oppositeWindow:(AWTWindow *)opposite {
|
- (void) _deliverWindowFocusEvent:(BOOL)focused oppositeWindow:(AWTWindow *)opposite {
|
||||||
@ -579,6 +679,7 @@ AWT_ASSERT_APPKIT_THREAD;
|
|||||||
[AWTWindow setLastKeyWindow:nil];
|
[AWTWindow setLastKeyWindow:nil];
|
||||||
|
|
||||||
[self _deliverWindowFocusEvent:YES oppositeWindow: opposite];
|
[self _deliverWindowFocusEvent:YES oppositeWindow: opposite];
|
||||||
|
[self orderChildWindows:YES];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) windowDidResignKey: (NSNotification *) notification {
|
- (void) windowDidResignKey: (NSNotification *) notification {
|
||||||
@ -606,6 +707,7 @@ AWT_ASSERT_APPKIT_THREAD;
|
|||||||
}
|
}
|
||||||
|
|
||||||
[self _deliverWindowFocusEvent:NO oppositeWindow: opposite];
|
[self _deliverWindowFocusEvent:NO oppositeWindow: opposite];
|
||||||
|
[self orderChildWindows:NO];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) windowDidBecomeMain: (NSNotification *) notification {
|
- (void) windowDidBecomeMain: (NSNotification *) notification {
|
||||||
@ -709,9 +811,12 @@ AWT_ASSERT_APPKIT_THREAD;
|
|||||||
if (p.y >= (frame.origin.y + contentRect.size.height)) {
|
if (p.y >= (frame.origin.y + contentRect.size.height)) {
|
||||||
JNIEnv *env = [ThreadUtilities getJNIEnvUncached];
|
JNIEnv *env = [ThreadUtilities getJNIEnvUncached];
|
||||||
jobject platformWindow = [self.javaPlatformWindow jObjectWithEnv:env];
|
jobject platformWindow = [self.javaPlatformWindow jObjectWithEnv:env];
|
||||||
// Currently, no need to deliver the whole NSEvent.
|
if (platformWindow != NULL) {
|
||||||
static JNF_MEMBER_CACHE(jm_deliverNCMouseDown, jc_CPlatformWindow, "deliverNCMouseDown", "()V");
|
// Currently, no need to deliver the whole NSEvent.
|
||||||
JNFCallVoidMethod(env, platformWindow, jm_deliverNCMouseDown);
|
static JNF_MEMBER_CACHE(jm_deliverNCMouseDown, jc_CPlatformWindow, "deliverNCMouseDown", "()V");
|
||||||
|
JNFCallVoidMethod(env, platformWindow, jm_deliverNCMouseDown);
|
||||||
|
(*env)->DeleteLocalRef(env, platformWindow);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -127,6 +127,7 @@ static void displaycb_handle
|
|||||||
jc_CGraphicsEnvironment, "_displayReconfiguration","(IZ)V");
|
jc_CGraphicsEnvironment, "_displayReconfiguration","(IZ)V");
|
||||||
JNFCallVoidMethod(env, graphicsEnv, jm_displayReconfiguration,
|
JNFCallVoidMethod(env, graphicsEnv, jm_displayReconfiguration,
|
||||||
(jint) display, (jboolean) flags & kCGDisplayRemoveFlag);
|
(jint) display, (jboolean) flags & kCGDisplayRemoveFlag);
|
||||||
|
(*env)->DeleteLocalRef(env, graphicsEnv);
|
||||||
});
|
});
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
- (BOOL) worksWhenModal {
|
- (BOOL) worksWhenModal {
|
||||||
return YES;
|
return YES;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Events
|
// Events
|
||||||
- (void)handleAction:(NSMenuItem *)sender {
|
- (void)handleAction:(NSMenuItem *)sender {
|
||||||
AWT_ASSERT_APPKIT_THREAD;
|
AWT_ASSERT_APPKIT_THREAD;
|
||||||
@ -91,7 +92,6 @@
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if ([currEvent type] == NSKeyDown) {
|
if ([currEvent type] == NSKeyDown) {
|
||||||
|
|
||||||
// Event available through sender variable hence NSApplication
|
// Event available through sender variable hence NSApplication
|
||||||
// not needed for checking the keyboard input sans the modifier keys
|
// not needed for checking the keyboard input sans the modifier keys
|
||||||
// Also, the method used to fetch eventKey earlier would be locale dependent
|
// Also, the method used to fetch eventKey earlier would be locale dependent
|
||||||
@ -99,7 +99,6 @@
|
|||||||
// is not U.S. (Devanagari in this case)
|
// is not U.S. (Devanagari in this case)
|
||||||
// With current implementation, EventKey = MenuKey = e irrespective of
|
// With current implementation, EventKey = MenuKey = e irrespective of
|
||||||
// input method
|
// input method
|
||||||
|
|
||||||
NSString *eventKey = [sender keyEquivalent];
|
NSString *eventKey = [sender keyEquivalent];
|
||||||
// Apple uses characters from private Unicode range for some of the
|
// Apple uses characters from private Unicode range for some of the
|
||||||
// keys, so we need to do the same translation here that we do
|
// keys, so we need to do the same translation here that we do
|
||||||
@ -116,15 +115,15 @@
|
|||||||
if (keyWindow != nil) {
|
if (keyWindow != nil) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else {
|
}
|
||||||
static JNF_CLASS_CACHE(jc_CMenuItem, "sun/lwawt/macosx/CMenuItem");
|
else {
|
||||||
static JNF_MEMBER_CACHE(jm_handleAction, jc_CMenuItem, "handleAction", "(JI)V"); // AWT_THREADING Safe (event)
|
static JNF_CLASS_CACHE(jc_CMenuItem, "sun/lwawt/macosx/CMenuItem");
|
||||||
|
static JNF_MEMBER_CACHE(jm_handleAction, jc_CMenuItem, "handleAction", "(JI)V"); // AWT_THREADING Safe (event)
|
||||||
NSUInteger modifiers = [currEvent modifierFlags];
|
|
||||||
jint javaModifiers = NsKeyModifiersToJavaModifiers(modifiers, NO);
|
NSUInteger modifiers = [currEvent modifierFlags];
|
||||||
|
jint javaModifiers = NsKeyModifiersToJavaModifiers(modifiers, NO);
|
||||||
JNFCallVoidMethod(env, fPeer, jm_handleAction, UTC(currEvent), javaModifiers); // AWT_THREADING Safe (event)
|
|
||||||
}
|
JNFCallVoidMethod(env, fPeer, jm_handleAction, UTC(currEvent), javaModifiers); // AWT_THREADING Safe (event)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
JNF_COCOA_EXIT(env);
|
JNF_COCOA_EXIT(env);
|
||||||
|
@ -17,7 +17,7 @@ alert=Alert
|
|||||||
awtcomponent=AWT-Komponente
|
awtcomponent=AWT-Komponente
|
||||||
checkbox=Kontrollk\u00E4stchen
|
checkbox=Kontrollk\u00E4stchen
|
||||||
colorchooser=Farbauswahl
|
colorchooser=Farbauswahl
|
||||||
columnheader=Spalten-Header
|
columnheader=Spaltenheader
|
||||||
combobox=Kombinationsfeld
|
combobox=Kombinationsfeld
|
||||||
canvas=Leinwand
|
canvas=Leinwand
|
||||||
desktopicon=Desktopsymbol
|
desktopicon=Desktopsymbol
|
||||||
@ -46,7 +46,7 @@ progressbar=Fortschrittsbalken
|
|||||||
pushbutton=Schaltfl\u00E4che
|
pushbutton=Schaltfl\u00E4che
|
||||||
radiobutton=Optionsfeld
|
radiobutton=Optionsfeld
|
||||||
rootpane=Root-Bereich
|
rootpane=Root-Bereich
|
||||||
rowheader=Zeilen-Header
|
rowheader=Zeilenheader
|
||||||
scrollbar=Bildlaufleiste
|
scrollbar=Bildlaufleiste
|
||||||
scrollpane=Bildlaufbereich
|
scrollpane=Bildlaufbereich
|
||||||
separator=Trennzeichen
|
separator=Trennzeichen
|
||||||
|
@ -88,7 +88,7 @@ iconified=minimerad
|
|||||||
modal=modal
|
modal=modal
|
||||||
multiline=flera rader
|
multiline=flera rader
|
||||||
multiselectable=flerval
|
multiselectable=flerval
|
||||||
opaque=t\u00E4ckande
|
opaque=ogenomskinlig
|
||||||
pressed=nedtryckt
|
pressed=nedtryckt
|
||||||
resizable=storleks\u00E4ndringsbar
|
resizable=storleks\u00E4ndringsbar
|
||||||
selectable=valbar
|
selectable=valbar
|
||||||
|
@ -44,7 +44,7 @@ passwordtext=\u5BC6\u78BC\u6587\u5B57
|
|||||||
popupmenu=\u5373\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=\u5713\u9215
|
||||||
rootpane=root \u7A97\u683C
|
rootpane=root \u7A97\u683C
|
||||||
rowheader=\u5217\u6A19\u984C
|
rowheader=\u5217\u6A19\u984C
|
||||||
scrollbar=\u6372\u8EF8
|
scrollbar=\u6372\u8EF8
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2014, 2016, 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
|
||||||
@ -22,6 +22,7 @@
|
|||||||
* or visit www.oracle.com if you need additional information or have any
|
* or visit www.oracle.com if you need additional information or have any
|
||||||
* questions.
|
* questions.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package com.sun.beans.introspect;
|
package com.sun.beans.introspect;
|
||||||
|
|
||||||
import com.sun.beans.TypeResolver;
|
import com.sun.beans.TypeResolver;
|
||||||
@ -31,7 +32,9 @@ import java.lang.reflect.Method;
|
|||||||
import java.lang.reflect.Modifier;
|
import java.lang.reflect.Modifier;
|
||||||
import java.lang.reflect.Type;
|
import java.lang.reflect.Type;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
|
import java.util.Comparator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
final class MethodInfo {
|
final class MethodInfo {
|
||||||
@ -87,8 +90,60 @@ final class MethodInfo {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return (list != null)
|
if (list != null) {
|
||||||
? Collections.unmodifiableList(list)
|
list.sort(MethodOrder.instance);
|
||||||
: Collections.emptyList();
|
return Collections.unmodifiableList(list);
|
||||||
|
}
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A comparator that defines a total order so that methods have the same
|
||||||
|
* name and identical signatures appear next to each others. The methods are
|
||||||
|
* sorted in such a way that methods which override each other will sit next
|
||||||
|
* to each other, with the overridden method last - e.g. is Integer getFoo()
|
||||||
|
* placed before Object getFoo().
|
||||||
|
**/
|
||||||
|
private static final class MethodOrder implements Comparator<Method> {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Code particularly was copied from com.sun.jmx.mbeanserver.MethodOrder
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public int compare(final Method a, final Method b) {
|
||||||
|
int cmp = a.getName().compareTo(b.getName());
|
||||||
|
if (cmp != 0) {
|
||||||
|
return cmp;
|
||||||
|
}
|
||||||
|
final Class<?>[] aparams = a.getParameterTypes();
|
||||||
|
final Class<?>[] bparams = b.getParameterTypes();
|
||||||
|
if (aparams.length != bparams.length) {
|
||||||
|
return aparams.length - bparams.length;
|
||||||
|
}
|
||||||
|
for (int i = 0; i < aparams.length; ++i) {
|
||||||
|
final Class<?> aparam = aparams[i];
|
||||||
|
final Class<?> bparam = bparams[i];
|
||||||
|
if (aparam == bparam) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
cmp = aparam.getName().compareTo(bparam.getName());
|
||||||
|
if (cmp != 0) {
|
||||||
|
return cmp;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
final Class<?> aret = a.getReturnType();
|
||||||
|
final Class<?> bret = b.getReturnType();
|
||||||
|
if (aret == bret) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Super type comes last: Integer, Number, Object
|
||||||
|
if (aret.isAssignableFrom(bret)) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
static final MethodOrder instance = new MethodOrder();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2014, 2016, 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
|
||||||
@ -22,6 +22,7 @@
|
|||||||
* or visit www.oracle.com if you need additional information or have any
|
* or visit www.oracle.com if you need additional information or have any
|
||||||
* questions.
|
* questions.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package com.sun.beans.introspect;
|
package com.sun.beans.introspect;
|
||||||
|
|
||||||
import java.beans.BeanProperty;
|
import java.beans.BeanProperty;
|
||||||
@ -40,7 +41,11 @@ import java.util.TreeMap;
|
|||||||
import static com.sun.beans.finder.ClassFinder.findClass;
|
import static com.sun.beans.finder.ClassFinder.findClass;
|
||||||
|
|
||||||
public final class PropertyInfo {
|
public final class PropertyInfo {
|
||||||
public enum Name {bound, expert, hidden, preferred, required, visualUpdate, description, enumerationValues}
|
|
||||||
|
public enum Name {
|
||||||
|
bound, expert, hidden, preferred, required, visualUpdate, description,
|
||||||
|
enumerationValues
|
||||||
|
}
|
||||||
|
|
||||||
private static final String VETO_EXCEPTION_NAME = "java.beans.PropertyVetoException";
|
private static final String VETO_EXCEPTION_NAME = "java.beans.PropertyVetoException";
|
||||||
private static final Class<?> VETO_EXCEPTION;
|
private static final Class<?> VETO_EXCEPTION;
|
||||||
@ -107,12 +112,14 @@ public final class PropertyInfo {
|
|||||||
if ((this.type == null) && (this.indexed == null)) {
|
if ((this.type == null) && (this.indexed == null)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
initialize(this.write);
|
boolean done = initialize(this.read);
|
||||||
initialize(this.read);
|
if (!done) {
|
||||||
|
initialize(this.write);
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void initialize(MethodInfo info) {
|
private boolean initialize(MethodInfo info) {
|
||||||
if (info != null) {
|
if (info != null) {
|
||||||
BeanProperty annotation = info.method.getAnnotation(BeanProperty.class);
|
BeanProperty annotation = info.method.getAnnotation(BeanProperty.class);
|
||||||
if (annotation != null) {
|
if (annotation != null) {
|
||||||
@ -157,8 +164,10 @@ public final class PropertyInfo {
|
|||||||
} catch (Exception ignored) {
|
} catch (Exception ignored) {
|
||||||
ignored.printStackTrace();
|
ignored.printStackTrace();
|
||||||
}
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Class<?> getPropertyType() {
|
public Class<?> getPropertyType() {
|
||||||
|
@ -38,9 +38,14 @@ import javax.imageio.plugins.tiff.TIFFTagSet;
|
|||||||
* wherein the child node is procedural rather than buffered.
|
* wherein the child node is procedural rather than buffered.
|
||||||
*/
|
*/
|
||||||
public class TIFFFieldNode extends IIOMetadataNode {
|
public class TIFFFieldNode extends IIOMetadataNode {
|
||||||
|
private static boolean isIFD(TIFFField f) {
|
||||||
|
int type = f.getType();
|
||||||
|
return f.hasDirectory() &&
|
||||||
|
(type == TIFFTag.TIFF_LONG || type == TIFFTag.TIFF_IFD_POINTER);
|
||||||
|
}
|
||||||
|
|
||||||
private static String getNodeName(TIFFField f) {
|
private static String getNodeName(TIFFField f) {
|
||||||
return (f.hasDirectory() || f.getData() instanceof TIFFDirectory) ?
|
return isIFD(f) ? "TIFFIFD" : "TIFFField";
|
||||||
"TIFFIFD" : "TIFFField";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean isIFD;
|
private boolean isIFD;
|
||||||
@ -52,8 +57,7 @@ public class TIFFFieldNode extends IIOMetadataNode {
|
|||||||
public TIFFFieldNode(TIFFField field) {
|
public TIFFFieldNode(TIFFField field) {
|
||||||
super(getNodeName(field));
|
super(getNodeName(field));
|
||||||
|
|
||||||
isIFD = field.hasDirectory() ||
|
isIFD = isIFD(field);
|
||||||
field.getData() instanceof TIFFDirectory;
|
|
||||||
|
|
||||||
this.field = field;
|
this.field = field;
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ FileChooser.saveButton.textAndMnemonic=\uD655\uC778
|
|||||||
FileChooser.openButton.textAndMnemonic=\uD655\uC778
|
FileChooser.openButton.textAndMnemonic=\uD655\uC778
|
||||||
FileChooser.saveDialogTitle.textAndMnemonic=\uC800\uC7A5
|
FileChooser.saveDialogTitle.textAndMnemonic=\uC800\uC7A5
|
||||||
FileChooser.openDialogTitle.textAndMnemonic=\uC5F4\uAE30
|
FileChooser.openDialogTitle.textAndMnemonic=\uC5F4\uAE30
|
||||||
FileChooser.pathLabel.textAndMnemonic=\uC120\uD0DD \uC0AC\uD56D(&S):
|
FileChooser.pathLabel.textAndMnemonic=\uC120\uD0DD\uC0AC\uD56D(&S):
|
||||||
FileChooser.filterLabel.textAndMnemonic=\uD544\uD130:
|
FileChooser.filterLabel.textAndMnemonic=\uD544\uD130:
|
||||||
FileChooser.foldersLabel.textAndMnemonic=\uD3F4\uB354(&D)
|
FileChooser.foldersLabel.textAndMnemonic=\uD3F4\uB354(&D)
|
||||||
FileChooser.filesLabel.textAndMnemonic=\uD30C\uC77C(&F)
|
FileChooser.filesLabel.textAndMnemonic=\uD30C\uC77C(&F)
|
||||||
|
@ -44,11 +44,11 @@ FileChooser.filterLabel.textAndMnemonic=Filter:
|
|||||||
FileChooser.foldersLabel.textAndMnemonic=Map&par
|
FileChooser.foldersLabel.textAndMnemonic=Map&par
|
||||||
FileChooser.filesLabel.textAndMnemonic=&Filer
|
FileChooser.filesLabel.textAndMnemonic=&Filer
|
||||||
|
|
||||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt dialogrutan Filv\u00E4ljare.
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt dialogrutan f\u00F6r filval.
|
||||||
FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil.
|
FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil.
|
||||||
FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil.
|
FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil.
|
||||||
|
|
||||||
FileChooser.renameFileDialog.textAndMnemonic=Namn\u00E4ndra fil "{0}" till
|
FileChooser.renameFileDialog.textAndMnemonic=\u00C4ndra namn p\u00E5 fil "{0}" till
|
||||||
FileChooser.renameFileError.titleAndMnemonic=Fel
|
FileChooser.renameFileError.titleAndMnemonic=Fel
|
||||||
FileChooser.renameFileError.textAndMnemonic=Fel vid namn\u00E4ndring av fil "{0}" till "{1}"
|
FileChooser.renameFileError.textAndMnemonic=Fel vid namn\u00E4ndring av fil "{0}" till "{1}"
|
||||||
|
|
||||||
|
@ -33,8 +33,8 @@ FileChooser.filesLabel.textAndMnemonic=F&iler
|
|||||||
FileChooser.enterFileNameLabel.textAndMnemonic=A&nge filnamn:
|
FileChooser.enterFileNameLabel.textAndMnemonic=A&nge filnamn:
|
||||||
FileChooser.enterFolderNameLabel.textAndMnemonic=Ange ett mappnamn:
|
FileChooser.enterFolderNameLabel.textAndMnemonic=Ange ett mappnamn:
|
||||||
|
|
||||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt dialogrutan Filv\u00E4ljare.
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt dialogrutan f\u00F6r filval.
|
||||||
FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil.
|
FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil.
|
||||||
FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil.
|
FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil.
|
||||||
FileChooser.updateButtonToolTip.textAndMnemonic=Uppdatera kataloglistan.
|
FileChooser.updateButtonToolTip.textAndMnemonic=Uppdatera kataloglistan.
|
||||||
FileChooser.helpButtonToolTip.textAndMnemonic=Hj\u00E4lp - Filv\u00E4ljare.
|
FileChooser.helpButtonToolTip.textAndMnemonic=Hj\u00E4lp f\u00F6r val av fil.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2001, 2016, 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,6 +29,7 @@ import java.beans.*;
|
|||||||
import java.lang.ref.*;
|
import java.lang.ref.*;
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import javax.swing.plaf.*;
|
import javax.swing.plaf.*;
|
||||||
|
import sun.awt.AppContext;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Wrapper for a value from the desktop. The value is lazily looked up, and
|
* Wrapper for a value from the desktop. The value is lazily looked up, and
|
||||||
@ -41,10 +42,8 @@ import javax.swing.plaf.*;
|
|||||||
// NOTE: Don't rely on this class staying in this location. It is likely
|
// NOTE: Don't rely on this class staying in this location. It is likely
|
||||||
// to move to a different package in the future.
|
// to move to a different package in the future.
|
||||||
public class DesktopProperty implements UIDefaults.ActiveValue {
|
public class DesktopProperty implements UIDefaults.ActiveValue {
|
||||||
/**
|
private static final StringBuilder DESKTOP_PROPERTY_UPDATE_PENDING_KEY =
|
||||||
* Indicates if an updateUI call is pending.
|
new StringBuilder("DesktopPropertyUpdatePending");
|
||||||
*/
|
|
||||||
private static boolean updatePending;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ReferenceQueue of unreferenced WeakPCLs.
|
* ReferenceQueue of unreferenced WeakPCLs.
|
||||||
@ -86,14 +85,16 @@ public class DesktopProperty implements UIDefaults.ActiveValue {
|
|||||||
* Sets whether or not an updateUI call is pending.
|
* Sets whether or not an updateUI call is pending.
|
||||||
*/
|
*/
|
||||||
private static synchronized void setUpdatePending(boolean update) {
|
private static synchronized void setUpdatePending(boolean update) {
|
||||||
updatePending = update;
|
AppContext.getAppContext()
|
||||||
|
.put(DESKTOP_PROPERTY_UPDATE_PENDING_KEY, update);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns true if a UI update is pending.
|
* Returns true if a UI update is pending.
|
||||||
*/
|
*/
|
||||||
private static synchronized boolean isUpdatePending() {
|
private static synchronized boolean isUpdatePending() {
|
||||||
return updatePending;
|
return Boolean.TRUE.equals(AppContext.getAppContext()
|
||||||
|
.get(DESKTOP_PROPERTY_UPDATE_PENDING_KEY));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1085,6 +1085,8 @@ public class WindowsLookAndFeel extends BasicLookAndFeel
|
|||||||
}),
|
}),
|
||||||
"FormattedTextField.inactiveBackground", ReadOnlyTextBackground,
|
"FormattedTextField.inactiveBackground", ReadOnlyTextBackground,
|
||||||
"FormattedTextField.disabledBackground", DisabledTextBackground,
|
"FormattedTextField.disabledBackground", DisabledTextBackground,
|
||||||
|
"FormattedTextField.background", TextBackground,
|
||||||
|
"FormattedTextField.foreground", WindowTextColor,
|
||||||
|
|
||||||
// *** Panel
|
// *** Panel
|
||||||
"Panel.font", ControlFont,
|
"Panel.font", ControlFont,
|
||||||
|
@ -25,8 +25,8 @@ FileChooser.folderNameLabel.textAndMnemonic=&Nom du dossier :
|
|||||||
FileChooser.filesOfTypeLabel.textAndMnemonic=&Type de fichier :
|
FileChooser.filesOfTypeLabel.textAndMnemonic=&Type de fichier :
|
||||||
FileChooser.upFolderToolTip.textAndMnemonic=Remonte d'un niveau.
|
FileChooser.upFolderToolTip.textAndMnemonic=Remonte d'un niveau.
|
||||||
FileChooser.upFolderAccessibleName=Monter
|
FileChooser.upFolderAccessibleName=Monter
|
||||||
FileChooser.homeFolderToolTip.textAndMnemonic=R\u00E9pertoire d'origine
|
FileChooser.homeFolderToolTip.textAndMnemonic=R\u00E9pertoire de base
|
||||||
FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
|
FileChooser.homeFolderAccessibleName=R\u00E9pertoire de base
|
||||||
FileChooser.newFolderToolTip.textAndMnemonic=Cr\u00E9e un dossier.
|
FileChooser.newFolderToolTip.textAndMnemonic=Cr\u00E9e un dossier.
|
||||||
FileChooser.newFolderAccessibleName=Nouveau dossier
|
FileChooser.newFolderAccessibleName=Nouveau dossier
|
||||||
FileChooser.newFolderActionLabel.textAndMnemonic=Nouveau dossier
|
FileChooser.newFolderActionLabel.textAndMnemonic=Nouveau dossier
|
||||||
|
@ -33,11 +33,11 @@ FileChooser.newFolderActionLabel.textAndMnemonic=\uC0C8 \uD3F4\uB354
|
|||||||
FileChooser.listViewButtonToolTip.textAndMnemonic=\uBAA9\uB85D
|
FileChooser.listViewButtonToolTip.textAndMnemonic=\uBAA9\uB85D
|
||||||
FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
|
FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
|
||||||
FileChooser.listViewActionLabel.textAndMnemonic=\uBAA9\uB85D
|
FileChooser.listViewActionLabel.textAndMnemonic=\uBAA9\uB85D
|
||||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\uC138\uBD80\uC815\uBCF4
|
||||||
FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80\uC815\uBCF4
|
||||||
FileChooser.viewMenuButtonToolTipText = \uBCF4\uAE30 \uBA54\uB274
|
FileChooser.viewMenuButtonToolTipText = \uBCF4\uAE30 \uBA54\uB274
|
||||||
FileChooser.viewMenuButtonAccessibleName = \uBCF4\uAE30 \uBA54\uB274
|
FileChooser.viewMenuButtonAccessibleName = \uBCF4\uAE30 \uBA54\uB274
|
||||||
FileChooser.detailsViewActionLabel.textAndMnemonic=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.detailsViewActionLabel.textAndMnemonic=\uC138\uBD80\uC815\uBCF4
|
||||||
FileChooser.refreshActionLabel.textAndMnemonic=\uC0C8\uB85C \uACE0\uCE68
|
FileChooser.refreshActionLabel.textAndMnemonic=\uC0C8\uB85C \uACE0\uCE68
|
||||||
FileChooser.viewMenuLabel.textAndMnemonic=\uBCF4\uAE30
|
FileChooser.viewMenuLabel.textAndMnemonic=\uBCF4\uAE30
|
||||||
FileChooser.fileNameHeader.textAndMnemonic=\uC774\uB984
|
FileChooser.fileNameHeader.textAndMnemonic=\uC774\uB984
|
||||||
|
@ -22,7 +22,7 @@ FileChooser.lookInLabel.textAndMnemonic=Leta &i:
|
|||||||
FileChooser.saveInLabel.textAndMnemonic=Spara i:
|
FileChooser.saveInLabel.textAndMnemonic=Spara i:
|
||||||
FileChooser.fileNameLabel.textAndMnemonic=Fil&namn:
|
FileChooser.fileNameLabel.textAndMnemonic=Fil&namn:
|
||||||
FileChooser.folderNameLabel.textAndMnemonic=Mapp&namn:
|
FileChooser.folderNameLabel.textAndMnemonic=Mapp&namn:
|
||||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Filer av &typ:
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Filer av &typen:
|
||||||
FileChooser.upFolderToolTip.textAndMnemonic=Upp en niv\u00E5
|
FileChooser.upFolderToolTip.textAndMnemonic=Upp en niv\u00E5
|
||||||
FileChooser.upFolderAccessibleName=Upp
|
FileChooser.upFolderAccessibleName=Upp
|
||||||
FileChooser.homeFolderToolTip.textAndMnemonic=Hem
|
FileChooser.homeFolderToolTip.textAndMnemonic=Hem
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1999, 2016, 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
|
||||||
@ -59,10 +59,9 @@ abstract class AbstractDataLine extends AbstractLine implements DataLine {
|
|||||||
// current buffer size in bytes
|
// current buffer size in bytes
|
||||||
protected int bufferSize;
|
protected int bufferSize;
|
||||||
|
|
||||||
protected boolean running = false;
|
private volatile boolean running;
|
||||||
private boolean started = false;
|
private volatile boolean started;
|
||||||
private boolean active = false;
|
private volatile boolean active;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new AbstractLine.
|
* Constructs a new AbstractLine.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1999, 2016, 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
|
||||||
@ -47,7 +47,7 @@ abstract class AbstractLine implements Line {
|
|||||||
protected final Line.Info info;
|
protected final Line.Info info;
|
||||||
protected Control[] controls;
|
protected Control[] controls;
|
||||||
AbstractMixer mixer;
|
AbstractMixer mixer;
|
||||||
private boolean open = false;
|
private volatile boolean open;
|
||||||
private final Vector<Object> listeners = new Vector<>();
|
private final Vector<Object> listeners = new Vector<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1999, 2016, 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
|
||||||
@ -65,7 +65,7 @@ abstract class AbstractMidiDevice implements MidiDevice, ReferenceCountingDevice
|
|||||||
|
|
||||||
// DEVICE STATE
|
// DEVICE STATE
|
||||||
|
|
||||||
private boolean open = false;
|
private volatile boolean open;
|
||||||
private int openRefCount;
|
private int openRefCount;
|
||||||
|
|
||||||
/** List of Receivers and Transmitters that opened the device implicitely.
|
/** List of Receivers and Transmitters that opened the device implicitely.
|
||||||
@ -75,7 +75,7 @@ abstract class AbstractMidiDevice implements MidiDevice, ReferenceCountingDevice
|
|||||||
/**
|
/**
|
||||||
* This is the device handle returned from native code
|
* This is the device handle returned from native code
|
||||||
*/
|
*/
|
||||||
protected long id = 0;
|
protected volatile long id;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -479,7 +479,7 @@ abstract class AbstractMidiDevice implements MidiDevice, ReferenceCountingDevice
|
|||||||
(which opens the device implicitely).
|
(which opens the device implicitely).
|
||||||
*/
|
*/
|
||||||
abstract class AbstractReceiver implements MidiDeviceReceiver {
|
abstract class AbstractReceiver implements MidiDeviceReceiver {
|
||||||
private boolean open = true;
|
private volatile boolean open = true;
|
||||||
|
|
||||||
|
|
||||||
/** Deliver a MidiMessage.
|
/** Deliver a MidiMessage.
|
||||||
|
@ -32,7 +32,7 @@ package com.sun.media.sound;
|
|||||||
public final class AudioSynthesizerPropertyInfo {
|
public final class AudioSynthesizerPropertyInfo {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a {@code AudioSynthesizerPropertyInfo} object with a given
|
* Constructs an {@code AudioSynthesizerPropertyInfo} object with a given
|
||||||
* name and value. The {@code description} and {@code choices}
|
* name and value. The {@code description} and {@code choices}
|
||||||
* are initialized by {@code null} values.
|
* are initialized by {@code null} values.
|
||||||
*
|
*
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1999, 2016, 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
|
||||||
@ -38,7 +38,7 @@ import javax.sound.midi.*;
|
|||||||
*/
|
*/
|
||||||
final class MidiInDevice extends AbstractMidiDevice implements Runnable {
|
final class MidiInDevice extends AbstractMidiDevice implements Runnable {
|
||||||
|
|
||||||
private Thread midiInThread = null;
|
private volatile Thread midiInThread;
|
||||||
|
|
||||||
// CONSTRUCTOR
|
// CONSTRUCTOR
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2003, 2016, 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
|
||||||
@ -106,7 +106,7 @@ final class RealTimeSequencer extends AbstractMidiDevice
|
|||||||
/**
|
/**
|
||||||
* True if the sequence is running.
|
* True if the sequence is running.
|
||||||
*/
|
*/
|
||||||
private boolean running = false;
|
private volatile boolean running;
|
||||||
|
|
||||||
|
|
||||||
/** the thread for pushing out the MIDI messages */
|
/** the thread for pushing out the MIDI messages */
|
||||||
@ -116,7 +116,7 @@ final class RealTimeSequencer extends AbstractMidiDevice
|
|||||||
/**
|
/**
|
||||||
* True if we are recording
|
* True if we are recording
|
||||||
*/
|
*/
|
||||||
private boolean recording = false;
|
private volatile boolean recording;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -71,7 +71,7 @@ FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser \uB3C4\uC6C0\uB9D0
|
|||||||
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uB514\uB809\uD1A0\uB9AC \uC5F4\uAE30
|
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\uC120\uD0DD\uB41C \uB514\uB809\uD1A0\uB9AC \uC5F4\uAE30
|
||||||
|
|
||||||
FileChooser.filesListAccessibleName=\uD30C\uC77C \uBAA9\uB85D
|
FileChooser.filesListAccessibleName=\uD30C\uC77C \uBAA9\uB85D
|
||||||
FileChooser.filesDetailsAccessibleName=\uD30C\uC77C \uC138\uBD80 \uC815\uBCF4
|
FileChooser.filesDetailsAccessibleName=\uD30C\uC77C \uC138\uBD80\uC815\uBCF4
|
||||||
|
|
||||||
############ COLOR CHOOSER STRINGS #############
|
############ COLOR CHOOSER STRINGS #############
|
||||||
ColorChooser.preview.textAndMnemonic=\uBBF8\uB9AC\uBCF4\uAE30
|
ColorChooser.preview.textAndMnemonic=\uBBF8\uB9AC\uBCF4\uAE30
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
############ FILE CHOOSER STRINGS #############
|
############ FILE CHOOSER STRINGS #############
|
||||||
FileChooser.fileDescription.textAndMnemonic=Generisk fil
|
FileChooser.fileDescription.textAndMnemonic=Generisk fil
|
||||||
FileChooser.directoryDescription.textAndMnemonic=Katalog
|
FileChooser.directoryDescription.textAndMnemonic=Katalog
|
||||||
FileChooser.newFolderError.textAndMnemonic=Fel uppstod n\u00E4r ny mapp skapades
|
FileChooser.newFolderError.textAndMnemonic=Kan inte skapa ny mapp
|
||||||
FileChooser.newFolderErrorSeparator= :
|
FileChooser.newFolderErrorSeparator= :
|
||||||
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Kan inte skapa mappen
|
FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Kan inte skapa mappen
|
||||||
FileChooser.newFolderParentDoesntExist.textAndMnemonic=Kan inte skapa mappen.\n\nSystemet kan inte hitta angiven s\u00F6kv\u00E4g.
|
FileChooser.newFolderParentDoesntExist.textAndMnemonic=Kan inte skapa mappen.\n\nSystemet kan inte hitta angiven s\u00F6kv\u00E4g.
|
||||||
@ -59,15 +59,15 @@ FileChooser.fileSizeGigaBytes={0} GB
|
|||||||
FileChooser.win32.newFolder=Ny mapp
|
FileChooser.win32.newFolder=Ny mapp
|
||||||
FileChooser.win32.newFolder.subsequent=Ny mapp ({0})
|
FileChooser.win32.newFolder.subsequent=Ny mapp ({0})
|
||||||
FileChooser.other.newFolder=Ny mapp
|
FileChooser.other.newFolder=Ny mapp
|
||||||
FileChooser.other.newFolder.subsequent=Ny mapp.{0}
|
FileChooser.other.newFolder.subsequent=Ny mapp {0}
|
||||||
|
|
||||||
|
|
||||||
## file chooser tooltips ###
|
## file chooser tooltips ###
|
||||||
FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt filvalsdialogruta
|
FileChooser.cancelButtonToolTip.textAndMnemonic=Avbryt dialogrutan f\u00F6r filval
|
||||||
FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil
|
FileChooser.saveButtonToolTip.textAndMnemonic=Spara vald fil
|
||||||
FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil
|
FileChooser.openButtonToolTip.textAndMnemonic=\u00D6ppna vald fil
|
||||||
FileChooser.updateButtonToolTip.textAndMnemonic=Uppdatera kataloglistan
|
FileChooser.updateButtonToolTip.textAndMnemonic=Uppdatera kataloglistan
|
||||||
FileChooser.helpButtonToolTip.textAndMnemonic=Hj\u00E4lp - Filv\u00E4ljare
|
FileChooser.helpButtonToolTip.textAndMnemonic=Hj\u00E4lp f\u00F6r val av fil
|
||||||
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\u00D6ppna vald katalog
|
FileChooser.directoryOpenButtonToolTip.textAndMnemonic=\u00D6ppna vald katalog
|
||||||
|
|
||||||
FileChooser.filesListAccessibleName=Fillista
|
FileChooser.filesListAccessibleName=Fillista
|
||||||
@ -129,7 +129,7 @@ PrintingDialog.contentInitial.textAndMnemonic=Utskrift p\u00E5g\u00E5r...
|
|||||||
|
|
||||||
# The following string will be formatted by a MessageFormat
|
# The following string will be formatted by a MessageFormat
|
||||||
# and {0} will be replaced by page number being printed
|
# and {0} will be replaced by page number being printed
|
||||||
PrintingDialog.contentProgress.textAndMnemonic=Utskriven sida {0}...
|
PrintingDialog.contentProgress.textAndMnemonic=Skriver ut sida {0}...
|
||||||
|
|
||||||
PrintingDialog.contentAborting.textAndMnemonic=Utskriften avbryts...
|
PrintingDialog.contentAborting.textAndMnemonic=Utskriften avbryts...
|
||||||
|
|
||||||
@ -177,8 +177,8 @@ ComboBox.togglePopup.textAndMnemonic=v\u00E4xlaPopup
|
|||||||
ProgressMonitor.progress.textAndMnemonic=P\u00E5g\u00E5r...
|
ProgressMonitor.progress.textAndMnemonic=P\u00E5g\u00E5r...
|
||||||
|
|
||||||
############ Split Pane Strings ############
|
############ Split Pane Strings ############
|
||||||
SplitPane.leftButton.textAndMnemonic=v\u00E4nster knapp
|
SplitPane.leftButton.textAndMnemonic=v\u00E4nsterknapp
|
||||||
SplitPane.rightButton.textAndMnemonic=h\u00F6ger knapp
|
SplitPane.rightButton.textAndMnemonic=h\u00F6gerknapp
|
||||||
# Used for Isindex
|
# Used for Isindex
|
||||||
IsindexView.prompt=Detta \u00E4r ett s\u00F6kbart index. Ange s\u00F6kord:
|
IsindexView.prompt=Detta \u00E4r ett s\u00F6kbart index. Ange s\u00F6kord:
|
||||||
|
|
||||||
|
@ -25,8 +25,8 @@ FileChooser.folderNameLabel.textAndMnemonic=&Nom du dossier :
|
|||||||
FileChooser.filesOfTypeLabel.textAndMnemonic=&Type de fichier :
|
FileChooser.filesOfTypeLabel.textAndMnemonic=&Type de fichier :
|
||||||
FileChooser.upFolderToolTip.textAndMnemonic=Remonte d'un niveau.
|
FileChooser.upFolderToolTip.textAndMnemonic=Remonte d'un niveau.
|
||||||
FileChooser.upFolderAccessibleName=Monter
|
FileChooser.upFolderAccessibleName=Monter
|
||||||
FileChooser.homeFolderToolTip.textAndMnemonic=R\u00E9pertoire d'origine
|
FileChooser.homeFolderToolTip.textAndMnemonic=R\u00E9pertoire de base
|
||||||
FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
|
FileChooser.homeFolderAccessibleName=R\u00E9pertoire de base
|
||||||
FileChooser.newFolderToolTip.textAndMnemonic=Cr\u00E9e un dossier.
|
FileChooser.newFolderToolTip.textAndMnemonic=Cr\u00E9e un dossier.
|
||||||
FileChooser.newFolderAccessibleName=Nouveau dossier
|
FileChooser.newFolderAccessibleName=Nouveau dossier
|
||||||
FileChooser.newFolderActionLabel.textAndMnemonic=Nouveau dossier
|
FileChooser.newFolderActionLabel.textAndMnemonic=Nouveau dossier
|
||||||
|
@ -33,9 +33,9 @@ FileChooser.newFolderActionLabel.textAndMnemonic=\uC0C8 \uD3F4\uB354
|
|||||||
FileChooser.listViewButtonToolTip.textAndMnemonic=\uBAA9\uB85D
|
FileChooser.listViewButtonToolTip.textAndMnemonic=\uBAA9\uB85D
|
||||||
FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
|
FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
|
||||||
FileChooser.listViewActionLabel.textAndMnemonic=\uBAA9\uB85D
|
FileChooser.listViewActionLabel.textAndMnemonic=\uBAA9\uB85D
|
||||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\uC138\uBD80\uC815\uBCF4
|
||||||
FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80\uC815\uBCF4
|
||||||
FileChooser.detailsViewActionLabel.textAndMnemonic=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.detailsViewActionLabel.textAndMnemonic=\uC138\uBD80\uC815\uBCF4
|
||||||
FileChooser.refreshActionLabel.textAndMnemonic=\uC0C8\uB85C \uACE0\uCE68
|
FileChooser.refreshActionLabel.textAndMnemonic=\uC0C8\uB85C \uACE0\uCE68
|
||||||
FileChooser.viewMenuLabel.textAndMnemonic=\uBCF4\uAE30
|
FileChooser.viewMenuLabel.textAndMnemonic=\uBCF4\uAE30
|
||||||
FileChooser.fileNameHeader.textAndMnemonic=\uC774\uB984
|
FileChooser.fileNameHeader.textAndMnemonic=\uC774\uB984
|
||||||
|
@ -20,9 +20,9 @@
|
|||||||
|
|
||||||
FileChooser.lookInLabel.textAndMnemonic=Leta &i:
|
FileChooser.lookInLabel.textAndMnemonic=Leta &i:
|
||||||
FileChooser.saveInLabel.textAndMnemonic=Spara i:
|
FileChooser.saveInLabel.textAndMnemonic=Spara i:
|
||||||
FileChooser.fileNameLabel.textAndMnemonic=&Fil:
|
FileChooser.fileNameLabel.textAndMnemonic=Fil&namn:
|
||||||
FileChooser.folderNameLabel.textAndMnemonic=&Mapp:
|
FileChooser.folderNameLabel.textAndMnemonic=&Mapp:
|
||||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Mapp&namn:
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Filer av &typen:
|
||||||
FileChooser.upFolderToolTip.textAndMnemonic=Upp en niv\u00E5
|
FileChooser.upFolderToolTip.textAndMnemonic=Upp en niv\u00E5
|
||||||
FileChooser.upFolderAccessibleName=Upp
|
FileChooser.upFolderAccessibleName=Upp
|
||||||
FileChooser.homeFolderToolTip.textAndMnemonic=Hem
|
FileChooser.homeFolderToolTip.textAndMnemonic=Hem
|
||||||
|
@ -25,8 +25,8 @@ FileChooser.folderNameLabel.textAndMnemonic=&Nom du dossier :
|
|||||||
FileChooser.filesOfTypeLabel.textAndMnemonic=&Type de fichier :
|
FileChooser.filesOfTypeLabel.textAndMnemonic=&Type de fichier :
|
||||||
FileChooser.upFolderToolTip.textAndMnemonic=Remonte d'un niveau.
|
FileChooser.upFolderToolTip.textAndMnemonic=Remonte d'un niveau.
|
||||||
FileChooser.upFolderAccessibleName=Monter
|
FileChooser.upFolderAccessibleName=Monter
|
||||||
FileChooser.homeFolderToolTip.textAndMnemonic=R\u00E9pertoire d'origine
|
FileChooser.homeFolderToolTip.textAndMnemonic=R\u00E9pertoire de base
|
||||||
FileChooser.homeFolderAccessibleName=R\u00E9pertoire d'origine
|
FileChooser.homeFolderAccessibleName=R\u00E9pertoire de base
|
||||||
FileChooser.newFolderToolTip.textAndMnemonic=Cr\u00E9e un dossier.
|
FileChooser.newFolderToolTip.textAndMnemonic=Cr\u00E9e un dossier.
|
||||||
FileChooser.newFolderAccessibleName=Nouveau dossier
|
FileChooser.newFolderAccessibleName=Nouveau dossier
|
||||||
FileChooser.newFolderActionLabel.textAndMnemonic=Nouveau dossier
|
FileChooser.newFolderActionLabel.textAndMnemonic=Nouveau dossier
|
||||||
|
@ -33,9 +33,9 @@ FileChooser.newFolderActionLabel.textAndMnemonic=\uC0C8 \uD3F4\uB354
|
|||||||
FileChooser.listViewButtonToolTip.textAndMnemonic=\uBAA9\uB85D
|
FileChooser.listViewButtonToolTip.textAndMnemonic=\uBAA9\uB85D
|
||||||
FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
|
FileChooser.listViewButtonAccessibleName=\uBAA9\uB85D
|
||||||
FileChooser.listViewActionLabel.textAndMnemonic=\uBAA9\uB85D
|
FileChooser.listViewActionLabel.textAndMnemonic=\uBAA9\uB85D
|
||||||
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.detailsViewButtonToolTip.textAndMnemonic=\uC138\uBD80\uC815\uBCF4
|
||||||
FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.detailsViewButtonAccessibleName=\uC138\uBD80\uC815\uBCF4
|
||||||
FileChooser.detailsViewActionLabel.textAndMnemonic=\uC138\uBD80 \uC815\uBCF4
|
FileChooser.detailsViewActionLabel.textAndMnemonic=\uC138\uBD80\uC815\uBCF4
|
||||||
FileChooser.refreshActionLabel.textAndMnemonic=\uC0C8\uB85C \uACE0\uCE68
|
FileChooser.refreshActionLabel.textAndMnemonic=\uC0C8\uB85C \uACE0\uCE68
|
||||||
FileChooser.viewMenuLabel.textAndMnemonic=\uBCF4\uAE30
|
FileChooser.viewMenuLabel.textAndMnemonic=\uBCF4\uAE30
|
||||||
FileChooser.fileNameHeader.textAndMnemonic=\uC774\uB984
|
FileChooser.fileNameHeader.textAndMnemonic=\uC774\uB984
|
||||||
|
@ -22,7 +22,7 @@ FileChooser.lookInLabel.textAndMnemonic=Leta &i:
|
|||||||
FileChooser.saveInLabel.textAndMnemonic=Spara i:
|
FileChooser.saveInLabel.textAndMnemonic=Spara i:
|
||||||
FileChooser.fileNameLabel.textAndMnemonic=Fil&namn:
|
FileChooser.fileNameLabel.textAndMnemonic=Fil&namn:
|
||||||
FileChooser.folderNameLabel.textAndMnemonic=Mapp&namn:
|
FileChooser.folderNameLabel.textAndMnemonic=Mapp&namn:
|
||||||
FileChooser.filesOfTypeLabel.textAndMnemonic=Filer av &typ:
|
FileChooser.filesOfTypeLabel.textAndMnemonic=Filer av &typen:
|
||||||
FileChooser.upFolderToolTip.textAndMnemonic=Upp en niv\u00E5
|
FileChooser.upFolderToolTip.textAndMnemonic=Upp en niv\u00E5
|
||||||
FileChooser.upFolderAccessibleName=Upp
|
FileChooser.upFolderAccessibleName=Upp
|
||||||
FileChooser.homeFolderToolTip.textAndMnemonic=Hem
|
FileChooser.homeFolderToolTip.textAndMnemonic=Hem
|
||||||
|
@ -76,7 +76,7 @@ import java.util.Hashtable;
|
|||||||
* orientation is {@code LEFT_TO_RIGHT}, only the
|
* orientation is {@code LEFT_TO_RIGHT}, only the
|
||||||
* {@code PAGE_START} will be laid out.
|
* {@code PAGE_START} will be laid out.
|
||||||
* <p>
|
* <p>
|
||||||
* NOTE: Currently (in the Java 2 platform v1.2),
|
* NOTE: Currently,
|
||||||
* {@code BorderLayout} does not support vertical
|
* {@code BorderLayout} does not support vertical
|
||||||
* orientations. The {@code isVertical} setting on the container's
|
* orientations. The {@code isVertical} setting on the container's
|
||||||
* {@code ComponentOrientation} is not respected.
|
* {@code ComponentOrientation} is not respected.
|
||||||
|
@ -148,9 +148,20 @@ public class DefaultKeyboardFocusManager extends KeyboardFocusManager {
|
|||||||
Component toFocus =
|
Component toFocus =
|
||||||
KeyboardFocusManager.getMostRecentFocusOwner(aWindow);
|
KeyboardFocusManager.getMostRecentFocusOwner(aWindow);
|
||||||
|
|
||||||
if (toFocus != null && toFocus != vetoedComponent && doRestoreFocus(toFocus, vetoedComponent, false)) {
|
if (toFocus != null && toFocus != vetoedComponent) {
|
||||||
return true;
|
Component heavyweight = getHeavyweight(aWindow);
|
||||||
} else if (clearOnFailure) {
|
if (heavyweight != null) {
|
||||||
|
setNativeFocusOwner(heavyweight);
|
||||||
|
Toolkit.getEventQueue().createSecondaryLoop(
|
||||||
|
() -> getGlobalFocusedWindow() != aWindow, null, 50)
|
||||||
|
.enter();
|
||||||
|
}
|
||||||
|
if (getGlobalFocusedWindow() == aWindow &&
|
||||||
|
doRestoreFocus(toFocus, vetoedComponent, false)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (clearOnFailure) {
|
||||||
clearGlobalFocusOwnerPriv();
|
clearGlobalFocusOwnerPriv();
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
|
@ -360,8 +360,7 @@ public abstract class GraphicsConfiguration {
|
|||||||
public abstract AffineTransform getDefaultTransform();
|
public abstract AffineTransform getDefaultTransform();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* Returns an {@code AffineTransform} that can be concatenated
|
||||||
* Returns a {@code AffineTransform} that can be concatenated
|
|
||||||
* with the default {@code AffineTransform}
|
* with the default {@code AffineTransform}
|
||||||
* of a {@code GraphicsConfiguration} so that 72 units in user
|
* of a {@code GraphicsConfiguration} so that 72 units in user
|
||||||
* space equals 1 inch in device space.
|
* space equals 1 inch in device space.
|
||||||
|
@ -159,6 +159,8 @@ public class TextField extends TextComponent {
|
|||||||
* @param text the text to be displayed. If
|
* @param text the text to be displayed. If
|
||||||
* {@code text} is {@code null}, the empty
|
* {@code text} is {@code null}, the empty
|
||||||
* string {@code ""} will be displayed.
|
* string {@code ""} will be displayed.
|
||||||
|
* If {@code text} contains EOL character, then
|
||||||
|
* it will be replaced by space character.
|
||||||
* @exception HeadlessException if GraphicsEnvironment.isHeadless()
|
* @exception HeadlessException if GraphicsEnvironment.isHeadless()
|
||||||
* returns true.
|
* returns true.
|
||||||
* @see java.awt.GraphicsEnvironment#isHeadless
|
* @see java.awt.GraphicsEnvironment#isHeadless
|
||||||
@ -190,6 +192,8 @@ public class TextField extends TextComponent {
|
|||||||
* @param text the text to be displayed. If
|
* @param text the text to be displayed. If
|
||||||
* {@code text} is {@code null}, the empty
|
* {@code text} is {@code null}, the empty
|
||||||
* string {@code ""} will be displayed.
|
* string {@code ""} will be displayed.
|
||||||
|
* If {@code text} contains EOL character, then
|
||||||
|
* it will be replaced by space character.
|
||||||
* @param columns the number of columns. If
|
* @param columns the number of columns. If
|
||||||
* {@code columns} is less than {@code 0},
|
* {@code columns} is less than {@code 0},
|
||||||
* {@code columns} is set to {@code 0}.
|
* {@code columns} is set to {@code 0}.
|
||||||
@ -293,7 +297,11 @@ public class TextField extends TextComponent {
|
|||||||
/**
|
/**
|
||||||
* Sets the text that is presented by this
|
* Sets the text that is presented by this
|
||||||
* text component to be the specified text.
|
* text component to be the specified text.
|
||||||
* @param t the new text.
|
* @param t the new text. If
|
||||||
|
* {@code t} is {@code null}, the empty
|
||||||
|
* string {@code ""} will be displayed.
|
||||||
|
* If {@code t} contains EOL character, then
|
||||||
|
* it will be replaced by space character.
|
||||||
* @see java.awt.TextComponent#getText
|
* @see java.awt.TextComponent#getText
|
||||||
*/
|
*/
|
||||||
public void setText(String t) {
|
public void setText(String t) {
|
||||||
|
@ -74,7 +74,7 @@ public final class TransformAttribute implements Serializable {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a copy of the wrapped transform.
|
* Returns a copy of the wrapped transform.
|
||||||
* @return a {@code AffineTransform} that is a copy of the wrapped
|
* @return an {@code AffineTransform} that is a copy of the wrapped
|
||||||
* transform of this {@code TransformAttribute}.
|
* transform of this {@code TransformAttribute}.
|
||||||
*/
|
*/
|
||||||
public AffineTransform getTransform() {
|
public AffineTransform getTransform() {
|
||||||
|
@ -1160,10 +1160,18 @@ public class AffineTransform implements Cloneable, java.io.Serializable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the X coordinate scaling element (m00) of the 3x3
|
* Returns the {@code m00} element of the 3x3 affine transformation matrix.
|
||||||
* affine transformation matrix.
|
* This matrix factor determines how input X coordinates will affect output
|
||||||
* @return a double value that is the X coordinate of the scaling
|
* X coordinates and is one element of the scale of the transform.
|
||||||
* element of the affine transformation matrix.
|
* To measure the full amount by which X coordinates are stretched or
|
||||||
|
* contracted by this transform, use the following code:
|
||||||
|
* <pre>
|
||||||
|
* Point2D p = new Point2D.Double(1, 0);
|
||||||
|
* p = tx.deltaTransform(p, p);
|
||||||
|
* double scaleX = p.distance(0, 0);
|
||||||
|
* </pre>
|
||||||
|
* @return a double value that is {@code m00} element of the
|
||||||
|
* 3x3 affine transformation matrix.
|
||||||
* @see #getMatrix
|
* @see #getMatrix
|
||||||
* @since 1.2
|
* @since 1.2
|
||||||
*/
|
*/
|
||||||
@ -1172,10 +1180,18 @@ public class AffineTransform implements Cloneable, java.io.Serializable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the Y coordinate scaling element (m11) of the 3x3
|
* Returns the {@code m11} element of the 3x3 affine transformation matrix.
|
||||||
* affine transformation matrix.
|
* This matrix factor determines how input Y coordinates will affect output
|
||||||
* @return a double value that is the Y coordinate of the scaling
|
* Y coordinates and is one element of the scale of the transform.
|
||||||
* element of the affine transformation matrix.
|
* To measure the full amount by which Y coordinates are stretched or
|
||||||
|
* contracted by this transform, use the following code:
|
||||||
|
* <pre>
|
||||||
|
* Point2D p = new Point2D.Double(0, 1);
|
||||||
|
* p = tx.deltaTransform(p, p);
|
||||||
|
* double scaleY = p.distance(0, 0);
|
||||||
|
* </pre>
|
||||||
|
* @return a double value that is {@code m11} element of the
|
||||||
|
* 3x3 affine transformation matrix.
|
||||||
* @see #getMatrix
|
* @see #getMatrix
|
||||||
* @since 1.2
|
* @since 1.2
|
||||||
*/
|
*/
|
||||||
|
@ -619,9 +619,9 @@ public class ParameterBlock implements Cloneable, Serializable {
|
|||||||
*
|
*
|
||||||
* @param index the index of the parameter to be returned.
|
* @param index the index of the parameter to be returned.
|
||||||
* @return the parameter at the specified index
|
* @return the parameter at the specified index
|
||||||
* as a {@code int} value.
|
* as an {@code int} value.
|
||||||
* @throws ClassCastException if the parameter at the
|
* @throws ClassCastException if the parameter at the
|
||||||
* specified index is not a {@code Integer}
|
* specified index is not an {@code Integer}
|
||||||
* @throws NullPointerException if the parameter at the specified
|
* @throws NullPointerException if the parameter at the specified
|
||||||
* index is {@code null}
|
* index is {@code null}
|
||||||
* @throws ArrayIndexOutOfBoundsException if {@code index}
|
* @throws ArrayIndexOutOfBoundsException if {@code index}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2014, 2016, 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
|
||||||
@ -22,6 +22,7 @@
|
|||||||
* or visit www.oracle.com if you need additional information or have any
|
* or visit www.oracle.com if you need additional information or have any
|
||||||
* questions.
|
* questions.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package java.beans;
|
package java.beans;
|
||||||
|
|
||||||
import java.lang.annotation.Documented;
|
import java.lang.annotation.Documented;
|
||||||
@ -32,16 +33,16 @@ import static java.lang.annotation.ElementType.METHOD;
|
|||||||
import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An annotation used to specify some property-related information
|
* An annotation used to specify some property-related information for the
|
||||||
* for the automatically generated {@link BeanInfo} classes.
|
* automatically generated {@link BeanInfo} classes. This annotation is not used
|
||||||
* This annotation is not used if the annotated class
|
* if the annotated class has a corresponding user-defined {@code BeanInfo}
|
||||||
* has a corresponding user-defined {@code BeanInfo} class,
|
* class, which does not imply the automatic analysis. If both the read and the
|
||||||
* which does not imply the automatic analysis.
|
* write methods of the property are annotated, then the read method annotation
|
||||||
*
|
* will have more priority and replace the write method annotation.
|
||||||
* @see BeanInfo#getPropertyDescriptors
|
|
||||||
* @since 9
|
|
||||||
*
|
*
|
||||||
* @author Sergey A. Malenkov
|
* @author Sergey A. Malenkov
|
||||||
|
* @see BeanInfo#getPropertyDescriptors
|
||||||
|
* @since 9
|
||||||
*/
|
*/
|
||||||
@Documented
|
@Documented
|
||||||
@Target({METHOD})
|
@Target({METHOD})
|
||||||
|
@ -136,7 +136,7 @@ public class Encoder {
|
|||||||
* a shared internal persistence delegate is returned
|
* a shared internal persistence delegate is returned
|
||||||
* that encodes {@code null} value.
|
* that encodes {@code null} value.
|
||||||
* <li>
|
* <li>
|
||||||
* If the type is a {@code enum} declaration,
|
* If the type is an {@code enum} declaration,
|
||||||
* a shared internal persistence delegate is returned
|
* a shared internal persistence delegate is returned
|
||||||
* that encodes constants of this enumeration
|
* that encodes constants of this enumeration
|
||||||
* by their names.
|
* by their names.
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user