https://git.reactos.org/?p=reactos.git;a=commitdiff;h=fbde4b00140e1be5d29423f837043efd68623500

commit fbde4b00140e1be5d29423f837043efd68623500
Author:     Mark Jansen <[email protected]>
AuthorDate: Mon Jan 29 17:57:19 2018 +0100
Commit:     Mark Jansen <[email protected]>
CommitDate: Mon Jan 29 22:05:17 2018 +0100

    [ACPPAGE] Visualize custom layers
---
 dll/shellext/acppage/CLayerUIPropPage.cpp | 11 +++++++++--
 dll/shellext/acppage/lang/bg-BG.rc        |  1 +
 dll/shellext/acppage/lang/cs-CZ.rc        |  1 +
 dll/shellext/acppage/lang/de-DE.rc        |  1 +
 dll/shellext/acppage/lang/en-US.rc        |  1 +
 dll/shellext/acppage/lang/es-ES.rc        |  1 +
 dll/shellext/acppage/lang/eu-ES.rc        |  1 +
 dll/shellext/acppage/lang/fr-FR.rc        |  1 +
 dll/shellext/acppage/lang/he-IL.rc        |  1 +
 dll/shellext/acppage/lang/hu-HU.rc        |  1 +
 dll/shellext/acppage/lang/id-ID.rc        |  1 +
 dll/shellext/acppage/lang/it-IT.rc        |  1 +
 dll/shellext/acppage/lang/nl-NL.rc        |  1 +
 dll/shellext/acppage/lang/no-NO.rc        |  1 +
 dll/shellext/acppage/lang/pl-PL.rc        |  1 +
 dll/shellext/acppage/lang/ro-RO.rc        |  1 +
 dll/shellext/acppage/lang/ru-RU.rc        |  1 +
 dll/shellext/acppage/lang/sk-SK.rc        |  1 +
 dll/shellext/acppage/lang/sq-AL.rc        |  1 +
 dll/shellext/acppage/lang/sv-SE.rc        |  1 +
 dll/shellext/acppage/lang/tr-TR.rc        |  1 +
 dll/shellext/acppage/lang/uk-UA.rc        |  1 +
 dll/shellext/acppage/lang/zh-CN.rc        |  1 +
 dll/shellext/acppage/lang/zh-TW.rc        |  1 +
 dll/shellext/acppage/resource.h           |  1 +
 25 files changed, 33 insertions(+), 2 deletions(-)

diff --git a/dll/shellext/acppage/CLayerUIPropPage.cpp 
b/dll/shellext/acppage/CLayerUIPropPage.cpp
index bbd4c3d837..812854e7f5 100644
--- a/dll/shellext/acppage/CLayerUIPropPage.cpp
+++ b/dll/shellext/acppage/CLayerUIPropPage.cpp
@@ -269,8 +269,6 @@ int CLayerUIPropPage::OnSetActive()
 
     m_CustomLayers = m_RegistryCustomLayers;
 
-    /* TODO: visualize 'custom' layers! */
-
     UpdateControls();
 
     return 0;
@@ -388,6 +386,15 @@ void CLayerUIPropPage::UpdateControls()
         ::ShowWindow(GetDlgItem(g_Layers[n].Id), SW_SHOW);
     }
 
+    CStringW customLayers;
+    for (int j = 0; j < m_CustomLayers.GetSize(); ++j)
+    {
+        if (j > 0)
+            customLayers += L", ";
+        customLayers += m_CustomLayers[j];
+    }
+    SetDlgItemTextW(IDC_ENABLED_LAYERS, customLayers);
+
     SetModified(HasChanges());
 }
 
diff --git a/dll/shellext/acppage/lang/bg-BG.rc 
b/dll/shellext/acppage/lang/bg-BG.rc
index ec7422c608..e0a98de9ae 100644
--- a/dll/shellext/acppage/lang/bg-BG.rc
+++ b/dll/shellext/acppage/lang/bg-BG.rc
@@ -14,6 +14,7 @@ BEGIN
     CHECKBOX "Разделителна способност 640х480", IDC_CHKRUNIN640480RES, 18, 
