summaryrefslogtreecommitdiff
path: root/src/lib/job.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-01-30 00:42:03 +0000
committerCarl Hetherington <cth@carlh.net>2019-01-30 00:42:03 +0000
commit0cbdfdd6c0ef9a1b72070ee741be76332491392a (patch)
tree119f906981a3b17989fcce8c114aa00ec66f194a /src/lib/job.cc
parent072658c553eff4103bc962eec8b3b83aa05210ea (diff)
Fix non-translated days of the week (#1455).
Diffstat (limited to 'src/lib/job.cc')
-rw-r--r--src/lib/job.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/job.cc b/src/lib/job.cc
index 610d486b6..8cc6ced8e 100644
--- a/src/lib/job.cc
+++ b/src/lib/job.cc
@@ -449,7 +449,7 @@ Job::status () const
if (now.date() != finish.date()) {
/// TRANSLATORS: the %1 in this string will be filled in with a day of the week
/// to say what day a job will finish.
- day = String::compose (_(" on %1"), finish.date().day_of_week().as_long_string());
+ day = String::compose (_(" on %1"), day_of_week_to_string(finish.date().day_of_week()));
}
/// TRANSLATORS: "remaining; finishing at" here follows an amount of time that is remaining
/// on an operation; after it is an estimated wall-clock completion time.