Skip to content

Commit

Permalink
[SHELL32]
Browse files Browse the repository at this point in the history
- Implement View tab in Folder options dialog.
CORE-12540
Patch by Katayama Hirofumi MZ with a tiny improvement by me to refresh explorer in a better way.

svn path=/trunk/; revision=73703
  • Loading branch information
yagoulas committed Feb 5, 2017
1 parent af6491b commit 029cc4a
Show file tree
Hide file tree
Showing 34 changed files with 1,931 additions and 123 deletions.
227 changes: 227 additions & 0 deletions reactos/boot/bootdata/hivesft.inf

Large diffs are not rendered by default.

1,097 changes: 1,028 additions & 69 deletions reactos/dll/win32/shell32/dialogs/folder_options.cpp

Large diffs are not rendered by default.

24 changes: 22 additions & 2 deletions reactos/dll/win32/shell32/lang/bg-BG.rc
Expand Up @@ -432,8 +432,8 @@ BEGIN
PUSHBUTTON "Прилагане върху ви&чки папки", 14001, 20, 50, 115, 14, WS_TABSTOP
PUSHBUTTON "&Зачистване на всички папки", 14002, 140, 50, 115, 14, WS_TABSTOP
LTEXT "Разширени настройки", -1, 7, 80, 100, 10
CONTROL "", 14003, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_NOCOLUMNHEADER | LVS_SHAREIMAGELISTS | WS_BORDER | WS_TABSTOP, 7, 90, 249, 120
PUSHBUTTON "От под&разбираните", 14004, 180, 210, 80, 14, WS_TABSTOP
CONTROL "", 14003, "SysTreeView32", WS_BORDER | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP | TVS_DISABLEDRAGDROP | TVS_LINESATROOT, 7, 90, 249, 120
PUSHBUTTON "От под&разбираните", 14004, 177, 215, 80, 14, WS_TABSTOP
END

IDD_FOLDER_OPTIONS_FILETYPES DIALOGEX 0, 0, 264, 256
Expand Down Expand Up @@ -835,4 +835,24 @@ BEGIN
IDS_MENU_EMPTY "(Empty)"
IDS_OBJECTS "%d Objects"
IDS_OBJECTS_SELECTED "%d Objects Selected"

IDS_ADVANCED_FOLDER "Files and Folders"
IDS_ADVANCED_NET_CRAWLER "Automatically search for network folders and printers"
IDS_ADVANCED_FOLDER_SIZE_TIP "Display file size information in folder tips"
IDS_ADVANCED_FRIENDLY_TREE "Display simple folder view in Explorer's Folders list"
IDS_ADVANCED_WEB_VIEW_BARRICADE "Display the contents of system folders"
IDS_ADVANCED_SHOW_FULL_PATH_ADDRESS "Display the full path in address bar"
IDS_ADVANCED_SHOW_FULL_PATH "Display the full path in the title bar"
IDS_ADVANCED_DISABLE_THUMB_CACHE "Do not cache thumbnails"
IDS_ADVANCED_HIDDEN "Hidden files and folders"
IDS_ADVANCED_DONT_SHOW_HIDDEN "Do not show hidden files and folders"
IDS_ADVANCED_SHOW_HIDDEN "Show hidden files and folders"
IDS_ADVANCED_HIDE_FILE_EXT "Hide extensions for known file types"
IDS_ADVANCED_SUPER_HIDDEN "Hide protected operating system files (Recommended)"
IDS_ADVANCED_DESKTOP_PROCESS "Launch folder windows in a separate process"
IDS_ADVANCED_CLASSIC_VIEW_STATE "Remember each folder's view settings"
IDS_ADVANCED_PERSIST_BROWSERS "Restore previous folder windows at logon"
IDS_ADVANCED_CONTROL_PANEL_IN_MY_COMPUTER "Show Control Panel in My Computer"
IDS_ADVANCED_SHOW_COMP_COLOR "Show encrypted or compressed NTFS files in color"
IDS_ADVANCED_SHOW_INFO_TIP "Show pop-up description for folder and desktop items"
END
24 changes: 22 additions & 2 deletions reactos/dll/win32/shell32/lang/ca-ES.rc
Expand Up @@ -432,8 +432,8 @@ BEGIN
PUSHBUTTON "Apply to A&ll Folders", 14001, 60, 50, 80, 14, WS_TABSTOP
PUSHBUTTON "&Reset All Folders", 14002, 150, 50, 80, 14, WS_TABSTOP
LTEXT "Advanced settings:", -1, 7, 80, 100, 10
CONTROL "", 14003, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_NOCOLUMNHEADER | LVS_SHAREIMAGELISTS | WS_BORDER | WS_TABSTOP, 7, 90, 249, 120
PUSHBUTTON "Restore &Defaults", 14004, 180, 210, 80, 14, WS_TABSTOP
CONTROL "", 14003, "SysTreeView32", WS_BORDER | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP | TVS_DISABLEDRAGDROP | TVS_LINESATROOT, 7, 90, 249, 120
PUSHBUTTON "Restore &Defaults", 14004, 177, 215, 80, 14, WS_TABSTOP
END

