Skip to content

Commit

Permalink
OutputPanel: Use C_ instead of NC_ (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryonakano committed Feb 18, 2024
1 parent f83534a commit 7927cce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/OutputPanel.vala
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ public class Sound.OutputPanel : Gtk.Box {
balance_scale.adjustment.page_increment = 0.1;

/// TRANSLATORS: describes sound balance
balance_scale.add_mark (-1, Gtk.PositionType.BOTTOM, NC_("balance", "Left"));
balance_scale.add_mark (-1, Gtk.PositionType.BOTTOM, C_("balance", "Left"));
/// TRANSLATORS: describes sound balance
balance_scale.add_mark (0, Gtk.PositionType.BOTTOM, NC_("balance", "Center"));
balance_scale.add_mark (0, Gtk.PositionType.BOTTOM, C_("balance", "Center"));
/// TRANSLATORS: describes sound balance
balance_scale.add_mark (1, Gtk.PositionType.BOTTOM, NC_("balance", "Right"));
balance_scale.add_mark (1, Gtk.PositionType.BOTTOM, C_("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.")
Expand Down

0 comments on commit 7927cce

Please sign in to comment.