From d570f12f0bba5366a150f36d9a67085080d031f7 Mon Sep 17 00:00:00 2001
From: Bill Kendrick TuxPaint.app application bundle that can be run in-place or copied to /Applications. To create the DMG file for distribution, use 'make TuxPaint.dmg'.
- Additional steps may be required when building for the Apple Silicon. See "Building for Apple Silicon" below.
+ Additional steps are required when building a Unviersal Binary. See "Building a Universal Binary" below.macOS for Apple Silicon requires all native Apple Silicon applications be signed, even if it is signed "ad-hoc" (anonymously). Because of this, compilers that produce native Apple Silicon applications sign all produced binaries and libraries as a part of the compilation process.* However, the Tux Paint compilation process modifies the libraries to be modular (using install_name_tool) so they can be added into the application bundle, which has the unfortunate side effect of breaking the signature. This can be addressed by signing the application bundle ad-hoc (example below) or using your own Apple Developer Identity if you have one. The DMG file, if needed, must be created after signing the App Bundle so the DMG file is created with signed App Bundle:
-
- $ codesign -s - TuxPaint.app
- $ make TuxPaint.dmg
-
-
- * For more information on the code signing requirements on the Apple Silicon, see https://developer.apple.com/documentation/macos-release-notes/macos-big-sur-11_0_1-universal-apps-release-notes#:~:text=New%20in%20macOS,pass%20through%20Gatekeeper.
- If you get an error that the application bundle is already signed, remove it before signing:
-
- $ codesign --remove-signature TuxPaint.app
-
-
-
- If you plan to combine the Apple Silicon bundle with the Intel CPU bundle to produce the Universal bundle, the code signing must be done after they are combined. See "Building a Universal Binary" below.
-
- To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the provided build-universal.sh script to combine the two application bundles as below. The produced bundle must be signed (see "Building for Apple Silicon" above for more details). The DMG file, if required, must be built after the signing:
+ To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the providedbuild-universal.shscript to combine the two application bundles as below. The DMG file can be built afterwards:diff --git a/docs/es_ES.UTF-8/INSTALL.txt b/docs/es_ES.UTF-8/INSTALL.txt index 84cf00f24..fed08e797 100644 --- a/docs/es_ES.UTF-8/INSTALL.txt +++ b/docs/es_ES.UTF-8/INSTALL.txt @@ -665,8 +665,8 @@ Simply, run: copied to /Applications. To create the DMG file for distribution, use 'make TuxPaint.dmg'. -Additional steps may be required when building for the Apple Silicon. See -"Building for Apple Silicon" below. +Additional steps are required when building a Unviersal Binary. See "Building a +Universal Binary" below. Known Issues @@ -749,36 +749,6 @@ they can only be built to run natively on the hardware on which they were built. See "Building a Universal Binary" below for instructions on how to build Tux Paint as a Universal Binary. -Building for Apple Silicon - -macOS for Apple Silicon requires all native Apple Silicon applications be -signed, even if it is signed "ad-hoc" (anonymously). Because of this, compilers -that produce native Apple Silicon applications sign all produced binaries and -libraries as a part of the compilation process.^* However, the Tux Paint -compilation process modifies the libraries to be modular (using -install_name_tool) so they can be added into the application bundle, which has -the unfortunate side effect of breaking the signature. This can be addressed by -signing the application bundle ad-hoc (example below) or using your own Apple -Developer Identity if you have one. The DMG file, if needed, must be created -after signing the App Bundle so the DMG file is created with signed App Bundle: - - $ codesign -s - TuxPaint.app - $ make TuxPaint.dmg - -^* For more information on the code signing requirements on the Apple Silicon, -see https://developer.apple.com/documentation/macos-release-notes/ -macos-big-sur-11_0_1-universal-apps-release-notes#:~:text= -New%20in%20macOS,pass%20through%20Gatekeeper. - -If you get an error that the application bundle is already signed, remove it -before signing: - - $ codesign --remove-signature TuxPaint.app - -If you plan to combine the Apple Silicon bundle with the Intel CPU bundle to -produce the Universal bundle, the code signing must be done after they are -combined. See "Building a Universal Binary" below. - Building a Universal Binary To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU @@ -786,12 +756,9 @@ and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the provided build-universal.sh script to combine the -two application bundles as below. The produced bundle must be signed (see -"Building for Apple Silicon" above for more details). The DMG file, if -required, must be built after the signing: +two application bundles as below. The DMG file can be built afterwards: $ macos/build-universal.sh - $ codesign -s - TuxPaint.app $ make TuxPaint.dmg ----------------------------------------------------------------------- diff --git a/docs/es_ES.UTF-8/html/INSTALL.html b/docs/es_ES.UTF-8/html/INSTALL.html index 87841ec7f..de0c6c41c 100644 --- a/docs/es_ES.UTF-8/html/INSTALL.html +++ b/docs/es_ES.UTF-8/html/INSTALL.html @@ -1047,7 +1047,7 @@ ... to create the$ macos/build-universal.sh
- $ codesign -s - TuxPaint.app
$ make TuxPaint.dmgTuxPaint.appapplication bundle that can be run in-place or copied to/Applications. To create the DMG file for distribution, use 'make TuxPaint.dmg'.- Additional steps may be required when building for the Apple Silicon. See "Building for Apple Silicon" below.
+ Additional steps are required when building a Unviersal Binary. See "Building a Universal Binary" below.
macOS for Apple Silicon requires all native Apple Silicon applications be signed, even if it is signed "ad-hoc" (anonymously). Because of this, compilers that produce native Apple Silicon applications sign all produced binaries and libraries as a part of the compilation process.* However, the Tux Paint compilation process modifies the libraries to be modular (using install_name_tool) so they can be added into the application bundle, which has the unfortunate side effect of breaking the signature. This can be addressed by signing the application bundle ad-hoc (example below) or using your own Apple Developer Identity if you have one. The DMG file, if needed, must be created after signing the App Bundle so the DMG file is created with signed App Bundle:
-
- $ codesign -s - TuxPaint.app
- $ make TuxPaint.dmg
-
-
- * For more information on the code signing requirements on the Apple Silicon, see https://developer.apple.com/documentation/macos-release-notes/macos-big-sur-11_0_1-universal-apps-release-notes#:~:text=New%20in%20macOS,pass%20through%20Gatekeeper.
- If you get an error that the application bundle is already signed, remove it before signing:
-
- $ codesign --remove-signature TuxPaint.app
-
-
-
- If you plan to combine the Apple Silicon bundle with the Intel CPU bundle to produce the Universal bundle, the code signing must be done after they are combined. See "Building a Universal Binary" below.
-
- To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the provided build-universal.sh script to combine the two application bundles as below. The produced bundle must be signed (see "Building for Apple Silicon" above for more details). The DMG file, if required, must be built after the signing:
+ To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the providedbuild-universal.shscript to combine the two application bundles as below. The DMG file can be built afterwards:diff --git a/docs/fr_FR.UTF-8/ADVANCED-STAMPS-HOWTO.txt b/docs/fr_FR.UTF-8/ADVANCED-STAMPS-HOWTO.txt index e35e3e944..93ded15d7 100644 --- a/docs/fr_FR.UTF-8/ADVANCED-STAMPS-HOWTO.txt +++ b/docs/fr_FR.UTF-8/ADVANCED-STAMPS-HOWTO.txt @@ -1,7 +1,7 @@ Tux Paint version 0.9.31 'Guide pratique" pour les tampons de haute qualité - Copyright © 2006-2022 by Albert Cahalan et d'autres; see AUTHORS.txt. + Copyright © 2006-2022 by Albert Cahalan et d'autres; voir AUTHORS.txt. https://tuxpaint.org/ juin 4, 2022 @@ -236,11 +236,12 @@ Remplacer la frange et les pixels indésirables sélection et / ou masquer la ligne "fourmis rampantes" qui marque la sélection. - Use the clone tool and the brush tool. Vary the opacity as needed. Use - small round brushes mostly, perhaps 3x3 or 5x5, fuzzy or not. (It is - generally nice to pair up fuzzy brushes with 100% opacity and non-fuzzy - brushes with about 70% opacity.) Unusual drawing modes can be helpful with - semi-transparent objects. + Utilisez l'outil de clonage et l'outil de pinceau. Faites varier l'opacité + selon vos besoins. Utilisez principalement des petites brosses rondes, + peut-être de 3x3 ou 5x5, floues ou non. (Il est généralement agréable + d'associer des pinceaux flous 100 % opaques et des pinceaux non flous + environ 70 % opaques). On peut utiliser des modes de dessin inhabituels + avec des objets semi-transparents. Le but est de supprimer la frange de bord, à la fois à l'intérieur et à l'extérieur de l'objet. La frange intérieure, visible lorsque l'objet est @@ -270,14 +271,16 @@ Remplacer la frange et les pixels indésirables Sauvegarder l'image pour Tux Paint - It is very easy to ruin your hard work. Image editors can silently destroy - pixels in 0% opaque areas. The conditions under which this happens may vary - from version to version. If you are very trusting, you can try saving your - image directly as a PNG. Be sure to read it back in again to verify that - the 0% opaque areas didn't turn black or white, which would create fringes - when Tux Paint scales the image down. If you need to scale your image to - save space (and hide your mistakes), you are almost certain to destroy all - the 0% opaque areas. So here is a better way... + Il est très facile de gâcher votre travail, lui qui vous a demandé beaucoup + d'efforts. Les éditeurs d'images peuvent détruire silencieusement les + pixels dans les zones à 0% opacité . Les conditions dans lesquelles cela se + produit peuvent varier d'une version à l'autre. Si vous êtes très confiant, + vous pouvez essayer d'enregistrer votre image directement au format PNG. + Assurez-vous de le relire pour vérifier que les zones à 0% opacité ne + deviennent ni noires ni blanches, ce qui créerait des franges lorsque Tux + Paint réduira l'image. Si vous devez redimensionner votre image pour gagner + de la place (et cacher vos erreurs), vous êtes presque certain de détruire + toutes les zones à 0% opacité. Alors, voici une meilleure façon... Une façon sûre pour sauvegarder diff --git a/docs/fr_FR.UTF-8/ENVVARS.txt b/docs/fr_FR.UTF-8/ENVVARS.txt index 5da8f2c8c..7c095332d 100644 --- a/docs/fr_FR.UTF-8/ENVVARS.txt +++ b/docs/fr_FR.UTF-8/ENVVARS.txt @@ -2,7 +2,7 @@ version 0.9.31 Documentation sur les variables d'environnement - Copyright © 2021-2023 by divers contributeurs; see AUTHORS.txt. + Copyright © 2021-2023 by divers contributeurs; voir AUTHORS.txt. https://tuxpaint.org/ mai 5, 2023 @@ -99,11 +99,12 @@ SDL_VIDEO_ALLOW_SCREENSAVER SDL_VIDEO_WINDOW_POS - Requests where to position Tux Paint's window, and can be used to specify - what display to place a fullscreen Tux Paint in a multi-monitor - configuration. If not set, or set to "nopref" (meaning "no preference"), - Simple DirectMedia Layer (libSDL) decides. Can be set to an X,Y coordinate - (e.g. 200,100), or "center" (meaning "center"). + Demande où positionner la fenêntre de Tux Paint, ce qui peut être utilisé + pour spécifier où mettre Tux Paint en plein écran en configuration + multi-moniteurs. Si il n'y a rien, ou bien le réglage est mis à "nopref" + (ce qui signifie "pas de préférence"), Simple DirectMedia Layer (libSDL) + décide. Peut être réglé pour une coordonnée X,Y (par ex. 200,100), ou + "center" (ce qui signifie "centré"). diff --git a/docs/fr_FR.UTF-8/EXTENDING.txt b/docs/fr_FR.UTF-8/EXTENDING.txt index 8aea5d101..204c4f409 100644 --- a/docs/fr_FR.UTF-8/EXTENDING.txt +++ b/docs/fr_FR.UTF-8/EXTENDING.txt @@ -2,7 +2,7 @@ Tux Paint version 0.9.31 - Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt. + Copyright © 2002-2023 by divers contributeurs; voir AUTHORS.txt. https://tuxpaint.org/ mai 29, 2023 @@ -26,13 +26,13 @@ | * 'Images de démarrage' | | + Images de démarrage avec style 'livre de coloriage' | | + Images de démarrage avec 'style scénique' | -| + Starter Options | +| + Options d'image de démarrage | | * 'Modèles' | -| + Template Options | +| + Options des images Modèle | | * Traductions | | * Méthodes alternatives de saisie | | * Clavier virtuel sur écran | -| * Magic Tools | +| * Outils 'Magie' | +-------------------------------------------------------------+ Si vous souhaitez ajouter ou modifier des éléments tels que des pinceaux, des @@ -40,7 +40,8 @@ images de démarrage, des tampons en caoutchouc et d'autres contenus utilisés par Tux Paint , vous pouvez le faire assez facilement en ajoutant, modifiant ou supprimant simplement des fichiers là où Tux Paint les recherche. -💡 Note: You'll need to re-launch Tux Paint for the changes to take effect. +💡 Remarque : vous devrez redémarrer Tux Paint pour que les modifications +prennent effet. Où vont les fichiers @@ -210,8 +211,9 @@ Pinceaux animés Ajoutez une ligne contenant la ligne "frames=N" au fichier de données du pinceau, où"N" est le nombre d'images dans le pinceau. - ⚙ Note: If you'd rather the frames be flipped through randomly, rather than - sequentially, also add a line containing "random" to the brush's data file. + ⚙ Remarque : si vous préférez que les images apparaissent de manière + aléatoire plutôt que séquentielle, ajoutez en plus une ligne contenant " + random" au fichier de données du pinceau. @@ -260,9 +262,10 @@ Pinceaux animés orientables ou tournants Placez les PNG de l'image du pinceau (et tous les fichiers texte de données) dans le répertoire "brushes". -💡 Note: If your new pinceaux all come out as solid squares or rectangles, it's -because you forgot to use alpha transparency! See the 'PNG documentation' in -Tux Paint for more information and tips. +💡 Remarque : si vos nouveaux pinceaux se présentent tous sous forme de carrés +ou de rectangles pleins, c'est que vous avez oublié d'utiliser la transparence +alpha ! Consultez le fichier de documentation "PNG" pour plus d'informations et +de conseils. Tampons @@ -291,14 +294,16 @@ l'utilisateur d'ajuster le tampon vers le haut (plus grand) et vers le bas Les SVG sont basés sur des vecteurs et seront mis à l'échelle de manière adéquate pour le canevas utilisé. -💡 Note: If your new des tampons basés sur PNG all come out as solid squares or -rectangles, it's because you forgot to use alpha transparency! See the 'PNG -documentation' in Tux Paint for more information and tips. +💡 Remarque : si vos nouveaux des tampons basés sur PNG se présentent tous sous +forme de carrés ou de rectangles pleins, c'est que vous avez oublié d'utiliser +la transparence alpha ! Consultez le fichier de documentation "PNG" pour plus +d'informations et de conseils. -💡 Note: If your new SVG stamps seem to have a lot of whitespace, make sure the -SVG 'document' is no larger than the shape(s) within. If they are being -clipped, make sure the 'document' is large enough to contain the shape(s). See -the 'SVG documentation' in Tux Paint for more information and tips. +💡 Remarque : si vos nouveaux tampons SVG semblent avoir beaucoup de zones +vides, assurez-vous que le «document» SVG n'est pas plus grand que la ou les +formes qu'il contient. S'ils sont coupés, assurez-vous que le «document» est +suffisamment grand pour contenir la ou les formes. Voir le fichier de +documentation " SVG" pour plus d'informations et de conseils. ⚙ Utilisateurs avancés : Le HOWTO Advanced Stamps décrit, en détail, comment créer des images PNG qui seront parfaitement mises à l'échelle lorsqu'elles @@ -372,32 +377,33 @@ Support pour la régionalisation -💡 Note: Also consider using descriptive sounds; see 'Son descriptif du tampon', -below. +💡 Remarque : Pensez à utiliser les descriptions sonores; voir 'Son descriptif +du tampon' ci-dessous. Son descriptif du tampon -Tux Paint peut également jouer un son descriptif quand on choisit un tampon. -Par ex., une personne disant le mot "canard" quand on choisit un canard, ou le -nom d'un instrument de musique quand on en choisit un. Les fichiers peuvent -être au format "WAVE (".wav")" ou "OGG Vorbis (".ogg")", et on le même nom que -l'image PNG ou SVG, avec "_desc" à la fin (par ex., le son descritid de -"stamp.svg" est le fichier son "stamp_desc.ogg" dans le même répertoire). +Tux Paint peut également émettre une description sonore quand on choisit un +tampon. Par ex., une personne disant le mot "canard" quand on choisit un +canard, ou le nom d'un instrument de musique quand on en choisit un. Les +fichiers peuvent être au format "WAVE (".wav")" ou "OGG Vorbis (".ogg")", et on +le même nom que l'image PNG ou SVG, avec "_desc" à la fin (par ex., le son +descritid de "stamp.svg" est le fichier son "stamp_desc.ogg" dans le même +répertoire). Support pour la régionalisation - Pour les descriptions dans différentes langues, créez également des + Pour les descriptions sonores dans différentes langues, créez également des fichiers WAV ou OGG avec à la fois "_desc" et le libellé des paramètres régionaux dans le nom de fichier, sous la forme : "stamp_desc_LOCALE.EXT" - L'son descriptif qui sera joué lorsque le tampon correspondant au fichier - image "stamp.png" est choisi, et que Tux Paint utilise la langue espagnole, - sera "stamp_desc_es.wav". Avec la langue française, ce sera + L'description sonore qui sera joué lorsque le tampon correspondant au + fichier image "stamp.png" est choisi, et que Tux Paint utilise la langue + espagnole, sera "stamp_desc_es.wav". Avec la langue française, ce sera "stamp_desc_fr.wav". Avec le portugais brésilien, "stamp_desc_pt_BR.wav", etc ... - Si aucun son descriptif localisé ne peut être chargé, Tux Paint tentera de - charger le fichier son «par défaut». (par exemple, "stamp_desc.wav") + Si aucun description sonore localisé ne peut être chargé, Tux Paint tentera + de charger le fichier son «par défaut». (par exemple, "stamp_desc.wav") @@ -554,9 +560,9 @@ Depuis Tux Paint 0.9.18, vous pouvez également fournir une image pré-retourné avec "_flip" dans le nom, et / ou une image qui est à la fois en miroir et retournée, en la nommant " _mirror_flip". -💡 Note: If the user flips and mirrors an image, and a pre-drawn "_mirror_flip" -doesn't exist, but either "_flip" or "_mirror" does, it will be used, and -mirrored or flipped, respectively. +💡 Remarque : Si l'utilisateur retourne et reflète une image, et qu'un +"_mirror_flip" pré-dessiné n'existe pas, mais que "_flip" ou "_mirror" existe , +il sera utilisé, et reflété ou retourné, selon le cas. Polices @@ -628,18 +634,19 @@ Placez-les dans le répertoire "starters". Lorsque la boîte de dialogue «Nouveau» est accessible dans Tux Paint , les images de démarrage apparaîtront avec l'écran qui apparaît, suivant les différents choix de couleurs unies. -💡 Note: 'Images de démarrage' are 'attached' to saved pictures, via a small -text file that has the same name as the saved file, but with ".dat" as the -extension. This allows it to continue to affect the drawing even after Tux -Paint has been quit, or another picture is loaded or a new image is created. -(In other words, if you base a drawing on a image de démarrage, it will always -be affected by it.) +💡 Remarque :'Images de démarrage' sont 'attachés' aux images sauvegardées, via +un petit fichier texte qui a le même nom que le fichier sauvegardé, mais avec +".dat" comme extension. Ceci permet de continuer de s'occuper du dessin, mais +après avoir quitté Tux Paint, oi bien une autre image a été chargée, ou bien +une nouvelle image a été créée (En d'autres termes, si vous basez un dessin sur +un image de démarrage, il sera toujours changé par lui). -Starter Options +Options d'image de démarrage -Outre une an image, les starters peuvent également recevoir d'autres attributs. -Pour ce faire, vous devez créer un «fichier de données» pour starter. (Note: -Tux Paint prior to version 0.9.29 did not support starter options.) +Outre une une image, les 'Images de démarrage' peuvent également recevoir +d'autres attributs. Pour ce faire, vous devez créer un «fichier de données» +pour image de 'Départ'. (Note : Tux Paint avant la version 0.9.29 ne supporte +pas options de démarrage.) Un fichier de données de starter's est simplement un fichier texte ASCII contenant les options pour le starter. @@ -650,35 +657,37 @@ qui se trouve dans le même répertoire.) allowscale - When a starter image is a different aspect ratio (width-to-height - proportions) than Tux Paint's canvas, by default it will be scaled to fit - entirely within the canvas, without stretching the starter (changing its - aspect ratio); for example, a square starter on a portrait-shaped canvas - will be placed in the center of the canvas. By default, Tux Paint will then - take the strip of pixels at the edges of the starter and stretch them to - the edges of the canvas, "smearing" it. + Quand une image de démarrage a un ratio d'aspect (proportion largeur/ + hauteur) différent de celui du canevas de Tux Paint, elle sera dimensionnée + pour remplir entièrement le canevas sans l'étirer (en changeant le ratio + d'aspect); par exemple une image carrée sur un canevas de format portrait + sera placée au centre de ce canevas. Par défaur, Tux Paint prend la bande + de pixels aux bords de l'image et l'étend jusqu'aux bords du canevas, en + "l'étalant". - If it's acceptable for the starter image to be cropped in one or both - directions, the "allowscale" may be used to tell Tux Paint which behavior - to allow: + Si l'image de démarrage peut être rognée dans une ou les deux directions, " + allowscale" peut être utilisé pour dire à Tux Paint quel comportement est + permis : - + For starters where it's alright to crop the left and right edges, but - the top and bottom edges must be retained, use "allowscale=horizontal". - o If the starter's aspect ratio is wider than that of the canvas, it - will be scaled to fit the height of the canvas, and the left and - right will be cropped. - o If the starter's aspect ratio is taller than that of the canvas, it - will be scaled to fit the height of the canvas, and no cropping - will occur, and the left and right edges will be smeared. + + Pour les images pour lesquelles c'est d'accord pour rogner les bords + gauche et droite, mais les bords haut et bas doivent être conservés, + utilisez "allowscale=horizontal". + o If the starter's aspect ratio is plus large than that of the + canvas, it will be scaled to fit the height of the canvas, and the + gauche et droite will be cropped. + o If the starter's aspect ratio is plus haut than that of the canvas, + it will be scaled to fit the height of the canvas, and no cropping + will occur, and the gauche et droite edges will be smeared. - + For starters where it's alright to crop the top and bottom edges, but - the left and right edges must be retained, use "allowscale=vertical". - o If the starter's aspect ratio is taller than that of the canvas, it - will be scaled to fit the width of the canvas, and the top and - bottom will be cropped. - o If the starter's aspect ratio is wider than that of the canvas, it - will be scaled to fit the width of the canvas, and no cropping will - occur, and the top and bottom edges will be smeared. + + Pour les images pour lesquelles c'est d'accord pour rogner les bords + haut et bas, mais les bords gauche et droite doivent être conservés, + utilisez "allowscale=vertical". + o If the starter's aspect ratio is plus haut than that of the canvas, + it will be scaled to fit the largeur of the canvas, and the haut et + bas will be cropped. + o If the starter's aspect ratio is plus large than that of the + canvas, it will be scaled to fit the largeur of the canvas, and no + cropping will occur, and the haut et bas edges will be smeared. + If it's acceptable to crop either the top and bottom or the left and right, use "allowscale=both". Contents from starter will always fill @@ -688,7 +697,7 @@ allowscale explicitly with "allowscale=none". -background +arrière-plan This option allows you to specify how Tux Paint should fill the rest of the canvas, when the starter does not fit in one or the other direction. By @@ -708,7 +717,7 @@ background -gravity +gravité This option allows you to specify how Tux Paint should position a starter, when it is being cropped in one or the other direction. By default, Tux @@ -719,48 +728,48 @@ gravity content, you can specify "gravity=top". Or, if the bottom right is important, specify "gravity=bottom-right". - The available options are: - + center — prefer the center (the default) - + top — prefer the top center - + bottom — prefer the bottom center - + left — prefer the left center - + right — prefer the right center - + top-left — prefer the top left - + top-right — prefer the top right - + bottom-left — prefer the bottom left - + bottom-right — prefer the bottom right + Options disponibles : + + center — formes à partir du centre (par défaut) + + top — formes à partir du centre en haut + + bottom — formes à partir du centre en bas + + left — préférer le centre gauche + + right — préférer le centre droit + + top-left — préférer en haut à gauche + + top-right — préférer en haut à droite + + bottom-left — préférer en bas à gauche + + bottom-right — préférer en bas à droite [ Landscape-shaped image of a horizon with the sun in the middle and a building on the right. ] - Focusing on the center of a starter image stretched to fit the width of the - canvas. + Focusing on the centre of a starter image stretched to fit the largeur of + the canvas. [ Portrait-shaped image of a horizon with the sun in the middle and the left side of building on the right. ] - Focusing on the center of a starter image stretched to fit the height of + Focusing on the centre of a starter image stretched to fit the height of the canvas. [ Landscape-shaped image of the sky with the sun at the bottom and the top of building on the right. ] - Focusing on the top of a starter image stretched to fit the width of the + Focusing on the haut of a starter image stretched to fit the largeur of the canvas. [ Landscape-shaped image of the ground with the sun at the top. ] - Focusing on the bottom of a starter image stretched to fit the width of the + Focusing on the bas of a starter image stretched to fit the largeur of the canvas. [ Portrait-shaped image of a horizon with the sun on the left and a building in the center. ] - Focusing on the right of a starter image stretched to fit the height of the + Focusing on the droit of a starter image stretched to fit the height of the canvas. @@ -802,30 +811,34 @@ Placez-les dans le répertoire "templates". Lorsque la boîte de dialogue «Nouveau» est accessible dans Tux Paint , les images 'modèle' apparaîtront avec l'écran qui apparaît, suivant les différents choix de couleurs unies. -💡 Note: 'Modèles' are 'attached' to saved pictures, via a small text file that -has the same name as the saved file, but with ".dat" as the extension. This -allows it to continue to affect the drawing even after Tux Paint has been quit, -or another picture is loaded or a new image is created. (In other words, if you -base a drawing on a image 'modèle', it will always be affected by it.) +💡 Remarque :'Modèles' sont 'attachés' aux images sauvegardées, via un petit +fichier texte qui a le même nom que le fichier sauvegardé, mais avec ".dat" +comme extension. Ceci permet de continuer de s'occuper du dessin, mais après +avoir quitté Tux Paint, oi bien une autre image a été chargée, ou bien une +nouvelle image a été créée (En d'autres termes, si vous basez un dessin sur un +image 'modèle', il sera toujours changé par lui). -Template Options +Options des images Modèle Like 'Starters', a configuration file may be specified that defines how Tux Paint should behave when applying 'template' images to the canvas when they do not have identical proportions (aspect ratio). See "Starter Options", above. -(Note: Tux Paint prior to version 0.9.29 did not support starter options.) +(Note : Tux Paint avant la version 0.9.29 ne supporte pas options de +démarrage.) 💡 It's also possible to create basic Templates (with no options) from existing saved drawings directly within Tux Paint, from the "Open" dialog. They will be -placed in the user's personal templates folder. (Note: Tux Paint prior to -version 0.9.31 did not support Template creation from the Open dialog.) +placed in the user's personal templates folder. (Note : Tux Paint avant la +version 0.9.31 ne supporte pas Création de Modèle depuis la boîte de dialogue +Ouvrir.) Traductions -Tux Paint supports numerous languages, thanks to use of the "gettext" -localization library. (See the "Languages" section of "Options documentation" -for how to change locales in Tux Paint.) +Tux Paint supporte de nombreux langages, grâce à l'utilisation de la +bibliothèque de localisation "gettext". (Voir la section "Langages" de la +"documentation Options " pour savoir comment changer les paramètres régionaux +dans Tux Paint .) Pour traduire Tux Paint dans une nouvelle langue, copiez le fichier de modèle de traduction, "tuxpaint.pot" (trouvé avec le code source de Tux Paint , dans @@ -858,12 +871,12 @@ quelques uns : * Virtraal * Lokalize -💡 Note: It is best to always work off of the latest Tux Paint text catalog -template ("tuxpaint.pot"), since new text is added, and old text is -occasionally changed. The text catalog for the upcoming, unreleased version of -Tux Paint can be found in Tux Paint's Git repository (see: https://tuxpaint.org -/download/source/git/), and on the Tux Paint website at https://tuxpaint.org/ -help/po/. +💡 Remarque : Il est préférable de toujours travailler avec le dernier modèle de +catalogue de texte Tux Paint ("tuxpaint.pot"), car si nouveau texte est ajouté +et l'ancien texte peut être parfois modifié. Le catalogue de textes de la +prochaine version inédite de Tux Paint se trouve dans le référentiel Git de Tux +Paint (voir : https://tuxpaint.org/download/source/git/ ), et sur le site Web +de Tux Paint à https://tuxpaint.org/help/po/. Pour modifier une traduction existante, téléchargez le dernier fichier ".po" pour cette langue et modifiez-le comme décrit ci-dessus. @@ -878,10 +891,10 @@ Autrement, si vous avez un compte chez SourceForge.net , vous pouvez demander à de code source Git afin que vous puissiez valider vos modifications directement. -💡 Note: Support for new locales requires making additions to Tux Paint's source -code ("/src/i18n.h" et "/src/i18n.c"), and requires updates to the Makefile, -pour s'assurer que les fichiers ".po" sont compilés en fichiers ".mo", et -utilisables pendant l'exécution. +💡 Remarque : La prise en charge de nouveaux locales nécessite des ajouts au +code source de Tux Paint ( "/src/i18n.h" et "/src/i18n.c"), et nécessite des +mises à jour de Makefile, pour s'assurer que les fichiers ".po" sont compilés +en fichiers ".mo", et utilisables pendant l'exécution. Méthodes alternatives de saisie @@ -932,18 +945,19 @@ Exemple : 30AD ki - 30AE gi - -⚙ Note: Blank lines within the ".im" file will be ignored, as will any text -following a "#" (pound/hash) character — it can be used to denote comments, as -seen in the example above. +⚙ RemarqueLes lignes vides du fichier ".im" sont ignorées, aussi bien que les +lignes commençant par le caractère "#" ( livre/dièse)-- on peut l'utiliser pour +ajouter des commentaires, comme dans l'exemple ci-dessus. -💡 Note: Meanings of the flags are locale-specific, and are processed by the -language-specific source code in "src/im.c". For example, "b" is used in Korean -to handle Batchim, which may carry over to the next character. +💡 Remarque : Les significations des indicateurs sont spécifiques à la langue et +sont traitées par le code source spécifique à la langue dans "src/im.c". Par +exemple, "b" est utilisé en coréen pour gérer Batchim, qui peut être reporté au +caractère suivant. -💡 Note: Support for new méthodes de saisie requires making additions to Tux -Paint's source code ("/src/im.c"), and requires updates to the Makefile, pour -s'assurer que les fichiers ".im" sont disponibles pour être utilisés lors de -l'exécution du programme. +💡 Remarque : La prise en charge de nouveaux méthodes de saisie nécessite des +ajouts au code source de Tux Paint ( "/src/im.c"), et nécessite des mises à +jour de Makefile, pour s'assurer que les fichiers ".im" sont disponibles pour +être utilisés lors de l'exécution du programme. Clavier virtuel sur écran @@ -968,9 +982,9 @@ décrire l'agencement et la disposition des touches. keysymdefs keysymdef.h keyboardlist qwerty.layout default.layout -⚙ Note: Blank lines within the ".layout" file will be ignored, as will any text -following a "#" (pound/hash) character — it can be used to denote comments, as -seen in the example above. +⚙ RemarqueLes lignes vides du fichier ".layout" sont ignorées, aussi bien que +les lignes commençant par le caractère "#" ( livre/dièse)-- on peut l'utiliser +pour ajouter des commentaires, comme dans l'exemple ci-dessus. La ligne "keyboardlist" décrit les dispositions vers lesquelles on bascule lorsque l'utilisateur clique sur les boutons gauche et droit du clavier. (Voir @@ -1103,12 +1117,12 @@ provient également du système X Window . Il définit les valeurs Unicode de chaque keycap (par exemple, "XK_equal" correspond à "U+003D", pour le caractère "=" ("EQUALS SIGN"). -💡 Note: This file is not compiled into Tux Paint, but is read and parsed at -runtime. +💡 Remarque : Ce fichier n'est pas compilé avec Tux Paint, mais il est lu et +analysé durant l'exécution de celui-ci. Il est peu probable qu'une modification de ce fichier soit requise. -Magic Tools +Outils 'Magie' Tux Paint's Magic tools are pieces of software, external to the main Tux Paint application, that are loaded as "plugins" at runtime, and interact with the diff --git a/docs/fr_FR.UTF-8/FAQ.txt b/docs/fr_FR.UTF-8/FAQ.txt index 93ea007f6..d08bed74a 100644 --- a/docs/fr_FR.UTF-8/FAQ.txt +++ b/docs/fr_FR.UTF-8/FAQ.txt @@ -1,7 +1,7 @@ Tux Paint version 0.9.31 Questions fréquemment posées - Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt. + Copyright © 2002-2023 by divers contributeurs; voir AUTHORS.txt. https://tuxpaint.org/ juillet 20, 2023 @@ -16,7 +16,7 @@ | * Sauvegarde | | * Problèmes audio | | * Problèmes en mode plein écran | -| * Other Problems | +| * Autres problèmes | | * Aide / Contact | +-----------------------------------+ ------------------------------------------------------------------------------- @@ -503,7 +503,7 @@ Tux Paint continue de fonctionner en mode plein écran - je veux qu'il soit ------------------------------------------------------------------------------- -Other Problems +Autres problèmes Tux Paint ne veut pas fonctionner diff --git a/docs/fr_FR.UTF-8/INSTALL.txt b/docs/fr_FR.UTF-8/INSTALL.txt index fc602a5a2..027f203f5 100644 --- a/docs/fr_FR.UTF-8/INSTALL.txt +++ b/docs/fr_FR.UTF-8/INSTALL.txt @@ -2,7 +2,7 @@ version 0.9.31 Documentation sur l'installation - Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt. + Copyright © 2002-2023 by divers contributeurs; voir AUTHORS.txt. https://tuxpaint.org/ mai 13, 2023 @@ -34,10 +34,11 @@ Tux Paint nécessite la bibliothèque de couches DirectMedia simple (libSDL), un bibliothèque de programmation multimédia Open Source disponible sous la Licence publique générale limitée GNU (LGPL). -Along with libSDL, Tux Paint depends on a number of other SDL 'helper' -libraries: SDL_Image (for graphics files), SDL_gfx (for some graphical -functions, like rotation), SDL_TTF and SDL2_Pango (for True Type Font support) -and, optionally, SDL_Mixer (for sound effects). +Avec libSDL, Tux Paint dépend d'un certain nombre d'autres bibliothèques +'d'aide' SDL : SDL_Image (pour les fichiers graphiques), SDL_gfx (pour +certaines fonctions graphiques, comme la rotation), SDL_TTF et SDL_Pango (pour +la prise en charge des polices True Type) et, éventuellement, SDL_Mixer (pour +les effets sonores). Les bibliothèques SDL sont disponibles en tant que code source, ou en tant que paquets RPM ou Debian pour diverses distributions de Linux. Ils peuvent être @@ -55,9 +56,9 @@ Elles sont aussi parmi les paquets inclus dans votre distribution (par ex. sur le media d'installation, ou via la maintenance de vos logiciels comme la commande apt de Debian). -💡 Note: When installing libraries from packages, be sure to ALSO install the -development versions of the packages. (For example, install both -"SDL2-2.24.0.rpm" and "SDL2-devel-2.24.0.rpm".) +💡 Remarque :Lors de l'installation à partir de paquets, assurez-vous +d'installer AUSSI les versions de développement des paquets (Par ex. installez +les deux "SDL2-2.24.0.rpm" et "SDL2-2.24.0-devel.rpm".) Autres bibliothèques @@ -137,7 +138,7 @@ Fonction d'exportation de GIF animés -Outils NetPBM (optionnel) ne sont plus utilisés par défaut +Outils NetPBM (optionnel) Ne sont plus utilisés par défaut 📜 Sous Linux et Unix, les anciennes versions de Tux Paint utilisaient les outils NetPBM comme aide à l'impression. (Un PNG est généré par TuxPaint et @@ -176,14 +177,14 @@ MYSYS2 Téléchargez le dernier environnement MSYS2 à partir de https://www.msys2.org/ et installez-le où vous voulez (par défaut "C:\msys64") -Open the MSYS2 shell from the "Start Menu" → "MSYS2 64bit" → "MSYS2 MSYS" and -execute following command: +Ouvrez le shell MSYS2 via le "Menu de Démarrage" →;"MSYS2 64bit" -→ "MSTS2 +MSYS" et exécutez la commande suivante : $ yes "" | pacman -Syu -This will update core system and the window will close automatically. Open the -msys2 shell again and execute following command to finish remaining updating -process. +Ceci mettra à jour tout le système et la fenêtre se fermera automatiquement. +Ouvrez le shell msys2 de nouveau et exécutez la commande suivante pour +finaliser le process restant de mise à jour. $ yes "" | pacman -Syu @@ -199,10 +200,10 @@ environnement de travail 32bit. ----------------------------------------------------------- -MinGW 64bit (x86_64) compiler and tools +Compilateur MinGW 64bit (x86_64) et outils -Sous le shell MSYS2, exécutez la commande suivante pour installer 64bit -compiler and basic development tools : +Sous le shell MSYS2, exécutez la commande suivante pour installer compilateur +64bit et outils basiques de développement : $ yes "" | pacman -S mingw-w64-x86_64-{gcc,pkgconf,ntldd-git} @@ -211,7 +212,7 @@ vue de lister les fichiers DLL (.dll) qui leur sont nécessaires. Le process de fabrication de Tux Paint pour fournir des fichiers binaires s'en sert pour trouver les fichiers .dll requis. -64bit (x86_64) dependency libraries for Tux Paint and Tux Paint Config +bibliothèques de dépendance 64bit (x86_64) pour Tux Paint et Tux Paint Config You can install tools and libraries required for compiling Tux Paint and Tux Paint Config on MSYS2/MINGW using "pacman" except for SDL2_Pango and @@ -258,10 +259,10 @@ environnement de travail 64bit. ----------------------------------------------------------- -MinGW 32bit (i686) compiler and tools +Compilateur MinGW 32bit (i686) et outils -Sous le shell MSYS2, exécutez la commande suivante pour installer 32bit -compiler and basic development tools : +Sous le shell MSYS2, exécutez la commande suivante pour installer compilateur +32bit et outils basiques de développement : $ yes "" | pacman -S mingw-w64-i686-{gcc,pkgconf,ntldd-git} @@ -270,7 +271,7 @@ vue de lister les fichiers DLL (.dll) qui leur sont nécessaires. Le process de fabrication de Tux Paint pour fournir des fichiers binaires s'en sert pour trouver les fichiers .dll requis. -32bit (i686) dependency libraries for Tux Paint and Tux Paint Config +bibliothèques de dépendance 32bit (i686) pour Tux Paint et Tux Paint Config You can install tools and libraries required for compiling Tux Paint and Tux Paint Config on MSYS2/MINGW using "pacman" except for SDL2_Pango and @@ -353,21 +354,22 @@ want to have it included in your package. You can use either (a) a stable tar-ball release, or (b) the developing source tree. - a. Using stable tar-ball release: - + Download a source tar-ball + a. Utiliser une version tar-ball stable : + + Télécharger l'ensemble des fichiers sources + Expand the tar-ball and change the directory name so that the final packaging process can find related files. $ tar zxvf tuxpaint-config-A.B.C.tar.gz $ mv tuxpaint-config-A.B.C tuxpaint-config - b. Using the developing source tree: - + Fetch the developing source tree from git repository: + b. Utiliser l'arborescence source en développement : + + Aller chercher l'arborescence source en développement via le dépôt git + : $ git clone https://git.code.sf.net/p/tuxpaint/tuxpaint-config tuxpaint-config -Now you can build Tux Paint Config. as follows: +Maintenant vous pouvez faire Tux Paint Config. comme suit : $ cd tuxpaint-config $ make win32 @@ -377,20 +379,21 @@ Tux Paint You can use either (a) a stable tar-ball release, or (b) the developing source tree. - a. Using stable tar-ball release: - + Download a source tar-ball + a. Utiliser une version tar-ball stable : + + Télécharger l'ensemble des fichiers sources + Expand the tar-ball and change the directory name so that the final packaging process can find related files. $ tar zxvf tuxpaint-A.B.C.tar.gz $ mv tuxpaint-A.B.C tuxpaint - b. Using the developing source tree: - + Fetch the developing source tree from git repository: + b. Utiliser l'arborescence source en développement : + + Aller chercher l'arborescence source en développement via le dépôt git + : $ git clone https://git.code.sf.net/p/tuxpaint/tuxpaint tuxpaint -Now you can build Tux Paint as follows: +Maintenant vous pouvez faire Tux Paint comme suit : $ cd tuxpaint $ make bdist-win32 @@ -400,7 +403,7 @@ sont rassemblés dans le répertoire de la distribution binaire "bdist", répertoire situé sous "win323. Vous pouvez les démarrer en double-cliquant leurs fichiers exéctutables (.exe) dans le répertoire "bdist". -Building the Tux Paint Windows Installer +Construire l'installateur de Tux Paint sous Windows Inno Setup est utilisé pour construire l'installeur exécutable de Tux Paint. Vous devez donc l'installer en premier. @@ -414,9 +417,9 @@ Translations". Vous devez télécharger les fichiers de traduction (.isl) qui sont requis et les mettre dans le répertoire "Languages" sous le répertoire dans lequel Inno Setup est installé. -Before building an installer, edit the "tuxpaint.iss" file and enable one of -the lines starting with "#define BuildTarget=", depending on the architecture -of the installer you want to create. +Avant de construire un programme d'installation, éditez le fichier +"tuxpaint.iss" et activez l'une des lignes commençant par "#define BuildTarget= +", en fonction de l'architecture du programme que vous voulez créer. Alors, vous pouvez facilement construire un installateur exécutable en cliquant-droit sur l'icône "tuxpaint.iss" du répertoires "win32" et @@ -424,7 +427,7 @@ sélectionner "Compile" dans la liste. Cela prendra un certain temps, et éventuellement vous obtiendrez un fichier "tuxpaint-X.Y.Z-windows-$ macos/build-universal.sh
- $ codesign -s - TuxPaint.app
$ make TuxPaint.dmg-installer.exe" dans le même répertoire. -Running the Tux Paint Windows Installer +Utiliser l'installateur de Tux Paint sous Windows Double-cliquez sur l'exécutable du programme d'installation de Tux Paint (fichier .EXE) et suivez les instructions. @@ -442,7 +445,7 @@ choisissez un autre emplacement. À ce stade, vous pouvez cliquer sur «Installer» pour installer Tux Paint ! -Changing the Settings Using the Shortcut +Modification des paramètres à l'aide du raccourci Pour modifier les paramètres du programme, cliquez avec le bouton droit sur le raccourci TuxPaint et sélectionnez «Propriétés» (en bas). @@ -471,7 +474,7 @@ aucune modification (sauf si vous avez appuyé sur le bouton "Appliquer" !). Quand vous avez fini, appuyez sur "OK". -If Something Goes Wrong +Si quelque chose ne va pas If, when you double-click on the shortcut to run Tux Paint, nothing happens, it is probably because some of these command-line options are wrong. Open an @@ -506,7 +509,7 @@ exécuter "make" avec "SVG_LIB= SVG_CFLAGS= NOSVGFLAG=NOSVG" : $ make SVG_LIB= SVG_CFLAGS= -Disabling Sound at Compile-time +Désactiver le son lors de la compilation Si vous n'avez pas de carte son ou si vous préférez créer le programme sans support sonore (et donc sans dépendance SDL_mixer), vous pouvez exécuter "make" @@ -514,12 +517,12 @@ avec "SDL_MIXER_LIB=" comme paramètre : $ make SDL_MIXER_LIB= -Other options +Autres options Diverses autres options (par exemple, les dossiers d'installation) peuvent être remplacées; voir dans "Makefile" pour plus de détails. -If you get errors +Si vous obtenez des erreurs Si vous avez des erreurs lors de la compilation, assurez-vous d'avoir les bibliothèques adéquates installées (voir ci-dessus). Si vous utilisez les @@ -528,7 +531,7 @@ ou les DEB sous Debian), assurez-vous d'avoir choisi également les packages "-dev" ou "-devel" correspondants, sinon vous ne pourrez pas compiler Tux Paint (et d'autres programmes) provenant des sources ! -Installng +Installation En supposant qu'aucune erreur fatale ne se soit produite, vous pouvez maintenant installer le programme afin qu'il puisse être exécuté par les @@ -677,11 +680,11 @@ Tapez simplement : % make install ... to create the TuxPaint.app application bundle that can be run in-place or -copied to /Applications. To create the DMG file for distribution, use 'make -TuxPaint.dmg'. +copied to /Applications. Pour créer le fichier DMG pour la distribution, faites +'make TuxPaint.dmg'. -Additional steps may be required when building for the Apple Silicon. See -"Building for Apple Silicon" below. +Additional steps are required when building a Unviersal Binary. See "Building a +Universal Binary" below. Problèmes connus @@ -744,7 +747,7 @@ d'installation des outils de commande en terminal (ne pas exécuter "xcode-select --install") mais alors vous compilez Tux Paint en utilisant les mêmes étapes décrites auparavant dans ce document. -Recompiling MacPorts +Recompiler MacPorts To recompile MacPorts to be usable on older versions of macOS, set the following options in /opt/local/etc/macports/macports.conf: @@ -752,7 +755,7 @@ following options in /opt/local/etc/macports/macports.conf: buildfromsource always macosx_deployment_target 10.10 -Then uninstall all MacPorts packages: +Ensuite désinstaller tous les paquets MacPorts : $ sudo port -fp uninstall installed @@ -768,49 +771,16 @@ they can only be built to run natively on the hardware on which they were built. See "Building a Universal Binary" below for instructions on how to build Tux Paint as a Universal Binary. -Building for Apple Silicon - -macOS for Apple Silicon requires all native Apple Silicon applications be -signed, even if it is signed "ad-hoc" (anonymously). Because of this, compilers -that produce native Apple Silicon applications sign all produced binaries and -libraries as a part of the compilation process.^* However, the Tux Paint -compilation process modifies the libraries to be modular (using -install_name_tool) so they can be added into the application bundle, which has -the unfortunate side effect of breaking the signature. This can be addressed by -signing the application bundle ad-hoc (example below) or using your own Apple -Developer Identity if you have one. The DMG file, if needed, must be created -after signing the App Bundle so the DMG file is created with signed App Bundle: - - $ codesign -s - TuxPaint.app - $ make TuxPaint.dmg - -^* For more information on the code signing requirements on the Apple Silicon, -see https://developer.apple.com/documentation/macos-release-notes/ -macos-big-sur-11_0_1-universal-apps-release-notes#:~:text= -New%20in%20macOS,pass%20through%20Gatekeeper. - -If you get an error that the application bundle is already signed, remove it -before signing: - - $ codesign --remove-signature TuxPaint.app - -If you plan to combine the Apple Silicon bundle with the Intel CPU bundle to -produce the Universal bundle, the code signing must be done after they are -combined. See "Building a Universal Binary" below. - -Building a Universal Binary +Créer un Binaire Universel To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the provided build-universal.sh script to combine the -two application bundles as below. The produced bundle must be signed (see -"Building for Apple Silicon" above for more details). The DMG file, if -required, must be built after the signing: +two application bundles as below. The DMG file can be built afterwards: $ macos/build-universal.sh - $ codesign -s - TuxPaint.app $ make TuxPaint.dmg ----------------------------------------------------------------------- @@ -826,7 +796,7 @@ Detailed instructions are there; this acts as an overview. Prérequis -You will need recent versions of: +Vous avez besoin des versions récentes de : * Gradle — build automation tool * Android Studio (Software Development Kit (SDK)) — to support Android app @@ -849,7 +819,7 @@ one another, and the script in the directory containing both. Fill the app/src/main/assets directory by running cd app/src/main/jni/tuxpaint && ./mkzip_assets.sh -Building +Construire The Gradle build generates some variants: PlayStore, debugPlayStore, offPlayStore and debugoffPlayStore. You must sign the non-debug ones to be able @@ -886,14 +856,14 @@ Prérequis Install the required develop packages in Terminal: -32-bit: +32-bit : pkgman install xcairo_x86_devel fribidi_x86_devel gdk_pixbuf_x86_devel libiconv_x86_devel libimagequant_x86_devel gettext_x86_libintl libpaper_x86_devel pango_x86_devel libpng16_x86_devel librsvg_x86_devel libsdl2_x86_devel sdl2_image_x86_devel sdl2_gfx_x86_devel sdl2_mixer_x86_devel sdl2_pango_x86_devel sdl2_ttf_x86_devel zlib_x86_devel -64-bit: +64-bit : pkgman install xcairo_devel fribidi_devel gdk_pixbuf_devel libiconv_devel libimagequant_devel gettext_libintl libpaper_devel pango_devel libpng16_devel librsvg_devel libsdl2_devel sdl2_image_devel sdl2_gfx_devel @@ -903,11 +873,11 @@ Install the required develop packages in Terminal: For 32-bit you need to switch to the new compiler (currently gcc 11.2.0) with setarch x86 -Building +Construire make PREFIX=/boot/home/config/non-packaged -Tux Paint Stamps +Tampons pour Tux Paint make install-all DATA_PREFIX=/boot/home/config/non-packaged/share/tuxpaint/ @@ -941,7 +911,7 @@ macOS Enlevez "TuxPaint.app" du dossier "Applications". Les fichiers de données les fichiers de configuration, les tampons et les images sauvegardées peuvent être -trouvées dans "/Library/Application Support/TuxPaint" (pour tous les +trouvées dans "/Bibliothèque/Support d'Application/Tux Paint" (pour tous les utilisateurs) et "/Users/USERNAME/Library/Application Support/TuxPaint" pour les utilisateurs individuels. diff --git a/docs/fr_FR.UTF-8/OPTIONS.txt b/docs/fr_FR.UTF-8/OPTIONS.txt index f54eef119..f1c6ee571 100644 --- a/docs/fr_FR.UTF-8/OPTIONS.txt +++ b/docs/fr_FR.UTF-8/OPTIONS.txt @@ -3,7 +3,7 @@ Documentation sur les options - Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt. + Copyright © 2002-2023 by divers contributeurs; voir AUTHORS.txt. https://tuxpaint.org/ juillet 20, 2023 @@ -54,9 +54,9 @@ dans votre répertoire personnel. (aka "~/.tuxpaintrc" ou "$HOME/.tuxpaintrc") Fichier de configuration pour l'ensemble du système -Before this file is read, a system-wide configuration file is read. (By -default, this configuration has no settings enabled.) It is normally located -at: +Avant la lecture de ce fichier, un fichier de configuration à l'échelle du +système est lu. (Par défaut, cette configuration n'a pas de paramètres +activés.) Il se trouve normalement ici : /etc/tuxpaint/tuxpaint.conf @@ -68,17 +68,17 @@ Support/TuxPaint Fichier de configuration pour l'ensemble du système -Before this file is read, a system-wide configuration file is read. (By -default, this configuration has no settings enabled.) It is normally located -at: +Avant la lecture de ce fichier, un fichier de configuration à l'échelle du +système est lu. (Par défaut, cette configuration n'a pas de paramètres +activés.) Il se trouve normalement ici : /Library/Application Support/TuxPaint/tuxpaint.cfg Utilisateurs de Windows -The file you should create is called "tuxpaint.cfg" and it should be placed in -in your personal AppData folder: C:\Users\nom d'utilisateur\AppData\Roaming\ -TuxPaint\ +Le fichier que vous devez créer s'appelle "tuxpaint.cfg" et doit être placé +dans votre dossier personnel AppData : C:\Users\nom d'utilisateur\AppData\ +Roaming\TuxPaint\ Vous pouvez utiliser NotePad ou WordPad pour créer ce fichier. Assurez-vous de l'enregistrer en tant que texte brut et assurez-vous que le nom de fichier ne @@ -86,15 +86,16 @@ contient pas ".txt" à la fin ... Fichier de configuration pour l'ensemble du système -Before this file is read, a system-wide configuration file is read. (By -default, this configuration has no settings enabled.) It is normally located -at: +Avant la lecture de ce fichier, un fichier de configuration à l'échelle du +système est lu. (Par défaut, cette configuration n'a pas de paramètres +activés.) Il se trouve normalement ici : C:\Program Files\Tuxpaint -⚙ You can disable reading of this file altogether, leaving the settings as -defaults (which can then be overridden by your personal config. file and/or -command-line arguments) by using the command-line option "--nosysconfig". +⚙ Vous pouvez désactiver complètement la lecture de ce fichier, en laissant les +paramètres par défaut (qui peuvent ensuite être remplacés par votre fichier +config personnel et / ou vos arguments de ligne de commande) en utilisant +l'option de ligne de commande "--nosysconfig". Options disponibles @@ -1540,7 +1541,7 @@ Boutons pour raccourcis joystick-btn-fill=BUTTON NUMBER Sélectionne le numéro du bouton du joystick, comme vu par SDL, qui sera - un raccourci pour sélectionner select the fill tool. + un raccourci pour sélectionner sélectionne l'outil de remplissage. @@ -1967,8 +1968,8 @@ Boutons pour raccourcis |------------------+------------------+----------------+------------------| | iu_CA | | Inuktitut | | |------------------+------------------+----------------+------------------| - | ja_JP (*) | | Japanese | right [Alt] or | - | | | | left [Alt] | + | ja_JP (*) | | Japanese | [Alt] droit ou | + | | | | [Alt] gauche | |------------------+------------------+----------------+------------------| | ka_GE | | Georgian | | |------------------+------------------+----------------+------------------| @@ -1978,8 +1979,8 @@ Boutons pour raccourcis |------------------+------------------+----------------+------------------| | kn_IN | | Kannada | | |------------------+------------------+----------------+------------------| - | ko_KR (*) | | Korean | right [Alt] or | - | | | | left [Alt] | + | ko_KR (*) | | Korean | [Alt] droit ou | + | | | | [Alt] gauche | |------------------+------------------+----------------+------------------| | kok_IN | | Konkani | | | | | (Devanagari) | | @@ -2139,10 +2140,10 @@ Boutons pour raccourcis représentées à l'aide d'un jeu de caractères latins, comme les autres. Consultez la section "Polices spéciales " ci-dessous. - 💡 Note: Tux Paint provides an alternative input method for entering - characters with the Text tool in some locales. The key comibation(s) listed - can be used to cycle through the supported input methods while the Text - tool is active. + 💡 Remarque : Tux Paint fournit une méthode de saisie alternative pour + saisir des caractères avec l' outil Texte avec certaines langues. Les + combinaisons de touches répertoriées peuvent être utilisées pour parcourir + les méthodes de saisie prises en charge lorsque l' outil Texte est actif. Définition des paramètres régionaux de votre environnement @@ -2163,12 +2164,14 @@ Boutons pour raccourcis utiliser sont activés en éditant le fichier "/etc/locale.gen" sur votre système, puis en exécutant le programme "locale-gen" en tant que root. - 💡 Note: Debian users may be able to simply run the command - "dpkg-reconfigure locales" as root to bring up a configuration dialog. - Ubuntu users may be able to run "sudo dpkg-reconfigure localeconf" (the - "localeconf" package may need to be installed first), or you may need to - edit the file "/var/lib/locales/supported.d/local" first, and add locales - they want, from the list found in "/usr/share/i18n/SUPPORTED". + 💡 Remarque : les utilisateurs Debian peuvent simplement exécuter la + commande "dpkg-reconfigure locales" en tant que root pour afficher une + boîte de dialogue de configuration. Les utilisateurs d'Ubuntu peuvent + exécuter "sudo dpkg-reconfigure localeconf" (le paquet "localeconf" peut + avoir besoin d'être installé en premier), ou bien peuvent avoir besoin + d'éditer le fichier "/var/lib/locales/supported.d/local" d'abord, et + d'ajouter les paramètres régionaux qu'ils veulent, à partir de la liste + trouvée dans "/usr/share/i18n/SUPPORTED". Ensuite, avant d'exécuter Tux Paint, définissez votre variable d'environnement "$LANG" sur l'un des paramètres régionaux répertoriés diff --git a/docs/fr_FR.UTF-8/PNG.txt b/docs/fr_FR.UTF-8/PNG.txt index 41a55c55c..03e70ecd9 100644 --- a/docs/fr_FR.UTF-8/PNG.txt +++ b/docs/fr_FR.UTF-8/PNG.txt @@ -2,7 +2,7 @@ version 0.9.31 Documentation sur PNG pour Tux Paint - Copyright © 2007-2022 by divers contributeurs; see AUTHORS.txt. + Copyright © 2007-2022 by divers contributeurs; voir AUTHORS.txt. https://tuxpaint.org/ juin 4, 2022 diff --git a/docs/fr_FR.UTF-8/README.txt b/docs/fr_FR.UTF-8/README.txt index d48dbb5af..612dfa2ac 100644 --- a/docs/fr_FR.UTF-8/README.txt +++ b/docs/fr_FR.UTF-8/README.txt @@ -3,7 +3,7 @@ Un programme simple pour les enfants - Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt. + Copyright © 2002-2023 by divers contributeurs; voir AUTHORS.txt. https://tuxpaint.org/ juillet 20, 2023 @@ -27,7 +27,7 @@ | g. Outil "Magie" (Effets spéciaux) | | h. Outil "Gomme" | | 2. Autres contrôles | -| a. "Undo" and "Redo" Commands | +| a. Commandes "Défaire" et "Refaire" | | b. Commande "Nouveau" | | c. Commande "Ouvrir" | | d. Commande "Sauvegarder" | @@ -35,7 +35,7 @@ | f. Commande "Diapos" (sous "Ouvrir") | | g. Commande "Quitter" | | h. Coupure du son | -| E. Controlling Tux Paint | +| E. Contrôle de Tux Paint | | III. Chargement d'autres images dans Tux Paint | | IV. Lectures complémentaires | | V. Comment obtenir de l'aide | @@ -53,7 +53,7 @@ encourager et guider les enfants lorsqu'ils utilisent le programme. Sont fournis une toile vierge et un ensemble d'outils de dessin pour aider votre enfant à être créatif. -B. Objectives +B. Objectifs Facile et amusant Tux Paint se veut un simple programme de dessin pour les jeunes enfants. Il @@ -101,12 +101,12 @@ logiciel sous GPL.) Voir COPYING.txt pour le texte complet de la licence GPL. -D. What's New in Tux Paint version 0.9.31? +D. Qu'y a-t-il de neuf dans la version 0.9.31 de Tux Paint ? Fuzzy Erasers Fuzzy-edged round erasers have been added to the Eraser tool -New Magic tools +Nouveaux outils Magie Loops, Ribbon, Smooth, and Squiggles Create templates from Open dialog @@ -120,20 +120,20 @@ User interface font may be overridden "uifont" configuration option. Use "--listfonts" to see a list of available fonts.) -File Erase may be disabled +L'effacement de fichier peut être désactivé Controls to erase saved work — saved drawings (via the Open dialog) and exported templates (via the New dialog) — can be disabled. (See the "noerase" configuration option.) -"Controlling Tux Paint" documentation +Documentation sur "Contrôler Tux Paint" A brief overview of how Tux Paint can be controlled — mouse, tablet, touchscreen, joystick, and keyboard — has been added to the README documentation. -See CHANGES.txt for the complete list of changes. +Voir CHANGES.txt pour la liste complète des changements. II. Utiliser Tux Paint @@ -141,8 +141,8 @@ A. Lancement de Tux Paint 1. Utilisateurs de Linux/Unix -Tux Paint should have placed a launcher icon in your KDE and/or GNOME menus, -under 'Graphics.' +Tux Paint devrait avoir mis une icône de lanceur dans vos menus KDE et/ou +GNOME, sous «Graphiques». Autrement, vous pouvez exécuter la commande suivante à une invite du shell (par exemple, "$") : @@ -238,12 +238,12 @@ En bas : couleurs as the color to use when flood-filling an area of the picture.) On the far right are three special color options: - + Color Picker - The "color picker" (which has an outline of an eye-dropper) allows you - to pick a color found within your drawing. + + Sélecteur de couleur + Le "sélecteur de couleurs" (qui ressemble à un compte-gouttes) vous + permet de choisir une couleur trouvée dans votre dessin. (A shortcut key is available to access this feature quickly; see below.) - + Rainbow Palette + + Palette de l'Arc-en-ciel The rainbow palette allows you to pick any color by choosing the hue, saturation, and value of the color you want. A box on the left displays hundreds of hues — from red at the top through to violet at the bottom @@ -255,9 +255,9 @@ En bas : couleurs button to dismiss the pop-up without picking a new color. You may also set this tool's color to that of other color choices: o Whichever built-in color is selected, if any - o The Color Picker's current color - o The Color Mixer's current color - + Color Mixer + o Couleur actuelle du Sélecteur de couleur + o Couleur actuelle du mélangeur de couleurs + + Mélangeur de couleurs The "color mixer" (which has silhouette of a paint palette) allows you to create colors by blending primary additive colors — red, yellow, and blue — along with white (to "tint"), grey (to "tone"), and black (to @@ -358,13 +358,13 @@ b.Outil "Tampon" (tampon de caoutchouc) showing where the stamp will be placed, and how big it will be. Click on the canvas where you wish to place the stamp. - Stamp Categories + Catégories de tampons Il peut y avoir de nombreuses catégories de timbres (par ex. animaux, plantes, espace extra-atmosphérique, véhicules, personnes, etc.). Utilisez les flèches gauche et droite pour parcourir les différentes collections. - Stamp Rotation + Rotation des tampons Using the rotation toggle button near the bottom right, you can enable a rotation step when placing stamps. Once you've placed the stamp, @@ -374,15 +374,15 @@ b.Outil "Tampon" (tampon de caoutchouc) ⚙ Note: If "stamp rotation" option is disabled, the stamp will be drawn on the canvas when you let go of the mouse button. (There's no rotation - step.) See the "Options" documentation to learn about the "stamp - rotation" ("stamprotation") option. + step.) Voir la documentation sur "Options" pour tout savoir sur + l'option rotation d'un tampon" ("stamprotation"). 📜 Note: The stamp rotation feature was added to Tux Paint in version 0.9.29. - Stamp Controls + Contrôles des tampons Avant de `` tamponner '' une image sur votre dessin, différents effets peuvent parfois être appliqués (en fonction du tampon) : @@ -405,7 +405,7 @@ b.Outil "Tampon" (tampon de caoutchouc) - Stamp Sounds + Effets sonores des tampons Les tampons peuvent avoir un effet sonore et / ou une description orale (parlés). Les boutons en bas à gauche (près de Tux, le pingouin Linux) @@ -468,7 +468,8 @@ d.Outil "Formes" clicked. This is the default method of most other traditional drawing software. - 📜 This option was added starting with Tux Paint version 0.9.25. + 📜 Cette option a été ajoutée en démarrant la version 0.9.25 de Tux + Paint. @@ -506,8 +507,8 @@ d.Outil "Formes" the canvas when you let go of the mouse button. (There's no rotation step.) - ⚙ See the "Options" documentation to learn about the "simple shapes" - ("simpleshapes") option. + ⚙ Voir la documentation sur "Options" pour tout savoir sur l'option + formes simples" ("simpleshapes"). @@ -552,10 +553,10 @@ e.Outils "Texte" et "Étiquette" To edit a label, click the label selection button. All labels in the drawing will appear highlighted. Click one — or use the [Tab] key to cycle through all the labels, and the [Entrée] or [Retour] key to - select one — and you may then edit the label. (Use they [Backspace] key - to erase characters, and other keys to add text to the label; click in - the canvas to reposition the label; click in the palette to change the - color of the text in the label; etc.) + select one — and you may then edit the label. (Use they [Retour + arrière] key to erase characters, and other keys to add text to the + label; click in the canvas to reposition the label; click in the + palette to change the color of the text in the label; etc.) You may "apply" a label to the canvas, painting the text into the picture as if it had been added using the Text tool, by clicking the @@ -587,8 +588,8 @@ e.Outils "Texte" et "Étiquette" Currently supported locales, the input methods available, and the key to toggle or cycle modes, are listed below. - o Japanese — Romanized Hiragana and Romanized Katakana — touche [Alt] - droite or touche [Alt] gauche + o Japonais -- Hiragana et Katakana romanisés — touche [Alt] droite ou + touche [Alt] gauche o Korean — Hangul 2-Bul — touche [Alt] droite or touche [Alt] gauche o Chinois traditionnel — touche [Alt] droite or touche [Alt] gauche o Thai — touche [Alt] droite @@ -641,7 +642,7 @@ g.Outil "Magie" (Effets spéciaux) l'outil, vous pouvez soit cliquer et faire glisser dans l'image, et / ou simplement cliquer une fois sur l'image pour appliquer l'effet. - Magic Controls + Contrôles des outils Magie Si l'outil peut être utilisé en cliquant et en faisant glisser, un @@ -673,7 +674,8 @@ g.Outil "Magie" (Effets spéciaux) default size (e.g., Patterns), or it may make separate tools available with different pre-set sizes (e.g., Bricks and Googly Eyes). - 📜 This option was added starting with Tux Paint version 0.9.30. + 📜 Cette option a été ajoutée en démarrant la version 0.9.30 de Tux + Paint. Voir les instructions pour chaque outil 'Magie' (dans le dossier 'magic-docs'). @@ -705,7 +707,7 @@ h.Outil "Gomme" 2. Autres contrôles -a."Undo" and "Redo" Commands +a.Commandes "Défaire" et "Refaire" Clicking the "Undo" button will undo (revert) the last drawing action. You can even undo more than once! @@ -1105,9 +1107,9 @@ h.Coupure du son -E. Controlling Tux Paint +E. Contrôle de Tux Paint -1. Using a Mouse or Trackball +1. Utiliser une Souris ou une Boule de pointage Tux Paint's main mode of operation is via any device that appears to your operating system as a mouse, including standard mice, trackballs, and @@ -1123,7 +1125,7 @@ button(s), a pop-up dialog will eventually appear reminding them that only one button is recognized Tux Paint. However, you may configure Tux Paint to accept any button as input (see the Options documentation). -a. Scrolling +a. Défilement Many input devices offer a way to quickly scroll within applications — many mice have a scroll wheel, trackballs have scroll rings, and trackpads recognize @@ -1136,20 +1138,20 @@ Tux Paint will also automatically scroll if you click and hold the mouse down on an scroll button — the "up" and "down" arrow buttons that appear above and below scrolling lists. -b. Mouse Accessibility +b. Accessibilité de la souris Other devices that appear as a mouse can be used to control Tux Paint. For example: * Head pointing/tracking devices - * Eye gaze trackers - * Foot mice + * Dispositifs de suivi du regard + * Souris de pied Tux Paint offers a "sticky mouse click" accessibility setting, where a single click begins a click-and-drag operation, and a subsequent click ends it. (See the Options documentation.) -2. Using a Tablet or Touchscreen +2. Utiliser une Tablette ou un Écran tactile As noted above, Tux Paint recognizes any device that appears as a mouse. This means drawing tablets and touchscreens may be used. However, these devices @@ -1157,11 +1159,11 @@ often support other features beyond X/Y motion, button clicks, and scroll-wheel motion. Currently, those additional features are not supported by Tux Paint. Some examples: - * Pressure and angle - * Eraser tip - * Multi-touch gestures + * Pression et angle + * Conseil pour la Gomme + * Gestes avec plusieurs doigts -3. Using a Joystick-like Device +3. Utiliser un dispositif de type joystick Tux Paint may be configured to recognize input from any game controller that appears to your operating system as a joystick. That even includes modern game @@ -1175,7 +1177,7 @@ to different Tux Paint controls (e.g., acting as the [Escape] key, switching to the Paint tool, invoking Undo and Redo operations, etc.). See the Options documentation for more details. -4. Using the Keyboard +4. Utiliser le clavier Tux Paint offers an option to allow the keyboard to be used to control the mouse pointer. This includes motion and clicking, as well as shortcuts to @@ -1184,7 +1186,7 @@ documentation for more details. III. Chargement d'autres images dans Tux Paint -A. Overview +A. Aperçu Étant donné que la boîte de dialogue «Ouvrir» de Tux Paint n'affiche que les images que vous avez créées avec Tux Paint, que se passe-t-il si vous souhaitez @@ -1274,7 +1276,7 @@ taille de la fenêtre Tux Paint, ou de la résolution à laquelle Tux Paint est exécuté, si il est en plein écran. (Remarque : la résolution par défaut est de 800x600.) Voir "Calculer les dimensions des images" ci-dessous. -1. Naming the File +1. Nom du fichier Sauvegarder l'image au format PNG. Il est fortement recommandé que vous nommiez le fichier en utilisant la date et l'heure courante, puisque c'est ce que Tux @@ -1306,7 +1308,7 @@ IV.Lectures complémentaires Les autres documents inclus avec Tux Paint (dans le répertoire "docs") incluent : -Using Tux Paint: +Utiliser Tux Paint : + OPTIONS.html Instructions détaillées sur les options en ligne de commande et les fichiers de configuration, pour ceux qui ne veulent pas utiliser @@ -1315,7 +1317,7 @@ Using Tux Paint: Documentation pour chacun des outils "Magic" actuellement installés. -How to extend Tux Paint: +Extensions pour Tux Paint : + EXTENDING.html Des instructions détaillées sur la création de pinceaux, de tampons, d'images de démarrage et de modèles; et l'ajout de polices; et créer un @@ -1328,7 +1330,7 @@ How to extend Tux Paint: utiliser dans Tux Paint. -Technical information: +Information technique : + INSTALL.html Instructions pour compiler et installer Tux Paint, le cas échéant. + SIGNALS.html @@ -1337,7 +1339,7 @@ Technical information: Creating new Magic tools using Tux Paint's plugin API. -Development history and license: +Historique du développement et licence : + AUTHORS.txt Liste des auteurs et contributeurs. + CHANGES.txt @@ -1349,8 +1351,8 @@ Development history and license: V.Comment obtenir de l'aide -If you need help, there are numerous ways to interact with Tux Paint developers -and other users: +Si vous avez besoin d'aide, il existe de nombreux moyens d'interagir avec les +développeurs de Tux Paint et les autres utilisateurs : * Mentionner des bogues, ou demander de nouvelles fonctionnalités via le système de suivi des bogues @@ -1362,8 +1364,8 @@ https://tuxpaint.org/contact/ VI.Comment participer -Tux Paint is a volunteer-driven project, and we're happy to accept your help in -a variety of ways: +Tux Paint est un projet mené par des volontaires, et nous serions heureux +d'accepter votre aide dans des tas de domaines : * Traduire Tux Paint dans une autre langue * Améliorer les traductions existantes @@ -1380,23 +1382,23 @@ VII.Follow the Tux Paint project on social media Tux Paint maintains a presence on a variety of social media networks, where we post updates and artwork. - * Join the Tux Paint page on Facebook - * Follow @TuxPaintDevs on Instagram - * Follow @tuxpaint@floss.social on Mastodon - * Follow u/TuxPaintDevs on Reddit - * Follow @TuxPaintDevs on Threads - * Follow Tux Paint on Tumblr - * Follow @TuxPaintTweets on Twitter + * Suivez Tux Paint sur Facebook + * Suivre @TuxPaintDevs sur Instagram + * Suivre @tuxpaint@floss.social sur Mastodon + * Suivre u/TuxPaintDevs sur Reddit + * Suivre @TuxPaintDevs sur Threads + * Suivre Tux Paint sur Tumblr + * Suivre @TuxPaintTweets sur Twitter -VIII. Trademark notices +VIII. Mentions concernant les marques déposées - * "Linux" is a registered trademark of Linus Torvalds. - * "Microsoft" and "Windows" are registered trademarks of Microsoft Corp. - * "Apple" and "macOS" are registered trademarks of Apple Inc. - * "Facebook", "Instagram", and "Threads" are registered trademarks of Meta - Platforms, Inc. - * "Mastodon" is a registered trademark of Mastodon gGmbH. - * "Reddit" is a registered trademark of Reddit, Inc. - * "Tumblr" is a registered trademark of Tumblr, Inc. - * "Twitter" is a registered trademark of X Corp. + * "Linux" est marque déposée par Linus Torvalds. + * "Microsoft" et "Windows" sont des marques déposées par Microsoft Corp. + * "Apple" et "macOS" sont des marques déposées par Apple Inc. + * "Facebook" et "Instagram" sont des marques déposées par Meta Platforms, + Inc. + * "Mastodon" est une marque déposée par Mastodon gGmbH. + * "Reddit" est une marque déposée par Reddit, Inc. + * "Tumblr" est une marque déposée par Tumblr, Inc. + * "Twitter" est une marque déposée par X Corp. diff --git a/docs/fr_FR.UTF-8/SIGNALS.txt b/docs/fr_FR.UTF-8/SIGNALS.txt index b1bc877f2..66909ef83 100644 --- a/docs/fr_FR.UTF-8/SIGNALS.txt +++ b/docs/fr_FR.UTF-8/SIGNALS.txt @@ -2,7 +2,7 @@ version 0.9.31 Documentation sur les signaux - Copyright © 2019-2022 by divers contributeurs; see AUTHORS.txt. + Copyright © 2019-2022 by divers contributeurs; voir AUTHORS.txt. https://tuxpaint.org/ juin 4, 2022 diff --git a/docs/fr_FR.UTF-8/SVG.txt b/docs/fr_FR.UTF-8/SVG.txt index 47898421c..266390c37 100644 --- a/docs/fr_FR.UTF-8/SVG.txt +++ b/docs/fr_FR.UTF-8/SVG.txt @@ -2,7 +2,7 @@ version 0.9.31 Documentation sur SVG - Copyright © 2007-2022 by divers contributeurs; see AUTHORS.txt. + Copyright © 2007-2022 by divers contributeurs; voir AUTHORS.txt. https://tuxpaint.org/ juin 4, 2022 @@ -25,12 +25,12 @@ Inkscape, a high-quality Open Source interactive drawing program available for Windows, macOS, and Linux. There are also other applications that can produce SVGs, both free/open source, and commerical/proprietary. -Open Source +Logiciel libre + Inkscape — http://www.inkscape.org/ + Karbon — https://calligra.org/karbon/ -Proprietary +Propriétaire + CorelDRAW (Corel) — https://www.coreldraw.com/en/ + Illustrator (Adobe) — http://www.adobe.com/products/illustrator.html + Boxy SVG — https://boxy-svg.com/ diff --git a/docs/fr_FR.UTF-8/html/ADVANCED-STAMPS-HOWTO.html b/docs/fr_FR.UTF-8/html/ADVANCED-STAMPS-HOWTO.html index dbcfca0c8..9fb90c7a7 100644 --- a/docs/fr_FR.UTF-8/html/ADVANCED-STAMPS-HOWTO.html +++ b/docs/fr_FR.UTF-8/html/ADVANCED-STAMPS-HOWTO.html @@ -20,7 +20,7 @@ version 0.9.31 'Guide pratique" pour les tampons de haute qualité - Copyright © 2006-2022 by Albert Cahalan et d'autres; see AUTHORS.txt.
@@ -244,7 +244,7 @@ déposez cette couleur dans la sélection, supprimant ainsi la plupart des pixel Pour réduire les accidents, vous souhaiterez peut-être sélectionner uniquement les pixels qui ne sont pas gris dans le masque. (Sélectionnez par couleur dans le masque, choisissez le noir, ajoutez le mode, choisissez le blanc, inversez. Ou bien : sélectionnez tout, sélectionnez par couleur dans le masque, soustrayez le mode, choisissez le noir, choisissez le blanc.) Si vous faites cela, vous voudrez probablement élargir un peu la sélection et / ou masquer la ligne "fourmis rampantes" qui marque la sélection.
+ Copyright © 2006-2022 by Albert Cahalan et d'autres; voir AUTHORS.txt.
https://tuxpaint.org/- Use the clone tool and the brush tool. Vary the opacity as needed. Use small round brushes mostly, perhaps 3x3 or 5x5, fuzzy or not. (It is generally nice to pair up fuzzy brushes with 100% opacity and non-fuzzy brushes with about 70% opacity.) Unusual drawing modes can be helpful with semi-transparent objects.
+ Utilisez l'outil de clonage et l'outil de pinceau. Faites varier l'opacité selon vos besoins. Utilisez principalement des petites brosses rondes, peut-être de 3x3 ou 5x5, floues ou non. (Il est généralement agréable d'associer des pinceaux flous 100 % opaques et des pinceaux non flous environ 70 % opaques). On peut utiliser des modes de dessin inhabituels avec des objets semi-transparents.Le but est de supprimer la frange de bord, à la fois à l'intérieur et à l'extérieur de l'objet. La frange intérieure, visible lorsque l'objet est composé de magenta ou de vert, doit être supprimée pour des raisons évidentes. La frange extérieure doit également être supprimée car elle deviendra visible lorsque l'image sera réduite. À titre d'exemple, considérons une région avec 2x2 de pixels au bord d'un objet aux arêtes vives. La moitié gauche est noire et opaque à 0%. La moitié droite est blanche et 100% opaque. Autrement dit, nous avons un objet blanc sur fond noir. Lorsque Tux Paint redimensionne cela à 50% (une zone de 1 x 1 pixel), le résultat sera un pixel opaque gris à 50%. Le résultat correct devrait être un pixel blanc opaque à 50%. Pour obtenir ce résultat, nous devrions peindre les pixels noirs. Ils comptent, bien qu'ils soient à 0 % d'opacité.
@@ -263,7 +263,7 @@ déposez cette couleur dans la sélection, supprimant ainsi la plupart des pixel- It is very easy to ruin your hard work. Image editors can silently destroy pixels in 0% opaque areas. The conditions under which this happens may vary from version to version. If you are very trusting, you can try saving your image directly as a PNG. Be sure to read it back in again to verify that the 0% opaque areas didn't turn black or white, which would create fringes when Tux Paint scales the image down. If you need to scale your image to save space (and hide your mistakes), you are almost certain to destroy all the 0% opaque areas. So here is a better way...
+ Il est très facile de gâcher votre travail, lui qui vous a demandé beaucoup d'efforts. Les éditeurs d'images peuvent détruire silencieusement les pixels dans les zones à 0% opacité . Les conditions dans lesquelles cela se produit peuvent varier d'une version à l'autre. Si vous êtes très confiant, vous pouvez essayer d'enregistrer votre image directement au format PNG. Assurez-vous de le relire pour vérifier que les zones à 0% opacité ne deviennent ni noires ni blanches, ce qui créerait des franges lorsque Tux Paint réduira l'image. Si vous devez redimensionner votre image pour gagner de la place (et cacher vos erreurs), vous êtes presque certain de détruire toutes les zones à 0% opacité. Alors, voici une meilleure façon...Une façon sûre pour sauvegarder
diff --git a/docs/fr_FR.UTF-8/html/ENVVARS.html b/docs/fr_FR.UTF-8/html/ENVVARS.html index c9e6d4bce..9ab1a19b9 100644 --- a/docs/fr_FR.UTF-8/html/ENVVARS.html +++ b/docs/fr_FR.UTF-8/html/ENVVARS.html @@ -21,7 +21,7 @@ Documentation sur les variables d'environnement- Copyright © 2021-2023 by divers contributeurs; see AUTHORS.txt.
@@ -124,7 +124,7 @@
+ Copyright © 2021-2023 by divers contributeurs; voir AUTHORS.txt.
https://tuxpaint.org/diff --git a/docs/fr_FR.UTF-8/html/EXTENDING.html b/docs/fr_FR.UTF-8/html/EXTENDING.html index a092fe4d4..5d93f4c31 100644 --- a/docs/fr_FR.UTF-8/html/EXTENDING.html +++ b/docs/fr_FR.UTF-8/html/EXTENDING.html @@ -95,7 +95,7 @@ version 0.9.31 - Requests where to position Tux Paint's window, and can be used to specify what display to place a fullscreen Tux Paint in a multi-monitor configuration. If not set, or set to "
+ Demande où positionner la fenêntre de Tux Paint, ce qui peut être utilisé pour spécifier où mettre Tux Paint en plein écran en configuration multi-moniteurs. Si il n'y a rien, ou bien le réglage est mis à "nopref" (meaning "no preference"), Simple DirectMedia Layer (libSDL) decides. Can be set to anX,Ycoordinate (e.g.200,100), or "center" (meaning "center").nopref" (ce qui signifie "pas de préférence"), Simple DirectMedia Layer (libSDL) décide. Peut être réglé pour une coordonnéeX,Y(par ex.200,100), ou "center" (ce qui signifie "centré").- Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt.
@@ -127,12 +127,12 @@
+ Copyright © 2002-2023 by divers contributeurs; voir AUTHORS.txt.
https://tuxpaint.org/Images des tampons Texte de description des tampons Effets sonores des tampons Son descriptif du tampon Options des tampons Mise en miroir et retournement Polices 'Images de démarrage' + Images de démarrage avec style 'livre de coloriage' Images de démarrage avec 'style scénique' Options d'image de démarrage 'Modèles' + Options des images Modèle -Traductions Méthodes alternatives de saisie Clavier virtuel sur écran Magic Tools +Traductions Méthodes alternatives de saisie Clavier virtuel sur écran Outils 'Magie' @@ -143,7 +143,7 @@ Si vous souhaitez ajouter ou modifier des éléments tels que des pinceaux, des images de démarrage, des tampons en caoutchouc et d'autres contenus utilisés par Tux Paint , vous pouvez le faire assez facilement en ajoutant, modifiant ou supprimant simplement des fichiers là où Tux Paint les recherche.- 💡 Note: You'll need to re-launch Tux Paint for the changes to take effect.
+ 💡 Remarque : vous devrez redémarrer Tux Paint pour que les modifications prennent effet.
Ajoutez une ligne contenant la ligne "frames=N" au fichier de données du pinceau, où"N" est le nombre d'images dans le pinceau.
- ⚙ Note: If you'd rather the frames be flipped through randomly, rather than sequentially, also add a line containing "random" to the brush's data file.
random" au fichier de données du pinceau.
brushes".
- 💡 Note: If your new pinceaux all come out as solid squares or rectangles, it's because you forgot to use alpha transparency! See the 'PNG documentation' in Tux Paint for more information and tips.
+ 💡 Remarque : si vos nouveaux pinceaux se présentent tous sous forme de carrés ou de rectangles pleins, c'est que vous avez oublié d'utiliser la transparence alpha ! Consultez le fichier de documentation "PNG" pour plus d'informations et de conseils.- 💡 Note: If your new des tampons basés sur PNG all come out as solid squares or rectangles, it's because you forgot to use alpha transparency! See the 'PNG documentation' in Tux Paint for more information and tips.
+ 💡 Remarque : si vos nouveaux des tampons basés sur PNG se présentent tous sous forme de carrés ou de rectangles pleins, c'est que vous avez oublié d'utiliser la transparence alpha ! Consultez le fichier de documentation "PNG" pour plus d'informations et de conseils.- 💡 Note: If your new SVG stamps seem to have a lot of whitespace, make sure the SVG 'document' is no larger than the shape(s) within. If they are being clipped, make sure the 'document' is large enough to contain the shape(s). See the 'SVG documentation' in Tux Paint for more information and tips.
+ 💡 Remarque : si vos nouveaux tampons SVG semblent avoir beaucoup de zones vides, assurez-vous que le «document» SVG n'est pas plus grand que la ou les formes qu'il contient. S'ils sont coupés, assurez-vous que le «document» est suffisamment grand pour contenir la ou les formes. Voir le fichier de documentation " SVG" pour plus d'informations et de conseils.⚙ Utilisateurs avancés : Le HOWTO Advanced Stamps décrit, en détail, comment créer des images PNG qui seront parfaitement mises à l'échelle lorsqu'elles seront utilisées comme tampons dans Tux Paint .
@@ -466,7 +466,7 @@- 💡 Note: Also consider using descriptive sounds; see 'Son descriptif du tampon', below.
+ 💡 Remarque : Pensez à utiliser les descriptions sonores; voir 'Son descriptif du tampon' ci-dessous.
- Tux Paint peut également jouer un son descriptif quand on choisit un tampon. Par ex., une personne disant le mot "canard" quand on choisit un canard, ou le nom d'un instrument de musique quand on en choisit un. Les fichiers peuvent être au format "WAVE (".wav")" ou "OGG Vorbis (".ogg")", et on le même nom que l'image PNG ou SVG, avec "_desc" à la fin (par ex., le son descritid de "stamp.svg" est le fichier son "stamp_desc.ogg" dans le même répertoire).
.wav")" ou "OGG Vorbis (".ogg")", et on le même nom que l'image PNG ou SVG, avec "_desc" à la fin (par ex., le son descritid de "stamp.svg" est le fichier son "stamp_desc.ogg" dans le même répertoire).
- Pour les descriptions dans différentes langues, créez également des fichiers WAV ou OGG avec à la fois "_desc" et le libellé des paramètres régionaux dans le nom de fichier, sous la forme : "stamp_desc_LOCALE.EXT"
_desc" et le libellé des paramètres régionaux dans le nom de fichier, sous la forme : "stamp_desc_LOCALE.EXT"
- L'son descriptif qui sera joué lorsque le tampon correspondant au fichier image "stamp.png" est choisi, et que Tux Paint utilise la langue espagnole, sera "stamp_desc_es.wav". Avec la langue française, ce sera "stamp_desc_fr.wav". Avec le portugais brésilien, "stamp_desc_pt_BR.wav", etc ...
stamp.png" est choisi, et que Tux Paint utilise la langue espagnole, sera "stamp_desc_es.wav". Avec la langue française, ce sera "stamp_desc_fr.wav". Avec le portugais brésilien, "stamp_desc_pt_BR.wav", etc ...
- Si aucun son descriptif localisé ne peut être chargé, Tux Paint tentera de charger le fichier son «par défaut». (par exemple, "stamp_desc.wav")
stamp_desc.wav")
_flip" dans le nom, et / ou une image qui est à la fois en miroir et retournée, en la nommant " _mirror_flip".
- 💡 Note: If the user flips and mirrors an image, and a pre-drawn "_mirror_flip" doesn't exist, but either "_flip" or "_mirror" does, it will be used, and mirrored or flipped, respectively.
_mirror_flip" pré-dessiné n'existe pas, mais que "_flip" ou "_mirror" existe , il sera utilisé, et reflété ou retourné, selon le cas.
@@ -716,18 +716,18 @@
Placez-les dans le répertoire "starters". Lorsque la boîte de dialogue «Nouveau» est accessible dans Tux Paint , les images de démarrage apparaîtront avec l'écran qui apparaît, suivant les différents choix de couleurs unies.
- 💡 Note: 'Images de démarrage' are 'attached' to saved pictures, via a small text file that has the same name as the saved file, but with ".dat" as the extension. This allows it to continue to affect the drawing even after Tux Paint has been quit, or another picture is loaded or a new image is created. (In other words, if you base a drawing on a image de démarrage, it will always be affected by it.)
.dat" comme extension. Ceci permet de continuer de s'occuper du dessin, mais après avoir quitté Tux Paint, oi bien une autre image a été chargée, ou bien une nouvelle image a été créée (En d'autres termes, si vous basez un dessin sur un image de démarrage, il sera toujours changé par lui).
- Outre une an image, les starters peuvent également recevoir d'autres attributs. Pour ce faire, vous devez créer un «fichier de données» pour starter. (Note: Tux Paint prior to version 0.9.29 did not support starter options.)
+ Outre une une image, les 'Images de démarrage' peuvent également recevoir d'autres attributs. Pour ce faire, vous devez créer un «fichier de données» pour image de 'Départ'. (Note : Tux Paint avant la version 0.9.29 ne supporte pas options de démarrage.)Un fichier de données de starter's est simplement un fichier texte ASCII contenant les options pour le starter.
@@ -739,7 +739,7 @@- When a starter image is a different aspect ratio (width-to-height proportions) than Tux Paint's canvas, by default it will be scaled to fit entirely within the canvas, without stretching the starter (changing its aspect ratio); for example, a square starter on a portrait-shaped canvas will be placed in the center of the canvas. By default, Tux Paint will then take the strip of pixels at the edges of the starter and stretch them to the edges of the canvas, "smearing" it.
+ Quand une image de démarrage a un ratio d'aspect (proportion largeur/hauteur) différent de celui du canevas de Tux Paint, elle sera dimensionnée pour remplir entièrement le canevas sans l'étirer (en changeant le ratio d'aspect); par exemple une image carrée sur un canevas de format portrait sera placée au centre de ce canevas. Par défaur, Tux Paint prend la bande de pixels aux bords de l'image et l'étend jusqu'aux bords du canevas, en "l'étalant".
- If it's acceptable for the starter image to be cropped in one or both directions, the "allowscale" may be used to tell Tux Paint which behavior to allow:
allowscale" peut être utilisé pour dire à Tux Paint quel comportement est permis :
- For starters where it's alright to crop the left and right edges, but the top and bottom edges must be retained, use "allowscale=horizontal". allowscale=horizontal". allowscale=vertical". allowscale=vertical".
This option allows you to specify how Tux Paint should fill the rest of the canvas, when the starter does not fit in one or the other direction. By default, as described above, Tux Paint will "smear" the pixels from the edges of the starter. (This can be specified explicitly with "background=smear".)
This option allows you to specify how Tux Paint should position a starter, when it is being cropped in one or the other direction. By default, Tux Paint will place the center of the starter within the canvas. (This can be specified explicitly with "gravity=center".)
gravity=top". Or, if the bottom right is important, specify "gravity=bottom-right".
- The available options are:
center — prefer the center (the default)top — prefer the top centerbottom — prefer the bottom centerleft — prefer the left centerright — prefer the right centertop-left — prefer the top lefttop-right — prefer the top rightbottom-left — prefer the bottom leftbottom-right — prefer the bottom rightcenter — formes à partir du centre (par défaut)top — formes à partir du centre en hautbottom — formes à partir du centre en basleft — préférer le centre gaucheright — préférer le centre droittop-left — préférer en haut à gauchetop-right — préférer en haut à droitebottom-left — préférer en bas à gauchebottom-right — préférer en bas à droiteFocusing on the center of a starter image stretched to fit the width of the canvas.
+Focusing on the centre of a starter image stretched to fit the largeur of the canvas.
Focusing on the center of a starter image stretched to fit the height of the canvas.
+Focusing on the centre of a starter image stretched to fit the height of the canvas.
Focusing on the top of a starter image stretched to fit the width of the canvas.
+Focusing on the haut of a starter image stretched to fit the largeur of the canvas.
Focusing on the bottom of a starter image stretched to fit the width of the canvas.
+Focusing on the bas of a starter image stretched to fit the largeur of the canvas.
Focusing on the right of a starter image stretched to fit the height of the canvas.
+Focusing on the droit of a starter image stretched to fit the height of the canvas.
templates". Lorsque la boîte de dialogue «Nouveau» est accessible dans Tux Paint , les images 'modèle' apparaîtront avec l'écran qui apparaît, suivant les différents choix de couleurs unies.
- 💡 Note: 'Modèles' are 'attached' to saved pictures, via a small text file that has the same name as the saved file, but with ".dat" as the extension. This allows it to continue to affect the drawing even after Tux Paint has been quit, or another picture is loaded or a new image is created. (In other words, if you base a drawing on a image 'modèle', it will always be affected by it.)
.dat" comme extension. Ceci permet de continuer de s'occuper du dessin, mais après avoir quitté Tux Paint, oi bien une autre image a été chargée, ou bien une nouvelle image a été créée (En d'autres termes, si vous basez un dessin sur un image 'modèle', il sera toujours changé par lui).
- Like 'Starters', a configuration file may be specified that defines how Tux Paint should behave when applying 'template' images to the canvas when they do not have identical proportions (aspect ratio). See "Starter Options", above. (Note: Tux Paint prior to version 0.9.29 did not support starter options.)
+ Like 'Starters', a configuration file may be specified that defines how Tux Paint should behave when applying 'template' images to the canvas when they do not have identical proportions (aspect ratio). See "Starter Options", above. (Note : Tux Paint avant la version 0.9.29 ne supporte pas options de démarrage.)- 💡 It's also possible to create basic Templates (with no options) from existing saved drawings directly within Tux Paint, from the "Open" dialog. They will be placed in the user's personal templates folder. (Note: Tux Paint prior to version 0.9.31 did not support Template creation from the Open dialog.)
+ 💡 It's also possible to create basic Templates (with no options) from existing saved drawings directly within Tux Paint, from the "Open" dialog. They will be placed in the user's personal templates folder. (Note : Tux Paint avant la version 0.9.31 ne supporte pas Création de Modèle depuis la boîte de dialogue Ouvrir.)- Tux Paint supports numerous languages, thanks to use of the "gettext" localization library. (See the "Languages" section of "Options documentation" for how to change locales in Tux Paint.)
+ Tux Paint supporte de nombreux langages, grâce à l'utilisation de la bibliothèque de localisation "gettext". (Voir la section "Langages" de la "documentation Options " pour savoir comment changer les paramètres régionaux dans Tux Paint .)
Pour traduire Tux Paint dans une nouvelle langue, copiez le fichier de modèle de traduction, "tuxpaint.pot" (trouvé avec le code source de Tux Paint , dans le dossier "src/po/"). Renommez la copie en tant que ".po", avec le nom approprié aux paramètres régionaux de votre traduction (par exemple, "es.po" pour l'espagnol; ou "pt_BR.po" pour le portugais brésilien , contre "pt.po" ou "pt_PT.po" pour le portugais parlé au Portugal).
- 💡 Note: It is best to always work off of the latest Tux Paint text catalog template ("tuxpaint.pot"), since new text is added, and old text is occasionally changed. The text catalog for the upcoming, unreleased version of Tux Paint can be found in Tux Paint's Git repository (see: https://tuxpaint.org/download/source/git/), and on the Tux Paint website at https://tuxpaint.org/help/po/.
tuxpaint.pot"), car si nouveau texte est ajouté et l'ancien texte peut être parfois modifié. Le catalogue de textes de la prochaine version inédite de Tux Paint se trouve dans le référentiel Git de Tux Paint (voir : https://tuxpaint.org/download/source/git/ ), et sur le site Web de Tux Paint à https://tuxpaint.org/help/po/.
Pour modifier une traduction existante, téléchargez le dernier fichier ".po" pour cette langue et modifiez-le comme décrit ci-dessus.
tuxpaint" et obtenir un accès en écriture au référentiel de code source Git afin que vous puissiez valider vos modifications directement.
- 💡 Note: Support for new locales requires making additions to Tux Paint's source code ("/src/i18n.h" et "/src/i18n.c"), and requires updates to the Makefile, pour s'assurer que les fichiers ".po" sont compilés en fichiers ".mo", et utilisables pendant l'exécution.
/src/i18n.h" et "/src/i18n.c"), et nécessite des mises à jour de Makefile, pour s'assurer que les fichiers ".po" sont compilés en fichiers ".mo", et utilisables pendant l'exécution.
- ⚙ Note: Blank lines within the ".im" file will be ignored, as will any text following a "#" (pound/hash) character — it can be used to denote comments, as seen in the example above.
.im" sont ignorées, aussi bien que les lignes commençant par le caractère "#" ( livre/dièse)-- on peut l'utiliser pour ajouter des commentaires, comme dans l'exemple ci-dessus.
- 💡 Note: Meanings of the flags are locale-specific, and are processed by the language-specific source code in "src/im.c". For example, "b" is used in Korean to handle Batchim, which may carry over to the next character.
src/im.c". Par exemple, "b" est utilisé en coréen pour gérer Batchim, qui peut être reporté au caractère suivant.
- 💡 Note: Support for new méthodes de saisie requires making additions to Tux Paint's source code ("/src/im.c"), and requires updates to the Makefile, pour s'assurer que les fichiers ".im" sont disponibles pour être utilisés lors de l'exécution du programme.
/src/im.c"), et nécessite des mises à jour de Makefile, pour s'assurer que les fichiers ".im" sont disponibles pour être utilisés lors de l'exécution du programme.
- ⚙ Note: Blank lines within the ".layout" file will be ignored, as will any text following a "#" (pound/hash) character — it can be used to denote comments, as seen in the example above.
.layout" sont ignorées, aussi bien que les lignes commençant par le caractère "#" ( livre/dièse)-- on peut l'utiliser pour ajouter des commentaires, comme dans l'exemple ci-dessus.
La ligne "keyboardlist" décrit les dispositions vers lesquelles on bascule lorsque l'utilisateur clique sur les boutons gauche et droit du clavier. (Voir ci-dessous.)
XK_equal" correspond à "U+003D", pour le caractère "=" ("EQUALS SIGN").
- 💡 Note: This file is not compiled into Tux Paint, but is read and parsed at runtime.
+ 💡 Remarque : Ce fichier n'est pas compilé avec Tux Paint, mais il est lu et analysé durant l'exécution de celui-ci.Il est peu probable qu'une modification de ce fichier soit requise.
@@ -1268,7 +1268,7 @@
- Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt.
+ Copyright © 2002-2023 by divers contributeurs; voir AUTHORS.txt.
https://tuxpaint.org/
make nosound") Assu
- Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt.
+ Copyright © 2002-2023 by divers contributeurs; voir AUTHORS.txt.
https://tuxpaint.org/
- Along with libSDL, Tux Paint depends on a number of other SDL 'helper' libraries: SDL_Image (for graphics files), SDL_gfx (for some graphical functions, like rotation), SDL_TTF and SDL2_Pango (for True Type Font support) and, optionally, SDL_Mixer (for sound effects).
+ Avec libSDL, Tux Paint dépend d'un certain nombre d'autres bibliothèques 'd'aide' SDL : SDL_Image (pour les fichiers graphiques), SDL_gfx (pour certaines fonctions graphiques, comme la rotation), SDL_TTF et SDL_Pango (pour la prise en charge des polices True Type) et, éventuellement, SDL_Mixer (pour les effets sonores).Les bibliothèques SDL sont disponibles en tant que code source, ou en tant que paquets RPM ou Debian pour diverses distributions de Linux. Ils peuvent être téléchargés à partir de :
@@ -168,7 +168,7 @@ Elles sont aussi parmi les paquets inclus dans votre distribution (par ex. sur le media d'installation, ou via la maintenance de vos logiciels comme la commandeapt de Debian).
- 💡 Note: When installing libraries from packages, be sure to ALSO install the development versions of the packages. (For example, install both "SDL2-2.24.0.rpm" and "SDL2-devel-2.24.0.rpm".)
SDL2-2.24.0.rpm" et "SDL2-2.24.0-devel.rpm".)
📜 Sous Linux et Unix, les anciennes versions de Tux Paint utilisaient les outils NetPBM comme aide à l'impression. (Un PNG est généré par TuxPaint et converti en PostScript en utilisant en ligne de commande les outils NetPBM pngtopnm et pnmtops.)
Téléchargez le dernier environnement MSYS2 à partir de https://www.msys2.org/ et installez-le où vous voulez (par défaut "C:\msys64")
- Open the MSYS2 shell from the "Start Menu" → "MSYS2 64bit" → "MSYS2 MSYS" and execute following command:
+ Ouvrez le shell MSYS2 via le "Menu de Démarrage" →;"MSYS2 64bit" -→ "MSTS2 MSYS" et exécutez la commande suivante :$ yes "" | pacman -Syu@@ -332,7 +332,7 @@- This will update core system and the window will close automatically. Open the msys2 shell again and execute following command to finish remaining updating process.
+ Ceci mettra à jour tout le système et la fenêtre se fermera automatiquement. Ouvrez le shell msys2 de nouveau et exécutez la commande suivante pour finaliser le process restant de mise à jour.$ yes "" | pacman -Syu@@ -358,12 +358,12 @@- MinGW 64bit (x86_64) compiler and tools + Compilateur MinGW 64bit (x86_64) et outils
- Sous le shell MSYS2, exécutez la commande suivante pour installer 64bit compiler and basic development tools :
+ Sous le shell MSYS2, exécutez la commande suivante pour installer compilateur 64bit et outils basiques de développement :$ yes "" | pacman -S mingw-w64-x86_64-{gcc,pkgconf,ntldd-git}@@ -376,7 +376,7 @@- 64bit (x86_64) dependency libraries for Tux Paint and Tux Paint Config
+ bibliothèques de dépendance 64bit (x86_64) pour Tux Paint et Tux Paint Config@@ -452,12 +452,12 @@
- MinGW 32bit (i686) compiler and tools + Compilateur MinGW 32bit (i686) et outils
- Sous le shell MSYS2, exécutez la commande suivante pour installer 32bit compiler and basic development tools :
+ Sous le shell MSYS2, exécutez la commande suivante pour installer compilateur 32bit et outils basiques de développement :$ yes "" | pacman -S mingw-w64-i686-{gcc,pkgconf,ntldd-git}@@ -470,7 +470,7 @@- 32bit (i686) dependency libraries for Tux Paint and Tux Paint Config
+ bibliothèques de dépendance 32bit (i686) pour Tux Paint et Tux Paint Config@@ -586,9 +586,9 @@
You can use either (a) a stable tar-ball release, or (b) the developing source tree.
- - Using stable tar-ball release:
+ Utiliser une version tar-ball stable :
- - Download a source tar-ball + Télécharger l'ensemble des fichiers sources
- Expand the tar-ball and change the directory name so that the final packaging process can find related files.
@@ -601,9 +601,9 @@- - Using the developing source tree:
+ Utiliser l'arborescence source en développement :
- - Fetch the developing source tree from git repository:
+ Aller chercher l'arborescence source en développement via le dépôt git :$ git clone https://git.code.sf.net/p/tuxpaint/tuxpaint-config tuxpaint-config@@ -614,7 +614,7 @@- Now you can build Tux Paint Config. as follows:
+ Maintenant vous pouvez faire Tux Paint Config. comme suit :$ cd tuxpaint-config
$ make win32
@@ -631,9 +631,9 @@You can use either (a) a stable tar-ball release, or (b) the developing source tree.
- - Using stable tar-ball release:
+ Utiliser une version tar-ball stable :
- - Download a source tar-ball + Télécharger l'ensemble des fichiers sources
- Expand the tar-ball and change the directory name so that the final packaging process can find related files.
@@ -646,9 +646,9 @@- - Using the developing source tree:
+ Utiliser l'arborescence source en développement :
- - Fetch the developing source tree from git repository:
+ Aller chercher l'arborescence source en développement via le dépôt git :$ git clone https://git.code.sf.net/p/tuxpaint/tuxpaint tuxpaint@@ -659,7 +659,7 @@- Now you can build Tux Paint as follows:
+ Maintenant vous pouvez faire Tux Paint comme suit :- ... to create the$ cd tuxpaint
$ make bdist-win32
@@ -675,7 +675,7 @@@@ -691,7 +691,7 @@ - Building the Tux Paint Windows Installer
+ Construire l'installateur de Tux Paint sous Windows@@ -683,7 +683,7 @@
Officiellement Inno Setup prend en compte des traductions dans environ 20 langues. Cependant, un des points majeurs de Tux Paint est qu'il supporte beaucoup de langues. Aussi, le script de mise au point "
tuxpaint.iss" qui sert pour construire le programme d'installation est écrit en beaucoup plus de langues, y compris des non-officielles qui sont disponibles sur "Inno Setup Translations". Vous devez télécharger les fichiers de traduction (.isl) qui sont requis et les mettre dans le répertoire "Languages" sous le répertoire dans lequel Inno Setup est installé.- Before building an installer, edit the "
+ Avant de construire un programme d'installation, éditez le fichier "tuxpaint.iss" file and enable one of the lines starting with "#define BuildTarget=", depending on the architecture of the installer you want to create.tuxpaint.iss" et activez l'une des lignes commençant par "#define BuildTarget=", en fonction de l'architecture du programme que vous voulez créer.Alors, vous pouvez facilement construire un installateur exécutable en cliquant-droit sur l'icône "
tuxpaint.iss" du répertoires "win32" et sélectionner "Compile" dans la liste. Cela prendra un certain temps, et éventuellement vous obtiendrez un fichier "tuxpaint-X.Y.Z-windows-<arch>-installer.exe" dans le même répertoire.- Running the Tux Paint Windows Installer
+ Utiliser l'installateur de Tux Paint sous Windows@@ -713,7 +713,7 @@
- Changing the Settings Using the Shortcut
+ Modification des paramètres à l'aide du raccourci@@ -753,7 +753,7 @@
- If Something Goes Wrong
+ Si quelque chose ne va pas@@ -811,7 +811,7 @@
- Disabling Sound at Compile-time
+ Désactiver le son lors de la compilation@@ -826,7 +826,7 @@
- Other options
+ Autres options@@ -836,7 +836,7 @@
- If you get errors
+ Si vous obtenez des erreurs@@ -846,7 +846,7 @@
- Installng
+ Installation@@ -1044,10 +1044,10 @@ % make install
TuxPaint.appapplication bundle that can be run in-place or copied to/Applications. To create the DMG file for distribution, use 'make TuxPaint.dmg'. + ... to create theTuxPaint.appapplication bundle that can be run in-place or copied to/Applications. Pour créer le fichier DMG pour la distribution, faites 'make TuxPaint.dmg'.- Additional steps may be required when building for the Apple Silicon. See "Building for Apple Silicon" below.
+ Additional steps are required when building a Unviersal Binary. See "Building a Universal Binary" below.@@ -1100,7 +1100,7 @@ - - Recompiling MacPorts
+ Recompiler MacPorts@@ -1113,7 +1113,7 @@
- Then uninstall all MacPorts packages:
+ Ensuite désinstaller tous les paquets MacPorts :$ sudo port -fp uninstall installed@@ -1127,39 +1127,16 @@ As of this writing, all libraries Tux Paint requires from MacPorts can be recompiled in this manner to run on macOS 10.10 Yosemite and later on Intel CPUs, and macOS 11.0 Big Sur and later on Apple Silicon. Unfortunately, although MacPorts has the option to enable the building of universal libraries, several libraries Tux Paint require cannot be built as universal libraries so they can only be built to run natively on the hardware on which they were built. See "Building a Universal Binary" below for instructions on how to build Tux Paint as a Universal Binary.- -- - -- Building for Apple Silicon
-macOS for Apple Silicon requires all native Apple Silicon applications be signed, even if it is signed "ad-hoc" (anonymously). Because of this, compilers that produce native Apple Silicon applications sign all produced binaries and libraries as a part of the compilation process.* However, the Tux Paint compilation process modifies the libraries to be modular (using
install_name_tool) so they can be added into the application bundle, which has the unfortunate side effect of breaking the signature. This can be addressed by signing the application bundle ad-hoc (example below) or using your own Apple Developer Identity if you have one. The DMG file, if needed, must be created after signing the App Bundle so the DMG file is created with signed App Bundle:-- * For more information on the code signing requirements on the Apple Silicon, see https://developer.apple.com/documentation/macos-release-notes/macos-big-sur-11_0_1-universal-apps-release-notes#:~:text=New%20in%20macOS,pass%20through%20Gatekeeper. -- $ codesign -s - TuxPaint.app-
- $ make TuxPaint.dmg -If you get an error that the application bundle is already signed, remove it before signing:
-- -- $ codesign --remove-signature TuxPaint.app --If you plan to combine the Apple Silicon bundle with the Intel CPU bundle to produce the Universal bundle, the code signing must be done after they are combined. See "Building a Universal Binary" below.
-- Building a Universal Binary
+ Créer un Binaire Universel- To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the provided
build-universal.shscript to combine the two application bundles as below. The produced bundle must be signed (see "Building for Apple Silicon" above for more details). The DMG file, if required, must be built after the signing:+ To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the providedbuild-universal.shscript to combine the two application bundles as below. The DMG file can be built afterwards:@@ -1193,7 +1170,7 @@ Prérequis -$ macos/build-universal.sh
- $ codesign -s - TuxPaint.app
$ make TuxPaint.dmgYou will need recent versions of:
+
Vous avez besoin des versions récentes de :
- Gradle — build automation tool
- @@ -1216,7 +1193,7 @@
- Building
+ Construire@@ -1259,7 +1236,7 @@
Install the required develop packages in Terminal:
-
- 32-bit:
+- 32-bit :
- -
pkgman install @@ -1282,7 +1259,7 @@ zlib_x86_devel- 64-bit:
+- 64-bit :
pkgman install @@ -1316,7 +1293,7 @@- Building
+ Construire
make PREFIX=/boot/home/config/non-packaged@@ -1326,7 +1303,7 @@- Tux Paint Stamps
+ Tampons pour Tux Paint
make install-all DATA_PREFIX=/boot/home/config/non-packaged/share/tuxpaint/@@ -1398,7 +1375,7 @@- Enlevez "
+ Enlevez "TuxPaint.app" du dossier "Applications". Les fichiers de données les fichiers de configuration, les tampons et les images sauvegardées peuvent être trouvées dans "/Library/Application Support/TuxPaint" (pour tous les utilisateurs) et "/Users/USERNAME/Library/Application Support/TuxPaint" pour les utilisateurs individuels.TuxPaint.app" du dossier "Applications". Les fichiers de données les fichiers de configuration, les tampons et les images sauvegardées peuvent être trouvées dans "/Bibliothèque/Support d'Application/Tux Paint" (pour tous les utilisateurs) et "/Users/USERNAME/Library/Application Support/TuxPaint" pour les utilisateurs individuels.diff --git a/docs/fr_FR.UTF-8/html/OPTIONS.html b/docs/fr_FR.UTF-8/html/OPTIONS.html index 0ed97fff5..89c6de590 100644 --- a/docs/fr_FR.UTF-8/html/OPTIONS.html +++ b/docs/fr_FR.UTF-8/html/OPTIONS.html @@ -97,7 +97,7 @@ Documentation sur les options - Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt.
@@ -179,7 +179,7 @@
+ Copyright © 2002-2023 by divers contributeurs; voir AUTHORS.txt.
https://tuxpaint.org/- Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at:
+ Avant la lecture de ce fichier, un fichier de configuration à l'échelle du système est lu. (Par défaut, cette configuration n'a pas de paramètres activés.) Il se trouve normalement ici :/etc/tuxpaint/tuxpaint.conf@@ -203,7 +203,7 @@- Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at:
+ Avant la lecture de ce fichier, un fichier de configuration à l'échelle du système est lu. (Par défaut, cette configuration n'a pas de paramètres activés.) Il se trouve normalement ici :/Library/Application Support/TuxPaint/tuxpaint.cfg@@ -218,7 +218,7 @@- The file you should create is called "
+ Le fichier que vous devez créer s'appelle "tuxpaint.cfg" and it should be placed in in your personal AppData folder:C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\tuxpaint.cfg" et doit être placé dans votre dossier personnel AppData :C:\Users\nom d'utilisateur\AppData\Roaming\TuxPaint\Vous pouvez utiliser NotePad ou WordPad pour créer ce fichier. Assurez-vous de l'enregistrer en tant que texte brut et assurez-vous que le nom de fichier ne contient pas ".txt" à la fin ...
@@ -230,7 +230,7 @@- Before this file is read, a system-wide configuration file is read. (By default, this configuration has no settings enabled.) It is normally located at:
+ Avant la lecture de ce fichier, un fichier de configuration à l'échelle du système est lu. (Par défaut, cette configuration n'a pas de paramètres activés.) Il se trouve normalement ici :C:\Program Files\Tuxpaint@@ -241,7 +241,7 @@- ⚙ You can disable reading of this file altogether, leaving the settings as defaults (which can then be overridden by your personal config. file and/or command-line arguments) by using the command-line option "
+ ⚙ Vous pouvez désactiver complètement la lecture de ce fichier, en laissant les paramètres par défaut (qui peuvent ensuite être remplacés par votre fichier config personnel et / ou vos arguments de ligne de commande) en utilisant l'option de ligne de commande "--nosysconfig".--nosysconfig".@@ -2229,7 +2229,7 @@ - Sélectionne le numéro du bouton du joystick, comme vu par SDL, qui sera un raccourci pour sélectionner select the fill tool.
+ Sélectionne le numéro du bouton du joystick, comme vu par SDL, qui sera un raccourci pour sélectionner sélectionne l'outil de remplissage.- @@ -2943,7 +2943,7 @@
ja_JP (*)Japanese -right [Alt] or left [Alt] +[Alt] droit ou [Alt] gauche @@ -2973,7 +2973,7 @@ ka_GEko_KR (*)Korean -right [Alt] or left [Alt] +[Alt] droit ou [Alt] gauche @@ -3389,7 +3389,7 @@ (*) - Ces langues nécessitent leurs propres polices, car elles ne sont pas représentées à l'aide d'un jeu de caractères latins, comme les autres. Consultez la section "Polices spéciales " ci-dessous. kok_IN- 💡 Note: Tux Paint provides an alternative input method for entering characters with the Text tool in some locales. The key comibation(s) listed can be used to cycle through the supported input methods while the Text tool is active.
+ 💡 Remarque : Tux Paint fournit une méthode de saisie alternative pour saisir des caractères avec l' outil Texte avec certaines langues. Les combinaisons de touches répertoriées peuvent être utilisées pour parcourir les méthodes de saisie prises en charge lorsque l' outil Texte est actif.@@ -3416,7 +3416,7 @@ Tout d'abord, assurez-vous que les paramètres régionaux que vous souhaitez utiliser sont activés en éditant le fichier " /etc/locale.gen" sur votre système, puis en exécutant le programme "locale-gen" en tant que root.- 💡 Note: Debian users may be able to simply run the command "
+ 💡 Remarque : les utilisateurs Debian peuvent simplement exécuter la commande "dpkg-reconfigure locales" as root to bring up a configuration dialog. Ubuntu users may be able to run "sudo dpkg-reconfigure localeconf" (the "localeconf" package may need to be installed first), or you may need to edit the file "/var/lib/locales/supported.d/local" first, and add locales they want, from the list found in "/usr/share/i18n/SUPPORTED".dpkg-reconfigure locales" en tant que root pour afficher une boîte de dialogue de configuration. Les utilisateurs d'Ubuntu peuvent exécuter "sudo dpkg-reconfigure localeconf" (le paquet "localeconf" peut avoir besoin d'être installé en premier), ou bien peuvent avoir besoin d'éditer le fichier "/var/lib/locales/supported.d/local" d'abord, et d'ajouter les paramètres régionaux qu'ils veulent, à partir de la liste trouvée dans "/usr/share/i18n/SUPPORTED".Ensuite, avant d'exécuter Tux Paint, définissez votre variable d'environnement "
diff --git a/docs/fr_FR.UTF-8/html/PNG.html b/docs/fr_FR.UTF-8/html/PNG.html index 27c3192ed..aa6de0264 100644 --- a/docs/fr_FR.UTF-8/html/PNG.html +++ b/docs/fr_FR.UTF-8/html/PNG.html @@ -93,7 +93,7 @@ Documentation sur PNG pour Tux Paint$LANG" sur l'un des paramètres régionaux répertoriés ci-dessus. (Si vous voulez que tous les programmes qui peuvent être traduits le soient, vous voudrez peut - être placer les éléments suivants dans script de connexion, par ex. "~/.profile", "~/.bashrc", "~/.cshrc", etc...)- Copyright © 2007-2022 by divers contributeurs; see AUTHORS.txt.
diff --git a/docs/fr_FR.UTF-8/html/README.html b/docs/fr_FR.UTF-8/html/README.html index 01058dcd5..1de9d8cb2 100644 --- a/docs/fr_FR.UTF-8/html/README.html +++ b/docs/fr_FR.UTF-8/html/README.html @@ -97,7 +97,7 @@ Un programme simple pour les enfants
+ Copyright © 2007-2022 by divers contributeurs; voir AUTHORS.txt.
https://tuxpaint.org/- Copyright © 2002-2023 by divers contributeurs; see AUTHORS.txt.
@@ -125,11 +125,11 @@
+ Copyright © 2002-2023 by divers contributeurs; voir AUTHORS.txt.
https://tuxpaint.org/- Outil "Peinture" (pinceau)
- Outil "Tampon" (tampon de caoutchouc)
- Outil "Lignes"
- Outil "Formes"
- Outils "Texte" et "Étiquette"
- Outil "Remplir"
- Outil "Magie" (Effets spéciaux)
- Outil "Gomme"
- Autres contrôles +
- Commandes "Défaire" et "Refaire"
- Commande "Nouveau"
- Commande "Ouvrir"
- Commande "Sauvegarder"
- Commande "Imprimer"
- Commande "Diapos" (sous "Ouvrir")
- Commande "Quitter"
- Coupure du son
-- Controlling Tux Paint
+- Contrôle de Tux Paint
- Chargement d'autres images dans Tux Paint
- Lectures complémentaires
- Comment obtenir de l'aide
- Comment participer
@@ -157,7 +157,7 @@@@ -273,7 +273,7 @@ - B. Objectives
+ B. Objectifs@@ -224,14 +224,14 @@
- D. What's New in Tux Paint version 0.9.31?
+ D. Qu'y a-t-il de neuf dans la version 0.9.31 de Tux Paint ?
- Fuzzy Erasers
- Fuzzy-edged round erasers have been added to the Eraser tool
-- New Magic tools
+- Nouveaux outils Magie
- Loops, Ribbon, Smooth, and Squiggles
- Create templates from Open dialog
@@ -240,15 +240,15 @@- User interface font may be overridden
- The font used for the user interface (button labels, dialog pop-ups, and instructions) can be overridden from its default ("DejaVu Sans"). (See the "
-uifont" configuration option. Use "--listfonts" to see a list of available fonts.)- File Erase may be disabled +
- L'effacement de fichier peut être désactivé
- Controls to erase saved work — saved drawings (via the Open dialog) and exported templates (via the New dialog) — can be disabled. (See the "
-noerase" configuration option.)- "Controlling Tux Paint" documentation +
- Documentation sur "Contrôler Tux Paint"
- A brief overview of how Tux Paint can be controlled — mouse, tablet, touchscreen, joystick, and keyboard — has been added to the README documentation.
- See CHANGES.txt for the complete list of changes.
+ Voir CHANGES.txt pour la liste complète des changements.- Tux Paint should have placed a launcher icon in your KDE and/or GNOME menus, under 'Graphics.'
+ Tux Paint devrait avoir mis une icône de lanceur dans vos menus KDE et/ou GNOME, sous «Graphiques».@@ -460,11 +460,11 @@
On the far right are three special color options:
- - Color Picker
- The "color picker" (which has an outline of an eye-dropper) allows you to pick a color found within your drawing.
+ Sélecteur de couleur
+ Le "sélecteur de couleurs" (qui ressemble à un compte-gouttes) vous permet de choisir une couleur trouvée dans votre dessin.
(A shortcut key is available to access this feature quickly; see below.)- - Rainbow Palette
+ Palette de l'Arc-en-ciel
The rainbow palette allows you to pick any color by choosing the hue, saturation, and value of the color you want. A box on the left displays hundreds of hues — from red at the top through to violet at the bottom — at hundreds of saturation/intensity levels — from pale & washed-out on the left through to pure on the right. A grey vertical bar provides access to hundreds of value levels — from lighest at the top through to darkest at the bottom.
Click the green checkbox button to select the color, or the "Back" button to dismiss the pop-up without picking a new color.You may also set this tool's color to that of other color choices:
- Whichever built-in color is selected, if any
-- The Color Picker's current color
-- The Color Mixer's current color
+- Couleur actuelle du Sélecteur de couleur
+- Couleur actuelle du mélangeur de couleurs
- - Color Mixer
+ Mélangeur de couleurs
The "color mixer" (which has silhouette of a paint palette) allows you to create colors by blending primary additive colors — red, yellow, and blue — along with white (to "tint"), grey (to "tone"), and black (to "shade").
You may click any button multiple times (for example, red + red + yellow results in a red-orange color). The ratios of colors added are shown at the bottom.
You can start over (reset to no colors in your picture) by clicking the "Clear" button. You can also undo or redo multiple steps of mixing, in case you made a mistake (without having to start over).
@@ -616,7 +616,7 @@@@ -797,7 +797,7 @@
- - Stamp Categories + Catégories de tampons
- @@ -628,7 +628,7 @@ Il peut y avoir de nombreuses catégories de timbres (par ex. animaux, plantes, espace extra-atmosphérique, véhicules, personnes, etc.). Utilisez les flèches gauche et droite pour parcourir les différentes collections.
- - Stamp Rotation + Rotation des tampons
- @@ -641,7 +641,7 @@ Using the rotation toggle button near the bottom right, you can enable a rotation step when placing stamps. Once you've placed the stamp, choose the angle to rotate it by moving the mouse around the canvas. Click the mouse button again and the stamp will be added to the drawing.
- ⚙ Note: If "stamp rotation" option is disabled, the stamp will be drawn on the canvas when you let go of the mouse button. (There's no rotation step.) See the "Options" documentation to learn about the "stamp rotation" ("
+ ⚙ Note: If "stamp rotation" option is disabled, the stamp will be drawn on the canvas when you let go of the mouse button. (There's no rotation step.) Voir la documentation sur "Options" pour tout savoir sur l'option rotation d'un tampon" ("stamprotation") option.stamprotation").📜 Note: The stamp rotation feature was added to Tux Paint in version 0.9.29.
@@ -649,7 +649,7 @@- - Stamp Controls + Contrôles des tampons
- @@ -679,7 +679,7 @@
- - Stamp Sounds + Effets sonores des tampons
- @@ -762,7 +762,7 @@
- The shape will extend with one corner starting from where you initially clicked. This is the default method of most other traditional drawing software.
- 📜 This option was added starting with Tux Paint version 0.9.25.
+ 📜 Cette option a été ajoutée en démarrant la version 0.9.25 de Tux Paint.- If the "simple shapes" option is enabled, the shape will be drawn on the canvas when you let go of the mouse button. (There's no rotation step.)
@@ -850,7 +850,7 @@ Lors de l'utilisation de l' outil Étiquette (qui a été ajouté à Tux Paint dans la version 0.9.22), le texte `` flotte '' sur l'image, et les détails de l'étiquette (le texte, la position de l'étiquette, le choix de la police et la couleur ) sont stockés séparément. Cela permet à l'étiquette d'être repositionnée ou modifiée ultérieurement.- ⚙ See the "Options" documentation to learn about the "simple shapes" ("
+ ⚙ Voir la documentation sur "Options" pour tout savoir sur l'option formes simples" ("simpleshapes") option.simpleshapes").- To edit a label, click the label selection button. All labels in the drawing will appear highlighted. Click one — or use the
+ To edit a label, click the label selection button. All labels in the drawing will appear highlighted. Click one — or use the[Tab]key to cycle through all the labels, and the[Entrée]or[Retour]key to select one — and you may then edit the label. (Use they[Backspace]key to erase characters, and other keys to add text to the label; click in the canvas to reposition the label; click in the palette to change the color of the text in the label; etc.)[Tab]key to cycle through all the labels, and the[Entrée]or[Retour]key to select one — and you may then edit the label. (Use they[Retour arrière]key to erase characters, and other keys to add text to the label; click in the canvas to reposition the label; click in the palette to change the color of the text in the label; etc.)You may "apply" a label to the canvas, painting the text into the picture as if it had been added using the Text tool, by clicking the label application button. (This feature was added in Tux Paint version 0.9.28.) All labels in the drawing will appear highlighted, and you select one just as you do when selecting a label to edit. The chosen label will be removed, and the text will be added directly to the canvas.
@@ -874,7 +874,7 @@ Currently supported locales, the input methods available, and the key to toggle or cycle modes, are listed below.-
- Japanese — Romanized Hiragana and Romanized Katakana — touche
+[Alt]droite or touche[Alt]gauche- Japonais -- Hiragana et Katakana romanisés — touche
[Alt]droite ou touche[Alt]gauche- Korean — Hangul 2-Bul — touche
@@ -936,7 +936,7 @@[Alt]droite or touche[Alt]gaucheL'outil «Magie» est en fait un ensemble d'outils spéciaux. Sélectionnez l'un des effets «magiques» dans le sélecteur de droite. Ensuite, selon l'outil, vous pouvez soit cliquer et faire glisser dans l'image, et / ou simplement cliquer une fois sur l'image pour appliquer l'effet.
- Magic Controls + Contrôles des outils MagieSi l'outil peut être utilisé en cliquant et en faisant glisser, un bouton «peinture» sera disponible sur la gauche, sous la liste des outils «magiques» sur le côté droit de l'écran. Si l'outil peut affecter toute l'image en entier, un bouton «Image entière» sera disponible sur la droite.
@@ -970,7 +970,7 @@💡 If the sizing option is disabled, the Magic plugin may simply offer a default size (e.g., Patterns), or it may make separate tools available with different pre-set sizes (e.g., Bricks and Googly Eyes).
- 📜 This option was added starting with Tux Paint version 0.9.30.
+ 📜 Cette option a été ajoutée en démarrant la version 0.9.30 de Tux Paint.@@ -1015,7 +1015,7 @@
- - a."Undo" and "Redo" Commands + a.Commandes "Défaire" et "Refaire"
- @@ -1532,14 +1532,14 @@
- E. Controlling Tux Paint
+ E. Contrôle de Tux Paint- 1. Using a Mouse or Trackball
+ 1. Utiliser une Souris ou une Boule de pointage@@ -1551,7 +1551,7 @@
@@ -1583,14 +1583,14 @@- a. Scrolling
+ a. DéfilementMany input devices offer a way to quickly scroll within applications — many mice have a scroll wheel, trackballs have scroll rings, and trackpads recognize certain "scroll" gestures (e.g., two-finger vertical motion, or vertical motion on the edge of the trackpad). Tux Paint supports scrolling input to allow quick scrolling through certain lists (e.g., Stamps, Magic tools, and the New and Open dialogs).
@@ -1563,13 +1563,13 @@- b. Mouse Accessibility
+ b. Accessibilité de la sourisOther devices that appear as a mouse can be used to control Tux Paint. For example:
- Head pointing/tracking devices
-- Eye gaze trackers
-- Foot mice
+- Dispositifs de suivi du regard
+- Souris de pied
@@ -1600,7 +1600,7 @@ - 2. Using a Tablet or Touchscreen
+ 2. Utiliser une Tablette ou un Écran tactileAs noted above, Tux Paint recognizes any device that appears as a mouse. This means drawing tablets and touchscreens may be used. However, these devices often support other features beyond X/Y motion, button clicks, and scroll-wheel motion. Currently, those additional features are not supported by Tux Paint. Some examples:
-
- Pressure and angle
-- Eraser tip
-- Multi-touch gestures
+- Pression et angle
+- Conseil pour la Gomme
+- Gestes avec plusieurs doigts
- 3. Using a Joystick-like Device
+ 3. Utiliser un dispositif de type joystick@@ -1615,7 +1615,7 @@
- 4. Using the Keyboard
+ 4. Utiliser le clavier@@ -1638,7 +1638,7 @@
- A. Overview
+ A. Aperçu@@ -1739,7 +1739,7 @@
@@ -1930,19 +1930,19 @@- 1. Naming the File
+ 1. Nom du fichier@@ -1785,7 +1785,7 @@
Les autres documents inclus avec Tux Paint (dans le répertoire "
docs") incluent :
- - Using Tux Paint:
+ Utiliser Tux Paint :
- @@ -1799,7 +1799,7 @@
- - How to extend Tux Paint:
+ Extensions pour Tux Paint :
- @@ -1817,7 +1817,7 @@
- - Technical information:
+ Information technique :
- @@ -1835,7 +1835,7 @@
- - Development history and license:
+ Historique du développement et licence :
- @@ -1861,7 +1861,7 @@
- If you need help, there are numerous ways to interact with Tux Paint developers and other users:
+ Si vous avez besoin d'aide, il existe de nombreux moyens d'interagir avec les développeurs de Tux Paint et les autres utilisateurs :
- Mentionner des bogues, ou demander de nouvelles fonctionnalités via le système de suivi des bogues
- Participer aux nombreuses listes de diffusion de Tux Paint
- Contacter les développeurs directement
@@ -1878,7 +1878,7 @@- Tux Paint is a volunteer-driven project, and we're happy to accept your help in a variety of ways: + Tux Paint est un projet mené par des volontaires, et nous serions heureux d'accepter votre aide dans des tas de domaines :
- Traduire Tux Paint dans une autre langue
- Améliorer les traductions existantes
@@ -1902,25 +1902,25 @@ Tux Paint maintains a presence on a variety of social media networks, where we post updates and artwork.
- - Join the Tux Paint page on Facebook + Suivez Tux Paint sur Facebook
- - Follow @TuxPaintDevs on Instagram + Suivre @TuxPaintDevs sur Instagram
- - Follow @tuxpaint@floss.social on Mastodon + Suivre @tuxpaint@floss.social sur Mastodon
- - Follow u/TuxPaintDevs on Reddit + Suivre u/TuxPaintDevs sur Reddit
- - Follow @TuxPaintDevs on Threads + Suivre @TuxPaintDevs sur Threads
- - Follow Tux Paint on Tumblr + Suivre Tux Paint sur Tumblr
- - Follow @TuxPaintTweets on Twitter + Suivre @TuxPaintTweets sur Twitter
diff --git a/docs/fr_FR.UTF-8/html/SIGNALS.html b/docs/fr_FR.UTF-8/html/SIGNALS.html index 3a51e399e..008b3dbfc 100644 --- a/docs/fr_FR.UTF-8/html/SIGNALS.html +++ b/docs/fr_FR.UTF-8/html/SIGNALS.html @@ -93,7 +93,7 @@ Documentation sur les signaux - VIII. Trademark notices + VIII. Mentions concernant les marques déposées
-
- "Linux" is a registered trademark of Linus Torvalds.
-- "Microsoft" and "Windows" are registered trademarks of Microsoft Corp.
-- "Apple" and "macOS" are registered trademarks of Apple Inc.
-- "Facebook", "Instagram", and "Threads" are registered trademarks of Meta Platforms, Inc.
-- "Mastodon" is a registered trademark of Mastodon gGmbH.
-- "Reddit" is a registered trademark of Reddit, Inc.
-- "Tumblr" is a registered trademark of Tumblr, Inc.
-- "Twitter" is a registered trademark of X Corp.
+- "Linux" est marque déposée par Linus Torvalds.
+- "Microsoft" et "Windows" sont des marques déposées par Microsoft Corp.
+- "Apple" et "macOS" sont des marques déposées par Apple Inc.
+- "Facebook" et "Instagram" sont des marques déposées par Meta Platforms, Inc.
+- "Mastodon" est une marque déposée par Mastodon gGmbH.
+- "Reddit" est une marque déposée par Reddit, Inc.
+- "Tumblr" est une marque déposée par Tumblr, Inc.
+- "Twitter" est une marque déposée par X Corp.
- Copyright © 2019-2022 by divers contributeurs; see AUTHORS.txt.
diff --git a/docs/fr_FR.UTF-8/html/SVG.html b/docs/fr_FR.UTF-8/html/SVG.html index 7c939d32c..a867d26fb 100644 --- a/docs/fr_FR.UTF-8/html/SVG.html +++ b/docs/fr_FR.UTF-8/html/SVG.html @@ -95,7 +95,7 @@ Documentation sur SVG
+ Copyright © 2019-2022 by divers contributeurs; voir AUTHORS.txt.
https://tuxpaint.org/- Copyright © 2007-2022 by divers contributeurs; see AUTHORS.txt.
@@ -126,7 +126,7 @@ An excellent tool with which to create SVG images for use in Tux Paint is Inkscape, a high-quality Open Source interactive drawing program available for Windows, macOS, and Linux. There are also other applications that can produce SVGs, both free/open source, and commerical/proprietary.
+ Copyright © 2007-2022 by divers contributeurs; voir AUTHORS.txt.
https://tuxpaint.org/-
- Open Source
+- Logiciel libre
- -
- Inkscape @@ -139,7 +139,7 @@
- Proprietary
+- Propriétaire
- CorelDRAW diff --git a/docs/fr_FR.UTF-8/html/tuxpaint-quickstart-guide.html b/docs/fr_FR.UTF-8/html/tuxpaint-quickstart-guide.html index 3b331fdd6..2e16fbb0f 100644 --- a/docs/fr_FR.UTF-8/html/tuxpaint-quickstart-guide.html +++ b/docs/fr_FR.UTF-8/html/tuxpaint-quickstart-guide.html @@ -2,7 +2,7 @@
+- Tux Paint 0.9.29 Quickstart Guide + Guide de démarrage rapide 0.9.29 pour Tux Paint @@ -12,24 +12,24 @@ vlink="#FF0000" alink="#FF00FF"> -Tux Paint 0.9.29 Quickstart Guide
+Guide de démarrage rapide 0.9.29 pour Tux Paint
-Tools (Drawing)
+Outils (dessin)
🖌Peindre
-
- Choose a brush on the right.
- Choisissez un pinceau sur la droite.
- Some brushes are animated 🎞, some are directional ✲, some are both.
- Change brush spacing with the bars 📶 at the bottom right.
-- Choose a color (see "Colors").
+- Choisir une couleur (voir "Couleurs").
- Click/tap and drag in the canvas to paint.
⌧Tampons
- Change categories with the arrow buttons ⇦⇨ near the bottom right.
-- Choose a stamp on the right.
-- Some stamps may be mirrored 🪞, and/or flipped ↕, using controls near the bottom right.
+- Choisis un tampon sur la droite.
+- De nombreux tampons peuvent être affichés sous forme d'image miroir 🪞, et/ou retournés verticalement ↕ à l'aide des boutons de commande en bas à droite.
- Some stamps allow you to choose their color (see "Colors").
- Change stamp size with the bars 📶 at the bottom right.
- Rotation ⟳ may be enabled, if desired.
@@ -44,13 +44,13 @@⚟Lignes
-
- (See Paint)
+- (Voir Peindre)
- Click/tap and drag to draw a line.
⭓Formes
-
-- Choose a shape on the right.
+- Choisissez une forme sur la droite.
- Select whether you want to extend the shape from the center ⧈, or a corner ◰, using controls at the bottom right.
- Click/tap to position, and drag to set the size of the shape.
- Drag to rotate it, and click/tap again to add it to the drawing.
@@ -58,17 +58,17 @@🄰Texte
-
- Choose a font on the right.
+- Choisissez une fonte sur la droite.
- Select whether you want the text bold 𝗔 and/or italic 𝘈, using controls near the bottom right.
- Change text size using the up 🡁 and down 🡃 arrow buttons at the bottom right.
-- Choose a color (see "Colors").
+- Choisir une couleur (voir "Couleurs").
- Click/tap the canvas to position an insertion cursor.
- Enter text via your keyboard or the on-screen keyboard.
- Click/tap the canvas again if you wish to reposition the text.
- Press [Enter]/[Return] or click/tap ⮨ to add the text to the drawing and begin entering more text one line down.
- Or, press [Tab] or click/tap or ⟷ to add the text to the drawing and continue entering more text immediately to the right.
- - Using the on-screen keyboard:
+ Utiliser clavier virtuel sur écran :
- "Cmp" can be used to compose characters, e.g. Cmp ' a results in á.
- "AltGr" can be used to quickly access more characters.
- Left/Right arrows switches keyboard layouts (e.g., "QWERTY" vs. "ABC")
@@ -78,17 +78,17 @@🅰Étiquette
-
-- (See Text)
+- (Voir texte)
- Labels float 'above' the drawing; you cannot paint or stamp over them, apply Magic effects, etc.
- Labels may be edited, repositioned, and styled after they've been added to the drawing.
- Click/tap the ☝ button near the lower right to choose a label. Click/tap the label you wish to modify, then click/tap somewhere else in the canvas to reposition, or change the font/style, change color, and/or type to edit the text.
- Or, use the 🖑 button near the lower right to "flatten" a label, applying it to the canvas; it may no longer be edited with the Label tool.
🪣Fill
+🪣Remplir
-
- Choose a fill mode on the right.
-- Choose a color (see "Colors").
+- Choisissez un mode de remplissage sur la droite.
+- Choisir une couleur (voir "Couleurs").
- Click/tap (and drag, with Brush and Linear modes) to fill an area of the picture with a color.
- Solid - Flood-fills an area with a solid color
@@ -102,7 +102,7 @@🪄Magie
-
-- Choose a magic tool on the right.
+- Choisissez un outil magique sur la droite.
- Change categories with the arrow buttons ⇦⇨ near the bottom right.
- Some magic tools draw or apply effects via click/tap and drag 〰🪄, some affect the entire drawing 🖻🪄, and some offer both options; use the controls at the bottom right.
- Some magic tools offer various sizes; change it with the bars 📶 at the bottom right.
@@ -112,13 +112,13 @@🖓Défaire
- Use to undo the most recent changes (multiple undo available).
-- Shortcut: [Ctrl]+[Z]
+- Raccourci : [Ctrl]+[Z]
🖒Refaire
- Use to redo the most recent undone change (multiple redo available).
-- Shortcut: [Ctrl]+[R]
+- Raccourci : [Ctrl]+[R]
◪Gomme
@@ -128,7 +128,7 @@- Shortcut: [X] and click/tap in the drawing (not always available)
Tools (Controls)
+Outils (Contrôles)
🗏Nouveau
@@ -141,7 +141,7 @@
- Click/tap "🕮⮫Open" to begin a new drawing.
- Click/tap "⤺Back" to abort and return to your current drawing.
-- Shortcut: [Ctrl]+[N]
+- Raccourci : [Ctrl]+[N]
🕮⮫Ouvrir
@@ -161,30 +161,30 @@- Click/tap "🖻⮫🗏Template" to turn the drawing into a new template.
-- Shortcut: [Ctrl]+[O]
+- Raccourci : [Ctrl]+[O]
🕮⮪Sauvegarder
-
- Click/tap to save your drawing.
- If you've saved previously, you'll be prompted whether to overwrite the previously-saved drawing (a la "File→Save") or create a new saved drawing (a la "File→Save As...")
-- Shortcut: [Ctrl]+[S]
+- Raccourci : [Ctrl]+[S]
🖶Imprimer
-
- Click/tap to print your drawing.
- Hold [Alt] or [Option] while clicking/tapping to bring up printer dialog, if available.
- Shortcut: [Ctrl]+[P]
🗙Quit
+🗙Quitter
-
- Click/tap to quit Tux Paint.
-- Shortcut: [Esc]
+- Raccourci : [Esc]
Colors
+Couleurs
-
- Click/tap to choose a color to use with the Paint, Lines, and Shapes tools, and Stamps and Magic tools that support colors.
- @@ -210,17 +210,17 @@
Shortcuts while drawing:
+Raccourcis quand on dessine :
diff --git a/docs/fr_FR.UTF-8/tuxpaint-quickstart-guide.txt b/docs/fr_FR.UTF-8/tuxpaint-quickstart-guide.txt index 508bfe052..f5dd2672a 100644 --- a/docs/fr_FR.UTF-8/tuxpaint-quickstart-guide.txt +++ b/docs/fr_FR.UTF-8/tuxpaint-quickstart-guide.txt @@ -1,21 +1,22 @@ -Tux Paint 0.9.29 Quickstart Guide +Guide de démarrage rapide 0.9.29 pour Tux Paint -Tools (Drawing) +Outils (dessin) 🖌Peindre - * Choose a brush on the right. + * Choisissez un pinceau sur la droite. * Some brushes are animated 🎞, some are directional ✲, some are both. * Change brush spacing with the bars 📶 at the bottom right. - * Choose a color (see "Colors"). + * Choisir une couleur (voir "Couleurs"). * Click/tap and drag in the canvas to paint. ⌧Tampons * Change categories with the arrow buttons ⇦⇨ near the bottom right. - * Choose a stamp on the right. - * Some stamps may be mirrored 🪞, and/or flipped ↕, using controls near the - bottom right. + * Choisis un tampon sur la droite. + * De nombreux tampons peuvent être affichés sous forme d'image miroir 🪞, et/ + ou retournés verticalement ↕ à l'aide des boutons de commande en bas à + droite. * Some stamps allow you to choose their color (see "Colors"). * Change stamp size with the bars 📶 at the bottom right. * Rotation ⟳ may be enabled, if desired. @@ -29,12 +30,12 @@ Tools (Drawing) ⚟Lignes - * (See Paint) + * (Voir Peindre) * Click/tap and drag to draw a line. ⭓Formes - * Choose a shape on the right. + * Choisissez une forme sur la droite. * Select whether you want to extend the shape from the center ⧈, or a corner ◰, using controls at the bottom right. * Click/tap to position, and drag to set the size of the shape. @@ -42,12 +43,12 @@ Tools (Drawing) 🄰Texte - * Choose a font on the right. + * Choisissez une fonte sur la droite. * Select whether you want the text bold 𝗔 and/or italic 𝘈, using controls near the bottom right. * Change text size using the up 🡁 and down 🡃 arrow buttons at the bottom right. - * Choose a color (see "Colors"). + * Choisir une couleur (voir "Couleurs"). * Click/tap the canvas to position an insertion cursor. * Enter text via your keyboard or the on-screen keyboard. * Click/tap the canvas again if you wish to reposition the text. @@ -55,14 +56,14 @@ Tools (Drawing) begin entering more text one line down. * Or, press [Tab] or click/tap or ⟷ to add the text to the drawing and continue entering more text immediately to the right. - * Using the on-screen keyboard: + * Utiliser clavier virtuel sur écran : + "Cmp" can be used to compose characters, e.g. Cmp ' a results in á. + "AltGr" can be used to quickly access more characters. + Left/Right arrows switches keyboard layouts (e.g., "QWERTY" vs. "ABC") 🅰Étiquette - * (See Text) + * (Voir texte) * Labels float 'above' the drawing; you cannot paint or stamp over them, apply Magic effects, etc. * Labels may be edited, repositioned, and styled after they've been added to @@ -74,10 +75,10 @@ Tools (Drawing) * Or, use the 🖑 button near the lower right to "flatten" a label, applying it to the canvas; it may no longer be edited with the Label tool. -🪣Fill +🪣Remplir - * Choose a fill mode on the right. - * Choose a color (see "Colors"). + * Choisissez un mode de remplissage sur la droite. + * Choisir une couleur (voir "Couleurs"). * Click/tap (and drag, with Brush and Linear modes) to fill an area of the picture with a color. + Solid - Flood-fills an area with a solid color @@ -92,7 +93,7 @@ Tools (Drawing) 🪄Magie - * Choose a magic tool on the right. + * Choisissez un outil magique sur la droite. * Change categories with the arrow buttons ⇦⇨ near the bottom right. * Some magic tools draw or apply effects via click/tap and drag 〰🪄, some affect the entire drawing 🖻🪄, and some offer both options; use the controls @@ -104,12 +105,12 @@ Tools (Drawing) 🖓Défaire * Use to undo the most recent changes (multiple undo available). - * Shortcut: [Ctrl]+[Z] + * Raccourci : [Ctrl]+[Z] 🖒Refaire * Use to redo the most recent undone change (multiple redo available). - * Shortcut: [Ctrl]+[R] + * Raccourci : [Ctrl]+[R] ◪Gomme @@ -118,7 +119,7 @@ Tools (Drawing) or template image). * Shortcut: [X] and click/tap in the drawing (not always available) -Tools (Controls) +Outils (Contrôles) 🗏Nouveau @@ -129,7 +130,7 @@ Tools (Controls) + Eraser tool ◪ reveals the solid color, or starter/template background. * Click/tap "🕮⮫Open" to begin a new drawing. * Click/tap "⤺Back" to abort and return to your current drawing. - * Shortcut: [Ctrl]+[N] + * Raccourci : [Ctrl]+[N] 🕮⮫Ouvrir @@ -148,7 +149,7 @@ Tools (Controls) your system's "Pictures" folder. + Click/tap "⤺Back" to return to the Open dialog. * Click/tap "🖻⮫🗏Template" to turn the drawing into a new template. - * Shortcut: [Ctrl]+[O] + * Raccourci : [Ctrl]+[O] 🕮⮪Sauvegarder @@ -156,21 +157,21 @@ Tools (Controls) * If you've saved previously, you'll be prompted whether to overwrite the previously-saved drawing (a la "File→Save") or create a new saved drawing (a la "File→Save As...") - * Shortcut: [Ctrl]+[S] + * Raccourci : [Ctrl]+[S] -🖶Print +🖶Imprimer * Click/tap to print your drawing. * Hold [Alt] or [Option] while clicking/tapping to bring up printer dialog, if available. * Shortcut: [Ctrl]+[P] -🗙Quit +🗙Quitter * Click/tap to quit Tux Paint. - * Shortcut: [Esc] + * Raccourci : [Esc] -Colors +Couleurs * Click/tap to choose a color to use with the Paint, Lines, and Shapes tools, and Stamps and Magic tools that support colors. @@ -194,17 +195,17 @@ Colors + Click/tap "🗑Clear" to start over with no mixed colors. + Click/tap "⤺Back" to abort and dismiss the color mixer. -Shortcuts while drawing: +Raccourcis quand on dessine : * [Ctrl]+Click/tap - Quick pipette / color picker 💉 access * [X]+Click/tap - Quick eraser ◪ access - * [Ctrl]+[Z] - 🖓Undo - * [Ctrl]+[R] - 🖒Redo - * [Ctrl]+[N] - 🗏New - * [Ctrl]+[O] - 🕮⮫Open - * [Ctrl]+[S] - 🕮⮪Save - * [Ctrl]+[P] - 🖶Print - * [Alt]+[S] - Toggle sound effects on/off + * [Ctrl]+[Z] - 🖓Défaire + * [Ctrl]+[R] - 🖒Refaire + * [Ctrl]+[N] - 🗏Nouveau + * [Ctrl]+[O] - 🕮⮫Ouvrir + * [Ctrl]+[S] - 🕮⮪Sauvegarder + * [Ctrl]+[P] - 🖶Imprimer + * [Alt]+[S] - Basculer effets sonores on/off * [Esc] - ⤺Back or 🗙Quit Last updated: juillet 19, 2023 diff --git a/docs/gl_ES.UTF-8/INSTALL.txt b/docs/gl_ES.UTF-8/INSTALL.txt index fd2a3e7b9..1cbe733f5 100644 --- a/docs/gl_ES.UTF-8/INSTALL.txt +++ b/docs/gl_ES.UTF-8/INSTALL.txt @@ -674,8 +674,8 @@ Simply, run: copied to /Applications. To create the DMG file for distribution, use 'make TuxPaint.dmg'. -Additional steps may be required when building for the Apple Silicon. See -"Building for Apple Silicon" below. +Additional steps are required when building a Unviersal Binary. See "Building a +Universal Binary" below. Known Issues @@ -758,36 +758,6 @@ they can only be built to run natively on the hardware on which they were built. See "Building a Universal Binary" below for instructions on how to build Tux Paint as a Universal Binary. -Building for Apple Silicon - -macOS for Apple Silicon requires all native Apple Silicon applications be -signed, even if it is signed "ad-hoc" (anonymously). Because of this, compilers -that produce native Apple Silicon applications sign all produced binaries and -libraries as a part of the compilation process.^* However, the Tux Paint -compilation process modifies the libraries to be modular (using -install_name_tool) so they can be added into the application bundle, which has -the unfortunate side effect of breaking the signature. This can be addressed by -signing the application bundle ad-hoc (example below) or using your own Apple -Developer Identity if you have one. The DMG file, if needed, must be created -after signing the App Bundle so the DMG file is created with signed App Bundle: - - $ codesign -s - TuxPaint.app - $ make TuxPaint.dmg - -^* For more information on the code signing requirements on the Apple Silicon, -see https://developer.apple.com/documentation/macos-release-notes/ -macos-big-sur-11_0_1-universal-apps-release-notes#:~:text= -New%20in%20macOS,pass%20through%20Gatekeeper. - -If you get an error that the application bundle is already signed, remove it -before signing: - - $ codesign --remove-signature TuxPaint.app - -If you plan to combine the Apple Silicon bundle with the Intel CPU bundle to -produce the Universal bundle, the code signing must be done after they are -combined. See "Building a Universal Binary" below. - Building a Universal Binary To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU @@ -795,12 +765,9 @@ and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the provided build-universal.sh script to combine the -two application bundles as below. The produced bundle must be signed (see -"Building for Apple Silicon" above for more details). The DMG file, if -required, must be built after the signing: +two application bundles as below. The DMG file can be built afterwards: $ macos/build-universal.sh - $ codesign -s - TuxPaint.app $ make TuxPaint.dmg ----------------------------------------------------------------------- diff --git a/docs/gl_ES.UTF-8/html/INSTALL.html b/docs/gl_ES.UTF-8/html/INSTALL.html index f35c4bb90..9cb243e28 100644 --- a/docs/gl_ES.UTF-8/html/INSTALL.html +++ b/docs/gl_ES.UTF-8/html/INSTALL.html @@ -1047,7 +1047,7 @@ ... to create the
- [Ctrl]+Click/tap - Quick pipette / color picker 💉 access
- [X]+Click/tap - Quick eraser ◪ access
-- [Ctrl]+[Z] - 🖓Undo
-- [Ctrl]+[R] - 🖒Redo
-- [Ctrl]+[N] - 🗏New
-- [Ctrl]+[O] - 🕮⮫Open
-- [Ctrl]+[S] - 🕮⮪Save
-- [Ctrl]+[P] - 🖶Print
-- [Alt]+[S] - Toggle sound effects on/off
+- [Ctrl]+[Z] - 🖓Défaire
+- [Ctrl]+[R] - 🖒Refaire
+- [Ctrl]+[N] - 🗏Nouveau
+- [Ctrl]+[O] - 🕮⮫Ouvrir
+- [Ctrl]+[S] - 🕮⮪Sauvegarder
+- [Ctrl]+[P] - 🖶Imprimer
+- [Alt]+[S] - Basculer effets sonores on/off
- [Esc] - ⤺Back or 🗙Quit
TuxPaint.appapplication bundle that can be run in-place or copied to/Applications. To create the DMG file for distribution, use 'make TuxPaint.dmg'.- Additional steps may be required when building for the Apple Silicon. See "Building for Apple Silicon" below.
+ Additional steps are required when building a Unviersal Binary. See "Building a Universal Binary" below.@@ -1127,28 +1127,6 @@ As of this writing, all libraries Tux Paint requires from MacPorts can be recompiled in this manner to run on macOS 10.10 Yosemite and later on Intel CPUs, and macOS 11.0 Big Sur and later on Apple Silicon. Unfortunately, although MacPorts has the option to enable the building of universal libraries, several libraries Tux Paint require cannot be built as universal libraries so they can only be built to run natively on the hardware on which they were built. See "Building a Universal Binary" below for instructions on how to build Tux Paint as a Universal Binary. -- -- - -- Building for Apple Silicon
-macOS for Apple Silicon requires all native Apple Silicon applications be signed, even if it is signed "ad-hoc" (anonymously). Because of this, compilers that produce native Apple Silicon applications sign all produced binaries and libraries as a part of the compilation process.* However, the Tux Paint compilation process modifies the libraries to be modular (using
install_name_tool) so they can be added into the application bundle, which has the unfortunate side effect of breaking the signature. This can be addressed by signing the application bundle ad-hoc (example below) or using your own Apple Developer Identity if you have one. The DMG file, if needed, must be created after signing the App Bundle so the DMG file is created with signed App Bundle:-- * For more information on the code signing requirements on the Apple Silicon, see https://developer.apple.com/documentation/macos-release-notes/macos-big-sur-11_0_1-universal-apps-release-notes#:~:text=New%20in%20macOS,pass%20through%20Gatekeeper. -- $ codesign -s - TuxPaint.app-
- $ make TuxPaint.dmg -If you get an error that the application bundle is already signed, remove it before signing:
-- -- $ codesign --remove-signature TuxPaint.app --If you plan to combine the Apple Silicon bundle with the Intel CPU bundle to produce the Universal bundle, the code signing must be done after they are combined. See "Building a Universal Binary" below.
-@@ -1156,10 +1134,9 @@
- To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the provided
build-universal.shscript to combine the two application bundles as below. The produced bundle must be signed (see "Building for Apple Silicon" above for more details). The DMG file, if required, must be built after the signing:+ To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the providedbuild-universal.shscript to combine the two application bundles as below. The DMG file can be built afterwards:diff --git a/docs/is_IS.UTF-8/INSTALL.txt b/docs/is_IS.UTF-8/INSTALL.txt index f10f1017d..0c9f026ea 100644 --- a/docs/is_IS.UTF-8/INSTALL.txt +++ b/docs/is_IS.UTF-8/INSTALL.txt @@ -665,8 +665,8 @@ Simply, run: copied to /Applications. To create the DMG file for distribution, use 'make TuxPaint.dmg'. -Additional steps may be required when building for the Apple Silicon. See -"Building for Apple Silicon" below. +Additional steps are required when building a Unviersal Binary. See "Building a +Universal Binary" below. Known Issues @@ -749,36 +749,6 @@ they can only be built to run natively on the hardware on which they were built. See "Building a Universal Binary" below for instructions on how to build Tux Paint as a Universal Binary. -Building for Apple Silicon - -macOS for Apple Silicon requires all native Apple Silicon applications be -signed, even if it is signed "ad-hoc" (anonymously). Because of this, compilers -that produce native Apple Silicon applications sign all produced binaries and -libraries as a part of the compilation process.^* However, the Tux Paint -compilation process modifies the libraries to be modular (using -install_name_tool) so they can be added into the application bundle, which has -the unfortunate side effect of breaking the signature. This can be addressed by -signing the application bundle ad-hoc (example below) or using your own Apple -Developer Identity if you have one. The DMG file, if needed, must be created -after signing the App Bundle so the DMG file is created with signed App Bundle: - - $ codesign -s - TuxPaint.app - $ make TuxPaint.dmg - -^* For more information on the code signing requirements on the Apple Silicon, -see https://developer.apple.com/documentation/macos-release-notes/ -macos-big-sur-11_0_1-universal-apps-release-notes#:~:text= -New%20in%20macOS,pass%20through%20Gatekeeper. - -If you get an error that the application bundle is already signed, remove it -before signing: - - $ codesign --remove-signature TuxPaint.app - -If you plan to combine the Apple Silicon bundle with the Intel CPU bundle to -produce the Universal bundle, the code signing must be done after they are -combined. See "Building a Universal Binary" below. - Building a Universal Binary To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU @@ -786,12 +756,9 @@ and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the provided build-universal.sh script to combine the -two application bundles as below. The produced bundle must be signed (see -"Building for Apple Silicon" above for more details). The DMG file, if -required, must be built after the signing: +two application bundles as below. The DMG file can be built afterwards: $ macos/build-universal.sh - $ codesign -s - TuxPaint.app $ make TuxPaint.dmg ----------------------------------------------------------------------- diff --git a/docs/is_IS.UTF-8/html/INSTALL.html b/docs/is_IS.UTF-8/html/INSTALL.html index f1c359adb..cddbebd98 100644 --- a/docs/is_IS.UTF-8/html/INSTALL.html +++ b/docs/is_IS.UTF-8/html/INSTALL.html @@ -1047,7 +1047,7 @@ ... to create the$ macos/build-universal.sh
- $ codesign -s - TuxPaint.app
$ make TuxPaint.dmgTuxPaint.appapplication bundle that can be run in-place or copied to/Applications. To create the DMG file for distribution, use 'make TuxPaint.dmg'.- Additional steps may be required when building for the Apple Silicon. See "Building for Apple Silicon" below.
+ Additional steps are required when building a Unviersal Binary. See "Building a Universal Binary" below.@@ -1127,28 +1127,6 @@ As of this writing, all libraries Tux Paint requires from MacPorts can be recompiled in this manner to run on macOS 10.10 Yosemite and later on Intel CPUs, and macOS 11.0 Big Sur and later on Apple Silicon. Unfortunately, although MacPorts has the option to enable the building of universal libraries, several libraries Tux Paint require cannot be built as universal libraries so they can only be built to run natively on the hardware on which they were built. See "Building a Universal Binary" below for instructions on how to build Tux Paint as a Universal Binary. -- -- - -- Building for Apple Silicon
-macOS for Apple Silicon requires all native Apple Silicon applications be signed, even if it is signed "ad-hoc" (anonymously). Because of this, compilers that produce native Apple Silicon applications sign all produced binaries and libraries as a part of the compilation process.* However, the Tux Paint compilation process modifies the libraries to be modular (using
install_name_tool) so they can be added into the application bundle, which has the unfortunate side effect of breaking the signature. This can be addressed by signing the application bundle ad-hoc (example below) or using your own Apple Developer Identity if you have one. The DMG file, if needed, must be created after signing the App Bundle so the DMG file is created with signed App Bundle:-- * For more information on the code signing requirements on the Apple Silicon, see https://developer.apple.com/documentation/macos-release-notes/macos-big-sur-11_0_1-universal-apps-release-notes#:~:text=New%20in%20macOS,pass%20through%20Gatekeeper. -- $ codesign -s - TuxPaint.app-
- $ make TuxPaint.dmg -If you get an error that the application bundle is already signed, remove it before signing:
-- -- $ codesign --remove-signature TuxPaint.app --If you plan to combine the Apple Silicon bundle with the Intel CPU bundle to produce the Universal bundle, the code signing must be done after they are combined. See "Building a Universal Binary" below.
-@@ -1156,10 +1134,9 @@
- To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the provided
build-universal.shscript to combine the two application bundles as below. The produced bundle must be signed (see "Building for Apple Silicon" above for more details). The DMG file, if required, must be built after the signing:+ To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the providedbuild-universal.shscript to combine the two application bundles as below. The DMG file can be built afterwards:diff --git a/docs/ja_JP.UTF-8/INSTALL.txt b/docs/ja_JP.UTF-8/INSTALL.txt index d46c97efa..4531c452d 100644 --- a/docs/ja_JP.UTF-8/INSTALL.txt +++ b/docs/ja_JP.UTF-8/INSTALL.txt @@ -665,8 +665,8 @@ Simply, run: copied to /Applications. To create the DMG file for distribution, use 'make TuxPaint.dmg'. -Additional steps may be required when building for the Apple Silicon. See -"Building for Apple Silicon" below. +Additional steps are required when building a Unviersal Binary. See "Building a +Universal Binary" below. Known Issues @@ -749,36 +749,6 @@ they can only be built to run natively on the hardware on which they were built. See "Building a Universal Binary" below for instructions on how to build Tux Paint as a Universal Binary. -Building for Apple Silicon - -macOS for Apple Silicon requires all native Apple Silicon applications be -signed, even if it is signed "ad-hoc" (anonymously). Because of this, compilers -that produce native Apple Silicon applications sign all produced binaries and -libraries as a part of the compilation process.^* However, the Tux Paint -compilation process modifies the libraries to be modular (using -install_name_tool) so they can be added into the application bundle, which has -the unfortunate side effect of breaking the signature. This can be addressed by -signing the application bundle ad-hoc (example below) or using your own Apple -Developer Identity if you have one. The DMG file, if needed, must be created -after signing the App Bundle so the DMG file is created with signed App Bundle: - - $ codesign -s - TuxPaint.app - $ make TuxPaint.dmg - -^* For more information on the code signing requirements on the Apple Silicon, -see https://developer.apple.com/documentation/macos-release-notes/ -macos-big-sur-11_0_1-universal-apps-release-notes#:~:text= -New%20in%20macOS,pass%20through%20Gatekeeper. - -If you get an error that the application bundle is already signed, remove it -before signing: - - $ codesign --remove-signature TuxPaint.app - -If you plan to combine the Apple Silicon bundle with the Intel CPU bundle to -produce the Universal bundle, the code signing must be done after they are -combined. See "Building a Universal Binary" below. - Building a Universal Binary To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU @@ -786,12 +756,9 @@ and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the provided build-universal.sh script to combine the -two application bundles as below. The produced bundle must be signed (see -"Building for Apple Silicon" above for more details). The DMG file, if -required, must be built after the signing: +two application bundles as below. The DMG file can be built afterwards: $ macos/build-universal.sh - $ codesign -s - TuxPaint.app $ make TuxPaint.dmg ----------------------------------------------------------------------- diff --git a/docs/ja_JP.UTF-8/html/INSTALL.html b/docs/ja_JP.UTF-8/html/INSTALL.html index 29ace98e9..ee6f9d6b8 100644 --- a/docs/ja_JP.UTF-8/html/INSTALL.html +++ b/docs/ja_JP.UTF-8/html/INSTALL.html @@ -1047,7 +1047,7 @@ ... to create the$ macos/build-universal.sh
- $ codesign -s - TuxPaint.app
$ make TuxPaint.dmgTuxPaint.appapplication bundle that can be run in-place or copied to/Applications. To create the DMG file for distribution, use 'make TuxPaint.dmg'.- Additional steps may be required when building for the Apple Silicon. See "Building for Apple Silicon" below.
+ Additional steps are required when building a Unviersal Binary. See "Building a Universal Binary" below.@@ -1127,28 +1127,6 @@ As of this writing, all libraries Tux Paint requires from MacPorts can be recompiled in this manner to run on macOS 10.10 Yosemite and later on Intel CPUs, and macOS 11.0 Big Sur and later on Apple Silicon. Unfortunately, although MacPorts has the option to enable the building of universal libraries, several libraries Tux Paint require cannot be built as universal libraries so they can only be built to run natively on the hardware on which they were built. See "Building a Universal Binary" below for instructions on how to build Tux Paint as a Universal Binary. -- -- - -- Building for Apple Silicon
-macOS for Apple Silicon requires all native Apple Silicon applications be signed, even if it is signed "ad-hoc" (anonymously). Because of this, compilers that produce native Apple Silicon applications sign all produced binaries and libraries as a part of the compilation process.* However, the Tux Paint compilation process modifies the libraries to be modular (using
install_name_tool) so they can be added into the application bundle, which has the unfortunate side effect of breaking the signature. This can be addressed by signing the application bundle ad-hoc (example below) or using your own Apple Developer Identity if you have one. The DMG file, if needed, must be created after signing the App Bundle so the DMG file is created with signed App Bundle:-- * For more information on the code signing requirements on the Apple Silicon, see https://developer.apple.com/documentation/macos-release-notes/macos-big-sur-11_0_1-universal-apps-release-notes#:~:text=New%20in%20macOS,pass%20through%20Gatekeeper. -- $ codesign -s - TuxPaint.app-
- $ make TuxPaint.dmg -If you get an error that the application bundle is already signed, remove it before signing:
-- -- $ codesign --remove-signature TuxPaint.app --If you plan to combine the Apple Silicon bundle with the Intel CPU bundle to produce the Universal bundle, the code signing must be done after they are combined. See "Building a Universal Binary" below.
-@@ -1156,10 +1134,9 @@
- To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the provided
build-universal.shscript to combine the two application bundles as below. The produced bundle must be signed (see "Building for Apple Silicon" above for more details). The DMG file, if required, must be built after the signing:+ To build Tux Paint as a Universal Binary, compile Tux Paint for the Intel CPU and the Apple Silicon separately first. Then rename the app bundle for the Intel CPU to TuxPaint-x86_64.app, and the bundle for the Apple Silicon to TuxPaint-arm64.app, copy the app bundle from the Intel machine to the Apple Silicon machine, then use the providedbuild-universal.shscript to combine the two application bundles as below. The DMG file can be built afterwards:diff --git a/magic/magic-docs/fr_FR.UTF-8/html/3dglasses.html b/magic/magic-docs/fr_FR.UTF-8/html/3dglasses.html index 460fccfe4..b098561c6 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/3dglasses.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/3dglasses.html @@ -1,16 +1,16 @@ -$ macos/build-universal.sh
- $ codesign -s - TuxPaint.app
$ make TuxPaint.dmgTux Paint "Magic" Tool: 3D Glasses +Outil 'Magie' de Tux Paint : Lunettes 3D -Tux Paint "Magic" Tool: 3D Glasses
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Lunettes 3D
+Groupe: Color Filters
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This tool horizontally separates your entire picture's red and cyan color channels, letting you create anaglyphic pictures that can be viewed with 3D glasses.
This tool is operated in a freehand fashion.
-See also: Color Sep. & Double Vision.
+See also: Color Sep. & Vision double.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/blinds.html b/magic/magic-docs/fr_FR.UTF-8/html/blinds.html index 30bd914d7..0e363e00f 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/blinds.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/blinds.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Blind +Outil 'Magie' de Tux Paint : Store -Tux Paint "Magic" Tool: Blind
-Group: Picture Decorations
-Author: +
Outil 'Magie' de Tux Paint : Store
+Groupe: Décorations des images
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Click towards the edge of your picture to pull window blinds over it. Move perpendicularly to open or close the blinds.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/blocks.html b/magic/magic-docs/fr_FR.UTF-8/html/blocks.html index 136232de6..91217cfe5 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/blocks.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/blocks.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Blocks +Outil 'Magie' de Tux Paint : Blocs -Tux Paint "Magic" Tool: Blocks
-Group: Distorts
-Authors: +
Outil 'Magie' de Tux Paint : Blocs
+Groupe: Distorsions
+Auteurs : Bill Kendrick <bill@newbreedsoftware.com>
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/bloom.html b/magic/magic-docs/fr_FR.UTF-8/html/bloom.html index 4abaccb0c..64db0cf65 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/bloom.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/bloom.html @@ -1,11 +1,11 @@ -
Albert Cahalan <albert@users.sf.net>
Tux Paint "Magic" Tool: Bloom +Outil 'Magie' de Tux Paint : Fleurir -Tux Paint "Magic" Tool: Bloom
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Fleurir
+Groupe: Color Filters
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Add a glowing "bloom" effect to pictures.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/blur.html b/magic/magic-docs/fr_FR.UTF-8/html/blur.html index 6c29d13bd..ee1b8bb01 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/blur.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/blur.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Flou +Outil 'Magie' de Tux Paint : Flou -Tux Paint "Magic" Tool: Flou
-Group: Distorts
-Authors: +
Outil 'Magie' de Tux Paint : Flou
+Groupe: Distorsions
+Auteurs : Bill Kendrick <bill@newbreedsoftware.com>
@@ -13,7 +13,7 @@ Albert Cahalan <albert@users.sf.net&
Albert Cahalan <albert@users.sf.net>
This tool offers both freehand and one-click operation.
This tool offers multiple size settings.
- +
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/bricks.html b/magic/magic-docs/fr_FR.UTF-8/html/bricks.html index 543106400..799cd1dbd 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/bricks.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/bricks.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Briques +Outil 'Magie' de Tux Paint : Briques -Tux Paint "Magic" Tool: Briques
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Briques
+Groupe: Peindre
+Auteur : Albert Cahalan <albert@users.sf.net>
These two tools intelligently paint large and small brick patterns on the canvas. The bricks can be tinted various redish hues by selecting different colors in the color palette.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/calligraphy.html b/magic/magic-docs/fr_FR.UTF-8/html/calligraphy.html index fb923a782..c4a16441a 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/calligraphy.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/calligraphy.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Calligraphie +Outil 'Magie' de Tux Paint : Calligraphie -Tux Paint "Magic" Tool: Calligraphie
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Calligraphie
+Groupe: Peindre
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This paints on the canvas with a calligraphy pen. The quicker you move, the thinner the lines.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/cartoon.html b/magic/magic-docs/fr_FR.UTF-8/html/cartoon.html index ad250bfd1..cbc7442c4 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/cartoon.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/cartoon.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Cartoon +Outil 'Magie' de Tux Paint : B.D. -Tux Paint "Magic" Tool: Cartoon
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : B.D.
+Groupe: Color Filters
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This makes the picture look like a cartoon — with thick outlines and bright, solid colors — wherever you move the mouse.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/chalk.html b/magic/magic-docs/fr_FR.UTF-8/html/chalk.html index b4fd6deb8..d50cb507c 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/chalk.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/chalk.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Craie +Outil 'Magie' de Tux Paint : Craie -Tux Paint "Magic" Tool: Craie
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Craie
+Groupe: Distorsions
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This makes parts of the picture (where you move the mouse) look like a chalk drawing.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/checkerboard.html b/magic/magic-docs/fr_FR.UTF-8/html/checkerboard.html index f5bc34d1f..6b5a62673 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/checkerboard.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/checkerboard.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Damier +Outil 'Magie' de Tux Paint : Damier -Tux Paint "Magic" Tool: Damier
-Group: Picture Decorations
-Author: +
Outil 'Magie' de Tux Paint : Damier
+Groupe: Décorations des images
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This covers the entire canvas with a checkboard pattern using the current color. Drag to change the size of the squares.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/circles.html b/magic/magic-docs/fr_FR.UTF-8/html/circles.html index 8e1026fdb..5c944fcfd 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/circles.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/circles.html @@ -1,16 +1,16 @@ -
Tux Paint "Magic" Tool: Circles +Outil 'Magie' de Tux Paint : Cercles -Tux Paint "Magic" Tool: Circles
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Cercles
+Groupe: Distorsions
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This transforms the picture into circular brush strokes around where you clicked.
This tool offers both freehand and one-click operation.
-See also: Rays.
+See also: Raies.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/clone.html b/magic/magic-docs/fr_FR.UTF-8/html/clone.html index 621648534..1b9121adc 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/clone.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/clone.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Clone +Outil 'Magie' de Tux Paint : Cloner -Tux Paint "Magic" Tool: Clone
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Cloner
+Groupe: Distorsions
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Clone (copy, via painting) part of the picture. Click ones to choose the source, then click and drag to clone it elsewhere in the drawing. Once you release, click to choose another source and start again.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/color_and_white.html b/magic/magic-docs/fr_FR.UTF-8/html/color_and_white.html index 8b5ea9bf3..af8dec127 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/color_and_white.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/color_and_white.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Color and White +Outil 'Magie' de Tux Paint : Color and White -Tux Paint "Magic" Tool: Color and White
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Color and White
+Groupe: Color Filters
+Auteur : Andrew Corcoran <akanewbie@gmail.com>
This makes parts of your picture two colors: white, and the color chosen in the palette. (i.e., if you choose black, you'll get a black and white picture).
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/color_shift.html b/magic/magic-docs/fr_FR.UTF-8/html/color_shift.html index 24b736af8..eac03676c 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/color_shift.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/color_shift.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Color Shift +Outil 'Magie' de Tux Paint : Color Shift -Tux Paint "Magic" Tool: Color Shift
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Color Shift
+Groupe: Color Filters
+Auteur : Andrew Corcoran <akanewbie@gmail.com>
This shifts the colors in your picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/colorsep.html b/magic/magic-docs/fr_FR.UTF-8/html/colorsep.html index f1cb6ba9c..40319ddd9 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/colorsep.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/colorsep.html @@ -1,16 +1,16 @@ -
Tux Paint "Magic" Tool: Color Sep. +Outil 'Magie' de Tux Paint : Color Sep. -Tux Paint "Magic" Tool: Color Sep.
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Color Sep.
+Groupe: Color Filters
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This tool separates one color out of your entire picture, shifting colors away from each other (similar to '3D Glasses', but you may choose the any color to separate, and may move in any direction).
This tool is operated in a freehand fashion.
-See also: 3D Glasses & Double Vision.
+See also: Lunettes 3D & Vision double.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/confetti.html b/magic/magic-docs/fr_FR.UTF-8/html/confetti.html index 84ce628da..6ac6d82f5 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/confetti.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/confetti.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Confettis +Outil 'Magie' de Tux Paint : Confettis -Tux Paint "Magic" Tool: Confettis
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Confettis
+Groupe: Peindre
+Auteur : Adam Rakowski <foo-script@o2.pl>
Throw confetti around your picture!
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/darken.html b/magic/magic-docs/fr_FR.UTF-8/html/darken.html index 92c0672d6..7587a2635 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/darken.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/darken.html @@ -1,17 +1,17 @@ -
Tux Paint "Magic" Tool: Assombrir +Outil 'Magie' de Tux Paint : Assombrir -Tux Paint "Magic" Tool: Assombrir
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Assombrir
+Groupe: Color Filters
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This darkens the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become black.)
This tool offers both freehand and one-click operation.
This tool offers multiple size settings.
-See also: Éclaircir, Tint, Saturate, & Desaturate.
+See also: Éclaircir, Teinter, Saturer, & Désaturer.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/desaturate.html b/magic/magic-docs/fr_FR.UTF-8/html/desaturate.html index 29ea6f735..9653bc7f6 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/desaturate.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/desaturate.html @@ -1,17 +1,17 @@ -Tux Paint "Magic" Tool: Desaturate +Outil 'Magie' de Tux Paint : Désaturer -Tux Paint "Magic" Tool: Desaturate
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Désaturer
+Groupe: Color Filters
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This desaturates the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become greyscale.)
This tool offers both freehand and one-click operation.
This tool offers multiple size settings.
-See also: Saturate, Assombrir, Éclaircir, Tint, Remove Color, & Keep Color.
+See also: Saturer, Assombrir, Éclaircir, Teinter, Remove Color, & Keep Color.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/distortion.html b/magic/magic-docs/fr_FR.UTF-8/html/distortion.html index e8db6b1a9..545b1616f 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/distortion.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/distortion.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Distorsion +Outil 'Magie' de Tux Paint : Distorsion -Tux Paint "Magic" Tool: Distorsion
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Distorsion
+Groupe: Distorsions
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This slightly distorts the picture wherever you move the mouse.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/doublevision.html b/magic/magic-docs/fr_FR.UTF-8/html/doublevision.html index c4ba07d93..1f471c36e 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/doublevision.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/doublevision.html @@ -1,16 +1,16 @@ -
Tux Paint "Magic" Tool: Double Vision +Outil 'Magie' de Tux Paint : Vision double -Tux Paint "Magic" Tool: Double Vision
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Vision double
+Groupe: Color Filters
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This blends the image with itself, to simulate double vision.
This tool is operated in a freehand fashion.
-See also: 3D Glasses & Double Vision.
+See also: Lunettes 3D & Vision double.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/drip.html b/magic/magic-docs/fr_FR.UTF-8/html/drip.html index 95f69765e..754062be6 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/drip.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/drip.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Goutte +Outil 'Magie' de Tux Paint : Goutte -Tux Paint "Magic" Tool: Goutte
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Goutte
+Groupe: Distorsions
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This makes the paint "drip" wherever you move the mouse.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/edges.html b/magic/magic-docs/fr_FR.UTF-8/html/edges.html index fcc98f7b9..e41a62ae5 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/edges.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/edges.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Edges +Outil 'Magie' de Tux Paint : Bords -Tux Paint "Magic" Tool: Edges
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Bords
+Groupe: Distorsions
+Auteur : Andrew Corcoran <akanewbie@gmail.com>
Trace the edges in your picture, over a white background.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/emboss.html b/magic/magic-docs/fr_FR.UTF-8/html/emboss.html index e608a1895..ab720491d 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/emboss.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/emboss.html @@ -1,17 +1,17 @@ -
Tux Paint "Magic" Tool: Relief +Outil 'Magie' de Tux Paint : Relief -Tux Paint "Magic" Tool: Relief
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Relief
+Groupe: Distorsions
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This makes parts of your picture look "embossed." Wherever there are sharp edges in your picture, the picture will look raised like it was stamped in metal.
This tool offers both freehand and one-click operation.
This tool offers multiple size settings.
-See also: Edges & Silhouette.
+See also: Bords & Silhouette.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/fisheye.html b/magic/magic-docs/fr_FR.UTF-8/html/fisheye.html index c60f2ed3d..336f0f9e7 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/fisheye.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/fisheye.html @@ -1,17 +1,17 @@ -Tux Paint "Magic" Tool: Oeil de poisson +Outil 'Magie' de Tux Paint : Oeil de poisson -Tux Paint "Magic" Tool: Oeil de poisson
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Oeil de poisson
+Groupe: Distorsions
+Auteur : Adam Rakowski <foo-script@o2.pl>
Warp parts of your picture like it's being seen through a fisheye lens.
This tool is operated in a freehand fashion.
This tool offers multiple size settings.
-See also: Ripples.
+See also: Ondes.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/flip.html b/magic/magic-docs/fr_FR.UTF-8/html/flip.html index c194a10a5..4702b0bf3 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/flip.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/flip.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Flip +Outil 'Magie' de Tux Paint : Renverser -Tux Paint "Magic" Tool: Flip
-Group: Picture Warps
-Author: +
Outil 'Magie' de Tux Paint : Renverser
+Groupe: Picture Warps
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Similar to "Mirror." Click and the entire image will be turned upside-down.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/flower.html b/magic/magic-docs/fr_FR.UTF-8/html/flower.html index 4120ab215..54e3fc5fc 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/flower.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/flower.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Fleur +Outil 'Magie' de Tux Paint : Fleur -Tux Paint "Magic" Tool: Fleur
-Group: Artistic
-Author: +
Outil 'Magie' de Tux Paint : Fleur
+Groupe: Artistique
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This tool draws small flowers, with leafy bases and stalks. Click to set the base, then drag the mouse upwards to draw the stalk, and finally release the mouse button to finish the flower. It will be drawn in the currently-selected color. The shape and length of the stalk depends on how you move the mouse while you drag.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/foam.html b/magic/magic-docs/fr_FR.UTF-8/html/foam.html index 6a0f45a79..a8f467c68 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/foam.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/foam.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Mousse +Outil 'Magie' de Tux Paint : Mousse -Tux Paint "Magic" Tool: Mousse
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Mousse
+Groupe: Peindre
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Click and drag the mouse to draw foamy bubbles. The more you drag the mouse in a particular spot, the more likely small bubbles will combine to form bigger bubbles.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/fold.html b/magic/magic-docs/fr_FR.UTF-8/html/fold.html index dfc1332e3..50e92c9b4 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/fold.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/fold.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Plier +Outil 'Magie' de Tux Paint : Plier -Tux Paint "Magic" Tool: Plier
-Group: Picture Warps
-Authors: +
Outil 'Magie' de Tux Paint : Plier
+Groupe: Picture Warps
+Auteurs : Adam Rakowski <foo-script@o2.pl>
Bill Kendrick <bill@newbreedsoftware.com>
Pere Pujal i Carabantes <pere@fornol.no-ip.org>
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/fretwork.html b/magic/magic-docs/fr_FR.UTF-8/html/fretwork.html index 16ebe1d52..bc24b1385 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/fretwork.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/fretwork.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Frise +Outil 'Magie' de Tux Paint : Frise -Tux Paint "Magic" Tool: Frise
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Frise
+Groupe: Peindre
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Draw an interlaced decorative design that looks like wooden fretwork.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/fur.html b/magic/magic-docs/fr_FR.UTF-8/html/fur.html index ffc037e26..3e31775d1 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/fur.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/fur.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Fur +Outil 'Magie' de Tux Paint : Fourrure -Tux Paint "Magic" Tool: Fur
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Fourrure
+Groupe: Peindre
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Add fur to your drawing.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/glass_tile.html b/magic/magic-docs/fr_FR.UTF-8/html/glass_tile.html index e69de402e..33a68edc3 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/glass_tile.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/glass_tile.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Glass Tile +Outil 'Magie' de Tux Paint : Carreau de verre -Tux Paint "Magic" Tool: Glass Tile
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Carreau de verre
+Groupe: Distorsions
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Click and drag over your picture to make it look like it's being seen through glass tiles.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/googlyeyes.html b/magic/magic-docs/fr_FR.UTF-8/html/googlyeyes.html index ebc92df45..76479bfde 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/googlyeyes.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/googlyeyes.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Googly Eyes +Outil 'Magie' de Tux Paint : Yeux écarquillés -Tux Paint "Magic" Tool: Googly Eyes
-Group: Artistic
-Author: +
Outil 'Magie' de Tux Paint : Yeux écarquillés
+Groupe: Artistique
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Draws a googly eye where you click. Drag to position the pupil.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/grass.html b/magic/magic-docs/fr_FR.UTF-8/html/grass.html index c3f21ddd8..8b1cc3873 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/grass.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/grass.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Herbe +Outil 'Magie' de Tux Paint : Herbe -Tux Paint "Magic" Tool: Herbe
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Herbe
+Groupe: Peindre
+Auteur : Albert Cahalan <albert@users.sf.net>
This paints grass on the image. The higher up the canvas, the smaller the grass is drawn, giving an illusion of perspective. The grass can be tinted various greenish hues by selecting different colors in the color palette.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/halftone.html b/magic/magic-docs/fr_FR.UTF-8/html/halftone.html index ecd0da2c9..a763e338b 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/halftone.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/halftone.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Halftone +Outil 'Magie' de Tux Paint : Halftone -Tux Paint "Magic" Tool: Halftone
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Halftone
+Groupe: Distorsions
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This makes parts of your picture look like newsprint. Different sizes of cyan, magenta, yellow, and black "ink" will appear in place of your picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/hexagon_mosaic.html b/magic/magic-docs/fr_FR.UTF-8/html/hexagon_mosaic.html index df133d98e..150701d34 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/hexagon_mosaic.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/hexagon_mosaic.html @@ -1,16 +1,16 @@ -
Tux Paint "Magic" Tool: Hexagon Mosaic +Outil 'Magie' de Tux Paint : Mosaïque hexagonale -Tux Paint "Magic" Tool: Hexagon Mosaic
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Mosaïque hexagonale
+Groupe: Distorsions
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Converts parts of your picture into a mosaic of hexagon cells.
This tool offers both freehand and one-click operation.
-See also: Irregular Mosaic, Square Mosaic, & Mosaic.
+See also: Mosaïque irrégulière, Mosaïque carrée, & Mosaïque.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/index.html b/magic/magic-docs/fr_FR.UTF-8/html/index.html index f156c7288..e9cf70769 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/index.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/index.html @@ -1,97 +1,97 @@ -Tux Paint "Magic" Tool: List of Magic Tools +Outil 'Magie' de Tux Paint : Lite des outils Magie -Tux Paint "Magic" Tool: List of Magic Tools
-Distorts
+Outil 'Magie' de Tux Paint : Lite des outils Magie
+Distorsions
-
- Blocks
-- Circles
-- Clone
+- Affiner
+- Baver
+- Blocs
+- Bords
+- Carreau de verre
+- Cercles
+- Cloner
- Craie
- Distorsion
-- Edges
- Flou
-- Glass Tile
- Goutte
- Halftone
-- Hexagon Mosaic
-- Irregular Mosaic
-- Mosaic
-- Noise
+- Mosaïque
+- Mosaïque carrée
+- Mosaïque hexagonale
+- Mosaïque irrégulière
- Oeil de poisson
+- Ondes
+- Parasites
- Puzzle
-- Rays
+- Raies
- Relief
-- Ripples
-- Sharpen
- Silhouette
-- Smudge
-- Square Mosaic
- TV
- TV (Bright)
Color Filters
-
- 3D Glasses
- Assombrir
-- Bloom
-- Cartoon
+- B.D.
- Color and White
- Color Sep.
- Color Shift
-- Desaturate
-- Double Vision
+- Complémentaire
+- Couleurs Xor
+- Désaturer
- Éclaircir
+- Fleurir
- Keep Color
-- Negative
-- Opposite
+- Lunettes 3D
+- Négatif
- Remove Color
-- Saturate
-- Tint
-- Xor Colors
+- Saturer
+- Teinter
+- Vision double
Picture Warps
-
-- Flip
-- Kaleido-4, Kaleido-6, and Kaleido-8
+- Étirer
+- Kaleido-4, Kaleido-6, et Kaleido-8
- Miroir
- Panneaux
- Perspective
- Plier
- Reflection
+- Renverser
- Rush
- Shift
-- Stretch
-- Tile Zoom
- Vaguelettes
- Vagues
- Zoom
+- Zoom tuile
Painting
+Peindre
- Arc-en-ciel
- Arc-en-ciel lent
+- Boucles
- Briques
- Calligraphie
- Confettis
- Dentifrice
+- Fourrure
- Frise
-- Fur
+- Gribouillis
- Herbe
-- Loops
+- Labyrinthe
- Lumière
-- Maze
- Mousse
- Peinture métallique
- Pixels
- Pluie
- Rails
- Rainbow Cycle
-- Ribbon
+- Ruban
- Smooth
-- Squiggles
- Wet Paint
Pattern Painting
@@ -104,14 +104,14 @@- Symétrie H/B
- Tuiles
Picture Decorations
+Décorations des images
-Artistic
+Artistique
- Arc-en-ciel réel
- Arc-en-ciel simple
@@ -120,8 +120,8 @@- Ficelles (2)
- Ficelles (3)
- Fleur
-- Googly Eyes
- Tornade
+- Yeux écarquillés
Tux Paint 0.9.31
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/irregular_mosaic.html b/magic/magic-docs/fr_FR.UTF-8/html/irregular_mosaic.html index 184355fbb..6c294f954 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/irregular_mosaic.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/irregular_mosaic.html @@ -1,16 +1,16 @@ -Tux Paint "Magic" Tool: Irregular Mosaic +Outil 'Magie' de Tux Paint : Mosaïque irrégulière -Tux Paint "Magic" Tool: Irregular Mosaic
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Mosaïque irrégulière
+Groupe: Distorsions
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Converts parts of your picture into a mosaic of irregularly-shaped cells.
This tool offers both freehand and one-click operation.
-See also: Hexagon Mosaic, Square Mosaic, & Mosaic.
+See also: Mosaïque hexagonale, Mosaïque carrée, & Mosaïque.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope.html b/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope.html index 5b87b9fbe..28b7480b2 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope.html @@ -1,17 +1,17 @@ -Tux Paint "Magic" Tool: Kaléidoscope +Outil 'Magie' de Tux Paint : Kaléidoscope -Tux Paint "Magic" Tool: Kaléidoscope
-Group: Pattern Painting
-Author: +
Outil 'Magie' de Tux Paint : Kaléidoscope
+Groupe: Pattern Painting
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This paint brush draws in four places at the same time, mirroring symmetrically, both horizontally and vertically. It uses the currently selected color.
This tool is operated in a freehand fashion.
This tool offers multiple size settings.
-See also: Picasso, Rosace, & Kaleido-4, Kaleido-6, and Kaleido-8.
+See also: Picasso, Rosace, & Kaleido-4, Kaleido-6, et Kaleido-8.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope_lens.html b/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope_lens.html index 918819bb0..3812fc838 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope_lens.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/kaleidoscope_lens.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Kaleido-4, Kaleido-6, and Kaleido-8 +Outil 'Magie' de Tux Paint : Kaleido-4, Kaleido-6, et Kaleido-8 -Tux Paint "Magic" Tool: Kaleido-4, Kaleido-6, and Kaleido-8
-Group: Picture Warps
-Author: +
Outil 'Magie' de Tux Paint : Kaleido-4, Kaleido-6, et Kaleido-8
+Groupe: Picture Warps
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
These three tools make it look like your picture is being viewed through a kaleidoscope.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/keep_color.html b/magic/magic-docs/fr_FR.UTF-8/html/keep_color.html index 7c279d1ce..3620634e0 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/keep_color.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/keep_color.html @@ -1,17 +1,17 @@ -
Tux Paint "Magic" Tool: Keep Color +Outil 'Magie' de Tux Paint : Keep Color -Tux Paint "Magic" Tool: Keep Color
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Keep Color
+Groupe: Color Filters
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This completely desaturates (turns greyscale) any parts of the image that do not match the selected color.
This tool offers both freehand and one-click operation.
This tool offers multiple size settings.
-See also: Remove Color, Saturate, Desaturate, Assombrir, Éclaircir, Tint, & Remove Color.
+See also: Remove Color, Saturer, Désaturer, Assombrir, Éclaircir, Teinter, & Remove Color.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/light.html b/magic/magic-docs/fr_FR.UTF-8/html/light.html index b1c4b96d0..b84590f02 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/light.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/light.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Lumière +Outil 'Magie' de Tux Paint : Lumière -Tux Paint "Magic" Tool: Lumière
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Lumière
+Groupe: Peindre
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This draws a glowing beam on the canvas, in the currently-selected color. The more you use it on one spot, the more white it becomes.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/lighten.html b/magic/magic-docs/fr_FR.UTF-8/html/lighten.html index 339551218..e916eae70 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/lighten.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/lighten.html @@ -1,17 +1,17 @@ -
Tux Paint "Magic" Tool: Éclaircir +Outil 'Magie' de Tux Paint : Éclaircir -Tux Paint "Magic" Tool: Éclaircir
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Éclaircir
+Groupe: Color Filters
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This fades the colors wherever you drag the mouse. (Do it to the same spot many times, and it will eventually become white.)
This tool offers both freehand and one-click operation.
This tool offers multiple size settings.
-See also: Assombrir, Tint, Saturate, & Desaturate.
+See also: Assombrir, Teinter, Saturer, & Désaturer.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/lightning.html b/magic/magic-docs/fr_FR.UTF-8/html/lightning.html index 4f5cb557b..66a6243e9 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/lightning.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/lightning.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Éclaircir +Outil 'Magie' de Tux Paint : Éclaircir -Tux Paint "Magic" Tool: Éclaircir
-Group: Artistic
-Author: +
Outil 'Magie' de Tux Paint : Éclaircir
+Groupe: Artistique
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Draws a lightning bolt between two points on the picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/loops.html b/magic/magic-docs/fr_FR.UTF-8/html/loops.html index bf5697ae3..57f6dc609 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/loops.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/loops.html @@ -1,17 +1,17 @@ -
Tux Paint "Magic" Tool: Loops +Outil 'Magie' de Tux Paint : Boucles -Tux Paint "Magic" Tool: Loops
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Boucles
+Groupe: Peindre
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Draw loop-the-loops on the canvas, in the currently-selected color.
This tool is operated in a freehand fashion.
This tool offers multiple size settings.
- +See also: Smooth & Gribouillis.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/maze.html b/magic/magic-docs/fr_FR.UTF-8/html/maze.html index a5fd3382f..2013f5457 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/maze.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/maze.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Maze +Outil 'Magie' de Tux Paint : Labyrinthe -Tux Paint "Magic" Tool: Maze
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Labyrinthe
+Groupe: Peindre
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Click and drag to construct a maze on your picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/metal_paint.html b/magic/magic-docs/fr_FR.UTF-8/html/metal_paint.html index 04e652ccd..536bfe3f0 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/metal_paint.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/metal_paint.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Peinture métallique +Outil 'Magie' de Tux Paint : Peinture métallique -Tux Paint "Magic" Tool: Peinture métallique
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Peinture métallique
+Groupe: Peindre
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Click and drag to draw shiny metal using the current color.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/mirror.html b/magic/magic-docs/fr_FR.UTF-8/html/mirror.html index 6d337af51..5e94ade1f 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/mirror.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/mirror.html @@ -1,16 +1,16 @@ -
Tux Paint "Magic" Tool: Miroir +Outil 'Magie' de Tux Paint : Miroir -Tux Paint "Magic" Tool: Miroir
-Group: Picture Warps
-Author: +
Outil 'Magie' de Tux Paint : Miroir
+Groupe: Picture Warps
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
When you click the mouse in your picture with the "Mirror" magic effect selected, the entire image will be reversed, turning it into a mirror image.
This tool is operated with a single click.
-See also: Flip.
+See also: Renverser.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/mosaic.html b/magic/magic-docs/fr_FR.UTF-8/html/mosaic.html index e6455e405..23352b603 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/mosaic.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/mosaic.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Mosaic +Outil 'Magie' de Tux Paint : Mosaïque -Tux Paint "Magic" Tool: Mosaic
-Group: Distorts
-Authors: +
Outil 'Magie' de Tux Paint : Mosaïque
+Groupe: Distorsions
+Auteurs : Adam Rakowski <foo-script@o2.pl>
@@ -13,7 +13,7 @@ Pere Pujal i Carabantes <pere@fornol.n
Pere Pujal i Carabantes <pere@fornol.no-ip.org>
This tool offers both freehand and one-click operation.
This tool offers multiple size settings.
-See also: Hexagon Mosaic, Irregular Mosaic, & Square Mosaic.
+See also: Mosaïque hexagonale, Mosaïque irrégulière, & Mosaïque carrée.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/negative.html b/magic/magic-docs/fr_FR.UTF-8/html/negative.html index 289140478..2e12fa454 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/negative.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/negative.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Negative +Outil 'Magie' de Tux Paint : Négatif -Tux Paint "Magic" Tool: Negative
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Négatif
+Groupe: Color Filters
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This inverts the colors wherever you drag the mouse. (e.g., white becomes black, and vice versa.) It inverts the values of the Red, Green, and Blue components of the pixels.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/noise.html b/magic/magic-docs/fr_FR.UTF-8/html/noise.html index a48d2b974..e990ccc01 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/noise.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/noise.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Noise +Outil 'Magie' de Tux Paint : Parasites -Tux Paint "Magic" Tool: Noise
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Parasites
+Groupe: Distorsions
+Auteur : Andrew Corcoran <akanewbie@gmail.com>
Add random noise and static to your picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/opposite.html b/magic/magic-docs/fr_FR.UTF-8/html/opposite.html index 1fb8af1d9..c4c219c11 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/opposite.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/opposite.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Opposite +Outil 'Magie' de Tux Paint : Complémentaire -Tux Paint "Magic" Tool: Opposite
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Complémentaire
+Groupe: Color Filters
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This converts the colors wherever you drag the mouse into their complementary (opposite) colors. (e.g., blue becomes orange, and vice versa.) It changes the Hue compoment of the pixels, without affecting the Saturation or Lightness.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/panels.html b/magic/magic-docs/fr_FR.UTF-8/html/panels.html index be2cc1e7d..4ce199e55 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/panels.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/panels.html @@ -1,16 +1,16 @@ -
Tux Paint "Magic" Tool: Panneaux +Outil 'Magie' de Tux Paint : Panneaux -Tux Paint "Magic" Tool: Panneaux
-Group: Picture Warps
-Author: +
Outil 'Magie' de Tux Paint : Panneaux
+Groupe: Picture Warps
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Shrink the image and repeat it four times in a 2-by-2 grid. Useful for creating 4-panel comics. Can also be used to create a compound-eye effect.
This tool is operated with a single click.
-See also: Tile Zoom.
+See also: Zoom tuile.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/pattern.html b/magic/magic-docs/fr_FR.UTF-8/html/pattern.html index 518b0f151..8244ac972 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/pattern.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/pattern.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Motif +Outil 'Magie' de Tux Paint : Motif -Tux Paint "Magic" Tool: Motif
-Group: Pattern Painting
-Author: +
Outil 'Magie' de Tux Paint : Motif
+Groupe: Pattern Painting
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Draws a tiled pattern around the picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/perspective.html b/magic/magic-docs/fr_FR.UTF-8/html/perspective.html index b7367b205..0afcb7f10 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/perspective.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/perspective.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Perspective +Outil 'Magie' de Tux Paint : Perspective -Tux Paint "Magic" Tool: Perspective
-Group: Picture Warps
-Author: +
Outil 'Magie' de Tux Paint : Perspective
+Groupe: Picture Warps
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Click and drag from the corners to change the perspective of your picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/picasso.html b/magic/magic-docs/fr_FR.UTF-8/html/picasso.html index cc427d60a..3100f068c 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/picasso.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/picasso.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Picasso +Outil 'Magie' de Tux Paint : Picasso -Tux Paint "Magic" Tool: Picasso
-Group: Pattern Painting
-Author: +
Outil 'Magie' de Tux Paint : Picasso
+Groupe: Pattern Painting
+Auteur : Adam Rakowski <foo-script@o2.pl>
Draw three swirling brushes at once, in a Picasso style.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/pixels.html b/magic/magic-docs/fr_FR.UTF-8/html/pixels.html index d7ab5b9d1..a88734833 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/pixels.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/pixels.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Pixels +Outil 'Magie' de Tux Paint : Pixels -Tux Paint "Magic" Tool: Pixels
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Pixels
+Groupe: Peindre
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Draw large square "pixels" on the canvas.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/puzzle.html b/magic/magic-docs/fr_FR.UTF-8/html/puzzle.html index eaebbdd5f..8d26cba14 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/puzzle.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/puzzle.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Puzzle +Outil 'Magie' de Tux Paint : Puzzle -Tux Paint "Magic" Tool: Puzzle
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Puzzle
+Groupe: Distorsions
+Auteur : Adam Rakowski <foo-script@o2.pl>
Slide parts of your picture around like a sliding puzzle.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/rails.html b/magic/magic-docs/fr_FR.UTF-8/html/rails.html index de62d3f84..55cdca44b 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/rails.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/rails.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Rails +Outil 'Magie' de Tux Paint : Rails -Tux Paint "Magic" Tool: Rails
-Group: Painting
-Authors: +
Outil 'Magie' de Tux Paint : Rails
+Groupe: Peindre
+Auteurs : Adam Rakowski <foo-script@o2.pl>
Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Bill Kendrick <bill@newbreedsoftware.com>
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/rain.html b/magic/magic-docs/fr_FR.UTF-8/html/rain.html index 085b207b8..16254e12b 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/rain.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/rain.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Pluie +Outil 'Magie' de Tux Paint : Pluie -Tux Paint "Magic" Tool: Pluie
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Pluie
+Groupe: Peindre
+Auteur : Andrew Corcoran <akanewbie@gmail.com>
Paint raindrops on your picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/rainbow.html b/magic/magic-docs/fr_FR.UTF-8/html/rainbow.html index fa6b3fafa..cf47e1a34 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/rainbow.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/rainbow.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Arc-en-ciel +Outil 'Magie' de Tux Paint : Arc-en-ciel -Tux Paint "Magic" Tool: Arc-en-ciel
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Arc-en-ciel
+Groupe: Peindre
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This is similar to the paint brush, but as you move the mouse around, it cycles through a spectrum of bright colors.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/rainbow_cycle.html b/magic/magic-docs/fr_FR.UTF-8/html/rainbow_cycle.html index b84492d5c..e7ec32796 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/rainbow_cycle.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/rainbow_cycle.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Rainbow Cycle +Outil 'Magie' de Tux Paint : Rainbow Cycle -Tux Paint "Magic" Tool: Rainbow Cycle
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Rainbow Cycle
+Groupe: Peindre
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This is similar to Rainbow and Smooth Rainbow magic tools — it cycles through a spectrum of bright colors, but only changes between strokes (after you release and click or tap again).
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/rays.html b/magic/magic-docs/fr_FR.UTF-8/html/rays.html index 106a8c52f..209d465e9 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/rays.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/rays.html @@ -1,16 +1,16 @@ -
Tux Paint "Magic" Tool: Rays +Outil 'Magie' de Tux Paint : Raies -Tux Paint "Magic" Tool: Rays
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Raies
+Groupe: Distorsions
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This transforms the picture into brush strokes that point towards where you clicked.
This tool offers both freehand and one-click operation.
-See also: Circles.
+See also: Cercles.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/real_rainbow.html b/magic/magic-docs/fr_FR.UTF-8/html/real_rainbow.html index c964cf101..6a08724c6 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/real_rainbow.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/real_rainbow.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Arc-en-ciel réel +Outil 'Magie' de Tux Paint : Arc-en-ciel réel -Tux Paint "Magic" Tool: Arc-en-ciel réel
-Group: Artistic
-Author: +
Outil 'Magie' de Tux Paint : Arc-en-ciel réel
+Groupe: Artistique
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Draw a transparent arc that looks like a real rainbow.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/reflection.html b/magic/magic-docs/fr_FR.UTF-8/html/reflection.html index b4fb66e8a..1c092ab28 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/reflection.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/reflection.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Reflection +Outil 'Magie' de Tux Paint : Reflection -Tux Paint "Magic" Tool: Reflection
-Group: Picture Warps
-Author: +
Outil 'Magie' de Tux Paint : Reflection
+Groupe: Picture Warps
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Click and drag down, up, left, or right, to add a reflection to you picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/remove_color.html b/magic/magic-docs/fr_FR.UTF-8/html/remove_color.html index fea917570..b221dea0d 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/remove_color.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/remove_color.html @@ -1,17 +1,17 @@ -
Tux Paint "Magic" Tool: Remove Color +Outil 'Magie' de Tux Paint : Remove Color -Tux Paint "Magic" Tool: Remove Color
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Remove Color
+Groupe: Color Filters
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This completely desaturates (turns greyscale) parts of the image that match the selected color.
This tool offers both freehand and one-click operation.
This tool offers multiple size settings.
-See also: Keep Color, Saturate, Desaturate, Assombrir, Éclaircir, Tint, & Remove Color.
+See also: Keep Color, Saturer, Désaturer, Assombrir, Éclaircir, Teinter, & Remove Color.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/ribbon.html b/magic/magic-docs/fr_FR.UTF-8/html/ribbon.html index 047e698e4..baff9a639 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/ribbon.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/ribbon.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Ribbon +Outil 'Magie' de Tux Paint : Ruban -Tux Paint "Magic" Tool: Ribbon
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Ruban
+Groupe: Peindre
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This draws a flowing ribbon behind the mouse as you move it.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/ripples.html b/magic/magic-docs/fr_FR.UTF-8/html/ripples.html index 1ac441844..546930c55 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/ripples.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/ripples.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Ripples +Outil 'Magie' de Tux Paint : Ondes -Tux Paint "Magic" Tool: Ripples
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Ondes
+Groupe: Distorsions
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Click in your picture to make water ripple distortions appear over it.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/rosette.html b/magic/magic-docs/fr_FR.UTF-8/html/rosette.html index 1c26f7189..ef720a437 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/rosette.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/rosette.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Rosace +Outil 'Magie' de Tux Paint : Rosace -Tux Paint "Magic" Tool: Rosace
-Group: Pattern Painting
-Author: +
Outil 'Magie' de Tux Paint : Rosace
+Groupe: Pattern Painting
+Auteur : Adam Rakowski <foo-script@o2.pl>
Draw three brushes at once, in a rosette shape.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/roygbiv_rainbow.html b/magic/magic-docs/fr_FR.UTF-8/html/roygbiv_rainbow.html index 99dbd1e38..4133d07c0 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/roygbiv_rainbow.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/roygbiv_rainbow.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Arc-en-ciel simple +Outil 'Magie' de Tux Paint : Arc-en-ciel simple -Tux Paint "Magic" Tool: Arc-en-ciel simple
-Group: Artistic
-Author: +
Outil 'Magie' de Tux Paint : Arc-en-ciel simple
+Groupe: Artistique
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Draw a rainbow arc of red, orange, yellow, green, blue, indigo and violet.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/rush.html b/magic/magic-docs/fr_FR.UTF-8/html/rush.html index 61e4ec0d6..22ba0cb62 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/rush.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/rush.html @@ -1,18 +1,18 @@ -
Tux Paint "Magic" Tool: Rush +Outil 'Magie' de Tux Paint : Rush -Tux Paint "Magic" Tool: Rush
-Group: Picture Warps
-Authors: +
Outil 'Magie' de Tux Paint : Rush
+Groupe: Picture Warps
+Auteurs : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Bill Kendrick <bill@newbreedsoftware.com>
Click and drag up to zoom in, or down to zoom out. The results will be blurred/smeared.
This tool is operated in a freehand fashion.
-See also: Rush, Tile Zoom, & Zoom.
+See also: Rush, Zoom tuile, & Zoom.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/saturate.html b/magic/magic-docs/fr_FR.UTF-8/html/saturate.html index a8aed252a..fe9341846 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/saturate.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/saturate.html @@ -1,17 +1,17 @@ -Tux Paint "Magic" Tool: Saturate +Outil 'Magie' de Tux Paint : Saturer -Tux Paint "Magic" Tool: Saturate
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Saturer
+Groupe: Color Filters
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This increases the saturation of colors wherever you drag the mouse.
This tool offers both freehand and one-click operation.
This tool offers multiple size settings.
-See also: Desaturate, Assombrir, Éclaircir, Tint, Remove Color, & Keep Color.
+See also: Désaturer, Assombrir, Éclaircir, Teinter, Remove Color, & Keep Color.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/sharpen.html b/magic/magic-docs/fr_FR.UTF-8/html/sharpen.html index 3413501b1..a1fdb2e53 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/sharpen.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/sharpen.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Sharpen +Outil 'Magie' de Tux Paint : Affiner -Tux Paint "Magic" Tool: Sharpen
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Affiner
+Groupe: Distorsions
+Auteur : Andrew Corcoran <akanewbie@gmail.com>
Sharpen the focus of the picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/shift.html b/magic/magic-docs/fr_FR.UTF-8/html/shift.html index 19228de1d..b53c09cc7 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/shift.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/shift.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Shift +Outil 'Magie' de Tux Paint : Shift -Tux Paint "Magic" Tool: Shift
-Group: Picture Warps
-Author: +
Outil 'Magie' de Tux Paint : Shift
+Groupe: Picture Warps
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This shifts your picture around the canvas. Anything that gets shifts off an edge reappears on the opposite edge.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/silhouette.html b/magic/magic-docs/fr_FR.UTF-8/html/silhouette.html index 4b0890e71..27a63cf71 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/silhouette.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/silhouette.html @@ -1,17 +1,17 @@ -
Tux Paint "Magic" Tool: Silhouette +Outil 'Magie' de Tux Paint : Silhouette -Tux Paint "Magic" Tool: Silhouette
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Silhouette
+Groupe: Distorsions
+Auteur : Andrew Corcoran <akanewbie@gmail.com>
Trace the edges in your picture, over a black background.
This tool offers both freehand and one-click operation.
This tool offers multiple size settings.
- +
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/smooth.html b/magic/magic-docs/fr_FR.UTF-8/html/smooth.html index 76af0a39f..907ece44b 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/smooth.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/smooth.html @@ -1,17 +1,17 @@ -Tux Paint "Magic" Tool: Smooth +Outil 'Magie' de Tux Paint : Smooth -Tux Paint "Magic" Tool: Smooth
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Smooth
+Groupe: Peindre
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Draw a freehand shape, which will have its curves smoothed when you release. It draws using the currently-selected color.
This tool is operated in a freehand fashion.
This tool offers multiple size settings.
- +See also: Boucles & Gribouillis.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/smooth_rainbow.html b/magic/magic-docs/fr_FR.UTF-8/html/smooth_rainbow.html index 6e7f1dffc..58886c1bf 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/smooth_rainbow.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/smooth_rainbow.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Arc-en-ciel lent +Outil 'Magie' de Tux Paint : Arc-en-ciel lent -Tux Paint "Magic" Tool: Arc-en-ciel lent
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Arc-en-ciel lent
+Groupe: Peindre
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This is similar to Rainbow magic tool — as you move the mouse around, it cycles through a spectrum of colors — except the colors blend smoothly as you draw.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/smudge.html b/magic/magic-docs/fr_FR.UTF-8/html/smudge.html index 3f7f0ace6..322c4de8d 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/smudge.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/smudge.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Smudge +Outil 'Magie' de Tux Paint : Baver -Tux Paint "Magic" Tool: Smudge
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Baver
+Groupe: Distorsions
+Auteur : Albert Cahalan <albert@users.sf.net>
This pushes the colors around under the mouse, like finger painting with wet paint.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/snow_ball.html b/magic/magic-docs/fr_FR.UTF-8/html/snow_ball.html index 384e957d9..0e7183fe2 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/snow_ball.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/snow_ball.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Boule de neige +Outil 'Magie' de Tux Paint : Boule de neige -Tux Paint "Magic" Tool: Boule de neige
-Group: Picture Decorations
-Author: +
Outil 'Magie' de Tux Paint : Boule de neige
+Groupe: Décorations des images
+Auteur : Andrew Corcoran <akanewbie@gmail.com>
Fill the picture with snowballs.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/snow_flake.html b/magic/magic-docs/fr_FR.UTF-8/html/snow_flake.html index 0861eabbf..94d86b584 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/snow_flake.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/snow_flake.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Flocon de neige +Outil 'Magie' de Tux Paint : Flocon de neige -Tux Paint "Magic" Tool: Flocon de neige
-Group: Picture Decorations
-Author: +
Outil 'Magie' de Tux Paint : Flocon de neige
+Groupe: Décorations des images
+Auteur : Andrew Corcoran <akanewbie@gmail.com>
Fill the picture with snowflakes.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/square_mosaic.html b/magic/magic-docs/fr_FR.UTF-8/html/square_mosaic.html index 686d21b94..d4037aea1 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/square_mosaic.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/square_mosaic.html @@ -1,16 +1,16 @@ -
Tux Paint "Magic" Tool: Square Mosaic +Outil 'Magie' de Tux Paint : Mosaïque carrée -Tux Paint "Magic" Tool: Square Mosaic
-Group: Distorts
-Author: +
Outil 'Magie' de Tux Paint : Mosaïque carrée
+Groupe: Distorsions
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Converts parts of your picture into a mosaic of square cells.
This tool offers both freehand and one-click operation.
-See also: Hexagon Mosaic, Irregular Mosaic, & Mosaic.
+See also: Mosaïque hexagonale, Mosaïque irrégulière, & Mosaïque.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/squiggles.html b/magic/magic-docs/fr_FR.UTF-8/html/squiggles.html index 674411fb0..31b1640ee 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/squiggles.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/squiggles.html @@ -1,17 +1,17 @@ -Tux Paint "Magic" Tool: Squiggles +Outil 'Magie' de Tux Paint : Gribouillis -Tux Paint "Magic" Tool: Squiggles
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Gribouillis
+Groupe: Peindre
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This draws random squiggly loops, using the currently-selected color, as you move the mouse around.
This tool is operated in a freehand fashion.
This tool offers multiple size settings.
- +See also: Smooth & Gribouillis.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/stretch.html b/magic/magic-docs/fr_FR.UTF-8/html/stretch.html index a3f599cb3..15b6dbac4 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/stretch.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/stretch.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Stretch +Outil 'Magie' de Tux Paint : Étirer -Tux Paint "Magic" Tool: Stretch
-Group: Picture Warps
-Author: +
Outil 'Magie' de Tux Paint : Étirer
+Groupe: Picture Warps
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Click and drag around to stretch and squish parts of the picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/string_corner.html b/magic/magic-docs/fr_FR.UTF-8/html/string_corner.html index 1ea0ec09d..ca5c39616 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/string_corner.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/string_corner.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Ficelles (2) +Outil 'Magie' de Tux Paint : Ficelles (2) -Tux Paint "Magic" Tool: Ficelles (2)
-Group: Artistic
-Author: +
Outil 'Magie' de Tux Paint : Ficelles (2)
+Groupe: Artistique
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Draw V-shaped string art at right angles.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/string_edges.html b/magic/magic-docs/fr_FR.UTF-8/html/string_edges.html index 3f92732cd..e74f245cf 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/string_edges.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/string_edges.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Ficelles (3) +Outil 'Magie' de Tux Paint : Ficelles (3) -Tux Paint "Magic" Tool: Ficelles (3)
-Group: Artistic
-Author: +
Outil 'Magie' de Tux Paint : Ficelles (3)
+Groupe: Artistique
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Draw string art around the edges of your picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/string_v.html b/magic/magic-docs/fr_FR.UTF-8/html/string_v.html index a4f2d2383..5fa8f0e7f 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/string_v.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/string_v.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Ficelles (1) +Outil 'Magie' de Tux Paint : Ficelles (1) -Tux Paint "Magic" Tool: Ficelles (1)
-Group: Artistic
-Author: +
Outil 'Magie' de Tux Paint : Ficelles (1)
+Groupe: Artistique
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Draw V-shaped string art at any angle.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/symmetry_left_right.html b/magic/magic-docs/fr_FR.UTF-8/html/symmetry_left_right.html index 5a9b24087..5f80f8c32 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/symmetry_left_right.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/symmetry_left_right.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Symétrie D/G +Outil 'Magie' de Tux Paint : Symétrie D/G -Tux Paint "Magic" Tool: Symétrie D/G
-Group: Pattern Painting
-Author: +
Outil 'Magie' de Tux Paint : Symétrie D/G
+Groupe: Pattern Painting
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Paint with relfective symmetry across the horizontal center of the image.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/symmetry_up_down.html b/magic/magic-docs/fr_FR.UTF-8/html/symmetry_up_down.html index ef10c5029..d6f403dfd 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/symmetry_up_down.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/symmetry_up_down.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Symétrie H/B +Outil 'Magie' de Tux Paint : Symétrie H/B -Tux Paint "Magic" Tool: Symétrie H/B
-Group: Pattern Painting
-Author: +
Outil 'Magie' de Tux Paint : Symétrie H/B
+Groupe: Pattern Painting
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Paint with relfective symmetry across the vertical center of the image.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/tiles.html b/magic/magic-docs/fr_FR.UTF-8/html/tiles.html index f39ea03a1..75ffd8be4 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/tiles.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/tiles.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Tuiles +Outil 'Magie' de Tux Paint : Tuiles -Tux Paint "Magic" Tool: Tuiles
-Group: Pattern Painting
-Author: +
Outil 'Magie' de Tux Paint : Tuiles
+Groupe: Pattern Painting
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Draws a symettric pattern around the picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/tilezoom.html b/magic/magic-docs/fr_FR.UTF-8/html/tilezoom.html index e47408489..e2113078a 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/tilezoom.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/tilezoom.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Tile Zoom +Outil 'Magie' de Tux Paint : Zoom tuile -Tux Paint "Magic" Tool: Tile Zoom
-Group: Picture Warps
-Authors: +
Outil 'Magie' de Tux Paint : Zoom tuile
+Groupe: Picture Warps
+Auteurs : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/tint.html b/magic/magic-docs/fr_FR.UTF-8/html/tint.html index 8c6da3b32..041e9dfd3 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/tint.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/tint.html @@ -1,11 +1,11 @@ -
Bill Kendrick <bill@newbreedsoftware.com>
Tux Paint "Magic" Tool: Tint +Outil 'Magie' de Tux Paint : Teinter -Tux Paint "Magic" Tool: Tint
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Teinter
+Groupe: Color Filters
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
This changes the color (or hue) of the parts of the picture to the selected color.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/toothpaste.html b/magic/magic-docs/fr_FR.UTF-8/html/toothpaste.html index 90e0fe123..f60a2cb72 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/toothpaste.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/toothpaste.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Dentifrice +Outil 'Magie' de Tux Paint : Dentifrice -Tux Paint "Magic" Tool: Dentifrice
-Group: Painting
-Author: +
Outil 'Magie' de Tux Paint : Dentifrice
+Groupe: Peindre
+Auteur : Andrew Corcoran <akanewbie@gmail.com>
Paint thick blobs of color on your picture that look like toothpaste.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/tornado.html b/magic/magic-docs/fr_FR.UTF-8/html/tornado.html index 014c32890..c0f33396c 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/tornado.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/tornado.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Tornade +Outil 'Magie' de Tux Paint : Tornade -Tux Paint "Magic" Tool: Tornade
-Group: Artistic
-Author: +
Outil 'Magie' de Tux Paint : Tornade
+Groupe: Artistique
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Draws a tornado effect onto the picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/tv.html b/magic/magic-docs/fr_FR.UTF-8/html/tv.html index 92a097675..234e81869 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/tv.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/tv.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: TV +Outil 'Magie' de Tux Paint : TV -Tux Paint "Magic" Tool: TV
-Group: Distorts
-Authors: +
Outil 'Magie' de Tux Paint : TV
+Groupe: Distorsions
+Auteurs : Adam Rakowski <foo-script@o2.pl>
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/tv_bright.html b/magic/magic-docs/fr_FR.UTF-8/html/tv_bright.html index 5cdc8a45c..a8254ea67 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/tv_bright.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/tv_bright.html @@ -1,11 +1,11 @@ -
Bill Kendrick <bill@newbreedsoftware.com>
Tux Paint "Magic" Tool: TV (Bright) +Outil 'Magie' de Tux Paint : TV (Bright) -Tux Paint "Magic" Tool: TV (Bright)
-Group: Distorts
-Authors: +
Outil 'Magie' de Tux Paint : TV (Bright)
+Groupe: Distorsions
+Auteurs : Adam Rakowski <foo-script@o2.pl>
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/wavelets.html b/magic/magic-docs/fr_FR.UTF-8/html/wavelets.html index 3be83a198..8e6a7a266 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/wavelets.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/wavelets.html @@ -1,11 +1,11 @@ -
Bill Kendrick <bill@newbreedsoftware.com>
Tux Paint "Magic" Tool: Vaguelettes +Outil 'Magie' de Tux Paint : Vaguelettes -Tux Paint "Magic" Tool: Vaguelettes
-Group: Picture Warps
-Authors: +
Outil 'Magie' de Tux Paint : Vaguelettes
+Groupe: Picture Warps
+Auteurs : Bill Kendrick <bill@newbreedsoftware.com>
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/waves.html b/magic/magic-docs/fr_FR.UTF-8/html/waves.html index 13462b002..1f35ab1dc 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/waves.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/waves.html @@ -1,11 +1,11 @@ -
Adam Rakowski <foo-script@o2.pl>
Tux Paint "Magic" Tool: Vagues +Outil 'Magie' de Tux Paint : Vagues -Tux Paint "Magic" Tool: Vagues
-Group: Picture Warps
-Author: +
Outil 'Magie' de Tux Paint : Vagues
+Groupe: Picture Warps
+Auteur : Bill Kendrick <bill@newbreedsoftware.com>
Click to make the entire picture wavy, side-to-side. Drag the mouse up and down to change the height of the ripples, and left and right to change the width. Release the mouse button when it looks the way you like it.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/wet_paint.html b/magic/magic-docs/fr_FR.UTF-8/html/wet_paint.html index cd68da11d..a09a02b66 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/wet_paint.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/wet_paint.html @@ -1,11 +1,11 @@ -
Tux Paint "Magic" Tool: Wet Paint +Outil 'Magie' de Tux Paint : Wet Paint -Tux Paint "Magic" Tool: Wet Paint
-Group: Painting
-Authors: +
Outil 'Magie' de Tux Paint : Wet Paint
+Groupe: Peindre
+Auteurs : Albert Cahalan <albert@users.sf.net>
@@ -13,7 +13,7 @@ Bill Kendrick <bill@newbreedsoftwa
Bill Kendrick <bill@newbreedsoftware.com>
This tool is operated in a freehand fashion.
This tool offers multiple size settings.
-See also: Smudge.
+See also: Baver.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/magic/magic-docs/fr_FR.UTF-8/html/xor_colors.html b/magic/magic-docs/fr_FR.UTF-8/html/xor_colors.html index 69241b7fb..4f6674225 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/xor_colors.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/xor_colors.html @@ -1,11 +1,11 @@ -Tux Paint "Magic" Tool: Xor Colors +Outil 'Magie' de Tux Paint : Couleurs Xor -Tux Paint "Magic" Tool: Xor Colors
-Group: Color Filters
-Author: +
Outil 'Magie' de Tux Paint : Couleurs Xor
+Groupe: Color Filters
+Auteur : Lukasz Dmitrowski <lukasz.dmitrowski@gmail.com>
Colors based on the position drawn on the picture.
diff --git a/magic/magic-docs/fr_FR.UTF-8/html/zoom.html b/magic/magic-docs/fr_FR.UTF-8/html/zoom.html index 986d942b2..847a33526 100644 --- a/magic/magic-docs/fr_FR.UTF-8/html/zoom.html +++ b/magic/magic-docs/fr_FR.UTF-8/html/zoom.html @@ -1,16 +1,16 @@ -
Tux Paint "Magic" Tool: Zoom +Outil 'Magie' de Tux Paint : Zoom -Tux Paint "Magic" Tool: Zoom
-Group: Picture Warps
-Author: +
Outil 'Magie' de Tux Paint : Zoom
+Groupe: Picture Warps
+Auteur : Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Click and drag up to zoom in, or down to zoom out. (When scaling down, your chosen color will be used as a background color.)
This tool is operated in a freehand fashion.
- +See also: Rush & Zoom tuile.
Tux Paint 0.9.31
\ No newline at end of file diff --git a/man/fr_FR.UTF-8/tuxpaint.1 b/man/fr_FR.UTF-8/tuxpaint.1 index 946bc8a1b..7cded5258 100644 --- a/man/fr_FR.UTF-8/tuxpaint.1 +++ b/man/fr_FR.UTF-8/tuxpaint.1 @@ -1356,7 +1356,7 @@ l'option "--nolockfile". .RS .PP (Il n'y a pas de raisons d'effacer le fichier de verrouillage, car il -contient un horodatage qui fait qu'il expirera après 30 secondes). +contient un horodatage qui fait qu'il expirera après 30 secondes.) .RE .TP 8 .B $XDG_CONFIG_HOME[XDG_PICTURES_DIR]/TuxPaint/