IDD_FOLDER_OPTIONS_FILETYPES DIALOGEX 0, 0, 264, 256
Expand Down Expand Up @@ -835,4 +835,24 @@ BEGIN
IDS_MENU_EMPTY "(Empty)"
IDS_OBJECTS "%d Objects"
IDS_OBJECTS_SELECTED "%d Objects Selected"

IDS_ADVANCED_FOLDER "Files and Folders"
IDS_ADVANCED_NET_CRAWLER "Automatically search for network folders and printers"
IDS_ADVANCED_FOLDER_SIZE_TIP "Display file size information in folder tips"
IDS_ADVANCED_FRIENDLY_TREE "Display simple folder view in Explorer's Folders list"
IDS_ADVANCED_WEB_VIEW_BARRICADE "Display the contents of system folders"
IDS_ADVANCED_SHOW_FULL_PATH_ADDRESS "Display the full path in address bar"
IDS_ADVANCED_SHOW_FULL_PATH "Display the full path in the title bar"
IDS_ADVANCED_DISABLE_THUMB_CACHE "Do not cache thumbnails"
IDS_ADVANCED_HIDDEN "Hidden files and folders"
IDS_ADVANCED_DONT_SHOW_HIDDEN "Do not show hidden files and folders"
IDS_ADVANCED_SHOW_HIDDEN "Show hidden files and folders"
IDS_ADVANCED_HIDE_FILE_EXT "Hide extensions for known file types"
IDS_ADVANCED_SUPER_HIDDEN "Hide protected operating system files (Recommended)"
IDS_ADVANCED_DESKTOP_PROCESS "Launch folder windows in a separate process"
IDS_ADVANCED_CLASSIC_VIEW_STATE "Remember each folder's view settings"
IDS_ADVANCED_PERSIST_BROWSERS "Restore previous folder windows at logon"
IDS_ADVANCED_CONTROL_PANEL_IN_MY_COMPUTER "Show Control Panel in My Computer"
IDS_ADVANCED_SHOW_COMP_COLOR "Show encrypted or compressed NTFS files in color"
IDS_ADVANCED_SHOW_INFO_TIP "Show pop-up description for folder and desktop items"
END
4 changes: 2 additions & 2 deletions reactos/dll/win32/shell32/lang/cs-CZ.rc
Expand Up @@ -438,8 +438,8 @@ BEGIN
PUSHBUTTON "&Použít pro všechny složky", 14001, 60, 50, 80, 14, WS_TABSTOP
PUSHBUTTON "Ob&novit všechny složky", 14002, 150, 50, 80, 14, WS_TABSTOP
LTEXT "Pokročilá nastavení:", -1, 7, 80, 100, 10
CONTROL "", 14003, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_NOCOLUMNHEADER | LVS_SHAREIMAGELISTS | WS_BORDER | WS_TABSTOP, 7, 90, 249, 120
PUSHBUTTON "Obnovit výchozí", 14004, 180, 210, 80, 14, WS_TABSTOP
CONTROL "", 14003, "SysTreeView32", WS_BORDER | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP | TVS_DISABLEDRAGDROP | TVS_LINESATROOT, 7, 90, 249, 120
PUSHBUTTON "Obnovit výchozí", 14004, 177, 215, 80, 14, WS_TABSTOP
END

