From 6fd0bd2158e5eb0c182e6b7d4132c84734a256cb Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Tue, 18 Dec 2007 17:20:08 +0100 Subject: All messages translated to french, fixed bugs/typos in some messages --- src/plugins/fifo/fifo.c | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'src/plugins/fifo') diff --git a/src/plugins/fifo/fifo.c b/src/plugins/fifo/fifo.c index d894c5c89..c1dd8a5fc 100644 --- a/src/plugins/fifo/fifo.c +++ b/src/plugins/fifo/fifo.c @@ -96,22 +96,22 @@ fifo_create () O_RDONLY | O_NONBLOCK)) != -1) { weechat_printf (NULL, - _("%sFifo: pipe is open\n"), - weechat_prefix ("info")); + _("%s%s: pipe open"), + weechat_prefix ("info"), "Fifo"), rc = 1; } else weechat_printf (NULL, - _("%sFifo: unable to open pipe (%s) for " + _("%s%s: unable to open pipe (%s) for " "reading"), - weechat_prefix ("error"), + weechat_prefix ("error"), "Fifo", fifo_filename); } else weechat_printf (NULL, - _("%sFifo: unable to create pipe for remote " + _("%s%s: unable to create pipe for remote " "control (%s)"), - weechat_prefix ("error"), + weechat_prefix ("error"), "Fifo", fifo_filename); } } @@ -152,8 +152,8 @@ fifo_remove () } weechat_printf (NULL, - _("%sFifo: pipe is closed"), - weechat_prefix ("info")); + _("%s%s: pipe closed"), + weechat_prefix ("info"), "Fifo"); } /* @@ -184,8 +184,8 @@ fifo_exec (char *text) if (!pos_msg) { weechat_printf (NULL, - _("%sFifo error: invalid text received on pipe"), - weechat_prefix ("error")); + _("%s%s: error, invalid text received on pipe"), + weechat_prefix ("error"), "Fifo"); return; } pos_msg[0] = '\0'; @@ -215,8 +215,8 @@ fifo_exec (char *text) if (!ptr_buffer) { weechat_printf (NULL, - _("%sFifo error: buffer not found for pipe data"), - weechat_prefix ("error")); + _("%s%s: error, buffer not found for pipe data"), + weechat_prefix ("error"), "Fifo"); return; } @@ -294,8 +294,8 @@ fifo_read () if (num_read < 0) { weechat_printf (NULL, - _("%sFifo: error reading pipe, closing it"), - weechat_prefix ("error")); + _("%s%s: error reading pipe, closing it"), + weechat_prefix ("error"), "Fifo"); fifo_remove (); } else @@ -306,8 +306,8 @@ fifo_read () if (fifo_fd < 0) { weechat_printf (NULL, - _("%sFifo: error opening file, closing it"), - weechat_prefix ("error")); + _("%s%s: error opening file, closing it"), + weechat_prefix ("error"), "Fifo"); fifo_remove (); } else -- cgit v1.2.3