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

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1471 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2010-08-03 14:54:52 +00:00
parent 463c3d9a81
commit 726bd9c135
+1 -1
View File
@@ -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"));
} }
} }