From 8ee05ef6065bc528ea4a3e9d6d7b06f9b4cd6b3c Mon Sep 17 00:00:00 2001 From: Bob Swift Date: Thu, 29 Jun 2023 10:28:31 -0600 Subject: [PATCH] Change double spaces between sentences to single. --- picard/ui/newuserdialog.py | 6 +++--- picard/ui/savewarningdialog.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/picard/ui/newuserdialog.py b/picard/ui/newuserdialog.py index d5454c7e5..46e06e695 100644 --- a/picard/ui/newuserdialog.py +++ b/picard/ui/newuserdialog.py @@ -38,12 +38,12 @@ class NewUserDialog(): "

" "We therefore STRONGLY recommend that you:" "

    " - "
  1. Read the Picard documentation " - "before you use this tool on your music collection. The link is also available from the Help menu.
  2. " + "
  3. Read the Picard documentation " + "before you use this tool on your music collection. The link is also available from the Help menu.
  4. " "
  5. Work on copies of your music files and in small batches until you are fully confident that your music files will be handled the way " "you want them to be. Once Picard has updated a file, there is no way to undo the changes.
  6. " "

" - "Picard is open source software written by volunteers. It is provided as-is and with no warranty. " + "Picard is open source software written by volunteers. It is provided as-is and with no warranty. " "You use Picard at your own risk." "

" ) diff --git a/picard/ui/savewarningdialog.py b/picard/ui/savewarningdialog.py index 73d755b93..7fd9f4bab 100644 --- a/picard/ui/savewarningdialog.py +++ b/picard/ui/savewarningdialog.py @@ -40,7 +40,7 @@ class SaveWarningDialog(): if actions: header = _("This action will:") - footer = _("This action cannot be undone. Do you want to continue?") + footer = _("This action cannot be undone. Do you want to continue?") list_of_actions = '' for action in actions: list_of_actions += _('
  • {action}
  • ').format(action=action) @@ -51,7 +51,7 @@ class SaveWarningDialog(): else: warning_text = _('

    {header}

    {footer}

    ').format(header=header, list_of_actions=list_of_actions, footer=footer) else: - warning_text = _("There are no actions selected. No changes will be saved.") + warning_text = _("There are no actions selected. No changes will be saved.") disable_text = _("Don't show this warning again.")