diff options
-rw-r--r-- | chrome/app/generated_resources.grd | 17 | ||||
-rw-r--r-- | chrome/browser/resources/file_manager/js/mock_chrome.js | 4 |
2 files changed, 17 insertions, 4 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index b09b06a..9eb61fe 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -10891,7 +10891,7 @@ Some features may be unavailable. Please check that the profile exists and you Type </message> <message name="IDS_FILE_BROWSER_DATE_COLUMN_LABEL" desc="Date column label."> - Date + Date modified </message> <message name="IDS_FILE_BROWSER_PREVIEW_COLUMN_LABEL" desc="Preview column label."> Preview @@ -10967,6 +10967,16 @@ Some features may be unavailable. Please check that the profile exists and you Import photos </message> + <message name="IDS_FILE_BROWSER_NOT_FORMATTED_USB" desc="In the File Manager, message shown for an unformatted USB device."> + Your USB device is not formatted. + </message> + <message name="IDS_FILE_BROWSER_NOT_FORMATTED_SD" desc="In the File Manager, message shown for an unformatted SD card."> + Your SD card is not formatted. + </message> + <message name="IDS_FILE_BROWSER_NOT_FORMATTED_EXTERNAL" desc="In the File Manager, message shown for an unformatted external storage device."> + Your external storage device is not formatted. + </message> + <message name="IDS_FILE_BROWSER_ACTION_VIEW" desc="Title of the action to view (no edit) a file."> View </message> @@ -11223,6 +11233,9 @@ Some features may be unavailable. Please check that the profile exists and you <message name="IDS_FILE_BROWSER_HOSTED_OFFLINE_MESSAGE" desc="Message informing the user that the selected file is only available online."> You must be online to access this file. </message> + <message name="IDS_FILE_BROWSER_GDRIVE_OFFLINE_MESSAGE" desc="Message informing the user that they should go online to access Google Drive for the first time."> + You must be online to access Google Drive for the first time. + </message> <message name="IDS_FILE_BROWSER_HOSTED_OFFLINE_MESSAGE_PLURAL" desc="Message informing the user that the selected files are only available online."> You must be online to access these files. </message> @@ -11248,7 +11261,7 @@ Some features may be unavailable. Please check that the profile exists and you <ph name="SPACE_AVAILABLE">$1<ex>4.8 GB</ex></ph> left </message> <message name="IDS_FILE_BROWSER_GDATA_BUY_MORE_SPACE" desc="Menu item, offering user to buy more space on Google Drive"> - Buy more... + Buy more storage... </message> <message name="IDS_FILE_BROWSER_GDATA_WAITING_FOR_SPACE_INFO" desc="Menu item, saying that FileBrowser is waiting for account's space information from GData servers. When actual data arrives, this item will be replaced with IDS_FILE_BROWSER_GDATA_SPACE_AVAILABLE"> Waiting for space info... diff --git a/chrome/browser/resources/file_manager/js/mock_chrome.js b/chrome/browser/resources/file_manager/js/mock_chrome.js index b6d0d73..6595bda 100644 --- a/chrome/browser/resources/file_manager/js/mock_chrome.js +++ b/chrome/browser/resources/file_manager/js/mock_chrome.js @@ -456,7 +456,7 @@ chrome.fileBrowserPrivate = { SIZE_TB: 'TB', SIZE_PB: 'PB', TYPE_COLUMN_LABEL: 'Type', - DATE_COLUMN_LABEL: 'Date', + DATE_COLUMN_LABEL: 'Date modified', PREVIEW_COLUMN_LABEL: 'Preview', ERROR_CREATING_FOLDER: 'Unable to create folder "$1". $2', @@ -540,7 +540,7 @@ chrome.fileBrowserPrivate = { GDATA_SHOW_HOSTED_FILES_OPTION: 'Show Google Docs files', GDATA_WAITING_FOR_SPACE_INFO: 'Waiting for space info...', GDATA_FAILED_SPACE_INFO: 'Failed to retrieve space info', - GDATA_BUY_MORE_SPACE: 'Buy more...', + GDATA_BUY_MORE_SPACE: 'Buy more storage...', GDATA_SPACE_AVAILABLE: '$1 left', OFFLINE_COLUMN_LABEL: 'Available offline', |