blob: cc562e13a0827c7259deaf0c4c02665629c7b715 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
<div id="languagePage" class="page" hidden>
<div class="close-button"></div>
<h1 i18n-content="languagePage"></h1>
<div class="content-area">
<div id="notification">
<span> </span>
<span class="link"><span class="link-color"></span></span>
</div>
<!-- TODO(kevers): Fix format of i18n-content labels -->
<div class="language-options-header">
<div i18n-content="add_language_instructions"></div>
<if expr="pp_ifdef('chromeos')">
<div i18n-content="input_method_instructions"></div>
</if>
</div>
<div class="language-options">
<div class="language-options-left">
<h3 i18n-content="languages"></h3>
<list id="language-options-list"></list>
<div class="language-options-lower-left">
<button id="language-options-add-button"
i18n-content="add_button">
</button>
<if expr="pp_ifdef('chromeos')">
<button id="language-options-extension-ime-button"
i18n-content="extension_ime_label">
</button>
</if>
</div>
<div id="language-options-list-dropmarker"></div>
</div>
<!-- Chrome uses the native OS spellchecker in OS X, so don't display the
dictionary pane. -->
<if expr="not is_macosx">
<div class="language-options-right">
<h3 id="language-options-language-name"></h3>
<if expr="os == 'win32' or pp_ifdef('chromeos')">
<div class="language-options-contents">
<button id="language-options-ui-language-button"
i18n-content="display_in_this_language">
</button>
<span id="language-options-ui-language-message" hidden></span>
</div>
</if>
<div id="language-options-spellcheck" class="language-options-contents">
<button id="language-options-spell-check-language-button"
i18n-content="use_this_for_spell_checking">
</button>
<span id="language-options-spell-check-language-message" hidden>
</span>
<span id="language-options-dictionary-downloading-message"
i18n-content="downloading_dictionary" hidden>
</span>
</div>
<div id="language-options-dictionary-download-failed-message"
class="language-options-notification" hidden>
<div i18n-content="download_failed"></div>
<div id="language-options-dictionary-download-fail-help-message"
i18n-content="download_fail_help" hidden>
</div>
<button id="dictionary-download-retry-button"
i18n-content="retry_button">
</button>
</div>
<div id="language-options-ui-notification-bar"
class="language-options-notification" hidden>
<div i18n-content="restart_required"></div>
<if expr="pp_ifdef('chromeos')">
<button id="language-options-ui-restart-button"
i18n-content="restart_button">
</button>
</if>
</div>
<if expr="pp_ifdef('chromeos')">
<h3 i18n-content="input_method"></h3>
<div id="language-options-input-method-proto" class="input-method"
hidden>
<div class="checkbox">
<label>
<input type="checkbox">
<span class="input-method-label"></span>
</label>
</div>
</div>
<div id="language-options-input-method-list"
class="language-options-contents">
</div>
</if>
</div>
</if>
</div>
<div class="language-options-footer">
<if expr="pp_ifdef('chromeos')">
<div i18n-content="switch_input_methods_hint"></div>
<div i18n-content="select_previous_input_method_hint"></div>
<button id="edit-dictionary-button"
class="link-button standalone-link-button"
i18n-content="languageDictionaryOverlayTitle"></button>
</if>
<if expr="not pp_ifdef('chromeos') and not is_macosx">
<div id="spell-check-option" class="checkbox">
<label>
<input id="enable-spell-check" pref="browser.enable_spellchecking"
metric="Options_SpellCheck" type="checkbox">
<span i18n-content="enable_spell_check"></span>
</label>
<button id="edit-dictionary-button" class="link-button"
i18n-content="languageDictionaryOverlayTitle" hidden></button>
</div>
<div id="auto-spell-correction-option" class="checkbox" hidden>
<label>
<input id="enable-auto-spell-correction"
pref="browser.enable_autospellcorrect"
metric="Options_AutoSpellCorrection" type="checkbox">
<span i18n-content="enable_auto_spell_correction"></span>
</label>
</div>
</if>
</div>
</div>
<div class="action-area">
<div class="button-strip">
<button id="language-confirm" i18n-content="done"></button>
</div>
</div>
</div>
|