diff --git a/src/General/Settings.coffee b/src/General/Settings.coffee
index 0d8c2efdc..4ebf2cba1 100644
--- a/src/General/Settings.coffee
+++ b/src/General/Settings.coffee
@@ -493,7 +493,7 @@ Settings =
$.id('lastarchivecheck').textContent = 'never'
items = {}
- for name in ['archiveLists', 'archiveAutoUpdate', 'captchaLanguage', 'boardnav', 'time', 'backlink', 'fileInfo', 'QR.personas', 'favicon', 'usercss', 'customCooldown', 'jsWhitelist']
+ for name in ['archiveLists', 'archiveAutoUpdate', 'captchaLanguage', 'boardnav', 'time', 'timeLocale', 'backlink', 'fileInfo', 'QR.personas', 'favicon', 'usercss', 'customCooldown', 'jsWhitelist']
items[name] = Conf[name]
input = inputs[name]
event = if name in ['archiveLists', 'archiveAutoUpdate', 'QR.personas', 'favicon', 'usercss'] then 'change' else 'input'
@@ -646,6 +646,9 @@ Settings =
time: ->
@nextElementSibling.textContent = Time.format @value, new Date()
+ timeLocale: ->
+ Settings.time.call $('[name=time]', Settings.dialog)
+
backlink: ->
@nextElementSibling.textContent = @value.replace /%(?:id|%)/g, (x) -> ({'%id': '123456789', '%%': '%'})[x]
diff --git a/src/General/Settings/Advanced.html b/src/General/Settings/Advanced.html
index ecc0dae47..53dd2f680 100644
--- a/src/General/Settings/Advanced.html
+++ b/src/General/Settings/Advanced.html
@@ -64,6 +64,7 @@
Minute: %M
Second: %S
Literal %: %%
+