=== modified file 'src/applet-main.c' --- src/applet-main.c 2009-03-26 21:10:58 +0000 +++ src/applet-main.c 2009-03-27 23:52:01 +0000 @@ -58,6 +58,11 @@ static gboolean load_module (const gchar * name, GtkWidget * menu) { + /* Init i18n */ + bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); + textdomain (GETTEXT_PACKAGE); + g_debug("Looking at Module: %s", name); g_return_val_if_fail(name != NULL, FALSE); @@ -139,7 +144,7 @@ }; gchar *license_i18n; - license_i18n = g_strjoinv ("\n\n", license); + license_i18n = g_strconcat (_(license[0]), "\n\n", _(license[1]), "\n\n", _(license[2]), NULL); gtk_show_about_dialog(NULL, "version", "0.1", @@ -237,7 +242,7 @@ if (indicators_loaded == 0) { /* A label to allow for click through */ - GtkWidget * item = gtk_label_new("No Indicators"); + GtkWidget * item = gtk_label_new(_("No Indicators")); gtk_container_add(GTK_CONTAINER(applet), item); gtk_widget_show(item); } else {