From 87d90189188b48b597e8c7e3bc71c0190102a784 Mon Sep 17 00:00:00 2001 From: auouymous Date: Thu, 12 Jan 2023 01:17:56 -0700 Subject: [PATCH] Change 'Finishing...' to something more descriptive of the operation. --- src/gpodder/gtkui/main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gpodder/gtkui/main.py b/src/gpodder/gtkui/main.py index f24b239c..ba71d89d 100644 --- a/src/gpodder/gtkui/main.py +++ b/src/gpodder/gtkui/main.py @@ -439,7 +439,7 @@ class gPodder(BuilderWidget, dbus.service.Object): self.partial_downloads_indicator.on_tick() # not cancellable def final_progress_callback(): - self.partial_downloads_indicator.on_tick(final=_('Finishing...')) + self.partial_downloads_indicator.on_tick(final=_('Cleaning up...')) def finish_progress_callback(resumable_episodes): def offer_resuming(): @@ -1720,7 +1720,7 @@ class gPodder(BuilderWidget, dbus.service.Object): if not progress_indicator.on_tick(): break if progress_indicator: - progress_indicator.on_tick(final=_('Finishing...')) + progress_indicator.on_tick(final=_('Updating...')) # Update the tab title and downloads list if has_queued_tasks or restart_timer: @@ -3287,7 +3287,7 @@ class gPodder(BuilderWidget, dbus.service.Object): break if progress_indicator: - progress_indicator.on_tick(final=_('Finishing...')) + progress_indicator.on_tick(final=_('Updating...')) self.download_queue_manager.enable() # Update the tab title and downloads list @@ -3368,7 +3368,7 @@ class gPodder(BuilderWidget, dbus.service.Object): if not progress_indicator.on_tick(): break - progress_indicator.on_tick(final=_('Finishing...')) + progress_indicator.on_tick(final=_('Updating...')) self.download_queue_manager.enable() self.update_episode_list_icons([task.url for task in tasks])