Commit 3db9aecd authored by twanvl's avatar twanvl

don't use locale for error message (mostly to stop mse from whining about the missing entry)

parent a39c53ba
...@@ -23,7 +23,7 @@ VCSP read_new<VCS>(Reader& reader) { ...@@ -23,7 +23,7 @@ VCSP read_new<VCS>(Reader& reader) {
reader.warning(_ERROR_1_("expected key", _("version control system"))); reader.warning(_ERROR_1_("expected key", _("version control system")));
throw ParseError(_ERROR_("aborting parsing")); throw ParseError(_ERROR_("aborting parsing"));
} else { } else {
reader.warning(_ERROR_1_("unsupported version control type", type)); reader.warning(format_string(_("Unsupported version control type: '%s'"), type));
throw ParseError(_ERROR_("aborting parsing")); throw ParseError(_ERROR_("aborting parsing"));
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment