diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2002-04-10 23:39:40 +0000 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2002-04-10 23:39:40 +0000 |
commit | 90cde3a89e4fdf31f78c8743c3bac5a98ef1070d (patch) | |
tree | bcaa14df457ee24d362fe3bcd08a44f8f69ef576 /mixlib/mix.c | |
parent | c70e4a1e4f25793e9bd1f36bd9e7658e3dc3e862 (diff) | |
download | mdk-90cde3a89e4fdf31f78c8743c3bac5a98ef1070d.tar.gz mdk-90cde3a89e4fdf31f78c8743c3bac5a98ef1070d.tar.bz2 |
_() i18n macro added to all strings missing it
Diffstat (limited to 'mixlib/mix.c')
-rw-r--r-- | mixlib/mix.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mixlib/mix.c b/mixlib/mix.c index af1ba40..7a1f4a9 100644 --- a/mixlib/mix.c +++ b/mixlib/mix.c @@ -1,9 +1,9 @@ /* -*-c-*- -------------- mix.c : * Implementation of the functions declared in mix.h * ------------------------------------------------------------------ - * $Id: mix.c,v 1.4 2001/09/28 23:10:45 jao Exp $ + * $Id: mix.c,v 1.5 2002/04/10 23:39:40 jao Exp $ * ------------------------------------------------------------------ - * Copyright (C) 2000, 2001 Free Software Foundation, Inc. + * Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -81,7 +81,7 @@ mix_stat_dir (const gchar *dirname, const gchar *alias) { if (errno != ENOENT || mkdir (dirname, S_IRWXU | S_IRWXG | S_IRWXO)) { - g_warning ("Error creating %s dir %s: %s", + g_warning (_("Error creating %s dir %s: %s"), alias, dirname, strerror (errno)); return FALSE; } @@ -90,7 +90,7 @@ mix_stat_dir (const gchar *dirname, const gchar *alias) if (!(statbuf.st_mode & S_IFDIR)) { - g_warning ("Error setting %s dir: %s is not a directory", + g_warning (_("Error setting %s dir: %s is not a directory"), alias, dirname); return FALSE; } |