129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Изключване на разцветките", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 
188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "Про&мяна на режимите за съвместимост...", 
IDC_EDITCOMPATIBILITYMODES, 60, 167, 157, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Learn more about <A>program compatibility</A>.", IDC_INFOLINK, 
"SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/cs-CZ.rc 
b/dll/shellext/acppage/lang/cs-CZ.rc
index b0dfa91bfc..b2f5e3710e 100644
--- a/dll/shellext/acppage/lang/cs-CZ.rc
+++ b/dll/shellext/acppage/lang/cs-CZ.rc
@@ -19,6 +19,7 @@ BEGIN
     CHECKBOX "Spustit v rozlišení 640x480", IDC_CHKRUNIN640480RES, 18, 129, 
188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Vypnout vizuální motivy", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 
188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "Up&ravit režimy kompatibility...", IDC_EDITCOMPATIBILITYMODES, 
117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Další informace o <A>kompatibilitě programů</A>.", IDC_INFOLINK, 
"SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/de-DE.rc 
b/dll/shellext/acppage/lang/de-DE.rc
index 2da78763e2..572fd30697 100644
--- a/dll/shellext/acppage/lang/de-DE.rc
+++ b/dll/shellext/acppage/lang/de-DE.rc
@@ -14,6 +14,7 @@ BEGIN
     CHECKBOX "In Bildschirmauflösung 640 x 480 ausführen", 
IDC_CHKRUNIN640480RES, 18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Visuelle Designs deaktivieren", IDC_CHKDISABLEVISUALTHEMES, 18, 
144, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "Kompatibilitätsmodus ändern", IDC_EDITCOMPATIBILITYMODES, 117, 
167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Weitere Informationen über <A>Programmkompatibilität</A>.", 
IDC_INFOLINK, "SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/en-US.rc 
b/dll/shellext/acppage/lang/en-US.rc
index 2febc3f856..c3f787060e 100644
--- a/dll/shellext/acppage/lang/en-US.rc
+++ b/dll/shellext/acppage/lang/en-US.rc
@@ -14,6 +14,7 @@ BEGIN
     CHECKBOX "Run in 640x480 screen resolution", IDC_CHKRUNIN640480RES, 18, 
129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Disable visual themes", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 
188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "E&dit compatibility modes...", IDC_EDITCOMPATIBILITYMODES, 
117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Learn more about <A>program compatibility</A>.", IDC_INFOLINK, 
"SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/es-ES.rc 
b/dll/shellext/acppage/lang/es-ES.rc
index 6e1ce690ef..69e60c3aad 100644
--- a/dll/shellext/acppage/lang/es-ES.rc
+++ b/dll/shellext/acppage/lang/es-ES.rc
@@ -16,6 +16,7 @@ BEGIN
     CHECKBOX "Ejecutar con resolución de pantalla de 640x480", 
IDC_CHKRUNIN640480RES, 18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Deshabilitar temas visuales", IDC_CHKDISABLEVISUALTHEMES, 18, 
144, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "E&ditar modos de compatibilidad...", 
IDC_EDITCOMPATIBILITYMODES, 117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Saber más acerca de <A>compatibilidad de programas</A>.", 
IDC_INFOLINK, "SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/eu-ES.rc 
b/dll/shellext/acppage/lang/eu-ES.rc
index c43505acd8..85b318f7f2 100644
--- a/dll/shellext/acppage/lang/eu-ES.rc
+++ b/dll/shellext/acppage/lang/eu-ES.rc
@@ -14,6 +14,7 @@ BEGIN
     CHECKBOX "640x480 pantaila erresoluzioarekin exekutatu", 
IDC_CHKRUNIN640480RES, 18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Ezgaitu gai bisualak", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 188, 
10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "Konpatibilitate moduan editatu...", 
IDC_EDITCOMPATIBILITYMODES, 117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "<A> Programen konpatibilitateari buruz gehiago</A>.", 
IDC_INFOLINK, "SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/fr-FR.rc 
b/dll/shellext/acppage/lang/fr-FR.rc
index 6aa27ee7f4..bab739139f 100644
--- a/dll/shellext/acppage/lang/fr-FR.rc
+++ b/dll/shellext/acppage/lang/fr-FR.rc
@@ -14,6 +14,7 @@ BEGIN
     CHECKBOX "Lancer en résolution d'écran 640x480 ", IDC_CHKRUNIN640480RES, 
