From 3b6df523ca5ecb1fb981c6e44a0fb0c22bc96679 Mon Sep 17 00:00:00 2001 From: Nikola Pajkovsky Date: Thu, 29 Jul 2010 15:44:21 +0200 Subject: mark string for translate Signed-off-by: Nikola Pajkovsky --- src/Applet/CCApplet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Applet/CCApplet.cpp b/src/Applet/CCApplet.cpp index 02d911d9..5349c7a5 100644 --- a/src/Applet/CCApplet.cpp +++ b/src/Applet/CCApplet.cpp @@ -253,7 +253,7 @@ void CApplet::CrashNotify(const char* crash_id, const char *format, ...) notify_notification_add_action(notification, "REPORT", _("Report"), NOTIFY_ACTION_CALLBACK(CApplet::action_report), this, NULL); - notify_notification_add_action(notification, "OPEN_MAIN_WINDOW", "Open ABRT", + notify_notification_add_action(notification, "OPEN_MAIN_WINDOW", _("Open ABRT"), NOTIFY_ACTION_CALLBACK(CApplet::action_open_gui), this, NULL); @@ -281,7 +281,7 @@ void CApplet::MessageNotify(const char *format, ...) like >>Clear old dumps<< for quota exceeded */ NotifyNotification *notification = new_warn_notification(); - notify_notification_add_action(notification, "OPEN_MAIN_WINDOW", "Open ABRT", + notify_notification_add_action(notification, "OPEN_MAIN_WINDOW", _("Open ABRT"), NOTIFY_ACTION_CALLBACK(CApplet::action_open_gui), this, NULL); notify_notification_update(notification, _("Warning"), buf, NULL); -- cgit