From 8d67fa9f501e2337d5ccad041339a49fb5a0158f Mon Sep 17 00:00:00 2001 From: Karel Klic Date: Mon, 12 Jul 2010 22:21:20 +0200 Subject: Make an error message translatable. Can't -> Cannot. --- lib/Plugins/Bugzilla.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Plugins/Bugzilla.cpp') diff --git a/lib/Plugins/Bugzilla.cpp b/lib/Plugins/Bugzilla.cpp index 909a977d..1f2d4412 100644 --- a/lib/Plugins/Bugzilla.cpp +++ b/lib/Plugins/Bugzilla.cpp @@ -558,7 +558,7 @@ void ctx::login(const char* login, const char* passwd) if (!result) { - std::string errmsg = ssprintf("Can't login. Check Edit->Plugins->Bugzilla and /etc/abrt/plugins/Bugzilla.conf. Server said: %s", env.fault_string); + std::string errmsg = ssprintf(_("Cannot login. Check Edit->Plugins->Bugzilla and /etc/abrt/plugins/Bugzilla.conf. Server said: %s"), env.fault_string); error_msg("%s", errmsg.c_str()); // show error in daemon log throw CABRTException(EXCEP_PLUGIN, "%s", errmsg.c_str()); } -- cgit