18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Désactiver les thèmes visuels", IDC_CHKDISABLEVISUALTHEMES, 18, 
144, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "É&diter les Modes de compatibilité", 
IDC_EDITCOMPATIBILITYMODES, 117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "En savoir plus sur <A>la compatibilité des programmes</A>.", 
IDC_INFOLINK, "SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/he-IL.rc 
b/dll/shellext/acppage/lang/he-IL.rc
index 1853d1606d..a7b9deb6e7 100644
--- a/dll/shellext/acppage/lang/he-IL.rc
+++ b/dll/shellext/acppage/lang/he-IL.rc
@@ -15,6 +15,7 @@ BEGIN
     CHECKBOX "הפעל ברזולוציית מסך 640x480", IDC_CHKRUNIN640480RES, 18, 129, 
188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "בטל ערכות נושא חזותיות", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 
188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "ערוך מצבי תאימות...", IDC_EDITCOMPATIBILITYMODES, 117, 167, 
100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "למד עוד על <A>תאימות תכניות</A>.", IDC_INFOLINK, "SysLink", 
WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/hu-HU.rc 
b/dll/shellext/acppage/lang/hu-HU.rc
index 1a18c6022f..4696bd8fb2 100644
--- a/dll/shellext/acppage/lang/hu-HU.rc
+++ b/dll/shellext/acppage/lang/hu-HU.rc
@@ -16,6 +16,7 @@ BEGIN
     CHECKBOX "640x480-as felbontás", IDC_CHKRUNIN640480RES, 18, 129, 188, 10, 
BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Témák kikapcsolása", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 188, 
10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "Sémák szerkesztése...", IDC_EDITCOMPATIBILITYMODES, 117, 167, 
100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Learn more about <A>program compatibility</A>.", IDC_INFOLINK, 
"SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/id-ID.rc 
b/dll/shellext/acppage/lang/id-ID.rc
index 822cdaee98..52a17eb56d 100644
--- a/dll/shellext/acppage/lang/id-ID.rc
+++ b/dll/shellext/acppage/lang/id-ID.rc
@@ -14,6 +14,7 @@ BEGIN
     CHECKBOX "Jalankan dalam resolusi layar 640x480", IDC_CHKRUNIN640480RES, 
18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Matikan tema visual", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 188, 
10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "E&dit mode kompatibilitas...", IDC_EDITCOMPATIBILITYMODES, 
117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Learn more about <A>program compatibility</A>.", IDC_INFOLINK, 
"SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/it-IT.rc 
b/dll/shellext/acppage/lang/it-IT.rc
index e3dcd28852..ffa895b356 100644
--- a/dll/shellext/acppage/lang/it-IT.rc
+++ b/dll/shellext/acppage/lang/it-IT.rc
@@ -16,6 +16,7 @@ BEGIN
     CHECKBOX "Esegui con schermo a risoluzione 640x480", 
IDC_CHKRUNIN640480RES, 18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Disabilita gli schemi di visualizzazione", 
IDC_CHKDISABLEVISUALTHEMES, 18, 144, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "Modifica la modalità compatibile...", 
IDC_EDITCOMPATIBILITYMODES, 117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Ulteriori informazioni sulla <A>compatibilità dei 
programmi</A>.", IDC_INFOLINK, "SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 
7, 207, 210, 10, WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/nl-NL.rc 
b/dll/shellext/acppage/lang/nl-NL.rc
index 301794f6ab..00c07f807a 100644
--- a/dll/shellext/acppage/lang/nl-NL.rc
+++ b/dll/shellext/acppage/lang/nl-NL.rc
@@ -14,6 +14,7 @@ BEGIN
     CHECKBOX "Run in 640x480 screen resolution", IDC_CHKRUNIN640480RES, 18, 
129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Disable visual themes", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 
188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "E&dit compatibility modes...", IDC_EDITCOMPATIBILITYMODES, 
117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Learn more about <A>program compatibility</A>.", IDC_INFOLINK, 
"SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/no-NO.rc 
b/dll/shellext/acppage/lang/no-NO.rc
index 47eca7d4f4..61e75c9eb8 100644
--- a/dll/shellext/acppage/lang/no-NO.rc
+++ b/dll/shellext/acppage/lang/no-NO.rc
@@ -14,6 +14,7 @@ BEGIN
     CHECKBOX "Kjør med skjermoppløsning på 640x480", IDC_CHKRUNIN640480RES, 
