summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@redhat.com>2022-11-24 09:27:40 -0600
committerMichael Catanzaro <mcatanzaro@redhat.com>2022-11-24 09:27:40 -0600
commitfb4edd88da1c880fa60826c230722bbbcce5ae0d (patch)
treef23eca3c0300f66e3284772c7c2a7533e88f13a4
parent4e5eeff67146091c8cabb3e536fe9e1f61bd40e3 (diff)
downloadgnome-settings-daemon-fb4edd88da1c880fa60826c230722bbbcce5ae0d.tar.gz
housekeeping: fix capitalization of systemd notifications
-rw-r--r--plugins/housekeeping/gsd-systemd-notify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/housekeeping/gsd-systemd-notify.c b/plugins/housekeeping/gsd-systemd-notify.c
index 9ead9053..39984f5d 100644
--- a/plugins/housekeeping/gsd-systemd-notify.c
+++ b/plugins/housekeeping/gsd-systemd-notify.c
@@ -88,12 +88,12 @@ notify_oom_kill (char *unit)
/* TRANSLATORS: A terminal tab/window was killed. */
summary = g_strdup_printf (_("Virtual Terminal Stopped"));
/* TRANSLATORS: A terminal tab/window was killed. */
- message = g_strdup_printf (_("Device memory is nearly full. Virtual Terminal processes were using a lot of memory and were forced to stop."));
+ message = g_strdup_printf (_("Device memory is nearly full. Virtual terminal processes were using a lot of memory and were forced to stop."));
} else {
/* TRANSLATORS: We don't have a good description of what was killed. */
summary = g_strdup_printf (_("Application Stopped"));
/* TRANSLATORS: We don't have a good description of what was killed. */
- message = g_strdup_printf (_("Device memory is nearly full. An Application that was using a lot of memory and was forced to stop."));
+ message = g_strdup_printf (_("Device memory is nearly full. An application that was using a lot of memory and was forced to stop."));
}
notification = notify_notification_new (summary, message, "dialog-warning-symbolic");