comparison src/gui/dialog/about.cc @ 231:69f4768a820c

chore: merge divergent branches
author Paper <paper@paper.us.eu.org>
date Sat, 13 Jan 2024 09:43:41 -0500
parents 7ca56c4ac0bc
children 4d461ef7d424
comparison
equal deleted inserted replaced
230:2f5a9247e501 231:69f4768a820c
47 /* we have to generate this on-the-fly for localization purposes */ 47 /* we have to generate this on-the-fly for localization purposes */
48 const QString html = QString( 48 const QString html = QString(
49 "<body>" 49 "<body>"
50 " <h2 style=\"font-weight: normal;\"><strong>Minori</strong> v" + Strings::ToQString(session.version.to_string()) + "</h2>" 50 " <h2 style=\"font-weight: normal;\"><strong>Minori</strong> v" + Strings::ToQString(session.version.to_string()) + "</h2>"
51 " <p>" 51 " <p>"
52 " <strong>" + QCoreApplication::tr("Author:") + "</strong><br>" 52 " <strong>" + tr("Author:") + "</strong><br>"
53 " Paper (@mrpapersonic)" 53 " Paper (@mrpapersonic)"
54 " </p>" 54 " </p>"
55 " <p>" 55 " <p>"
56 " <strong>" + QCoreApplication::tr("Third party components:") + "</strong><br>" 56 " <strong>" + tr("Third party components:") + "</strong><br>"
57 "<a href=\"https://curl.se/\">libcurl v") + get_curl_version() + "</a>" 57 "<a href=\"https://curl.se/\">libcurl v") + get_curl_version() + "</a>"
58 ", " 58 ", "
59 "<a href=\"https://p.yusukekamiyamane.com/\">Fugue Icons v3.5.6</a>" 59 "<a href=\"https://p.yusukekamiyamane.com/\">Fugue Icons v3.5.6</a>"
60 ", " 60 ", "
61 "<a href=\"https://github.com/erengy/anitomy\">Anitomy</a>" 61 "<a href=\"https://github.com/erengy/anitomy\">Anitomy</a>"
67 "<a href=\"https://pugixml.org/\">pugixml v" + pugixml_version + "</a>" 67 "<a href=\"https://pugixml.org/\">pugixml v" + pugixml_version + "</a>"
68 ", " 68 ", "
69 "<a href=\"https://github.com/pulzed/mINI\">mINI v0.9.14</a>" 69 "<a href=\"https://github.com/pulzed/mINI\">mINI v0.9.14</a>"
70 " </p>" 70 " </p>"
71 "<span>" 71 "<span>"
72 "<strong>" + QCoreApplication::tr("Special thanks:") + "</strong>" 72 "<strong>" + tr("Special thanks:") + "</strong>"
73 "</span>" 73 "</span>"
74 " <ul style=\"margin-top: 0px; margin-bottom: 0px; margin-left: 15px; margin-right: 0px; -qt-list-indent:0;\">" 74 " <ul style=\"margin-top: 0px; margin-bottom: 0px; margin-left: 15px; margin-right: 0px; -qt-list-indent:0;\">"
75 " <li><strong>Eren Okka</strong> " + QCoreApplication::tr("for creating Taiga") + "</li>" 75 " <li><strong>Eren Okka</strong> " + tr("for creating Taiga") + "</li>"
76 " <li><strong>Alex Huszagh</strong> " + QCoreApplication::tr("and") + " <strong>Colin Duquesnoy</strong> " + 76 " <li><strong>Alex Huszagh</strong> " + tr("and") + " <strong>Colin Duquesnoy</strong> " +
77 QCoreApplication::tr("for creating BreezeStyleSheets, on which the dark theme in this program is " 77 tr("for creating BreezeStyleSheets, on which the dark theme in this program is "
78 "based off of") + "</li>" 78 "based off of") + "</li>"
79 " <li><strong>Andy Brice</strong> " + QCoreApplication::tr("for providing some sample code for " 79 " <li><strong>Andy Brice</strong> " + tr("for providing some sample code for "
80 "detecting dark mode on Windows and macOS") + "</li>" 80 "detecting dark mode on Windows and macOS") + "</li>"
81 " <li><strong>Manuel Wudka-Robles</strong> " + QCoreApplication::tr("for providing information on " 81 " <li><strong>Manuel Wudka-Robles</strong> " + tr("for providing information on "
82 "getting open file descriptors on macOS") + "</li>" 82 "getting open file descriptors on macOS") + "</li>"
83 " </ul>" 83 " </ul>"
84 "</body>"; 84 "</body>";
85 85
86 { 86 {