diff options
Diffstat (limited to 'timerapplet')
-rw-r--r-- | timerapplet/src/timerapplet.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/timerapplet/src/timerapplet.c b/timerapplet/src/timerapplet.c index 0948be43..8d2d3cfe 100644 --- a/timerapplet/src/timerapplet.c +++ b/timerapplet/src/timerapplet.c @@ -149,7 +149,8 @@ timer_callback (TimerApplet *applet) applet->active = FALSE; applet->timeout_id = 0; - label = g_strdup_printf ("Finished %s", name); + /* Translators: %s is a placeholder for the timer name, 'Timer' by default */ + label = g_strdup_printf (_("Finished %s"), name); gtk_label_set_text (applet->label, label); gtk_widget_set_tooltip_text (GTK_WIDGET (applet->label), name); gtk_widget_hide (GTK_WIDGET (applet->pause_image)); |