/usr/share/help/ja/zenity/scale.page is in zenity-common 3.14.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | <?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 id="zenity-scale-screenshot">
<title>スケールダイアログの例</title>
<desc><app>Zenity</app> スケールダイアログの例</desc>
<media type="image" mime="image/png" src="figures/zenity-scale-screenshot.png"/>
</figure>
</page>
|