IDD_FOLDER_OPTIONS_FILETYPES DIALOGEX 0, 0, 264, 256
Expand Down
24 changes: 22 additions & 2 deletions reactos/dll/win32/shell32/lang/da-DK.rc
Expand Up @@ -438,8 +438,8 @@ BEGIN
PUSHBUTTON "Apply to A&ll Folders", 14001, 60, 50, 80, 14, WS_TABSTOP
PUSHBUTTON "&Reset All Folders", 14002, 150, 50, 80, 14, WS_TABSTOP
LTEXT "Advanced settings:", -1, 7, 80, 100, 10
CONTROL "", 14003, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_NOCOLUMNHEADER | LVS_SHAREIMAGELISTS | WS_BORDER | WS_TABSTOP, 7, 90, 249, 120
PUSHBUTTON "Restore &Defaults", 14004, 180, 210, 80, 14, WS_TABSTOP
CONTROL "", 14003, "SysTreeView32", WS_BORDER | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP | TVS_DISABLEDRAGDROP | TVS_LINESATROOT, 7, 90, 249, 120
PUSHBUTTON "Restore &Defaults", 14004, 177, 215, 80, 14, WS_TABSTOP
END

IDD_FOLDER_OPTIONS_FILETYPES DIALOGEX 0, 0, 264, 256
Expand Down Expand Up @@ -841,4 +841,24 @@ BEGIN
IDS_MENU_EMPTY "(Empty)"
IDS_OBJECTS "%d Objects"
IDS_OBJECTS_SELECTED "%d Objects Selected"

IDS_ADVANCED_FOLDER "Files and Folders"
IDS_ADVANCED_NET_CRAWLER "Automatically search for network folders and printers"
IDS_ADVANCED_FOLDER_SIZE_TIP "Display file size information in folder tips"
IDS_ADVANCED_FRIENDLY_TREE "Display simple folder view in Explorer's Folders list"
IDS_ADVANCED_WEB_VIEW_BARRICADE "Display the contents of system folders"
IDS_ADVANCED_SHOW_FULL_PATH_ADDRESS "Display the full path in address bar"
IDS_ADVANCED_SHOW_FULL_PATH "Display the full path in the title bar"
IDS_ADVANCED_DISABLE_THUMB_CACHE "Do not cache thumbnails"
IDS_ADVANCED_HIDDEN "Hidden files and folders"
IDS_ADVANCED_DONT_SHOW_HIDDEN "Do not show hidden files and folders"
IDS_ADVANCED_SHOW_HIDDEN "Show hidden files and folders"
IDS_ADVANCED_HIDE_FILE_EXT "Hide extensions for known file types"
IDS_ADVANCED_SUPER_HIDDEN "Hide protected operating system files (Recommended)"
IDS_ADVANCED_DESKTOP_PROCESS "Launch folder windows in a separate process"
IDS_ADVANCED_CLASSIC_VIEW_STATE "Remember each folder's view settings"
IDS_ADVANCED_PERSIST_BROWSERS "Restore previous folder windows at logon"
IDS_ADVANCED_CONTROL_PANEL_IN_MY_COMPUTER "Show Control Panel in My Computer"
IDS_ADVANCED_SHOW_COMP_COLOR "Show encrypted or compressed NTFS files in color"
IDS_ADVANCED_SHOW_INFO_TIP "Show pop-up description for folder and desktop items"
END
22 changes: 21 additions & 1 deletion reactos/dll/win32/shell32/lang/de-DE.rc
Expand Up @@ -432,7 +432,7 @@ BEGIN
PUSHBUTTON "Auf a&lle Ordner anwenden", 14001, 60, 50, 90, 14, WS_TABSTOP
PUSHBUTTON "&Alle Ordner zurücksetzen", 14002, 160, 50, 90, 14, WS_TABSTOP
LTEXT "Erweiterte Einstellungen:", -1, 7, 80, 100, 10
CONTROL "", 14003, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_NOCOLUMNHEADER | LVS_SHAREIMAGELISTS | WS_BORDER | WS_TABSTOP, 7, 90, 249, 140
CONTROL "", 14003, "SysTreeView32", WS_BORDER | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP | TVS_DISABLEDRAGDROP | TVS_LINESATROOT, 7, 90, 249, 120
PUSHBUTTON "&Wiederherstellen", 14004, 191, 235, 65, 14, WS_TABSTOP
END

