From 7711d548c05f17f9abbf4faf58b12ab5e4febfbe Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Thu, 26 Jan 2006 11:18:59 +0000 Subject: [PATCH] Fixed typos --- doc/en/weechat.en.xml | 72 +++++++++++++++++------------------ doc/fr/weechat.fr.xml | 28 +++++++------- weechat/doc/en/weechat.en.xml | 72 +++++++++++++++++------------------ weechat/doc/fr/weechat.fr.xml | 28 +++++++------- 4 files changed, 100 insertions(+), 100 deletions(-) diff --git a/doc/en/weechat.en.xml b/doc/en/weechat.en.xml index db5a0fd59..e2a4d0abc 100644 --- a/doc/en/weechat.en.xml +++ b/doc/en/weechat.en.xml @@ -436,7 +436,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - You can edit thie file at your convenience to configure WeeChat + You can edit this file at your convenience to configure WeeChat (ONLY if WeeChat is not running), or you can set parameters with "/set" command in WeeChat (see ) @@ -666,7 +666,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Alt + J puis Alt + X + Alt + J then Alt + X Switch to first channel of next buffer (or server buffer if no channel is opened) @@ -722,7 +722,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Alt + W then Alt + flèche + Alt + W then Alt + arrow Switch to window with direction @@ -899,7 +899,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Example: display of "hello everybory!" with + Example: display of "hello everybody!" with "hello" in light blue bold, and "everybody" in light red underlined: %C12%Bhello%B%C04%U everybody%U%C! @@ -1457,7 +1457,7 @@ if (argv != NULL) - : pointer tu plugin structure + : pointer to plugin structure @@ -1716,7 +1716,7 @@ plugin->printf_infobar (plugin, 5, "hello"); int msg_kick (t_weechat_plugin *plugin, char *server, char *command, char *arguments, char *handler_args, void *handler_pointer) { - plugin->printf (plugin, serveur, NULL, "KICK received"); + plugin->printf (plugin, server, NULL, "KICK received"); return PLUGIN_RC_OK; } ... @@ -1807,7 +1807,7 @@ plugin->msg_handler_add (plugin, "KICK", &msg_kick, NULL, NULL); %A - alias and commandes (WeeChat, IRC and plugins) + alias and commands (WeeChat, IRC and plugins) @@ -1820,7 +1820,7 @@ plugin->msg_handler_add (plugin, "KICK", &msg_kick, NULL, NULL); %h @@ -1913,7 +1913,7 @@ plugin->msg_handler_add (plugin, "KICK", &msg_kick, NULL, NULL); - PLUGIN_RC_OK: function successfulle + PLUGIN_RC_OK: function successfully completed @@ -1926,7 +1926,7 @@ int cmd_test (t_weechat_plugin *plugin, char *server, char *command, char *arguments, char *handler_args, void *handler_pointer) { - plugin->printf (plugin, serveur, NULL, + plugin->printf (plugin, server, NULL, "test command, nick: %s", (arguments) ? arguments : "none"); return PLUGIN_RC_OK; @@ -2117,7 +2117,7 @@ plugin->exec_command (plugin, "freenode", "#weechat", "hello"); weechat_dir - WeeChat home dir + WeeChat home directory (by default: ~/.weechat/) @@ -2227,7 +2227,7 @@ char *nick = plugin->get_info (plugin, "nick", "freenode"); start_transfer - date/time of DCC transfert start + date/time of DCC transfer start addr @@ -2264,7 +2264,7 @@ char *nick = plugin->get_info (plugin, "nick", "freenode"); bytes_per_sec - number of bytes per second since transfert start + number of bytes per second since transfer start @@ -2406,7 +2406,7 @@ char *value2 = plugin->get_config (plugin, "freenode.server_autojoin"); Return value: 1 if option was successfully updated, 0 if an - error occured. + error occurred. Example: @@ -2520,7 +2520,7 @@ plugin->set_plugin_config (plugin, "my_var", "value"); - To compile a plugin which has one file "toto.c" (sous GNU/Linux): + To compile a plugin which has one file "toto.c" (under GNU/Linux): $ gcc -fPIC -Wall -c toto.c $ gcc -shared -fPIC -o libtoto.so toto.o @@ -2533,9 +2533,9 @@ plugin->set_plugin_config (plugin, "my_var", "value"); Load plugin into WeeChat - Copy "libtoto.so" file into system plugins dir (for example + Copy "libtoto.so" file into system plugins directory (for example "/usr/local/lib/weechat/plugins") or into - user's plugins dir (for example + user's plugins directory (for example "/home/xxxxx/.weechat/plugins"). @@ -2562,7 +2562,7 @@ char plugin_name[] = "Double"; char plugin_version[] = "0.1"; char plugin_description[] = "Test plugin for WeeChat"; -/* gestionnaire de commande "/double" */ +/* "/double" command manager */ int double_cmd (t_weechat_plugin *plugin, char *server, char *command, char *arguments, @@ -2782,7 +2782,7 @@ Weechat.register ("test", "1.0", "end_test", "Test script!") - Return value: 1 if success, 0 if an error occured. + Return value: 1 if success, 0 if an error occurred. Examples: @@ -2846,7 +2846,7 @@ Weechat.print ("message", "#weechat", "freenode") - Return value: 1 if success, 0 if an error occured. + Return value: 1 if success, 0 if an error occurred. Examples: @@ -2908,7 +2908,7 @@ Weechat.print_infobar (5, "message") - Return value: 1 if success, 0 if an error occured. + Return value: 1 if success, 0 if an error occurred. Examples: @@ -2927,7 +2927,7 @@ sub my_function # python weechat.add_message_handler ("privmsg", my_function) def ma_fonction(server, args): - weechat.prnt("server="+serveur) + weechat.prnt("server="+server) null, channel, message = string.split(args, ":", 2) masque, null, channel = string.split(string.strip(channel), " ", 2) weechat.prnt("mask="+mask+", canal="+channel+", message="+message) @@ -3004,7 +3004,7 @@ def ma_fonction(server, args): (for example /command). - Paramètres : + Arguments: @@ -3015,8 +3015,8 @@ def ma_fonction(server, args): - : fonction appelée lorsque la - commande est exécutée + : function called when command + is executed @@ -3043,7 +3043,7 @@ def ma_fonction(server, args): - Return value: 1 if success, 0 if an error occured. + Return value: 1 if success, 0 if an error occurred. Examples: @@ -3058,8 +3058,8 @@ sub my_command # python weechat.add_command_handler ("command", my_command) -def ma_commande(server, args): - weechat.prnt("server:"+serveur+" arguments:"+args) +def my_command(server, args): + weechat.prnt("server:"+server+" arguments:"+args) return weechat.PLUGIN_RC_OK @@ -3123,7 +3123,7 @@ def ma_commande(server, args): - Return value: 1 if success, 0 if an error occured. + Return value: 1 if success, 0 if an error occurred. Examples: @@ -3187,7 +3187,7 @@ Weechat.remove_handler ("command", my_command) - Return value: 1 if success, 0 if an error occured. + Return value: 1 if success, 0 if an error occurred. Examples: @@ -3253,7 +3253,7 @@ Weechat.command ("/nick newnick", "", "freenode") Return value: information asked, empty string if an error - occured + occurred. Examples: @@ -3391,7 +3391,7 @@ value2 = weechat.get_config ("freenode.server_autojoin") Return value: 1 if option was successfully updated, 0 if an error - occured. + occurred. Examples: @@ -3469,19 +3469,19 @@ value = weechat.get_plugin_config ("my_var") Perl prototype: - weechat::set_plugin_config ( option, valeur ); + weechat::set_plugin_config ( option, value ); Python prototype: - weechat.set_plugin_config ( option, valeur ) + weechat.set_plugin_config ( option, value ) Ruby prototype: - Weechat.set_plugin_config ( option, valeur ) + Weechat.set_plugin_config ( option, value ) @@ -3507,7 +3507,7 @@ value = weechat.get_plugin_config ("my_var") Return value: 1 if option was successfully updated, 0 if an error - occured. + occurred. Examples: diff --git a/doc/fr/weechat.fr.xml b/doc/fr/weechat.fr.xml index f9afa97d2..850a35784 100644 --- a/doc/fr/weechat.fr.xml +++ b/doc/fr/weechat.fr.xml @@ -91,7 +91,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Introduction - Ce chapître décrit WeeChat et les pré-requis pour son installation. + Ce chapitre décrit WeeChat et les pré-requis pour son installation.
@@ -138,7 +138,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - multi-plateformes (GNU/Linux, *BSD, MacOS X, Windows et + multi plates-formes (GNU/L'index, *BSD, MacOS X, Windows et d'autres systèmes) @@ -216,7 +216,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Installation - Ce chapître explique comment installer WeeChat. + Ce chapitre explique comment installer WeeChat.
@@ -275,7 +275,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Sources CVS - Attention : les sources CVS sont réservées aux utilisateurs + Attention : les sources CVS sont réservés aux utilisateurs avancés : il se peut que WeeChat ne compile pas et qu'il soit très instable. Vous êtes prévenus ! @@ -305,7 +305,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Utilisation - Ce chapître explique comment lancer WeeChat, les touches utilisées par + Ce chapitre explique comment lancer WeeChat, les touches utilisées par défaut, les commandes internes et IRC, le fichier de configuration et l'utilisation du tube FIFO. @@ -611,7 +611,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA F10 - Effacer le dernier message de la barre d'infos + Effacer le dernier message de la barre d'informations @@ -655,7 +655,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Alt + H Vider la hotlist - (notification d'actitivé sur les autres tampons) + (notification d'activité sur les autres tampons) @@ -750,7 +750,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA La ligne de commande - La ligne de commande WeeChat (située en bas de la fenetre) permet + La ligne de commande WeeChat (située en bas de la fenêtre) permet d'envoyer du texte sur les canaux et d'exécuter des commandes WeeChat ou IRC (voir ). @@ -926,7 +926,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Commandes WeeChat / IRC - Ce chapître liste toutes les commandes WeeChat et IRC. + Ce chapitre liste toutes les commandes WeeChat et IRC.
@@ -1159,7 +1159,7 @@ fi Extensions - Ce chapître décrit l'interface des extensions (API) et les extensions + Ce chapitre décrit l'interface des extensions (API) et les extensions pour scripts (Perl, Python, Ruby), fournies avec WeeChat. @@ -1179,7 +1179,7 @@ fi L'extension doit être au format bibliothèque, chargeable - dynamiquement par le systême d'exploitation. + dynamiquement par le système d'exploitation. Sous GNU/Linux, il s'agit d'un fichier ayant pour extension ".so", sous Windows ".dll". @@ -1812,7 +1812,7 @@ plugin->msg_handler_add (plugin, "KICK", &msg_kick, NULL, NULL); : modèle pour la complétion sous la forme "abc|%w def|%i" - qui signigie "abc" ou une commande WeeChat pour le premier + qui signifie "abc" ou une commande WeeChat pour le premier paramètre, et "def" ou une commande IRC pour le deuxième. Une chaîne vide indique à WeeChat de compléter tout paramètre avec un pseudo du canal courant, une valeur NULL @@ -3089,7 +3089,7 @@ def ma_fonction(serveur, args): : modèle pour la complétion sous la forme "abc|%w def|%i" - qui signigie "abc" ou une commande WeeChat pour le premier + qui signifie "abc" ou une commande WeeChat pour le premier paramètre, et "def" ou une commande IRC pour le deuxième. (voir ) @@ -3599,7 +3599,7 @@ Weechat.set_plugin_config ("ma_variable", "valeur") Auteurs / Support - Ce chapître liste les auteurs et contributeurs pour WeeChat, et + Ce chapitre liste les auteurs et contributeurs pour WeeChat, et indique les moyens d'obtenir du support. diff --git a/weechat/doc/en/weechat.en.xml b/weechat/doc/en/weechat.en.xml index db5a0fd59..e2a4d0abc 100644 --- a/weechat/doc/en/weechat.en.xml +++ b/weechat/doc/en/weechat.en.xml @@ -436,7 +436,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - You can edit thie file at your convenience to configure WeeChat + You can edit this file at your convenience to configure WeeChat (ONLY if WeeChat is not running), or you can set parameters with "/set" command in WeeChat (see ) @@ -666,7 +666,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Alt + J puis Alt + X + Alt + J then Alt + X Switch to first channel of next buffer (or server buffer if no channel is opened) @@ -722,7 +722,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Alt + W then Alt + flèche + Alt + W then Alt + arrow Switch to window with direction @@ -899,7 +899,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - Example: display of "hello everybory!" with + Example: display of "hello everybody!" with "hello" in light blue bold, and "everybody" in light red underlined: %C12%Bhello%B%C04%U everybody%U%C! @@ -1457,7 +1457,7 @@ if (argv != NULL) - : pointer tu plugin structure + : pointer to plugin structure @@ -1716,7 +1716,7 @@ plugin->printf_infobar (plugin, 5, "hello"); int msg_kick (t_weechat_plugin *plugin, char *server, char *command, char *arguments, char *handler_args, void *handler_pointer) { - plugin->printf (plugin, serveur, NULL, "KICK received"); + plugin->printf (plugin, server, NULL, "KICK received"); return PLUGIN_RC_OK; } ... @@ -1807,7 +1807,7 @@ plugin->msg_handler_add (plugin, "KICK", &msg_kick, NULL, NULL); %A - alias and commandes (WeeChat, IRC and plugins) + alias and commands (WeeChat, IRC and plugins) @@ -1820,7 +1820,7 @@ plugin->msg_handler_add (plugin, "KICK", &msg_kick, NULL, NULL); %h @@ -1913,7 +1913,7 @@ plugin->msg_handler_add (plugin, "KICK", &msg_kick, NULL, NULL); - PLUGIN_RC_OK: function successfulle + PLUGIN_RC_OK: function successfully completed @@ -1926,7 +1926,7 @@ int cmd_test (t_weechat_plugin *plugin, char *server, char *command, char *arguments, char *handler_args, void *handler_pointer) { - plugin->printf (plugin, serveur, NULL, + plugin->printf (plugin, server, NULL, "test command, nick: %s", (arguments) ? arguments : "none"); return PLUGIN_RC_OK; @@ -2117,7 +2117,7 @@ plugin->exec_command (plugin, "freenode", "#weechat", "hello"); weechat_dir - WeeChat home dir + WeeChat home directory (by default: ~/.weechat/) @@ -2227,7 +2227,7 @@ char *nick = plugin->get_info (plugin, "nick", "freenode"); start_transfer - date/time of DCC transfert start + date/time of DCC transfer start addr @@ -2264,7 +2264,7 @@ char *nick = plugin->get_info (plugin, "nick", "freenode"); bytes_per_sec - number of bytes per second since transfert start + number of bytes per second since transfer start @@ -2406,7 +2406,7 @@ char *value2 = plugin->get_config (plugin, "freenode.server_autojoin"); Return value: 1 if option was successfully updated, 0 if an - error occured. + error occurred. Example: @@ -2520,7 +2520,7 @@ plugin->set_plugin_config (plugin, "my_var", "value"); - To compile a plugin which has one file "toto.c" (sous GNU/Linux): + To compile a plugin which has one file "toto.c" (under GNU/Linux): $ gcc -fPIC -Wall -c toto.c $ gcc -shared -fPIC -o libtoto.so toto.o @@ -2533,9 +2533,9 @@ plugin->set_plugin_config (plugin, "my_var", "value"); Load plugin into WeeChat - Copy "libtoto.so" file into system plugins dir (for example + Copy "libtoto.so" file into system plugins directory (for example "/usr/local/lib/weechat/plugins") or into - user's plugins dir (for example + user's plugins directory (for example "/home/xxxxx/.weechat/plugins"). @@ -2562,7 +2562,7 @@ char plugin_name[] = "Double"; char plugin_version[] = "0.1"; char plugin_description[] = "Test plugin for WeeChat"; -/* gestionnaire de commande "/double" */ +/* "/double" command manager */ int double_cmd (t_weechat_plugin *plugin, char *server, char *command, char *arguments, @@ -2782,7 +2782,7 @@ Weechat.register ("test", "1.0", "end_test", "Test script!") - Return value: 1 if success, 0 if an error occured. + Return value: 1 if success, 0 if an error occurred. Examples: @@ -2846,7 +2846,7 @@ Weechat.print ("message", "#weechat", "freenode") - Return value: 1 if success, 0 if an error occured. + Return value: 1 if success, 0 if an error occurred. Examples: @@ -2908,7 +2908,7 @@ Weechat.print_infobar (5, "message") - Return value: 1 if success, 0 if an error occured. + Return value: 1 if success, 0 if an error occurred. Examples: @@ -2927,7 +2927,7 @@ sub my_function # python weechat.add_message_handler ("privmsg", my_function) def ma_fonction(server, args): - weechat.prnt("server="+serveur) + weechat.prnt("server="+server) null, channel, message = string.split(args, ":", 2) masque, null, channel = string.split(string.strip(channel), " ", 2) weechat.prnt("mask="+mask+", canal="+channel+", message="+message) @@ -3004,7 +3004,7 @@ def ma_fonction(server, args): (for example /command). - Paramètres : + Arguments: @@ -3015,8 +3015,8 @@ def ma_fonction(server, args): - : fonction appelée lorsque la - commande est exécutée + : function called when command + is executed @@ -3043,7 +3043,7 @@ def ma_fonction(server, args): - Return value: 1 if success, 0 if an error occured. + Return value: 1 if success, 0 if an error occurred. Examples: @@ -3058,8 +3058,8 @@ sub my_command # python weechat.add_command_handler ("command", my_command) -def ma_commande(server, args): - weechat.prnt("server:"+serveur+" arguments:"+args) +def my_command(server, args): + weechat.prnt("server:"+server+" arguments:"+args) return weechat.PLUGIN_RC_OK @@ -3123,7 +3123,7 @@ def ma_commande(server, args): - Return value: 1 if success, 0 if an error occured. + Return value: 1 if success, 0 if an error occurred. Examples: @@ -3187,7 +3187,7 @@ Weechat.remove_handler ("command", my_command) - Return value: 1 if success, 0 if an error occured. + Return value: 1 if success, 0 if an error occurred. Examples: @@ -3253,7 +3253,7 @@ Weechat.command ("/nick newnick", "", "freenode") Return value: information asked, empty string if an error - occured + occurred. Examples: @@ -3391,7 +3391,7 @@ value2 = weechat.get_config ("freenode.server_autojoin") Return value: 1 if option was successfully updated, 0 if an error - occured. + occurred. Examples: @@ -3469,19 +3469,19 @@ value = weechat.get_plugin_config ("my_var") Perl prototype: - weechat::set_plugin_config ( option, valeur ); + weechat::set_plugin_config ( option, value ); Python prototype: - weechat.set_plugin_config ( option, valeur ) + weechat.set_plugin_config ( option, value ) Ruby prototype: - Weechat.set_plugin_config ( option, valeur ) + Weechat.set_plugin_config ( option, value ) @@ -3507,7 +3507,7 @@ value = weechat.get_plugin_config ("my_var") Return value: 1 if option was successfully updated, 0 if an error - occured. + occurred. Examples: diff --git a/weechat/doc/fr/weechat.fr.xml b/weechat/doc/fr/weechat.fr.xml index f9afa97d2..850a35784 100644 --- a/weechat/doc/fr/weechat.fr.xml +++ b/weechat/doc/fr/weechat.fr.xml @@ -91,7 +91,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Introduction - Ce chapître décrit WeeChat et les pré-requis pour son installation. + Ce chapitre décrit WeeChat et les pré-requis pour son installation.
@@ -138,7 +138,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - multi-plateformes (GNU/Linux, *BSD, MacOS X, Windows et + multi plates-formes (GNU/L'index, *BSD, MacOS X, Windows et d'autres systèmes) @@ -216,7 +216,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Installation - Ce chapître explique comment installer WeeChat. + Ce chapitre explique comment installer WeeChat.
@@ -275,7 +275,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Sources CVS - Attention : les sources CVS sont réservées aux utilisateurs + Attention : les sources CVS sont réservés aux utilisateurs avancés : il se peut que WeeChat ne compile pas et qu'il soit très instable. Vous êtes prévenus ! @@ -305,7 +305,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Utilisation - Ce chapître explique comment lancer WeeChat, les touches utilisées par + Ce chapitre explique comment lancer WeeChat, les touches utilisées par défaut, les commandes internes et IRC, le fichier de configuration et l'utilisation du tube FIFO. @@ -611,7 +611,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA F10 - Effacer le dernier message de la barre d'infos + Effacer le dernier message de la barre d'informations @@ -655,7 +655,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Alt + H Vider la hotlist - (notification d'actitivé sur les autres tampons) + (notification d'activité sur les autres tampons) @@ -750,7 +750,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA La ligne de commande - La ligne de commande WeeChat (située en bas de la fenetre) permet + La ligne de commande WeeChat (située en bas de la fenêtre) permet d'envoyer du texte sur les canaux et d'exécuter des commandes WeeChat ou IRC (voir ). @@ -926,7 +926,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Commandes WeeChat / IRC - Ce chapître liste toutes les commandes WeeChat et IRC. + Ce chapitre liste toutes les commandes WeeChat et IRC.
@@ -1159,7 +1159,7 @@ fi Extensions - Ce chapître décrit l'interface des extensions (API) et les extensions + Ce chapitre décrit l'interface des extensions (API) et les extensions pour scripts (Perl, Python, Ruby), fournies avec WeeChat. @@ -1179,7 +1179,7 @@ fi L'extension doit être au format bibliothèque, chargeable - dynamiquement par le systême d'exploitation. + dynamiquement par le système d'exploitation. Sous GNU/Linux, il s'agit d'un fichier ayant pour extension ".so", sous Windows ".dll". @@ -1812,7 +1812,7 @@ plugin->msg_handler_add (plugin, "KICK", &msg_kick, NULL, NULL); : modèle pour la complétion sous la forme "abc|%w def|%i" - qui signigie "abc" ou une commande WeeChat pour le premier + qui signifie "abc" ou une commande WeeChat pour le premier paramètre, et "def" ou une commande IRC pour le deuxième. Une chaîne vide indique à WeeChat de compléter tout paramètre avec un pseudo du canal courant, une valeur NULL @@ -3089,7 +3089,7 @@ def ma_fonction(serveur, args): : modèle pour la complétion sous la forme "abc|%w def|%i" - qui signigie "abc" ou une commande WeeChat pour le premier + qui signifie "abc" ou une commande WeeChat pour le premier paramètre, et "def" ou une commande IRC pour le deuxième. (voir ) @@ -3599,7 +3599,7 @@ Weechat.set_plugin_config ("ma_variable", "valeur") Auteurs / Support - Ce chapître liste les auteurs et contributeurs pour WeeChat, et + Ce chapitre liste les auteurs et contributeurs pour WeeChat, et indique les moyens d'obtenir du support.