Skip to content

Commit

Permalink
bottle-row: Use proper quotations
Browse files Browse the repository at this point in the history
  • Loading branch information
TheEvilSkeleton committed Dec 28, 2024
1 parent 791adca commit 4c1c5d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bottles/frontend/views/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand All @@ -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
)
)
Expand Down

0 comments on commit 4c1c5d7

Please sign in to comment.