diff --git a/bottles/frontend/views/list.py b/bottles/frontend/views/list.py index 6cd816cd00a..54a717877e3 100644 --- a/bottles/frontend/views/list.py +++ b/bottles/frontend/views/list.py @@ -78,7 +78,7 @@ def __init__(self, window, config: BottleConfig, **kwargs): self.label_env.add_css_class("tag-%s" % self.config.Environment.lower()) # Set tooltip text - self.button_run.set_tooltip_text(_(f'Run executable in "{self.config.Name}"')) + self.button_run.set_tooltip_text(_(f"Run executable in “{self.config.Name}”")) def run_executable(self, *_args): """Display file dialog for executable""" @@ -90,7 +90,7 @@ def set_path(_dialog, response): return self.window.show_toast( - _('Launching "{0}" in "{1}"…').format( + _("Launching “{0}” in “{1}”…").format( dialog.get_file().get_basename(), self.config.Name ) )