Author: gedmurphy
Date: Wed May 25 21:05:22 2011
New Revision: 51911
URL:
http://svn.reactos.org/svn/reactos?rev=51911&view=rev
Log:
[SHELL32_NEW]
- Merge 51127
- Sync RunFileDlg to wine
Modified:
branches/shell32_new-bringup/dll/win32/shell32/clipboard.cpp
branches/shell32_new-bringup/dll/win32/shell32/dialogs.cpp
branches/shell32_new-bringup/dll/win32/shell32/lang/bg-BG.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/ca-ES.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/cs-CZ.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/da-DK.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/de-DE.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/el-GR.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/en-GB.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/en-US.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/es-ES.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/fi-FI.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/fr-FR.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/hu-HU.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/it-IT.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/ja-JP.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/ko-KR.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/nl-NL.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/no-NO.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/pl-PL.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/pt-BR.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/pt-PT.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/ro-RO.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/ru-RU.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/sk-SK.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/sl-SI.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/sv-SE.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/tr-TR.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/uk-UA.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/zh-CN.rc
branches/shell32_new-bringup/dll/win32/shell32/lang/zh-TW.rc
branches/shell32_new-bringup/dll/win32/shell32/she_ocmenu.cpp
branches/shell32_new-bringup/dll/win32/shell32/shell32.spec
branches/shell32_new-bringup/dll/win32/shell32/shresdef.h
branches/shell32_new-bringup/dll/win32/shell32/undocshell.h
Modified: branches/shell32_new-bringup/dll/win32/shell32/clipboard.cpp
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/clipboard.cpp [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/clipboard.cpp [iso-8859-1] Wed May 25
21:05:22 2011
@@ -49,15 +49,16 @@
UINT i;
int size = 0;
WCHAR wszFileName[MAX_PATH];
- HGLOBAL hGlobal;
+ HGLOBAL hGlobal = NULL;
DROPFILES *pDropFiles;
int offset;
LPITEMIDLIST *pidls;
TRACE("(%p,%p,%u)\n", pidlRoot, apidl, cidl);
- pidls = (LPITEMIDLIST *)HeapAlloc(GetProcessHeap(), 0, cidl * sizeof *pidls);
- if (!pidls) return NULL;
+ pidls = (LPITEMIDLIST *)HeapAlloc(GetProcessHeap(), 0, cidl * sizeof(*pidls));
+ if (!pidls)
+ goto cleanup;
/* get the size needed */
size = sizeof(DROPFILES);
@@ -73,7 +74,8 @@
/* Fill the structure */
hGlobal = GlobalAlloc(GHND|GMEM_SHARE, size);
- if(!hGlobal) return hGlobal;
+ if(!hGlobal)
+ goto cleanup;
pDropFiles = (DROPFILES *)GlobalLock(hGlobal);
offset = (sizeof(DROPFILES) + sizeof(WCHAR) - 1) / sizeof(WCHAR);
@@ -91,7 +93,9 @@
((WCHAR*)pDropFiles)[offset] = 0;
GlobalUnlock(hGlobal);
- HeapFree(GetProcessHeap(), 0, pidls);
+cleanup:
+ if(pidls)
+ HeapFree(GetProcessHeap(), 0, pidls);
return hGlobal;
}
Modified: branches/shell32_new-bringup/dll/win32/shell32/dialogs.cpp
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/dialogs.cpp [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/dialogs.cpp [iso-8859-1] Wed May 25
21:05:22 2011
@@ -25,17 +25,17 @@
{
HWND hwndOwner ;
HICON hIcon ;
- LPCSTR lpstrDirectory ;
- LPCSTR lpstrTitle ;
- LPCSTR lpstrDescription ;
+ LPCWSTR lpstrDirectory ;
+ LPCWSTR lpstrTitle ;
+ LPCWSTR lpstrDescription ;
UINT uFlags ;
} RUNFILEDLGPARAMS ;
-typedef BOOL (*LPFNOFN) (OPENFILENAMEA *) ;
+typedef BOOL (WINAPI * LPFNOFN) (OPENFILENAMEW *) ;
WINE_DEFAULT_DEBUG_CHANNEL(shell);
static INT_PTR CALLBACK RunDlgProc (HWND, UINT, WPARAM, LPARAM) ;
-static void FillList (HWND, char *) ;
+static void FillList (HWND, char *, BOOL) ;
/*************************************************************************
@@ -261,23 +261,22 @@
}
/*************************************************************************
- * RunFileDlg [SHELL32.61]
+ * RunFileDlg [internal]
*
- * NOTES
- * Original name: RunFileDlg (exported by ordinal)
+ * The Unicode function that is available as ordinal 61 on Windows NT/2000/XP/...
*/
void WINAPI RunFileDlg(
HWND hwndOwner,
HICON hIcon,
- LPCSTR lpstrDirectory,
- LPCSTR lpstrTitle,
- LPCSTR lpstrDescription,
+ LPCWSTR lpstrDirectory,
+ LPCWSTR lpstrTitle,
+ LPCWSTR lpstrDescription,
UINT uFlags)
{
-
+ static const WCHAR resnameW[] =
{'S','H','E','L','L','_','R','U','N','_','D','L','G',0};
RUNFILEDLGPARAMS rfdp;
HRSRC hRes;
- DLGTEMPLATE *templatex;
+ LPVOID tmplate;
TRACE("\n");
rfdp.hwndOwner = hwndOwner;
@@ -287,43 +286,107 @@
rfdp.lpstrDescription = lpstrDescription;
rfdp.uFlags = uFlags;
- if(!(hRes = FindResourceA(shell32_hInstance, "SHELL_RUN_DLG",
(LPSTR)RT_DIALOG)))
- {
- MessageBoxA (hwndOwner, "Couldn't find dialog.", "Nix",
MB_OK) ;
+ if (!(hRes = FindResourceW(shell32_hInstance, resnameW, (LPWSTR)RT_DIALOG)) ||
+ !(tmplate = LoadResource(shell32_hInstance, hRes)))
+ {
+ ERR("Couldn't load SHELL_RUN_DLG resource\n");
+ ShellMessageBoxW(shell32_hInstance, hwndOwner,
MAKEINTRESOURCEW(IDS_RUNDLG_ERROR), NULL, MB_OK | MB_ICONERROR);
return;
- }
- if(!(templatex = (DLGTEMPLATE *)LoadResource(shell32_hInstance, hRes)))
- {
- MessageBoxA (hwndOwner, "Couldn't load dialog.", "Nix",
MB_OK) ;
- return;
- }
-
- DialogBoxIndirectParamA((HINSTANCE)GetWindowLongPtrW( hwndOwner,
- GWLP_HINSTANCE ),
- templatex, hwndOwner, RunDlgProc, (LPARAM)&rfdp);
-
-}
+ }
+
+ DialogBoxIndirectParamW(shell32_hInstance,
+ (LPCDLGTEMPLATEW)tmplate, hwndOwner, RunDlgProc, (LPARAM)&rfdp);
+
+}
+
+
+/* find the directory that contains the file being run */
+static LPWSTR RunDlg_GetParentDir(LPCWSTR cmdline)
+{
+ const WCHAR *src;
+ WCHAR *dest, *result, *result_end=NULL;
+ static const WCHAR dotexeW[] = {'.','e','x','e',0};
+
+ result = (WCHAR *)HeapAlloc(GetProcessHeap(), 0,
sizeof(WCHAR)*(strlenW(cmdline)+5));
+
+ src = cmdline;
+ dest = result;
+
+ if (*src == '"')
+ {
+ src++;
+ while (*src && *src != '"')
+ {
+ if (*src == '\\')
+ result_end = dest;
+ *dest++ = *src++;
+ }
+ }
+ else {
+ while (*src)
+ {
+ if (isspaceW(*src))
+ {
+ *dest = 0;
+ if (INVALID_FILE_ATTRIBUTES != GetFileAttributesW(result))
+ break;
+ strcatW(dest, dotexeW);
+ if (INVALID_FILE_ATTRIBUTES != GetFileAttributesW(result))
+ break;
+ }
+ else if (*src == '\\')
+ result_end = dest;
+ *dest++ = *src++;
+ }
+ }
+
+ if (result_end)
+ {
+ *result_end = 0;
+ return result;
+ }
+ else
+ {
+ HeapFree(GetProcessHeap(), 0, result);
+ return NULL;
+ }
+}
+
/* Dialog procedure for RunFileDlg */
static INT_PTR CALLBACK RunDlgProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM
lParam)
{
- int ic ;
- char *psz, *pdir, szMsg[256];
- static RUNFILEDLGPARAMS *prfdp = NULL ;
+ RUNFILEDLGPARAMS *prfdp = (RUNFILEDLGPARAMS *)GetWindowLongPtrW(hwnd, DWLP_USER);
switch (message)
{
case WM_INITDIALOG :
prfdp = (RUNFILEDLGPARAMS *)lParam ;
+ SetWindowLongPtrW(hwnd, DWLP_USER, (LONG_PTR)prfdp);
if (prfdp->lpstrTitle)
- SetWindowTextA (hwnd, prfdp->lpstrTitle) ;
-
- SetClassLongPtrW (hwnd, GCLP_HICON, (LPARAM)prfdp->hIcon) ;
- SendMessageW (GetDlgItem (hwnd, 12297), STM_SETICON,
- (WPARAM)LoadIconW (NULL, (LPCWSTR)IDI_WINLOGO), 0);
- FillList (GetDlgItem (hwnd, 12298), NULL) ;
- SetFocus (GetDlgItem (hwnd, 12298)) ;
+ SetWindowTextW(hwnd, prfdp->lpstrTitle);
+ if (prfdp->lpstrDescription)
+ SetWindowTextW(GetDlgItem(hwnd, IDC_RUNDLG_DESCRIPTION),
prfdp->lpstrDescription);
+ if (prfdp->uFlags & RFF_NOBROWSE)
+ {
+ HWND browse = GetDlgItem(hwnd, IDC_RUNDLG_BROWSE);
+ ShowWindow(browse, SW_HIDE);
+ EnableWindow(browse, FALSE);
+ }
+ if (prfdp->uFlags & RFF_NOLABEL)
+ ShowWindow(GetDlgItem(hwnd, IDC_RUNDLG_LABEL), SW_HIDE);
+ if (prfdp->uFlags & RFF_CALCDIRECTORY)
+ FIXME("RFF_CALCDIRECTORY not supported\n");
+
+ if (prfdp->hIcon == NULL)
+ prfdp->hIcon = LoadIconW(NULL, (LPCWSTR)IDI_WINLOGO);
+ SendMessageW(hwnd, WM_SETICON, ICON_BIG, (LPARAM)prfdp->hIcon);
+ SendMessageW(hwnd, WM_SETICON, ICON_SMALL, (LPARAM)prfdp->hIcon);
+ SendMessageW(GetDlgItem(hwnd, IDC_RUNDLG_ICON), STM_SETICON,
(WPARAM)prfdp->hIcon, 0);
+
+ FillList (GetDlgItem (hwnd, IDC_RUNDLG_EDITPATH), NULL, (prfdp->uFlags
& RFF_NODEFAULT) == 0) ;
+ SetFocus (GetDlgItem (hwnd, IDC_RUNDLG_EDITPATH)) ;
return TRUE ;
case WM_COMMAND :
@@ -331,46 +394,45 @@
{
case IDOK :
{
- HWND htxt = NULL ;
- if ((ic = GetWindowTextLengthA (htxt = GetDlgItem (hwnd, 12298))))
+ int ic ;
+ HWND htxt = GetDlgItem (hwnd, IDC_RUNDLG_EDITPATH);
+ if ((ic = GetWindowTextLengthW (htxt)))
{
- psz = (char *)HeapAlloc( GetProcessHeap(), 0, (ic + 2) );
- GetWindowTextA (htxt, psz, ic + 1) ;
- pdir = (char *)HeapAlloc( GetProcessHeap(), 0, (ic + 2) );
- if (pdir)
- {
- char * ptr;
- strcpy(pdir, psz);
- ptr = strrchr(pdir + 4, '\\');
- if(ptr)
- ptr[0] = '\0';
- else
- pdir[3] = '\0';
- }
- if (ShellExecuteA(NULL, NULL, psz, NULL, pdir, SW_SHOWNORMAL)
< (HINSTANCE)33)
- {
- char *pszSysMsg = NULL ;
- FormatMessageA (
- FORMAT_MESSAGE_ALLOCATE_BUFFER |
- FORMAT_MESSAGE_FROM_SYSTEM |
- FORMAT_MESSAGE_IGNORE_INSERTS,
- NULL, GetLastError (),
- MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
- (LPSTR)&pszSysMsg, 0, NULL
- ) ;
- sprintf (szMsg, "Error: %s", pszSysMsg) ;
- LocalFree ((HLOCAL)pszSysMsg) ;
- MessageBoxA (hwnd, szMsg, NULL, MB_OK | MB_ICONEXCLAMATION)
;
-
+ WCHAR *psz, *parent=NULL ;
+ SHELLEXECUTEINFOW sei ;
+
+ ZeroMemory (&sei, sizeof(sei)) ;
+ sei.cbSize = sizeof(sei) ;
+ psz = (WCHAR *)HeapAlloc( GetProcessHeap(), 0, (ic +
1)*sizeof(WCHAR) );
+ GetWindowTextW (htxt, psz, ic + 1) ;
+
+ /* according to
http://www.codeproject.com/KB/shell/runfiledlg.aspx we should send a
+ * WM_NOTIFY before execution */
+
+ sei.hwnd = hwnd;
+ sei.nShow = SW_SHOWNORMAL;
+ sei.lpFile = psz;
+
+ if (prfdp->lpstrDirectory)
+ sei.lpDirectory = prfdp->lpstrDirectory;
+ else
+ sei.lpDirectory = parent = RunDlg_GetParentDir(sei.lpFile);
+
+ if (!ShellExecuteExW( &sei ))
+ {
HeapFree(GetProcessHeap(), 0, psz);
- HeapFree(GetProcessHeap(), 0, pdir);
+ HeapFree(GetProcessHeap(), 0, parent);
SendMessageA (htxt, CB_SETEDITSEL, 0, MAKELPARAM (0, -1)) ;
return TRUE ;
- }
- FillList (htxt, psz) ;
+ }
+
+ /* FillList is still ANSI */
+ GetWindowTextA (htxt, (LPSTR)psz, ic + 1) ;
+ FillList (htxt, (LPSTR)psz, FALSE) ;
+
HeapFree(GetProcessHeap(), 0, psz);
- HeapFree(GetProcessHeap(), 0, pdir);
- EndDialog (hwnd, 0) ;
+ HeapFree(GetProcessHeap(), 0, parent);
+ EndDialog (hwnd, 0);
}
}
@@ -378,55 +440,43 @@
EndDialog (hwnd, 0) ;
return TRUE ;
- case 12288 :
+ case IDC_RUNDLG_BROWSE :
{
HMODULE hComdlg = NULL ;
LPFNOFN ofnProc = NULL ;
- static char szFName[1024] = "", szFileTitle[256] =
"", szInitDir[768] = "" ;
- static OPENFILENAMEA ofn =
- {
- sizeof (OPENFILENAMEA),
- NULL,
- NULL,
- "Executable Files\0*.exe\0All Files\0*.*\0\0\0\0",
- NULL,
- 0,
- 0,
- szFName,
- 1023,
- szFileTitle,
- 255,
- (LPCSTR)szInitDir,
- "Browse",
- OFN_ENABLESIZING | OFN_FILEMUSTEXIST | OFN_HIDEREADONLY |
OFN_PATHMUSTEXIST,
- 0,
- 0,
- NULL,
- 0,
- (LPOFNHOOKPROC)NULL,
- NULL
- } ;
-
- ofn.hwndOwner = hwnd ;
-
- if (NULL == (hComdlg = LoadLibraryExA ("comdlg32", NULL,
0)))
- {
- MessageBoxA (hwnd, "Unable to display dialog box
(LoadLibraryEx) !", "Nix", MB_OK | MB_ICONEXCLAMATION) ;
+ static const WCHAR comdlg32W[] =
{'c','o','m','d','l','g','3','2',0};
+ WCHAR szFName[1024] = {0};
+ WCHAR filter[MAX_PATH], szCaption[MAX_PATH];
+ OPENFILENAMEW ofn;
+
+ LoadStringW(shell32_hInstance, IDS_RUNDLG_BROWSE_FILTER, filter,
MAX_PATH);
+ LoadStringW(shell32_hInstance, IDS_RUNDLG_BROWSE_CAPTION, szCaption,
MAX_PATH);
+
+ ZeroMemory(&ofn, sizeof(ofn));
+ ofn.lStructSize = sizeof(OPENFILENAMEW);
+ ofn.hwndOwner = hwnd;
+ ofn.lpstrFilter = filter;
+ ofn.lpstrFile = szFName;
+ ofn.nMaxFile = 1023;
+ ofn.lpstrTitle = szCaption;
+ ofn.Flags = OFN_ENABLESIZING | OFN_FILEMUSTEXIST | OFN_HIDEREADONLY |
OFN_PATHMUSTEXIST;
+ ofn.lpstrInitialDir = prfdp->lpstrDirectory;
+
+ if (NULL == (hComdlg = LoadLibraryExW (comdlg32W, NULL, 0)) ||
+ NULL == (ofnProc = (LPFNOFN)GetProcAddress (hComdlg,
"GetOpenFileNameW")))
+ {
+ ERR("Couldn't get GetOpenFileName function entry
(lib=%p, proc=%p)\n", hComdlg, ofnProc);
+ ShellMessageBoxW(shell32_hInstance, hwnd,
MAKEINTRESOURCEW(IDS_RUNDLG_BROWSE_ERROR), NULL, MB_OK | MB_ICONERROR);
return TRUE ;
- }
-
- if ((LPFNOFN)NULL == (ofnProc = (LPFNOFN)GetProcAddress (hComdlg,
"GetOpenFileNameA")))
- {
- MessageBoxA (hwnd, "Unable to display dialog box
(GetProcAddress) !", "Nix", MB_OK | MB_ICONEXCLAMATION) ;
- return TRUE ;
- }
-
- ofnProc (&ofn) ;
-
- SetFocus (GetDlgItem (hwnd, IDOK)) ;
- SetWindowTextA (GetDlgItem (hwnd, 12298), szFName) ;
- SendMessageA (GetDlgItem (hwnd, 12298), CB_SETEDITSEL, 0, MAKELPARAM
(0, -1)) ;
- SetFocus (GetDlgItem (hwnd, IDOK)) ;
+ }
+
+ if (ofnProc(&ofn))
+ {
+ SetFocus (GetDlgItem (hwnd, IDOK)) ;
+ SetWindowTextW (GetDlgItem (hwnd, IDC_RUNDLG_EDITPATH), szFName)
;
+ SendMessageW (GetDlgItem (hwnd, IDC_RUNDLG_EDITPATH),
CB_SETEDITSEL, 0, MAKELPARAM (0, -1)) ;
+ SetFocus (GetDlgItem (hwnd, IDOK)) ;
+ }
FreeLibrary (hComdlg) ;
@@ -439,7 +489,8 @@
}
/* This grabs the MRU list from the registry and fills the combo for the "Run"
dialog above */
-static void FillList (HWND hCb, char *pszLatest)
+/* fShowDefault ignored if pszLatest != NULL */
+static void FillList (HWND hCb, char *pszLatest, BOOL fShowDefault)
{
HKEY hkey ;
/* char szDbgMsg[256] = "" ; */
@@ -511,7 +562,7 @@
MessageBoxA (hCb, szDbgMsg, "Nix", MB_OK) ;
*/
SendMessageA (hCb, CB_ADDSTRING, 0, (LPARAM)pszCmd) ;
- if (!Nix)
+ if (!Nix && fShowDefault)
{
SetWindowTextA (hCb, pszCmd) ;
SendMessageA (hCb, CB_SETEDITSEL, 0, MAKELPARAM (0, -1)) ;
@@ -609,6 +660,7 @@
return 0;
}
+
/*************************************************************************
* LogoffWindowsDialog [SHELL32.54]
*/
@@ -620,6 +672,7 @@
ExitWindowsEx(EWX_LOGOFF, 0);
}
return 0;}
+
/*************************************************************************
* RestartDialog [SHELL32.59]
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/bg-BG.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/bg-BG.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/bg-BG.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -668,6 +668,12 @@
IDS_SHUTDOWN_PROMPT "Èñêàòå ëè äà èçêëþ÷èòå êîìïþòúðà?"
IDS_LOGOFF_TITLE "Èçëèçàíå"
IDS_LOGOFF_PROMPT "Èñêàòå ëè äà èçëåçåòå?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
// shell folder path default values
IDS_PROGRAMS "Ïóñêîâ èçáîðíèê\\Ïðèëîæåíèÿ"
@@ -718,8 +724,8 @@
IDS_RECYCLEBIN_DISKSPACE "Ñâîáîäíî ìÿñòî"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Èçáåðåòå çíà÷å"
- IDS_PICK_ICON_FILTER "Ôàéëîâå ñúñ çíà÷åòà(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Èçïúëíèìè ôàéëîâå\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Ôàéëîâå ñúñ çíà÷åòà (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Èçïúëíèìè ôàéëîâå (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Ïàïêà"
IDS_VIRTUAL_DRIVER "Âîäà÷ íà ïðèâèäíî óñòðîéñòâî"
IDS_BAT_FILE "Ïàêåòåí ôàéë íà ÐåàêòÎÑ"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/ca-ES.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/ca-ES.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/ca-ES.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -667,6 +667,12 @@
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start Menu\\Programs"
@@ -717,8 +723,8 @@
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/cs-CZ.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/cs-CZ.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/cs-CZ.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -654,6 +654,12 @@
IDS_SHUTDOWN_PROMPT "Opravdu chcete vypnout poèítaè?"
IDS_LOGOFF_TITLE "Odhlásit se"
IDS_LOGOFF_PROMPT "Opravdu se chcete odhlásit?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Nabídka Start\\Programy"
@@ -704,8 +710,8 @@
IDS_RECYCLEBIN_DISKSPACE "Dostupné místo"
IDS_EMPTY_BITBUCKET "Vysypat ko"
IDS_PICK_ICON_TITLE "Zvolit ikonu"
- IDS_PICK_ICON_FILTER "Soubory ikon (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Spustitelné soubory\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Soubory ikon (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Spustitelné soubory (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Sloka"
IDS_VIRTUAL_DRIVER "Virtuální ovladaè zaøízení"
IDS_BAT_FILE "ReactOS dávkový soubor"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/da-DK.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/da-DK.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/da-DK.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -656,6 +656,12 @@
IDS_SHUTDOWN_PROMPT "Ønsker du at Lukke Ned?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start Menu\\Programmer"
@@ -706,8 +712,8 @@
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/de-DE.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/de-DE.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/de-DE.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -55,7 +55,7 @@
MENUITEM "Aktualisieren", FCIDM_SHVIEW_REFRESH
MENUITEM SEPARATOR
MENUITEM "Einfügen", FCIDM_SHVIEW_INSERT
- MENUITEM "Verknüpfung einfügen", FCIDM_SHVIEW_INSERTLINK
+ MENUITEM "Einfügen als Verweis", FCIDM_SHVIEW_INSERTLINK
MENUITEM SEPARATOR
MENUITEM "&Eigenschaften", FCIDM_SHVIEW_PROPERTIES
END
@@ -671,6 +671,12 @@
IDS_SHUTDOWN_PROMPT "Möchten Sie das System herunterfahren?"
IDS_LOGOFF_TITLE "Ausloggen"
IDS_LOGOFF_PROMPT "Möchten Sie sich ausloggen?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Startmenü\\Programme"
@@ -715,14 +721,14 @@
IDS_SHELL_ABOUT_BACK "< &Zurück"
FCIDM_SHVIEW_NEW "Neu"
FCIDM_SHVIEW_NEWFOLDER "Neues Ver&zeichnis"
- FCIDM_SHVIEW_NEWLINK "Neue &Verknüpfung"
+ FCIDM_SHVIEW_NEWLINK "Neuer Ver&weis"
IDS_FOLDER_OPTIONS "Ordneroptionen"
IDS_RECYCLEBIN_LOCATION "Papierkorbpfad"
IDS_RECYCLEBIN_DISKSPACE "freier Speicher"
IDS_EMPTY_BITBUCKET "Papierkorb leeren"
IDS_PICK_ICON_TITLE "Symbol auswählen"
- IDS_PICK_ICON_FILTER "Symboldateien(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Programme\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Symboldateien (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Programme (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Dateiordner"
IDS_VIRTUAL_DRIVER "Virtueller Gerätetreiber"
IDS_BAT_FILE "ReactOS-Stapelverarbeitungsdatei"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/el-GR.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/el-GR.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/el-GR.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -668,6 +668,12 @@
IDS_SHUTDOWN_PROMPT "Åßóôå óßãïõñïé üôé èÝëåôå íá áðåíåñãïðïéÞóåôå ôïí
õðïëïãéóôÞ óáò;"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start Menu\\Programs"
@@ -718,8 +724,8 @@
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/en-GB.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/en-GB.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/en-GB.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -667,6 +667,12 @@
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start Menu\\Programs"
@@ -717,8 +723,8 @@
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/en-US.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/en-US.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/en-US.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -678,6 +678,12 @@
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start Menu\\Programs"
@@ -728,8 +734,8 @@
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/es-ES.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/es-ES.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/es-ES.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -680,6 +680,12 @@
IDS_SHUTDOWN_PROMPT "¿Desea apagar el equipo?"
IDS_LOGOFF_TITLE "Cerrar sesión"
IDS_LOGOFF_PROMPT "¿Desea cerrar la sesión?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Menú Inicio\\Programas"
@@ -730,8 +736,8 @@
IDS_RECYCLEBIN_DISKSPACE "Espacio disponible"
IDS_EMPTY_BITBUCKET "Vaciar Papelera de reciclaje"
IDS_PICK_ICON_TITLE "Seleccione un icono"
- IDS_PICK_ICON_FILTER "Archivos de iconos(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Programas\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Archivos de iconos (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Programas (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Directorio"
IDS_VIRTUAL_DRIVER "Controlador de dispositivo virtual"
IDS_BAT_FILE "Archivo por lotes ReactOS"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/fi-FI.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/fi-FI.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/fi-FI.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -667,6 +667,12 @@
IDS_SHUTDOWN_PROMPT "Haluatko lopettaa Wine:n istunnon?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Käynnistä\\Ohjelmat"
@@ -717,8 +723,8 @@
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/fr-FR.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/fr-FR.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/fr-FR.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -671,6 +671,12 @@
IDS_SHUTDOWN_PROMPT "Voulez-vous fermer la session ReactOS ?"
IDS_LOGOFF_TITLE "Se déconnecter"
IDS_LOGOFF_PROMPT "Voulez-vous vous déconnecter ?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Menu Démarrer\\Programmes"
@@ -721,8 +727,8 @@
IDS_RECYCLEBIN_DISKSPACE "Espace disponible"
IDS_EMPTY_BITBUCKET "Vider la Corbeille"
IDS_PICK_ICON_TITLE "Choisir une icône"
- IDS_PICK_ICON_FILTER "Fichiers d'icônes (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Fichiers exécutables\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Fichiers d'icônes (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Fichiers exécutables (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Dossier"
IDS_VIRTUAL_DRIVER "Pilote de périphérique virtuel"
IDS_BAT_FILE "Fichier Batch ReactOS"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/hu-HU.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/hu-HU.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/hu-HU.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -670,6 +670,12 @@
IDS_SHUTDOWN_PROMPT "Kiakarod kapcsolni számítógépét?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start Menu\\Programs"
@@ -720,8 +726,8 @@
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/it-IT.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/it-IT.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/it-IT.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -678,6 +678,12 @@
IDS_SHUTDOWN_PROMPT "Volete arrestare il sistema?"
IDS_LOGOFF_TITLE "Disconnetti"
IDS_LOGOFF_PROMPT "Volete disconnettervi?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Menu Avvio\\Programmi"
@@ -728,8 +734,8 @@
IDS_RECYCLEBIN_DISKSPACE "Spazio disponibile"
IDS_EMPTY_BITBUCKET "Svuota cestino"
IDS_PICK_ICON_TITLE "Scegliere un icona"
- IDS_PICK_ICON_FILTER "Icone(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "File eseguibili\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icone (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "File eseguibili (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Cartella"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/ja-JP.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/ja-JP.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/ja-JP.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -667,6 +667,12 @@
IDS_SHUTDOWN_PROMPT "Vbg_EµÜ·©?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "X^[g j
[\\vO"
@@ -717,8 +723,8 @@
IDS_RECYCLEBIN_DISKSPACE "pÅ«éÌæ"
IDS_EMPTY_BITBUCKET "²Ý ðóÉ·é"
IDS_PICK_ICON_TITLE "ACRÌIð"
- IDS_PICK_ICON_FILTER "ACRt@C(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "ÀsÂ\\ t@C\0*.exe\0"
+ IDS_PICK_ICON_FILTER "ACRt@C (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "ÀsÂ\\ t@C (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "tH_"
IDS_VIRTUAL_DRIVER "¼z foCX hCo"
IDS_BAT_FILE "ReactOS ob` t@C"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/ko-KR.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/ko-KR.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/ko-KR.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -667,6 +667,12 @@
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start Menu\\Programs"
@@ -717,8 +723,8 @@
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/nl-NL.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/nl-NL.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/nl-NL.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -667,6 +667,12 @@
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start Menu\\Programs"
@@ -717,8 +723,8 @@
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/no-NO.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/no-NO.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/no-NO.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -670,6 +670,12 @@
IDS_SHUTDOWN_PROMPT "Vil du slå av datamaskinen?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start-meny\\Programmer"
@@ -720,8 +726,8 @@
IDS_RECYCLEBIN_DISKSPACE "Ledig plass"
IDS_EMPTY_BITBUCKET "Tøm papirkurven"
IDS_PICK_ICON_TITLE "Velg Ikon"
- IDS_PICK_ICON_FILTER "Ikon Fil(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Kjørbare filer\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Ikon Fil (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Kjørbare filer (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Mappe"
IDS_VIRTUAL_DRIVER "Virtuell enhetdriver"
IDS_BAT_FILE "ReactOS Batch fil"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/pl-PL.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/pl-PL.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/pl-PL.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -674,6 +674,12 @@
IDS_SHUTDOWN_PROMPT "Czy chcesz wy³¹czyæ system?"
IDS_LOGOFF_TITLE "Wyloguj"
IDS_LOGOFF_PROMPT "Czy chcesz siê wylogowaæ z systemu?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Nie mogê wywietliæ okna Uruchom (b³¹d
wewnêtrzny)"
+ IDS_RUNDLG_BROWSE_ERROR "Nie mogê wywietliæ okna Przegl¹daj (b³¹d
wewnêtrzny)"
+ IDS_RUNDLG_BROWSE_CAPTION "Przegl¹daj"
+ IDS_RUNDLG_BROWSE_FILTER "Programy (*.exe)\0*.exe\0Wszystkie pliki
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Menu Start\\Programy"
@@ -724,8 +730,8 @@
IDS_RECYCLEBIN_DISKSPACE "Pozosta³o wolnego miejsca"
IDS_EMPTY_BITBUCKET "Opró¿nij Kosz"
IDS_PICK_ICON_TITLE "Wybierz ikonê"
- IDS_PICK_ICON_FILTER "Pliki ikon(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Programy\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Pliki ikon (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0Wszystkie pliki (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Programy (*.exe)\0*.exe\0Wszystkie pliki
(*.*)\0*.*\0"
IDS_DIRECTORY "Katalog"
IDS_VIRTUAL_DRIVER "Sterownik urz¹dzenia wirtualnego"
IDS_BAT_FILE "Plik wsadowy ReactOS"
@@ -759,5 +765,5 @@
IDS_DEFAULT_CLUSTER_SIZE "Domylny rozmiar jednostki alokacji"
IDS_COPY_OF "Kopia"
- IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this
type of file."
-END
+ IDS_SHLEXEC_NOASSOC "¯aden program nie jest skonfigurowane by otwieraæ
pliki tego typu."
+END
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/pt-BR.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/pt-BR.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/pt-BR.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -669,6 +669,12 @@
IDS_SHUTDOWN_PROMPT "Você quer finalizar a sessão no Wine?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Menu Iniciar\\Programas"
@@ -719,8 +725,8 @@
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/pt-PT.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/pt-PT.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/pt-PT.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -670,6 +670,12 @@
IDS_SHUTDOWN_PROMPT "Deseja finalizar esta sessão do ReactOS?"
IDS_LOGOFF_TITLE "Terminar a sessão"
IDS_LOGOFF_PROMPT "Pretende terminar a sessão?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Menu Iniciar\\Programas"
@@ -720,8 +726,8 @@
IDS_RECYCLEBIN_DISKSPACE "Espaço Disponível"
IDS_EMPTY_BITBUCKET "Esvaziar Reciclagem"
IDS_PICK_ICON_TITLE "Escolha Ícone"
- IDS_PICK_ICON_FILTER "Ficheiros de Ícones(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Ficheiros Executáveis\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Ficheiros de Ícones (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Ficheiros Executáveis (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Pasta"
IDS_VIRTUAL_DRIVER "Driver de Dispositivo Virtual"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/ro-RO.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/ro-RO.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/ro-RO.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -670,6 +670,12 @@
IDS_SHUTDOWN_PROMPT "VreÈi sÄ Ã®nchideÈi computerul?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Meniu Start\\Programe"
@@ -720,8 +726,8 @@
IDS_RECYCLEBIN_DISKSPACE "SpaÈiu disponibil"
IDS_EMPTY_BITBUCKET "Golire CoÈ de gunoi"
IDS_PICK_ICON_TITLE "Alegere pictogramÄ"
- IDS_PICK_ICON_FILTER "FiÈiere pictogramÄ (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "FiÈiere executabile\0*.exe\0"
+ IDS_PICK_ICON_FILTER "FiÈiere pictogramÄ (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "FiÈiere executabile (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Dosar"
IDS_VIRTUAL_DRIVER "Driver dispozitiv virtual"
IDS_BAT_FILE "FiÈier serie de comenzi ReactOS"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/ru-RU.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/ru-RU.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/ru-RU.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -666,6 +666,12 @@
IDS_SHUTDOWN_PROMPT "Çàêîí÷èòü ðàáîòó ñ ReactOS?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Ãëàâíîå ìåíþ\\Ïðîãðàììû"
@@ -716,8 +722,8 @@
IDS_RECYCLEBIN_DISKSPACE "Äîñòóïíîå ïðîñòðàíñòâî"
IDS_EMPTY_BITBUCKET "Î÷èñòèòü êîðçèíó"
IDS_PICK_ICON_TITLE "Âûáðàòü çíà÷îê"
- IDS_PICK_ICON_FILTER "Ôàéëû çíà÷êîâ(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Èñïîëíÿåìûå ôàéëû\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Ôàéëû çíà÷êîâ (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Èñïîëíÿåìûå ôàéëû (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Ïàïêà"
IDS_VIRTUAL_DRIVER "Äðàéâåð âèðòóàëüíîãî óñòðîéñòâà"
IDS_BAT_FILE "Ïàêåòíûé ôàéë ReactOS"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/sk-SK.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/sk-SK.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/sk-SK.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -673,6 +673,12 @@
IDS_SHUTDOWN_PROMPT "Naozaj chcete vypnú poèítaè?"
IDS_LOGOFF_TITLE "Odhlási"
IDS_LOGOFF_PROMPT "Naozaj sa chcete odhlási?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Ponuka tart\\Programy"
@@ -723,8 +729,8 @@
IDS_RECYCLEBIN_DISKSPACE "Dostupné miesto"
IDS_EMPTY_BITBUCKET "Vyprázdni Kô"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Súbory ikon(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Spustite¾né súbory\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Súbory ikon (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Spustite¾né súbory (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Prieèinok"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "Dávkový súbor systému ReactOS"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/sl-SI.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/sl-SI.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/sl-SI.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -667,6 +667,12 @@
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start Menu\\Programs"
@@ -717,8 +723,8 @@
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/sv-SE.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/sv-SE.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/sv-SE.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -667,6 +667,12 @@
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start Menu\\Programs"
@@ -717,8 +723,8 @@
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/tr-TR.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/tr-TR.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/tr-TR.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -667,6 +667,12 @@
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start Menu\\Programlar"
@@ -717,8 +723,8 @@
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/uk-UA.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/uk-UA.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/uk-UA.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -680,6 +680,12 @@
IDS_SHUTDOWN_PROMPT "Âè õî÷åòå âèìêíóòè êîìï'þòåð?"
IDS_LOGOFF_TITLE "Âèõ³ä ç ñèñòåìè"
IDS_LOGOFF_PROMPT "Âè õî÷åòå âèéòè ç ñèñòåìè?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start Menu\\Programs"
@@ -730,8 +736,8 @@
IDS_RECYCLEBIN_DISKSPACE "Äîñòóïíèé ïðîñò³ð"
IDS_EMPTY_BITBUCKET "Î÷èñòèòè Êîøèê"
IDS_PICK_ICON_TITLE "Âèáðàòè çíà÷îê"
- IDS_PICK_ICON_FILTER "Ôàéëè çíà÷ê³â(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Âèêîíóâàí³ ôàéëè\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Ôàéëè çíà÷ê³â (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Âèêîíóâàí³ ôàéëè (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Ïàïêà"
IDS_VIRTUAL_DRIVER "Äðàéâåð â³ðòóàëüíîãî ïðèñòðîþ"
IDS_BAT_FILE "Ïàêåòíèé ôàéë ReactOS"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/zh-CN.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/zh-CN.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/zh-CN.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -656,6 +656,12 @@
IDS_SHUTDOWN_PROMPT "ÊÇ·ñ¹Ø±Õϵͳ?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start Menu\\Programs"
@@ -705,8 +711,8 @@
IDS_RECYCLEBIN_LOCATION "Recycle Bin Location"
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/lang/zh-TW.rc
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/lang/zh-TW.rc [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/lang/zh-TW.rc [iso-8859-1] Wed May 25
21:05:22 2011
@@ -668,6 +668,12 @@
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
IDS_LOGOFF_TITLE "Log Off"
IDS_LOGOFF_PROMPT "Do you want to log off?"
+
+ /* Run File dialog */
+ IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal
error)"
+ IDS_RUNDLG_BROWSE_CAPTION "Browse"
+ IDS_RUNDLG_BROWSE_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
/* shell folder path default values */
IDS_PROGRAMS "Start Menu\\Programs"
@@ -718,8 +724,8 @@
IDS_RECYCLEBIN_DISKSPACE "Space Available"
IDS_EMPTY_BITBUCKET "Empty Recycle Bin"
IDS_PICK_ICON_TITLE "Choose Icon"
- IDS_PICK_ICON_FILTER "Icon Files(*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0"
- IDS_OPEN_WITH_FILTER "Executable Files\0*.exe\0"
+ IDS_PICK_ICON_FILTER "Icon Files (*.ico, *.icl, *.exe,
*.dll)\0*.ico;*.icl;*.exe;*.dll\0All Files (*.*)\0*.*\0"
+ IDS_OPEN_WITH_FILTER "Executable Files (*.exe)\0*.exe\0All Files
(*.*)\0*.*\0"
IDS_DIRECTORY "Folder"
IDS_VIRTUAL_DRIVER "Virtual Device Driver"
IDS_BAT_FILE "ReactOS Batch File"
Modified: branches/shell32_new-bringup/dll/win32/shell32/she_ocmenu.cpp
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/she_ocmenu.cpp [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/she_ocmenu.cpp [iso-8859-1] Wed May 25
21:05:22 2011
@@ -411,8 +411,8 @@
void
BrowseForApplication(HWND hwndDlg)
{
- WCHAR szBuffer[30] = {0};
- WCHAR szFilter[30] = {0};
+ WCHAR szBuffer[64] = {0};
+ WCHAR szFilter[256] = {0};
WCHAR szPath[MAX_PATH];
OPENFILENAMEW ofn;
OPEN_WITH_CONTEXT Context;
Modified: branches/shell32_new-bringup/dll/win32/shell32/shell32.spec
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/shell32.spec [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/shell32.spec [iso-8859-1] Wed May 25
21:05:22 2011
@@ -58,9 +58,9 @@
58 stdcall -noname ParseField(str long ptr long) ParseFieldAW # Fixme
59 stdcall RestartDialog(long wstr long)
60 stdcall -noname ExitWindowsDialog(long) # Fixme
-61 stdcall -noname RunFileDlg(long long long str str long) RunFileDlg # Fixme
+61 stdcall -noname RunFileDlg(long long long wstr wstr long) RunFileDlg # Fixme?
62 stdcall PickIconDlg(long long long long)
-63 stdcall GetFileNameFromBrowse(long long long long str str str)
+63 stdcall GetFileNameFromBrowse(long long long long wstr wstr wstr)
64 stdcall DriveType(long)
65 stdcall -noname InvalidateDriveType(long)
66 stdcall IsNetDrive(long)
Modified: branches/shell32_new-bringup/dll/win32/shell32/shresdef.h
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/shresdef.h [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/shresdef.h [iso-8859-1] Wed May 25
21:05:22 2011
@@ -142,6 +142,11 @@
#define IDS_FILE_TYPES 174
#define IDS_FILE_DETAILS 175
+#define IDS_RUNDLG_ERROR 180
+#define IDS_RUNDLG_BROWSE_ERROR 181
+#define IDS_RUNDLG_BROWSE_CAPTION 182
+#define IDS_RUNDLG_BROWSE_FILTER 183
+
#define IDS_OPEN_VERB 300
#define IDS_EXPLORE_VERB 301
#define IDS_RUNAS_VERB 302
@@ -195,6 +200,13 @@
#define SHELL_EXTENDED_SHORTCUT_DLG 0x4000
#define OPEN_WITH_PROGRAMM_DLG 0x4001
#define IDD_SH_FILE_COPY 0x4002
+
+/* run dialog */
+#define IDC_RUNDLG_DESCRIPTION 12289
+#define IDC_RUNDLG_BROWSE 12288
+#define IDC_RUNDLG_ICON 12297
+#define IDC_RUNDLG_EDITPATH 12298
+#define IDC_RUNDLG_LABEL 12305
/* ID's of the ShellAbout controls */
// Part 1 - ID's identical to Windows Server 2003 SP1's shell32.dll
Modified: branches/shell32_new-bringup/dll/win32/shell32/undocshell.h
URL:
http://svn.reactos.org/svn/reactos/branches/shell32_new-bringup/dll/win32/s…
==============================================================================
--- branches/shell32_new-bringup/dll/win32/shell32/undocshell.h [iso-8859-1] (original)
+++ branches/shell32_new-bringup/dll/win32/shell32/undocshell.h [iso-8859-1] Wed May 25
21:05:22 2011
@@ -70,6 +70,16 @@
BOOL WINAPI StrRetToStrNA(LPSTR,DWORD,LPSTRRET,const ITEMIDLIST*);
BOOL WINAPI StrRetToStrNW(LPWSTR,DWORD,LPSTRRET,const ITEMIDLIST*);
+
+/****************************************************************************
+* SHChangeNotifyRegister API
+*/
+#define SHCNRF_InterruptLevel 0x0001
+#define SHCNRF_ShellLevel 0x0002
+#define SHCNRF_RecursiveInterrupt 0x1000 /* Must be combined with SHCNRF_InterruptLevel
*/
+#define SHCNRF_NewDelivery 0x8000 /* Messages use shared memory */
+
+
/****************************************************************************
* Shell Common Dialogs
*/
@@ -100,9 +110,9 @@
void WINAPI RunFileDlg(
HWND hwndOwner,
HICON hIcon,
- LPCSTR lpstrDirectory,
- LPCSTR lpstrTitle,
- LPCSTR lpstrDescription,
+ LPCWSTR lpstrDirectory,
+ LPCWSTR lpstrTitle,
+ LPCWSTR lpstrDescription,
UINT uFlags);
void WINAPI ExitWindowsDialog(HWND hwndOwner);