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

Unified Diff: chrome/browser/resources/chromeos/login/host-pairing-screen.js

Issue 1519883003: 1) Add basic configuration (network connection, language, keyboard layout, timezone) setup page. 2)… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the i18n-content HTML format in the html files Created 5 years 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
Index: chrome/browser/resources/chromeos/login/host-pairing-screen.js
diff --git a/chrome/browser/resources/chromeos/login/host-pairing-screen.js b/chrome/browser/resources/chromeos/login/host-pairing-screen.js
index 25baa3216509d1b33f322748eb1fbc2f12024a58..7263fe23ca98b015f2b141c19114354bf276b5c6 100644
--- a/chrome/browser/resources/chromeos/login/host-pairing-screen.js
+++ b/chrome/browser/resources/chromeos/login/host-pairing-screen.js
@@ -31,8 +31,13 @@ Polymer((function() {
this.send(CALLBACK_CONTEXT_READY);
},
+ i18n: function(args) {
+ return loadTimeData.getStringF.apply(loadTimeData, args);
+ },
+
getEnrollmentStepTitle_: function(enrollmentDomain) {
- return this.i18n(['enrollingTitle', enrollmentDomain]);
+ return this.i18n(['loginHostPairingScreenEnrollingTitle',
+ enrollmentDomain]);
}
};
})());

Powered by Google App Engine
This is Rietveld 408576698