label "Inactive" is untranslatable. diff --git a/panel-plugin/time-out.c b/panel-plugin/time-out.c index cc204b7..d6663e8 100644 --- a/panel-plugin/time-out.c +++ b/panel-plugin/time-out.c @@ -203,7 +203,7 @@ time_out_new (XfcePanelPlugin *plugin) gtk_widget_show (time_out->panel_icon); /* Create label for displaying the remaining time until the next break */ - time_out->time_label = gtk_label_new ("Inactive"); + time_out->time_label = gtk_label_new (_("Inactive")); gtk_misc_set_alignment (GTK_MISC (time_out->time_label), 0.5, 0.5); gtk_box_pack_start (GTK_BOX (time_out->hvbox), time_out->time_label, TRUE, TR gtk_widget_show (time_out->time_label);
Mass-reassign all bugs from florian@ to goodies-dev@, thanks for the maintenance work! (and sorry for the bugmail spam..)
Created attachment 7487 Make strings translatable.
Applied in https://git.xfce.org/panel-plugins/xfce4-time-out-plugin/commit/?id=0e07cd3a58f931a81ea3ed1e4da8fde8d0b526bf, thanks!