1 #
   2 # Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 error.cant.open={0}を開くことができません 
  27 error.illegal.option=不正なオプション: {0}
  28 error.bad.option=オプション-{ctxu}のうちの1つを指定する必要があります。
  29 error.bad.cflag=フラグ'c'ではマニフェストまたは入力ファイルの指定が必要です。
  30 error.bad.uflag=フラグ'u'ではマニフェストか'e'フラグ、または入力ファイルの指定が必要です。
  31 error.bad.eflag='e'フラグと'Main-Class'属性を持つマニフェストは同時に\n指定できません。
  32 error.nosuch.fileordir={0}というファイルまたはディレクトリはありません
  33 error.write.file=既存jarファイルの書込み中にエラーが発生しました
  34 error.create.dir=ディレクトリ{0}を作成できませんでした
  35 error.incorrect.length={0}の処理中に不正な長さがありました
  36 out.added.manifest=マニフェストが追加されました
  37 out.update.manifest=マニフェストが更新されました
  38 out.ignore.entry=エントリ{0}を無視します
  39 out.adding={0}を追加中です
  40 out.deflated=({0}%収縮されました)
  41 out.stored=(0%格納されました)
  42 out.create=\ \ {0}が作成されました
  43 out.extracted={0}が抽出されました
  44 out.inflated=\ \\{0}が展開されました
  45 out.size=(入={0})(出={1})
  46 
  47 usage=使用方法: jar {ctxui}[vfm0Me] [jar-file] [manifest-file] [entry-point] [-C dir] files ...\nオプション:\n\\  -c アーカイブを新規作成する\n\\  -t アーカイブの内容を一覧表示する\n\\  -x 指定の(またはすべての)ファイルをアーカイブから抽出する\n\\  -u 既存アーカイブを更新する\n\\  -v 標準出力に詳細な出力を生成する\n\\  -f アーカイブ・ファイル名を指定する\n\\  -m 指定のマニフェスト・ファイルからマニフェスト情報を取り込む\n\\  -e 実行可能jarファイルにバンドルされたスタンドアロン・アプリケーションの\n\\     エントリ・ポイントを指定する\n\\  -0 格納のみ。ZIP圧縮を使用しない\n\\  -M エントリのマニフェスト・ファイルを作成しない\n\\  -i 指定のjarファイルの索引情報を生成する\n\\  -C 指定のディレクトリに変更し、以下のファイルを取り込む\nファイルがディレクトリの場合は再帰的に処理されます。\nマニフェスト・ファイル名、アーカイブ・ファイル名およびエントリ・ポイント名は、\nフラグ'm'、'f'、'e'の指定と同じ順番で指定する必要があります。\n\n例1: 2つのクラス・ファイルをアーカイブclasses.jarに保存する:\n\\    jar cvf classes.jar Foo.class Bar.class\n例2: 既存のマニフェスト・ファイル'mymanifest'を使用し、foo/ディレクトリの\n\\   全ファイルを'classes.jar'にアーカイブする:\n\\    jar cvfm classes.jar mymanifest -C foo/ \n