[ACPPAGE]: Improve the compatibility tab:
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Thu, 31 Aug 2017 20:38:38 +0000 (20:38 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Thu, 31 Aug 2017 20:38:38 +0000 (20:38 +0000)
- Use the tab title from the corresponding dialog resource caption string.
- Fix some translations, and complete the french one.
- Use DialogBoxParamW and MAKEINTRESOURCEW (with W).

svn path=/trunk/; revision=75725

25 files changed:
reactos/dll/shellext/acppage/CLayerUIPropPage.cpp
reactos/dll/shellext/acppage/lang/bg-BG.rc
reactos/dll/shellext/acppage/lang/cs-CZ.rc
reactos/dll/shellext/acppage/lang/de-DE.rc
reactos/dll/shellext/acppage/lang/en-US.rc
reactos/dll/shellext/acppage/lang/es-ES.rc
reactos/dll/shellext/acppage/lang/eu-ES.rc
reactos/dll/shellext/acppage/lang/fr-FR.rc
reactos/dll/shellext/acppage/lang/he-IL.rc
reactos/dll/shellext/acppage/lang/hu-HU.rc
reactos/dll/shellext/acppage/lang/id-ID.rc
reactos/dll/shellext/acppage/lang/it-IT.rc
reactos/dll/shellext/acppage/lang/nl-NL.rc
reactos/dll/shellext/acppage/lang/no-NO.rc
reactos/dll/shellext/acppage/lang/pl-PL.rc
reactos/dll/shellext/acppage/lang/ro-RO.rc
reactos/dll/shellext/acppage/lang/ru-RU.rc
reactos/dll/shellext/acppage/lang/sk-SK.rc
reactos/dll/shellext/acppage/lang/sq-AL.rc
reactos/dll/shellext/acppage/lang/sv-SE.rc
reactos/dll/shellext/acppage/lang/tr-TR.rc
reactos/dll/shellext/acppage/lang/uk-UA.rc
reactos/dll/shellext/acppage/lang/zh-CN.rc
reactos/dll/shellext/acppage/lang/zh-TW.rc
reactos/dll/shellext/acppage/resource.h

index 66a0123..0290927 100644 (file)
@@ -393,7 +393,7 @@ INT_PTR CLayerUIPropPage::OnCommand(HWND hWnd, WORD id)
         UpdateControls(hWnd);
         break;
     case IDC_EDITCOMPATIBILITYMODES:
-        if (DialogBoxParam(g_hModule, MAKEINTRESOURCE(IDD_EDITCOMPATIBILITYMODES), hWnd, EditModesProc, (LPARAM)this) == IDOK)
+        if (DialogBoxParamW(g_hModule, MAKEINTRESOURCEW(IDD_EDITCOMPATIBILITYMODES), hWnd, EditModesProc, (LPARAM)this) == IDOK)
         {
             UpdateControls(hWnd);
         }
@@ -572,7 +572,7 @@ INT_PTR CALLBACK CLayerUIPropPage::EditModesProc(HWND hWnd, UINT uMsg, WPARAM wP
             if (ComboHasData(hWnd))
             {
                 CComBSTR question, title;
-                title.LoadString(g_hModule, IDS_TABTITLE);
+                title.LoadString(g_hModule, IDS_COMPAT_TITLE);
                 question.LoadString(g_hModule, IDS_YOU_DID_NOT_ADD);
                 int result = MessageBoxW(hWnd, question, title, MB_YESNOCANCEL | MB_ICONQUESTION);
                 switch (result)
@@ -694,10 +694,9 @@ STDMETHODIMP CLayerUIPropPage::AddPages(LPFNADDPROPSHEETPAGE pfnAddPage, LPARAM
 {
     PROPSHEETPAGEW psp = { 0 };
     psp.dwSize = sizeof(psp);
-    psp.dwFlags = PSP_USEREFPARENT | PSP_USETITLE;
+    psp.dwFlags = PSP_USEREFPARENT;
     psp.hInstance = g_hModule;
-    psp.pszTemplate = MAKEINTRESOURCE(IDD_ACPPAGESHEET);
-    psp.pszTitle = MAKEINTRESOURCE(IDS_TABTITLE);
+    psp.pszTemplate = MAKEINTRESOURCEW(IDD_ACPPAGESHEET);
     psp.pfnDlgProc = PropDlgProc;
     psp.lParam = (LPARAM)this;
     psp.pcRefParent = (PUINT)&g_ModuleRefCnt;
index abd7a8f..ec7422c 100644 (file)
@@ -33,7 +33,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Съвместимост"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index 14cc9f3..b0dfa91 100644 (file)
@@ -38,7 +38,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Kompatibilita"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index ae25d0b..2da7876 100644 (file)
@@ -33,7 +33,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Kompatibilität"
+    IDS_COMPAT_TITLE "Kompatibilität"
     IDS_FAILED_NETWORK "Kompatibilitätsmodi können auf diesem Programm nicht angewendet werden, da es sich auf einem Netzlaufwerk befindet."
     IDS_FAILED_PROTECTED "Kompatibilitätsmodi können auf diesem Programm nicht angewendet werden, da es Teil von ReactOS ist."
     IDS_YOU_DID_NOT_ADD "Sie haben den Modus nicht hinzugefügt, möchten Sie ihn jetzt hinzufügen?"
index 0f5f42f..2febc3f 100644 (file)
@@ -11,7 +11,7 @@ BEGIN
     COMBOBOX IDC_COMPATIBILITYMODE, 18, 70, 188, 85, CBS_HASSTRINGS | CBS_DROPDOWNLIST | WS_TABSTOP | WS_DISABLED
     GROUPBOX "Display settings", -1, 7, 99, 210, 61, BS_GROUPBOX
     CHECKBOX "Run in 256 colors", IDC_CHKRUNIN256COLORS, 18, 114, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
-    CHECKBOX "Run in 640x480 screenresolution", IDC_CHKRUNIN640480RES, 18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
+    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
     CONTROL "Learn more about <A>program compatibility</A>.", IDC_INFOLINK, "SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, WS_EX_NOPARENTNOTIFY
@@ -33,7 +33,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Compatibility"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index 55a0e54..6e1ce69 100644 (file)
@@ -35,7 +35,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Compatibilidad"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index cbcafbf..c43505a 100644 (file)
@@ -33,7 +33,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Konpatibilitatea"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index 299e56e..6aa27ee 100644 (file)
@@ -5,16 +5,16 @@ STYLE DS_SHELLFONT | WS_CHILD | WS_DISABLED | WS_CAPTION
 CAPTION "Compatibilité"
 FONT 8, "MS Shell Dlg", 0, 0, 0x0
 BEGIN
-    LTEXT "Si vous avez des difficultés à lancer ce programme sous ReactOS, sélectionner le système d'exploitation que ReactOS montrera à l'application.\nPlease note that this is a work in progress.", -1, 7, 7, 210, 31
+    LTEXT "Si vous avez des difficultés à lancer ce programme sous ReactOS, sélectionnez le système d'exploitation que ReactOS montrera à l'application.\nCette fonctionnalité est en cours de développement.", -1, 7, 7, 210, 31
     GROUPBOX "Mode de compatibilité", IDC_COMPATGROUP, 7, 41, 210, 49
-    CHECKBOX "Lancer ce programme en mode de compatibilité pour:", IDC_CHKRUNCOMPATIBILITY, 18, 57, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
+    CHECKBOX "Lancer ce programme en mode de compatibilité pour :", IDC_CHKRUNCOMPATIBILITY, 18, 57, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
     COMBOBOX IDC_COMPATIBILITYMODE, 18, 70, 188, 85, CBS_HASSTRINGS | CBS_DROPDOWNLIST | WS_TABSTOP | WS_DISABLED
     GROUPBOX "Réglages de l'écran", -1, 7, 99, 210, 61, BS_GROUPBOX
     CHECKBOX "Lancer en 256 colors", IDC_CHKRUNIN256COLORS, 18, 114, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
-    CHECKBOX "Lancer en resolution 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 "E&diter les Modes de compatibilité", IDC_EDITCOMPATIBILITYMODES, 117, 167, 100, 15
-    CONTROL "Learn more about <A>program compatibility</A>.", IDC_INFOLINK, "SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, WS_EX_NOPARENTNOTIFY
+    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
+    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
 
 IDD_EDITCOMPATIBILITYMODES DIALOGEX 0, 0, 230, 139
@@ -25,7 +25,7 @@ BEGIN
     COMBOBOX IDC_NEWCOMPATIBILITYMODE, 9, 6, 148, 14, CBS_HASSTRINGS | CBS_DROPDOWN | WS_VSCROLL
     LISTBOX IDC_COMPATIBILITYMODE, 9, 25, 148, 86, LBS_NOTIFY | LBS_NOINTEGRALHEIGHT | LBS_WANTKEYBOARDINPUT | WS_BORDER
     PUSHBUTTON "&Ajouter...", IDC_ADD, 162, 6, 60, 14, WS_DISABLED
-    PUSHBUTTON "&Editer...", IDC_EDIT, 162, 24, 60, 14, WS_DISABLED
+    PUSHBUTTON "&Éditer...", IDC_EDIT, 162, 24, 60, 14, WS_DISABLED
     PUSHBUTTON "&Supprimer", IDC_DELETE, 162, 42, 60, 14, WS_DISABLED
     PUSHBUTTON "&OK", IDOK, 95, 116, 60, 14
     PUSHBUTTON "&Annuler", IDCANCEL, 162, 116, 60, 14
@@ -33,8 +33,8 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
-    IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
-    IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
-    IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
+    IDS_COMPAT_TITLE "Compatibilité"
+    IDS_FAILED_NETWORK "Les modes de compatibilité ne peuvent pas être appliqués sur ce programme car il se situe sur un lecteur réseau."
+    IDS_FAILED_PROTECTED "Les modes de compatibilité ne peuvent pas être appliqués sur ce programme car il fait partie de ReactOS."
+    IDS_YOU_DID_NOT_ADD "Vous n'avez pas ajouté le mode, voulez-vous l'ajouter maintenant ?"
 END
index 91fd272..1853d16 100644 (file)
@@ -35,7 +35,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "תאימות"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index a0ea969..1a18c60 100644 (file)
@@ -35,7 +35,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Kompatibilitás"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index cbb5330..822cdae 100644 (file)
@@ -33,7 +33,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Kompatibilitas"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index 21b3751..e3dcd28 100644 (file)
@@ -35,7 +35,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Compatibilità"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index 9488cf3..301794f 100644 (file)
@@ -11,7 +11,7 @@ BEGIN
     COMBOBOX IDC_COMPATIBILITYMODE, 18, 70, 188, 85, CBS_HASSTRINGS | CBS_DROPDOWNLIST | WS_TABSTOP | WS_DISABLED
     GROUPBOX "Display settings", -1, 7, 99, 210, 61, BS_GROUPBOX
     CHECKBOX "Run in 256 colors", IDC_CHKRUNIN256COLORS, 18, 114, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
-    CHECKBOX "Run in 640x480 screenresolution", IDC_CHKRUNIN640480RES, 18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
+    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
     CONTROL "Learn more about <A>program compatibility</A>.", IDC_INFOLINK, "SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, WS_EX_NOPARENTNOTIFY
@@ -33,7 +33,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Compatibiliteit"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index 6be87ec..47eca7d 100644 (file)
@@ -33,7 +33,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Kompaktibilitet"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index 3d9a4ac..996d4e8 100644 (file)
@@ -35,7 +35,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Zgodność"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index 0af15f9..7c972ed 100644 (file)
@@ -35,7 +35,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibilitate"
+    IDS_COMPAT_TITLE "Compatibilitate"
     IDS_FAILED_NETWORK "Modurile de compatibilitate nu pot fi instituite pentru acest program deoarece rezidă pe o unitate de stocare în rețea."
     IDS_FAILED_PROTECTED "Modurile de compatibilitate nu pot fi instituite pentru acest program deoarece este parte din ReactOS."
     IDS_YOU_DID_NOT_ADD "Nu ați specificat un mod. Doriți să specificați unul?"
index 65d0d7f..7b69f2e 100644 (file)
@@ -35,7 +35,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Совместимость"
+    IDS_COMPAT_TITLE "Совместимость"
     IDS_FAILED_NETWORK "Режим совместимости не может быть установлен для этой программы, потому что она находится на сетевом диске."
     IDS_FAILED_PROTECTED "Режим совместимости не может быть использован для компонентов ReactOS."
     IDS_YOU_DID_NOT_ADD "Вы не добавили режим, добавить его сейчас?"
index e971d38..3822829 100644 (file)
@@ -40,7 +40,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Kompatibilita"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index 57bf880..013f3d8 100644 (file)
@@ -15,7 +15,7 @@ BEGIN
     COMBOBOX IDC_COMPATIBILITYMODE, 18, 70, 188, 85, CBS_HASSTRINGS | CBS_DROPDOWNLIST | WS_TABSTOP | WS_DISABLED
     GROUPBOX "Shfaq konfigurimet", -1, 7, 99, 210, 61, BS_GROUPBOX
     CHECKBOX "Ekzekuto ne 256 colors", IDC_CHKRUNIN256COLORS, 18, 114, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
-    CHECKBOX "Ekzekuto ne 640x480 screenresolution", IDC_CHKRUNIN640480RES, 18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP 
+    CHECKBOX "Ekzekuto ne 640x480 screen resolution", 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
     CONTROL "Learn more about <A>program compatibility</A>.", IDC_INFOLINK, "SysLink", WS_CHILD | WS_TABSTOP | WS_VISIBLE, 7, 207, 210, 10, WS_EX_NOPARENTNOTIFY
@@ -37,7 +37,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Pajtueshmëri"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index e1eb306..5cdf449 100644 (file)
@@ -35,7 +35,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Kompatibilitet"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index bc40a24..155695d 100644 (file)
@@ -35,7 +35,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Uyumluluk"
+    IDS_COMPAT_TITLE "Uyumluluk"
     IDS_FAILED_NETWORK "Bir ağ sürücüsü üzerinde olduğundan bu izlencede uyumluluk kipleri ayarlanamaz."
     IDS_FAILED_PROTECTED "ReactOS'un bir parçası olduğundan bu izlencede uyumluluk kipleri ayarlanamaz."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index 2f6db49..155f272 100644 (file)
@@ -41,7 +41,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "Сумісність"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index c410c9d..5adb983 100644 (file)
@@ -35,7 +35,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "兼容性"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index 0e8e6f1..893cc8e 100644 (file)
@@ -35,7 +35,7 @@ END
 
 STRINGTABLE
 BEGIN
-    IDS_TABTITLE "Compatibility"
+    IDS_COMPAT_TITLE "相容性"
     IDS_FAILED_NETWORK "Compatibility modes cannot be set on this program because it is on a network drive."
     IDS_FAILED_PROTECTED "Compatibility modes cannot be set on this program because it is a part of ReactOS."
     IDS_YOU_DID_NOT_ADD "You did not add the mode, do you want to add it now?"
index 7f45ee6..9566a20 100644 (file)
@@ -20,7 +20,7 @@
 #define IDS_DESCRIPTION 101
 
 /* strings */
-#define IDS_TABTITLE                    2000
+#define IDS_COMPAT_TITLE                2000
 #define IDS_FAILED_NETWORK              2001
 #define IDS_FAILED_PROTECTED            2002
 #define IDS_YOU_DID_NOT_ADD             2003