Expand Down Expand Up @@ -836,4 +836,24 @@ BEGIN
IDS_MENU_EMPTY "(Leer)"
IDS_OBJECTS "%d Objekte"
IDS_OBJECTS_SELECTED "%d Objekte ausgewählt"

IDS_ADVANCED_FOLDER "Files and Folders"
IDS_ADVANCED_NET_CRAWLER "Automatically search for network folders and printers"
IDS_ADVANCED_FOLDER_SIZE_TIP "Display file size information in folder tips"
IDS_ADVANCED_FRIENDLY_TREE "Display simple folder view in Explorer's Folders list"
IDS_ADVANCED_WEB_VIEW_BARRICADE "Display the contents of system folders"
IDS_ADVANCED_SHOW_FULL_PATH_ADDRESS "Display the full path in address bar"
IDS_ADVANCED_SHOW_FULL_PATH "Display the full path in the title bar"
IDS_ADVANCED_DISABLE_THUMB_CACHE "Do not cache thumbnails"
IDS_ADVANCED_HIDDEN "Hidden files and folders"
IDS_ADVANCED_DONT_SHOW_HIDDEN "Do not show hidden files and folders"
IDS_ADVANCED_SHOW_HIDDEN "Show hidden files and folders"
IDS_ADVANCED_HIDE_FILE_EXT "Hide extensions for known file types"
IDS_ADVANCED_SUPER_HIDDEN "Hide protected operating system files (Recommended)"
IDS_ADVANCED_DESKTOP_PROCESS "Launch folder windows in a separate process"
IDS_ADVANCED_CLASSIC_VIEW_STATE "Remember each folder's view settings"
IDS_ADVANCED_PERSIST_BROWSERS "Restore previous folder windows at logon"
IDS_ADVANCED_CONTROL_PANEL_IN_MY_COMPUTER "Show Control Panel in My Computer"
IDS_ADVANCED_SHOW_COMP_COLOR "Show encrypted or compressed NTFS files in color"
IDS_ADVANCED_SHOW_INFO_TIP "Show pop-up description for folder and desktop items"
END
24 changes: 22 additions & 2 deletions reactos/dll/win32/shell32/lang/el-GR.rc
Expand Up @@ -432,8 +432,8 @@ BEGIN
PUSHBUTTON "Apply to A&ll Folders", 14001, 60, 50, 80, 14, WS_TABSTOP
PUSHBUTTON "&Reset All Folders", 14002, 150, 50, 80, 14, WS_TABSTOP
LTEXT "Advanced settings:", -1, 7, 80, 100, 10
CONTROL "", 14003, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_NOCOLUMNHEADER | LVS_SHAREIMAGELISTS | WS_BORDER | WS_TABSTOP, 7, 90, 249, 120
PUSHBUTTON "Restore &Defaults", 14004, 180, 210, 80, 14, WS_TABSTOP
CONTROL "", 14003, "SysTreeView32", WS_BORDER | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP | TVS_DISABLEDRAGDROP | TVS_LINESATROOT, 7, 90, 249, 120
PUSHBUTTON "Restore &Defaults", 14004, 177, 215, 80, 14, WS_TABSTOP
END

