summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVictor Kareh <[email protected]>2025-08-29 11:09:48 -0400
committerLuke from DC <[email protected]>2025-10-28 04:47:37 +0000
commit663808b562af05946fa4b3b92801ab0a8c56f0bf (patch)
tree776a684c974645b5a7fb2f6d0302d6b9e6104c92 /src
parent8c4c0c8d4843222fc890233036737ac86fea1ca2 (diff)
downloadmate-notification-daemon-663808b562af05946fa4b3b92801ab0a8c56f0bf.tar.bz2
mate-notification-daemon-663808b562af05946fa4b3b92801ab0a8c56f0bf.tar.xz
capplet: Rename applet to Notification Status
Since this applet no longer does just DND toggle, but instead allows more comprehensive status and control, we can rename this to represent that in a more generic way.
Diffstat (limited to 'src')
-rw-r--r--src/capplet/mate-notification-applet.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/capplet/mate-notification-applet.c b/src/capplet/mate-notification-applet.c
index 8b537dd..dd2f4e1 100644
--- a/src/capplet/mate-notification-applet.c
+++ b/src/capplet/mate-notification-applet.c
@@ -189,10 +189,10 @@ show_about (GtkAction *action,
(void) applet;
gtk_show_about_dialog (NULL,
- "title", _("About Do Not Disturb"),
+ "title", _("About Notification Status"),
"version", VERSION,
"copyright", _("Copyright \xc2\xa9 2021 MATE developers"),
- "comments", _("Activate the do not disturb mode quickly."),
+ "comments", _("Monitor and control notification status."),
"authors", authors,
"translator-credits", _("translator-credits"),
"logo_icon_name", "mate-notification-properties",
@@ -377,7 +377,7 @@ applet_main (MatePanelApplet *applet_widget)
MateNotificationApplet *applet;
#ifndef ENABLE_IN_PROCESS
- g_set_application_name (_("Do Not Disturb"));
+ g_set_application_name (_("Notification Status"));
#endif
gtk_window_set_default_icon_name ("mate-notification-properties");
@@ -445,7 +445,7 @@ applet_main (MatePanelApplet *applet_widget)
G_CALLBACK (applet_button_press_cb), applet);
/* set up context menu */
- applet->action_group = gtk_action_group_new ("Do Not Disturb Actions");
+ applet->action_group = gtk_action_group_new ("Notification Status Actions");
#ifdef ENABLE_NLS
gtk_action_group_set_translation_domain (applet->action_group, GETTEXT_PACKAGE);
#endif /* ENABLE_NLS */
@@ -526,6 +526,6 @@ applet_factory (MatePanelApplet *applet_widget,
PANEL_APPLET_FACTORY ("MateNotificationAppletFactory",
PANEL_TYPE_APPLET,
- "Do Not Disturb Applet",
+ "Notification Status Applet",
applet_factory,
NULL)