https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4ba3c904a85ccdc2406af9...
commit 4ba3c904a85ccdc2406af94c048575df63b17dd2 Author: Eric Kohl eric.kohl@reactos.org AuthorDate: Fri Feb 22 23:33:47 2019 +0100 Commit: Eric Kohl eric.kohl@reactos.org CommitDate: Fri Feb 22 23:33:47 2019 +0100
[SNDVOL32] Advanced controls dialog: Remove the TBS_AUTOTICKS style from the trackbars and initialize them properly. --- base/applications/sndvol32/advanced.c | 47 ++++++++++++++++++++++++++------ base/applications/sndvol32/lang/bg-BG.rc | 4 +-- base/applications/sndvol32/lang/cs-CZ.rc | 4 +-- base/applications/sndvol32/lang/de-DE.rc | 4 +-- base/applications/sndvol32/lang/el-GR.rc | 4 +-- base/applications/sndvol32/lang/en-US.rc | 4 +-- base/applications/sndvol32/lang/es-ES.rc | 4 +-- base/applications/sndvol32/lang/fr-FR.rc | 4 +-- base/applications/sndvol32/lang/he-IL.rc | 4 +-- base/applications/sndvol32/lang/hu-HU.rc | 4 +-- base/applications/sndvol32/lang/id-ID.rc | 4 +-- base/applications/sndvol32/lang/it-IT.rc | 4 +-- base/applications/sndvol32/lang/ja-JP.rc | 4 +-- base/applications/sndvol32/lang/ko-KR.rc | 4 +-- base/applications/sndvol32/lang/lt-LT.rc | 4 +-- base/applications/sndvol32/lang/nl-NL.rc | 4 +-- base/applications/sndvol32/lang/no-NO.rc | 4 +-- base/applications/sndvol32/lang/pl-PL.rc | 4 +-- base/applications/sndvol32/lang/pt-BR.rc | 4 +-- base/applications/sndvol32/lang/ro-RO.rc | 4 +-- base/applications/sndvol32/lang/ru-RU.rc | 4 +-- base/applications/sndvol32/lang/sk-SK.rc | 4 +-- base/applications/sndvol32/lang/sq-AL.rc | 4 +-- base/applications/sndvol32/lang/sv-SE.rc | 4 +-- base/applications/sndvol32/lang/th-TH.rc | 4 +-- base/applications/sndvol32/lang/tr-TR.rc | 4 +-- base/applications/sndvol32/lang/uk-UA.rc | 4 +-- base/applications/sndvol32/lang/zh-CN.rc | 4 +-- base/applications/sndvol32/lang/zh-TW.rc | 4 +-- 29 files changed, 95 insertions(+), 64 deletions(-)
diff --git a/base/applications/sndvol32/advanced.c b/base/applications/sndvol32/advanced.c index 34d1d62093..598cacff8d 100644 --- a/base/applications/sndvol32/advanced.c +++ b/base/applications/sndvol32/advanced.c @@ -14,12 +14,13 @@ OnInitDialog( PADVANCED_CONTEXT Context) { WCHAR szRawTitle[256], szCookedTitle[256]; + MIXERCONTROLDETAILS_UNSIGNED UnsignedDetails; LPMIXERCONTROL Control = NULL; - UINT ControlCount = 0, Index, i; + UINT ControlCount = 0, Index; + DWORD i, dwStep, dwPosition;
/* Set the dialog title */ LoadStringW(hAppInstance, IDS_ADVANCED_CONTROLS, szRawTitle, ARRAYSIZE(szRawTitle)); -// swprintf(szCookedTitle, szRawTitle, Context->LineName); StringCchPrintfW(szCookedTitle, ARRAYSIZE(szCookedTitle), szRawTitle, Context->LineName); SetWindowTextW(hwndDlg, szCookedTitle);
@@ -27,6 +28,24 @@ OnInitDialog( for (i = IDC_ADV_BASS_LOW; i<= IDC_ADV_TREBLE_SLIDER; i++) EnableWindow(GetDlgItem(hwndDlg, i), FALSE);
+ /* Initialize the bass and treble trackbars */ + SendDlgItemMessageW(hwndDlg, IDC_ADV_BASS_SLIDER, TBM_SETRANGE, (WPARAM)TRUE, (LPARAM)MAKELONG(VOLUME_MIN, VOLUME_MAX)); + SendDlgItemMessageW(hwndDlg, IDC_ADV_TREBLE_SLIDER, TBM_SETRANGE, (WPARAM)TRUE, (LPARAM)MAKELONG(VOLUME_MIN, VOLUME_MAX)); + SendDlgItemMessageW(hwndDlg, IDC_ADV_BASS_SLIDER, TBM_SETPAGESIZE, 0, (LPARAM)VOLUME_PAGE_SIZE); + SendDlgItemMessageW(hwndDlg, IDC_ADV_TREBLE_SLIDER, TBM_SETPAGESIZE, 0, (LPARAM)VOLUME_PAGE_SIZE); + SendDlgItemMessageW(hwndDlg, IDC_ADV_BASS_SLIDER, TBM_SETPOS, (WPARAM)TRUE, (LPARAM)0); + SendDlgItemMessageW(hwndDlg, IDC_ADV_TREBLE_SLIDER, TBM_SETPOS, (WPARAM)TRUE, (LPARAM)0); + + /* Calculate and set ticks */ + dwStep = (VOLUME_MAX / (VOLUME_TICKS + 1)); + if (VOLUME_MAX % (VOLUME_TICKS + 1) != 0) + dwStep++; + for (i = dwStep; i < VOLUME_MAX; i += dwStep) + { + SendDlgItemMessageW(hwndDlg, IDC_ADV_BASS_SLIDER, TBM_SETTIC, 0, (LPARAM)i); + SendDlgItemMessageW(hwndDlg, IDC_ADV_TREBLE_SLIDER, TBM_SETTIC, 0, (LPARAM)i); + } + /* Hide the other controls */ for (i = IDC_ADV_OTHER_CONTROLS; i<= IDC_ADV_OTHER_CHECK2; i++) ShowWindow(GetDlgItem(hwndDlg, i), SW_HIDE); @@ -37,15 +56,27 @@ OnInitDialog( { if (Control[Index].dwControlType == MIXERCONTROL_CONTROLTYPE_BASS) { - for (i = IDC_ADV_BASS_LOW; i<= IDC_ADV_BASS_SLIDER; i++) - EnableWindow(GetDlgItem(hwndDlg, i), TRUE); - + if (SndMixerGetVolumeControlDetails(Context->Mixer, Control[Index].dwControlID, 1, sizeof(MIXERCONTROLDETAILS_UNSIGNED), (LPVOID)&UnsignedDetails) != -1) + { + for (i = IDC_ADV_BASS_LOW; i<= IDC_ADV_BASS_SLIDER; i++) + EnableWindow(GetDlgItem(hwndDlg, i), TRUE); + + dwStep = (Control[Index].Bounds.dwMaximum - Control[Index].Bounds.dwMinimum) / (VOLUME_MAX - VOLUME_MIN); + dwPosition = (UnsignedDetails.dwValue - Control[Index].Bounds.dwMinimum) / dwStep; + SendDlgItemMessageW(hwndDlg, IDC_ADV_BASS_SLIDER, TBM_SETPOS, (WPARAM)TRUE, dwPosition); + } } else if (Control[Index].dwControlType == MIXERCONTROL_CONTROLTYPE_TREBLE) { - for (i = IDC_ADV_TREBLE_LOW; i<= IDC_ADV_TREBLE_SLIDER; i++) - EnableWindow(GetDlgItem(hwndDlg, i), TRUE); - + if (SndMixerGetVolumeControlDetails(Context->Mixer, Control[Index].dwControlID, 1, sizeof(MIXERCONTROLDETAILS_UNSIGNED), (LPVOID)&UnsignedDetails) != -1) + { + for (i = IDC_ADV_TREBLE_LOW; i<= IDC_ADV_TREBLE_SLIDER; i++) + EnableWindow(GetDlgItem(hwndDlg, i), TRUE); + + dwStep = (Control[Index].Bounds.dwMaximum - Control[Index].Bounds.dwMinimum) / (VOLUME_MAX - VOLUME_MIN); + dwPosition = (UnsignedDetails.dwValue - Control[Index].Bounds.dwMinimum) / dwStep; + SendDlgItemMessageW(hwndDlg, IDC_ADV_TREBLE_SLIDER, TBM_SETPOS, (WPARAM)TRUE, dwPosition); + } } else if (Control[Index].dwControlType != MIXERCONTROL_CONTROLTYPE_VOLUME && Control[Index].dwControlType != MIXERCONTROL_CONTROLTYPE_MUTE) diff --git a/base/applications/sndvol32/lang/bg-BG.rc b/base/applications/sndvol32/lang/bg-BG.rc index 2dbe8d98ec..82ce984a1e 100644 --- a/base/applications/sndvol32/lang/bg-BG.rc +++ b/base/applications/sndvol32/lang/bg-BG.rc @@ -127,11 +127,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/cs-CZ.rc b/base/applications/sndvol32/lang/cs-CZ.rc index db619d7bde..1699735f3f 100644 --- a/base/applications/sndvol32/lang/cs-CZ.rc +++ b/base/applications/sndvol32/lang/cs-CZ.rc @@ -129,11 +129,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/de-DE.rc b/base/applications/sndvol32/lang/de-DE.rc index 8e03fd2f8e..9edb833e09 100644 --- a/base/applications/sndvol32/lang/de-DE.rc +++ b/base/applications/sndvol32/lang/de-DE.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Tiefen:", -1, 17, 62, 50, 8 LTEXT "Niedrig", IDC_ADV_BASS_LOW, 70, 62, 23, 8 LTEXT "Hoch", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Höhen:", -1, 17, 90, 50, 8 LTEXT "Niedrig", IDC_ADV_TREBLE_LOW, 70, 90, 23, 8 LTEXT "Hoch", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Andere Einstellungen", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "Diese Einstellungen verändern zusätzlich die Audioeigenschaften. Weitere Informationen finden Sie in der Hardwaredokumentation.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/el-GR.rc b/base/applications/sndvol32/lang/el-GR.rc index 31d62ec445..c41ff9a9e3 100644 --- a/base/applications/sndvol32/lang/el-GR.rc +++ b/base/applications/sndvol32/lang/el-GR.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/en-US.rc b/base/applications/sndvol32/lang/en-US.rc index 136684d476..2edad91f02 100644 --- a/base/applications/sndvol32/lang/en-US.rc +++ b/base/applications/sndvol32/lang/en-US.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/es-ES.rc b/base/applications/sndvol32/lang/es-ES.rc index fa9de20175..21af78d59e 100644 --- a/base/applications/sndvol32/lang/es-ES.rc +++ b/base/applications/sndvol32/lang/es-ES.rc @@ -126,11 +126,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/fr-FR.rc b/base/applications/sndvol32/lang/fr-FR.rc index afd60f5d8d..97e687331b 100644 --- a/base/applications/sndvol32/lang/fr-FR.rc +++ b/base/applications/sndvol32/lang/fr-FR.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/he-IL.rc b/base/applications/sndvol32/lang/he-IL.rc index 0d9509730e..581e3c9001 100644 --- a/base/applications/sndvol32/lang/he-IL.rc +++ b/base/applications/sndvol32/lang/he-IL.rc @@ -130,11 +130,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/hu-HU.rc b/base/applications/sndvol32/lang/hu-HU.rc index 6de5aebc7f..233955a01c 100644 --- a/base/applications/sndvol32/lang/hu-HU.rc +++ b/base/applications/sndvol32/lang/hu-HU.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/id-ID.rc b/base/applications/sndvol32/lang/id-ID.rc index 466e5b7201..223944a447 100644 --- a/base/applications/sndvol32/lang/id-ID.rc +++ b/base/applications/sndvol32/lang/id-ID.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/it-IT.rc b/base/applications/sndvol32/lang/it-IT.rc index 2db5896c26..469f854bb4 100644 --- a/base/applications/sndvol32/lang/it-IT.rc +++ b/base/applications/sndvol32/lang/it-IT.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/ja-JP.rc b/base/applications/sndvol32/lang/ja-JP.rc index cf0eb203b0..3c15fec875 100644 --- a/base/applications/sndvol32/lang/ja-JP.rc +++ b/base/applications/sndvol32/lang/ja-JP.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/ko-KR.rc b/base/applications/sndvol32/lang/ko-KR.rc index cc4a57b5ae..07c8e5a666 100644 --- a/base/applications/sndvol32/lang/ko-KR.rc +++ b/base/applications/sndvol32/lang/ko-KR.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/lt-LT.rc b/base/applications/sndvol32/lang/lt-LT.rc index 84eec680ef..28b3749811 100644 --- a/base/applications/sndvol32/lang/lt-LT.rc +++ b/base/applications/sndvol32/lang/lt-LT.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/nl-NL.rc b/base/applications/sndvol32/lang/nl-NL.rc index d355838904..f6ef4fb1d9 100644 --- a/base/applications/sndvol32/lang/nl-NL.rc +++ b/base/applications/sndvol32/lang/nl-NL.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/no-NO.rc b/base/applications/sndvol32/lang/no-NO.rc index 27f53cede7..a60735c06a 100644 --- a/base/applications/sndvol32/lang/no-NO.rc +++ b/base/applications/sndvol32/lang/no-NO.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/pl-PL.rc b/base/applications/sndvol32/lang/pl-PL.rc index 7a668740aa..09bc2dedb2 100644 --- a/base/applications/sndvol32/lang/pl-PL.rc +++ b/base/applications/sndvol32/lang/pl-PL.rc @@ -131,11 +131,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/pt-BR.rc b/base/applications/sndvol32/lang/pt-BR.rc index 08ca3743a3..e4f9d42b52 100644 --- a/base/applications/sndvol32/lang/pt-BR.rc +++ b/base/applications/sndvol32/lang/pt-BR.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/ro-RO.rc b/base/applications/sndvol32/lang/ro-RO.rc index d0973e5dce..e672018bc3 100644 --- a/base/applications/sndvol32/lang/ro-RO.rc +++ b/base/applications/sndvol32/lang/ro-RO.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/ru-RU.rc b/base/applications/sndvol32/lang/ru-RU.rc index c7f05d2d85..73b593838d 100644 --- a/base/applications/sndvol32/lang/ru-RU.rc +++ b/base/applications/sndvol32/lang/ru-RU.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Низкие частоты:", -1, 17, 62, 50, 16 LTEXT "Слабее", IDC_ADV_BASS_LOW, 73, 62, 24, 8 LTEXT "Сильнее", IDC_ADV_BASS_HIGH, 180, 62, 28, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Высокие частоты:", -1, 17, 90, 50, 16 LTEXT "Слабее", IDC_ADV_TREBLE_LOW, 73, 90, 24, 8 LTEXT "Сильнее", IDC_ADV_TREBLE_HIGH, 180, 90, 28, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Другие настройки", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "Эти настройки управляют другими возможностями. Подробнее смотрите в документации вашего оборудования.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/sk-SK.rc b/base/applications/sndvol32/lang/sk-SK.rc index 643de2db7f..fc572889c7 100644 --- a/base/applications/sndvol32/lang/sk-SK.rc +++ b/base/applications/sndvol32/lang/sk-SK.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/sq-AL.rc b/base/applications/sndvol32/lang/sq-AL.rc index f0fbba6994..b3431285e1 100644 --- a/base/applications/sndvol32/lang/sq-AL.rc +++ b/base/applications/sndvol32/lang/sq-AL.rc @@ -127,11 +127,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/sv-SE.rc b/base/applications/sndvol32/lang/sv-SE.rc index c91e57a47d..85e263cd56 100644 --- a/base/applications/sndvol32/lang/sv-SE.rc +++ b/base/applications/sndvol32/lang/sv-SE.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/th-TH.rc b/base/applications/sndvol32/lang/th-TH.rc index 3aab609547..91250a4ea5 100644 --- a/base/applications/sndvol32/lang/th-TH.rc +++ b/base/applications/sndvol32/lang/th-TH.rc @@ -131,11 +131,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/tr-TR.rc b/base/applications/sndvol32/lang/tr-TR.rc index a1ffaa4a88..fad7712293 100644 --- a/base/applications/sndvol32/lang/tr-TR.rc +++ b/base/applications/sndvol32/lang/tr-TR.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/uk-UA.rc b/base/applications/sndvol32/lang/uk-UA.rc index b887b77e28..1641abee0b 100644 --- a/base/applications/sndvol32/lang/uk-UA.rc +++ b/base/applications/sndvol32/lang/uk-UA.rc @@ -131,11 +131,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/zh-CN.rc b/base/applications/sndvol32/lang/zh-CN.rc index da632544fa..2e7b539672 100644 --- a/base/applications/sndvol32/lang/zh-CN.rc +++ b/base/applications/sndvol32/lang/zh-CN.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/zh-TW.rc b/base/applications/sndvol32/lang/zh-TW.rc index 5f0e3b1d7a..7de3a8eba2 100644 --- a/base/applications/sndvol32/lang/zh-TW.rc +++ b/base/applications/sndvol32/lang/zh-TW.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14