Author: ilardig
Date: Thu May  5 12:06:34 2011
New Revision: 51586

URL: http://svn.reactos.org/svn/reactos?rev=51586&view=rev
Log:
[shell32]
Folder options:
- Load text from language file.
- Fill in the extension and description.
Patch by Edijs Kolesnikovics <terminedijs at yahoo dot com>
- Fix an Italian string.
See issue #6208 for more details.

Modified:
    trunk/reactos/dll/win32/shell32/folder_options.c
    trunk/reactos/dll/win32/shell32/lang/bg-BG.rc
    trunk/reactos/dll/win32/shell32/lang/ca-ES.rc
    trunk/reactos/dll/win32/shell32/lang/cs-CZ.rc
    trunk/reactos/dll/win32/shell32/lang/da-DK.rc
    trunk/reactos/dll/win32/shell32/lang/de-DE.rc
    trunk/reactos/dll/win32/shell32/lang/el-GR.rc
    trunk/reactos/dll/win32/shell32/lang/en-GB.rc
    trunk/reactos/dll/win32/shell32/lang/en-US.rc
    trunk/reactos/dll/win32/shell32/lang/es-ES.rc
    trunk/reactos/dll/win32/shell32/lang/fi-FI.rc
    trunk/reactos/dll/win32/shell32/lang/fr-FR.rc
    trunk/reactos/dll/win32/shell32/lang/hu-HU.rc
    trunk/reactos/dll/win32/shell32/lang/it-IT.rc
    trunk/reactos/dll/win32/shell32/lang/ja-JP.rc
    trunk/reactos/dll/win32/shell32/lang/ko-KR.rc
    trunk/reactos/dll/win32/shell32/lang/nl-NL.rc
    trunk/reactos/dll/win32/shell32/lang/no-NO.rc
    trunk/reactos/dll/win32/shell32/lang/pl-PL.rc
    trunk/reactos/dll/win32/shell32/lang/pt-BR.rc
    trunk/reactos/dll/win32/shell32/lang/pt-PT.rc
    trunk/reactos/dll/win32/shell32/lang/ro-RO.rc
    trunk/reactos/dll/win32/shell32/lang/ru-RU.rc
    trunk/reactos/dll/win32/shell32/lang/sk-SK.rc
    trunk/reactos/dll/win32/shell32/lang/sl-SI.rc
    trunk/reactos/dll/win32/shell32/lang/sv-SE.rc
    trunk/reactos/dll/win32/shell32/lang/tr-TR.rc
    trunk/reactos/dll/win32/shell32/lang/uk-UA.rc
    trunk/reactos/dll/win32/shell32/lang/zh-CN.rc
    trunk/reactos/dll/win32/shell32/lang/zh-TW.rc
    trunk/reactos/dll/win32/shell32/shresdef.h

