b1bcb8ab51
The release is a month or two old by now. Some Qt 5.15.2 patches have landed in the release, but not all of them. New translations require additional dependencies and patching in the right directory to search (PREFIX/share). There are no useful release notes for this release. PR: 251335
12 lines
500 B
C++
12 lines
500 B
C++
--- src/fractgen.cc.orig 2021-01-06 00:19:32 UTC
|
|
+++ src/fractgen.cc
|
|
@@ -34,7 +34,7 @@ int main(int argc, char *argv[])
|
|
QTranslator applicationTranslator;
|
|
if(!applicationTranslator.load("fractgen_" + QLocale::system().name())) {
|
|
applicationTranslator.load("fractgen_" + QLocale::system().name(),
|
|
- "/usr/share/fractgen");
|
|
+ "%%PREFIX%%/share/fractgen");
|
|
}
|
|
application.installTranslator(&applicationTranslator);
|
|
|