Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: chrome/browser/chromeos/extensions/file_manager/private_api_strings.cc

Issue 936963002: Files.app: Restore status message for import progress (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/app/chromeos_strings.grdp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/extensions/file_manager/private_api_strings.h" 5 #include "chrome/browser/chromeos/extensions/file_manager/private_api_strings.h"
6 6
7 #include "base/strings/stringprintf.h" 7 #include "base/strings/stringprintf.h"
8 #include "base/sys_info.h" 8 #include "base/sys_info.h"
9 #include "chrome/browser/browser_process.h" 9 #include "chrome/browser/browser_process.h"
10 #include "chrome/browser/chromeos/file_manager/open_with_browser.h" 10 #include "chrome/browser/chromeos/file_manager/open_with_browser.h"
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 SET_STRING("CLOUD_IMPORT_STATUS_IMPORTING", 281 SET_STRING("CLOUD_IMPORT_STATUS_IMPORTING",
282 IDS_FILE_BROWSER_CLOUD_IMPORT_STATUS_IMPORTING); 282 IDS_FILE_BROWSER_CLOUD_IMPORT_STATUS_IMPORTING);
283 SET_STRING("CLOUD_IMPORT_STATUS_INSUFFICIENT_SPACE", 283 SET_STRING("CLOUD_IMPORT_STATUS_INSUFFICIENT_SPACE",
284 IDS_FILE_BROWSER_CLOUD_IMPORT_STATUS_INSUFFICIENT_SPACE); 284 IDS_FILE_BROWSER_CLOUD_IMPORT_STATUS_INSUFFICIENT_SPACE);
285 SET_STRING("CLOUD_IMPORT_STATUS_NO_MEDIA", 285 SET_STRING("CLOUD_IMPORT_STATUS_NO_MEDIA",
286 IDS_FILE_BROWSER_CLOUD_IMPORT_STATUS_NO_MEDIA); 286 IDS_FILE_BROWSER_CLOUD_IMPORT_STATUS_NO_MEDIA);
287 SET_STRING("CLOUD_IMPORT_STATUS_READY", 287 SET_STRING("CLOUD_IMPORT_STATUS_READY",
288 IDS_FILE_BROWSER_CLOUD_IMPORT_STATUS_READY); 288 IDS_FILE_BROWSER_CLOUD_IMPORT_STATUS_READY);
289 SET_STRING("CLOUD_IMPORT_STATUS_SCANNING", 289 SET_STRING("CLOUD_IMPORT_STATUS_SCANNING",
290 IDS_FILE_BROWSER_CLOUD_IMPORT_STATUS_SCANNING); 290 IDS_FILE_BROWSER_CLOUD_IMPORT_STATUS_SCANNING);
291 SET_STRING("CLOUD_IMPORT_ITEMS_REMAINING",
292 IDS_FILE_BROWSER_CLOUD_IMPORT_ITEMS_REMAINING);
291 293
292 SET_STRING("CLOUD_IMPORT_TOOLTIP_READY", 294 SET_STRING("CLOUD_IMPORT_TOOLTIP_READY",
293 IDS_FILE_BROWSER_CLOUD_IMPORT_TOOLTIP_DONE); 295 IDS_FILE_BROWSER_CLOUD_IMPORT_TOOLTIP_DONE);
294 SET_STRING("CLOUD_IMPORT_TOOLTIP_IMPORTING", 296 SET_STRING("CLOUD_IMPORT_TOOLTIP_IMPORTING",
295 IDS_FILE_BROWSER_CLOUD_IMPORT_TOOLTIP_IMPORTING); 297 IDS_FILE_BROWSER_CLOUD_IMPORT_TOOLTIP_IMPORTING);
296 SET_STRING("CLOUD_IMPORT_TOOLTIP_INSUFFICIENT_SPACE", 298 SET_STRING("CLOUD_IMPORT_TOOLTIP_INSUFFICIENT_SPACE",
297 IDS_FILE_BROWSER_CLOUD_IMPORT_TOOLTIP_INSUFFICIENT_SPACE); 299 IDS_FILE_BROWSER_CLOUD_IMPORT_TOOLTIP_INSUFFICIENT_SPACE);
298 SET_STRING("CLOUD_IMPORT_TOOLTIP_NO_MEDIA", 300 SET_STRING("CLOUD_IMPORT_TOOLTIP_NO_MEDIA",
299 IDS_FILE_BROWSER_CLOUD_IMPORT_TOOLTIP_NO_MEDIA); 301 IDS_FILE_BROWSER_CLOUD_IMPORT_TOOLTIP_NO_MEDIA);
300 SET_STRING("CLOUD_IMPORT_TOOLTIP_READY", 302 SET_STRING("CLOUD_IMPORT_TOOLTIP_READY",
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 base::StringPrintf(kHelpURLFormat, kNoActionForFileHelpNumber)); 578 base::StringPrintf(kHelpURLFormat, kNoActionForFileHelpNumber));
577 dict->SetString("UI_LOCALE", extension_l10n_util::CurrentLocaleOrDefault()); 579 dict->SetString("UI_LOCALE", extension_l10n_util::CurrentLocaleOrDefault());
578 580
579 const std::string& app_locale = g_browser_process->GetApplicationLocale(); 581 const std::string& app_locale = g_browser_process->GetApplicationLocale();
580 webui::SetLoadTimeDataDefaults(app_locale, dict); 582 webui::SetLoadTimeDataDefaults(app_locale, dict);
581 583
582 return true; 584 return true;
583 } 585 }
584 586
585 } // namespace extensions 587 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/app/chromeos_strings.grdp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698