Modified: trunk/reactos/dll/win32/shell32/folder_options.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/folder_options.c?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/folder_options.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/folder_options.c [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -399,7 +399,7 @@
 {
     LPNMLISTVIEW lppl;
     LVITEMW lvItem;
-    WCHAR Buffer[200], FormatBuffer[100];
+    WCHAR Buffer[200], FormatBuffer[100];  //FIXME
     PFOLDER_FILE_TYPE_ENTRY pItem;
     OPENASINFO Info;
 
@@ -451,6 +451,16 @@
                         swprintf(Buffer, FormatBuffer, 
&pItem->FileExtension[1]);
                         /* update dialog */
                         SendDlgItemMessageW(hwndDlg, 14003, WM_SETTEXT, 0, 
(LPARAM)Buffer);
+                        
+                        if (!LoadStringW(shell32_hInstance, 
IDS_FILE_DETAILSADV, FormatBuffer, sizeof(FormatBuffer) / sizeof(WCHAR)))
+                        {
+                            /* use default english format string */
+                            wcscpy(FormatBuffer, L"Files with extension '%s' 
are of type '%s'. To change settings that affect all '%s' files, click 
Advanced.");
+                        }
+                        /* format buffer */
+                        swprintf(Buffer, FormatBuffer, 
&pItem->FileExtension[1], &pItem->FileDescription[0], 
&pItem->FileDescription[0]);
+                        /* update dialog */
+                        SendDlgItemMessageW(hwndDlg, 14007, WM_SETTEXT, 0, 
(LPARAM)Buffer); 
                     }
            }
            break;

Modified: trunk/reactos/dll/win32/shell32/lang/bg-BG.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/bg-BG.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/bg-BG.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/bg-BG.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -423,7 +423,7 @@
 //ICON
 LTEXT "Èìå íà ïðèëîæåíèå", 14005, 100, 140, 40, 10
 PUSHBUTTON "Ïðî&ìÿíà...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Ôàéëîâåòå ñ ðàçøèðåíèå '%s' ñà îò âèäà '%s'.\nÇà äà ïðîìåíèòå 
íàñòðîéêèòå, çà âñè÷êè '%s'\nôàéëîâå, íàòèñíåòå „Ðàçøèðåíè”.", 14007, 12, 155, 
160, 32
+LTEXT "Ôàéëîâåòå ñ ðàçøèðåíèå '%s' ñà îò âèäà '%s'. Çà äà ïðîìåíèòå 
íàñòðîéêèòå, çà âñè÷êè '%s' ôàéëîâå, íàòèñíåòå „Ðàçøèðåíè”.", 14007, 12, 155, 
160, 32
 PUSHBUTTON "Ðàç&øèðåíè", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -759,8 +759,11 @@
        IDS_COPY_OF                 "Ïðåçàïèñ íà"
 
        IDS_SHLEXEC_NOASSOC         "Íÿìà ïðèëîæåíèå çà Óèíäîóñ, íàñòðîåíî äà 
îòâàðÿ òîçè âèä ôàéëîâå."
-END
-
-
-
-
+       
+       IDS_FILE_DETAILS            "Ïîäðîáíîñòè çà ðàçøèðåíèå '%s"
+       IDS_FILE_DETAILSADV         "Ôàéëîâåòå ñ ðàçøèðåíèå '%s' ñà îò âèäà 
'%s'. Çà äà ïðîìåíèòå íàñòðîéêèòå, çà âñè÷êè '%s' ôàéëîâå, íàòèñíåòå 
„Ðàçøèðåíè”."
+END
+
+
+
+

Modified: trunk/reactos/dll/win32/shell32/lang/ca-ES.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ca-ES.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/ca-ES.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/ca-ES.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -424,7 +424,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -758,4 +758,7 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
-END
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/cs-CZ.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/cs-CZ.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/cs-CZ.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/cs-CZ.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -412,7 +412,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Zmìnit...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Soubory s pøíponou '%s' jsou typu '%s'. Kliknutím\nna tlaèítko 
Pokroèilé lze zmìnit nastavení pro všechny\nsoubory '%s'.", 14007, 12, 155, 
160, 30
+LTEXT "Soubory s pøíponou '%s' jsou typu '%s'. Kliknutím na tlaèítko Pokroèilé 
lze zmìnit nastavení pro všechny soubory '%s'.", 14007, 12, 155, 160, 30
 PUSHBUTTON "&Pokroèilé", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -745,4 +745,7 @@
        IDS_COPY_OF                 "Kopie "
 
        IDS_SHLEXEC_NOASSOC         "Pro otevøení tohoto souboru není 
nakonfigurován žádný program."
-END
+       
+       IDS_FILE_DETAILS            "Podrobnosti pro typ souborù '%s'"
+       IDS_FILE_DETAILSADV         "Soubory s pøíponou '%s' jsou typu '%s'. 
Kliknutím na tlaèítko Pokroèilé lze zmìnit nastavení pro všechny soubory '%s'."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/da-DK.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/da-DK.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/da-DK.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/da-DK.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -413,7 +413,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -747,4 +747,7 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
-END
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/de-DE.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/de-DE.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/de-DE.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/de-DE.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -427,7 +427,7 @@
        //ICON
        LTEXT "Anwendungsname", 14005, 100, 140, 40, 10
        PUSHBUTTON "Än&dern...", 14006, 180, 140, 50, 14, WS_TABSTOP
-       LTEXT "Um\ndie Einstellungen, die alle Dateien des Typs '%s' betreffen 
zu ändern, klicken Sie auf Erweitert.", 14007, 12, 155, 160, 30
+       LTEXT "Umdie Einstellungen, die alle Dateien des Typs '%s' betreffen zu 
ändern, klicken Sie auf Erweitert.", 14007, 12, 155, 160, 30
        PUSHBUTTON "&Erweitert", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -762,4 +762,7 @@
        IDS_COPY_OF                 "Kopie von"
 
     IDS_SHLEXEC_NOASSOC         "Es ist kein Programm mit diesem Dateityp 
verknüpft."
-END
+       
+       IDS_FILE_DETAILS            "Details zum Dateityp '%s'"
+       IDS_FILE_DETAILSADV         "Umdie Einstellungen, die alle Dateien des 
Typs '%s' betreffen zu ändern, klicken Sie auf Erweitert."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/el-GR.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/el-GR.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/el-GR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/el-GR.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -424,7 +424,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -759,4 +759,7 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
-END
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/en-GB.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/en-GB.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/en-GB.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/en-GB.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -424,7 +424,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -758,4 +758,7 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
-END
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/en-US.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/en-US.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/en-US.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/en-US.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -435,7 +435,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -769,4 +769,7 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
-END
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/es-ES.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/es-ES.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/es-ES.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/es-ES.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -771,4 +771,7 @@
        IDS_COPY_OF                 "Copia de"
 
        IDS_SHLEXEC_NOASSOC         "No hay ningún programa configurado en 
ReactOS para abrir este tipo de archivo."
-END
+       
+       IDS_FILE_DETAILS            "Detalles para el tipo de archivo '%s'"
+       IDS_FILE_DETAILSADV         "Los archivos con extensión '%s' son del 
tipo '%s'. Para cambiar la configuración de los archivos '%s', haga clic en 
Opciones avanzadas."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/fi-FI.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/fi-FI.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/fi-FI.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/fi-FI.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -424,7 +424,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -758,4 +758,7 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
-END
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/fr-FR.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/fr-FR.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/fr-FR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/fr-FR.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -428,7 +428,7 @@
 //ICON
 LTEXT "Nom de l'application", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Modifier...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Les fichiers avec l'extension '%s' sont de type '%s'. Pour\nmodifier 
les paramètres qui concernent tous les fichiers '%s', cliquez\nsur Avancé.", 
14007, 12, 155, 160, 30
+LTEXT "Les fichiers avec l'extension '%s' sont de type '%s'. Pour modifier les 
paramètres qui concernent tous les fichiers '%s', cliquez sur Avancé.", 14007, 
12, 155, 160, 30
 PUSHBUTTON "A&vancé", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -762,4 +762,7 @@
        IDS_COPY_OF                 "Copie de"
 
        IDS_SHLEXEC_NOASSOC         "Aucun programme Windows n'est configuré 
pour ouvrir ce type de fichier."
-END
+       
+       IDS_FILE_DETAILS            "Détails concernant l'extension '%s'"
+       IDS_FILE_DETAILSADV         "Les fichiers avec l'extension '%s' sont de 
type '%s'. Pour modifier les paramètres qui concernent tous les fichiers '%s', 
cliquez sur Avancé."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/hu-HU.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/hu-HU.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/hu-HU.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/hu-HU.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -427,7 +427,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -761,4 +761,7 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
-END
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/it-IT.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/it-IT.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/it-IT.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/it-IT.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -129,7 +129,7 @@
        LTEXT "Versione " KERNEL_VERSION_STR " (" KERNEL_VERSION_BUILD_STR ")", 
IDC_STATIC, 35, 65, 235, 10
        LTEXT REACTOS_DEFAULT_STR_LEGAL_COPYRIGHT, IDC_STATIC, 35, 75, 210, 10
        LTEXT "", IDC_SHELL_ABOUT_OTHERSTUFF, 35, 90, 180, 20
-       LTEXT "Questa versione di ReactOS è registrata da:", IDC_STATIC, 35, 
115, 180, 10
+       LTEXT "Questa versione di ReactOS è registrata a nome di:", IDC_STATIC, 
35, 115, 180, 10
        LTEXT "", IDC_SHELL_ABOUT_REG_USERNAME, 45, 125, 180, 10
        LTEXT "", IDC_SHELL_ABOUT_REG_ORGNAME, 45, 135, 180, 10
        LTEXT "", IDC_STATIC, 35, 147, 235, 1, SS_ETCHEDHORZ
@@ -435,7 +435,7 @@
 //ICON
 LTEXT "Nome", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Cambia...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "I files con estensione '%s' sono di tipo '%s'.\nPer cambiare le 
impostazioni che influenzano tutti i file '%s', cliccare\nAvanzate.", 14007, 
12, 155, 160, 30
+LTEXT "I files con estensione '%s' sono di tipo '%s'. Per cambiare le 
impostazioni per tutti i file '%s', cliccare su Avanzate.", 14007, 12, 155, 
160, 30
 PUSHBUTTON "A&vanzate", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -769,4 +769,7 @@
        IDS_COPY_OF                 "Copia di"
 
        IDS_SHLEXEC_NOASSOC         "Non c'è un programma configurato per 
aprire questo tipo di file."
-END
+       
+       IDS_FILE_DETAILS            "Dettagli per l'estensione '%s'"
+       IDS_FILE_DETAILSADV         "I files con estensione '%s' sono di tipo 
'%s'. Per modificare le impostazioni per tutti i file '%s', cliccare su 
Avanzate."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/ja-JP.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ja-JP.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/ja-JP.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/ja-JP.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -424,7 +424,7 @@
 //ICON
 LTEXT "ƒAƒvƒŠ–¼", 14005, 100, 140, 40, 10
 PUSHBUTTON "•ύX(&C)...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Šg’£Žq '%s' ‚̃tƒ@ƒCƒ‹‚ÌŽí—Þ‚Í'%s'‚Å‚·B\n'%s' 
‚̃tƒ@ƒCƒ‹‚·‚ׂĂɑ΂·‚éÝ’è‚ð•ύX‚·‚é‚É‚Í\nÚ×Ý’è‚ðƒNƒŠƒbƒN‚µ‚Ä‚­‚¾‚³‚¢B", 
14007, 12, 155, 160, 30
+LTEXT "Šg’£Žq '%s' ‚̃tƒ@ƒCƒ‹‚ÌŽí—Þ‚Í'%s'‚Å‚·B '%s' 
‚̃tƒ@ƒCƒ‹‚·‚ׂĂɑ΂·‚éÝ’è‚ð•ύX‚·‚é‚É‚Í Ú×Ý’è‚ðƒNƒŠƒbƒN‚µ‚Ä‚­‚¾‚³‚¢B", 
14007, 12, 155, 160, 30
 PUSHBUTTON "Ú×Ý’è(&V)", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -757,4 +757,8 @@
        IDS_DEFAULT_CLUSTER_SIZE    "ƒfƒtƒHƒ‹ƒg ƒAƒƒP[ƒVƒ‡ƒ“ ƒTƒCƒY"
        IDS_COPY_OF                 "ƒRƒs[ `"
     
-END
+       IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
+       
+       IDS_FILE_DETAILS            "Šg’£Žq '%s' ‚̏ڍ×"
+       IDS_FILE_DETAILSADV         "Šg’£Žq '%s' ‚̃tƒ@ƒCƒ‹‚ÌŽí—Þ‚Í'%s'‚Å‚·B 
'%s' ‚̃tƒ@ƒCƒ‹‚·‚ׂĂɑ΂·‚éÝ’è‚ð•ύX‚·‚é‚É‚Í 
Ú×Ý’è‚ðƒNƒŠƒbƒN‚µ‚Ä‚­‚¾‚³‚¢B"
+END

Modified: trunk/reactos/dll/win32/shell32/lang/ko-KR.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ko-KR.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/ko-KR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/ko-KR.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -424,7 +424,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -758,4 +758,7 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
-END
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/nl-NL.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/nl-NL.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/nl-NL.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/nl-NL.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -424,7 +424,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -758,4 +758,7 @@
        IDS_COPY_OF                 "Copy of"
     
        IDS_SHLEXEC_NOASSOC         "Er is geen Windows-programma 
geconfigureerd om dit soort bestanden te openen."
-END
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/no-NO.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/no-NO.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/no-NO.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/no-NO.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -425,7 +425,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Endre...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Filer med utvidelser '%s' er av typen '%s'. For å\nendre innstillingene 
som er av filen '%s', trykk på\navansert.", 14007, 12, 155, 160, 30
+LTEXT "Filer med utvidelser '%s' er av typen '%s'. For å endre innstillingene 
som er av filen '%s', trykk på avansert.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Av&ansert", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -761,4 +761,7 @@
        IDS_COPY_OF                 "Copy of"
     
        IDS_SHLEXEC_NOASSOC         "Intet Windows-program er satt opp til å 
åpne denne filtypen."
-END
+       
+       IDS_FILE_DETAILS            "Detailjer for '%s' utvidelser"
+       IDS_FILE_DETAILSADV         "Filer med utvidelser '%s' er av typen 
'%s'. For å endre innstillingene som er av filen '%s', trykk på avansert."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/pl-PL.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/pl-PL.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/pl-PL.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/pl-PL.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -432,7 +432,7 @@
 //ICON
 LTEXT "Nazwa Aplikacji", 14005, 100, 140, 40, 10
 PUSHBUTTON "Z&mieñ", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Pliki z rozszerzeniem '%s' nale¿¹ do typu: '%s'. Aby\nzmieniæ 
ustawienia dotycz¹ce wszystkich plików '%s', wybierz\nZaawansowane.", 14007, 
12, 155, 160, 30
+LTEXT "Pliki z rozszerzeniem '%s' nale¿¹ do typu: '%s'. Aby zmieniæ ustawienia 
dotycz¹ce wszystkich plików '%s', wybierz Zaawansowane.", 14007, 12, 155, 160, 
30
 PUSHBUTTON "Zaawa&nsowane", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -766,4 +766,7 @@
        IDS_COPY_OF                 "Kopia"
 
        IDS_SHLEXEC_NOASSOC         "¯aden program nie jest skonfigurowany, by 
otwieraæ pliki tego typu."
-END
+       
+       IDS_FILE_DETAILS            "Szczegó³y dla rozszerzenia '%s'"
+       IDS_FILE_DETAILSADV         "Pliki z rozszerzeniem '%s' s¹ typu '%s'. 
Aby zmieniæ ustawienia, które dotycz¹ wszystkich plików '%s', kliknij przycisk 
Zaawansowane."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/pt-BR.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/pt-BR.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/pt-BR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/pt-BR.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -426,7 +426,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -760,4 +760,7 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC     "Nici un program Windows nu este configurat sa 
deschida fi?iere de acest tip."
-END
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/pt-PT.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/pt-PT.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/pt-PT.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/pt-PT.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -427,7 +427,7 @@
 //ICON
 LTEXT "Appnome", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Mudar...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Ficheiros com extensão '%s' são do tipo '%s'. Para\nmudar definições 
que afectam todos '%s' ficheiros, click\nAvançado.", 14007, 12, 155, 160, 30
+LTEXT "Ficheiros com extensão '%s' são do tipo '%s'. Para mudar definições que 
afectam todos '%s' ficheiros, click Avançado.", 14007, 12, 155, 160, 30
 PUSHBUTTON "A&vançado", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -761,4 +761,7 @@
        IDS_COPY_OF                 "Cópia de"
 
        IDS_SHLEXEC_NOASSOC         "Não existe um programa Windows configurado 
para abrir este tipo de ficheiro."
-END
+       
+       IDS_FILE_DETAILS            "Detalhes para '%s' extensão"
+       IDS_FILE_DETAILSADV         "Ficheiros com extensão '%s' são do tipo 
'%s'. Para mudar definições que afectam todos '%s' ficheiros, click Avançado."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/ro-RO.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ro-RO.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/ro-RO.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/ro-RO.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -427,7 +427,7 @@
 //ICON
 LTEXT "Nume ap.", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Schimbare", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Fișierele cu extensia '%s' sunt de tipul '%s'. \nPentru a schimbat 
setări care vor afecta\ntoate fișierele '%s', clic pe Avansat.", 14007, 12, 
155, 160, 30
+LTEXT "Fișierele cu extensia '%s' sunt de tipul '%s'. Pentru a schimbat 
setări care vor afecta toate fișierele '%s', clic pe Avansat.", 14007, 12, 
155, 160, 30
 PUSHBUTTON "A&vansat", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -760,6 +760,9 @@
        IDS_DEFAULT_CLUSTER_SIZE    "Mărime de alocare implicită"
 
        IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
+       
+       IDS_FILE_DETAILS            "Detalii pentru extensia '%s'"
+       IDS_FILE_DETAILSADV         "Fișierele cu extensia '%s' sunt de tipul 
'%s'. Pentru a schimbat setări care vor afecta toate fișierele '%s', clic pe 
Avansat."
 END
 
 #pragma code_page(default)

Modified: trunk/reactos/dll/win32/shell32/lang/ru-RU.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ru-RU.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/ru-RU.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/ru-RU.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -424,7 +424,7 @@
 //ICON
 LTEXT "Ïðèëîæåíèå:", 14005, 100, 142, 54, 10
 PUSHBUTTON "&Èçìåíèòü...", 14006, 180, 140, 63, 14, WS_TABSTOP
-LTEXT "Ôàéëû ñ ðàñøèðåíèåì '%s' èìåþò òèï '%s'. Äëÿ èçìåíåíèÿ ïàðàìåòðîâ âñåõ 
ôàéëîâ '%s', íàæìèòå ""Äîïîëíèòåëüíî"".", 14007, 12, 155, 162, 36
+LTEXT "Ôàéëû ñ ðàñøèðåíèåì '%s' èìåþò òèï '%s'. Äëÿ èçìåíåíèÿ ïàðàìåòðîâ âñåõ 
ôàéëîâ '%s', íàæìèòå 'Äîïîëíèòåëüíî'.", 14007, 12, 155, 162, 36
 PUSHBUTTON "Äî&ïîëíèòåëüíî", 14008, 180, 175, 63, 14, WS_TABSTOP
 END
 
@@ -757,4 +757,7 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
-END
+       
+       IDS_FILE_DETAILS            "Îïèñàíèå ðàñøèðåíèÿ '%s'"
+       IDS_FILE_DETAILSADV         "Ôàéëû ñ ðàñøèðåíèåì '%s' èìåþò òèï '%s'. 
Äëÿ èçìåíåíèÿ ïàðàìåòðîâ âñåõ ôàéëîâ '%s', íàæìèòå 'Äîïîëíèòåëüíî'."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/sk-SK.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/sk-SK.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/sk-SK.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/sk-SK.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -430,7 +430,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Zmeni...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -766,4 +766,7 @@
   // There is no Windows program configured to open this type of file.  
        IDS_SHLEXEC_NOASSOC         "Neexistuje žiadny program nakonfigurovaný 
tak, aby otváral tento typ súborov."
                           //   Na otváranie tohto typu súboru nie je 
nakonfigurovaný žiadny program systému Windows.
-END
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/sl-SI.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/sl-SI.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/sl-SI.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/sl-SI.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -424,7 +424,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -758,4 +758,7 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC         "Noben Okenski program ni nastavljen, da bi 
odpiral ta tip datotek."
-END
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/sv-SE.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/sv-SE.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/sv-SE.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/sv-SE.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -424,7 +424,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -758,4 +758,7 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
-END
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/tr-TR.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/tr-TR.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/tr-TR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/tr-TR.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -424,7 +424,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -758,4 +758,7 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
-END
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/uk-UA.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/uk-UA.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/uk-UA.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/uk-UA.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -437,7 +437,7 @@
 //ICON
 LTEXT "Äîäàòîê", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Çì³íèòè...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Ôàéëè ç ðîçøèðåííÿì '%s' ìàþòü òèï '%s'.\nÙîá çì³íèòè ïàðàìåòðè, ÿê³ 
âïëèâàòèìóòü\níà âñ³ ôàéëè '%s', íàòèñí³òü êíîïêó ""Äîäàòêîâî"".", 14007, 12, 
155, 160, 30
+LTEXT "Ôàéëè ç ðîçøèðåííÿì '%s' ìàþòü òèï '%s'. Ùîá çì³íèòè ïàðàìåòðè, ÿê³ 
âïëèâàòèìóòü íà âñ³ ôàéëè '%s', íàòèñí³òü êíîïêó 'Äîäàòêîâî'.", 14007, 12, 155, 
160, 30
 PUSHBUTTON "&Äîäàòêîâî", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -771,4 +771,7 @@
        IDS_COPY_OF                 "Êîï³ÿ"
 
        IDS_SHLEXEC_NOASSOC         "Íåìຠïðîãðàìè Windows, ñêîíô³ãóðîâàíî¿ 
äëÿ â³äêðèòòÿ öüîãî òèïó ôàéë³â."
-END
+       
+       IDS_FILE_DETAILS            "Ïîäðîáèö³ äëÿ ðîçøèðåííÿ '%s'"
+       IDS_FILE_DETAILSADV         "Ôàéëè ç ðîçøèðåííÿì '%s' ìàþòü òèï '%s'. 
Ùîá çì³íèòè ïàðàìåòðè, ÿê³ âïëèâàòèìóòü íà âñ³ ôàéëè '%s', íàòèñí³òü êíîïêó 
'Äîäàòêîâî'."
+END

Modified: trunk/reactos/dll/win32/shell32/lang/zh-CN.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/zh-CN.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/zh-CN.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/zh-CN.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -413,7 +413,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -746,5 +746,8 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
-END
-
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
+END
+

Modified: trunk/reactos/dll/win32/shell32/lang/zh-TW.rc
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/zh-TW.rc?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/zh-TW.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/zh-TW.rc [iso-8859-1] Thu May  5 
12:06:34 2011
@@ -425,7 +425,7 @@
 //ICON
 LTEXT "Appname", 14005, 100, 140, 40, 10
 PUSHBUTTON "&Change...", 14006, 180, 140, 50, 14, WS_TABSTOP
-LTEXT "Files with extension '%s' are of type '%s'. To\nchange settings that 
affect all '%s' files, click\nAdvanced.", 14007, 12, 155, 160, 30
+LTEXT "Files with extension '%s' are of type '%s'. To change settings that 
affect all '%s' files, click Advanced.", 14007, 12, 155, 160, 30
 PUSHBUTTON "Ad&vanced", 14008, 180, 175, 50, 14, WS_TABSTOP
 END
 
@@ -759,6 +759,9 @@
        IDS_COPY_OF                 "Copy of"
 
        IDS_SHLEXEC_NOASSOC         "There is no Windows program configured to 
open this type of file."
+       
+       IDS_FILE_DETAILS            "Details for '%s' extension"
+       IDS_FILE_DETAILSADV         "Files with extension '%s' are of type 
'%s'. To change settings that affect all '%s' files, click Advanced."
 END
 
 #pragma code_page(default)

Modified: trunk/reactos/dll/win32/shell32/shresdef.h
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shresdef.h?rev=51586&r1=51585&r2=51586&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/shresdef.h [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/shresdef.h [iso-8859-1] Thu May  5 12:06:34 
2011
@@ -141,6 +141,7 @@
 #define IDS_SHLEXEC_NOASSOC         173
 #define IDS_FILE_TYPES              174
 #define IDS_FILE_DETAILS            175
+#define IDS_FILE_DETAILSADV         176
 
 #define IDS_RUNDLG_ERROR            180
 #define IDS_RUNDLG_BROWSE_ERROR     181


Reply via email to