Author: hbelusca
Date: Thu Aug 31 20:49:02 2017
New Revision: 75726
URL: http://svn.reactos.org/svn/reactos?rev=75726&view=rev
Log:
[ACPPAGE]: "Sync fail" with Mark Jansen's translation work in CORE-13693, sorry
:(
Modified:
trunk/reactos/dll/shellext/acppage/CLayerUIPropPage.cpp
trunk/reactos/dll/shellext/acppage/lang/bg-BG.rc
trunk/reactos/dll/shellext/acppage/lang/cs-CZ.rc
trunk/reactos/dll/shellext/acppage/lang/de-DE.rc
trunk/reactos/dll/shellext/acppage/lang/en-US.rc
trunk/reactos/dll/shellext/acppage/lang/es-ES.rc
trunk/reactos/dll/shellext/acppage/lang/eu-ES.rc
trunk/reactos/dll/shellext/acppage/lang/fr-FR.rc
trunk/reactos/dll/shellext/acppage/lang/he-IL.rc
trunk/reactos/dll/shellext/acppage/lang/hu-HU.rc
trunk/reactos/dll/shellext/acppage/lang/id-ID.rc
trunk/reactos/dll/shellext/acppage/lang/it-IT.rc
trunk/reactos/dll/shellext/acppage/lang/nl-NL.rc
trunk/reactos/dll/shellext/acppage/lang/no-NO.rc
trunk/reactos/dll/shellext/acppage/lang/pl-PL.rc
trunk/reactos/dll/shellext/acppage/lang/ro-RO.rc
trunk/reactos/dll/shellext/acppage/lang/ru-RU.rc
trunk/reactos/dll/shellext/acppage/lang/sk-SK.rc
trunk/reactos/dll/shellext/acppage/lang/sq-AL.rc
trunk/reactos/dll/shellext/acppage/lang/sv-SE.rc
trunk/reactos/dll/shellext/acppage/lang/tr-TR.rc
trunk/reactos/dll/shellext/acppage/lang/uk-UA.rc
trunk/reactos/dll/shellext/acppage/lang/zh-CN.rc
trunk/reactos/dll/shellext/acppage/lang/zh-TW.rc
trunk/reactos/dll/shellext/acppage/resource.h
Modified: trunk/reactos/dll/shellext/acppage/CLayerUIPropPage.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/CLayerUIPropPage.cpp?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/CLayerUIPropPage.cpp [iso-8859-1]
(original)
+++ trunk/reactos/dll/shellext/acppage/CLayerUIPropPage.cpp [iso-8859-1]
Thu Aug 31 20:49:02 2017
@@ -393,7 +393,7 @@
UpdateControls(hWnd);
break;
case IDC_EDITCOMPATIBILITYMODES:
- if (DialogBoxParamW(g_hModule,
MAKEINTRESOURCEW(IDD_EDITCOMPATIBILITYMODES), hWnd, EditModesProc,
(LPARAM)this) == IDOK)
+ if (DialogBoxParam(g_hModule,
MAKEINTRESOURCE(IDD_EDITCOMPATIBILITYMODES), hWnd, EditModesProc, (LPARAM)this)
== IDOK)
{
UpdateControls(hWnd);
}
@@ -572,7 +572,7 @@
if (ComboHasData(hWnd))
{
CComBSTR question, title;
- title.LoadString(g_hModule, IDS_COMPAT_TITLE);
+ title.LoadString(g_hModule, IDS_TABTITLE);
question.LoadString(g_hModule, IDS_YOU_DID_NOT_ADD);
int result = MessageBoxW(hWnd, question, title, MB_YESNOCANCEL
| MB_ICONQUESTION);
switch (result)
@@ -694,9 +694,10 @@
{
PROPSHEETPAGEW psp = { 0 };
psp.dwSize = sizeof(psp);
- psp.dwFlags = PSP_USEREFPARENT;
+ psp.dwFlags = PSP_USEREFPARENT | PSP_USETITLE;
psp.hInstance = g_hModule;
- psp.pszTemplate = MAKEINTRESOURCEW(IDD_ACPPAGESHEET);
+ psp.pszTemplate = MAKEINTRESOURCE(IDD_ACPPAGESHEET);
+ psp.pszTitle = MAKEINTRESOURCE(IDS_TABTITLE);
psp.pfnDlgProc = PropDlgProc;
psp.lParam = (LPARAM)this;
psp.pcRefParent = (PUINT)&g_ModuleRefCnt;
Modified: trunk/reactos/dll/shellext/acppage/lang/bg-BG.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/bg-BG.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/bg-BG.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/bg-BG.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -33,7 +33,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "СÑвмеÑÑимоÑÑ"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/cs-CZ.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/cs-CZ.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/cs-CZ.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/cs-CZ.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -38,7 +38,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Kompatibilita"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/de-DE.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/de-DE.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/de-DE.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/de-DE.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -33,7 +33,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Kompatibilität"
+ IDS_TABTITLE "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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/en-US.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/en-US.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/en-US.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/en-US.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -11,7 +11,7 @@
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 screen resolution", IDC_CHKRUNIN640480RES, 18,
129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
+ CHECKBOX "Run in 640x480 screenresolution", 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 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Compatibility"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/es-ES.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/es-ES.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/es-ES.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/es-ES.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -35,7 +35,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Compatibilidad"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/eu-ES.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/eu-ES.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/eu-ES.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/eu-ES.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -33,7 +33,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Konpatibilitatea"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/fr-FR.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/fr-FR.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/fr-FR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/fr-FR.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -5,16 +5,16 @@
CAPTION "Compatibilité"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
- 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
+ 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
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 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
+ 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
END
IDD_EDITCOMPATIBILITYMODES DIALOGEX 0, 0, 230, 139
@@ -25,7 +25,7 @@
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 "&Ãditer...", IDC_EDIT, 162, 24, 60, 14, WS_DISABLED
+ PUSHBUTTON "&Editer...", 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 @@
STRINGTABLE
BEGIN
- 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 ?"
+ 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?"
END
Modified: trunk/reactos/dll/shellext/acppage/lang/he-IL.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/he-IL.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/he-IL.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/he-IL.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -35,7 +35,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "ת××××ת"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/hu-HU.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/hu-HU.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/hu-HU.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/hu-HU.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -35,7 +35,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Kompatibilitás"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/id-ID.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/id-ID.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/id-ID.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/id-ID.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -33,7 +33,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Kompatibilitas"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/it-IT.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/it-IT.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/it-IT.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/it-IT.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -35,7 +35,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Compatibilità "
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/nl-NL.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/nl-NL.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/nl-NL.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/nl-NL.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -11,7 +11,7 @@
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 screen resolution", IDC_CHKRUNIN640480RES, 18,
129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
+ CHECKBOX "Run in 640x480 screenresolution", 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 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Compatibiliteit"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/no-NO.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/no-NO.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/no-NO.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/no-NO.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -33,7 +33,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Kompaktibilitet"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/pl-PL.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/pl-PL.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/pl-PL.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/pl-PL.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -35,7 +35,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "ZgodnoÅÄ"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/ro-RO.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/ro-RO.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/ro-RO.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/ro-RO.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -35,7 +35,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Compatibilitate"
+ IDS_TABTITLE "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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/ru-RU.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/ru-RU.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/ru-RU.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/ru-RU.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -35,7 +35,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "СовмеÑÑимоÑÑÑ"
+ IDS_TABTITLE "СовмеÑÑимоÑÑÑ"
IDS_FAILED_NETWORK "Режим ÑовмеÑÑимоÑÑи не можеÑ
бÑÑÑ ÑÑÑановлен Ð´Ð»Ñ ÑÑой пÑогÑаммÑ, поÑомÑ
ÑÑо она наÑ
одиÑÑÑ Ð½Ð° ÑеÑевом диÑке."
IDS_FAILED_PROTECTED "Режим ÑовмеÑÑимоÑÑи не
Ð¼Ð¾Ð¶ÐµÑ Ð±ÑÑÑ Ð¸ÑполÑзован Ð´Ð»Ñ ÐºÐ¾Ð¼Ð¿Ð¾Ð½ÐµÐ½Ñов
ReactOS."
IDS_YOU_DID_NOT_ADD "ÐÑ Ð½Ðµ добавили Ñежим,
добавиÑÑ ÐµÐ³Ð¾ ÑейÑаÑ?"
Modified: trunk/reactos/dll/shellext/acppage/lang/sk-SK.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/sk-SK.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/sk-SK.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/sk-SK.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -40,7 +40,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Kompatibilita"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/sq-AL.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/sq-AL.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/sq-AL.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/sq-AL.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -15,7 +15,7 @@
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 screen resolution", IDC_CHKRUNIN640480RES,
18, 129, 188, 10, BS_AUTOCHECKBOX | WS_TABSTOP
+ 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
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 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Pajtueshmëri"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/sv-SE.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/sv-SE.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/sv-SE.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/sv-SE.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -35,7 +35,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Kompatibilitet"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/tr-TR.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/tr-TR.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/tr-TR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/tr-TR.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -35,7 +35,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "Uyumluluk"
+ IDS_TABTITLE "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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/uk-UA.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/uk-UA.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/uk-UA.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/uk-UA.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -41,7 +41,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "СÑмÑÑнÑÑÑÑ"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/zh-CN.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/zh-CN.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/zh-CN.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/zh-CN.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -35,7 +35,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "å
¼å®¹æ§"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/lang/zh-TW.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/lang/zh-TW.rc?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/lang/zh-TW.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/lang/zh-TW.rc [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -35,7 +35,7 @@
STRINGTABLE
BEGIN
- IDS_COMPAT_TITLE "ç¸å®¹æ§"
+ 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?"
Modified: trunk/reactos/dll/shellext/acppage/resource.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/resource.h?rev=75726&r1=75725&r2=75726&view=diff
==============================================================================
--- trunk/reactos/dll/shellext/acppage/resource.h [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/acppage/resource.h [iso-8859-1] Thu Aug 31
20:49:02 2017
@@ -20,7 +20,7 @@
#define IDS_DESCRIPTION 101
/* strings */
-#define IDS_COMPAT_TITLE 2000
+#define IDS_TABTITLE 2000
#define IDS_FAILED_NETWORK 2001
#define IDS_FAILED_PROTECTED 2002
#define IDS_YOU_DID_NOT_ADD 2003