aboutsummaryrefslogtreecommitdiffhomepage
path: root/io.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-01-04 22:51:02 +1000
committerGravatar axel <axel@liljencrantz.se>2006-01-04 22:51:02 +1000
commitec43c635cc65145dc4c36b4b284b86119534533e (patch)
treef563bf720ab28d1269a0be9805a3fef4dbd6e05d /io.c
parent26de6ba26b71f06c15ee7e8a54a7b52e0437047d (diff)
Add i18n through gettext, as well as a Swedish translation
darcs-hash:20060104125102-ac50b-5bf026578a69bd94f7a7a3c8dee0ebccd95e5c24.gz
Diffstat (limited to 'io.c')
-rw-r--r--io.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/io.c b/io.c
index 2e4f4f30..1f340c2e 100644
--- a/io.c
+++ b/io.c
@@ -32,6 +32,7 @@ Utilities for io redirection.
#include "exec.h"
#include "common.h"
#include "io.h"
+#include "translate.h"
@@ -69,7 +70,7 @@ void io_buffer_read( io_data_t *d )
if( errno != EAGAIN )
{
debug( 1,
- L"An error occured while reading output from code block on fd %d",
+ _(L"An error occured while reading output from code block on fd %d"),
d->param1.pipe_fd[0] );
wperror( L"io_buffer_read" );
}