summaryrefslogtreecommitdiff
path: root/softhddevice.cpp
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2013-07-26 16:55:33 +0200
committerJohns <johns98@gmx.net>2013-07-26 16:55:33 +0200
commit171a3f4dc9f54c3e9cc36ef5214b50e8776bade5 (patch)
treeb75f9ab96163d078a471c33e1dd8e18918c12edf /softhddevice.cpp
parent93357fb1cd6095988721052185d70161d1fc2e79 (diff)
downloadvdr-plugin-softhddevice-171a3f4dc9f54c3e9cc36ef5214b50e8776bade5.tar.gz
vdr-plugin-softhddevice-171a3f4dc9f54c3e9cc36ef5214b50e8776bade5.tar.bz2
Fix bug #1410: wrong spelled AC-3 and E-AC-3.
Diffstat (limited to 'softhddevice.cpp')
-rw-r--r--softhddevice.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/softhddevice.cpp b/softhddevice.cpp
index 395f294..c2839ce 100644
--- a/softhddevice.cpp
+++ b/softhddevice.cpp
@@ -52,7 +52,7 @@ extern "C"
/// vdr-plugin version number.
/// Makefile extracts the version number for generating the file name
/// for the distribution archive.
-static const char *const VERSION = "0.6.0"
+static const char *const VERSION = "0.6.1rc1"
#ifdef GIT_REV
"-GIT" GIT_REV
#endif
@@ -854,9 +854,9 @@ void cMenuSetupSoft::Create(void)
&AudioPassthroughPCM, trVDR("no"), trVDR("yes")));
Add(new cMenuEditBoolItem(tr("\040\040AC-3 pass-through"),
&AudioPassthroughAC3, trVDR("no"), trVDR("yes")));
- Add(new cMenuEditBoolItem(tr("\040\040EAC-3 pass-through"),
+ Add(new cMenuEditBoolItem(tr("\040\040E-AC-3 pass-through"),
&AudioPassthroughEAC3, trVDR("no"), trVDR("yes")));
- Add(new cMenuEditBoolItem(tr("Enable (E)AC-3 (decoder) downmix"),
+ Add(new cMenuEditBoolItem(tr("Enable (E-)AC-3 (decoder) downmix"),
&AudioDownmix, trVDR("no"), trVDR("yes")));
Add(new cMenuEditBoolItem(tr("Volume control"), &AudioSoftvol,
tr("Hardware"), tr("Software")));