18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Deaktiver visuelle temaer", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 
188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "E&dit compatibility modes...", IDC_EDITCOMPATIBILITYMODES, 
117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Lær mere om <A>program kompaktibilitet</A>.", IDC_INFOLINK, 
"SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/pl-PL.rc 
b/dll/shellext/acppage/lang/pl-PL.rc
index d4fcca9692..60a6201087 100644
--- a/dll/shellext/acppage/lang/pl-PL.rc
+++ b/dll/shellext/acppage/lang/pl-PL.rc
@@ -16,6 +16,7 @@ BEGIN
     CHECKBOX "Uruchom w rozdzielczości ekranu 640x480", IDC_CHKRUNIN640480RES, 
18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Wyłącz kompozycje wizualne", IDC_CHKDISABLEVISUALTHEMES, 18, 
144, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "E&dytuj tryby zgodności...", IDC_EDITCOMPATIBILITYMODES, 117, 
167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Dowiedz się więcej o <A>zgodności programów</A>.", IDC_INFOLINK, 
"SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/ro-RO.rc 
b/dll/shellext/acppage/lang/ro-RO.rc
index 7c972eda00..7312676c27 100644
--- a/dll/shellext/acppage/lang/ro-RO.rc
+++ b/dll/shellext/acppage/lang/ro-RO.rc
@@ -16,6 +16,7 @@ BEGIN
     CHECKBOX "Lansează în rezoluție de 640x480 pixeli", IDC_CHKRUNIN640480RES, 
18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Dezactivează temele vizuale", IDC_CHKDISABLEVISUALTHEMES, 18, 
144, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "E&ditează modurile de compatibilitate…", 
IDC_EDITCOMPATIBILITYMODES, 117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Aflați mai multe despre <A>compatibilitate de program</A>.", 
IDC_INFOLINK, "SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/ru-RU.rc 
b/dll/shellext/acppage/lang/ru-RU.rc
index 7b69f2e263..bc4d071748 100644
--- a/dll/shellext/acppage/lang/ru-RU.rc
+++ b/dll/shellext/acppage/lang/ru-RU.rc
@@ -16,6 +16,7 @@ BEGIN
     CHECKBOX "Использовать разрешение экрана 640x480", IDC_CHKRUNIN640480RES, 
18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Отключить визуальное оформление", IDC_CHKDISABLEVISUALTHEMES, 
18, 144, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "Настроить режимы совместимости...", 
IDC_EDITCOMPATIBILITYMODES, 117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Узнать больше о <A>совместимости программ</A>.", IDC_INFOLINK, 
"SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/sk-SK.rc 
b/dll/shellext/acppage/lang/sk-SK.rc
index 3822829720..7046e68d6b 100644
--- a/dll/shellext/acppage/lang/sk-SK.rc
+++ b/dll/shellext/acppage/lang/sk-SK.rc
@@ -21,6 +21,7 @@ BEGIN
     CHECKBOX "Spustiť s rozlíšením obrazovky 640x480", IDC_CHKRUNIN640480RES, 
18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Vypnúť vizuálne motívy", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 
188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "&Upraviť režimy kompatibility...", IDC_EDITCOMPATIBILITYMODES, 
117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Ďalšie informácie o <A>kompatibilite programov</A>.", 
IDC_INFOLINK, "SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/sq-AL.rc 
b/dll/shellext/acppage/lang/sq-AL.rc
index 2caa6bf8db..ef006378da 100644
--- a/dll/shellext/acppage/lang/sq-AL.rc
+++ b/dll/shellext/acppage/lang/sq-AL.rc
@@ -18,6 +18,7 @@ BEGIN
     CHECKBOX "Ekzekuto ne 640x480 screenresolution", IDC_CHKRUNIN640480RES, 
18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP 
     CHECKBOX "Çaktivizo themat vizuale", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 
188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "Modifiko mjetin e pajtueshmerise...", 
IDC_EDITCOMPATIBILITYMODES, 117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Learn more about <A>program compatibility</A>.", IDC_INFOLINK, 
"SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/sv-SE.rc 
b/dll/shellext/acppage/lang/sv-SE.rc
index 5cdf449682..8769da7b92 100644
--- a/dll/shellext/acppage/lang/sv-SE.rc
+++ b/dll/shellext/acppage/lang/sv-SE.rc
@@ -16,6 +16,7 @@ BEGIN
     CHECKBOX "Kör i skärmupplösningen 640 x 480", IDC_CHKRUNIN640480RES, 18, 
