--- xscreensaver-5.45/driver/passwd-pwent.c.orig 2016-04-08 04:17:03.000000000 +0200 +++ xscreensaver-5.45/driver/passwd-pwent.c 2021-01-04 13:16:37.481003200 +0100 @@ -81,6 +81,12 @@ # define HAVE_BIGCRYPT +#elif defined(__CYGWIN__) +# include +# include + /* Use the following define to determine the Windows version */ +# define is_winnt (GetVersion() < 0x80000000) + #endif @@ -178,8 +184,16 @@ if (user && *user && !result) { /* Check non-shadow passwords too. */ struct passwd *p = getpwnam(user); +#ifdef __CYGWIN__ + if (p) + /* Patch the typical password test: user will be reused later on */ + if (is_winnt) + result = strdup(user); +#else if (p && passwd_known_p (p->pw_passwd)) + result = strdup(p->pw_passwd); +#endif } /* The manual for passwd(4) on HPUX 10.10 says: @@ -265,6 +279,26 @@ if (s && !strcmp (s, ciphertext)) return True; +#ifdef __CYGWIN__ + /* Patch the typical password test. */ + if (is_winnt) + { + HANDLE token; + struct passwd *user_pwd_entry = getpwnam (ciphertext); /* remember we "saved" username here */ + + /* Try to get the access token from NT. */ + token = cygwin_logon_user (user_pwd_entry, cleartext); + if (token == INVALID_HANDLE_VALUE) + return False; + /* Inform Cygwin about the new impersonation token. + Cygwin is able now, to switch to that user context by + setuid or seteuid calls. */ + cygwin_set_impersonation_token (token); + return True; + } + else +#endif /* CYGWIN */ + #ifdef HAVE_BIGCRYPT /* There seems to be no way to tell at runtime if an HP machine is in "trusted" mode, and thereby, which of crypt() or bigcrypt() we should --- xscreensaver-5.45/po/fr.po.orig 2020-11-14 21:56:09.000000000 +0100 +++ xscreensaver-5.45/po/fr.po 2021-01-04 17:42:19.880845400 +0100 @@ -1,516 +1,21 @@ # vim:set encoding=utf-8: # xscreensaver fr.po -# Copyright (C) 2006 Eric Lassauge +# Copyright (C) 2021 Eric Lassauge # msgid "" msgstr "" -"Project-Id-Version: xscreensaver 5.00\n" +"Project-Id-Version: xscreensaver 5.45\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-05-24 12:23+0200\n" -"PO-Revision-Date: 2006-02-13 16:18+0100\n" +"POT-Creation-Date: 2021-01-04 13:54+0100\n" +"PO-Revision-Date: 021-01-04 13:54+0100\n" "Last-Translator: Eric Lassauge \n" "Language-Team: GNOME French Team \n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: driver/demo-Gtk-conf.c:839 -msgid "Browse..." -msgstr "Parcourir... " - -#: driver/demo-Gtk-conf.c:1131 -msgid "Select file." -msgstr "Sélectionnez un fichier." - -#: driver/demo-Gtk-support.c:135 -#, c-format -msgid "Couldn't find pixmap file: %s" -msgstr "Impossible de trouver le fichier d'image : %s" - -#: driver/demo-Gtk-support.c:147 driver/demo-Gtk-support.c:179 -#, c-format -msgid "Error loading pixmap file: %s" -msgstr "Erreur lors du chargement du fichier d'image : %s" - -#: driver/demo-Gtk-support.c:182 -#, c-format -msgid "reason: %s\n" -msgstr "Raison : %s\n" - -#: driver/demo-Gtk-widgets.c:161 driver/xscreensaver-demo.glade2.h:71 -msgid "XScreenSaver" -msgstr "XScreenSaver" - -#: driver/demo-Gtk-widgets.c:182 driver/xscreensaver-demo.glade2.h:84 -msgid "_File" -msgstr "_Fichier" - -#: driver/demo-Gtk-widgets.c:202 driver/xscreensaver-demo.glade2.h:76 -msgid "_Blank Screen Now" -msgstr "_Economiser l'écran maintenant" - -#: driver/demo-Gtk-widgets.c:211 -msgid "" -"Activate the XScreenSaver daemon now (locking the screen if so configured.)" -msgstr "" -"Activer le démon XScreenSaver (blocage de l'écran si cela est configuré)." - -#: driver/demo-Gtk-widgets.c:215 driver/xscreensaver-demo.glade2.h:89 -msgid "_Lock Screen Now" -msgstr "_Verrouiller l'écran maintenant" - -#: driver/demo-Gtk-widgets.c:224 -msgid "Lock the screen now (even if \"Lock Screen\" is unchecked.)" -msgstr "" -"Verrouille l'écran maintenant (même si «Verrouiller l'écran» n'est pas " -"validé)." - -#: driver/demo-Gtk-widgets.c:228 driver/xscreensaver-demo.glade2.h:87 -msgid "_Kill Daemon" -msgstr "_Tuer le démon" - -#: driver/demo-Gtk-widgets.c:237 -msgid "Tell the running XScreenSaver daemon to exit." -msgstr "Demande au démon courant de XScreenSaver de se terminer." - -#: driver/demo-Gtk-widgets.c:241 driver/xscreensaver-demo.glade2.h:98 -msgid "_Restart Daemon" -msgstr "_Redémarrer le démon" - -#: driver/demo-Gtk-widgets.c:250 -msgid "Kill and re-launch the XScreenSaver daemon." -msgstr "Tue et relance le démon XScreenSaver." - -#: driver/demo-Gtk-widgets.c:263 -msgid "_Exit" -msgstr "_Quitter" - -#: driver/demo-Gtk-widgets.c:272 -msgid "" -"Exit the xscreensaver-demo program (but leave the XScreenSaver daemon " -"running in the background.)" -msgstr "" -"Sort du programme xscreensaver-demo (mais laisse le démon XScreenSaver actif " -"en arrière-plan)." - -#: driver/demo-Gtk-widgets.c:276 driver/xscreensaver-demo.glade2.h:85 -msgid "_Help" -msgstr "_Aide" - -#: driver/demo-Gtk-widgets.c:296 driver/xscreensaver-demo.glade2.h:72 -msgid "_About..." -msgstr "A _propos... " - -#: driver/demo-Gtk-widgets.c:305 -msgid "Display version information." -msgstr "Affiche les informations de version" - -#: driver/demo-Gtk-widgets.c:309 driver/xscreensaver-demo.glade2.h:83 -msgid "_Documentation..." -msgstr "_Documentation... " - -#: driver/demo-Gtk-widgets.c:318 -msgid "Go to the documentation on the XScreenSaver web page." -msgstr "Visite la page web de documentation de XScreenSaver." - -#: driver/demo-Gtk-widgets.c:348 -msgid "Cycle After" -msgstr "Changement au bout de" - -#: driver/demo-Gtk-widgets.c:370 driver/xscreensaver-demo.glade2.h:63 -msgid "Whether a password should be required to un-blank the screen." -msgstr "Un mot de passe est-il requis pour débloquer l'écran." - -#: driver/demo-Gtk-widgets.c:372 -msgid "Lock Screen After" -msgstr "Verrouiller l'écran après" - -#: driver/demo-Gtk-widgets.c:380 -msgid "Blank After" -msgstr "Économiser l'écran après" - -#: driver/demo-Gtk-widgets.c:403 driver/demo-Gtk-widgets.c:453 -#: driver/demo-Gtk-widgets.c:467 driver/demo-Gtk-widgets.c:1016 -msgid "How long before the monitor goes completely black." -msgstr "Durée avant que le moniteur passe complètement au noir." - -#: driver/demo-Gtk-widgets.c:407 driver/demo-Gtk-widgets.c:419 -#: driver/demo-Gtk-widgets.c:431 driver/demo-Gtk-widgets.c:1020 -#: driver/demo-Gtk-widgets.c:1032 driver/demo-Gtk-widgets.c:1044 -#: driver/xscreensaver-demo.glade2.h:106 -msgid "minutes" -msgstr "minutes" - -#: driver/demo-Gtk-widgets.c:482 driver/demo-Gtk.c:3233 -msgid "Preview" -msgstr "Aperçu" - -#: driver/demo-Gtk-widgets.c:490 driver/xscreensaver-demo.glade2.h:10 -msgid "" -"Demo the selected screen saver in full-screen mode (click the mouse to " -"return.)" -msgstr "" -"Démo de l'économiseur d'écran sélectionné en mode plein-écran (cliquer avec " -"la souris pour en sortir)." - -#: driver/demo-Gtk-widgets.c:492 -msgid "Settings..." -msgstr "Réglages... " - -#: driver/demo-Gtk-widgets.c:500 driver/xscreensaver-demo.glade2.h:7 -msgid "Customization and explanation of the selected screen saver." -msgstr "Configuration et explications pour l'économiseur d'écran sélectionné." - -#: driver/demo-Gtk-widgets.c:521 -msgid "Mode:" -msgstr "Mode :" - -#: driver/demo-Gtk-widgets.c:539 -msgid "Disable Screen Saver" -msgstr "Désactiver l'économiseur d'écran" - -#: driver/demo-Gtk-widgets.c:542 -msgid "Blank Screen Only" -msgstr "Économiser l'écran uniquement" - -#: driver/demo-Gtk-widgets.c:545 -msgid "Only One Screen Saver" -msgstr "Seulement un économiseur d'écran" - -#: driver/demo-Gtk-widgets.c:548 -msgid "Random Screen Saver" -msgstr "Économiseur d'écran aléatoire" - -#: driver/demo-Gtk-widgets.c:571 driver/demo-Gtk.c:2419 -msgid "Use" -msgstr "Choisis" - -#: driver/demo-Gtk-widgets.c:591 driver/demo-Gtk.c:2429 -msgid "Screen Saver" -msgstr "Économiseur d'écran" - -#: driver/demo-Gtk-widgets.c:644 -msgid "\\/" -msgstr "\\/" - -#: driver/demo-Gtk-widgets.c:652 driver/xscreensaver-demo.glade2.h:39 -msgid "" -"Run the next screen saver in the list in full-screen mode (click the mouse " -"to return.)" -msgstr "" -"Lance l'économiseur d'écran suivant dans la liste en mode plein-écran " -"(cliquer la souris pour revenir.)" - -#: driver/demo-Gtk-widgets.c:654 -msgid "/\\" -msgstr "/\\" - -#: driver/demo-Gtk-widgets.c:662 driver/xscreensaver-demo.glade2.h:40 -msgid "" -"Run the previous screen saver in the list in full-screen mode (click the " -"mouse to return.)" -msgstr "" -"Lance l'économiseur d'écran précédent dans la liste en mode plein-écran " -"(cliquer la souris pour revenir.)" - -#: driver/demo-Gtk-widgets.c:664 driver/demo-Gtk-widgets.c:1607 -#: driver/xscreensaver-demo.glade2.h:11 -msgid "Description" -msgstr "Description" - -#: driver/demo-Gtk-widgets.c:691 -msgid "Display Modes" -msgstr "Modes d'affichage" - -#: driver/demo-Gtk-widgets.c:707 -msgid "Diagnostics" -msgstr "Diagnostiques" - -#: driver/demo-Gtk-widgets.c:751 -msgid "Whether the daemon should print lots of debugging information." -msgstr "Le démon doit-il afficher beaucoup d'informations de mise au point." - -#: driver/demo-Gtk-widgets.c:753 -msgid "Verbose Diagnostics" -msgstr "Diagnostiques verbeux" - -#: driver/demo-Gtk-widgets.c:768 -msgid "" -"Whether any error output of the display modes should be redirected to the " -"screen." -msgstr "" -"Les messages d'erreur des modes d'affichages doivent-ils être redirigés vers " -"l'écran." - -#: driver/demo-Gtk-widgets.c:770 -msgid "Display Subprocess Errors" -msgstr "Afficher les erreurs des sous-processus" - -#: driver/demo-Gtk-widgets.c:785 -msgid "" -"Whether the splash screen (with the version number and `Help' button) should " -"be momentarily displayed when the daemon first starts up." -msgstr "" -"L'écran de démarrage (avec le numéro de version et le bouton «Aide») doit-il " -"être affiché momentanément au premier démarrage du démon." - -#: driver/demo-Gtk-widgets.c:787 -msgid "Display Splash Screen at Startup" -msgstr "Afficher l'écran de démarrage" - -#: driver/demo-Gtk-widgets.c:796 -msgid "Colormaps" -msgstr "Palettes de couleurs" - -#: driver/demo-Gtk-widgets.c:840 driver/xscreensaver-demo.glade2.h:70 -msgid "" -"Whether to install a private colormap when running in 8-bit mode on the " -"default Visual." -msgstr "" -"Faut-il installer une palette de couleurs privée en mode 8-bits pour le " -"visuel par défaut" - -#: driver/demo-Gtk-widgets.c:842 -msgid "Install Colormap" -msgstr "Installer une palette de couleur" - -#: driver/demo-Gtk-widgets.c:865 driver/xscreensaver-demo.glade2.h:69 -msgid "" -"Whether the screen should slowly fade to black when the screen saver " -"activates." -msgstr "" -"L'écran doit-il fondre lentement au noir quand l'économiseur d'écran s'active." - -#: driver/demo-Gtk-widgets.c:867 -msgid "Fade To Black When Blanking" -msgstr "Fondu au noir lors du verrouillage" - -#: driver/demo-Gtk-widgets.c:882 driver/xscreensaver-demo.glade2.h:68 -msgid "" -"Whether the screen should slowly fade in from black when the screen saver " -"deactivates." -msgstr "" -"L'écran doit-il fondre lentement depuis le noir quand l'économiseur d'écran " -"se désactive." - -#: driver/demo-Gtk-widgets.c:884 -msgid "Fade From Black When Unblanking" -msgstr "Fondu depuis le noir lors du dé-verrouillage" - -#: driver/demo-Gtk-widgets.c:910 -msgid "Fade Duration" -msgstr "Durée du fondu" - -#: driver/demo-Gtk-widgets.c:928 driver/xscreensaver-demo.glade2.h:26 -msgid "How long it should take for the screen to fade in and out." -msgstr "Combien de temps doivent durer les fondus avec le noir." - -#: driver/demo-Gtk-widgets.c:932 driver/xscreensaver-demo.glade2.h:111 -msgid "seconds" -msgstr "secondes" - -#: driver/demo-Gtk-widgets.c:942 driver/xscreensaver-demo.glade2.h:13 -msgid "Display Power Management" -msgstr "Gestion d'alimentation de l'écran" - -#: driver/demo-Gtk-widgets.c:986 driver/xscreensaver-demo.glade2.h:67 -msgid "Whether the monitor should be powered down after a while." -msgstr "Le moniteur doit-il passer en économie d'énergie au bout d'un moment." - -#: driver/demo-Gtk-widgets.c:988 -msgid "Power Management Enabled" -msgstr "Gestion d'alimentation de l'écran autorisée" - -#: driver/demo-Gtk-widgets.c:1056 -msgid "Off After" -msgstr "Extinction après" - -#: driver/demo-Gtk-widgets.c:1069 -msgid "Suspend After" -msgstr "Suspension après" - -#: driver/demo-Gtk-widgets.c:1082 -msgid "Standby After" -msgstr "En attente après" - -#: driver/demo-Gtk-widgets.c:1105 driver/xscreensaver-demo.glade2.h:28 -msgid "How long until the monitor goes into power-saving mode." -msgstr "Durée avant que le moniteur passe en mode d'économie d'énergie." - -#: driver/demo-Gtk-widgets.c:1119 driver/xscreensaver-demo.glade2.h:29 -msgid "How long until the monitor powers down." -msgstr "Durée avant que le moniteur coupe l'alimentation." - -#: driver/demo-Gtk-widgets.c:1123 driver/xscreensaver-demo.glade2.h:30 -msgid "Image Manipulation" -msgstr "Manipulation d'images" - -#: driver/demo-Gtk-widgets.c:1167 driver/xscreensaver-demo.glade2.h:64 -msgid "" -"Whether the image-manipulating modes should be allowed to operate on an " -"image of your desktop." -msgstr "" -"Les modes qui manipulent des images sont-ils autorisés à utiliser une image " -"de votre bureau." - -#: driver/demo-Gtk-widgets.c:1169 -msgid "Grab Desktop Images" -msgstr "Capturer l'image du bureau" - -#: driver/demo-Gtk-widgets.c:1184 -msgid "" -"Whether the image-manipulating modes should operate on images captured from " -"the system's video input (if there is one)." -msgstr "" -"Les modes qui manipulent des images sont-ils autorisés à utiliser des images " -"capturées par l'entrée vidéo du système (si il y en a une)." - -#: driver/demo-Gtk-widgets.c:1186 -msgid "Grab Video Frames" -msgstr "Capturer des trames vidéo" - -#: driver/demo-Gtk-widgets.c:1201 driver/xscreensaver-demo.glade2.h:66 -msgid "" -"Whether the image-manipulating modes should operate on random images loaded " -"from disk." -msgstr "" -"Les modes qui manipulent des images sont-ils autorisés à utiliser des images " -"chargées aléatoirement depuis le disque." - -#: driver/demo-Gtk-widgets.c:1203 -msgid "Choose Random Image:" -msgstr "Choisir une image aléatoire :" - -#: driver/demo-Gtk-widgets.c:1236 driver/xscreensaver-demo.glade2.h:53 -msgid "The directory from which images will be randomly chosen." -msgstr "Répertoire source des images aléatoires." - -#: driver/demo-Gtk-widgets.c:1238 -msgid "Browse" -msgstr "Parcourir" - -#: driver/demo-Gtk-widgets.c:1246 driver/demo-Gtk-widgets.c:1599 -#: driver/xscreensaver-demo.glade2.h:2 -msgid "Advanced" -msgstr "Avancés" - -#: driver/demo-Gtk-widgets.c:1444 -msgid "XScreenSaver: Mode-Specific Settings" -msgstr "XScreenSaver : réglages spécifiques au mode" - -#: driver/demo-Gtk-widgets.c:1466 driver/xscreensaver-demo.glade2.h:41 -msgid "Settings" -msgstr "Réglages" - -#: driver/demo-Gtk-widgets.c:1495 driver/xscreensaver-demo.glade2.h:43 -msgid "Standard" -msgstr "Standard" - -#: driver/demo-Gtk-widgets.c:1532 -msgid "Visual:" -msgstr "Visuel :" - -#: driver/demo-Gtk-widgets.c:1550 driver/demo-Gtk-widgets.c:1573 -#: driver/demo-Gtk.c:1695 driver/demo-Gtk.c:3252 -#: driver/xscreensaver-demo.glade2.h:3 -msgid "Any" -msgstr "N'importe" - -#: driver/demo-Gtk-widgets.c:1551 driver/xscreensaver-demo.glade2.h:4 -msgid "Best" -msgstr "Le meilleur" - -#: driver/demo-Gtk-widgets.c:1552 driver/xscreensaver-demo.glade2.h:8 -msgid "Default" -msgstr "Par défaut" - -#: driver/demo-Gtk-widgets.c:1553 driver/xscreensaver-demo.glade2.h:9 -msgid "Default-N" -msgstr "Défaut-N" - -#: driver/demo-Gtk-widgets.c:1554 driver/xscreensaver-demo.glade2.h:18 -msgid "GL" -msgstr "OpenGL" - -#: driver/demo-Gtk-widgets.c:1555 driver/xscreensaver-demo.glade2.h:54 -msgid "TrueColor" -msgstr "Couleurs vraies" - -#: driver/demo-Gtk-widgets.c:1556 driver/xscreensaver-demo.glade2.h:38 -msgid "PseudoColor" -msgstr "Pseudo-couleurs" - -#: driver/demo-Gtk-widgets.c:1557 driver/xscreensaver-demo.glade2.h:44 -msgid "StaticGray" -msgstr "StaticGray" - -#: driver/demo-Gtk-widgets.c:1558 driver/xscreensaver-demo.glade2.h:22 -msgid "GrayScale" -msgstr "Niveaux de gris" - -#: driver/demo-Gtk-widgets.c:1559 driver/xscreensaver-demo.glade2.h:12 -msgid "DirectColor" -msgstr "Couleurs directes" - -#: driver/demo-Gtk-widgets.c:1560 driver/xscreensaver-demo.glade2.h:6 -#: hacks/config/fuzzyflakes.xml.h:3 -msgid "Color" -msgstr "Couleur" - -#: driver/demo-Gtk-widgets.c:1561 driver/xscreensaver-demo.glade2.h:21 -msgid "Gray" -msgstr "Gris" - -#: driver/demo-Gtk-widgets.c:1562 driver/xscreensaver-demo.glade2.h:32 -msgid "Mono" -msgstr "Monochrome" - -#: driver/demo-Gtk-widgets.c:1572 -msgid "" -"The X visual type that this demo will require. If that visual is available " -"it will be used, otherwise, this demo will not be run." -msgstr "" -"Le visuel X11 nécessaire pour cette démo. S'il est disponible il sera " -"utilisé, sinon cette démo ne fonctionnera pas." - -#: driver/demo-Gtk-widgets.c:1575 -msgid "Command Line:" -msgstr "Ligne de commande :" - -#: driver/demo-Gtk-widgets.c:1647 -msgid "Documentation..." -msgstr "Documentation... " - -#: driver/demo-Gtk-widgets.c:1655 -msgid "Click here to read the manual for this display mode, if it has one." -msgstr "" -"Cliquer ici pour lire le manuel de ce mode d'affichage, s'il en possède un." - -#: driver/demo-Gtk-widgets.c:1680 -msgid "Advanced >>" -msgstr "Avancés >>" - -#: driver/demo-Gtk-widgets.c:1688 -msgid "Edit the command line directly." -msgstr "Editer directement la ligne de commande." - -#: driver/demo-Gtk-widgets.c:1690 -msgid "Standard <<" -msgstr "Standard <<" - -#: driver/demo-Gtk-widgets.c:1698 -msgid "Back to the graphical configuration options." -msgstr "Retour aux options de configuration graphique." - -#: driver/demo-Gtk-widgets.c:1709 driver/demo-Gtk.c:832 -msgid "OK" -msgstr "Valider" - -#: driver/demo-Gtk-widgets.c:1718 -msgid "Cancel" -msgstr "Annuler" - -#: driver/demo-Gtk.c:692 driver/demo-Gtk.c:4286 +#: ../driver/demo-Gtk.c:773 ../driver/demo-Gtk.c:4494 #, c-format msgid "" "Warning:\n" @@ -523,14 +28,18 @@ "Le démon XScreenSaver n'est pas actif pour l'écran «%s». Le lancer " "maintenant ?" -#: driver/demo-Gtk.c:740 -msgid "For updates, check http://www.jwz.org/xscreensaver/" +#: ../driver/demo-Gtk.c:822 +msgid "For updates, check https://www.jwz.org/xscreensaver/" msgstr "" -"Traduction © 2006, Eric Lassauge http://lassauge.free.fr/xscreensaver/\n" +"Traduction ©2021, Eric Lassauge http://lassauge.free.fr/xscreensaver/\n" "\n" -"Pour les mises à jour, vérifier sur http://www.jwz.org/xscreensaver/" +"Pour les mises à jour, vérifiez sur http://www.jwz.org/xscreensaver/" + +#: ../driver/demo-Gtk.c:921 +msgid "OK" +msgstr "Valider" -#: driver/demo-Gtk.c:870 +#: ../driver/demo-Gtk.c:959 msgid "" "Error:\n" "\n" @@ -540,7 +49,7 @@ "\n" "Aucune URL d'aide spécifiée.\n" -#: driver/demo-Gtk.c:967 +#: ../driver/demo-Gtk.c:1056 msgid "" "Error:\n" "\n" @@ -552,45 +61,20 @@ "Le démon xscreensaver ne démarre pas correctement.\n" "\n" -#: driver/demo-Gtk.c:979 +#: ../driver/demo-Gtk.c:1062 msgid "" "You are running as root. This usually means that xscreensaver\n" "was unable to contact your X server because access control is\n" -"turned on. Try running this command:\n" -"\n" -" xhost +localhost\n" -"\n" -"and then selecting `File / Restart Daemon'.\n" -"\n" -"Note that turning off access control will allow anyone logged\n" -"on to this machine to access your screen, which might be\n" -"considered a security problem. Please read the xscreensaver\n" -"manual and FAQ for more information.\n" -"\n" +"turned on.\n" "You shouldn't run X as root. Instead, you should log in as a\n" -"normal user, and `su' as necessary." +"normal user, and `sudo' as necessary." msgstr "" -"Vous fonctionnez en tant que «root». Ceci signifie généralement que\n" -"xscreensaver ne peut pas contacter le serveur X car les contrôles\n" -"d'accès sont actifs. Essayez de lancer la commande:\n" -"\n" -" xhost +localhost\n" -"\n" -"puis sélectionnez «Fichier / Redémarrer le démon».\n" -"\n" -"Notez que inhiber les contrôles d'accès permettra à quiconque\n" -"sur cette machine d'accéder à votre écran, ce qui peut être\n" -"considéré comme un problème de sécurité. Lisez le manuel et la\n" -"documentation de xscreensaver pour plus d'informations.\n" -"Vous ne devriez pas lancer X en tant que «root». A la place il faut\n" -"se connecter en tant qu'utilisateur normal et utiliser\n" -"«su» si nécessaire." -#: driver/demo-Gtk.c:995 +#: ../driver/demo-Gtk.c:1081 msgid "Please check your $PATH and permissions." msgstr "Vérifiez votre $PATH et les permissions." -#: driver/demo-Gtk.c:1033 +#: ../driver/demo-Gtk.c:1119 msgid "" "Error:\n" "\n" @@ -600,7 +84,7 @@ "\n" "Impossible de déterminer le nom du fichier d'init !\n" -#: driver/demo-Gtk.c:1038 +#: ../driver/demo-Gtk.c:1124 #, c-format msgid "" "Error:\n" @@ -611,7 +95,7 @@ "\n" "Impossible d'écrire dans %s.\n" -#: driver/demo-Gtk.c:1101 +#: ../driver/demo-Gtk.c:1187 msgid "" "Error:\n" "\n" @@ -621,7 +105,7 @@ "\n" "La ressource «manualCommand» n'est pas renseignée." -#: driver/demo-Gtk.c:1284 +#: ../driver/demo-Gtk.c:1370 #, c-format msgid "" "Error:\n" @@ -632,7 +116,11 @@ "\n" "Le format «%s» pour l'heure n'est pas exploitable.\n" -#: driver/demo-Gtk.c:1991 +#: ../driver/demo-Gtk.c:1807 ../driver/demo-Gtk.c:3370 +msgid "Any" +msgstr "N'importe" + +#: ../driver/demo-Gtk.c:2092 #, c-format msgid "" "Error:\n" @@ -643,7 +131,7 @@ "\n" "Répertoire «%s» inexistant.\n" -#: driver/demo-Gtk.c:2021 driver/demo-Gtk.c:2052 +#: ../driver/demo-Gtk.c:2122 ../driver/demo-Gtk.c:2153 #, c-format msgid "" "Error:\n" @@ -654,28 +142,40 @@ "\n" "Répertoire «%s» inexistant.\n" -#: driver/demo-Gtk.c:2877 +#: ../driver/demo-Gtk.c:2534 +msgid "Use" +msgstr "Choisis" + +#: ../driver/demo-Gtk.c:2544 +msgid "Screen Saver" +msgstr "Économiseur d'écran" + +#: ../driver/demo-Gtk.c:2995 msgid "Descriptions not available: no XML support compiled in." msgstr "Descriptions indisponibles : pas de support XML compilé." -#: driver/demo-Gtk.c:2882 +#: ../driver/demo-Gtk.c:3000 msgid "No description available." msgstr "Aucune description disponible." -#: driver/demo-Gtk.c:3204 +#: ../driver/demo-Gtk.c:3322 msgid "Blank Screen" msgstr "Économiser l'écran uniquement" -#: driver/demo-Gtk.c:3210 +#: ../driver/demo-Gtk.c:3328 msgid "Screen Saver Disabled" msgstr "Économiseur d'écran inhibé" -#: driver/demo-Gtk.c:3243 +#: ../driver/demo-Gtk.c:3351 +msgid "Preview" +msgstr "Aperçu" + +#: ../driver/demo-Gtk.c:3361 #, c-format msgid "%s: %.100s Settings" msgstr "%s : réglages %.100s" -#: driver/demo-Gtk.c:3407 +#: ../driver/demo-Gtk.c:3525 #, c-format msgid "" "Warning:\n" @@ -686,23 +186,23 @@ "\n" "le fichier «%s» a changé, rechargement.\n" -#: driver/demo-Gtk.c:3492 +#: ../driver/demo-Gtk.c:3612 msgid "No Preview" msgstr "Pas d'aperçu" -#: driver/demo-Gtk.c:3492 +#: ../driver/demo-Gtk.c:3612 msgid "Available" msgstr "Disponible" -#: driver/demo-Gtk.c:3493 +#: ../driver/demo-Gtk.c:3613 msgid "Not" msgstr "Non" -#: driver/demo-Gtk.c:3493 +#: ../driver/demo-Gtk.c:3613 msgid "Installed" msgstr "installé" -#: driver/demo-Gtk.c:4296 +#: ../driver/demo-Gtk.c:4504 #, c-format msgid "" "Warning:\n" @@ -735,7 +235,7 @@ "\n" "Relancer le démon xscreensaver maintenant ?\n" -#: driver/demo-Gtk.c:4321 +#: ../driver/demo-Gtk.c:4529 #, c-format msgid "" "Warning:\n" @@ -762,7 +262,7 @@ "\n" "Relancer le démon sur «%s» en tant que «%s» maintenant ?\n" -#: driver/demo-Gtk.c:4343 +#: ../driver/demo-Gtk.c:4551 #, c-format msgid "" "Warning:\n" @@ -781,1415 +281,1817 @@ "\n" "Relancer le démon xscreensaver maintenant ?\n" -#: driver/demo-Gtk.c:4804 -#, c-format -msgid "%s: unknown option: %s\n" -msgstr "%s : option inconnue : %s\n" - -#: driver/demo-Gtk.c:4869 -msgid "Screensaver Preferences" -msgstr "Préférences économiseur d'écran" - -#: driver/screensaver-properties.desktop.in.h:1 -msgid "Change screensaver properties" -msgstr "Modifier les propriétés de l'économiseur d'écran" - -#: driver/screensaver-properties.desktop.in.h:2 -msgid "Screensaver" -msgstr "Économiseur d'écran" - -#: driver/xscreensaver-demo.glade2.h:1 -msgid "*" -msgstr "*" - -#: driver/xscreensaver-demo.glade2.h:5 -msgid "Choose _Random Image:" -msgstr "Choisir une image _Aléatoire :" - -#: driver/xscreensaver-demo.glade2.h:14 -msgid "F_ade Duration" -msgstr "Durée du _fondu" - -#: driver/xscreensaver-demo.glade2.h:15 -msgid "Fade from Black When _Unblanking" -msgstr "Fondu depuis le noir lors du dé-verrouillage" - -#: driver/xscreensaver-demo.glade2.h:16 -msgid "Fade to Black when _Blanking" -msgstr "Fondu au noir lors du _verrouillage" - -#: driver/xscreensaver-demo.glade2.h:17 -msgid "Fading and Colormaps" -msgstr "Fondu et palette de couleurs" - -#: driver/xscreensaver-demo.glade2.h:19 -msgid "Grab Desktop _Images" -msgstr "Capturer des _images du bureau" - -#: driver/xscreensaver-demo.glade2.h:20 -msgid "Grab _Video Frames" -msgstr "Capturer des trames _vidéo" - -#: driver/xscreensaver-demo.glade2.h:23 -msgid "How long after the screen blanks until a password will be required." -msgstr "" -"Combien de temps avant qu'il soit nécessaire de donner un mot de passe." - -#: driver/xscreensaver-demo.glade2.h:24 -msgid "How long before the screen saver activates." -msgstr "Combien de temps avant l'activation de l'économiseur d'écran." - -#: driver/xscreensaver-demo.glade2.h:25 -msgid "" -"How long each display mode should run before choosing a new one (in Random " -"mode.)" -msgstr "" -"Combien de temps avant l'activation d'un autre économiseur d'écran (en mode " -"aléatoire)." - -#: driver/xscreensaver-demo.glade2.h:27 -msgid "How long until the monitor goes completely black." -msgstr "Durée avant que le moniteur passe complètement au noir." - -#: driver/xscreensaver-demo.glade2.h:31 -msgid "Install _Colormap" -msgstr "Installer la palette de _couleurs" - -#: driver/xscreensaver-demo.glade2.h:33 -msgid "Never blank the screen or power down the monitor." -msgstr "Ne jamais effacer l'écran ou éteindre le moniteur." - -#: driver/xscreensaver-demo.glade2.h:34 -msgid "" -"No Preview\n" -"Available" -msgstr "" -"Pas d'aperçu\n" -"Disponible" - -#: driver/xscreensaver-demo.glade2.h:36 -msgid "" -"Not\n" -"Installed" -msgstr "" -"Non\n" -"installé" - -#: driver/xscreensaver-demo.glade2.h:42 -msgid "Stand_by After" -msgstr "Blo_cage après" - -#: driver/xscreensaver-demo.glade2.h:45 -msgid "Sus_pend After" -msgstr "Sus_pend après" - -#: driver/xscreensaver-demo.glade2.h:46 -msgid "Text Manipulation" -msgstr "Manipulation de texte" - -#: driver/xscreensaver-demo.glade2.h:47 -msgid "Text _file" -msgstr "_Fichier texte" - -#: driver/xscreensaver-demo.glade2.h:48 +#: ../driver/demo-Gtk.c:4579 msgid "" -"Text-displaying modes will display the contents of this URL (HTML or RSS)." -msgstr "" -"Les modes qui affichent du texte utiliseront le contenu de cette URL (HTML " -"ou RSS)." - -#: driver/xscreensaver-demo.glade2.h:49 -msgid "Text-displaying modes will display the contents of this file." -msgstr "Les modes qui affichent du texte utiliseront le contenu de ce fichier." - -#: driver/xscreensaver-demo.glade2.h:50 -msgid "Text-displaying modes will display the local host name, date, and time." -msgstr "" -"Les modes qui affichent du texte utiliseront le nom de la machine, la date " -"et l'heure." - -#: driver/xscreensaver-demo.glade2.h:51 -msgid "Text-displaying modes will display the output of this program." +"Warning:\n" +"\n" +"The GNOME screensaver daemon appears to be running.\n" +"It must be stopped for XScreenSaver to work properly.\n" +"\n" +"Stop the GNOME screen saver daemon now?\n" msgstr "" -"Les modes qui affichent du texte utiliseront la sortie de ce programme." - -#: driver/xscreensaver-demo.glade2.h:52 -msgid "Text-displaying modes will display the text typed here." -msgstr "Les modes qui affichent du texte utiliseront ce texte." -#: driver/xscreensaver-demo.glade2.h:55 +#: ../driver/demo-Gtk.c:4588 msgid "" -"Very few (or no) screen savers appear to be available.\n" +"Warning:\n" "\n" -"This probably means that the \"xscreensaver-extras\" and\n" -"\"xscreensaver-gl-extras\" packages are not installed." -msgstr "" -"Aucun économiseur d'écran disponible.\n" +"The KDE screen saver daemon appears to be running.\n" +"It must be stopped for XScreenSaver to work properly.\n" "\n" -"Ceci peut s'expliquer si les paquets «xscreensaver-extras» et «screensaver-" -"gl-extras» ne sont pas installés." - -#: driver/xscreensaver-demo.glade2.h:59 -msgid "When idle or locked, blacken the screen only." -msgstr "En attente ou blocage, seulement effacer l'écran." - -#: driver/xscreensaver-demo.glade2.h:60 -msgid "" -"When idle or locked, choose a random display mode from among the checked " -"items in the list below." +"Stop the KDE screen saver daemon now?\n" msgstr "" -"En attente ou blocage, choisir un mode d'afficahge parmi ceux sélectionnés " -"dans la liste ci-dessous." -#: driver/xscreensaver-demo.glade2.h:61 -msgid "" -"When idle or locked, choose a random display mode from among the checked " -"items in the list below. Run that same mode on each monitor." -msgstr "" -"En attente ou blocage, choisir un mode d'afficahge parmi ceux sélectionnés " -"dans la liste ci-dessous. Lancer le même mode sur tous les moniteurs." +#: ../driver/demo-Gtk.c:5034 +#, c-format +msgid "%s: unknown option: %s\n" +msgstr "%s : option inconnue : %s\n" -#: driver/xscreensaver-demo.glade2.h:62 -msgid "When idle or locked, run the display mode selected below." -msgstr "En attente ou blocage, lancer le mode sélectionné ci-dessous." +#: ../driver/demo-Gtk.c:5102 +msgid "Screensaver Preferences" +msgstr "Préférences économiseur d'écran" -#: driver/xscreensaver-demo.glade2.h:65 +#: ../driver/demo-Gtk.c:5305 msgid "" -"Whether the image-manipulating modes should operate on images captured from " -"the system's video input (if there is one.)" +"Warning:\n" +"\n" +"This version of xscreensaver is VERY OLD!\n" +"Please upgrade!\n" +"\n" +"https://www.jwz.org/xscreensaver/\n" +"\n" +"(If this is the latest version that your distro ships, then\n" +"your distro is doing you a disservice. Build from source.)\n" msgstr "" -"Les modes qui manipulent des images sont-ils autorisés à utiliser des images " -"capturées par l'entrée vidéo du système (si il y en a une)." - -#: driver/xscreensaver-demo.glade2.h:73 -msgid "_Advanced" -msgstr "_Avancé" - -#: driver/xscreensaver-demo.glade2.h:74 -msgid "_Advanced >>" -msgstr "_Avancé >>" - -#: driver/xscreensaver-demo.glade2.h:75 -msgid "_Blank After" -msgstr "_Verrouillage après" - -#: driver/xscreensaver-demo.glade2.h:77 -msgid "_Blank Screen Only" -msgstr "_Économiser l'écran uniquement" - -#: driver/xscreensaver-demo.glade2.h:78 -msgid "_Browse" -msgstr "_Parcourir" - -#: driver/xscreensaver-demo.glade2.h:79 -msgid "_Command Line:" -msgstr "_Ligne de commande :" -#: driver/xscreensaver-demo.glade2.h:80 -msgid "_Cycle After" -msgstr "_Changement au bout de" - -#: driver/xscreensaver-demo.glade2.h:81 -msgid "_Disable Screen Saver" -msgstr "_Désactiver l'économiseur d'écran" - -#: driver/xscreensaver-demo.glade2.h:82 -msgid "_Display Modes" -msgstr "_Modes d'affichage" - -#: driver/xscreensaver-demo.glade2.h:86 -msgid "_Host Name and Time" -msgstr "_Nom de la machine et heure" - -#: driver/xscreensaver-demo.glade2.h:88 -msgid "_Lock Screen After " -msgstr "_Verrouillage de l'écran après" - -#: driver/xscreensaver-demo.glade2.h:90 -msgid "_Mode:" -msgstr "_Mode :" - -#: driver/xscreensaver-demo.glade2.h:91 -msgid "_Off After" -msgstr "Coup_ure après" - -#: driver/xscreensaver-demo.glade2.h:92 -msgid "_Only One Screen Saver" -msgstr "_Seulement un économiseur d'écran" - -#: driver/xscreensaver-demo.glade2.h:93 -msgid "_Power Management Enabled" -msgstr "_Gestion d'alimentation de l'écran" - -#: driver/xscreensaver-demo.glade2.h:94 -msgid "_Preview" -msgstr "_Aperçu" - -#: driver/xscreensaver-demo.glade2.h:95 -msgid "_Program" -msgstr "_Programme" +#: ../driver/demo-Gtk-conf.c:897 +msgid "Browse..." +msgstr "Parcourir... " -#: driver/xscreensaver-demo.glade2.h:96 -msgid "_Quit" -msgstr "_Quitte" +#: ../driver/demo-Gtk-conf.c:1100 +msgid "Select file." +msgstr "Sélectionnez un fichier." -#: driver/xscreensaver-demo.glade2.h:97 -msgid "_Random Screen Saver" -msgstr "Économiseur d'écran _aléatoire" +#: ../driver/screensaver-properties.desktop.in.h:1 +msgid "Screensaver" +msgstr "Économiseur d'écran" -#: driver/xscreensaver-demo.glade2.h:99 -msgid "_Same Random Savers" -msgstr "_Mêmes économiseurs aléatoires" +#: ../driver/screensaver-properties.desktop.in.h:2 +msgid "Change screensaver properties" +msgstr "Modifier les propriétés de l'économiseur d'écran" -#: driver/xscreensaver-demo.glade2.h:100 -msgid "_Settings..." -msgstr "_Paramètres... " +#: ../hacks/config/abstractile.xml.h:1 +msgid "Abstractile" +msgstr "" -#: driver/xscreensaver-demo.glade2.h:101 -msgid "_Standard <<" -msgstr "_Standard <<" +#: ../hacks/config/abstractile.xml.h:2 ../hacks/config/anemone.xml.h:2 +#: ../hacks/config/apollonian.xml.h:13 ../hacks/config/atlantis.xml.h:5 +#: ../hacks/config/attraction.xml.h:24 ../hacks/config/blitspin.xml.h:2 +#: ../hacks/config/boing.xml.h:5 ../hacks/config/bouncingcow.xml.h:5 +#: ../hacks/config/boxed.xml.h:5 ../hacks/config/carousel.xml.h:5 +#: ../hacks/config/ccurve.xml.h:5 ../hacks/config/circuit.xml.h:8 +#: ../hacks/config/cityflow.xml.h:9 ../hacks/config/companioncube.xml.h:5 +#: ../hacks/config/covid19.xml.h:5 ../hacks/config/crumbler.xml.h:5 +#: ../hacks/config/cube21.xml.h:8 ../hacks/config/cubenetic.xml.h:17 +#: ../hacks/config/cubestack.xml.h:5 ../hacks/config/cubestorm.xml.h:5 +#: ../hacks/config/cubetwist.xml.h:5 ../hacks/config/cubicgrid.xml.h:5 +#: ../hacks/config/dangerball.xml.h:5 ../hacks/config/deepstars.xml.h:5 +#: ../hacks/config/discoball.xml.h:5 ../hacks/config/dymaxionmap.xml.h:5 +#: ../hacks/config/energystream.xml.h:2 ../hacks/config/eruption.xml.h:10 +#: ../hacks/config/esper.xml.h:5 ../hacks/config/fliptext.xml.h:5 +#: ../hacks/config/flyingtoasters.xml.h:5 ../hacks/config/fontglide.xml.h:5 +#: ../hacks/config/fuzzyflakes.xml.h:5 ../hacks/config/gears.xml.h:5 +#: ../hacks/config/geodesic.xml.h:14 ../hacks/config/gflux.xml.h:5 +#: ../hacks/config/gibson.xml.h:5 ../hacks/config/glcells.xml.h:25 +#: ../hacks/config/glknots.xml.h:5 ../hacks/config/glmatrix.xml.h:8 +#: ../hacks/config/glsnake.xml.h:11 ../hacks/config/goop.xml.h:5 +#: ../hacks/config/gravitywell.xml.h:5 ../hacks/config/handsy.xml.h:5 +#: ../hacks/config/headroom.xml.h:5 ../hacks/config/hexadrop.xml.h:5 +#: ../hacks/config/hexstrut.xml.h:5 ../hacks/config/hilbert.xml.h:8 +#: ../hacks/config/hydrostat.xml.h:5 ../hacks/config/hyperball.xml.h:9 +#: ../hacks/config/hypercube.xml.h:9 ../hacks/config/hypnowheel.xml.h:2 +#: ../hacks/config/interference.xml.h:5 ../hacks/config/jigglypuff.xml.h:14 +#: ../hacks/config/jigsaw.xml.h:5 ../hacks/config/juggle.xml.h:5 +#: ../hacks/config/juggler3d.xml.h:5 ../hacks/config/kaleidocycle.xml.h:8 +#: ../hacks/config/maze3d.xml.h:2 ../hacks/config/moebiusgears.xml.h:5 +#: ../hacks/config/peepers.xml.h:5 ../hacks/config/penetrate.xml.h:2 +#: ../hacks/config/petri.xml.h:16 ../hacks/config/phosphor.xml.h:6 +#: ../hacks/config/photopile.xml.h:12 ../hacks/config/piecewise.xml.h:8 +#: ../hacks/config/pinion.xml.h:5 ../hacks/config/polyhedra.xml.h:5 +#: ../hacks/config/pong.xml.h:2 ../hacks/config/pyro.xml.h:2 +#: ../hacks/config/quasicrystal.xml.h:5 ../hacks/config/raverhoop.xml.h:11 +#: ../hacks/config/razzledazzle.xml.h:5 ../hacks/config/rdbomb.xml.h:2 +#: ../hacks/config/rd-bomb.xml.h:2 ../hacks/config/rocks.xml.h:8 +#: ../hacks/config/rubik.xml.h:6 ../hacks/config/rubikblocks.xml.h:8 +#: ../hacks/config/skytentacles.xml.h:15 ../hacks/config/slidescreen.xml.h:11 +#: ../hacks/config/sonar.xml.h:5 ../hacks/config/speedmine.xml.h:5 +#: ../hacks/config/splitflap.xml.h:5 ../hacks/config/superquadrics.xml.h:5 +#: ../hacks/config/tangram.xml.h:8 ../hacks/config/topblock.xml.h:5 +#: ../hacks/config/tronbit.xml.h:5 ../hacks/config/twang.xml.h:8 +#: ../hacks/config/unicrud.xml.h:5 ../hacks/config/unknownpleasures.xml.h:8 +#: ../hacks/config/vigilance.xml.h:5 ../hacks/config/voronoi.xml.h:2 +#: ../hacks/config/winduprobot.xml.h:5 ../hacks/config/wormhole.xml.h:5 +#: ../hacks/config/xjack.xml.h:2 +msgid "Slow" +msgstr "Lent(e)" -#: driver/xscreensaver-demo.glade2.h:102 -msgid "_Text" -msgstr "_Texte" +#: ../hacks/config/abstractile.xml.h:3 ../hacks/config/anemone.xml.h:3 +#: ../hacks/config/apollonian.xml.h:14 ../hacks/config/attraction.xml.h:25 +#: ../hacks/config/boing.xml.h:6 ../hacks/config/boxed.xml.h:6 +#: ../hacks/config/covid19.xml.h:6 ../hacks/config/crumbler.xml.h:6 +#: ../hacks/config/cubestorm.xml.h:6 ../hacks/config/cubicgrid.xml.h:6 +#: ../hacks/config/deepstars.xml.h:6 ../hacks/config/discoball.xml.h:6 +#: ../hacks/config/energystream.xml.h:3 ../hacks/config/esper.xml.h:6 +#: ../hacks/config/fliptext.xml.h:6 ../hacks/config/fontglide.xml.h:6 +#: ../hacks/config/fuzzyflakes.xml.h:6 ../hacks/config/gears.xml.h:6 +#: ../hacks/config/glknots.xml.h:6 ../hacks/config/goop.xml.h:6 +#: ../hacks/config/gravitywell.xml.h:6 ../hacks/config/handsy.xml.h:6 +#: ../hacks/config/hexadrop.xml.h:6 ../hacks/config/hexstrut.xml.h:6 +#: ../hacks/config/hilbert.xml.h:11 ../hacks/config/hypnowheel.xml.h:5 +#: ../hacks/config/jigsaw.xml.h:6 ../hacks/config/juggle.xml.h:6 +#: ../hacks/config/juggler3d.xml.h:6 ../hacks/config/kaleidocycle.xml.h:9 +#: ../hacks/config/maze3d.xml.h:3 ../hacks/config/moebiusgears.xml.h:6 +#: ../hacks/config/peepers.xml.h:6 ../hacks/config/polyhedra.xml.h:6 +#: ../hacks/config/quasicrystal.xml.h:6 ../hacks/config/razzledazzle.xml.h:6 +#: ../hacks/config/skytentacles.xml.h:18 ../hacks/config/sonar.xml.h:6 +#: ../hacks/config/splitflap.xml.h:6 ../hacks/config/tessellimage.xml.h:6 +#: ../hacks/config/unknownpleasures.xml.h:9 ../hacks/config/vigilance.xml.h:6 +#: ../hacks/config/xjack.xml.h:3 +msgid "Speed" +msgstr "Vitesse" -#: driver/xscreensaver-demo.glade2.h:103 -msgid "_URL" -msgstr "_URL" +#: ../hacks/config/abstractile.xml.h:4 ../hacks/config/anemone.xml.h:4 +#: ../hacks/config/apollonian.xml.h:15 ../hacks/config/atlantis.xml.h:7 +#: ../hacks/config/attraction.xml.h:26 ../hacks/config/blitspin.xml.h:4 +#: ../hacks/config/boing.xml.h:7 ../hacks/config/bouncingcow.xml.h:7 +#: ../hacks/config/boxed.xml.h:7 ../hacks/config/carousel.xml.h:7 +#: ../hacks/config/ccurve.xml.h:7 ../hacks/config/circuit.xml.h:10 +#: ../hacks/config/cityflow.xml.h:11 ../hacks/config/companioncube.xml.h:7 +#: ../hacks/config/covid19.xml.h:7 ../hacks/config/crumbler.xml.h:7 +#: ../hacks/config/cube21.xml.h:10 ../hacks/config/cubenetic.xml.h:19 +#: ../hacks/config/cubestack.xml.h:7 ../hacks/config/cubestorm.xml.h:7 +#: ../hacks/config/cubetwist.xml.h:7 ../hacks/config/cubicgrid.xml.h:7 +#: ../hacks/config/dangerball.xml.h:7 ../hacks/config/deepstars.xml.h:7 +#: ../hacks/config/discoball.xml.h:7 ../hacks/config/dymaxionmap.xml.h:7 +#: ../hacks/config/energystream.xml.h:4 ../hacks/config/eruption.xml.h:12 +#: ../hacks/config/esper.xml.h:7 ../hacks/config/fliptext.xml.h:7 +#: ../hacks/config/flyingtoasters.xml.h:7 ../hacks/config/fontglide.xml.h:7 +#: ../hacks/config/fuzzyflakes.xml.h:7 ../hacks/config/gears.xml.h:7 +#: ../hacks/config/geodesic.xml.h:16 ../hacks/config/gflux.xml.h:7 +#: ../hacks/config/gibson.xml.h:7 ../hacks/config/glknots.xml.h:7 +#: ../hacks/config/glmatrix.xml.h:10 ../hacks/config/glsnake.xml.h:13 +#: ../hacks/config/goop.xml.h:7 ../hacks/config/gravitywell.xml.h:7 +#: ../hacks/config/handsy.xml.h:7 ../hacks/config/headroom.xml.h:7 +#: ../hacks/config/hexadrop.xml.h:7 ../hacks/config/hexstrut.xml.h:7 +#: ../hacks/config/hilbert.xml.h:10 ../hacks/config/hydrostat.xml.h:7 +#: ../hacks/config/hyperball.xml.h:11 ../hacks/config/hypercube.xml.h:11 +#: ../hacks/config/hypnowheel.xml.h:4 ../hacks/config/interference.xml.h:7 +#: ../hacks/config/jigglypuff.xml.h:16 ../hacks/config/jigsaw.xml.h:7 +#: ../hacks/config/juggle.xml.h:7 ../hacks/config/juggler3d.xml.h:7 +#: ../hacks/config/kaleidocycle.xml.h:10 ../hacks/config/maze3d.xml.h:4 +#: ../hacks/config/moebiusgears.xml.h:7 ../hacks/config/peepers.xml.h:7 +#: ../hacks/config/penetrate.xml.h:4 ../hacks/config/petri.xml.h:18 +#: ../hacks/config/phosphor.xml.h:8 ../hacks/config/photopile.xml.h:14 +#: ../hacks/config/piecewise.xml.h:10 ../hacks/config/pinion.xml.h:7 +#: ../hacks/config/polyhedra.xml.h:7 ../hacks/config/pong.xml.h:4 +#: ../hacks/config/pyro.xml.h:4 ../hacks/config/quasicrystal.xml.h:7 +#: ../hacks/config/raverhoop.xml.h:13 ../hacks/config/razzledazzle.xml.h:7 +#: ../hacks/config/rdbomb.xml.h:4 ../hacks/config/rd-bomb.xml.h:4 +#: ../hacks/config/rocks.xml.h:10 ../hacks/config/rubik.xml.h:8 +#: ../hacks/config/rubikblocks.xml.h:10 ../hacks/config/skytentacles.xml.h:17 +#: ../hacks/config/slidescreen.xml.h:13 ../hacks/config/sonar.xml.h:7 +#: ../hacks/config/speedmine.xml.h:7 ../hacks/config/splitflap.xml.h:7 +#: ../hacks/config/starwars.xml.h:5 ../hacks/config/superquadrics.xml.h:7 +#: ../hacks/config/tangram.xml.h:10 ../hacks/config/topblock.xml.h:7 +#: ../hacks/config/tronbit.xml.h:7 ../hacks/config/unicrud.xml.h:7 +#: ../hacks/config/unknownpleasures.xml.h:10 ../hacks/config/vigilance.xml.h:7 +#: ../hacks/config/voronoi.xml.h:4 ../hacks/config/winduprobot.xml.h:7 +#: ../hacks/config/wormhole.xml.h:7 ../hacks/config/xjack.xml.h:4 +msgid "Fast" +msgstr "Rapide" -#: driver/xscreensaver-demo.glade2.h:104 -msgid "_Visual:" -msgstr "_Visuels :" +#: ../hacks/config/abstractile.xml.h:5 ../hacks/config/ccurve.xml.h:2 +#: ../hacks/config/flame.xml.h:5 ../hacks/config/maze.xml.h:13 +msgid "0 seconds" +msgstr "0 seconde" -#: driver/xscreensaver-demo.glade2.h:105 -msgid "dialog1" -msgstr "dialog1" +#: ../hacks/config/abstractile.xml.h:6 ../hacks/config/boxed.xml.h:17 +#: ../hacks/config/celtic.xml.h:6 ../hacks/config/coral.xml.h:6 +#: ../hacks/config/cube21.xml.h:22 ../hacks/config/epicycle.xml.h:9 +#: ../hacks/config/flame.xml.h:6 ../hacks/config/glcells.xml.h:6 +#: ../hacks/config/helix.xml.h:6 ../hacks/config/imsmap.xml.h:6 +#: ../hacks/config/rorschach.xml.h:9 ../hacks/config/rubikblocks.xml.h:16 +#: ../hacks/config/tangram.xml.h:6 ../hacks/config/xlyap.xml.h:6 +#: ../hacks/config/xspirograph.xml.h:6 +msgid "Linger" +msgstr "Persistance" -#: driver/xscreensaver-demo.glade2.h:107 -msgid "no preview" -msgstr "pas d'aperçu" +#: ../hacks/config/abstractile.xml.h:7 ../hacks/config/voronoi.xml.h:16 +msgid "60 seconds" +msgstr "60 secondes" -#: driver/xscreensaver-demo.glade2.h:108 -msgid "not installed" -msgstr "non installé" +#: ../hacks/config/abstractile.xml.h:8 +msgid "Random tile layout" +msgstr "Mouvement aléatoire" -#: driver/xscreensaver-demo.glade2.h:109 -msgid "nothing" -msgstr "rien" +#: ../hacks/config/abstractile.xml.h:9 +msgid "Flat tiles" +msgstr "Tuiles plates" + +#: ../hacks/config/abstractile.xml.h:10 +msgid "Thin tiles" +msgstr "Tuiles minces" + +#: ../hacks/config/abstractile.xml.h:11 +msgid "Outline tiles" +msgstr "Tuiles contours" + +#: ../hacks/config/abstractile.xml.h:12 +msgid "Block tiles" +msgstr "Tuiles blocs" + +#: ../hacks/config/abstractile.xml.h:13 +msgid "Neon tiles" +msgstr "Tuiles néon" + +#: ../hacks/config/abstractile.xml.h:14 +msgid "Tiled tiles" +msgstr "Tuiles" + +#. #### -graphmode [none] +#. #### -mother_ship_color1 [white] +#. #### -size_factor_max [2.05] +#. #### -size [-7] +#. #### -spring_constant [5] +#. +#. +#. #### -background [black] +#. #### -right3d [Red] +#. #### -cycle +#. +#. +#. +#. +#. #### -anim-step-size [3] +#. #### -3d +#. #### -font [] +#. #### -w [] +#: ../hacks/config/abstractile.xml.h:15 ../hacks/config/anemone.xml.h:16 +#: ../hacks/config/anemotaxis.xml.h:12 ../hacks/config/ant.xml.h:22 +#: ../hacks/config/antinspect.xml.h:5 ../hacks/config/antmaze.xml.h:5 +#: ../hacks/config/antspotlight.xml.h:5 ../hacks/config/apollonian.xml.h:16 +#: ../hacks/config/apple2.xml.h:9 ../hacks/config/atlantis.xml.h:19 +#: ../hacks/config/attraction.xml.h:32 ../hacks/config/atunnel.xml.h:8 +#: ../hacks/config/barcode.xml.h:9 ../hacks/config/beats.xml.h:16 +#: ../hacks/config/blaster.xml.h:11 ../hacks/config/blinkbox.xml.h:12 +#: ../hacks/config/blitspin.xml.h:9 ../hacks/config/blocktube.xml.h:11 +#: ../hacks/config/boing.xml.h:14 ../hacks/config/bouboule.xml.h:11 +#: ../hacks/config/bouncingcow.xml.h:13 ../hacks/config/boxed.xml.h:23 +#: ../hacks/config/boxfit.xml.h:15 ../hacks/config/braid.xml.h:13 +#: ../hacks/config/bubble3d.xml.h:11 ../hacks/config/bubbles.xml.h:11 +#: ../hacks/config/bumps.xml.h:11 ../hacks/config/cage.xml.h:6 +#: ../hacks/config/carousel.xml.h:18 ../hacks/config/ccurve.xml.h:11 +#: ../hacks/config/celtic.xml.h:9 ../hacks/config/circuit.xml.h:14 +#: ../hacks/config/cityflow.xml.h:17 ../hacks/config/cloudlife.xml.h:12 +#: ../hacks/config/companioncube.xml.h:14 ../hacks/config/compass.xml.h:5 +#: ../hacks/config/coral.xml.h:14 ../hacks/config/covid19.xml.h:14 +#: ../hacks/config/crackberg.xml.h:18 ../hacks/config/critical.xml.h:8 +#: ../hacks/config/crumbler.xml.h:15 ../hacks/config/crystal.xml.h:15 +#: ../hacks/config/cube21.xml.h:26 ../hacks/config/cubenetic.xml.h:26 +#: ../hacks/config/cubestack.xml.h:16 ../hacks/config/cubestorm.xml.h:20 +#: ../hacks/config/cubetwist.xml.h:18 ../hacks/config/cubicgrid.xml.h:12 +#: ../hacks/config/cwaves.xml.h:9 ../hacks/config/cynosure.xml.h:11 +#: ../hacks/config/dangerball.xml.h:14 ../hacks/config/decayscreen.xml.h:23 +#: ../hacks/config/deco.xml.h:14 ../hacks/config/deepstars.xml.h:9 +#: ../hacks/config/deluxe.xml.h:16 ../hacks/config/demon.xml.h:15 +#: ../hacks/config/discoball.xml.h:14 ../hacks/config/discrete.xml.h:11 +#: ../hacks/config/distort.xml.h:22 ../hacks/config/dnalogo.xml.h:9 +#: ../hacks/config/drift.xml.h:11 ../hacks/config/dymaxionmap.xml.h:16 +#: ../hacks/config/endgame.xml.h:6 ../hacks/config/energystream.xml.h:7 +#: ../hacks/config/engine.xml.h:19 ../hacks/config/epicycle.xml.h:14 +#: ../hacks/config/eruption.xml.h:22 ../hacks/config/esper.xml.h:9 +#: ../hacks/config/etruscanvenus.xml.h:42 ../hacks/config/euler2d.xml.h:29 +#: ../hacks/config/extrusion.xml.h:17 ../hacks/config/fadeplot.xml.h:14 +#: ../hacks/config/fiberlamp.xml.h:11 ../hacks/config/filmleader.xml.h:9 +#: ../hacks/config/fireworkx.xml.h:10 ../hacks/config/flag.xml.h:13 +#: ../hacks/config/flame.xml.h:14 ../hacks/config/flipflop.xml.h:14 +#: ../hacks/config/flipscreen3d.xml.h:6 ../hacks/config/fliptext.xml.h:15 +#: ../hacks/config/flow.xml.h:21 ../hacks/config/fluidballs.xml.h:22 +#: ../hacks/config/flurry.xml.h:2 ../hacks/config/flyingtoasters.xml.h:15 +#: ../hacks/config/fontglide.xml.h:16 ../hacks/config/forest.xml.h:8 +#: ../hacks/config/fuzzyflakes.xml.h:12 ../hacks/config/galaxy.xml.h:13 +#: ../hacks/config/gears.xml.h:14 ../hacks/config/geodesic.xml.h:10 +#: ../hacks/config/geodesicgears.xml.h:13 ../hacks/config/gflux.xml.h:19 +#: ../hacks/config/gibson.xml.h:15 ../hacks/config/glblur.xml.h:17 +#: ../hacks/config/glcells.xml.h:32 ../hacks/config/gleidescope.xml.h:14 +#: ../hacks/config/glforestfire.xml.h:16 ../hacks/config/glhanoi.xml.h:16 +#: ../hacks/config/glknots.xml.h:24 ../hacks/config/glmatrix.xml.h:20 +#: ../hacks/config/glplanet.xml.h:19 ../hacks/config/glschool.xml.h:17 +#: ../hacks/config/glslideshow.xml.h:20 ../hacks/config/glsnake.xml.h:18 +#: ../hacks/config/gltext.xml.h:19 ../hacks/config/goop.xml.h:13 +#: ../hacks/config/grav.xml.h:12 ../hacks/config/greynetic.xml.h:6 +#: ../hacks/config/halftone.xml.h:17 ../hacks/config/halo.xml.h:14 +#: ../hacks/config/handsy.xml.h:23 ../hacks/config/headroom.xml.h:18 +#: ../hacks/config/helix.xml.h:8 ../hacks/config/hexadrop.xml.h:22 +#: ../hacks/config/hexstrut.xml.h:17 ../hacks/config/hilbert.xml.h:20 +#: ../hacks/config/hopalong.xml.h:23 ../hacks/config/hydrostat.xml.h:29 +#: ../hacks/config/hyperball.xml.h:8 ../hacks/config/hypercube.xml.h:8 +#: ../hacks/config/hypertorus.xml.h:5 ../hacks/config/hypnowheel.xml.h:8 +#: ../hacks/config/ifs.xml.h:68 ../hacks/config/imsmap.xml.h:18 +#: ../hacks/config/interaggregate.xml.h:8 ../hacks/config/interference.xml.h:21 +#: ../hacks/config/intermomentary.xml.h:8 ../hacks/config/jigglypuff.xml.h:10 +#: ../hacks/config/jigsaw.xml.h:15 ../hacks/config/juggle.xml.h:21 +#: ../hacks/config/juggler3d.xml.h:21 ../hacks/config/julia.xml.h:14 +#: ../hacks/config/kaleidescope.xml.h:13 ../hacks/config/kaleidocycle.xml.h:21 +#: ../hacks/config/klein.xml.h:47 ../hacks/config/kumppa.xml.h:8 +#: ../hacks/config/lament.xml.h:7 ../hacks/config/laser.xml.h:12 +#: ../hacks/config/lavalite.xml.h:16 ../hacks/config/lcdscrub.xml.h:7 +#: ../hacks/config/lightning.xml.h:8 ../hacks/config/lisa.xml.h:16 +#: ../hacks/config/lissie.xml.h:15 ../hacks/config/lmorph.xml.h:17 +#: ../hacks/config/lockward.xml.h:9 ../hacks/config/loop.xml.h:12 +#: ../hacks/config/m6502.xml.h:3 ../hacks/config/maze.xml.h:12 +#: ../hacks/config/maze3d.xml.h:10 ../hacks/config/memscroller.xml.h:9 +#: ../hacks/config/menger.xml.h:20 ../hacks/config/metaballs.xml.h:16 +#: ../hacks/config/mirrorblob.xml.h:25 ../hacks/config/mismunch.xml.h:13 +#: ../hacks/config/moebius.xml.h:7 ../hacks/config/moebiusgears.xml.h:14 +#: ../hacks/config/moire.xml.h:12 ../hacks/config/moire2.xml.h:9 +#: ../hacks/config/molecule.xml.h:15 ../hacks/config/morph3d.xml.h:11 +#: ../hacks/config/mountain.xml.h:11 ../hacks/config/munch.xml.h:16 +#: ../hacks/config/nerverot.xml.h:21 ../hacks/config/noof.xml.h:5 +#: ../hacks/config/noseguy.xml.h:2 ../hacks/config/pacman.xml.h:6 +#: ../hacks/config/pedal.xml.h:9 ../hacks/config/peepers.xml.h:17 +#: ../hacks/config/penetrate.xml.h:8 ../hacks/config/penrose.xml.h:12 +#: ../hacks/config/petri.xml.h:5 ../hacks/config/phosphor.xml.h:13 +#: ../hacks/config/photopile.xml.h:22 ../hacks/config/piecewise.xml.h:15 +#: ../hacks/config/pinion.xml.h:16 ../hacks/config/pipes.xml.h:20 +#: ../hacks/config/polyhedra.xml.h:168 ../hacks/config/polyominoes.xml.h:12 +#: ../hacks/config/polytopes.xml.h:18 ../hacks/config/pong.xml.h:9 +#: ../hacks/config/popsquares.xml.h:21 ../hacks/config/projectiveplane.xml.h:45 +#: ../hacks/config/providence.xml.h:7 ../hacks/config/pulsar.xml.h:14 +#: ../hacks/config/pyro.xml.h:14 ../hacks/config/qix.xml.h:24 +#: ../hacks/config/quasicrystal.xml.h:13 ../hacks/config/queens.xml.h:6 +#: ../hacks/config/raverhoop.xml.h:20 ../hacks/config/razzledazzle.xml.h:20 +#: ../hacks/config/rdbomb.xml.h:17 ../hacks/config/rd-bomb.xml.h:17 +#: ../hacks/config/ripples.xml.h:18 ../hacks/config/rocks.xml.h:17 +#: ../hacks/config/romanboy.xml.h:43 ../hacks/config/rorschach.xml.h:11 +#: ../hacks/config/rotor.xml.h:13 ../hacks/config/rotzoomer.xml.h:15 +#: ../hacks/config/rubik.xml.h:11 ../hacks/config/rubikblocks.xml.h:20 +#: ../hacks/config/sballs.xml.h:16 ../hacks/config/scooter.xml.h:17 +#: ../hacks/config/shadebobs.xml.h:16 ../hacks/config/sierpinski.xml.h:13 +#: ../hacks/config/sierpinski3d.xml.h:10 ../hacks/config/skytentacles.xml.h:25 +#: ../hacks/config/slidescreen.xml.h:18 ../hacks/config/slip.xml.h:13 +#: ../hacks/config/sonar.xml.h:34 ../hacks/config/speedmine.xml.h:17 +#: ../hacks/config/sphere.xml.h:8 ../hacks/config/sphereeversion.xml.h:32 +#: ../hacks/config/spheremonics.xml.h:22 ../hacks/config/spiral.xml.h:11 +#: ../hacks/config/splitflap.xml.h:25 ../hacks/config/splodesic.xml.h:11 +#: ../hacks/config/spotlight.xml.h:11 ../hacks/config/sproingies.xml.h:9 +#: ../hacks/config/squiral.xml.h:17 ../hacks/config/stairs.xml.h:5 +#: ../hacks/config/starfish.xml.h:17 ../hacks/config/starwars.xml.h:15 +#: ../hacks/config/stonerview.xml.h:7 ../hacks/config/strange.xml.h:23 +#: ../hacks/config/substrate.xml.h:19 ../hacks/config/superquadrics.xml.h:13 +#: ../hacks/config/surfaces.xml.h:27 ../hacks/config/swirl.xml.h:11 +#: ../hacks/config/t3d.xml.h:15 ../hacks/config/tangram.xml.h:16 +#: ../hacks/config/tessellimage.xml.h:19 ../hacks/config/testx11.xml.h:2 +#: ../hacks/config/thornbird.xml.h:16 ../hacks/config/timetunnel.xml.h:8 +#: ../hacks/config/topblock.xml.h:24 ../hacks/config/triangle.xml.h:8 +#: ../hacks/config/tronbit.xml.h:11 ../hacks/config/truchet.xml.h:6 +#: ../hacks/config/twang.xml.h:18 ../hacks/config/unicrud.xml.h:10 +#: ../hacks/config/unknownpleasures.xml.h:17 +#: ../hacks/config/vermiculate.xml.h:5 ../hacks/config/vfeedback.xml.h:9 +#: ../hacks/config/vidwhacker.xml.h:6 ../hacks/config/vines.xml.h:8 +#: ../hacks/config/voronoi.xml.h:11 ../hacks/config/wander.xml.h:13 +#: ../hacks/config/webcollage.xml.h:11 ../hacks/config/whirlwindwarp.xml.h:8 +#: ../hacks/config/whirlygig.xml.h:31 ../hacks/config/winduprobot.xml.h:22 +#: ../hacks/config/worm.xml.h:11 ../hacks/config/wormhole.xml.h:11 +#: ../hacks/config/xanalogtv.xml.h:2 ../hacks/config/xflame.xml.h:7 +#: ../hacks/config/xjack.xml.h:6 ../hacks/config/xlyap.xml.h:9 +#: ../hacks/config/xmatrix.xml.h:21 ../hacks/config/xrayswarm.xml.h:5 +#: ../hacks/config/xspirograph.xml.h:9 ../hacks/config/zoom.xml.h:15 +msgid "Show frame rate" +msgstr "Montrer la vitesse de trame" -#: driver/xscreensaver-demo.glade2.h:110 -msgid "preview" -msgstr "aperçu" +#: ../hacks/config/abstractile.xml.h:16 +msgid "" +"Mosaic patterns of interlocking tiles. Written by Steve Sundstrom; 2004." +msgstr "" -#: hacks/config/anemone.xml.h:1 +#: ../hacks/config/anemone.xml.h:1 msgid "Anemone" msgstr "Anémone" -#: hacks/config/anemone.xml.h:2 hacks/config/fuzzyflakes.xml.h:1 -msgid "Arms" -msgstr "Bras" - -#: hacks/config/anemone.xml.h:3 hacks/config/anemotaxis.xml.h:5 -#: hacks/config/ant.xml.h:6 hacks/config/antinspect.xml.h:4 -#: hacks/config/antmaze.xml.h:3 hacks/config/antspotlight.xml.h:3 -#: hacks/config/apollonian.xml.h:5 hacks/config/atlantis.xml.h:5 -#: hacks/config/attraction.xml.h:8 hacks/config/atunnel.xml.h:3 -#: hacks/config/barcode.xml.h:6 hacks/config/blaster.xml.h:3 -#: hacks/config/blinkbox.xml.h:5 hacks/config/blitspin.xml.h:4 -#: hacks/config/blocktube.xml.h:5 hacks/config/boing.xml.h:2 -#: hacks/config/bouboule.xml.h:3 hacks/config/bouncingcow.xml.h:5 -#: hacks/config/boxed.xml.h:6 hacks/config/boxfit.xml.h:8 -#: hacks/config/braid.xml.h:4 hacks/config/bubble3d.xml.h:4 -#: hacks/config/bubbles.xml.h:8 hacks/config/bumps.xml.h:3 -#: hacks/config/cage.xml.h:2 hacks/config/carousel.xml.h:5 -#: hacks/config/ccurve.xml.h:7 hacks/config/celtic.xml.h:3 -#: hacks/config/circuit.xml.h:4 hacks/config/cloudlife.xml.h:3 -#: hacks/config/compass.xml.h:3 hacks/config/coral.xml.h:6 -#: hacks/config/critical.xml.h:3 hacks/config/crystal.xml.h:6 -#: hacks/config/cube21.xml.h:6 hacks/config/cubenetic.xml.h:5 -#: hacks/config/cubestorm.xml.h:4 hacks/config/cynosure.xml.h:3 -#: hacks/config/dangerball.xml.h:3 hacks/config/decayscreen.xml.h:2 -#: hacks/config/deluxe.xml.h:5 hacks/config/demon.xml.h:4 -#: hacks/config/discrete.xml.h:2 hacks/config/distort.xml.h:4 -#: hacks/config/drift.xml.h:4 hacks/config/endgame.xml.h:3 -#: hacks/config/engine.xml.h:8 hacks/config/epicycle.xml.h:5 -#: hacks/config/eruption.xml.h:5 hacks/config/euler2d.xml.h:3 -#: hacks/config/extrusion.xml.h:3 hacks/config/fadeplot.xml.h:4 -#: hacks/config/fireworkx.xml.h:4 hacks/config/flag.xml.h:2 -#: hacks/config/flame.xml.h:5 hacks/config/flipflop.xml.h:2 -#: hacks/config/flipscreen3d.xml.h:1 hacks/config/fliptext.xml.h:3 -#: hacks/config/flow.xml.h:4 hacks/config/fluidballs.xml.h:5 -#: hacks/config/flyingtoasters.xml.h:5 hacks/config/fontglide.xml.h:4 -#: hacks/config/forest.xml.h:1 hacks/config/fuzzyflakes.xml.h:7 -#: hacks/config/galaxy.xml.h:3 hacks/config/gears.xml.h:2 -#: hacks/config/gflux.xml.h:6 hacks/config/glblur.xml.h:4 -#: hacks/config/glforestfire.xml.h:4 hacks/config/glhanoi.xml.h:3 -#: hacks/config/glknots.xml.h:3 hacks/config/glmatrix.xml.h:5 -#: hacks/config/glplanet.xml.h:2 hacks/config/glschool.xml.h:5 -#: hacks/config/glsnake.xml.h:6 hacks/config/gltext.xml.h:4 -#: hacks/config/goop.xml.h:4 hacks/config/grav.xml.h:2 -#: hacks/config/greynetic.xml.h:2 hacks/config/halftone.xml.h:5 -#: hacks/config/halo.xml.h:3 hacks/config/hopalong.xml.h:9 -#: hacks/config/hyperball.xml.h:2 hacks/config/hypercube.xml.h:2 -#: hacks/config/hypertorus.xml.h:5 hacks/config/ifs.xml.h:3 -#: hacks/config/imsmap.xml.h:6 hacks/config/interaggregate.xml.h:2 -#: hacks/config/interference.xml.h:7 hacks/config/intermomentary.xml.h:4 -#: hacks/config/jigglypuff.xml.h:6 hacks/config/jigsaw.xml.h:3 -#: hacks/config/juggle.xml.h:5 hacks/config/juggler3d.xml.h:2 -#: hacks/config/julia.xml.h:3 hacks/config/kaleidescope.xml.h:4 -#: hacks/config/klein.xml.h:2 hacks/config/kumppa.xml.h:3 -#: hacks/config/lament.xml.h:2 hacks/config/laser.xml.h:3 -#: hacks/config/lavalite.xml.h:9 hacks/config/lightning.xml.h:2 -#: hacks/config/lisa.xml.h:2 hacks/config/lissie.xml.h:2 -#: hacks/config/lmorph.xml.h:3 hacks/config/loop.xml.h:1 -#: hacks/config/maze.xml.h:4 hacks/config/memscroller.xml.h:5 -#: hacks/config/menger.xml.h:3 hacks/config/metaballs.xml.h:4 -#: hacks/config/mirrorblob.xml.h:11 hacks/config/mismunch.xml.h:2 -#: hacks/config/moebius.xml.h:2 hacks/config/moire2.xml.h:1 -#: hacks/config/molecule.xml.h:11 hacks/config/morph3d.xml.h:3 -#: hacks/config/mountain.xml.h:1 hacks/config/munch.xml.h:3 -#: hacks/config/nerverot.xml.h:9 hacks/config/noof.xml.h:2 -#: hacks/config/pacman.xml.h:1 hacks/config/penetrate.xml.h:3 -#: hacks/config/penrose.xml.h:3 hacks/config/petri.xml.h:5 -#: hacks/config/phosphor.xml.h:3 hacks/config/piecewise.xml.h:4 -#: hacks/config/pinion.xml.h:5 hacks/config/pipes.xml.h:7 -#: hacks/config/polyhedra.xml.h:17 hacks/config/polyominoes.xml.h:2 -#: hacks/config/polytopes.xml.h:11 hacks/config/pong.xml.h:1 -#: hacks/config/popsquares.xml.h:3 hacks/config/providence.xml.h:2 -#: hacks/config/pulsar.xml.h:10 hacks/config/pyro.xml.h:4 -#: hacks/config/qix.xml.h:8 hacks/config/queens.xml.h:1 -#: hacks/config/rd-bomb.xml.h:9 hacks/config/rdbomb.xml.h:9 -#: hacks/config/ripples.xml.h:4 hacks/config/rocks.xml.h:4 -#: hacks/config/rotor.xml.h:3 hacks/config/rubik.xml.h:3 -#: hacks/config/sballs.xml.h:4 hacks/config/shadebobs.xml.h:3 -#: hacks/config/sierpinski.xml.h:2 hacks/config/sierpinski3d.xml.h:2 -#: hacks/config/slidescreen.xml.h:2 hacks/config/slip.xml.h:2 -#: hacks/config/speedmine.xml.h:3 hacks/config/sphere.xml.h:2 -#: hacks/config/spheremonics.xml.h:5 hacks/config/spiral.xml.h:3 -#: hacks/config/spotlight.xml.h:2 hacks/config/sproingies.xml.h:1 -#: hacks/config/squiral.xml.h:4 hacks/config/stairs.xml.h:2 -#: hacks/config/starfish.xml.h:3 hacks/config/starwars.xml.h:6 -#: hacks/config/strange.xml.h:1 hacks/config/substrate.xml.h:7 -#: hacks/config/superquadrics.xml.h:4 hacks/config/swirl.xml.h:2 -#: hacks/config/t3d.xml.h:7 hacks/config/tangram.xml.h:1 -#: hacks/config/thornbird.xml.h:2 hacks/config/topblock.xml.h:7 -#: hacks/config/triangle.xml.h:1 hacks/config/truchet.xml.h:1 -#: hacks/config/twang.xml.h:3 hacks/config/vines.xml.h:1 -#: hacks/config/worm.xml.h:3 hacks/config/wormhole.xml.h:2 -#: hacks/config/xflame.xml.h:4 hacks/config/xjack.xml.h:1 -#: hacks/config/xmatrix.xml.h:5 hacks/config/xmountains.xml.h:13 -#: hacks/config/xplanet.xml.h:8 hacks/config/xrayswarm.xml.h:2 -#: hacks/config/zoom.xml.h:2 -msgid "Fast" -msgstr "Rapide" - -#: hacks/config/anemone.xml.h:4 hacks/config/anemotaxis.xml.h:6 -#: hacks/config/blaster.xml.h:4 hacks/config/bouboule.xml.h:4 -#: hacks/config/boxed.xml.h:7 hacks/config/coral.xml.h:7 -#: hacks/config/cubenetic.xml.h:6 hacks/config/eruption.xml.h:6 -#: hacks/config/euler2d.xml.h:4 hacks/config/fiberlamp.xml.h:2 -#: hacks/config/flame.xml.h:6 hacks/config/fluidballs.xml.h:6 -#: hacks/config/fuzzyflakes.xml.h:8 hacks/config/glschool.xml.h:6 -#: hacks/config/julia.xml.h:4 hacks/config/kaleidescope.xml.h:5 -#: hacks/config/lisa.xml.h:3 hacks/config/pedal.xml.h:4 -#: hacks/config/petri.xml.h:7 hacks/config/piecewise.xml.h:5 -#: hacks/config/qix.xml.h:9 hacks/config/substrate.xml.h:8 -#: hacks/config/thornbird.xml.h:3 hacks/config/whirlwindwarp.xml.h:1 -#: hacks/config/wormhole.xml.h:3 +#: ../hacks/config/anemone.xml.h:5 ../hacks/config/anemotaxis.xml.h:8 +#: ../hacks/config/beats.xml.h:5 ../hacks/config/binaryring.xml.h:8 +#: ../hacks/config/blaster.xml.h:7 ../hacks/config/bouboule.xml.h:5 +#: ../hacks/config/boxed.xml.h:8 ../hacks/config/cityflow.xml.h:5 +#: ../hacks/config/coral.xml.h:11 ../hacks/config/crackberg.xml.h:8 +#: ../hacks/config/crumbler.xml.h:8 ../hacks/config/cubenetic.xml.h:5 +#: ../hacks/config/cubestorm.xml.h:8 ../hacks/config/dangerball.xml.h:8 +#: ../hacks/config/eruption.xml.h:5 ../hacks/config/euler2d.xml.h:5 +#: ../hacks/config/fiberlamp.xml.h:5 ../hacks/config/flame.xml.h:8 +#: ../hacks/config/flow.xml.h:5 ../hacks/config/fluidballs.xml.h:5 +#: ../hacks/config/fuzzyflakes.xml.h:8 ../hacks/config/glcells.xml.h:8 +#: ../hacks/config/glschool.xml.h:5 ../hacks/config/goop.xml.h:8 +#: ../hacks/config/grav.xml.h:5 ../hacks/config/halftone.xml.h:5 +#: ../hacks/config/halo.xml.h:5 ../hacks/config/hydrostat.xml.h:14 +#: ../hacks/config/interaggregate.xml.h:5 ../hacks/config/interference.xml.h:11 +#: ../hacks/config/jigsaw.xml.h:8 ../hacks/config/julia.xml.h:5 +#: ../hacks/config/kaleidescope.xml.h:5 ../hacks/config/lisa.xml.h:5 +#: ../hacks/config/lmorph.xml.h:5 ../hacks/config/nerverot.xml.h:8 +#: ../hacks/config/pedal.xml.h:5 ../hacks/config/peepers.xml.h:8 +#: ../hacks/config/petri.xml.h:10 ../hacks/config/piecewise.xml.h:5 +#: ../hacks/config/qix.xml.h:5 ../hacks/config/rocks.xml.h:5 +#: ../hacks/config/sierpinski.xml.h:5 ../hacks/config/slip.xml.h:5 +#: ../hacks/config/spiral.xml.h:5 ../hacks/config/substrate.xml.h:8 +#: ../hacks/config/swirl.xml.h:5 ../hacks/config/thornbird.xml.h:5 +#: ../hacks/config/topblock.xml.h:13 ../hacks/config/unknownpleasures.xml.h:5 +#: ../hacks/config/voronoi.xml.h:5 ../hacks/config/whirlwindwarp.xml.h:2 +#: ../hacks/config/wormhole.xml.h:8 msgid "Few" msgstr "Peu" -#: hacks/config/anemone.xml.h:5 hacks/config/anemotaxis.xml.h:7 -#: hacks/config/ant.xml.h:9 hacks/config/apollonian.xml.h:7 -#: hacks/config/attraction.xml.h:17 hacks/config/blaster.xml.h:6 -#: hacks/config/bouboule.xml.h:5 hacks/config/braid.xml.h:7 -#: hacks/config/coral.xml.h:9 hacks/config/critical.xml.h:4 -#: hacks/config/crystal.xml.h:8 hacks/config/cubenetic.xml.h:10 -#: hacks/config/cynosure.xml.h:5 hacks/config/deco.xml.h:5 -#: hacks/config/deluxe.xml.h:7 hacks/config/demon.xml.h:6 -#: hacks/config/discrete.xml.h:4 hacks/config/drift.xml.h:6 -#: hacks/config/epicycle.xml.h:8 hacks/config/eruption.xml.h:12 -#: hacks/config/euler2d.xml.h:8 hacks/config/fadeplot.xml.h:6 -#: hacks/config/fiberlamp.xml.h:6 hacks/config/flag.xml.h:5 -#: hacks/config/flame.xml.h:11 hacks/config/flow.xml.h:9 -#: hacks/config/fluidballs.xml.h:13 hacks/config/forest.xml.h:4 -#: hacks/config/fuzzyflakes.xml.h:12 hacks/config/galaxy.xml.h:6 -#: hacks/config/grav.xml.h:4 hacks/config/halo.xml.h:5 -#: hacks/config/hopalong.xml.h:15 hacks/config/ifs.xml.h:7 -#: hacks/config/imsmap.xml.h:10 hacks/config/interference.xml.h:14 -#: hacks/config/julia.xml.h:9 hacks/config/kaleidescope.xml.h:7 -#: hacks/config/laser.xml.h:6 hacks/config/lightning.xml.h:4 -#: hacks/config/lisa.xml.h:6 hacks/config/lissie.xml.h:5 -#: hacks/config/loop.xml.h:5 hacks/config/metaballs.xml.h:6 -#: hacks/config/mismunch.xml.h:4 hacks/config/moire.xml.h:5 -#: hacks/config/moire2.xml.h:3 hacks/config/mountain.xml.h:4 -#: hacks/config/nerverot.xml.h:15 hacks/config/pedal.xml.h:6 -#: hacks/config/penrose.xml.h:5 hacks/config/petri.xml.h:11 -#: hacks/config/piecewise.xml.h:7 hacks/config/polyominoes.xml.h:5 -#: hacks/config/qix.xml.h:15 hacks/config/rd-bomb.xml.h:12 -#: hacks/config/rdbomb.xml.h:12 hacks/config/ripples.xml.h:8 -#: hacks/config/rocks.xml.h:5 hacks/config/rotor.xml.h:6 -#: hacks/config/shadebobs.xml.h:5 hacks/config/sierpinski.xml.h:4 -#: hacks/config/slip.xml.h:4 hacks/config/sphere.xml.h:3 -#: hacks/config/spiral.xml.h:6 hacks/config/squiral.xml.h:9 -#: hacks/config/starfish.xml.h:5 hacks/config/strange.xml.h:2 -#: hacks/config/swirl.xml.h:4 hacks/config/thornbird.xml.h:4 -#: hacks/config/triangle.xml.h:3 hacks/config/vines.xml.h:3 -#: hacks/config/whirlwindwarp.xml.h:4 hacks/config/worm.xml.h:4 +#: ../hacks/config/anemone.xml.h:6 ../hacks/config/fuzzyflakes.xml.h:20 +#: ../hacks/config/hypnowheel.xml.h:13 +msgid "Arms" +msgstr "Bras" + +#. +#. On a 2.93 gHz iMac i7, I get these rates with -delay 0: +#. +#. detail 3: invisible +#. detail 4: barely visible +#. detail 5: 1000+ fps, looks like noise at -delay 0, ok at -delay 20000 +#. detail 8: ~700+ fps +#. detail 9: ~400 fps +#. detail 10: ~300 fps +#. detail 11: ~100 fps +#. detail 12: ~50 fps +#. detail 13: ~17 fps +#. detail 14: ~8 fps +#. detail 15: ~2 fps +#. +#. With the default -delay, CPU load only starts causing the frame rate +#. to drop below 30 fps detail 12 or higher. +#. +#. #### -color [random] +#: ../hacks/config/anemone.xml.h:7 ../hacks/config/anemotaxis.xml.h:10 +#: ../hacks/config/ant.xml.h:13 ../hacks/config/apollonian.xml.h:12 +#: ../hacks/config/attraction.xml.h:19 ../hacks/config/beats.xml.h:7 +#: ../hacks/config/blaster.xml.h:9 ../hacks/config/bouboule.xml.h:7 +#: ../hacks/config/braid.xml.h:10 ../hacks/config/cityflow.xml.h:7 +#: ../hacks/config/coral.xml.h:13 ../hacks/config/critical.xml.h:7 +#: ../hacks/config/crumbler.xml.h:10 ../hacks/config/crystal.xml.h:7 +#: ../hacks/config/cubenetic.xml.h:7 ../hacks/config/cubestorm.xml.h:10 +#: ../hacks/config/cynosure.xml.h:7 ../hacks/config/deco.xml.h:7 +#: ../hacks/config/deluxe.xml.h:13 ../hacks/config/demon.xml.h:13 +#: ../hacks/config/discrete.xml.h:10 ../hacks/config/drift.xml.h:10 +#: ../hacks/config/epicycle.xml.h:7 ../hacks/config/eruption.xml.h:7 +#: ../hacks/config/euler2d.xml.h:7 ../hacks/config/fadeplot.xml.h:13 +#: ../hacks/config/fiberlamp.xml.h:7 ../hacks/config/flag.xml.h:11 +#: ../hacks/config/flame.xml.h:10 ../hacks/config/flow.xml.h:7 +#: ../hacks/config/fluidballs.xml.h:7 ../hacks/config/forest.xml.h:7 +#: ../hacks/config/fuzzyflakes.xml.h:10 ../hacks/config/galaxy.xml.h:11 +#: ../hacks/config/glcells.xml.h:10 ../hacks/config/goop.xml.h:10 +#: ../hacks/config/grav.xml.h:7 ../hacks/config/halftone.xml.h:7 +#: ../hacks/config/halo.xml.h:7 ../hacks/config/handsy.xml.h:10 +#: ../hacks/config/hopalong.xml.h:11 ../hacks/config/hydrostat.xml.h:10 +#: ../hacks/config/ifs.xml.h:64 ../hacks/config/imsmap.xml.h:13 +#: ../hacks/config/interaggregate.xml.h:7 ../hacks/config/interference.xml.h:13 +#: ../hacks/config/jigsaw.xml.h:10 ../hacks/config/julia.xml.h:13 +#: ../hacks/config/kaleidescope.xml.h:7 ../hacks/config/laser.xml.h:11 +#: ../hacks/config/lightning.xml.h:7 ../hacks/config/lisa.xml.h:7 +#: ../hacks/config/lissie.xml.h:10 ../hacks/config/lmorph.xml.h:7 +#: ../hacks/config/loop.xml.h:10 ../hacks/config/metaballs.xml.h:10 +#: ../hacks/config/mismunch.xml.h:10 ../hacks/config/moire.xml.h:7 +#: ../hacks/config/moire2.xml.h:7 ../hacks/config/mountain.xml.h:10 +#: ../hacks/config/munch.xml.h:10 ../hacks/config/nerverot.xml.h:10 +#: ../hacks/config/pedal.xml.h:7 ../hacks/config/peepers.xml.h:10 +#: ../hacks/config/penrose.xml.h:7 ../hacks/config/petri.xml.h:12 +#: ../hacks/config/piecewise.xml.h:7 ../hacks/config/polyominoes.xml.h:11 +#: ../hacks/config/qix.xml.h:7 ../hacks/config/razzledazzle.xml.h:10 +#: ../hacks/config/rdbomb.xml.h:16 ../hacks/config/rd-bomb.xml.h:16 +#: ../hacks/config/rocks.xml.h:7 ../hacks/config/rotor.xml.h:10 +#: ../hacks/config/shadebobs.xml.h:10 ../hacks/config/sierpinski.xml.h:7 +#: ../hacks/config/slip.xml.h:7 ../hacks/config/sphere.xml.h:7 +#: ../hacks/config/spiral.xml.h:7 ../hacks/config/squiral.xml.h:15 +#: ../hacks/config/starfish.xml.h:16 ../hacks/config/strange.xml.h:22 +#: ../hacks/config/swirl.xml.h:7 ../hacks/config/thornbird.xml.h:7 +#: ../hacks/config/topblock.xml.h:15 ../hacks/config/triangle.xml.h:7 +#: ../hacks/config/unknownpleasures.xml.h:7 ../hacks/config/vines.xml.h:7 +#: ../hacks/config/voronoi.xml.h:7 ../hacks/config/whirlwindwarp.xml.h:4 +#: ../hacks/config/worm.xml.h:7 msgid "Many" msgstr "Beaucoup" -#: hacks/config/anemone.xml.h:6 hacks/config/ant.xml.h:11 -#: hacks/config/apollonian.xml.h:8 hacks/config/attraction.xml.h:18 -#: hacks/config/bouboule.xml.h:6 hacks/config/braid.xml.h:9 -#: hacks/config/critical.xml.h:5 hacks/config/crystal.xml.h:10 -#: hacks/config/cynosure.xml.h:6 hacks/config/deco.xml.h:8 -#: hacks/config/deluxe.xml.h:8 hacks/config/demon.xml.h:7 -#: hacks/config/discrete.xml.h:6 hacks/config/drift.xml.h:7 -#: hacks/config/epicycle.xml.h:9 hacks/config/eruption.xml.h:14 -#: hacks/config/euler2d.xml.h:9 hacks/config/fadeplot.xml.h:7 -#: hacks/config/flag.xml.h:6 hacks/config/flame.xml.h:12 -#: hacks/config/flow.xml.h:10 hacks/config/forest.xml.h:5 -#: hacks/config/galaxy.xml.h:7 hacks/config/grav.xml.h:5 -#: hacks/config/halo.xml.h:7 hacks/config/hopalong.xml.h:17 -#: hacks/config/imsmap.xml.h:11 hacks/config/interference.xml.h:15 -#: hacks/config/julia.xml.h:10 hacks/config/laser.xml.h:8 -#: hacks/config/lightning.xml.h:5 hacks/config/lisa.xml.h:7 -#: hacks/config/lissie.xml.h:6 hacks/config/loop.xml.h:6 -#: hacks/config/metaballs.xml.h:10 hacks/config/moire.xml.h:7 -#: hacks/config/moire2.xml.h:5 hacks/config/mountain.xml.h:6 -#: hacks/config/penrose.xml.h:6 hacks/config/polyominoes.xml.h:6 -#: hacks/config/popsquares.xml.h:4 hacks/config/rd-bomb.xml.h:13 -#: hacks/config/rdbomb.xml.h:13 hacks/config/rocks.xml.h:6 -#: hacks/config/rotor.xml.h:7 hacks/config/shadebobs.xml.h:6 -#: hacks/config/sierpinski.xml.h:5 hacks/config/slip.xml.h:5 -#: hacks/config/sphere.xml.h:4 hacks/config/spiral.xml.h:8 -#: hacks/config/squiral.xml.h:10 hacks/config/starfish.xml.h:6 -#: hacks/config/strange.xml.h:3 hacks/config/swirl.xml.h:5 -#: hacks/config/thornbird.xml.h:5 hacks/config/triangle.xml.h:4 -#: hacks/config/vines.xml.h:4 hacks/config/worm.xml.h:5 -msgid "Number of Colors" -msgstr "Nombre de couleurs" - -#: hacks/config/anemone.xml.h:7 hacks/config/fireflies.xml.h:32 -#: hacks/config/pyro.xml.h:8 -msgid "Often" -msgstr "Souvent" - -#: hacks/config/anemone.xml.h:8 -msgid "Rarely" -msgstr "Rarement" - -#: hacks/config/anemone.xml.h:9 hacks/config/anemotaxis.xml.h:10 -#: hacks/config/ant.xml.h:15 hacks/config/antinspect.xml.h:6 -#: hacks/config/antmaze.xml.h:5 hacks/config/antspotlight.xml.h:5 -#: hacks/config/apollonian.xml.h:11 hacks/config/atlantis.xml.h:14 -#: hacks/config/attraction.xml.h:25 hacks/config/atunnel.xml.h:6 -#: hacks/config/barcode.xml.h:8 hacks/config/blaster.xml.h:8 -#: hacks/config/blinkbox.xml.h:8 hacks/config/blitspin.xml.h:7 -#: hacks/config/blocktube.xml.h:9 hacks/config/boing.xml.h:10 -#: hacks/config/bouboule.xml.h:8 hacks/config/bouncingcow.xml.h:10 -#: hacks/config/boxed.xml.h:15 hacks/config/boxfit.xml.h:13 -#: hacks/config/braid.xml.h:11 hacks/config/bubble3d.xml.h:6 -#: hacks/config/bubbles.xml.h:10 hacks/config/bumps.xml.h:4 -#: hacks/config/cage.xml.h:4 hacks/config/carousel.xml.h:14 -#: hacks/config/ccurve.xml.h:11 hacks/config/celtic.xml.h:8 -#: hacks/config/circuit.xml.h:10 hacks/config/cloudlife.xml.h:11 -#: hacks/config/compass.xml.h:4 hacks/config/coral.xml.h:12 -#: hacks/config/critical.xml.h:6 hacks/config/crystal.xml.h:11 -#: hacks/config/cube21.xml.h:16 hacks/config/cubenetic.xml.h:19 -#: hacks/config/cubestorm.xml.h:8 hacks/config/cynosure.xml.h:9 -#: hacks/config/dangerball.xml.h:5 hacks/config/decayscreen.xml.h:17 -#: hacks/config/deluxe.xml.h:9 hacks/config/demon.xml.h:8 -#: hacks/config/discrete.xml.h:7 hacks/config/distort.xml.h:12 -#: hacks/config/drift.xml.h:9 hacks/config/endgame.xml.h:6 -#: hacks/config/engine.xml.h:15 hacks/config/epicycle.xml.h:10 -#: hacks/config/eruption.xml.h:19 hacks/config/euler2d.xml.h:14 -#: hacks/config/extrusion.xml.h:11 hacks/config/fadeplot.xml.h:8 -#: hacks/config/fireworkx.xml.h:9 hacks/config/flag.xml.h:7 -#: hacks/config/flame.xml.h:14 hacks/config/flipflop.xml.h:5 -#: hacks/config/flipscreen3d.xml.h:6 hacks/config/fliptext.xml.h:13 -#: hacks/config/flow.xml.h:16 hacks/config/fluidballs.xml.h:18 -#: hacks/config/flyingtoasters.xml.h:11 hacks/config/fontglide.xml.h:13 -#: hacks/config/forest.xml.h:6 hacks/config/fuzzyflakes.xml.h:15 -#: hacks/config/galaxy.xml.h:10 hacks/config/gears.xml.h:8 -#: hacks/config/gflux.xml.h:12 hacks/config/glblur.xml.h:14 -#: hacks/config/glforestfire.xml.h:13 hacks/config/glhanoi.xml.h:8 -#: hacks/config/glknots.xml.h:17 hacks/config/glmatrix.xml.h:15 -#: hacks/config/glplanet.xml.h:8 hacks/config/glschool.xml.h:14 -#: hacks/config/glsnake.xml.h:12 hacks/config/gltext.xml.h:15 -#: hacks/config/goop.xml.h:10 hacks/config/grav.xml.h:8 -#: hacks/config/greynetic.xml.h:4 hacks/config/halftone.xml.h:15 -#: hacks/config/halo.xml.h:11 hacks/config/hopalong.xml.h:21 -#: hacks/config/hyperball.xml.h:8 hacks/config/hypercube.xml.h:7 -#: hacks/config/hypertorus.xml.h:18 hacks/config/ifs.xml.h:12 -#: hacks/config/imsmap.xml.h:14 hacks/config/interaggregate.xml.h:5 -#: hacks/config/interference.xml.h:17 hacks/config/intermomentary.xml.h:7 -#: hacks/config/jigglypuff.xml.h:16 hacks/config/jigsaw.xml.h:5 -#: hacks/config/juggle.xml.h:16 hacks/config/juggler3d.xml.h:12 -#: hacks/config/julia.xml.h:11 hacks/config/kaleidescope.xml.h:9 -#: hacks/config/klein.xml.h:7 hacks/config/kumppa.xml.h:8 -#: hacks/config/lament.xml.h:5 hacks/config/laser.xml.h:10 -#: hacks/config/lavalite.xml.h:27 hacks/config/lightning.xml.h:6 -#: hacks/config/lisa.xml.h:9 hacks/config/lissie.xml.h:8 -#: hacks/config/lmorph.xml.h:11 hacks/config/loop.xml.h:8 -#: hacks/config/maze.xml.h:14 hacks/config/memscroller.xml.h:7 -#: hacks/config/menger.xml.h:16 hacks/config/metaballs.xml.h:13 -#: hacks/config/mirrorblob.xml.h:18 hacks/config/mismunch.xml.h:10 -#: hacks/config/moebius.xml.h:5 hacks/config/moire2.xml.h:6 -#: hacks/config/molecule.xml.h:23 hacks/config/morph3d.xml.h:10 -#: hacks/config/mountain.xml.h:9 hacks/config/munch.xml.h:7 -#: hacks/config/nerverot.xml.h:20 hacks/config/noof.xml.h:5 -#: hacks/config/pacman.xml.h:5 hacks/config/penetrate.xml.h:7 -#: hacks/config/penrose.xml.h:8 hacks/config/petri.xml.h:23 -#: hacks/config/phosphor.xml.h:6 hacks/config/piecewise.xml.h:11 -#: hacks/config/pinion.xml.h:13 hacks/config/pipes.xml.h:19 -#: hacks/config/polyhedra.xml.h:111 hacks/config/polyominoes.xml.h:10 -#: hacks/config/polytopes.xml.h:20 hacks/config/pong.xml.h:4 -#: hacks/config/popsquares.xml.h:5 hacks/config/providence.xml.h:5 -#: hacks/config/pulsar.xml.h:14 hacks/config/pyro.xml.h:13 -#: hacks/config/qix.xml.h:20 hacks/config/queens.xml.h:4 -#: hacks/config/rd-bomb.xml.h:17 hacks/config/rdbomb.xml.h:17 -#: hacks/config/ripples.xml.h:12 hacks/config/rocks.xml.h:9 -#: hacks/config/rotor.xml.h:11 hacks/config/rubik.xml.h:9 -#: hacks/config/sballs.xml.h:12 hacks/config/shadebobs.xml.h:10 -#: hacks/config/sierpinski.xml.h:7 hacks/config/sierpinski3d.xml.h:8 -#: hacks/config/slidescreen.xml.h:10 hacks/config/slip.xml.h:7 -#: hacks/config/speedmine.xml.h:12 hacks/config/sphere.xml.h:5 -#: hacks/config/spheremonics.xml.h:19 hacks/config/spiral.xml.h:9 -#: hacks/config/spotlight.xml.h:4 hacks/config/sproingies.xml.h:6 -#: hacks/config/squiral.xml.h:14 hacks/config/stairs.xml.h:4 -#: hacks/config/starfish.xml.h:9 hacks/config/starwars.xml.h:12 -#: hacks/config/strange.xml.h:4 hacks/config/substrate.xml.h:15 -#: hacks/config/superquadrics.xml.h:11 hacks/config/swirl.xml.h:6 -#: hacks/config/t3d.xml.h:12 hacks/config/tangram.xml.h:3 -#: hacks/config/thornbird.xml.h:7 hacks/config/topblock.xml.h:17 -#: hacks/config/triangle.xml.h:5 hacks/config/truchet.xml.h:2 -#: hacks/config/twang.xml.h:10 hacks/config/vines.xml.h:5 -#: hacks/config/worm.xml.h:7 hacks/config/wormhole.xml.h:6 -#: hacks/config/xflame.xml.h:5 hacks/config/xjack.xml.h:2 -#: hacks/config/xmatrix.xml.h:16 hacks/config/xplanet.xml.h:59 -#: hacks/config/xrayswarm.xml.h:3 hacks/config/zoom.xml.h:6 -msgid "Slow" -msgstr "Lent(e)" - -#: hacks/config/anemone.xml.h:10 hacks/config/anemotaxis.xml.h:12 -#: hacks/config/ant.xml.h:17 hacks/config/antinspect.xml.h:7 -#: hacks/config/antmaze.xml.h:6 hacks/config/antspotlight.xml.h:6 -#: hacks/config/apollonian.xml.h:12 hacks/config/attraction.xml.h:27 -#: hacks/config/atunnel.xml.h:7 hacks/config/barcode.xml.h:9 -#: hacks/config/blaster.xml.h:9 hacks/config/blinkbox.xml.h:9 -#: hacks/config/blocktube.xml.h:10 hacks/config/boing.xml.h:12 -#: hacks/config/bouboule.xml.h:9 hacks/config/boxfit.xml.h:15 -#: hacks/config/braid.xml.h:12 hacks/config/bubble3d.xml.h:7 -#: hacks/config/bubbles.xml.h:11 hacks/config/bumps.xml.h:5 -#: hacks/config/cage.xml.h:5 hacks/config/celtic.xml.h:9 -#: hacks/config/circuit.xml.h:11 hacks/config/cloudlife.xml.h:13 -#: hacks/config/compass.xml.h:5 hacks/config/coral.xml.h:14 -#: hacks/config/critical.xml.h:7 hacks/config/crystal.xml.h:12 -#: hacks/config/cubenetic.xml.h:21 hacks/config/cynosure.xml.h:10 -#: hacks/config/dangerball.xml.h:6 hacks/config/decayscreen.xml.h:18 -#: hacks/config/deluxe.xml.h:10 hacks/config/demon.xml.h:10 -#: hacks/config/discrete.xml.h:9 hacks/config/distort.xml.h:14 -#: hacks/config/drift.xml.h:10 hacks/config/endgame.xml.h:7 -#: hacks/config/engine.xml.h:16 hacks/config/epicycle.xml.h:11 -#: hacks/config/eruption.xml.h:20 hacks/config/euler2d.xml.h:15 -#: hacks/config/extrusion.xml.h:12 hacks/config/fadeplot.xml.h:10 -#: hacks/config/fireworkx.xml.h:11 hacks/config/flag.xml.h:9 -#: hacks/config/flame.xml.h:15 hacks/config/flipflop.xml.h:6 -#: hacks/config/flipscreen3d.xml.h:7 hacks/config/fliptext.xml.h:14 -#: hacks/config/flow.xml.h:18 hacks/config/fluidballs.xml.h:20 -#: hacks/config/forest.xml.h:7 hacks/config/fuzzyflakes.xml.h:17 -#: hacks/config/galaxy.xml.h:11 hacks/config/glblur.xml.h:16 -#: hacks/config/glforestfire.xml.h:14 hacks/config/glplanet.xml.h:9 -#: hacks/config/glschool.xml.h:15 hacks/config/gltext.xml.h:16 -#: hacks/config/goop.xml.h:11 hacks/config/grav.xml.h:9 -#: hacks/config/greynetic.xml.h:5 hacks/config/halo.xml.h:12 -#: hacks/config/hopalong.xml.h:23 hacks/config/hyperball.xml.h:9 -#: hacks/config/hypercube.xml.h:8 hacks/config/ifs.xml.h:13 -#: hacks/config/imsmap.xml.h:16 hacks/config/interaggregate.xml.h:6 -#: hacks/config/intermomentary.xml.h:8 hacks/config/jigsaw.xml.h:7 -#: hacks/config/juggle.xml.h:17 hacks/config/julia.xml.h:13 -#: hacks/config/kaleidescope.xml.h:10 hacks/config/klein.xml.h:8 -#: hacks/config/kumppa.xml.h:9 hacks/config/lament.xml.h:6 -#: hacks/config/laser.xml.h:11 hacks/config/lavalite.xml.h:30 -#: hacks/config/lightning.xml.h:7 hacks/config/lisa.xml.h:10 -#: hacks/config/lissie.xml.h:10 hacks/config/lmorph.xml.h:12 -#: hacks/config/loop.xml.h:10 hacks/config/memscroller.xml.h:8 -#: hacks/config/menger.xml.h:17 hacks/config/metaballs.xml.h:15 -#: hacks/config/mirrorblob.xml.h:19 hacks/config/mismunch.xml.h:12 -#: hacks/config/moebius.xml.h:7 hacks/config/moire2.xml.h:7 -#: hacks/config/molecule.xml.h:24 hacks/config/morph3d.xml.h:11 -#: hacks/config/mountain.xml.h:10 hacks/config/munch.xml.h:9 -#: hacks/config/nerverot.xml.h:22 hacks/config/noof.xml.h:6 -#: hacks/config/pacman.xml.h:6 hacks/config/penrose.xml.h:10 -#: hacks/config/petri.xml.h:25 hacks/config/phosphor.xml.h:7 -#: hacks/config/piecewise.xml.h:13 hacks/config/pipes.xml.h:20 -#: hacks/config/polyominoes.xml.h:11 hacks/config/popsquares.xml.h:6 -#: hacks/config/providence.xml.h:6 hacks/config/pulsar.xml.h:15 -#: hacks/config/qix.xml.h:23 hacks/config/queens.xml.h:6 -#: hacks/config/rotor.xml.h:12 hacks/config/rubik.xml.h:11 -#: hacks/config/sballs.xml.h:13 hacks/config/shadebobs.xml.h:11 -#: hacks/config/sierpinski.xml.h:9 hacks/config/sierpinski3d.xml.h:9 -#: hacks/config/slidescreen.xml.h:12 hacks/config/slip.xml.h:9 -#: hacks/config/speedmine.xml.h:13 hacks/config/sphere.xml.h:6 -#: hacks/config/spheremonics.xml.h:21 hacks/config/spiral.xml.h:10 -#: hacks/config/spotlight.xml.h:6 hacks/config/sproingies.xml.h:7 -#: hacks/config/squiral.xml.h:16 hacks/config/stairs.xml.h:5 -#: hacks/config/starfish.xml.h:10 hacks/config/strange.xml.h:5 -#: hacks/config/substrate.xml.h:16 hacks/config/swirl.xml.h:7 -#: hacks/config/t3d.xml.h:14 hacks/config/tangram.xml.h:5 -#: hacks/config/thornbird.xml.h:8 hacks/config/topblock.xml.h:20 -#: hacks/config/triangle.xml.h:6 hacks/config/truchet.xml.h:3 -#: hacks/config/twang.xml.h:12 hacks/config/vines.xml.h:6 -#: hacks/config/whirlygig.xml.h:13 hacks/config/worm.xml.h:8 -#: hacks/config/xflame.xml.h:6 hacks/config/xjack.xml.h:3 -#: hacks/config/xmatrix.xml.h:19 hacks/config/xplanet.xml.h:60 -#: hacks/config/xrayswarm.xml.h:4 hacks/config/zoom.xml.h:7 -msgid "Speed" -msgstr "Vitesse" - -#: hacks/config/anemone.xml.h:11 +#: ../hacks/config/anemone.xml.h:8 ../hacks/config/skytentacles.xml.h:3 msgid "Tentacles" msgstr "Tentacules" -#: hacks/config/anemone.xml.h:12 hacks/config/cubestorm.xml.h:11 -#: hacks/config/deluxe.xml.h:11 hacks/config/fuzzyflakes.xml.h:18 -#: hacks/config/glknots.xml.h:19 hacks/config/lmorph.xml.h:13 -#: hacks/config/starfish.xml.h:12 hacks/config/thornbird.xml.h:9 -msgid "Thick" -msgstr "Épais(se)" +#: ../hacks/config/anemone.xml.h:9 ../hacks/config/cubestack.xml.h:8 +#: ../hacks/config/cubestorm.xml.h:14 ../hacks/config/cubetwist.xml.h:8 +#: ../hacks/config/deluxe.xml.h:5 ../hacks/config/fadeplot.xml.h:5 +#: ../hacks/config/fuzzyflakes.xml.h:21 ../hacks/config/glknots.xml.h:19 +#: ../hacks/config/hexstrut.xml.h:11 ../hacks/config/hilbert.xml.h:15 +#: ../hacks/config/hydrostat.xml.h:16 ../hacks/config/lmorph.xml.h:11 +#: ../hacks/config/razzledazzle.xml.h:14 ../hacks/config/skytentacles.xml.h:8 +#: ../hacks/config/starfish.xml.h:11 ../hacks/config/thornbird.xml.h:8 +msgid "Thin" +msgstr "Fin(e)" -#: hacks/config/anemone.xml.h:13 hacks/config/fuzzyflakes.xml.h:19 -#: hacks/config/glknots.xml.h:20 hacks/config/moire2.xml.h:8 -#: hacks/config/thornbird.xml.h:10 +#: ../hacks/config/anemone.xml.h:10 ../hacks/config/cubestack.xml.h:9 +#: ../hacks/config/cubetwist.xml.h:9 ../hacks/config/fadeplot.xml.h:6 +#: ../hacks/config/fuzzyflakes.xml.h:22 ../hacks/config/glknots.xml.h:20 +#: ../hacks/config/hydrostat.xml.h:17 ../hacks/config/moire2.xml.h:8 +#: ../hacks/config/skytentacles.xml.h:9 ../hacks/config/thornbird.xml.h:9 msgid "Thickness" msgstr "Épaisseur" -#: hacks/config/anemone.xml.h:14 hacks/config/cubestorm.xml.h:12 -#: hacks/config/deluxe.xml.h:12 hacks/config/fuzzyflakes.xml.h:20 -#: hacks/config/glknots.xml.h:21 hacks/config/lmorph.xml.h:14 -#: hacks/config/starfish.xml.h:13 hacks/config/thornbird.xml.h:11 -msgid "Thin" -msgstr "Fin(e)" +#: ../hacks/config/anemone.xml.h:11 ../hacks/config/cubestack.xml.h:10 +#: ../hacks/config/cubestorm.xml.h:16 ../hacks/config/cubetwist.xml.h:10 +#: ../hacks/config/deluxe.xml.h:7 ../hacks/config/fadeplot.xml.h:7 +#: ../hacks/config/fuzzyflakes.xml.h:23 ../hacks/config/glknots.xml.h:21 +#: ../hacks/config/hexstrut.xml.h:13 ../hacks/config/hilbert.xml.h:17 +#: ../hacks/config/hydrostat.xml.h:18 ../hacks/config/lmorph.xml.h:13 +#: ../hacks/config/razzledazzle.xml.h:16 ../hacks/config/skytentacles.xml.h:10 +#: ../hacks/config/starfish.xml.h:13 ../hacks/config/thornbird.xml.h:10 +msgid "Thick" +msgstr "Épais(se)" + +#: ../hacks/config/anemone.xml.h:12 ../hacks/config/pyro.xml.h:10 +#: ../hacks/config/splodesic.xml.h:7 ../hacks/config/winduprobot.xml.h:19 +msgid "Often" +msgstr "Souvent" + +#: ../hacks/config/anemone.xml.h:13 +msgid "Withdraw freqency" +msgstr "Fréquence de retrait" + +#: ../hacks/config/anemone.xml.h:14 +msgid "Rarely" +msgstr "Rarement" -#: hacks/config/anemone.xml.h:15 +#: ../hacks/config/anemone.xml.h:15 msgid "Turn speed" msgstr "Vitesse de rotation" -#: hacks/config/anemone.xml.h:16 hacks/config/ant.xml.h:22 -#: hacks/config/apollonian.xml.h:13 hacks/config/attraction.xml.h:31 -#: hacks/config/bouboule.xml.h:11 hacks/config/braid.xml.h:13 -#: hacks/config/critical.xml.h:8 hacks/config/crystal.xml.h:13 -#: hacks/config/cynosure.xml.h:11 hacks/config/deco.xml.h:10 -#: hacks/config/deluxe.xml.h:14 hacks/config/demon.xml.h:13 -#: hacks/config/discrete.xml.h:11 hacks/config/drift.xml.h:11 -#: hacks/config/epicycle.xml.h:13 hacks/config/euler2d.xml.h:17 -#: hacks/config/fadeplot.xml.h:12 hacks/config/flag.xml.h:13 -#: hacks/config/flame.xml.h:16 hacks/config/flow.xml.h:21 -#: hacks/config/forest.xml.h:8 hacks/config/galaxy.xml.h:13 -#: hacks/config/grav.xml.h:11 hacks/config/halo.xml.h:13 -#: hacks/config/hopalong.xml.h:25 hacks/config/imsmap.xml.h:18 -#: hacks/config/interference.xml.h:19 hacks/config/julia.xml.h:14 -#: hacks/config/laser.xml.h:12 hacks/config/lightning.xml.h:8 -#: hacks/config/lisa.xml.h:12 hacks/config/lissie.xml.h:13 -#: hacks/config/loop.xml.h:12 hacks/config/metaballs.xml.h:16 -#: hacks/config/moire.xml.h:10 hacks/config/moire2.xml.h:9 -#: hacks/config/mountain.xml.h:11 hacks/config/nerverot.xml.h:23 -#: hacks/config/penrose.xml.h:12 hacks/config/polyominoes.xml.h:12 -#: hacks/config/rd-bomb.xml.h:20 hacks/config/rdbomb.xml.h:20 -#: hacks/config/rocks.xml.h:12 hacks/config/rotor.xml.h:13 -#: hacks/config/shadebobs.xml.h:13 hacks/config/sierpinski.xml.h:12 -#: hacks/config/slip.xml.h:12 hacks/config/sphere.xml.h:8 -#: hacks/config/spiral.xml.h:12 hacks/config/squiral.xml.h:18 -#: hacks/config/starfish.xml.h:15 hacks/config/strange.xml.h:8 -#: hacks/config/swirl.xml.h:9 hacks/config/thornbird.xml.h:13 -#: hacks/config/triangle.xml.h:8 hacks/config/vines.xml.h:7 -#: hacks/config/worm.xml.h:9 -msgid "Two" -msgstr "Deux" - -#: hacks/config/anemone.xml.h:17 +#: ../hacks/config/anemone.xml.h:17 msgid "Wiggling tentacles. Written by Gabriel Finch; 2002." msgstr "Tentacules agitées. Écrit par Gabriel Finch; 2002." -#: hacks/config/anemone.xml.h:18 -msgid "Withdraw freqency" -msgstr "Fréquence de retrait" - -#: hacks/config/anemotaxis.xml.h:1 +#: ../hacks/config/anemotaxis.xml.h:1 msgid "Anemotaxis" msgstr "Anemotaxis" -#: hacks/config/anemotaxis.xml.h:2 -msgid "" -"Anemotaxis demonstrates a search algorithm designed for locating a source of " -"odor in turbulent atmosphere. The searcher is able to sense the odor and " -"determine local instantaneous wind direction. The goal is to find the source " -"in the shortest mean time. Written by Eugene Balkovsky; 2004." -msgstr "" +#. #### -colorcount [64] +#.