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

Side by Side Diff: chrome/browser/resources/chromeos/login/controller-pairing-screen.js

Issue 2626123002: [i18n] chromeos login i18n-content to $i18n{} (Closed)
Patch Set: nit Created 3 years, 11 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 Polymer((function() { 5 Polymer((function() {
6 /** @const */ var ICON_COLORS = ['#F0B9CB', '#F0ACC3', '#F098B6', '#F084A9', 6 /** @const */ var ICON_COLORS = ['#F0B9CB', '#F0ACC3', '#F098B6', '#F084A9',
7 '#F06D99', '#F05287', '#F0467F', '#F03473', 7 '#F06D99', '#F05287', '#F0467F', '#F03473',
8 '#F01E65', '#F00051']; 8 '#F01E65', '#F00051'];
9 return { 9 return {
10 is: 'pairing-device-list', 10 is: 'pairing-device-list',
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 return this.i18n(['loginControllerPairingScreenEnrollmentInProgress', 137 return this.i18n(['loginControllerPairingScreenEnrollmentInProgress',
138 domain]); 138 domain]);
139 }, 139 },
140 140
141 getSuccessMessage_: function(selectedDevice) { 141 getSuccessMessage_: function(selectedDevice) {
142 return this.i18n(['loginControllerPairingScreenSuccessText', 142 return this.i18n(['loginControllerPairingScreenSuccessText',
143 selectedDevice]); 143 selectedDevice]);
144 } 144 }
145 }; 145 };
146 })()); 146 })());
147
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698