Browser: real download path can't match the displayed path

When download type is image/audio/video,will put them in corresponding
subfolder Pictures/Music/Movies not only in Download subfolder.So the
path can't match the displayed path.

Move the code change into Browser app.So that when user try to
download some file whose type is image/audio/video,download settings
will show the corresponding subfolder to let user download in.

CRs-Fixed: 539491

Change-Id: Ia5b77501d402bc02b7578a70bac7b6554278a671
diff --git a/src/com/android/browser/DownloadHandler.java b/src/com/android/browser/DownloadHandler.java
index 15167a0..1ce33da 100644
--- a/src/com/android/browser/DownloadHandler.java
+++ b/src/com/android/browser/DownloadHandler.java
@@ -566,7 +566,7 @@
             downloadPath = downloadPath.replace(sdCardDir, sdCardLabel);
         } else if ((phoneStorageDir != null) && downloadPath.startsWith(phoneStorageDir)) {
             String phoneStorageLabel = activity.getResources().getString(
-                    R.string.download_path_phone_stroage_label);
+                    R.string.download_path_phone_storage_label);
             downloadPath = downloadPath.replace(phoneStorageDir, phoneStorageLabel);
         }
         return downloadPath;