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

Unified Diff: chrome/browser/resources/chromeos/login/accessibility_menu.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/accessibility_menu.html
diff --git a/chrome/browser/resources/chromeos/login/accessibility_menu.html b/chrome/browser/resources/chromeos/login/accessibility_menu.html
index 1a407925819c7d3e6433a26cf2c9cb7cdcdd95ae..3c4d91a475738f0218dce26f961d6251a06274a9 100644
--- a/chrome/browser/resources/chromeos/login/accessibility_menu.html
+++ b/chrome/browser/resources/chromeos/login/accessibility_menu.html
@@ -1,32 +1,32 @@
<div id="accessibility-menu" class="bubble faded" hidden>
<div class="checkboxrow">
<input id="spoken-feedback" type="checkbox">
- <label for="spoken-feedback" class="checkboxlabel"
- i18n-content="spokenFeedbackOption">
+ <label for="spoken-feedback" class="checkboxlabel">
+ $i18n{spokenFeedbackOption}
</label>
</div>
<div class="checkboxrow">
<input id="large-cursor" type="checkbox">
- <label for="large-cursor" class="checkboxlabel"
- i18n-content="largeCursorOption">
+ <label for="large-cursor" class="checkboxlabel">
+ $i18n{largeCursorOption}
</label>
</div>
<div class="checkboxrow">
<input id="high-contrast" type="checkbox">
- <label for="high-contrast" class="checkboxlabel"
- i18n-content="highContrastOption">
+ <label for="high-contrast" class="checkboxlabel">
+ $i18n{highContrastOption}
</label>
</div>
<div class="checkboxrow">
<input id="screen-magnifier" type="checkbox">
- <label for="screen-magnifier" class="checkboxlabel"
- i18n-content="screenMagnifierOption">
+ <label for="screen-magnifier" class="checkboxlabel">
+ $i18n{screenMagnifierOption}
</label>
</div>
<div class="checkboxrow">
<input id="virtual-keyboard" type="checkbox">
- <label for="virtual-keyboard" class="checkboxlabel"
- i18n-content="virtualKeyboardOption">
+ <label for="virtual-keyboard" class="checkboxlabel">
+ $i18n{virtualKeyboardOption}
</label>
</div>
<div id="close-accessibility-menu" class="close-button"

Powered by Google App Engine
This is Rietveld 408576698