Update changelog and bump version to 0.0.17-2.
[tweakr] / tweakr.c
index 9ddd1cc..e6a91ff 100644 (file)
--- a/tweakr.c
+++ b/tweakr.c
@@ -2,6 +2,9 @@
  * vim:ts=4:sw=4:et:cindent:cino=(0
  */ 
 
+#include <config.h>
+#include <glib/gi18n-lib.h>
+
 #include <hildon-cp-plugin/hildon-cp-plugin-interface.h>
 #include <gtk/gtk.h>
 #include <hildon/hildon-note.h>
@@ -87,7 +90,7 @@ osso_return_t execute (osso_context_t *osso, gpointer data,
     }
 
     gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), panarea,
-                        FALSE, FALSE, 0);
+                        TRUE, TRUE, 0);
     gtk_widget_show_all (GTK_DIALOG (dialog)->vbox);
 
     for (;;)
@@ -116,8 +119,9 @@ osso_return_t execute (osso_context_t *osso, gpointer data,
         GtkWidget *note;
 
         note = hildon_note_new_information
-            (GTK_WINDOW (data), "Some of the settings you have changed"
-             " will take effect only after you restart your device.");
+            (GTK_WINDOW (data),
+             _("Some of the settings you have changed "
+               "will take effect only after you restart your device."));
         gtk_dialog_run (GTK_DIALOG (note));
         gtk_widget_destroy (note);
     }