Add ICU message format support
[chromium-blink-merge.git] / chrome / browser / resources / settings / sync_page / sync_page.html
blobcf8434e26f6af1be82c7e8a7e49b8835d00b1e13
1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-material.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/paper-radio-button.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper-radio-group.html">
5 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_button/cr_button.html">
6 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_checkbox/cr_checkbox.html">
7 <link rel="import" href="chrome://md-settings/checkbox/checkbox.html">
9 <dom-module id="cr-settings-sync-page">
10 <link rel="import" type="css"
11 href="chrome://md-settings/settings_page/settings_page.css">
12 <link rel="import" type="css" href="sync_page.css">
13 <template>
14 <div i18n-content="syncPageTitle"></div>
15 <select>
16 <option value="sync-everything"
17 i18n-content="syncEverythingMenuOption">
18 </option>
19 <option value="choose-what-to-sync"
20 i18n-content="chooseWhatToSyncMenuOption">
21 </option>
22 </select>
23 <div class="checkbox-container">
24 <div class="checkbox-container-row">
25 <cr-checkbox>
26 <span i18n-content="appCheckboxLabel"></span>
27 </cr-checkbox>
28 <cr-checkbox>
29 <span i18n-content="extensionsCheckboxLabel"></span>
30 </cr-checkbox>
31 <cr-checkbox>
32 <span i18n-content="settingsCheckboxLabel"></span>
33 </cr-checkbox>
34 </div>
35 <div class="checkbox-container-row">
36 <cr-checkbox>
37 <span i18n-content="autofillCheckboxLabel"></span>
38 </cr-checkbox>
39 <cr-checkbox>
40 <span i18n-content="historyCheckboxLabel"></span>
41 </cr-checkbox>
42 <cr-checkbox>
43 <span i18n-content="themesAndWallpapersCheckboxLabel"></span>
44 </cr-checkbox>
45 </div>
46 <div class="checkbox-container-row">
47 <cr-checkbox>
48 <span i18n-content="bookmarksCheckboxLabel"></span>
49 </cr-checkbox>
50 <cr-checkbox>
51 <span i18n-content="passwordsCheckboxLabel"></span>
52 </cr-checkbox>
53 <cr-checkbox>
54 <span i18n-content="openTabsCheckboxLabel"></span>
55 </cr-checkbox>
56 </div>
57 </div>
58 <div i18n-content="encryptionOptionsTitle"></div>
59 <div i18n-content="syncDataEncryptedText"></div>
60 <paper-radio-group selected="encrypt-with-google">
61 <paper-radio-button name="encrypt-with-google"
62 i18n-content="encryptWithGoogleCredentialsLabel">
63 </paper-radio-button>
64 <paper-radio-button name="encrypt-with-passphrase"
65 i18n-content="encryptWithSyncPassphraseLabel">
66 </paper-radio-button>
67 </paper-radio-group>
68 <div>
69 <cr-button i18n-content="useDefaultSettingsButton"></cr-button>
70 <cr-button i18n-content="cancelButton"></cr-button>
71 <cr-button i18n-content="okButton"></cr-button>
72 </div>
73 </template>
74 <script src="sync_page.js"></script>
75 </dom-module>