mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
Merge PR #4949: FIX/FEAT(client): Improvements for using --multiple
This commit is contained in:
commit
91f76464c5
@ -229,6 +229,7 @@ int main(int argc, char **argv) {
|
||||
bool printTranslationDirs = false;
|
||||
QString rpcCommand;
|
||||
QUrl url;
|
||||
QDir qdCert(QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation));
|
||||
QStringList extraTranslationDirs;
|
||||
QString localeOverwrite;
|
||||
|
||||
@ -261,6 +262,10 @@ int main(int argc, char **argv) {
|
||||
" Specify an alternative configuration file.\n"
|
||||
" If you use this to run multiple instances of Mumble at once,\n"
|
||||
" make sure to set an alternative 'database' value in the config.\n"
|
||||
" --default-certificate-dir <dir>\n"
|
||||
" Specify an alternative default certificate path.\n"
|
||||
" This path is only used if there is no certificate loaded\n"
|
||||
" from the settings.\n"
|
||||
" -n, --noidentity\n"
|
||||
" Suppress loading of identity files (i.e., certificates.)\n"
|
||||
" -jn, --jackname <arg>\n"
|
||||
@ -386,6 +391,25 @@ int main(int argc, char **argv) {
|
||||
Global::get().bDebugDumpInput = true;
|
||||
} else if (args.at(i) == QLatin1String("--print-echocancel-queue")) {
|
||||
Global::get().bDebugPrintQueue = true;
|
||||
} else if (args.at(i) == QLatin1String("-c") || args.at(i) == QLatin1String("--config")) {
|
||||
// We already parsed these arguments above, so just skip over them here
|
||||
++i;
|
||||
} else if (args.at(i) == QLatin1String("--default-certificate-dir")) {
|
||||
if (i + 1 < args.count()) {
|
||||
qdCert = QDir(args.at(i + 1));
|
||||
// I suppose we should really be checking whether the directory is writable here too,
|
||||
// but there are some subtleties with doing that:
|
||||
// (doc.qt.io/qt-5/qfile.html#platform-specific-issues)
|
||||
// so we can just let things fail down below when this directory is used.
|
||||
if (!qdCert.exists()) {
|
||||
printf("%s", qPrintable(MainWindow::tr("Directory %1 does not exist.\n").arg(args.at(i + 1))));
|
||||
return 1;
|
||||
}
|
||||
++i;
|
||||
} else {
|
||||
qCritical("Missing argument for --default-certificate-dir!");
|
||||
return 1;
|
||||
}
|
||||
} else if (args.at(i) == "--print-translation-dirs") {
|
||||
printTranslationDirs = true;
|
||||
} else if (args.at(i) == "--translation-dir") {
|
||||
@ -724,8 +748,7 @@ int main(int argc, char **argv) {
|
||||
Global::get().s.uiUpdateCounter = 2;
|
||||
|
||||
if (!CertWizard::validateCert(Global::get().s.kpCertificate)) {
|
||||
QDir qd(QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation));
|
||||
QFile qf(qd.absoluteFilePath(QLatin1String("MumbleAutomaticCertificateBackup.p12")));
|
||||
QFile qf(qdCert.absoluteFilePath(QLatin1String("MumbleAutomaticCertificateBackup.p12")));
|
||||
if (qf.open(QIODevice::ReadOnly | QIODevice::Unbuffered)) {
|
||||
Settings::KeyPair kp = CertWizard::importCert(qf.readAll());
|
||||
qf.close();
|
||||
|
||||
@ -6151,6 +6151,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6188,6 +6192,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6148,6 +6148,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6185,6 +6189,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6147,6 +6147,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6184,6 +6188,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6153,6 +6153,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6190,6 +6194,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6207,6 +6207,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6244,6 +6248,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6151,6 +6151,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6188,6 +6192,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6203,6 +6203,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6240,6 +6244,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6265,6 +6265,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6302,6 +6306,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6212,6 +6212,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6249,6 +6253,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6146,6 +6146,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6183,6 +6187,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6183,6 +6183,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6220,6 +6224,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6156,6 +6156,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6193,6 +6197,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6217,6 +6217,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6254,6 +6258,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6148,6 +6148,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6185,6 +6189,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6167,6 +6167,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6204,6 +6208,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6146,6 +6146,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6183,6 +6187,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6258,6 +6258,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6295,6 +6299,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6217,6 +6217,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6254,6 +6258,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6149,6 +6149,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6186,6 +6190,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6200,6 +6200,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6237,6 +6241,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6197,6 +6197,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6234,6 +6238,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6241,6 +6241,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6278,6 +6282,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6196,6 +6196,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6233,6 +6237,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6178,6 +6178,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6215,6 +6219,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6180,6 +6180,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6217,6 +6221,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6240,6 +6240,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6277,6 +6281,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6230,6 +6230,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6267,6 +6271,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6148,6 +6148,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6185,6 +6189,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6241,6 +6241,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6336,6 +6340,11 @@ Prawidłowe opcje to:
|
||||
ustawieniach Mumble.
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Manual</name>
|
||||
|
||||
@ -6218,6 +6218,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6255,6 +6259,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6201,6 +6201,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6238,6 +6242,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6152,6 +6152,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6189,6 +6193,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6194,6 +6194,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6231,6 +6235,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6110,6 +6110,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6147,6 +6151,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6240,6 +6240,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6277,6 +6281,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6159,6 +6159,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6196,6 +6200,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6146,6 +6146,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6183,6 +6187,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6214,6 +6214,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6251,6 +6255,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6148,6 +6148,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6185,6 +6189,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6238,6 +6238,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6326,6 +6330,11 @@ mumble://[<用户名>[:<密码>]@]<主机名>[:<端口>]
|
||||
否则,指定的语言会永久保存到 Mumble 设置中。
|
||||
</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Manual</name>
|
||||
|
||||
@ -6151,6 +6151,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6188,6 +6192,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
@ -6174,6 +6174,10 @@ Valid options are:
|
||||
Specify an alternative configuration file.
|
||||
If you use this to run multiple instances of Mumble at once,
|
||||
make sure to set an alternative 'database' value in the config.
|
||||
--default-certificate-dir <dir>
|
||||
Specify an alternative default certificate path.
|
||||
This path is only used if there is no certificate loaded
|
||||
from the settings.
|
||||
-n, --noidentity
|
||||
Suppress loading of identity files (i.e., certificates.)
|
||||
-jn, --jackname <arg>
|
||||
@ -6211,6 +6215,11 @@ Valid options are:
|
||||
If the format is invalid, Mumble will error.
|
||||
Otherwise the locale will be permanently saved to
|
||||
Mumble's settings.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Directory %1 does not exist.
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user