From a041d27c4b7580cb294b363a7a13ff4bd65ea78a Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Wed, 15 Jul 2020 21:19:11 +0300 Subject: [PATCH] - minor change in strings --- appGUI/preferences/general/GeneralGUIPrefGroupUI.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appGUI/preferences/general/GeneralGUIPrefGroupUI.py b/appGUI/preferences/general/GeneralGUIPrefGroupUI.py index 11858ddc..23524ac4 100644 --- a/appGUI/preferences/general/GeneralGUIPrefGroupUI.py +++ b/appGUI/preferences/general/GeneralGUIPrefGroupUI.py @@ -108,7 +108,7 @@ class GeneralGUIPrefGroupUI(OptionsGroupUI): grid0.addWidget(self.style_combo, 5, 1) # Enable High DPI Support - self.hdpi_cb = FCCheckBox('%s' % _('Activate HDPI Support')) + self.hdpi_cb = FCCheckBox('%s' % _('HDPI Support')) self.hdpi_cb.setToolTip( _("Enable High DPI support for the application.\n" "It will be applied at the next app start.") @@ -124,7 +124,7 @@ class GeneralGUIPrefGroupUI(OptionsGroupUI): grid0.addWidget(self.hdpi_cb, 6, 0, 1, 3) # Enable Hover box - self.hover_cb = FCCheckBox('%s' % _('Display Hover Shape')) + self.hover_cb = FCCheckBox('%s' % _('Hover Shape')) self.hover_cb.setToolTip( _("Enable display of a hover shape for the application objects.\n" "It is displayed whenever the mouse cursor is hovering\n" @@ -133,7 +133,7 @@ class GeneralGUIPrefGroupUI(OptionsGroupUI): grid0.addWidget(self.hover_cb, 8, 0, 1, 3) # Enable Selection box - self.selection_cb = FCCheckBox('%s' % _('Display Selection Shape')) + self.selection_cb = FCCheckBox('%s' % _('Selection Shape')) self.selection_cb.setToolTip( _("Enable the display of a selection shape for the application objects.\n" "It is displayed whenever the mouse selects an object\n"