summaryrefslogtreecommitdiffhomepage
path: root/mixlib/mix.c
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2002-04-10 23:39:40 +0000
committerJose Antonio Ortega Ruiz <jao@gnu.org>2002-04-10 23:39:40 +0000
commitabe307380dc6661d85d72335416392c11ee92d4c (patch)
treec9a7b03d60583bb54a6ab73a7df008ee7ec59d66 /mixlib/mix.c
parentf90723b977647e04629412a46bf41e98040eb235 (diff)
downloadmdk-abe307380dc6661d85d72335416392c11ee92d4c.tar.gz
mdk-abe307380dc6661d85d72335416392c11ee92d4c.tar.bz2
_() i18n macro added to all strings missing it
Diffstat (limited to 'mixlib/mix.c')
-rw-r--r--mixlib/mix.c8
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;
}