From bb1c2f6c9082758e312fbc0b503464554d6774c0 Mon Sep 17 00:00:00 2001 From: rbuj Date: Fri, 20 Nov 2020 20:18:24 +0100 Subject: timer: i18n label --- timerapplet/src/timerapplet.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'timerapplet') 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)); -- cgit v1.2.1