Fix: i18n
This commit is contained in:
parent
2fcbbc9a01
commit
cd1f78e19e
|
@ -974,6 +974,9 @@
|
||||||
"optionsCustomizeUpdate": {
|
"optionsCustomizeUpdate": {
|
||||||
"message": "Updates"
|
"message": "Updates"
|
||||||
},
|
},
|
||||||
|
"optionsCustomizeSync": {
|
||||||
|
"message": "Sync to cloud"
|
||||||
|
},
|
||||||
"optionsHeading": {
|
"optionsHeading": {
|
||||||
"message": "Options",
|
"message": "Options",
|
||||||
"description": "Heading for options section on manage page."
|
"description": "Heading for options section on manage page."
|
||||||
|
@ -1009,6 +1012,21 @@
|
||||||
"optionsUpdateInterval": {
|
"optionsUpdateInterval": {
|
||||||
"message": "Userstyle autoupdate interval in hours (specify 0 to disable)"
|
"message": "Userstyle autoupdate interval in hours (specify 0 to disable)"
|
||||||
},
|
},
|
||||||
|
"optionsSyncNone": {
|
||||||
|
"message": "None"
|
||||||
|
},
|
||||||
|
"optionsSyncConnect": {
|
||||||
|
"message": "Connect"
|
||||||
|
},
|
||||||
|
"optionsSyncDisconnect": {
|
||||||
|
"message": "Disconnect"
|
||||||
|
},
|
||||||
|
"optionsSyncSyncNow": {
|
||||||
|
"message": "Sync now"
|
||||||
|
},
|
||||||
|
"optionsSyncLogin": {
|
||||||
|
"message": "Login"
|
||||||
|
},
|
||||||
"paginationCurrent": {
|
"paginationCurrent": {
|
||||||
"message": "Current page",
|
"message": "Current page",
|
||||||
"description": "Tooltip for the current page index in search results"
|
"description": "Tooltip for the current page index in search results"
|
||||||
|
|
13
options.html
13
options.html
|
@ -138,23 +138,22 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="block sync-options">
|
<div class="block sync-options">
|
||||||
<!-- FIXME: i18n -->
|
<h1 i18n-text="optionsCustomizeSync">Sync to cloud</h1>
|
||||||
<h1>Sync to cloud</h1>
|
|
||||||
<div class="items">
|
<div class="items">
|
||||||
<label>
|
<label>
|
||||||
<span class="sync-status"></span>
|
<span class="sync-status"></span>
|
||||||
<select class="cloud-name">
|
<select class="cloud-name">
|
||||||
<option value="none">None</option>
|
<option value="none" i18n-text="optionsSyncNone"></option>
|
||||||
<option value="dropbox">Dropbox</option>
|
<option value="dropbox">Dropbox</option>
|
||||||
<option value="google">Google Drive</option>
|
<option value="google">Google Drive</option>
|
||||||
<option value="onedrive">OneDrive</option>
|
<option value="onedrive">OneDrive</option>
|
||||||
</select>
|
</select>
|
||||||
</label>
|
</label>
|
||||||
<div class="actions">
|
<div class="actions">
|
||||||
<button type="button" class="connect">Connect</button>
|
<button type="button" class="connect" i18n-text="optionsSyncConnect"></button>
|
||||||
<button type="button" class="disconnect">Disconnect</button>
|
<button type="button" class="disconnect" i18n-text="optionsSyncDisconnect"></button>
|
||||||
<button type="button" class="sync-now">Sync now</button>
|
<button type="button" class="sync-now" i18n-text="optionsSyncSyncNow"></button>
|
||||||
<button type="button" class="sync-login">Login</button>
|
<button type="button" class="sync-login" i18n-text="optionsSyncLogin"></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user