# HG changeset patch # User Emanuel Schuetze # Date 1403792975 -7200 # Node ID b00c26fbc695dfad48587800d000fce413db1562 # Parent e6a6cbd58d1f645c950017b68f3367fa882e2fae (UI) linebreak and bigger buttons for German translations. diff -r e6a6cbd58d1f -r b00c26fbc695 ui/l10n/trustbridge_de_DE.ts --- a/ui/l10n/trustbridge_de_DE.ts Thu Jun 26 16:14:09 2014 +0200 +++ b/ui/l10n/trustbridge_de_DE.ts Thu Jun 26 16:29:35 2014 +0200 @@ -226,7 +226,8 @@ Revoked certificates - Zurückgezogene Zertifikate + Zurückgezogene +Zertifikate @@ -275,7 +276,8 @@ Trusted certificates - Vertrauenswürdige Zertifikate + Vertrauenswürdige +Zertifikate Insecure @@ -286,7 +288,8 @@ Information and help - Informationen und Hilfe + Informationen +und Hilfe diff -r e6a6cbd58d1f -r b00c26fbc695 ui/mainwindow.cpp --- a/ui/mainwindow.cpp Thu Jun 26 16:14:09 2014 +0200 +++ b/ui/mainwindow.cpp Thu Jun 26 16:29:35 2014 +0200 @@ -461,8 +461,8 @@ updatesButton->setIcon(QIcon(":/img/view-refresh.png")); updatesButton->setIconSize(QSize(32, 32)); updatesButton->setText(tr("Updates")); - updatesButton->setFixedWidth(90); - updatesButton->setFixedHeight(70); + updatesButton->setFixedWidth(120); + updatesButton->setFixedHeight(75); updatesButton->setCheckable(true); updatesButton->setChecked(true); @@ -471,8 +471,8 @@ allInstallButton->setIcon(QIcon(":/img/document-encrypt.png")); allInstallButton->setIconSize(QSize(32, 32)); allInstallButton->setText(tr("Trusted\ncertificates")); - allInstallButton->setFixedWidth(90); - allInstallButton->setFixedHeight(70); + allInstallButton->setFixedWidth(120); + allInstallButton->setFixedHeight(75); allInstallButton->setCheckable(true); QToolButton *allRemoveButton = new QToolButton; @@ -480,8 +480,8 @@ allRemoveButton->setIcon(QIcon(":/img/task-attempt.png")); allRemoveButton->setIconSize(QSize(32, 32)); allRemoveButton->setText(tr("Revoked\ncertificates")); - allRemoveButton->setFixedWidth(90); - allRemoveButton->setFixedHeight(70); + allRemoveButton->setFixedWidth(120); + allRemoveButton->setFixedHeight(75); allRemoveButton->setCheckable(true); QToolButton *infoButton = new QToolButton; @@ -489,8 +489,8 @@ infoButton->setIcon(QIcon(":/img/dialog-information.png")); infoButton->setIconSize(QSize(32, 32)); infoButton->setText(tr("Information\nand help")); - infoButton->setFixedWidth(90); - infoButton->setFixedHeight(70); + infoButton->setFixedWidth(120); + infoButton->setFixedHeight(75); infoButton->setCheckable(true); mButtonGroup->addButton(updatesButton);