1
1

1999-08-16 Jonathan Blandford <jrb@redhat.com>

* Patch from Chyla Zbigniew <chyla@alice.ci.pwr.wroc.pl> to
	gettextize everything.  Sorry translators...
Этот коммит содержится в:
Jonathan Blandford 1999-08-16 15:42:30 +00:00
родитель 6fae3e0425
Коммит cb49109679
2 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -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;
}
}

Просмотреть файл

@ -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;
}
}