IDD_FOLDER_OPTIONS_FILETYPES DIALOGEX 0, 0, 264, 256
Expand Down Expand Up @@ -835,4 +835,24 @@ BEGIN
IDS_MENU_EMPTY "(Empty)"
IDS_OBJECTS "%d Objects"
IDS_OBJECTS_SELECTED "%d Objects Selected"

IDS_ADVANCED_FOLDER "Files and Folders"
IDS_ADVANCED_NET_CRAWLER "Automatically search for network folders and printers"
IDS_ADVANCED_FOLDER_SIZE_TIP "Display file size information in folder tips"
IDS_ADVANCED_FRIENDLY_TREE "Display simple folder view in Explorer's Folders list"
IDS_ADVANCED_WEB_VIEW_BARRICADE "Display the contents of system folders"
IDS_ADVANCED_SHOW_FULL_PATH_ADDRESS "Display the full path in address bar"
IDS_ADVANCED_SHOW_FULL_PATH "Display the full path in the title bar"
IDS_ADVANCED_DISABLE_THUMB_CACHE "Do not cache thumbnails"
IDS_ADVANCED_HIDDEN "Hidden files and folders"
IDS_ADVANCED_DONT_SHOW_HIDDEN "Do not show hidden files and folders"
IDS_ADVANCED_SHOW_HIDDEN "Show hidden files and folders"
IDS_ADVANCED_HIDE_FILE_EXT "Hide extensions for known file types"
IDS_ADVANCED_SUPER_HIDDEN "Hide protected operating system files (Recommended)"
IDS_ADVANCED_DESKTOP_PROCESS "Launch folder windows in a separate process"
IDS_ADVANCED_CLASSIC_VIEW_STATE "Remember each folder's view settings"
IDS_ADVANCED_PERSIST_BROWSERS "Restore previous folder windows at logon"
IDS_ADVANCED_CONTROL_PANEL_IN_MY_COMPUTER "Show Control Panel in My Computer"
IDS_ADVANCED_SHOW_COMP_COLOR "Show encrypted or compressed NTFS files in color"
IDS_ADVANCED_SHOW_INFO_TIP "Show pop-up description for folder and desktop items"
END
24 changes: 22 additions & 2 deletions reactos/dll/win32/shell32/lang/en-GB.rc
Expand Up @@ -432,8 +432,8 @@ BEGIN
PUSHBUTTON "Apply to A&ll Folders", 14001, 60, 50, 80, 14, WS_TABSTOP
PUSHBUTTON "&Reset All Folders", 14002, 150, 50, 80, 14, WS_TABSTOP
LTEXT "Advanced settings:", -1, 7, 80, 100, 10
CONTROL "", 14003, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_NOCOLUMNHEADER | LVS_SHAREIMAGELISTS | WS_BORDER | WS_TABSTOP, 7, 90, 249, 120
PUSHBUTTON "Restore &Defaults", 14004, 180, 210, 80, 14, WS_TABSTOP
CONTROL "", 14003, "SysTreeView32", WS_BORDER | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP | TVS_DISABLEDRAGDROP | TVS_LINESATROOT, 7, 90, 249, 120
PUSHBUTTON "Restore &Defaults", 14004, 177, 215, 80, 14, WS_TABSTOP
END

IDD_FOLDER_OPTIONS_FILETYPES DIALOGEX 0, 0, 264, 256
Expand Down Expand Up @@ -835,4 +835,24 @@ BEGIN
IDS_MENU_EMPTY "(Empty)"
IDS_OBJECTS "%d Objects"
IDS_OBJECTS_SELECTED "%d Objects Selected"

