From 2111df36e03c9d1dbb5529594ebce42cf9e39f85 Mon Sep 17 00:00:00 2001 From: raveit65 Date: Fri, 24 Jun 2016 22:04:58 +0200 Subject: themes: make text translatable taken from: https://git.gnome.org/browse/notification-daemon/commit/?id=b156f34 --- src/themes/nodoka/nodoka-theme.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/themes/nodoka') diff --git a/src/themes/nodoka/nodoka-theme.c b/src/themes/nodoka/nodoka-theme.c index 40095ea..318291c 100644 --- a/src/themes/nodoka/nodoka-theme.c +++ b/src/themes/nodoka/nodoka-theme.c @@ -25,6 +25,7 @@ #include "config.h" +#include #include /* Define basic nodoka types */ @@ -807,7 +808,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.")); /* Add the close button */ close_button = gtk_button_new(); @@ -821,9 +822,9 @@ create_notification(UrlClickedCb url_clicked) atkobj = gtk_widget_get_accessible(close_button); atk_action_set_description(ATK_ACTION(atkobj), 0, - "Closes the notification."); + _("Closes the notification.")); atk_object_set_name(atkobj, ""); - atk_object_set_description(atkobj, "Closes the notification."); + atk_object_set_description (atkobj, _("Closes the notification.")); image = gtk_image_new_from_icon_name ("window-close", GTK_ICON_SIZE_MENU); gtk_widget_show(image); @@ -864,7 +865,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); -- cgit v1.2.1