mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
fd474c0e0c
birdtray crashes not finding the translations without this fix
14 lines
718 B
Diff
14 lines
718 B
Diff
diff --git a/src/birdtrayapp.cpp b/src/birdtrayapp.cpp
|
|
index 847b4d3..3a3709a 100644
|
|
--- a/src/birdtrayapp.cpp
|
|
+++ b/src/birdtrayapp.cpp
|
|
@@ -130,7 +130,7 @@ bool BirdtrayApp::loadTranslations() {
|
|
[](QString path) { return path.append("/translations"); });
|
|
QLocale locale = QLocale::system();
|
|
bool success = loadTranslation(
|
|
- qtTranslator, locale, "qt", {QLibraryInfo::location(QLibraryInfo::TranslationsPath)});
|
|
+ qtTranslator, locale, "qt", {QLatin1String("@qttranslations@/translations")});
|
|
success &= loadTranslation(dynamicTranslator, locale, "dynamic", locations);
|
|
success &= loadTranslation(mainTranslator, locale, "main", locations);
|
|
return success;
|