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

Unified Diff: chrome/browser/resources/chromeos/login/screen_app_launch_splash.html

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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/login/screen_app_launch_splash.html
diff --git a/chrome/browser/resources/chromeos/login/screen_app_launch_splash.html b/chrome/browser/resources/chromeos/login/screen_app_launch_splash.html
index a3ef95a852f6a5d2bb19aa5f2c328c54ec480dd8..1b85e82100b1784bbe5c943108112945fb091cb7 100644
--- a/chrome/browser/resources/chromeos/login/screen_app_launch_splash.html
+++ b/chrome/browser/resources/chromeos/login/screen_app_launch_splash.html
@@ -1,11 +1,13 @@
<div id="app-launch-splash" class="step hidden no-logo fullscreen" hidden>
<div id="splash-content">
- <div id="splash-header" i18n-content="productName"></div>
- <div id="splash-launch-text" i18n-content="appStartMessage"></div>
+ <div id="splash-header">$i18n{productName}</div>
+ <div id="splash-launch-text">$i18n{appStartMessage}</div>
<div id="splash-config-network-container" class="faded">
- <a id="splash-config-network" i18n-content="configureNetwork" href="javascript:void(0)"></a>
+ <a id="splash-config-network" href="javascript:void(0)">
+ $i18n{configureNetwork}
+ </a>
</div>
<div id="splash-spinner" class="spinner"></div>
</div>
- <p id="splash-shortcut-info" i18n-content="shortcutInfo"></p>
+ <p id="splash-shortcut-info">$i18n{shortcutInfo}</p>
</div>

Powered by Google App Engine
This is Rietveld 408576698