summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2020-11-20 20:18:24 +0100
committerraveit65 <[email protected]>2020-11-25 19:31:53 +0100
commitbb1c2f6c9082758e312fbc0b503464554d6774c0 (patch)
tree2984d181270f974b68ddae058e930b66a1797723
parent3dd33d455f60ccb07ca57b2ea083563efa51a252 (diff)
downloadmate-applets-bb1c2f6c9082758e312fbc0b503464554d6774c0.tar.bz2
mate-applets-bb1c2f6c9082758e312fbc0b503464554d6774c0.tar.xz
timer: i18n label
-rw-r--r--timerapplet/src/timerapplet.c3
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));