summaryrefslogtreecommitdiff
path: root/help/fr/question.page
diff options
context:
space:
mode:
Diffstat (limited to 'help/fr/question.page')
-rw-r--r--help/fr/question.page55
1 files changed, 55 insertions, 0 deletions
diff --git a/help/fr/question.page b/help/fr/question.page
new file mode 100644
index 00000000..15f14bdc
--- /dev/null
+++ b/help/fr/question.page
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="utf-8"?>
+<page xmlns="http://projectmallard.org/1.0/" type="topic" id="question" xml:lang="fr">
+ <info>
+ <link type="guide" xref="message"/>
+ <desc>Utiliser l'option <cmd>--question</cmd>.</desc>
+
+ <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
+ <mal:name>Christophe Bliard</mal:name>
+ <mal:email>cbliard@gmail.com</mal:email>
+ <mal:years>2005</mal:years>
+ </mal:credit>
+
+ <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
+ <mal:name>Vincent Untz</mal:name>
+ <mal:email>vuntz@gnome.org</mal:email>
+ <mal:years>2005</mal:years>
+ </mal:credit>
+
+ <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
+ <mal:name>Claude Paroz</mal:name>
+ <mal:email>claude@2xlibre.net</mal:email>
+ <mal:years>2009</mal:years>
+ </mal:credit>
+
+ <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
+ <mal:name>Bruno Brouard</mal:name>
+ <mal:email>annoa.b@gmail.com</mal:email>
+ <mal:years>2011</mal:years>
+ </mal:credit>
+
+ <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
+ <mal:name>Mickael Albertus</mal:name>
+ <mal:email>mickael.albertus@gmail.com</mal:email>
+ <mal:years>2012</mal:years>
+ </mal:credit>
+ </info>
+ <title>Boîte de dialogue de question</title>
+ <p>Utilisez l'option <cmd>--question</cmd> pour créer une boîte de dialogue de question.</p>
+
+ <p>Le script d'exemple suivant montre comment créer une boîte de dialogue de question :</p>
+
+<code>
+#!/bin/bash
+
+zenity --question \
+--text="Voulez-vous vraiment continuer ?"
+</code>
+
+
+ <figure>
+ <title>Exemple de boîte de dialogue de question</title>
+ <desc>Exemple de boîte de dialogue de question <app>Zenity</app></desc>
+ <media type="image" mime="image/png" src="figures/zenity-question-screenshot.png"/>
+ </figure>
+</page>
bgstack15