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

Unified Diff: chrome/browser/resources/chromeos/login/oobe_screen_reset_confirmation_overlay.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/oobe_screen_reset_confirmation_overlay.html
diff --git a/chrome/browser/resources/chromeos/login/oobe_screen_reset_confirmation_overlay.html b/chrome/browser/resources/chromeos/login/oobe_screen_reset_confirmation_overlay.html
index 956b6288c70a64db7694a1bb602bb917f8306f77..cacd8ae34137bc51e0771f11ab393b64ac1dd560 100644
--- a/chrome/browser/resources/chromeos/login/oobe_screen_reset_confirmation_overlay.html
+++ b/chrome/browser/resources/chromeos/login/oobe_screen_reset_confirmation_overlay.html
@@ -1,26 +1,21 @@
<div id="overlay-reset" class="popup-overlay" hidden>
<div id="reset-confirm-overlay" class="oobe-popup not-resizable">
- <h1 i18n-content="confirmPowerwashTitle" class="powerwash-proposal-specific">
- </h1>
- <h1 i18n-content="confirmRollbackTitle" class="rollback-proposal-specific">
- </h1>
+ <h1 class="powerwash-proposal-specific">$i18n{confirmPowerwashTitle}</h1>
+ <h1 class="rollback-proposal-specific">$i18n{confirmRollbackTitle}</h1>
<div class="popup-content-area">
<div id="reset-confirm-info"
class="content-area reset-text">
- <div id="powerwash-confirm-message"
- i18n-content="confirmPowerwashMessage"
- class="powerwash-proposal-specific">
+ <div id="powerwash-confirm-message" class="powerwash-proposal-specific">
+ $i18n{confirmPowerwashMessage}
</div>
- <div id="rollback-confirm-message"
- i18n-content="confirmRollbackMessage"
- class="rollback-proposal-specific">
+ <div id="rollback-confirm-message" class="rollback-proposal-specific">
+ $i18n{confirmRollbackMessage}
</div>
</div>
</div>
<div id="reset-buttons" class="button-strip">
- <button id="reset-confirm-commit" i18n-content="confirmResetButton">
- </button>
- <button id="reset-confirm-dismiss" i18n-content="cancel"></button>
+ <button id="reset-confirm-commit">$i18n{confirmResetButton}</button>
+ <button id="reset-confirm-dismiss">$i18n{cancel}</button>
</div>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698