diff options
author | Pixel <Pixel> | 2001-12-02 18:55:35 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-12-02 18:55:35 +0000 |
commit | e4075153def021c3405accb19ffcdc3247d98807 (patch) | |
tree | dc7085d969af2dd121f22619d6c453c4bd7a41a9 /lib/Task.cc | |
parent | 37989e882eaa805662dd0e260eb293c939e082b7 (diff) |
Comments and so...
Diffstat (limited to 'lib/Task.cc')
-rw-r--r-- | lib/Task.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Task.cc b/lib/Task.cc index 72023e4..25733ff 100644 --- a/lib/Task.cc +++ b/lib/Task.cc @@ -24,7 +24,7 @@ int Task::Run() { return state; } catch (GeneralException e) { - cerr << "Task " << GetName() << " caused an unexpected exception: \"" << e.GetMsg() << "\". Terminating.\n"; + cerr << _("Task ") << GetName() << _(" caused an unexpected exception: \"") << e.GetMsg() << _("\". Terminating.\n"); return TASK_DONE; } @@ -36,7 +36,7 @@ int Task::GetState() { } String Task::GetName() { - return "Unknow Task"; + return _("Unknow Task"); } void Task::Suspend(int newstate) throw (GeneralException) { |