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/drvdefext.cpp?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- 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-BG.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/bg-BG.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/bg-BG.rc       [iso-8859-1] 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-ES.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/ca-ES.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/ca-ES.rc       [iso-8859-1] 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-CZ.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/cs-CZ.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/cs-CZ.rc       [iso-8859-1] 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-DK.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/da-DK.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/da-DK.rc       [iso-8859-1] 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-DE.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/de-DE.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/de-DE.rc       [iso-8859-1] 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-GR.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/el-GR.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/el-GR.rc       [iso-8859-1] 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-GB.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/en-GB.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/en-GB.rc       [iso-8859-1] 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-US.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/en-US.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/en-US.rc       [iso-8859-1] 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-ES.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/es-ES.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/es-ES.rc       [iso-8859-1] 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-FI.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/fi-FI.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/fi-FI.rc       [iso-8859-1] 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-FR.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/fr-FR.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/fr-FR.rc       [iso-8859-1] 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-IL.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- 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-HU.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/hu-HU.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/hu-HU.rc       [iso-8859-1] 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-IT.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/it-IT.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/it-IT.rc       [iso-8859-1] 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-JP.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/ja-JP.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/ja-JP.rc       [iso-8859-1] 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-KR.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/ko-KR.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/ko-KR.rc       [iso-8859-1] 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-NL.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/nl-NL.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/nl-NL.rc       [iso-8859-1] 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-NO.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/no-NO.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/no-NO.rc       [iso-8859-1] 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-PL.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/pl-PL.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/pl-PL.rc       [iso-8859-1] 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-BR.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/pt-BR.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/pt-BR.rc       [iso-8859-1] 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-PT.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/pt-PT.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/pt-PT.rc       [iso-8859-1] 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-RO.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/ro-RO.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/ro-RO.rc       [iso-8859-1] 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-RU.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/ru-RU.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/ru-RU.rc       [iso-8859-1] 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-SK.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/sk-SK.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/sk-SK.rc       [iso-8859-1] 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-SI.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/sl-SI.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/sl-SI.rc       [iso-8859-1] 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-AL.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- 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-SE.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/sv-SE.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/sv-SE.rc       [iso-8859-1] 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-TR.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/tr-TR.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/tr-TR.rc       [iso-8859-1] 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-UA.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/uk-UA.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/uk-UA.rc       [iso-8859-1] 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-CN.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/zh-CN.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/zh-CN.rc       [iso-8859-1] 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-TW.rc?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/lang/zh-TW.rc       [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/lang/zh-TW.rc       [iso-8859-1] 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.h?rev=67359&r1=67358&r2=67359&view=diff
==============================================================================
--- 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


Reply via email to