summaryrefslogtreecommitdiff
path: root/src/plugins/fifo
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2007-12-18 17:20:08 +0100
committerSebastien Helleu <flashcode@flashtux.org>2007-12-18 17:20:08 +0100
commit6fd0bd2158e5eb0c182e6b7d4132c84734a256cb (patch)
treeb596fba5c6e3afc8659ebf7ad6a30726c26495e6 /src/plugins/fifo
parent7873047e5575fc896ea0f1d7372b45a848c516ba (diff)
downloadweechat-6fd0bd2158e5eb0c182e6b7d4132c84734a256cb.zip
All messages translated to french, fixed bugs/typos in some messages
Diffstat (limited to 'src/plugins/fifo')
-rw-r--r--src/plugins/fifo/fifo.c32
1 files changed, 16 insertions, 16 deletions
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