IDS_ADVANCED_FOLDER "Files and Folders"
IDS_ADVANCED_NET_CRAWLER "Automatically search for network folders and printers"
IDS_ADVANCED_FOLDER_SIZE_TIP "Display file size information in folder tips"
IDS_ADVANCED_FRIENDLY_TREE "Display simple folder view in Explorer's Folders list"
IDS_ADVANCED_WEB_VIEW_BARRICADE "Display the contents of system folders"
IDS_ADVANCED_SHOW_FULL_PATH_ADDRESS "Display the full path in address bar"
IDS_ADVANCED_SHOW_FULL_PATH "Display the full path in the title bar"
IDS_ADVANCED_DISABLE_THUMB_CACHE "Do not cache thumbnails"
IDS_ADVANCED_HIDDEN "Hidden files and folders"
IDS_ADVANCED_DONT_SHOW_HIDDEN "Do not show hidden files and folders"
IDS_ADVANCED_SHOW_HIDDEN "Show hidden files and folders"
IDS_ADVANCED_HIDE_FILE_EXT "Hide extensions for known file types"
IDS_ADVANCED_SUPER_HIDDEN "Hide protected operating system files (Recommended)"
IDS_ADVANCED_DESKTOP_PROCESS "Launch folder windows in a separate process"
IDS_ADVANCED_CLASSIC_VIEW_STATE "Remember each folder's view settings"
IDS_ADVANCED_PERSIST_BROWSERS "Restore previous folder windows at logon"
IDS_ADVANCED_CONTROL_PANEL_IN_MY_COMPUTER "Show Control Panel in My Computer"
IDS_ADVANCED_SHOW_COMP_COLOR "Show encrypted or compressed NTFS files in color"
IDS_ADVANCED_SHOW_INFO_TIP "Show pop-up description for folder and desktop items"
END
24 changes: 22 additions & 2 deletions reactos/dll/win32/shell32/lang/en-US.rc
Expand Up @@ -432,8 +432,8 @@ BEGIN
PUSHBUTTON "Apply to A&ll Folders", 14001, 60, 50, 80, 14, WS_TABSTOP
PUSHBUTTON "&Reset All Folders", 14002, 150, 50, 80, 14, WS_TABSTOP
LTEXT "Advanced settings:", -1, 7, 80, 100, 10
CONTROL "", 14003, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_NOCOLUMNHEADER | LVS_SHAREIMAGELISTS | WS_BORDER | WS_TABSTOP, 7, 90, 249, 120
PUSHBUTTON "Restore &Defaults", 14004, 180, 210, 80, 14, WS_TABSTOP
CONTROL "", 14003, "SysTreeView32", WS_BORDER | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP | TVS_DISABLEDRAGDROP | TVS_LINESATROOT, 7, 90, 249, 120
PUSHBUTTON "Restore &Defaults", 14004, 177, 215, 80, 14, WS_TABSTOP
END

IDD_FOLDER_OPTIONS_FILETYPES DIALOGEX 0, 0, 264, 256
Expand Down Expand Up @@ -835,4 +835,24 @@ BEGIN
IDS_MENU_EMPTY "(Empty)"
IDS_OBJECTS "%d Objects"
IDS_OBJECTS_SELECTED "%d Objects Selected"

