Merge PR #4949: FIX/FEAT(client): Improvements for using --multiple

This commit is contained in:
Robert Adam 2021-04-28 17:38:51 +02:00 committed by GitHub
commit 91f76464c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
43 changed files with 403 additions and 2 deletions

View File

@ -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();

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6188,6 +6192,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6185,6 +6189,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6184,6 +6188,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6190,6 +6194,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6244,6 +6248,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6188,6 +6192,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6240,6 +6244,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6302,6 +6306,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6249,6 +6253,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6183,6 +6187,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6220,6 +6224,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6193,6 +6197,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6254,6 +6258,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6185,6 +6189,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6204,6 +6208,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6183,6 +6187,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6295,6 +6299,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6254,6 +6258,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6186,6 +6190,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6237,6 +6241,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6234,6 +6238,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6278,6 +6282,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6233,6 +6237,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6215,6 +6219,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6217,6 +6221,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6277,6 +6281,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6267,6 +6271,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6185,6 +6189,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -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>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6255,6 +6259,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6238,6 +6242,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6189,6 +6193,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6231,6 +6235,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6147,6 +6151,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6277,6 +6281,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6196,6 +6200,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6183,6 +6187,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6251,6 +6255,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6185,6 +6189,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6326,6 +6330,11 @@ mumble://[&lt;用户名&gt;[:&lt;密码&gt;]@]&lt;主机名&gt;[:&lt;端口&gt;]
Mumble
</translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>Manual</name>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6188,6 +6192,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>

View File

@ -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 &apos;database&apos; value in the config.
--default-certificate-dir &lt;dir&gt;
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 &lt;arg&gt;
@ -6211,6 +6215,11 @@ Valid options are:
If the format is invalid, Mumble will error.
Otherwise the locale will be permanently saved to
Mumble&apos;s settings.
</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Directory %1 does not exist.
</source>
<translation type="unfinished"></translation>
</message>