summaryrefslogtreecommitdiff
path: root/help/ja/warning.page
diff options
context:
space:
mode:
Diffstat (limited to 'help/ja/warning.page')
-rw-r--r--help/ja/warning.page30
1 files changed, 30 insertions, 0 deletions
diff --git a/help/ja/warning.page b/help/ja/warning.page
new file mode 100644
index 00000000..d30d7338
--- /dev/null
+++ b/help/ja/warning.page
@@ -0,0 +1,30 @@
+<?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