summaryrefslogtreecommitdiff
path: root/help/fr/color-selection.page
diff options
context:
space:
mode:
Diffstat (limited to 'help/fr/color-selection.page')
-rw-r--r--help/fr/color-selection.page78
1 files changed, 0 insertions, 78 deletions
diff --git a/help/fr/color-selection.page b/help/fr/color-selection.page
deleted file mode 100644
index 94f2f611..00000000
--- a/help/fr/color-selection.page
+++ /dev/null
@@ -1,78 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<page xmlns="http://projectmallard.org/1.0/" type="topic" id="color-selection" xml:lang="fr">
- <info>
- <link type="guide" xref="index#dialogs"/>
- <desc>Utiliser l'option <cmd>--color-selection</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 sélection de couleur</title>
- <p>Utilisez l'option <cmd>--color-selection</cmd> pour créer une boîte de dialogue de sélection de couleur.</p>
- <p>Options de la boîte de dialogue de sélection de couleur :</p>
-
- <terms>
-
- <item>
- <title><cmd>--color</cmd>=<var>VALEUR</var></title>
- <p>Définir la couleur initiale (ex. : #FF0000).</p>
- </item>
-
- <item>
- <title><cmd>--show-palette</cmd></title>
- <p>Afficher la palette.</p>
- </item>
-
- </terms>
-
- <p>Le script d'exemple suivant montre comment créer une boîte de dialogue de sélection de couleur :</p>
-
-<code>
-#!/bin/sh
-
-COLOR=`zenity --color-selection --show-palette`
-
-case $? in
- 0)
- echo "Vous avez sélectionné $COLOR.";;
- 1)
- echo "Aucune couleur sélectionnée.";;
- -1)
- echo "Une erreur inattendue est survenue.";;
-esac
-</code>
-
- <figure>
- <title>Exemple de boîte de dialogue de sélection de couleur</title>
- <desc>Exemple de boîte de dialogue de sélection de couleur <app>Zenity</app></desc>
- <media type="image" mime="image/png" src="figures/zenity-colorselection-screenshot.png"/>
- </figure>
-
-</page>
bgstack15