From ba7bdeeeb8c573c2804d27350a04b4f84ce8a0ea Mon Sep 17 00:00:00 2001 From: Leo Date: Wed, 31 Jan 2024 00:49:25 +0900 Subject: [PATCH] Add translation context for "Left" / "Right" (#262) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Danielle Foré --- src/OutputPanel.vala | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/OutputPanel.vala b/src/OutputPanel.vala index 9fc69d8c..0ebcbeb4 100644 --- a/src/OutputPanel.vala +++ b/src/OutputPanel.vala @@ -79,9 +79,12 @@ public class Sound.OutputPanel : Gtk.Box { balance_scale.adjustment.page_increment = 0.1; - balance_scale.add_mark (-1, Gtk.PositionType.BOTTOM, _("Left")); - balance_scale.add_mark (0, Gtk.PositionType.BOTTOM, _("Center")); - balance_scale.add_mark (1, Gtk.PositionType.BOTTOM, _("Right")); + /// TRANSLATORS: describes sound balance + balance_scale.add_mark (-1, Gtk.PositionType.BOTTOM, NC_("balance", "Left")); + /// TRANSLATORS: describes sound balance + balance_scale.add_mark (0, Gtk.PositionType.BOTTOM, NC_("balance", "Center")); + /// TRANSLATORS: describes sound balance + balance_scale.add_mark (1, Gtk.PositionType.BOTTOM, NC_("balance", "Right")); var alerts_label = new Granite.HeaderLabel (_("Event Alerts")) { secondary_text = _("Notify when the system can't do something in response to input, like attempting to backspace in an empty input or switch windows when only one is open.")