Skip to content

Commit

Permalink
Add translation context for "Left" / "Right"
Browse files Browse the repository at this point in the history
  • Loading branch information
lenemter committed Jan 30, 2024
1 parent 7833c59 commit feaacce
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/OutputPanel.vala
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,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"));

Expand Down

0 comments on commit feaacce

Please sign in to comment.