129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Inaktivera teman", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 188, 10, 
BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "&Redigera kompatibilitetslägen...", 
IDC_EDITCOMPATIBILITYMODES, 117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Lär dig mer om <A>program-kompatibilitet</A>.", IDC_INFOLINK, 
"SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/tr-TR.rc 
b/dll/shellext/acppage/lang/tr-TR.rc
index a0c8d11463..c05c626a20 100644
--- a/dll/shellext/acppage/lang/tr-TR.rc
+++ b/dll/shellext/acppage/lang/tr-TR.rc
@@ -16,6 +16,7 @@ BEGIN
     CHECKBOX "640x480 Ekran Çözünürlüğünde Çalıştır", IDC_CHKRUNIN640480RES, 
18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Görsel Temaları Edilginleştir", IDC_CHKDISABLEVISUALTHEMES, 18, 
144, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "&Uyumluluk Kiplerini Düzenle...", IDC_EDITCOMPATIBILITYMODES, 
117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "<A>İzlence uyumluluğu</A> konusunda daha çok öğren.", 
IDC_INFOLINK, "SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/uk-UA.rc 
b/dll/shellext/acppage/lang/uk-UA.rc
index 155f272f05..7e193633c8 100644
--- a/dll/shellext/acppage/lang/uk-UA.rc
+++ b/dll/shellext/acppage/lang/uk-UA.rc
@@ -22,6 +22,7 @@ BEGIN
     CHECKBOX "Роздільна здатність 640x480", IDC_CHKRUNIN640480RES, 18, 129, 
188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "Вимикати візуальні теми", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 
188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "&Режими сумісності...", IDC_EDITCOMPATIBILITYMODES, 117, 167, 
100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Learn more about <A>program compatibility</A>.", IDC_INFOLINK, 
"SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/zh-CN.rc 
b/dll/shellext/acppage/lang/zh-CN.rc
index 6f50d09ec6..9cc658cdf9 100644
--- a/dll/shellext/acppage/lang/zh-CN.rc
+++ b/dll/shellext/acppage/lang/zh-CN.rc
@@ -16,6 +16,7 @@ BEGIN
     CHECKBOX "在 640 x 480 屏幕分辨率运行", IDC_CHKRUNIN640480RES, 18, 129, 188, 10, 
BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "禁用视觉主题", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 188, 10, 
BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "编辑兼容模式...(&D)", IDC_EDITCOMPATIBILITYMODES, 117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "了解更多有关<A>程序兼容性</A>的信息。", IDC_INFOLINK, "SysLink", WS_CHILD | 
WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/lang/zh-TW.rc 
b/dll/shellext/acppage/lang/zh-TW.rc
index 5991be9611..ecf27c19af 100644
--- a/dll/shellext/acppage/lang/zh-TW.rc
+++ b/dll/shellext/acppage/lang/zh-TW.rc
@@ -16,6 +16,7 @@ BEGIN
     CHECKBOX "在 640 x 480 螢幕解析度運行", IDC_CHKRUNIN640480RES, 18, 129, 188, 10, 
BS_AUTOCHECKBOX | WS_TABSTOP
     CHECKBOX "禁用視覺主題", IDC_CHKDISABLEVISUALTHEMES, 18, 144, 188, 10, 
BS_AUTOCHECKBOX | WS_TABSTOP
     PUSHBUTTON "編輯相容模式...(&D)", IDC_EDITCOMPATIBILITYMODES, 117, 167, 100, 15
+    LTEXT "",IDC_ENABLED_LAYERS,7,185,210,21
     CONTROL "Learn more about <A>program compatibility</A>.", IDC_INFOLINK, 
"SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, 
WS_EX_NOPARENTNOTIFY
 END
 
diff --git a/dll/shellext/acppage/resource.h b/dll/shellext/acppage/resource.h
index 9566a2020c..b11f2e3f16 100644
--- a/dll/shellext/acppage/resource.h
+++ b/dll/shellext/acppage/resource.h
@@ -16,6 +16,7 @@
 #define IDC_ADD                    1010
 #define IDC_EDIT                   1011
 #define IDC_DELETE                 1012
+#define IDC_ENABLED_LAYERS         1013
 
 #define IDS_DESCRIPTION 101
 

Reply via email to