supports now language for 'CPU Frequency Error' string

SVN revision: 14346
This commit is contained in:
vandango 2005-04-25 09:13:53 +00:00 committed by vandango
parent d6b1d4f93a
commit e263ee8637
1 changed files with 6 additions and 6 deletions

View File

@ -267,9 +267,9 @@ _cpufreq_set_governor(Cpufreq *e, const char *governor)
ret = system(buf); ret = system(buf);
if (ret != 0) if (ret != 0)
{ {
e_error_dialog_show("CPU Frequency ERROR", e_error_dialog_show(_("CPU Frequency ERROR"),
"There was an error trying to set the cpu frequency\n" _("There was an error trying to set the cpu frequency\n"
"governor via the module's setfreq utility."); "governor via the module's setfreq utility."));
} }
} }
@ -284,9 +284,9 @@ _cpufreq_set_frequency(Cpufreq *e, int frequency)
ret = system(buf); ret = system(buf);
if (ret != 0) if (ret != 0)
{ {
e_error_dialog_show("CPU Frequency ERROR", e_error_dialog_show(_("CPU Frequency ERROR"),
"There was an error trying to set the cpu frequency\n" _("There was an error trying to set the cpu frequency\n"
"setting via the module's setfreq utility."); "setting via the module's setfreq utility."));
} }
} }