summaryrefslogtreecommitdiff
path: root/src/glade-window.c
diff options
context:
space:
mode:
authorJuan Pablo Ugarte <juanpablougarte@gmail.com>2014-03-17 20:40:16 -0300
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2014-03-17 20:40:16 -0300
commit2d04be13169d95677332f49d43e81ed00bfb4e8d (patch)
treed4a6450a428f7a46491913edc1c8440cf7b73144 /src/glade-window.c
parent5716cbb64b281e2325d21bb4ae53a4ba7a07e906 (diff)
downloadglade-2d04be13169d95677332f49d43e81ed00bfb4e8d.tar.gz
Mark every survey notification dialog string as translatable
Diffstat (limited to 'src/glade-window.c')
-rw-r--r--src/glade-window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glade-window.c b/src/glade-window.c
index b659f919..28904955 100644
--- a/src/glade-window.c
+++ b/src/glade-window.c
@@ -3475,12 +3475,12 @@ glade_window_registration_notify_user (GladeWindow *window)
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_YES_NO,
"%s",
- "We are conducting a user survey\n would you like to take it now?");
+ _("We are conducting a user survey\n would you like to take it now?"));
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), "%s",
_("If not, you can always find it in the Help menu."));
- check = gtk_check_button_new_with_label ("Do not show this dialog again");
+ check = gtk_check_button_new_with_label (_("Do not show this dialog again"));
gtk_box_pack_end (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
check, FALSE, FALSE, 4);
gtk_widget_set_halign (check, GTK_ALIGN_START);