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 | abe307380dc6661d85d72335416392c11ee92d4c (patch) | |
tree | c9a7b03d60583bb54a6ab73a7df008ee7ec59d66 /mixguile | |
parent | f90723b977647e04629412a46bf41e98040eb235 (diff) | |
download | mdk-abe307380dc6661d85d72335416392c11ee92d4c.tar.gz mdk-abe307380dc6661d85d72335416392c11ee92d4c.tar.bz2 |
_() i18n macro added to all strings missing it
Diffstat (limited to 'mixguile')
-rw-r--r-- | mixguile/mixguile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mixguile/mixguile.c b/mixguile/mixguile.c index 2f1ae48..ed66ee6 100644 --- a/mixguile/mixguile.c +++ b/mixguile/mixguile.c @@ -1,9 +1,9 @@ /* -*-c-*- -------------- mixguile.c : * Implementation of the functions declared in mixguile.h * ------------------------------------------------------------------ - * $Id: mixguile.c,v 1.6 2001/09/28 23:10:45 jao Exp $ + * $Id: mixguile.c,v 1.7 2002/04/10 23:39:40 jao Exp $ * ------------------------------------------------------------------ - * Copyright (C) 2001 Free Software Foundation, Inc. + * Copyright (C) 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 @@ -71,7 +71,7 @@ mixguile_load_bootstrap (gboolean loadlocal) if (access (scmfile, R_OK) && access ((scmfile = LOCAL_SCM_FILE), R_OK)) { - g_warning ("mixguile bootstrap file %s not found\n", SCM_FILE); + g_warning (_("mixguile bootstrap file %s not found\n"), SCM_FILE); scmfile = NULL; } else |