forked from pool/pulseaudio
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
|
From 3f44bf0afaba9c227f09a475f4886c14813afc2f Mon Sep 17 00:00:00 2001
|
||
|
From: Lennart Poettering <lennart@poettering.net>
|
||
|
Date: Sun, 21 Feb 2010 16:19:40 +0100
|
||
|
Subject: [PATCH] channelmap: Use "Subwoofer" as pretty name for LFE
|
||
|
|
||
|
The pretty name is suspposed to be understandable by non-technical
|
||
|
folks, and they are generally more used to the term "Subwoofer" than
|
||
|
"Low Frequency Emitter", so let's change the name here.
|
||
|
---
|
||
|
src/pulse/channelmap.c | 2 +-
|
||
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
||
|
|
||
|
diff --git a/src/pulse/channelmap.c b/src/pulse/channelmap.c
|
||
|
index 9b51626..83fdb43 100644
|
||
|
--- a/src/pulse/channelmap.c
|
||
|
+++ b/src/pulse/channelmap.c
|
||
|
@@ -112,7 +112,7 @@ const char *const pretty_table[PA_CHANNEL_POSITION_MAX] = {
|
||
|
[PA_CHANNEL_POSITION_REAR_LEFT] = N_("Rear Left"),
|
||
|
[PA_CHANNEL_POSITION_REAR_RIGHT] = N_("Rear Right"),
|
||
|
|
||
|
- [PA_CHANNEL_POSITION_LFE] = N_("Low Frequency Emmiter"),
|
||
|
+ [PA_CHANNEL_POSITION_LFE] = N_("Subwoofer"),
|
||
|
|
||
|
[PA_CHANNEL_POSITION_FRONT_LEFT_OF_CENTER] = N_("Front Left-of-center"),
|
||
|
[PA_CHANNEL_POSITION_FRONT_RIGHT_OF_CENTER] = N_("Front Right-of-center"),
|
||
|
--
|
||
|
1.6.0.2
|
||
|
|