summaryrefslogtreecommitdiff
path: root/src/report.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/report.h')
-rw-r--r--src/report.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/report.h b/src/report.h
index 498af88f..5bc5bd69 100644
--- a/src/report.h
+++ b/src/report.h
@@ -253,8 +253,8 @@ public:
interval_t interval(args[0].to_string());
if (! is_valid(interval.begin))
throw_(std::invalid_argument,
- "Could not determine beginning of period '"
- << args[0].to_string() << "'");
+ _("Could not determine beginning of period '%1'")
+ << args[0].to_string());
string predicate =
"date>=[" + to_iso_extended_string(interval.begin) + "]";
@@ -369,8 +369,8 @@ public:
interval_t interval(args[0].to_string());
if (! is_valid(interval.begin))
throw_(std::invalid_argument,
- "Could not determine end of period '"
- << args[0].to_string() << "'");
+ _("Could not determine end of period '%1'")
+ << args[0].to_string());
string predicate =
"date<[" + to_iso_extended_string(interval.begin) + "]";