summaryrefslogtreecommitdiff
path: root/lib/Task.cc
diff options
context:
space:
mode:
authorPixel <Pixel>2001-12-02 18:55:35 +0000
committerPixel <Pixel>2001-12-02 18:55:35 +0000
commite4075153def021c3405accb19ffcdc3247d98807 (patch)
treedc7085d969af2dd121f22619d6c453c4bd7a41a9 /lib/Task.cc
parent37989e882eaa805662dd0e260eb293c939e082b7 (diff)
Comments and so...
Diffstat (limited to 'lib/Task.cc')
-rw-r--r--lib/Task.cc4
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) {