Commit 623694a6 authored by Michael Müller's avatar Michael Müller Committed by Vitaly Lipatov

shell32: Add security property tab.

parent 723a2b5c
MODULE = shell32.dll
IMPORTLIB = shell32
IMPORTS = uuid shlwapi user32 gdi32 advapi32
IMPORTS = uuid shlwapi user32 gdi32 advapi32 aclui
DELAYIMPORTS = ole32 oleaut32 shdocvw version comctl32 gdiplus
C_SRCS = \
......
......@@ -202,6 +202,33 @@ the folder?"
IDS_RUNDLG_BROWSE_FILTER_EXE "Executable files (*.exe)"
IDS_RUNDLG_BROWSE_FILTER_ALL "All files (*.*)"
/* Security dialog - General */
IDS_SECURITY_ALL_ACCESS "Full Control"
IDS_SECURITY_MODIFY "Modify"
IDS_SECURITY_READ_EXEC "Read & Execute"
IDS_SECURITY_READ "Read"
IDS_SECURITY_WRITE "Write"
IDS_SECURITY_DIR_LIST "List Folder Contents"
/* Security dialog - Advanced */
IDS_SECURITY_TRAVERSE "Traverse Folder"
IDS_SECURITY_EXECUTE "Execute File"
IDS_SECURITY_LIST_FOLDER "List Folder"
IDS_SECURITY_READ_DATA "Read Data"
IDS_SECURITY_READ_ATTR "Read Attributes"
IDS_SECURITY_READ_EX_ATTR "Read Extended Attributes"
IDS_SECURITY_CREATE_FILES "Create Files"
IDS_SECURITY_WRITE_DATA "Write Data"
IDS_SEUCRITY_CREATE_FOLDER "Create Folders"
IDS_SECURITY_APPEND_DATA "Append Data"
IDS_SECURITY_WRITE_ATTR "Write Attributes"
IDS_SECURITY_WRITE_EX_ATTR "Write Extended Attributes"
IDS_SECURITY_DELETE_CHILD "Delete Subfolders and Files"
IDS_SECURITY_DELETE "Delete"
IDS_SECURITY_READ_PERM "Read Permissions"
IDS_SECURITY_CHANGE_PERM "Change Permissions"
IDS_SECURITY_CHANGE_OWNER "Take Ownership"
/* shell folder path default values */
/* FIXME: Some will be unused until desktop.ini support is implemented */
IDS_PROGRAMS "Programs"
......
......@@ -155,6 +155,33 @@
#define IDS_FILEOP_FROM 337
#define IDS_FILEOP_PREFLIGHT 338
/* Strings for security dialog - General */
#define IDS_SECURITY_ALL_ACCESS 340
#define IDS_SECURITY_MODIFY 341
#define IDS_SECURITY_READ_EXEC 342
#define IDS_SECURITY_READ 343
#define IDS_SECURITY_WRITE 344
#define IDS_SECURITY_DIR_LIST 345
/* Strings for security dialog - Advanced */
#define IDS_SECURITY_TRAVERSE 346
#define IDS_SECURITY_EXECUTE 347
#define IDS_SECURITY_LIST_FOLDER 348
#define IDS_SECURITY_READ_DATA 349
#define IDS_SECURITY_READ_ATTR 350
#define IDS_SECURITY_READ_EX_ATTR 351
#define IDS_SECURITY_CREATE_FILES 352
#define IDS_SECURITY_WRITE_DATA 353
#define IDS_SEUCRITY_CREATE_FOLDER 354
#define IDS_SECURITY_APPEND_DATA 355
#define IDS_SECURITY_WRITE_ATTR 356
#define IDS_SECURITY_WRITE_EX_ATTR 357
#define IDS_SECURITY_DELETE_CHILD 358
#define IDS_SECURITY_DELETE 359
#define IDS_SECURITY_READ_PERM 360
#define IDS_SECURITY_CHANGE_PERM 361
#define IDS_SECURITY_CHANGE_OWNER 362
/* Note: this string is referenced from the registry*/
#define IDS_RECYCLEBIN_FOLDER_NAME 8964
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment