From fc4a9183bdaa77146d18a605087bd5ef9a12798f Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Tue, 25 Jan 2022 20:31:37 -0800 Subject: [PATCH] snapshots: Clarify that snapshots are take during updates too Closes: #1917. Tests: - The UI message got updated. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/snapshot/forms.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plinth/modules/snapshot/forms.py b/plinth/modules/snapshot/forms.py index 5b5fda117..298e745aa 100644 --- a/plinth/modules/snapshot/forms.py +++ b/plinth/modules/snapshot/forms.py @@ -24,9 +24,9 @@ class SnapshotForm(forms.Form): 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'))]) + help_text=_('Enable or disable snapshots before and after each ' + 'software installation and update.'), + choices=[('yes', _('Enabled')), ('no', _('Disabled'))]) hourly_limit = forms.IntegerField( label=_('Hourly Snapshots Limit'), min_value=0,