Skip to content

Commit 33d6081

Browse files
committed
GUI - improve wording and styling of translation help plea
1 parent 738149c commit 33d6081

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

app/gui/qt/mainwindow.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1337,10 +1337,10 @@ void MainWindow::initPrefsWindow() {
13371337
go_translate->setText(
13381338
"Sonic Pi hasn't been translated to " +
13391339
QLocale::languageToString(QLocale::system().language()) +
1340-
" yet.<br>" +
1341-
"You can help " +
1340+
" yet.<br/>" +
1341+
"We rely on crowdsourcing to help create and maintain translations.<br/>" +
13421342
"<a href=\"https://github.com/samaaron/sonic-pi/blob/master/TRANSLATION.md\">" +
1343-
"translate the Sonic Pi GUI</a> to your language."
1343+
"Please consider helping to translate Sonic Pi to your language.</a> "
13441344
);
13451345
go_translate->setTextFormat(Qt::RichText);
13461346
translation_box_layout->addWidget(go_translate);
@@ -2045,6 +2045,8 @@ void MainWindow::updateDarkMode(){
20452045
p.setColor(QPalette::Midlight, currentTheme->color("Midlight"));
20462046
p.setColor(QPalette::Mid, currentTheme->color("Mid"));
20472047
p.setColor(QPalette::Dark, currentTheme->color("Dark"));
2048+
p.setColor(QPalette::Link, "deeppink");
2049+
p.setColor(QPalette::LinkVisited, "deeppink");
20482050

20492051
QApplication::setPalette(p);
20502052

0 commit comments

Comments
 (0)