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

Unified Diff: ui/file_manager/file_manager/foreground/js/import_controller.js

Issue 988413004: Use correct tooltips for insufficient space and no-media states. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/file_manager/foreground/js/import_controller.js
diff --git a/ui/file_manager/file_manager/foreground/js/import_controller.js b/ui/file_manager/file_manager/foreground/js/import_controller.js
index fa8e86fc845977115d973b4e56acb85f250652b2..62c28d820b25ca413eb9bdddff437a84276296a1 100644
--- a/ui/file_manager/file_manager/foreground/js/import_controller.js
+++ b/ui/file_manager/file_manager/foreground/js/import_controller.js
@@ -661,7 +661,7 @@ importer.RuntimeCommandWidget.prototype.update =
console.assert(!!opt_scan, 'Scan not defined, but is required.');
this.mainButton_.setAttribute('title', strf(
- 'CLOUD_IMPORT_STATUS_INSUFFICIENT_SPACE'));
+ 'CLOUD_IMPORT_TOOLTIP_INSUFFICIENT_SPACE'));
this.statusContent_.innerHTML = strf(
'CLOUD_IMPORT_STATUS_INSUFFICIENT_SPACE',
opt_scan.getFileEntries().length);
@@ -678,7 +678,7 @@ importer.RuntimeCommandWidget.prototype.update =
case importer.ActivityState.NO_MEDIA:
this.mainButton_.setAttribute('title', str(
- 'CLOUD_IMPORT_STATUS_NO_MEDIA'));
+ 'CLOUD_IMPORT_TOOLTIP_NO_MEDIA'));
this.statusContent_.innerHTML = str(
'CLOUD_IMPORT_STATUS_NO_MEDIA');
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698