| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/assert.html"> | 1 <link rel="import" href="chrome://resources/html/assert.html"> |
| 2 <link rel="import" href="chrome://resources/html/cr.html"> | 2 <link rel="import" href="chrome://resources/html/cr.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
| 9 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> | 9 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> |
| 10 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 10 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 </if> | 26 </if> |
| 27 | 27 |
| 28 <dom-module id="settings-languages-page"> | 28 <dom-module id="settings-languages-page"> |
| 29 <template> | 29 <template> |
| 30 <style include="settings-shared"> | 30 <style include="settings-shared"> |
| 31 .list-button { | 31 .list-button { |
| 32 @apply(--settings-actionable); | 32 @apply(--settings-actionable); |
| 33 } | 33 } |
| 34 </style> | 34 </style> |
| 35 <settings-languages languages="{{languages}}"></settings-languages> | 35 <settings-languages languages="{{languages}}"></settings-languages> |
| 36 <settings-animated-pages id="pages" current-route="{{currentRoute}}" | 36 <settings-animated-pages id="pages" section="languages"> |
| 37 section="languages"> | |
| 38 <neon-animatable id="main"> | 37 <neon-animatable id="main"> |
| 39 <div class="settings-box first two-line"> | 38 <div class="settings-box first two-line"> |
| 40 <div class="start"> | 39 <div class="start"> |
| 41 <div>$i18n{languagesListTitle}</div> | 40 <div>$i18n{languagesListTitle}</div> |
| 42 <div class="secondary"> | 41 <div class="secondary"> |
| 43 [[getProspectiveUILanguageName_( | 42 [[getProspectiveUILanguageName_( |
| 44 languages, prefs.intl.app_locale.value)]] | 43 languages, prefs.intl.app_locale.value)]] |
| 45 </div> | 44 </div> |
| 46 </div> | 45 </div> |
| 47 <cr-expand-button expanded="{{languagesOpened_}}"> | 46 <cr-expand-button expanded="{{languagesOpened_}}"> |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 <template is="dom-if" name="edit-dictionary"> | 210 <template is="dom-if" name="edit-dictionary"> |
| 212 <settings-subpage page-title="$i18n{editDictionaryPageTitle}"> | 211 <settings-subpage page-title="$i18n{editDictionaryPageTitle}"> |
| 213 <settings-edit-dictionary-page></settings-edit-dictionary-page> | 212 <settings-edit-dictionary-page></settings-edit-dictionary-page> |
| 214 </settings-subpage> | 213 </settings-subpage> |
| 215 </template> | 214 </template> |
| 216 </if> | 215 </if> |
| 217 </settings-animated-pages> | 216 </settings-animated-pages> |
| 218 </template> | 217 </template> |
| 219 <script src="languages_page.js"></script> | 218 <script src="languages_page.js"></script> |
| 220 </dom-module> | 219 </dom-module> |
| OLD | NEW |