From 2381b64e3559fd8f95297e866fd943a18da7fbaa Mon Sep 17 00:00:00 2001 From: Philipp Wolfer Date: Mon, 25 Sep 2023 15:39:56 +0200 Subject: [PATCH] Revert accidental translatable string change --- picard/ui/options/interface.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/picard/ui/options/interface.py b/picard/ui/options/interface.py index 1a784749e9..17674def04 100644 --- a/picard/ui/options/interface.py +++ b/picard/ui/options/interface.py @@ -181,8 +181,8 @@ def save(self): restart_warning = _("You have changed the application theme. You have to restart Picard in order for the change to take effect.") if new_theme_setting == str(UiTheme.SYSTEM): restart_warning += '\n\n' + _( - "Please note that using the system theme might cause the user interface to be not shown correctly. " - "If this is the case select the `Default` theme option to use Picard's default theme again." + 'Please note that using the system theme might cause the user interface to be not shown correctly. ' + 'If this is the case select the "Default" theme option to use Picard\'s default theme again.' ) elif new_language != config.setting['ui_language']: restart_warning_title = _("Language changed")