mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-07-22 11:59:33 +00:00
snapshots: Clarify description for disabling yearly snapshots
BTW, choice literals translated. Close #1937. Signed-off-by: Fioddor Superconcentrado <fioddor@gmail.com> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
parent
43ab6db456
commit
4c9e5dbc24
@ -20,13 +20,13 @@ class SnapshotForm(forms.Form):
|
||||
label=_('Timeline Snapshots'),
|
||||
help_text=_('Enable or disable timeline snapshots '
|
||||
'(hourly, daily, monthly and yearly).'),
|
||||
choices=[('yes', 'Enabled'), ('no', 'Disabled')])
|
||||
choices=[('yes', _('Enabled')), ('no', _('Disabled'))])
|
||||
|
||||
enable_software_snapshots = forms.ChoiceField(
|
||||
label=_('Software Installation Snapshots'),
|
||||
help_text=_('Enable or disable snapshots before and after software '
|
||||
'installation'), choices=[('yes', 'Enabled'),
|
||||
('no', 'Disabled')])
|
||||
'installation'), choices=[('yes', _('Enabled')),
|
||||
('no', _('Disabled'))])
|
||||
|
||||
hourly_limit = forms.IntegerField(
|
||||
label=_('Hourly Snapshots Limit'), min_value=0,
|
||||
@ -47,4 +47,4 @@ class SnapshotForm(forms.Form):
|
||||
yearly_limit = forms.IntegerField(
|
||||
label=_('Yearly Snapshots Limit'), min_value=0,
|
||||
help_text=_('Keep a maximum of this many yearly snapshots. '
|
||||
'The default value is 0 (disabled).'))
|
||||
'The default value is 0 (keep no yearly snapshot).'))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user