From cb49109679392a87c3116b865f64aafd10e93dff Mon Sep 17 00:00:00 2001 From: Jonathan Blandford Date: Mon, 16 Aug 1999 15:42:30 +0000 Subject: [PATCH] 1999-08-16 Jonathan Blandford * Patch from Chyla Zbigniew to gettextize everything. Sorry translators... --- gnome/mime-type/mime-data.c | 8 ++++---- gnome/mime-type/mime-info.c | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gnome/mime-type/mime-data.c b/gnome/mime-type/mime-data.c index f059d1d47..1e77537a4 100644 --- a/gnome/mime-type/mime-data.c +++ b/gnome/mime-type/mime-data.c @@ -541,15 +541,15 @@ write_mime (GHashTable *hash) if ((stat (dirname, &s) < 0) || !(S_ISDIR (s.st_mode))){ if (errno == ENOENT) { if (mkdir (dirname, S_IRWXU) < 0) { - run_error ("We are unable to create the directory\n" + run_error (_("We are unable to create the directory\n" "~/.gnome/mime-info\n\n" - "We will not be able to save the state."); + "We will not be able to save the state.")); return; } } else { - run_error ("We are unable to access the directory\n" + run_error (_("We are unable to access the directory\n" "~/.gnome/mime-info\n\n" - "We will not be able to save the state."); + "We will not be able to save the state.")); return; } } diff --git a/gnome/mime-type/mime-info.c b/gnome/mime-type/mime-info.c index 9fe5a5e3d..6a21eb89f 100644 --- a/gnome/mime-type/mime-info.c +++ b/gnome/mime-type/mime-info.c @@ -420,15 +420,15 @@ write_keys (GHashTable *spec_hash, GHashTable *generic_hash) if ((stat (dirname, &s) < 0) || !(S_ISDIR (s.st_mode))){ if (errno == ENOENT) { if (mkdir (dirname, S_IRWXU) < 0) { - run_error ("We are unable to create the directory\n" + run_error (_("We are unable to create the directory\n" "~/.gnome/mime-info\n\n" - "We will not be able to save the state."); + "We will not be able to save the state.")); return; } } else { - run_error ("We are unable to access the directory\n" + run_error (_("We are unable to access the directory\n" "~/.gnome/mime-info\n\n" - "We will not be able to save the state."); + "We will not be able to save the state.")); return; } }