# HG changeset patch # User Paper # Date 1704751508 18000 # Node ID 7ca56c4ac0bcb3a974534ea9562d2f1972e7b6ac # Parent 84e0a3c4737ad11af12fd38d211b04591f623fde about: don't abuse QCoreApplication:tr diff -r 84e0a3c4737a -r 7ca56c4ac0bc src/core/config.cc --- a/src/core/config.cc Mon Jan 08 16:54:16 2024 -0500 +++ b/src/core/config.cc Mon Jan 08 17:05:08 2024 -0500 @@ -25,6 +25,9 @@ /* I'll use an INI-based config file instead of using an * XML file like Taiga. + * + * It technically isn't to spec, because I'm making these case-sensitive. + * Boohoo. */ int Config::Load() { diff -r 84e0a3c4737a -r 7ca56c4ac0bc src/gui/dialog/about.cc --- a/src/gui/dialog/about.cc Mon Jan 08 16:54:16 2024 -0500 +++ b/src/gui/dialog/about.cc Mon Jan 08 17:05:08 2024 -0500 @@ -49,11 +49,11 @@ "" "

Minori v" + Strings::ToQString(session.version.to_string()) + "

" "

" - " " + QCoreApplication::tr("Author:") + "
" + " " + tr("Author:") + "
" " Paper (@mrpapersonic)" "

" "

" - " " + QCoreApplication::tr("Third party components:") + "
" + " " + tr("Third party components:") + "
" "libcurl v") + get_curl_version() + "" ", " "Fugue Icons v3.5.6" @@ -69,16 +69,16 @@ "mINI v0.9.14" "

" "" - "" + QCoreApplication::tr("Special thanks:") + "" + "" + tr("Special thanks:") + "" "" " " "";