elementary / switchboard-plug-sound

Switchboard Sound Plug
GNU Lesser General Public License v2.1
13 stars 11 forks source link

OutputPanel: Use C_ instead of NC_ #267

Closed ryonakano closed 8 months ago

ryonakano commented 8 months ago

NC_ is for adding context for const strings like this:

const string FOO = NC_("context", "Foo");

warning ("Do %s", _(FOO));

So we should use C_ instead, otherwise these strings won't shown as translated.