Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <div id="content-settings-page" class="page" hidden> | 1 <div id="content-settings-page" class="page" hidden> |
| 2 <div class="close-button"></div> | 2 <div class="close-button"></div> |
| 3 <h1 i18n-content="contentSettingsPage"></h1> | 3 <h1 i18n-content="contentSettingsPage"></h1> |
| 4 <div class="content-area"> | 4 <div class="content-area"> |
| 5 <!-- Cookie filter tab contents --> | 5 <!-- Cookie filter tab contents --> |
| 6 <section> | 6 <section> |
| 7 <h3 i18n-content="cookies_tab_label"></h3> | 7 <h3 i18n-content="cookies_tab_label"></h3> |
| 8 <div> | 8 <div> |
| 9 <div class="radio"> | 9 <div class="radio"> |
| 10 <label> | 10 <label> |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 289 </div> | 289 </div> |
| 290 <div class="checkbox"> | 290 <div class="checkbox"> |
| 291 <label> | 291 <label> |
| 292 <input pref="settings.privacy.drm_enabled" type="checkbox"> | 292 <input pref="settings.privacy.drm_enabled" type="checkbox"> |
| 293 <span i18n-content="protectedContentEnable"></span> | 293 <span i18n-content="protectedContentEnable"></span> |
| 294 </label> | 294 </label> |
| 295 </div> | 295 </div> |
| 296 </div> | 296 </div> |
| 297 </section> | 297 </section> |
| 298 </if> | 298 </if> |
| 299 <!-- MediaStream capture device filter --> | |
| 300 <section> | |
| 301 <h3 i18n-content="mediastream_tab_label"></h3> | |
|
Evan Stade
2012/06/15 18:51:25
these i18n var names should be camel case. Also, p
no longer working on chromium
2012/06/15 21:04:47
I checked the naming style for the existing code,
Evan Stade
2012/06/15 21:33:32
examples of i18n-content="camelCase" in this file:
no longer working on chromium
2012/06/18 10:22:49
Thanks for pointing out, this file is indeed misle
| |
| 302 <div> | |
| 303 <div class="radio"> | |
| 304 <label> | |
| 305 <input type="radio" name="mediastream" value="ask"> | |
| 306 <span i18n-content="mediastream_ask"></span> | |
| 307 </label> | |
| 308 </div> | |
| 309 <div class="radio"> | |
| 310 <label> | |
| 311 <input type="radio" name="mediastream" value="block"> | |
| 312 <span i18n-content="mediastream_block"></span> | |
| 313 </label> | |
| 314 </div> | |
| 315 <button class="exceptions-list-button" contentType="mediastream" | |
| 316 i18n-content="manage_exceptions"></button> | |
| 317 </div> | |
| 318 </section> | |
| 299 </div> | 319 </div> |
| 300 <div class="action-area"> | 320 <div class="action-area"> |
| 301 <div class="button-strip"> | 321 <div class="button-strip"> |
| 302 <button id="content-settings-overlay-confirm" i18n-content="ok"></button> | 322 <button id="content-settings-overlay-confirm" i18n-content="ok"></button> |
| 303 </div> | 323 </div> |
| 304 </div> | 324 </div> |
| 305 </div> | 325 </div> |
| OLD | NEW |