diff options
| author | Colin Guthrie <cguthrie@mandriva.org> | 2009-09-18 09:22:23 +0100 | 
|---|---|---|
| committer | Colin Guthrie <cguthrie@mandriva.org> | 2009-09-18 09:22:23 +0100 | 
| commit | fd25e8fa8bd22dc3ba4beac0fd12b2fc74bc6902 (patch) | |
| tree | 59dae154a7bebc470cf3417bf8890cba2ad8265e /src | |
| parent | 0323e48fdc31925178ef375652660785328cb08f (diff) | |
alsa: Give all ports a human name to allow UI tools to present the choice to users.
Diffstat (limited to 'src')
| -rw-r--r-- | src/modules/alsa/alsa-mixer.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/modules/alsa/alsa-mixer.c b/src/modules/alsa/alsa-mixer.c index 8d54d583..f3ce681f 100644 --- a/src/modules/alsa/alsa-mixer.c +++ b/src/modules/alsa/alsa-mixer.c @@ -1708,11 +1708,11 @@ static int option_verify(pa_alsa_option *o) {          { "input-radio",               N_("Radio") },          { "input-video",               N_("Video") },          { "input-agc-on",              N_("Automatic Gain Control") }, -        { "input-agc-off",             "" }, +        { "input-agc-off",             N_("No Automatic Gain Control") },          { "input-boost-on",            N_("Boost") }, -        { "input-boost-off",           "" }, +        { "input-boost-off",           N_("No Boost") },          { "output-amplifier-on",       N_("Amplifier") }, -        { "output-amplifier-off",      "" } +        { "output-amplifier-off",      N_("No Amplifier") }      };      pa_assert(o); | 
