Author: akhaldi Date: Wed Apr 22 22:24:46 2015 New Revision: 67359
URL: http://svn.reactos.org/svn/reactos?rev=67359&view=rev Log: [SHELL32] Set default values for fields when volume information is not available. Fix drawing of free/used space pie chart when free space is 0 bytes. Disable editing of volume label for non-fixed disks. Brought to you by Barrett Karish. CORE-9595
Modified: trunk/reactos/dll/win32/shell32/dialogs/drvdefext.cpp 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/he-IL.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/sq-AL.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/dialogs/drvdefext.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/dialogs/d... ============================================================================== --- trunk/reactos/dll/win32/shell32/dialogs/drvdefext.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/dialogs/drvdefext.cpp [iso-8859-1] Wed Apr 22 22:24:46 2015 @@ -223,20 +223,39 @@ HBRUSH hbrOld = (HBRUSH)SelectObject(pDrawItem->hDC, hMagBrush); INT xRadial = xCenter + (INT)(cos(M_PI+m_FreeSpacePerc/100.0f*M_PI*2.0f)*cx/2); INT yRadial = yCenter - (INT)(sin(M_PI+m_FreeSpacePerc/100.0f*M_PI*2.0f)*cy/2); - Pie(pDrawItem->hDC, - pDrawItem->rcItem.left, pDrawItem->rcItem.top, - pDrawItem->rcItem.right, pDrawItem->rcItem.bottom - 10, - pDrawItem->rcItem.left, yCenter, - xRadial, yRadial); - - SelectObject(pDrawItem->hDC, hBlueBrush); - Pie(pDrawItem->hDC, - pDrawItem->rcItem.left, pDrawItem->rcItem.top, - pDrawItem->rcItem.right, pDrawItem->rcItem.bottom - 10, - xRadial, yRadial, - pDrawItem->rcItem.left, yCenter); - SelectObject(pDrawItem->hDC, hbrOld); - + if (m_FreeSpacePerc > 0) + { + Pie(pDrawItem->hDC, + pDrawItem->rcItem.left, + pDrawItem->rcItem.top, + pDrawItem->rcItem.right, + pDrawItem->rcItem.bottom - 10, + pDrawItem->rcItem.left, + yCenter, + xRadial, + yRadial); + + SelectObject(pDrawItem->hDC, hBlueBrush); + Pie(pDrawItem->hDC, + pDrawItem->rcItem.left, + pDrawItem->rcItem.top, + pDrawItem->rcItem.right, + pDrawItem->rcItem.bottom - 10, + xRadial, + yRadial, + pDrawItem->rcItem.left, + yCenter); + SelectObject(pDrawItem->hDC, hbrOld); + } + else + { + SelectObject(pDrawItem->hDC, hBlueBrush); + Ellipse(pDrawItem->hDC, + pDrawItem->rcItem.left, + pDrawItem->rcItem.top, + pDrawItem->rcItem.right, + pDrawItem->rcItem.bottom - 10); + } HPEN hOldPen = (HPEN)SelectObject(pDrawItem->hDC, hDarkMagPen); for (INT x = pDrawItem->rcItem.left; x < pDrawItem->rcItem.right; ++x) { @@ -272,6 +291,11 @@ SetDlgItemTextW(hwndDlg, 14000, wszVolumeName); SetDlgItemTextW(hwndDlg, 14002, wszFileSystem); } + else + { + LoadStringW(shell32_hInstance, IDS_FS_UNKNOWN, wszFileSystem, _countof(wszFileSystem)); + SetDlgItemTextW(hwndDlg, 14002, wszFileSystem); + }
/* Set drive type and icon */ UINT DriveType = GetDriveTypeW(m_wszDrive); @@ -283,6 +307,10 @@ case DRIVE_RAMDISK: IconId = IDI_SHELL_RAMDISK; break; default: IconId = IDI_SHELL_DRIVE; TypeStrId = IDS_DRIVE_FIXED; } + + if (DriveType != DRIVE_FIXED) + EnableWindow(GetDlgItem(hwndDlg, 14000), false); + HICON hIcon = (HICON)LoadImage(shell32_hInstance, MAKEINTRESOURCE(IconId), IMAGE_ICON, 32, 32, LR_SHARED); if (hIcon) SendDlgItemMessageW(hwndDlg, 14016, STM_SETICON, (WPARAM)hIcon, 0); @@ -315,6 +343,23 @@
if (StrFormatByteSizeW(TotalNumberOfBytes.QuadPart, wszBuf, _countof(wszBuf))) SetDlgItemTextW(hwndDlg, 14008, wszBuf); + } + else + { + m_FreeSpacePerc = 0; + + if (SH_FormatByteSize(0, wszBuf, _countof(wszBuf))) + { + SetDlgItemTextW(hwndDlg, 14003, wszBuf); + SetDlgItemTextW(hwndDlg, 14005, wszBuf); + SetDlgItemTextW(hwndDlg, 14007, wszBuf); + } + if (StrFormatByteSizeW(0, wszBuf, _countof(wszBuf))) + { + SetDlgItemTextW(hwndDlg, 14004, wszBuf); + SetDlgItemTextW(hwndDlg, 14006, wszBuf); + SetDlgItemTextW(hwndDlg, 14008, wszBuf); + } }
/* Set drive description */
Modified: trunk/reactos/dll/win32/shell32/lang/bg-BG.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/bg-B... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "ÐеÑÑен диÑк" IDS_DRIVE_CDROM "ÐÐ ÑеÑеÑ" IDS_DRIVE_NETWORK "ÐÑежов диÑк" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "ÐÑваÑÑне Ñ"
Modified: trunk/reactos/dll/win32/shell32/lang/ca-ES.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ca-E... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Local Disk" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Network Disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Open With"
Modified: trunk/reactos/dll/win32/shell32/lang/cs-CZ.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/cs-C... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -759,6 +759,7 @@ IDS_DRIVE_FIXED "MÃstnà disk" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "SÃÅ¥ový Disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "OtevÅÃt v"
Modified: trunk/reactos/dll/win32/shell32/lang/da-DK.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/da-D... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -759,6 +759,7 @@ IDS_DRIVE_FIXED "Local Disk" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Network Disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Open With"
Modified: trunk/reactos/dll/win32/shell32/lang/de-DE.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/de-D... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -754,6 +754,7 @@ IDS_DRIVE_FIXED "Lokaler Datenträger" IDS_DRIVE_CDROM "CD-Laufwerk" IDS_DRIVE_NETWORK "Netzlaufwerk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Ãffnen mit..."
Modified: trunk/reactos/dll/win32/shell32/lang/el-GR.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/el-G... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "ΤοÏικÏÏ Î´Î¯ÏκοÏ" IDS_DRIVE_CDROM "Îονάδα CD" IDS_DRIVE_NETWORK "ÎίÏÎºÎ¿Ï Î´Î¹ÎºÏÏÎ¿Ï " + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Îνοιγμαμε"
Modified: trunk/reactos/dll/win32/shell32/lang/en-GB.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/en-G... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Local Disk" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Network Disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Open With"
Modified: trunk/reactos/dll/win32/shell32/lang/en-US.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/en-U... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Local Disk" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Network Disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Open With"
Modified: trunk/reactos/dll/win32/shell32/lang/es-ES.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/es-E... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -754,6 +754,7 @@ IDS_DRIVE_FIXED "Disco local" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Unidad de red" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Abrir con"
Modified: trunk/reactos/dll/win32/shell32/lang/fi-FI.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/fi-F... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Local Disk" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Network Disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Open With"
Modified: trunk/reactos/dll/win32/shell32/lang/fr-FR.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/fr-F... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Disque local" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Disque réseau" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Ouvrir avec"
Modified: trunk/reactos/dll/win32/shell32/lang/he-IL.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/he-I... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/he-IL.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/he-IL.rc [iso-8859-1] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "××× × ××§×××" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "××× × ×¨×©×ª" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "פת××× ×××צע×ת"
Modified: trunk/reactos/dll/win32/shell32/lang/hu-HU.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/hu-H... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Local Disk" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Network Disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Open With"
Modified: trunk/reactos/dll/win32/shell32/lang/it-IT.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/it-I... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Disco locale" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Disco di Rete" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Apri con"
Modified: trunk/reactos/dll/win32/shell32/lang/ja-JP.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ja-J... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "ãã¼ã«ã« ãã£ã¹ã¯" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "ãããã¯ã¼ã¯ ãã£ã¹ã¯" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "ããã°ã©ã ããéã"
Modified: trunk/reactos/dll/win32/shell32/lang/ko-KR.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ko-K... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Local Disk" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Network Disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Open With"
Modified: trunk/reactos/dll/win32/shell32/lang/nl-NL.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/nl-N... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Local Disk" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Network Disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Open With"
Modified: trunk/reactos/dll/win32/shell32/lang/no-NO.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/no-N... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Lokal Disk" IDS_DRIVE_CDROM "CD stasjon" IDS_DRIVE_NETWORK "Nettverk disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Ã pne med"
Modified: trunk/reactos/dll/win32/shell32/lang/pl-PL.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/pl-P... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Dysk lokalny" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Dysk sieciowy" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Otwórz za pomocÄ "
Modified: trunk/reactos/dll/win32/shell32/lang/pt-BR.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/pt-B... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Disco Local" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Disco de Rede" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Abrir Com"
Modified: trunk/reactos/dll/win32/shell32/lang/pt-PT.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/pt-P... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Disco Local" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Disco de Rede" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Abre com..."
Modified: trunk/reactos/dll/win32/shell32/lang/ro-RO.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ro-R... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -755,6 +755,7 @@ IDS_DRIVE_FIXED "Disc local" IDS_DRIVE_CDROM "CD-ROM" IDS_DRIVE_NETWORK "Disc din reÈea" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Deschide cu"
Modified: trunk/reactos/dll/win32/shell32/lang/ru-RU.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ru-R... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -755,6 +755,7 @@ IDS_DRIVE_FIXED "ÐокалÑнÑй диÑк" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "СеÑевой диÑк" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "ÐÑкÑÑÑÑ Ñ Ð¿Ð¾Ð¼Ð¾ÑÑÑ"
Modified: trunk/reactos/dll/win32/shell32/lang/sk-SK.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/sk-S... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Lokálny disk" IDS_DRIVE_CDROM "Jednotka CD" IDS_DRIVE_NETWORK "Sieťový disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Otvoriť v progra&me"
Modified: trunk/reactos/dll/win32/shell32/lang/sl-SI.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/sl-S... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Local Disk" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Network Disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Open With"
Modified: trunk/reactos/dll/win32/shell32/lang/sq-AL.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/sq-A... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/sq-AL.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/sq-AL.rc [iso-8859-1] Wed Apr 22 22:24:46 2015 @@ -757,6 +757,7 @@ IDS_DRIVE_FIXED "Disku Vendorë" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Disku Rrjetit" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Hap me"
Modified: trunk/reactos/dll/win32/shell32/lang/sv-SE.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/sv-S... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Local Disk" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Network Disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Open With"
Modified: trunk/reactos/dll/win32/shell32/lang/tr-TR.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/tr-T... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "Yerel Disk" IDS_DRIVE_CDROM "Optik Sürücü" IDS_DRIVE_NETWORK "AÄ Sürücüsü" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Birlikte Aç"
Modified: trunk/reactos/dll/win32/shell32/lang/uk-UA.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/uk-U... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -753,6 +753,7 @@ IDS_DRIVE_FIXED "ÐокалÑний диÑк" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "ÐеÑежний диÑк" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "ÐÑдкÑиÑи за допомогоÑ"
Modified: trunk/reactos/dll/win32/shell32/lang/zh-CN.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/zh-C... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -762,6 +762,7 @@ IDS_DRIVE_FIXED "Local Disk" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Network Disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "æå¼æ¹å¼"
Modified: trunk/reactos/dll/win32/shell32/lang/zh-TW.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/zh-T... ============================================================================== --- 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] Wed Apr 22 22:24:46 2015 @@ -761,6 +761,7 @@ IDS_DRIVE_FIXED "Local Disk" IDS_DRIVE_CDROM "CDROM" IDS_DRIVE_NETWORK "Network Disk" + IDS_FS_UNKNOWN "Unknown"
/* Open With */ IDS_OPEN_WITH "Open With"
Modified: trunk/reactos/dll/win32/shell32/shresdef.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shresdef.... ============================================================================== --- trunk/reactos/dll/win32/shell32/shresdef.h [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/shresdef.h [iso-8859-1] Wed Apr 22 22:24:46 2015 @@ -107,6 +107,7 @@ #define IDS_DRIVE_FIXED 72 #define IDS_DRIVE_CDROM 73 #define IDS_DRIVE_NETWORK 74 +#define IDS_FS_UNKNOWN 75
#define IDS_LOGOFF_TITLE 78 #define IDS_LOGOFF_PROMPT 79