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

Side by Side 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 unified diff | Download patch
OLDNEW
1 <div id="accessibility-menu" class="bubble faded" hidden> 1 <div id="accessibility-menu" class="bubble faded" hidden>
2 <div class="checkboxrow"> 2 <div class="checkboxrow">
3 <input id="spoken-feedback" type="checkbox"> 3 <input id="spoken-feedback" type="checkbox">
4 <label for="spoken-feedback" class="checkboxlabel" 4 <label for="spoken-feedback" class="checkboxlabel">
5 i18n-content="spokenFeedbackOption"> 5 $i18n{spokenFeedbackOption}
6 </label> 6 </label>
7 </div> 7 </div>
8 <div class="checkboxrow"> 8 <div class="checkboxrow">
9 <input id="large-cursor" type="checkbox"> 9 <input id="large-cursor" type="checkbox">
10 <label for="large-cursor" class="checkboxlabel" 10 <label for="large-cursor" class="checkboxlabel">
11 i18n-content="largeCursorOption"> 11 $i18n{largeCursorOption}
12 </label> 12 </label>
13 </div> 13 </div>
14 <div class="checkboxrow"> 14 <div class="checkboxrow">
15 <input id="high-contrast" type="checkbox"> 15 <input id="high-contrast" type="checkbox">
16 <label for="high-contrast" class="checkboxlabel" 16 <label for="high-contrast" class="checkboxlabel">
17 i18n-content="highContrastOption"> 17 $i18n{highContrastOption}
18 </label> 18 </label>
19 </div> 19 </div>
20 <div class="checkboxrow"> 20 <div class="checkboxrow">
21 <input id="screen-magnifier" type="checkbox"> 21 <input id="screen-magnifier" type="checkbox">
22 <label for="screen-magnifier" class="checkboxlabel" 22 <label for="screen-magnifier" class="checkboxlabel">
23 i18n-content="screenMagnifierOption"> 23 $i18n{screenMagnifierOption}
24 </label> 24 </label>
25 </div> 25 </div>
26 <div class="checkboxrow"> 26 <div class="checkboxrow">
27 <input id="virtual-keyboard" type="checkbox"> 27 <input id="virtual-keyboard" type="checkbox">
28 <label for="virtual-keyboard" class="checkboxlabel" 28 <label for="virtual-keyboard" class="checkboxlabel">
29 i18n-content="virtualKeyboardOption"> 29 $i18n{virtualKeyboardOption}
30 </label> 30 </label>
31 </div> 31 </div>
32 <div id="close-accessibility-menu" class="close-button" 32 <div id="close-accessibility-menu" class="close-button"
33 i18n-values="title:closeAccessibilityMenu" tabindex="0"> 33 i18n-values="title:closeAccessibilityMenu" tabindex="0">
34 </div> 34 </div>
35 </div> 35 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698