aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruserj <joseph@liau.ca>2021-05-26 11:12:27 -0700
committerRobert Tari <robert@tari.in>2021-08-12 02:25:11 +0200
commit81e181c07147a124a39f797416c2e02076d30ef1 (patch)
tree2882d5f497594c20e7cfd972dba45a241a0615b6
parente27469555f2e2f2d8b7722507c50f15952f24bd1 (diff)
downloadayatana-indicator-sound-81e181c07147a124a39f797416c2e02076d30ef1.tar.gz
ayatana-indicator-sound-81e181c07147a124a39f797416c2e02076d30ef1.tar.bz2
ayatana-indicator-sound-81e181c07147a124a39f797416c2e02076d30ef1.zip
Add newline between sentences in volume warning (#3)
-rw-r--r--src/warn-notification.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/warn-notification.vala b/src/warn-notification.vala
index c873ede..12e34e4 100644
--- a/src/warn-notification.vala
+++ b/src/warn-notification.vala
@@ -29,7 +29,7 @@ public class IndicatorSound.WarnNotification: Notification
protected override Notify.Notification create_notification () {
var n = new Notify.Notification (
_("Volume"),
- _("Allow volume above safe level? High volume can damage your hearing."),
+ _("Allow volume above safe level?\nHigh volume can damage your hearing."),
"audio-volume-high");
n.set_hint ("x-canonical-non-shaped-icon", "true");
n.set_hint ("x-canonical-snap-decisions", "true");