Fix typo on do_save_episode() strings

This commit is contained in:
Teemu Ikonen 2022-02-03 22:14:46 +02:00
parent 3f64a58fa9
commit e9cb4e9eaa
1 changed files with 2 additions and 2 deletions

View File

@ -1828,9 +1828,9 @@ class gPodder(BuilderWidget, dbus.service.Object):
if os.path.exists(copy_to):
logger.warn(copy_from)
logger.warn(copy_to)
title = _('File already exist')
title = _('File already exists')
d = {'filename': os.path.basename(copy_to)}
message = _('A file named "%(filename)s" already exist. Do you want to replace it?') % d
message = _('A file named "%(filename)s" already exists. Do you want to replace it?') % d
if not self.show_confirmation(message, title):
return
try: