diff --git a/docs/html/config_timeshift.html b/docs/html/config_timeshift.html
new file mode 100644
index 00000000..4c3420e3
--- /dev/null
+++ b/docs/html/config_timeshift.html
@@ -0,0 +1,37 @@
+
+
+
+ This tab is used to configure timeshift properties.
+
+
+ Configuration options:
+
+ - Enabled
+
- Turn on and off timeshift.
+
+
- On-Demand
+
- Turn this on to only begin timeshift recording when pause is pressed.
+ Leave unchecked for always timeshifting. (Rewinding even if you haven't pressed
+ pause.)
+
+
- Storage Path:
+
- Where should the timeshift data be stored.
+
+
- Max. Period (mins):
+
- Specify the number of minutes to put into the timeshift.
+
+
- Unlimited:
+
- If checked, this overrides Max Period (mins) and will continue to timeshift until your
+ hard drive or other storage medium fills up.
+
+
- Max. Size (MB)
+
- Specifies in Megabytes how big the timeshift file should get.
+
+
- Unlimited:
+
- If checked, this overrides Max Size (MB) and will continue to timeshift until your
+ hard drive or other storage medium fills up
+
+
+ Changes to any of these settings must be confirmed by pressing the
+ 'Save configuration' button before taking effect.
+
diff --git a/src/webui/static/app/timeshift.js b/src/webui/static/app/timeshift.js
index 7f27ba4f..e1a78aa9 100644
--- a/src/webui/static/app/timeshift.js
+++ b/src/webui/static/app/timeshift.js
@@ -47,7 +47,7 @@ tvheadend.timeshift = function() {
});
var timeshiftUnlPeriod = new Ext.form.Checkbox({
- fieldLabel: ' unlimited',
+ fieldLabel: ' Unlimited',
name: 'timeshift_unlimited_period',
Width: 300
});
@@ -60,7 +60,7 @@ tvheadend.timeshift = function() {
});
var timeshiftUnlSize = new Ext.form.Checkbox({
- fieldLabel: ' unlimited',
+ fieldLabel: ' Unlimited',
name: 'timeshift_unlimited_size',
Width: 300
});