summaryrefslogtreecommitdiff
path: root/help/ja
diff options
context:
space:
mode:
Diffstat (limited to 'help/ja')
-rw-r--r--help/ja/calendar.page67
-rw-r--r--help/ja/color-selection.page54
-rw-r--r--help/ja/entry.page56
-rw-r--r--help/ja/error.page31
-rw-r--r--help/ja/figures/zenity-calendar-screenshot.pngbin9364 -> 0 bytes
-rw-r--r--help/ja/figures/zenity-colorselection-screenshot.pngbin39159 -> 18285 bytes
-rw-r--r--help/ja/figures/zenity-entry-screenshot.pngbin6833 -> 0 bytes
-rw-r--r--help/ja/figures/zenity-error-screenshot.pngbin4574 -> 0 bytes
-rw-r--r--help/ja/figures/zenity-fileselection-screenshot.pngbin54721 -> 0 bytes
-rw-r--r--help/ja/figures/zenity-forms-screenshot.pngbin10633 -> 0 bytes
-rw-r--r--help/ja/figures/zenity-information-screenshot.pngbin6087 -> 0 bytes
-rw-r--r--help/ja/figures/zenity-list-screenshot.pngbin10004 -> 0 bytes
-rw-r--r--help/ja/figures/zenity-notification-screenshot.pngbin13096 -> 0 bytes
-rw-r--r--help/ja/figures/zenity-password-screenshot.pngbin6534 -> 19076 bytes
-rw-r--r--help/ja/figures/zenity-progress-screenshot.pngbin5291 -> 0 bytes
-rw-r--r--help/ja/figures/zenity-question-screenshot.pngbin5155 -> 0 bytes
-rw-r--r--help/ja/figures/zenity-scale-screenshot.pngbin5892 -> 0 bytes
-rw-r--r--help/ja/figures/zenity-text-screenshot.pngbin12370 -> 0 bytes
-rw-r--r--help/ja/figures/zenity-warning-screenshot.pngbin6361 -> 0 bytes
-rw-r--r--help/ja/file-selection.page68
-rw-r--r--help/ja/forms.page82
-rw-r--r--help/ja/index.page34
-rw-r--r--help/ja/info.page31
-rw-r--r--help/ja/intro.page37
-rw-r--r--help/ja/ja.stamp0
-rw-r--r--help/ja/legal.xml16
-rw-r--r--help/ja/list.page74
-rw-r--r--help/ja/message.page16
-rw-r--r--help/ja/notification.page59
-rw-r--r--help/ja/password.page49
-rw-r--r--help/ja/progress.page77
-rw-r--r--help/ja/question.page31
-rw-r--r--help/ja/scale.page79
-rw-r--r--help/ja/text.page84
-rw-r--r--help/ja/usage.page264
-rw-r--r--help/ja/warning.page30
36 files changed, 0 insertions, 1239 deletions
diff --git a/help/ja/calendar.page b/help/ja/calendar.page
deleted file mode 100644
index a645eff3..00000000
--- a/help/ja/calendar.page
+++ /dev/null
@@ -1,67 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="calendar" xml:lang="ja">
- <info>
- <link type="guide" xref="index#dialogs"/>
- <desc><cmd>--calendar</cmd> オプションの使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>カレンダーダイアログ</title>
- <p>カレンダーダイアログを作成するには、<cmd>--calendar</cmd> というオプションを使ってください。<app>Zenity</app> は、標準出力へ選択された日付を返却します。コマンドラインで日付を指定しなかった場合、ダイアログは現在の日付を利用します。</p>
- <p>カレンダーダイアログは、以下のオプションをサポートしています。</p>
-
- <terms>
-
- <item>
- <title><cmd>--text</cmd>=<var>テキスト</var></title>
- <p>カレンダーダイアログに表示されるテキストを指定します。</p>
- </item>
-
- <item>
- <title><cmd>--day</cmd>=<var>日</var></title>
- <p>カレンダーダイアログで選択されている日を指定します。日は、1 から 31 の数字でなければなりません。</p>
- </item>
-
- <item>
- <title><cmd>--month</cmd>=<var>月</var></title>
- <p>カレンダーダイアログで選択されている月を指定します。月は、1 から 12 の数字でなければなりません。</p>
- </item>
-
- <item>
- <title><cmd>--year</cmd>=<var>年</var></title>
- <p>カレンダーダイアログで選択されている年を指定します。(訳注:西暦の数字部分で指定します。)</p>
- </item>
-
- <item>
- <title><cmd>--date-format</cmd>=<var>書式</var></title>
- <p>日付が選択された後、カレンダーダイアログが返却する書式を指定します。デフォルトの書式は、locale に依存します。書式は、 <cmd>strftime</cmd> 関数が受け取れる書式でなければなりません。たとえば、<var>%A %d/%m/%y</var> です。</p>
- </item>
-
- </terms>
-
- <p>以下のスクリプトの例でカレンダーダイアログの作成方法を示します。</p>
-
-<code>
-#!/bin/sh
-
-
-if zenity --calendar \
---title="日付の選択" \
---text="日付をクリックして選択してください。" \
---day=10 --month=8 --year=2004
- then echo $?
- else echo "日付が選択されませんでした。"
-fi
-</code>
-
-
- <figure>
- <title>カレンダーダイアログの例</title>
- <desc>Zenity カレンダーダイアログの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-calendar-screenshot.png"/>
- </figure>
-</page>
diff --git a/help/ja/color-selection.page b/help/ja/color-selection.page
deleted file mode 100644
index 7d09283e..00000000
--- a/help/ja/color-selection.page
+++ /dev/null
@@ -1,54 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="color-selection" xml:lang="ja">
- <info>
- <link type="guide" xref="index#dialogs"/>
- <desc><cmd>--color-selection</cmd> オプションの使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>色選択ダイアログ</title>
- <p>色選択ダイアログを作成するには、<cmd>--color-selection</cmd> というオプションを使ってください。</p>
- <p>色選択ダイアログは、以下のオプションをサポートしています。</p>
-
- <terms>
-
- <item>
- <title><cmd>--color</cmd>=<var>値</var></title>
- <p>初期の色を指定します。(例: #FF0000)</p>
- </item>
-
- <item>
- <title><cmd>--show-palette</cmd></title>
- <p>パレットを表示します。</p>
- </item>
-
- </terms>
-
- <p>以下のスクリプトの例で色選択ダイアログの作成方法を示します。</p>
-
-<code>
-#!/bin/sh
-
-COLOR=`zenity --color-selection --show-palette`
-
-case $? in
- 0)
- echo "$COLOR を選択しました。";;
- 1)
- echo "色が選択されませんでした。";;
- -1)
- echo "予期せぬエラーが発生しました。";;
-esac
-</code>
-
- <figure>
- <title>色選択ダイアログの例</title>
- <desc><app>Zenity</app> 色選択ダイアログの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-colorselection-screenshot.png"/>
- </figure>
-
-</page>
diff --git a/help/ja/entry.page b/help/ja/entry.page
deleted file mode 100644
index 1c65460e..00000000
--- a/help/ja/entry.page
+++ /dev/null
@@ -1,56 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="entry" xml:lang="ja">
- <info>
- <link type="guide" xref="index#dialogs"/>
- <desc><cmd>--entry</cmd> オプションの使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>テキスト入力ダイアログ</title>
- <p>テキスト入力ダイアログを作成するには、<cmd>--entry</cmd> というオプションを使ってください。<app>Zenity</app> は、テキスト入力の内容を標準出力へ返却します。</p>
- <p>テキスト入力ダイアログは、以下のオプションをサポートしています。</p>
-
- <terms>
-
- <item>
- <title><cmd>--text</cmd>=<var>テキスト</var></title>
- <p>テキスト入力ダイアログに表示するテキストを指定します。</p>
- </item>
-
- <item>
- <title><cmd>--entry-text</cmd>=<var>テキスト</var></title>
- <p>テキスト入力ダイアログの入力欄に表示されるテキストを指定します。</p>
- </item>
-
- <item>
- <title><cmd>--hide-text</cmd></title>
- <p>テキスト入力ダイアログの入力欄にあるテキストを隠します。</p>
- </item>
-
- </terms>
-
- <p>以下のスクリプトの例でテキスト入力ダイアログの作成方法を示します。</p>
-
-<code>
-#!/bin/sh
-
-if zenity --entry \
---title="新しいプロファイルの追加" \
---text="新しいプロファイルの名前を入力してください:" \
---entry-text "新しいプロファイル"
- then echo $?
- else echo "名前が入力されませんでした。"
-fi
-</code>
-
-
- <figure>
- <title>テキスト入力ダイアログの例</title>
- <desc><app>Zenity</app> テキスト入力ダイアログの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-entry-screenshot.png"/>
- </figure>
-</page>
diff --git a/help/ja/error.page b/help/ja/error.page
deleted file mode 100644
index bbcca13e..00000000
--- a/help/ja/error.page
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="error" xml:lang="ja">
- <info>
- <link type="guide" xref="message"/>
- <desc><cmd>--error</cmd> オプションの使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>エラーダイアログ</title>
- <p>エラーダイアログを作成するには、<cmd>--error</cmd> というオプションを使ってください。</p>
-
- <p>以下のスクリプトの例でエラーダイアログの作成方法を示します。</p>
-
-<code>
-#!/bin/bash
-
-zenity --error \
---text="/var/log/syslog が見つかりません。"
-</code>
-
-
- <figure>
- <title>エラーダイアログの例</title>
- <desc><app>Zenity</app> エラーダイアログの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-error-screenshot.png"/>
- </figure>
-</page>
diff --git a/help/ja/figures/zenity-calendar-screenshot.png b/help/ja/figures/zenity-calendar-screenshot.png
deleted file mode 100644
index c438ef5a..00000000
--- a/help/ja/figures/zenity-calendar-screenshot.png
+++ /dev/null
Binary files differ
diff --git a/help/ja/figures/zenity-colorselection-screenshot.png b/help/ja/figures/zenity-colorselection-screenshot.png
index 88c0fbbe..a271d6de 100644
--- a/help/ja/figures/zenity-colorselection-screenshot.png
+++ b/help/ja/figures/zenity-colorselection-screenshot.png
Binary files differ
diff --git a/help/ja/figures/zenity-entry-screenshot.png b/help/ja/figures/zenity-entry-screenshot.png
deleted file mode 100644
index 291019c2..00000000
--- a/help/ja/figures/zenity-entry-screenshot.png
+++ /dev/null
Binary files differ
diff --git a/help/ja/figures/zenity-error-screenshot.png b/help/ja/figures/zenity-error-screenshot.png
deleted file mode 100644
index f90c8caf..00000000
--- a/help/ja/figures/zenity-error-screenshot.png
+++ /dev/null
Binary files differ
diff --git a/help/ja/figures/zenity-fileselection-screenshot.png b/help/ja/figures/zenity-fileselection-screenshot.png
deleted file mode 100644
index 08b8e944..00000000
--- a/help/ja/figures/zenity-fileselection-screenshot.png
+++ /dev/null
Binary files differ
diff --git a/help/ja/figures/zenity-forms-screenshot.png b/help/ja/figures/zenity-forms-screenshot.png
deleted file mode 100644
index 6f5b3e14..00000000
--- a/help/ja/figures/zenity-forms-screenshot.png
+++ /dev/null
Binary files differ
diff --git a/help/ja/figures/zenity-information-screenshot.png b/help/ja/figures/zenity-information-screenshot.png
deleted file mode 100644
index b3a1f8b5..00000000
--- a/help/ja/figures/zenity-information-screenshot.png
+++ /dev/null
Binary files differ
diff --git a/help/ja/figures/zenity-list-screenshot.png b/help/ja/figures/zenity-list-screenshot.png
deleted file mode 100644
index 77a2fe89..00000000
--- a/help/ja/figures/zenity-list-screenshot.png
+++ /dev/null
Binary files differ
diff --git a/help/ja/figures/zenity-notification-screenshot.png b/help/ja/figures/zenity-notification-screenshot.png
deleted file mode 100644
index fd0bee4e..00000000
--- a/help/ja/figures/zenity-notification-screenshot.png
+++ /dev/null
Binary files differ
diff --git a/help/ja/figures/zenity-password-screenshot.png b/help/ja/figures/zenity-password-screenshot.png
index 79aa031c..bb7b4bf8 100644
--- a/help/ja/figures/zenity-password-screenshot.png
+++ b/help/ja/figures/zenity-password-screenshot.png
Binary files differ
diff --git a/help/ja/figures/zenity-progress-screenshot.png b/help/ja/figures/zenity-progress-screenshot.png
deleted file mode 100644
index b28d34b4..00000000
--- a/help/ja/figures/zenity-progress-screenshot.png
+++ /dev/null
Binary files differ
diff --git a/help/ja/figures/zenity-question-screenshot.png b/help/ja/figures/zenity-question-screenshot.png
deleted file mode 100644
index 3c5b99c8..00000000
--- a/help/ja/figures/zenity-question-screenshot.png
+++ /dev/null
Binary files differ
diff --git a/help/ja/figures/zenity-scale-screenshot.png b/help/ja/figures/zenity-scale-screenshot.png
deleted file mode 100644
index 958a98b1..00000000
--- a/help/ja/figures/zenity-scale-screenshot.png
+++ /dev/null
Binary files differ
diff --git a/help/ja/figures/zenity-text-screenshot.png b/help/ja/figures/zenity-text-screenshot.png
deleted file mode 100644
index 4e509900..00000000
--- a/help/ja/figures/zenity-text-screenshot.png
+++ /dev/null
Binary files differ
diff --git a/help/ja/figures/zenity-warning-screenshot.png b/help/ja/figures/zenity-warning-screenshot.png
deleted file mode 100644
index 9c97f81b..00000000
--- a/help/ja/figures/zenity-warning-screenshot.png
+++ /dev/null
Binary files differ
diff --git a/help/ja/file-selection.page b/help/ja/file-selection.page
deleted file mode 100644
index b57ef7dc..00000000
--- a/help/ja/file-selection.page
+++ /dev/null
@@ -1,68 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="file-selection" xml:lang="ja">
- <info>
- <link type="guide" xref="index#dialogs"/>
- <desc><cmd>--file-selection</cmd> オプションの使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>ファイル選択ダイアログ</title>
- <p>ファイル選択ダイアログを作成するには、<cmd>--file-selection</cmd> というオプションを使ってください。<app>Zenity</app> は、選択されたファイルあるいはフォルダーを標準出力へ返却します。ファイル選択ダイアログのデフォルトのモードは、開くです。</p>
- <p>ファイル選択ダイアログは、以下のオプションをサポートしています。</p>
-
- <terms>
-
- <item>
- <title><cmd>--filename</cmd>=<var>ファイル名</var></title>
- <p>ファイル選択ダイアログが最初に表示された時に選択されているファイルまたはフォルダーを指定します。</p>
- </item>
-
- <item>
- <title><cmd>--multiple</cmd></title>
- <p>ファイル選択ダイアログで複数ファイルの選択を可能にします。</p>
- </item>
-
- <item>
- <title><cmd>--directory</cmd></title>
- <p>ファイル選択ダイアログでフォルダーのみを選択可能にします。</p>
- </item>
-
- <item>
- <title><cmd>--save</cmd></title>
- <p>ファイル選択ダイアログを保存モードに設定します。</p>
- </item>
-
- <item>
- <title><cmd>--separator</cmd>=<var>セパレーター</var></title>
- <p>返却するファイル名の一覧を区切るのに使う文字を指定します。</p>
- </item>
-
- </terms>
-
- <p>以下のスクリプトの例でファイル選択ダイアログの作成方法を示します。</p>
-
-<code>
-#!/bin/sh
-
-FILE=`zenity --file-selection --title="ファイルの選択"`
-
-case $? in
- 0)
- echo "\"$FILE\" が選択されました。";;
- 1)
- echo "ファイルが選択されませんでした。";;
- -1)
- echo "予期せぬエラーが発生しました。";;
-esac
-</code>
-
- <figure>
- <title>ファイル選択ダイアログの例</title>
- <desc><app>Zenity</app> ファイル選択ダイアログの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-fileselection-screenshot.png"/>
- </figure>
-</page>
diff --git a/help/ja/forms.page b/help/ja/forms.page
deleted file mode 100644
index b8246c9b..00000000
--- a/help/ja/forms.page
+++ /dev/null
@@ -1,82 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="forms" xml:lang="ja">
- <info>
- <link type="guide" xref="index#dialogs"/>
- <desc><cmd>--forms</cmd> オプションの使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>フォームダイアログ</title>
- <p>フォームダイアログを作成するには、<cmd>--forms</cmd> というオプションを使ってください。</p>
-
- <p>フォームダイアログは、以下のオプションをサポートしています。</p>
-
- <terms>
-
- <item>
- <title><cmd>--add-entry</cmd>=<var>項目名</var></title>
- <p>フォームダイアログに入力欄を追加します。</p>
- </item>
-
- <item>
- <title>--add-password<cmd/>=<var>項目名</var></title>
- <p>フォームダイアログにパスワード入力欄を追加します。 (入力テキストを隠します)</p>
- </item>
-
- <item>
- <title><cmd>--add-calendar</cmd>=<var>項目名</var></title>
- <p>フォームダイアログにカレンダーを追加します。</p>
- </item>
-
- <item>
- <title><cmd>--text</cmd>=<var>テキスト</var></title>
- <p>ダイアログに表示するテキストを指定します。</p>
- </item>
-
- <item>
- <title><cmd>--separator</cmd>=<var>セパレーター</var></title>
- <p>セパレーターとして出力する文字を指定します。(既定値: | )</p>
- </item>
-
- <item>
- <title><cmd>--forms-date-format</cmd>=<var>パターン</var></title>
- <p>日付を返却する書式を指定します。デフォルトの書式は、locale に依存します。書式は、 <cmd>strftime</cmd> 関数が受け取れる書式でなければなりません。たとえば、<var>%A %d/%m/%y</var> です。</p>
- </item>
-
- </terms>
-
- <p>以下のスクリプトの例でフォームダイアログの作成方法を示します。</p>
-
-<code>
-#!/bin/sh
-
-zenity --forms --title="友達の追加" \
- --text="友達について情報を入力してください。" \
- --separator="," \
- --add-entry="名" \
- --add-entry="姓" \
- --add-entry="電子メール" \
- --add-calendar="誕生日" &gt;&gt; addr.csv
-
-case $? in
- 0)
- echo "友達が追加されました。";;
- 1)
- echo "友達は追加されませんでした。"
- ;;
- -1)
- echo "予期せぬエラーが発生しました。"
- ;;
-esac
-</code>
-
- <figure>
- <title>フォームダイアログの例</title>
- <desc><app>Zenity</app> フォームダイアログの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-forms-screenshot.png"/>
- </figure>
-</page>
diff --git a/help/ja/index.page b/help/ja/index.page
deleted file mode 100644
index 657a3ab7..00000000
--- a/help/ja/index.page
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="guide" id="index" xml:lang="ja">
-<info>
- <credit type="author">
- <name>サン Java デスクトップシステムドキュメンテーションチーム</name>
- </credit>
- <credit type="author">
- <name>Glynn Foster</name>
- </credit>
- <credit type="editor">
- <name>Nicholas Curran</name>
- <email/>
- </credit>
- <credit type="editor">
- <name>赤星 柔充</name>
- <email>yasumichi@vinelinux.org</email>
- </credit>
- <license>
- <p>GNU Free Documentation License (GFDL)</p>
- </license>
- <include xmlns="http://www.w3.org/2001/XInclude" href="legal.xml"/>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
-<title>Zenity マニュアル</title>
-<!--links type="topic" groups="dialogs" /-->
-<section id="dialogs" style="2column">
- <title>ダイアログ</title>
-</section>
-</page>
diff --git a/help/ja/info.page b/help/ja/info.page
deleted file mode 100644
index c16e417b..00000000
--- a/help/ja/info.page
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="info" xml:lang="ja">
- <info>
- <link type="guide" xref="message"/>
- <desc><cmd>--info</cmd> オプションの使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>情報ダイアログ</title>
- <p>情報ダイアログを作成するには、<cmd>--info</cmd> というオプションを使ってください。</p>
-
- <p>以下のスクリプトの例で情報ダイアログの作成方法を示します。</p>
-
-<code>
-#!/bin/bash
-
-zenity --info \
---text="マージが完了しました。10 個中 3 個のファイルが更新されました。"
-</code>
-
-
- <figure>
- <title>情報ダイアログの例</title>
- <desc><app>Zenity</app> 情報ダイアログの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-information-screenshot.png"/>
- </figure>
-</page>
diff --git a/help/ja/intro.page b/help/ja/intro.page
deleted file mode 100644
index ad8c8ced..00000000
--- a/help/ja/intro.page
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="intro" xml:lang="ja">
-<info>
- <link type="guide" xref="index"/>
- <desc><app>Zenity</app> を使えば、様々な種類の簡単なダイアログを作成できます。</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
-<title>はじめに</title>
-<p><app>Zenity</app> を使えば、以下の種類の簡単なダイアログを作成できます。</p>
-
-<list>
- <item><p>カレンダー</p></item>
- <item><p>ファイル選択</p></item>
- <item><p>フォーム</p></item>
- <item><p>一覧</p></item>
- <item><p>通知アイコン</p></item>
- <item><p>メッセージ</p>
- <list>
- <item><p>エラー</p></item>
- <item><p>情報</p></item>
- <item><p>質問</p></item>
- <item><p>警告</p></item>
- </list>
- </item>
- <item><p>パスワード入力</p></item>
- <item><p>進捗表示</p></item>
- <item><p>テキスト入力</p></item>
- <item><p>テキスト情報</p></item>
- <item><p>スケール</p></item>
- <item><p>色選択</p></item>
-</list>
-</page>
diff --git a/help/ja/ja.stamp b/help/ja/ja.stamp
deleted file mode 100644
index e69de29b..00000000
--- a/help/ja/ja.stamp
+++ /dev/null
diff --git a/help/ja/legal.xml b/help/ja/legal.xml
deleted file mode 100644
index 98cc1829..00000000
--- a/help/ja/legal.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<legalnotice id="legalnotice">
- <para>Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy of the GFDL at this <ulink type="help" url="help:fdl">link</ulink> or in the file COPYING-DOCS distributed with this manual.</para>
- <para>This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by adding a copy of the license to the manual, as described in section 6 of the license.</para>
-
- <para>Many of the names used by companies to distinguish their products and services are claimed as trademarks. Where those names appear in any GNOME documentation, and the members of the GNOME Documentation Project are made aware of those trademarks, then the names are in capital letters or initial capital letters.</para>
-
- <para>DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: <orderedlist>
- <listitem>
- <para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND</para>
- </listitem>
- <listitem>
- <para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES.</para>
- </listitem>
- </orderedlist></para>
- </legalnotice>
diff --git a/help/ja/list.page b/help/ja/list.page
deleted file mode 100644
index cdbb8f57..00000000
--- a/help/ja/list.page
+++ /dev/null
@@ -1,74 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="list" xml:lang="ja">
- <info>
- <link type="guide" xref="index#dialogs"/>
- <desc><cmd>--list</cmd> オプションの使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>一覧ダイアログ</title>
- <p>一覧ダイアログを作成するには、<cmd>--list</cmd> というオプションを使ってください。<app>Zenity</app> は、選択された行の最初の列のテキストを標準出力へ返却します。</p>
-
- <p>一覧ダイアログ向けのデータは、列ごと、行ごとに指定しなければなりません。データは、標準入力を通してダイアログに提供することができます。各項目は、改行文字によって分割されている必要があります。</p>
-
- <p><cmd>--checklist</cmd> や <cmd>--radiolist</cmd> というオプションを使用する場合、各行は 'TRUE' か 'FALSE' で始める必要があります。</p>
-
- <p>一覧ダイアログは、以下のオプションをサポートしています。</p>
-
- <terms>
-
- <item>
- <title><cmd>--column</cmd>=<var>列</var></title>
- <p>一覧ダイアログに表示される列の見出しを指定します。ダイアログに表示したい各列ごとに <cmd>--column</cmd> オプションを指定しなければなりません。</p>
- </item>
-
- <item>
- <title><cmd>--checklist</cmd></title>
- <p>このオプションを指定すると一覧ダイアログの最初の列がチェックボックスになります。</p>
- </item>
-
- <item>
- <title><cmd>--radiolist</cmd></title>
- <p>このオプションを指定すると一覧ダイアログの最初の列がラジオボックスになります。</p>
- </item>
-
- <item>
- <title><cmd>--editable</cmd></title>
- <p>表示した項目の編集を許可します。</p>
- </item>
-
- <item>
- <title><cmd>--separator</cmd>=<var>セパレーター</var></title>
- <p>一覧ダイアログが選択した項目を返却する際に使用する文字を指定します。</p>
- </item>
-
- <item>
- <title><cmd>--print-column</cmd>=<var>列</var></title>
- <p>選択した項目を出力する列を指定します。デフォルトの列は、'1' です。'ALL' を使えば、一覧のすべての列を出力できます。</p>
- </item>
-
- </terms>
-
- <p>以下のスクリプトの例で一覧ダイアログの作成方法を示します。</p>
-<code>
-#!/bin/sh
-
-zenity --list \
- --title="閲覧したいバグを選択してください" \
- --column="バグ番号" --column="重大度" --column="説明" \
- 992383 通常 "GtkTreeView が複数選択時にクラッシュする" \
- 293823 高い "GNOME 辞書がプロキシを操作できない" \
- 393823 重大 "GNOME 2.0 でメニュー編集が動作しない"
-</code>
-
-
- <figure>
- <title>一覧ダイアログの例</title>
- <desc><app>Zenity</app> 一覧ダイアログの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-list-screenshot.png"/>
- </figure>
-</page>
diff --git a/help/ja/message.page b/help/ja/message.page
deleted file mode 100644
index 8b0d5af3..00000000
--- a/help/ja/message.page
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="guide" id="message" xml:lang="ja">
- <info>
- <link type="guide" xref="index#dialogs" group="message"/>
- <desc><link xref="error">エラー</link>, <link xref="info">情報</link>, <link xref="question">質問</link>, <link xref="warning">警告</link></desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>メッセージダイアログ</title>
- <p>各種類ともダイアログに表示するテキストを指定するには、<cmd>--text</cmd> というオプションを使ってください。</p>
- <links type="topic" style="2column"/>
-</page>
diff --git a/help/ja/notification.page b/help/ja/notification.page
deleted file mode 100644
index 0ccb924c..00000000
--- a/help/ja/notification.page
+++ /dev/null
@@ -1,59 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="notification" xml:lang="ja">
- <info>
- <link type="guide" xref="index#dialogs"/>
- <desc><cmd>--notification</cmd> オプションの使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>通知アイコン</title>
- <p>通知アイコンを作成するには、<cmd>--notification</cmd> というオプションを使ってください。</p>
-
- <terms>
- <item>
- <title><cmd>--text</cmd>=<var>テキスト</var></title>
- <p>通知領域に表示するテキストを指定します。</p>
- </item>
- <item>
- <title><cmd>--listen</cmd>=icon: '<var>text</var>', message: '<var>text</var>', tooltip: '<var>text</var>', visible: '<var>text</var>',</title>
- <p>Listens for commands at standard input. At least one command must be specified. Commands are comma separated. A command must be followed by a colon and a value. </p>
- <note style="tip">
- <p>The <cmd>icon</cmd> command also accepts four stock icon values such as <var>error</var>, <var>info</var>, <var>question</var> and <var>warning</var>.</p>
- </note>
- </item>
- </terms>
-
- <p>以下のスクリプトの例で通知アイコンの作成方法を示します。</p>
- <code>
- #!/bin/sh
-
- zenity --notification\
- --window-icon="info" \
- --text="There are system updates necessary!"
- </code>
-
- <figure>
- <title>通知アイコンの例</title>
- <desc><app>Zenity</app> 通知アイコンの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-notification-screenshot.png"/>
- </figure>
-
- <p>The following example script shows how to create a notification icon along with <cmd>--listen</cmd>:</p>
- <code>
- #!/bin/sh
- cat &lt;&lt;EOH| zenity --notification --listen
- message: this is the message text
- EOH
- </code>
-
- <figure>
- <title>Notification Icon with <cmd>--listen</cmd> Example</title>
- <desc><app>Zenity</app> notification with <cmd>--listen</cmd> example</desc>
- <media type="image" mime="image/png" src="figures/zenity-notification-listen-screenshot.png"/>
- </figure>
-
-</page>
diff --git a/help/ja/password.page b/help/ja/password.page
deleted file mode 100644
index f9380b66..00000000
--- a/help/ja/password.page
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="password" xml:lang="ja">
- <info>
- <link type="guide" xref="index#dialogs"/>
- <desc><cmd>--password</cmd> オプションの使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>パスワードダイアログ</title>
- <p>パスワードダイアログを作成するには、<cmd>--password</cmd> というオプションを使ってください。</p>
- <p>パスワードダイアログは、以下のオプションをサポートしています。</p>
-
- <terms>
- <item>
- <title><cmd>--username</cmd></title>
- <p>ユーザー名入力欄を表示します。</p>
- </item>
- </terms>
-
- <p>以下のスクリプトの例でパスワードダイアログの作成方法を示します。</p>
-
-<code>
-#!/bin/sh
-
-ENTRY=`zenity --password --username`
-
-case $? in
- 0)
- echo "ユーザー名: `echo $ENTRY | cut -d'|' -f1`"
- echo "パスワード: `echo $ENTRY | cut -d'|' -f2`"
- ;;
- 1)
- echo "ログインを中止しました。";;
- -1)
- echo "予期せぬエラーが発生しました。";;
-esac
-</code>
-
- <figure>
- <title>パスワード入力ダイアログの例</title>
- <desc><app>Zenity</app> パスワード入力ダイアログの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-password-screenshot.png"/>
- </figure>
-
-</page>
diff --git a/help/ja/progress.page b/help/ja/progress.page
deleted file mode 100644
index 73d07a2b..00000000
--- a/help/ja/progress.page
+++ /dev/null
@@ -1,77 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="progress" xml:lang="ja">
- <info>
- <link type="guide" xref="index#dialogs"/>
- <desc><cmd>--progress</cmd> オプションの使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>進捗表示ダイアログ</title>
- <p>進捗表示ダイアログを作成するには、<cmd>--progress</cmd> というオプションを使ってください。</p>
-
- <p><app>Zenity</app> は、標準入力から 1 行ごとにデータを読み込みます。行が # で始まっている場合、進捗表示ダイアログに表示しているテキストを更新します。行が数値のみを含んでいる場合、進捗状況のパーセンテージをその数値で更新します。</p>
-
- <p>進捗表示ダイアログは、以下のオプションをサポートしています。</p>
-
- <terms>
-
- <item>
- <title><cmd>--text</cmd>=<var>テキスト</var></title>
- <p>進捗表示ダイアログに表示するテキストを指定します。</p>
- </item>
-
- <item>
- <title><cmd>--percentage</cmd>=<var>パーセンテージ</var></title>
- <p>進捗表示ダイアログに設定する初期のパーセンテージを指定します。</p>
- </item>
-
- <item>
- <title><cmd>--auto-close</cmd></title>
- <p>100% に到達した際に進捗表示ダイアログを閉じます。</p>
- </item>
-
- <item>
- <title><cmd>--pulsate</cmd></title>
- <p>標準入力から EOF 文字を読み込むまで進捗表示バーを振動させたい場合に指定します。</p>
- </item>
-
- </terms>
-
- <p>以下のスクリプトの例で進捗表示ダイアログの作成方法を示します。</p>
-
-<code>
-#!/bin/sh
-(
-echo "10" ; sleep 1
-echo "# メールログの更新" ; sleep 1
-echo "20" ; sleep 1
-echo "# cron ジョブの再設定" ; sleep 1
-echo "50" ; sleep 1
-echo "この行は無視されます" ; sleep 1
-echo "75" ; sleep 1
-echo "# システムの再起動" ; sleep 1
-echo "100" ; sleep 1
-) |
-zenity --progress \
- --title="システムログの更新" \
- --text="メールログを走査中..." \
- --percentage=0
-
-if [ "$?" = -1 ] ; then
- zenity --error \
- --text="更新がキャンセルされました。"
-fi
-
-</code>
-
-
- <figure>
- <title>進捗表示ダイアログの例</title>
- <desc><app>Zenity</app> 進捗表示ダイアログの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-progress-screenshot.png"/>
- </figure>
-</page>
diff --git a/help/ja/question.page b/help/ja/question.page
deleted file mode 100644
index d9634f1f..00000000
--- a/help/ja/question.page
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="question" xml:lang="ja">
- <info>
- <link type="guide" xref="message"/>
- <desc><cmd>--question</cmd> オプションの使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>質問ダイアログ</title>
- <p>質問ダイアログを作成するには、<cmd>--question</cmd> というオプションを使ってください。</p>
-
- <p>以下のスクリプトの例で質問ダイアログの作成方法を示します。</p>
-
-<code>
-#!/bin/bash
-
-zenity --question \
---text="続行しますか?"
-</code>
-
-
- <figure>
- <title>質問ダイアログの例</title>
- <desc><app>Zenity</app> 質問ダイアログの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-question-screenshot.png"/>
- </figure>
-</page>
diff --git a/help/ja/scale.page b/help/ja/scale.page
deleted file mode 100644
index 560522bc..00000000
--- a/help/ja/scale.page
+++ /dev/null
@@ -1,79 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="scale" xml:lang="ja">
- <info>
- <link type="guide" xref="index#dialogs"/>
- <desc><cmd>--scale</cmd> の使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>スケールダイアログ</title>
- <p>スケールダイアログを作成するには、<cmd>--scale</cmd> というオプションを使ってください。</p>
- <p>スケールダイアログは、以下のオプションをサポートしています。</p>
-
- <terms>
-
- <item>
- <title><cmd>--text</cmd>=<var>テキスト</var></title>
- <p>ダイアログのテキストを指定します。(既定値: スケール値の調整)</p>
- </item>
-
- <item>
- <title><cmd>--value</cmd>=<var>値</var></title>
- <p>初期値を指定します。 (既定値: 0) 最小値から最大値の間で指定しなければなりません。</p>
- </item>
-
- <item>
- <title><cmd>--min-value</cmd>=<var>値</var></title>
- <p>最小値を指定します。 (既定値: 0)</p>
- </item>
-
- <item>
- <title><cmd>--max-value</cmd>=<var>値</var></title>
- <p>最大値を指定します。 (既定値: 100)</p>
- </item>
-
- <item>
- <title><cmd>--step</cmd>=<var>値</var></title>
- <p>刻み幅を指定します。 (既定値: 1)</p>
- </item>
-
- <item>
- <title><cmd>--print-partial</cmd></title>
- <p>値が変更される度に標準出力へ値を出力します。</p>
- </item>
-
- <item>
- <title><cmd>--hide-value</cmd></title>
- <p>ダイアログで値を非表示にします。</p>
- </item>
-
- </terms>
-
- <p>以下のスクリプトの例でスケールダイアログの作成方法を示します。</p>
-
-<code>
-#!/bin/sh
-
-VALUE=`zenity --scale --text="ウィンドウの透過率を指定してください。" --value=50`
-
-case $? in
- 0)
- echo "$VALUE% が指定されました。";;
- 1)
- echo "値が指定されませんでした。";;
- -1)
- echo "予期せぬエラーが発生しました。";;
-esac
-</code>
-
- <figure>
- <title>スケールダイアログの例</title>
- <desc><app>Zenity</app> スケールダイアログの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-scale-screenshot.png"/>
- </figure>
-
-</page>
diff --git a/help/ja/text.page b/help/ja/text.page
deleted file mode 100644
index a9bb108d..00000000
--- a/help/ja/text.page
+++ /dev/null
@@ -1,84 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="text" xml:lang="ja">
- <info>
- <link type="guide" xref="index#dialogs"/>
- <desc><cmd>--text-info</cmd> オプションの使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>テキスト情報ダイアログ</title>
- <p>テキスト情報ダイアログを作成するには、<cmd>--text-info</cmd> というオプションを使ってください。</p>
-
- <p>テキスト情報ダイアログは、以下のオプションをサポートしています。</p>
-
- <terms>
-
- <item>
- <title><cmd>--filename</cmd>=<var>ファイル名</var></title>
- <p>テキスト情報ダイアログに読み込むファイルを指定します。</p>
- </item>
-
- <item>
- <title><cmd>--editable</cmd></title>
- <p>表示されたテキストの編集を許可します。ダイアログを閉じると標準出力へ編集されたテキストが返却されます。</p>
- </item>
-
- <item>
- <title><cmd>--font</cmd>=<var>フォント</var></title>
- <p>テキストのフォントを指定します。</p>
- </item>
-
- <item>
- <title><cmd>--checkbox</cmd>=<var>テキスト</var></title>
- <p>「文書を読み承諾します。」というように使うチェックボックスを有効にします。</p>
- </item>
-
- <item>
- <title><cmd>--html</cmd></title>
- <p>HTML サポートを有効にします。</p>
- </item>
-
- <item>
- <title><cmd>--url</cmd>=<var>URL</var></title>
- <p>ファイルの代わりに URL を指定します。--html オプションを利用している場合にのみ機能します。</p>
- </item>
-
- </terms>
-
- <p>以下のスクリプトの例でテキスト情報ダイアログの作成方法を示します。</p>
-
-<code>
-#!/bin/sh
-
-# You must place file "COPYING" in same folder of this script.
-FILE=`dirname $0`/COPYING
-
-zenity --text-info \
- --title="ライセンス" \
- --filename=$FILE \
- --checkbox="文書を読み承諾します。"
-
-case $? in
- 0)
- echo "インストールを開始します!"
- # next step
- ;;
- 1)
- echo "インストールを停止します!"
- ;;
- -1)
- echo "予期せぬエラーが発生しました。"
- ;;
-esac
-</code>
-
- <figure>
- <title>テキスト情報ダイアログの例</title>
- <desc><app>Zenity</app> テキスト情報ダイアログの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-text-screenshot.png"/>
- </figure>
-</page>
diff --git a/help/ja/usage.page b/help/ja/usage.page
deleted file mode 100644
index 6e970c6e..00000000
--- a/help/ja/usage.page
+++ /dev/null
@@ -1,264 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="usage" xml:lang="ja">
-<info>
- <link type="guide" xref="index"/>
- <desc><app>Zenity</app> を使えば、ユーザーと視覚的に対話する簡単なダイアログを作成できます。</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
-<title>使用法</title>
- <p>スクリプトを書く際に <app>Zenity</app> を使えば、以下のようにユーザーと視覚的に対話する簡単なダイアログを作成できます。</p>
- <list>
- <item>
- <p>ユーザーからの情報を取得するダイアログを作成できます。たとえば、カレンダーから日付を選択したり、ファイル選択ダイアログからファイルを選択したりするようにユーザーに求めることができます。</p>
- </item>
- <item>
- <p>ユーザーに情報を提供するダイアログが作成できます。たとえば、処理の現在の状況を示す進捗表示ダイアログやユーザーに注意を促す警告メッセージダイアログを使用できます。</p>
- </item>
- </list>
- <p>ユーザーがダイアログを閉じると <app>Zenity</app> は標準出力へダイアログにより作成されたテキストを出力します。</p>
-
- <note>
- <p><app>Zenity</app> コマンドを書く時は、確実に各引数を引用符で囲むようにしてください。</p>
- <p>たとえば、次のように使います。</p>
- <screen>zenity --calendar --title="Holiday Planner"</screen>
- <p>次のように使ってはいけません。</p>
- <screen>zenity --calendar --title=Holiday Planner</screen>
- <p>引用符を利用しない場合、予期せぬ結果を招く恐れがあります。</p>
- </note>
-
- <section id="zenity-usage-mnemonics">
- <title>アクセスキー</title>
- <p>アクセスキーは、メニューやダイアログからマウスでコマンドを選択する代わりにキーボードで操作ができるようにするキーです。それぞれのアクセスキーは、メニューやダイアログのオプションで下線によって識別されます。</p>
- <p>いくつかの <app>Zenity</app> ダイアログは、アクセスキーの利用をサポートしています。アクセスキーとして利用する文字を指定するには、ダイアログのテキスト内にあるアクセスキーにしたい文字の前にアンダースコア (_) を置いてください。以下の例は、アクセスキーとして文字 'C' を指定する方法を示しています。</p>
- <screen><input>"名前の選択(_C)"</input></screen>
- </section>
-
- <section id="zenity-usage-exitcodes">
- <title>終了コード</title>
- <p>Zenity は、以下の終了コードを返します。</p>
-
- <table frame="all" rules="all">
- <thead>
- <tr>
- <td>
- <p>終了コード</p></td>
- <td>
- <p>説明</p></td>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>
- <p><var>0</var></p>
- </td>
- <td>
- <p>ユーザーが、<gui style="button">OK</gui> か <gui style="button">閉じる</gui>を押しました。</p>
- </td>
- </tr>
- <tr>
- <td>
- <p><var>1</var></p>
- </td>
- <td>
- <p>ユーザーが<gui style="button">キャンセル</gui>を押したか、ウィンドウの機能を利用してダイアログを閉じました。</p>
- </td>
- </tr>
- <tr>
- <td>
- <p><var>-1</var></p>
- </td>
- <td>
- <p>予期しないエラーが発生しました。</p>
- </td>
- </tr>
- <tr>
- <td>
- <p><var>5</var></p>
- </td>
- <td>
- <p>タイムアウトに達したため、ダイアログが閉じました。</p>
- </td>
- </tr>
- </tbody>
- </table>
-
- </section>
-
-
- <!-- ==== General Options ====== -->
-
- <section id="zenity-usage-general-options">
- <title>汎用的なオプション</title>
-
- <p>すべての Zenity ダイアログは、以下の汎用的なオプションをサポートしています。</p>
-
- <terms>
-
- <item>
- <title><cmd>--title</cmd>=<var>タイトル</var></title>
- <p>ダイアログのタイトルを指定します。</p>
- </item>
-
- <item>
- <title><cmd>--window-icon</cmd>=<var>アイコンのパス</var></title>
- <p>ダイアログのウィンドウフレームに表示するアイコンを指定します。「info」、「warning」、「question」および「error」というキーワードで提供される 4 つのストックアイコンも利用可能です。</p>
- </item>
-
- <item>
- <title><cmd>--width</cmd>=<var>幅</var></title>
- <p>ダイアログの幅を指定します。</p>
- </item>
-
- <item>
- <title><cmd>--height</cmd>=<var>高さ</var></title>
- <p>ダイアログの高さを指定します。</p>
- </item>
-
- <item>
- <title><cmd>--timeout</cmd>=<var>タイムアウト</var></title>
- <p>ダイアログが閉じるまでのタイムアウト値を秒数で指定します。</p>
- </item>
-
- </terms>
-
- </section>
-
-<!-- ==== Miscellaneous Options ====== -->
-
- <section id="zenity-help-options">
- <title>ヘルプのオプション</title>
-
- <p>Zenity は、以下のヘルプのオプションを提供しています。</p>
-
- <terms>
-
- <item>
- <title><cmd>--help</cmd></title>
- <p>簡単なヘルプを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-all</cmd></title>
- <p>すべてのダイアログに関する完全なヘルプを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-general</cmd></title>
- <p>汎用的なオプションを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-calendar</cmd></title>
- <p>カレンダーダイアログのオプションに関するヘルプを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-entry</cmd></title>
- <p>テキスト入力ダイアログのオプションに関するヘルプを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-error</cmd></title>
- <p>エラーダイアログのオプションに関するヘルプを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-info</cmd></title>
- <p>情報ダイアログのオプションに関するヘルプを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-file-selection</cmd></title>
- <p>ファイル選択ダイアログのオプションに関するヘルプを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-list</cmd></title>
- <p>一覧ダイアログのオプションに関するヘルプを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-notification</cmd></title>
- <p>通知アイコンのオプションに関するヘルプを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-progress</cmd></title>
- <p>進捗表示ダイアログのオプションに関するヘルプを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-question</cmd></title>
- <p>質問ダイアログのオプションに関するヘルプを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-warning</cmd></title>
- <p>警告ダイアログのオプションに関するヘルプを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-text-info</cmd></title>
- <p>テキスト情報ダイアログのオプションに関するヘルプを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-misc</cmd></title>
- <p>種々雑多なオプションに関するヘルプを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--help-gtk</cmd></title>
- <p>GTK+ のオプションに関するヘルプを表示します。</p>
- </item>
-
- </terms>
-
- </section>
-
-<!-- ==== Miscellaneous Options ====== -->
-
- <section id="zenity-miscellaneous-options">
- <title>種々雑多なオプション</title>
-
- <p>Zenity は、以下のような種々雑多なオプションも提供しています。</p>
-
- <terms>
-
- <item>
- <title><cmd>--about</cmd></title>
- <p>Zenity のバージョン情報、著作権情報および開発者の情報を含んだ「<gui>Zenity について</gui>」というダイアログを表示します。</p>
- </item>
-
- <item>
- <title><cmd>--version</cmd></title>
- <p>Zenity のバージョン番号を標準出力に表示します。</p>
- </item>
-
- </terms>
-
- </section>
-
-<!-- ==== GTK+ Options ====== -->
-
- <section id="zenity-gtk-options">
- <title>GTK+ のオプション</title>
-
- <p>Zenity は、標準的な GTK+ のオプションをサポートしています。GTK+ のオプションについての詳細は、<cmd>zenity --help-gtk</cmd> というコマンドを実行して確認してください。</p>
-
- </section>
-
-<!-- ==== Environment variables ==== -->
-
- <section id="zenity-environment-variables">
- <title>環境変数</title>
-
- <p>通常、Zenity は自身が起動された端末ウィンドウを検出し、そのウィンドウより前面に位置し続けます。この振る舞いは、<var>WINDOWID</var> という環境変数の定義を解除することにより、無効にできます。</p>
-
- </section>
-</page>
diff --git a/help/ja/warning.page b/help/ja/warning.page
deleted file mode 100644
index d30d7338..00000000
--- a/help/ja/warning.page
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="warning" xml:lang="ja">
- <info>
- <link type="guide" xref="message"/>
- <desc><cmd>--warning</cmd> オプションの使用</desc>
-
- <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
- <mal:name>赤星 柔充</mal:name>
- <mal:email>yasumichi@vinelinux.org</mal:email>
- <mal:years>2011,2012</mal:years>
- </mal:credit>
- </info>
- <title>警告ダイアログ</title>
- <p>警告ダイアログを作成するには、<cmd>--warning</cmd> というオプションを使ってください。</p>
-
- <p>以下のスクリプトの例で警告ダイアログの作成方法を示します。</p>
-
-<code>
-#!/bin/bash
-
-zenity --warning \
---text="電気ショックを避けるために電源ケーブルの接続を解除しました。"
-</code>
-
- <figure>
- <title>警告ダイアログの例</title>
- <desc><app>Zenity</app> 警告ダイアログの例</desc>
- <media type="image" mime="image/png" src="figures/zenity-warning-screenshot.png"/>
- </figure>
-</page>
bgstack15