diff options
author | Jeremy Bicha <jbicha@debian.org> | 2017-12-16 13:06:04 -0500 |
---|---|---|
committer | Jeremy Bicha <jbicha@debian.org> | 2017-12-16 13:06:04 -0500 |
commit | c5fd821cd582b8d8df624e42c7722a5843ace911 (patch) | |
tree | 571f12c78d287f4c365cda1fb980117176d1167c /help/fi/entry.page | |
parent | Update Vcs fields for conversion to git (diff) | |
parent | New upstream version 3.26.0 (diff) | |
download | zenity-c5fd821cd582b8d8df624e42c7722a5843ace911.tar.gz zenity-c5fd821cd582b8d8df624e42c7722a5843ace911.tar.bz2 zenity-c5fd821cd582b8d8df624e42c7722a5843ace911.zip |
Update upstream source from tag 'upstream/3.26.0'
Update to upstream version '3.26.0'
with Debian dir 7b9bef2d6e33af30991a3e59a1c70875d7aa58e2
Diffstat (limited to 'help/fi/entry.page')
-rw-r--r-- | help/fi/entry.page | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/help/fi/entry.page b/help/fi/entry.page new file mode 100644 index 00000000..e0be5989 --- /dev/null +++ b/help/fi/entry.page @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="utf-8"?> +<page xmlns="http://projectmallard.org/1.0/" type="topic" id="entry" xml:lang="fi"> + <info> + <link type="guide" xref="index#dialogs"/> + <desc>Use the <cmd>--entry</cmd> option.</desc> + </info> + <title>Tekstinsyöttöikkuna</title> + <p> + Use the <cmd>--entry</cmd> option to create a text entry dialog. <app>Zenity</app> returns the contents of the text entry to standard output. + </p> + <p>Tekstinsyöttöikkuna tarjoaa seuraavat valitsimet:</p> + + <terms> + + <item> + <title><cmd>--text</cmd>=<var>text</var></title> + <p>Määrittää tekstin, joka näkyy tekstinsyöttöikkunassa.</p> + </item> + + <item> + <title><cmd>--entry-text</cmd>=<var>text</var></title> + <p>Määrittää tekstin, joka näytetään syöttökentässä teksinsyöttöikkunassa.</p> + </item> + + <item> + <title><cmd>--hide-text</cmd></title> + <p>Piilottaa tekstin syöttökentässä tekstinsyöttöikkunassa.</p> + </item> + + </terms> + + <p> + The following example script shows how to create a text entry dialog: + </p> + +<code> +#!/bin/sh + +if zenity --entry \ +--title="Add new profile" \ +--text="Enter name of new profile:" \ +--entry-text "NewProfile" + then echo $? + else echo "No name entered" +fi +</code> + + + <figure> + <title>Esimerkki tekstinsyöttöikkunasta</title> + <desc><app>Zenity</app> text entry dialog example</desc> + <media type="image" mime="image/png" src="figures/zenity-entry-screenshot.png"/> + </figure> +</page> |