IDS_ADVANCED_FOLDER "Files and Folders"
IDS_ADVANCED_NET_CRAWLER "Automatically search for network folders and printers"
IDS_ADVANCED_FOLDER_SIZE_TIP "Display file size information in folder tips"
IDS_ADVANCED_FRIENDLY_TREE "Display simple folder view in Explorer's Folders list"
IDS_ADVANCED_WEB_VIEW_BARRICADE "Display the contents of system folders"
IDS_ADVANCED_SHOW_FULL_PATH_ADDRESS "Display the full path in address bar"
IDS_ADVANCED_SHOW_FULL_PATH "Display the full path in the title bar"
IDS_ADVANCED_DISABLE_THUMB_CACHE "Do not cache thumbnails"
IDS_ADVANCED_HIDDEN "Hidden files and folders"
IDS_ADVANCED_DONT_SHOW_HIDDEN "Do not show hidden files and folders"
IDS_ADVANCED_SHOW_HIDDEN "Show hidden files and folders"
IDS_ADVANCED_HIDE_FILE_EXT "Hide extensions for known file types"
IDS_ADVANCED_SUPER_HIDDEN "Hide protected operating system files (Recommended)"
IDS_ADVANCED_DESKTOP_PROCESS "Launch folder windows in a separate process"
IDS_ADVANCED_CLASSIC_VIEW_STATE "Remember each folder's view settings"
IDS_ADVANCED_PERSIST_BROWSERS "Restore previous folder windows at logon"
IDS_ADVANCED_CONTROL_PANEL_IN_MY_COMPUTER "Show Control Panel in My Computer"
IDS_ADVANCED_SHOW_COMP_COLOR "Show encrypted or compressed NTFS files in color"
IDS_ADVANCED_SHOW_INFO_TIP "Show pop-up description for folder and desktop items"
END
22 changes: 21 additions & 1 deletion reactos/dll/win32/shell32/lang/es-ES.rc
Expand Up @@ -434,7 +434,7 @@ BEGIN
PUSHBUTTON "A&plicar a todas las carpetas", 14001, 60, 50, 100, 14, WS_TABSTOP
PUSHBUTTON "R&estaurar todas las carpetas", 14002, 165, 50, 100, 14, WS_TABSTOP
LTEXT "Configuración avanzada:", -1, 7, 80, 100, 10
CONTROL "", 14003, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_NOCOLUMNHEADER | LVS_SHAREIMAGELISTS | WS_BORDER | WS_TABSTOP, 7, 90, 279, 120
CONTROL "", 14003, "SysTreeView32", WS_BORDER | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP | TVS_DISABLEDRAGDROP | TVS_LINESATROOT, 7, 90, 249, 120
PUSHBUTTON "&Restaurar valores predeterminados", 14004, 156, 220, 130, 14, WS_TABSTOP
END

Expand Down Expand Up @@ -837,4 +837,24 @@ BEGIN
IDS_MENU_EMPTY "(Vacío)"
IDS_OBJECTS "%d elementos"
IDS_OBJECTS_SELECTED "%d elementos seleccionados"

IDS_ADVANCED_FOLDER "Files and Folders"
IDS_ADVANCED_NET_CRAWLER "Automatically search for network folders and printers"
IDS_ADVANCED_FOLDER_SIZE_TIP "Display file size information in folder tips"
IDS_ADVANCED_FRIENDLY_TREE "Display simple folder view in Explorer's Folders list"
IDS_ADVANCED_WEB_VIEW_BARRICADE "Display the contents of system folders"
IDS_ADVANCED_SHOW_FULL_PATH_ADDRESS "Display the full path in address bar"
IDS_ADVANCED_SHOW_FULL_PATH "Display the full path in the title bar"
IDS_ADVANCED_DISABLE_THUMB_CACHE "Do not cache thumbnails"
IDS_ADVANCED_HIDDEN "Hidden files and folders"
IDS_ADVANCED_DONT_SHOW_HIDDEN "Do not show hidden files and folders"
IDS_ADVANCED_SHOW_HIDDEN "Show hidden files and folders"
IDS_ADVANCED_HIDE_FILE_EXT "Hide extensions for known file types"
IDS_ADVANCED_SUPER_HIDDEN "Hide protected operating system files (Recommended)"
IDS_ADVANCED_DESKTOP_PROCESS "Launch folder windows in a separate process"
IDS_ADVANCED_CLASSIC_VIEW_STATE "Remember each folder's view settings"
IDS_ADVANCED_PERSIST_BROWSERS "Restore previous folder windows at logon"
IDS_ADVANCED_CONTROL_PANEL_IN_MY_COMPUTER "Show Control Panel in My Computer"
IDS_ADVANCED_SHOW_COMP_COLOR "Show encrypted or compressed NTFS files in color"
IDS_ADVANCED_SHOW_INFO_TIP "Show pop-up description for folder and desktop items"
END

0 comments on commit 029cc4a

Please sign in to comment.