summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2023-12-06 09:47:35 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2023-12-06 09:47:35 -0600
commita99f0bde05e300ec34b075d7df19ee9b5389c255 (patch)
treed56aca77b0f4e44cb868406f3f62d22c4fb42bb6
parent40426b314c02727bab5e8cd720838037644defad (diff)
downloadhorizon-a99f0bde05e300ec34b075d7df19ee9b5389c255.tar.gz
horizon-a99f0bde05e300ec34b075d7df19ee9b5389c255.tar.bz2
horizon-a99f0bde05e300ec34b075d7df19ee9b5389c255.tar.xz
horizon-a99f0bde05e300ec34b075d7df19ee9b5389c255.zip
Qt UI: Use single line for simple descriptions
This makes it fit in the alloted size.
-rw-r--r--ui/qt5/pkgsimple.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/qt5/pkgsimple.cc b/ui/qt5/pkgsimple.cc
index eab4066..257349b 100644
--- a/ui/qt5/pkgsimple.cc
+++ b/ui/qt5/pkgsimple.cc
@@ -37,7 +37,7 @@ PkgSimplePage::PkgSimplePage(QWidget *parent) : HorizonWizardPage(parent) {
standardButton->setIcon(QIcon::fromTheme("preferences-desktop-theme"));
standardButton->setIconSize(QSize(32, 32));
standardLabel = new QLabel(
- tr("Includes a full desktop environment, Web browser, email client, media player, and software suite."));
+ tr("Desktop environment and full software suite."));
standardLabel->setBuddy(standardButton);
standardLabel->setIndent(40);
standardLabel->setWordWrap(true);
@@ -47,7 +47,7 @@ PkgSimplePage::PkgSimplePage(QWidget *parent) : HorizonWizardPage(parent) {
mobileButton->setIcon(QIcon::fromTheme("battery"));
mobileButton->setIconSize(QSize(32, 32));
mobileLabel = new QLabel(
- tr("Includes the Standard software set and additional utilities for notebook and tablet computers."));
+ tr("Standard + extra software for portable computers."));
mobileLabel->setBuddy(mobileButton);
mobileLabel->setIndent(40);
mobileLabel->setWordWrap(true);