diff options
author | rbuj <[email protected]> | 2020-11-20 20:18:24 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-11-25 19:31:53 +0100 |
commit | bb1c2f6c9082758e312fbc0b503464554d6774c0 (patch) | |
tree | 2984d181270f974b68ddae058e930b66a1797723 /timerapplet | |
parent | 3dd33d455f60ccb07ca57b2ea083563efa51a252 (diff) | |
download | mate-applets-bb1c2f6c9082758e312fbc0b503464554d6774c0.tar.bz2 mate-applets-bb1c2f6c9082758e312fbc0b503464554d6774c0.tar.xz |
timer: i18n label
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)); |