summaryrefslogtreecommitdiff
path: root/src/themes/coco
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-06-24 22:04:58 +0200
committerraveit65 <[email protected]>2016-06-24 22:04:58 +0200
commit2111df36e03c9d1dbb5529594ebce42cf9e39f85 (patch)
treedd19b6fb57bab6c12846f94fcd9486d0590ff57c /src/themes/coco
parentde5e743317a3c150c276bb83d79d25a2a647bbb4 (diff)
downloadmate-notification-daemon-2111df36e03c9d1dbb5529594ebce42cf9e39f85.tar.bz2
mate-notification-daemon-2111df36e03c9d1dbb5529594ebce42cf9e39f85.tar.xz
themes: make text translatable
taken from: https://git.gnome.org/browse/notification-daemon/commit/?id=b156f34
Diffstat (limited to 'src/themes/coco')
-rw-r--r--src/themes/coco/coco-theme.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/themes/coco/coco-theme.c b/src/themes/coco/coco-theme.c
index ca84585..a3c54bd 100644
--- a/src/themes/coco/coco-theme.c
+++ b/src/themes/coco/coco-theme.c
@@ -24,6 +24,7 @@
#include "config.h"
+#include <glib/gi18n.h>
#include <gtk/gtk.h>
/* Define basic coco types */
@@ -461,7 +462,7 @@ create_notification(UrlClickedCb url_clicked)
gtk_label_set_line_wrap_mode (GTK_LABEL (windata->summary_label), PANGO_WRAP_WORD_CHAR);
atkobj = gtk_widget_get_accessible(windata->summary_label);
- atk_object_set_description(atkobj, "Notification summary text.");
+ atk_object_set_description (atkobj, _("Notification summary text."));
windata->body_label = gtk_label_new(NULL);
gtk_box_pack_start(GTK_BOX(vbox), windata->body_label, FALSE, FALSE, 0);
@@ -479,7 +480,7 @@ create_notification(UrlClickedCb url_clicked)
G_CALLBACK(activate_link), windata);
atkobj = gtk_widget_get_accessible(windata->body_label);
- atk_object_set_description(atkobj, "Notification body text.");
+ atk_object_set_description (atkobj, _("Notification body text."));
windata->actions_box = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 6);
gtk_widget_set_halign(windata->actions_box, GTK_ALIGN_END);