2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 14:45:14 +00:00

langs updated, build scripts updated

This commit is contained in:
John Preston
2016-02-04 15:44:39 +03:00
parent 02961ecc99
commit fd0a119885
14 changed files with 486 additions and 68 deletions

View File

@@ -199,7 +199,7 @@ namespace Global {
dataStream.setVersion(QDataStream::Qt_5_3);
dataStream << quint64(cRealBetaVersion()) << cBetaPrivateKey();
} else {
LOG(("Error: could not open '%1' for writing private key!").arg(beta.fileName()));
LOG(("FATAL: Could not open '%1' for writing private key!").arg(beta.fileName()));
return false;
}
} else if (beta.exists()) {
@@ -216,11 +216,11 @@ namespace Global {
cSetBetaPrivateKey(k);
cSetRealBetaVersion(v);
} else {
LOG(("Error: '%1' is corrupted, reinstall private beta!").arg(beta.fileName()));
LOG(("FATAL: '%1' is corrupted, reinstall private beta!").arg(beta.fileName()));
return false;
}
} else {
LOG(("Error: could not open '%1' for reading private key!").arg(beta.fileName()));
LOG(("FATAL: could not open '%1' for reading private key!").arg(beta.fileName()));
return false;
}
}