OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 | 5 |
6 /** | 6 /** |
7 * @fileoverview Defines methods related to retrieving translated messages. | 7 * @fileoverview Defines methods related to retrieving translated messages. |
8 */ | 8 */ |
9 | 9 |
10 goog.provide('Msgs'); | 10 goog.provide('Msgs'); |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 /** The unselected state for a radio button in braille. */ | 145 /** The unselected state for a radio button in braille. */ |
146 RADIO_UNSELECTED_STATE_BRL: '( )', | 146 RADIO_UNSELECTED_STATE_BRL: '( )', |
147 /** The selected state for a radio button in braille. */ | 147 /** The selected state for a radio button in braille. */ |
148 RADIO_SELECTED_STATE_BRL: '(x)', | 148 RADIO_SELECTED_STATE_BRL: '(x)', |
149 /** Brailled after a menu if the menu has a submenu. */ | 149 /** Brailled after a menu if the menu has a submenu. */ |
150 ARIA_HAS_SUBMENU_BRL: '->', | 150 ARIA_HAS_SUBMENU_BRL: '->', |
151 /** Describes an element with the ARIA role option. */ | 151 /** Describes an element with the ARIA role option. */ |
152 ROLE_OPTION: ' ', | 152 ROLE_OPTION: ' ', |
153 /** Braille of element with the ARIA role option. */ | 153 /** Braille of element with the ARIA role option. */ |
154 ROLE_OPTION_BRL: ' ', | 154 ROLE_OPTION_BRL: ' ', |
155 /** Braille of element with the ARIA attribute aria-checked=true. */ | 155 /** Braille of element that is checked. */ |
156 ARIA_CHECKED_TRUE_BRL: '(x)', | 156 CHECKED_TRUE_BRL: '(x)', |
157 /** Braille of element with the ARIA attribute aria-checked=false. */ | 157 /** Braille of element that is unchecked. */ |
158 ARIA_CHECKED_FALSE_BRL: '( )', | 158 CHECKED_FALSE_BRL: '( )', |
159 /** Braille of element with the ARIA attribute aria-checked=mixed. */ | 159 /** Braille of element where the checked state is mixed or indeterminate. */ |
160 ARIA_CHECKED_MIXED_BRL: '(-)', | 160 CHECKED_MIXED_BRL: '(-)', |
161 /** Braille of element with the ARIA attribute aria-disabled=true. */ | 161 /** Braille of element with the ARIA attribute aria-disabled=true. */ |
162 ARIA_DISABLED_TRUE_BRL: 'xx', | 162 ARIA_DISABLED_TRUE_BRL: 'xx', |
163 /** Braille of element with the ARIA attribute aria-expanded=true. */ | 163 /** Braille of element with the ARIA attribute aria-expanded=true. */ |
164 ARIA_EXPANDED_TRUE_BRL: '-', | 164 ARIA_EXPANDED_TRUE_BRL: '-', |
165 /** Braille of element with the ARIA attribute aria-expanded=false. */ | 165 /** Braille of element with the ARIA attribute aria-expanded=false. */ |
166 ARIA_EXPANDED_FALSE_BRL: '+', | 166 ARIA_EXPANDED_FALSE_BRL: '+', |
167 /** Braille of element with the ARIA attribute aria-invalid=true. */ | 167 /** Braille of element with the ARIA attribute aria-invalid=true. */ |
168 ARIA_INVALID_TRUE_BRL: '!', | 168 ARIA_INVALID_TRUE_BRL: '!', |
169 /** Braille of element with the ARIA attribute aria-pressed=true. */ | 169 /** Braille of element with the ARIA attribute aria-pressed=true. */ |
170 ARIA_PRESSED_TRUE_BRL: '=', | 170 ARIA_PRESSED_TRUE_BRL: '=', |
(...skipping 11 matching lines...) Expand all Loading... |
182 TAG_TIME_BRL: ' ', | 182 TAG_TIME_BRL: ' ', |
183 /** Spoken when describing an ARIA value. */ | 183 /** Spoken when describing an ARIA value. */ |
184 ARIA_VALUE_NOW: '$1', | 184 ARIA_VALUE_NOW: '$1', |
185 /** Brailled when describing an ARIA value. */ | 185 /** Brailled when describing an ARIA value. */ |
186 ARIA_VALUE_NOW_BRL: '$1', | 186 ARIA_VALUE_NOW_BRL: '$1', |
187 /** Spoken when describing an ARIA value text. */ | 187 /** Spoken when describing an ARIA value text. */ |
188 ARIA_VALUE_TEXT: '$1', | 188 ARIA_VALUE_TEXT: '$1', |
189 /** Brailled when describing an ARIA value text. */ | 189 /** Brailled when describing an ARIA value text. */ |
190 ARIA_VALUE_TEXT_BRL: '$1', | 190 ARIA_VALUE_TEXT_BRL: '$1', |
191 }; | 191 }; |
OLD | NEW |