diff options
author | userj <joseph@liau.ca> | 2021-05-26 11:12:27 -0700 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2021-08-12 02:25:11 +0200 |
commit | 81e181c07147a124a39f797416c2e02076d30ef1 (patch) | |
tree | 2882d5f497594c20e7cfd972dba45a241a0615b6 /src | |
parent | e27469555f2e2f2d8b7722507c50f15952f24bd1 (diff) | |
download | ayatana-indicator-sound-81e181c07147a124a39f797416c2e02076d30ef1.tar.gz ayatana-indicator-sound-81e181c07147a124a39f797416c2e02076d30ef1.tar.bz2 ayatana-indicator-sound-81e181c07147a124a39f797416c2e02076d30ef1.zip |
Add newline between sentences in volume warning (#3)
Diffstat (limited to 'src')
-rw-r--r-- | src/warn-notification.vala | 2 |
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"); |