diff options
author | Johns <johns98@gmx.net> | 2013-07-26 16:55:33 +0200 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2013-07-26 16:55:33 +0200 |
commit | 171a3f4dc9f54c3e9cc36ef5214b50e8776bade5 (patch) | |
tree | b75f9ab96163d078a471c33e1dd8e18918c12edf /softhddevice.cpp | |
parent | 93357fb1cd6095988721052185d70161d1fc2e79 (diff) | |
download | vdr-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.cpp | 6 |
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"))); |