Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2021-03-12 15:36:56 +0300
committerGitHub <noreply@github.com>2021-03-12 15:36:56 +0300
commitf5177b8bfac723c950e78a1143e5633c275b926c (patch)
treedbaa3df893fa712d466c83c60f0c86472dcb8a5f /src
parent0f4f10c7bb279ca67ca18454e8357f11f9e03e55 (diff)
parent4052c13f02a4c7b8b0bfa2fd18ce162d6c8e474a (diff)
Merge pull request #4820: FEAT(client): Improvements to local translation dir search
This PR improves dealing with local translation files that Mumble is supposed to load: - More locations are checked by default - Custom locations can be specified (`--translation-dir`) - Locations can be printed out (`--print-translation-dirs`) - A locale can be specified on the command line (`--locale`) Fixes #4796
Diffstat (limited to 'src')
-rw-r--r--src/mumble/CMakeLists.txt2
-rw-r--r--src/mumble/Translations.cpp107
-rw-r--r--src/mumble/Translations.h26
-rw-r--r--src/mumble/main.cpp124
-rw-r--r--src/mumble/mumble_ar.ts110
-rw-r--r--src/mumble/mumble_bg.ts110
-rw-r--r--src/mumble/mumble_br.ts110
-rw-r--r--src/mumble/mumble_ca.ts110
-rw-r--r--src/mumble/mumble_cs.ts110
-rw-r--r--src/mumble/mumble_cy.ts110
-rw-r--r--src/mumble/mumble_da.ts110
-rw-r--r--src/mumble/mumble_de.ts110
-rw-r--r--src/mumble/mumble_el.ts110
-rw-r--r--src/mumble/mumble_en.ts110
-rw-r--r--src/mumble/mumble_en_GB.ts110
-rw-r--r--src/mumble/mumble_eo.ts110
-rw-r--r--src/mumble/mumble_es.ts146
-rw-r--r--src/mumble/mumble_et.ts110
-rw-r--r--src/mumble/mumble_eu.ts110
-rw-r--r--src/mumble/mumble_fa_IR.ts110
-rw-r--r--src/mumble/mumble_fi.ts151
-rw-r--r--src/mumble/mumble_fr.ts150
-rw-r--r--src/mumble/mumble_gl.ts110
-rw-r--r--src/mumble/mumble_he.ts110
-rw-r--r--src/mumble/mumble_hu.ts110
-rw-r--r--src/mumble/mumble_it.ts150
-rw-r--r--src/mumble/mumble_ja.ts110
-rw-r--r--src/mumble/mumble_ko.ts110
-rw-r--r--src/mumble/mumble_lt.ts110
-rw-r--r--src/mumble/mumble_nl.ts149
-rw-r--r--src/mumble/mumble_no.ts110
-rw-r--r--src/mumble/mumble_oc.ts110
-rw-r--r--src/mumble/mumble_pl.ts150
-rw-r--r--src/mumble/mumble_pt_BR.ts151
-rw-r--r--src/mumble/mumble_pt_PT.ts110
-rw-r--r--src/mumble/mumble_ro.ts110
-rw-r--r--src/mumble/mumble_ru.ts150
-rw-r--r--src/mumble/mumble_si.ts110
-rw-r--r--src/mumble/mumble_sv.ts110
-rw-r--r--src/mumble/mumble_te.ts110
-rw-r--r--src/mumble/mumble_th.ts110
-rw-r--r--src/mumble/mumble_tr.ts110
-rw-r--r--src/mumble/mumble_uk.ts110
-rw-r--r--src/mumble/mumble_zh_CN.ts147
-rw-r--r--src/mumble/mumble_zh_HK.ts110
-rw-r--r--src/mumble/mumble_zh_TW.ts110
46 files changed, 3032 insertions, 2201 deletions
diff --git a/src/mumble/CMakeLists.txt b/src/mumble/CMakeLists.txt
index 768f8daad..96266ee8f 100644
--- a/src/mumble/CMakeLists.txt
+++ b/src/mumble/CMakeLists.txt
@@ -203,6 +203,8 @@ set(MUMBLE_SOURCES
"Tokens.cpp"
"Tokens.h"
"Tokens.ui"
+ "Translations.cpp"
+ "Translations.h"
"Usage.cpp"
"Usage.h"
"UserEdit.cpp"
diff --git a/src/mumble/Translations.cpp b/src/mumble/Translations.cpp
new file mode 100644
index 000000000..bf93f78da
--- /dev/null
+++ b/src/mumble/Translations.cpp
@@ -0,0 +1,107 @@
+// Copyright 2021 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
+#include "Translations.h"
+
+#include <QApplication>
+#include <QtCore/QDir>
+#include <QtCore/QLibraryInfo>
+#include <QtCore/QStandardPaths>
+#include <QtCore/QTranslator>
+
+namespace Mumble {
+namespace Translations {
+
+ QStringList getDefaultTranslationDirectories() {
+ QStringList translationDirs;
+
+ const QString translationDirName = "MumbleTranslations";
+
+ // AppData directories
+ for (const QString &currentConfigPath : QStandardPaths::standardLocations(QStandardPaths::AppDataLocation)) {
+ translationDirs.append(QDir::cleanPath(currentConfigPath));
+ }
+ // Directories in the config locations
+ for (const QString &currentConfigPath : QStandardPaths::standardLocations(QStandardPaths::ConfigLocation)) {
+ translationDirs.append(QDir::cleanPath(currentConfigPath + QDir::separator() + translationDirName));
+ }
+ // A directory in the home directory
+ for (const QString &currentHomePath : QStandardPaths::standardLocations(QStandardPaths::HomeLocation)) {
+ translationDirs.append(QDir::cleanPath(currentHomePath + QDir::separator() + translationDirName));
+ }
+
+ return translationDirs;
+ }
+
+ QStringList getTranslationDirectories(const QApplication &app, const QStringList &extraDirectories) {
+ QStringList directories;
+
+ // The extra directories have highest priority
+ directories += extraDirectories;
+
+ // Next up is the application's root path
+ directories.append(app.applicationDirPath());
+
+ // And finally the default locations
+ directories += getDefaultTranslationDirectories();
+
+ return directories;
+ }
+
+ void installTranslators(const QLocale &locale, QApplication &app, const QStringList &extraDirectories) {
+ // First install a translator that uses the bundled translations
+ QTranslator bundledTranslator;
+ if (bundledTranslator.load(locale, ":mumble_")) {
+ app.installTranslator(&bundledTranslator);
+ } else {
+ qWarning("Unable to find bundled translations for locale \"%s\"", qUtf8Printable(locale.name()));
+ }
+
+ // Now try to add another translator that can overwrite the bundled translations based
+ // on translations found in one of the translation directories.
+ // The first matching translation file that is found, will be used (first come, first served)
+ QTranslator overwriteTranslator;
+
+ const QString prefix = "";
+
+ for (const QString &currentDir : getTranslationDirectories(app, extraDirectories)) {
+ if (overwriteTranslator.load(locale, "mumble_", prefix, currentDir)) {
+ app.installTranslator(&overwriteTranslator);
+
+ qWarning("Using extra translation file for locale \"%s\" from directory \"%s\"",
+ qUtf8Printable(locale.name()), qUtf8Printable(currentDir));
+ break;
+ }
+ }
+
+ // With modularization of Qt 5 some - but not all - of the qt_<locale>.ts files have become
+ // so-called meta catalogues which no longer contain actual translations but refer to other
+ // more specific ts files like qtbase_<locale>.ts . To successfully load a meta catalogue all
+ // of its referenced translations must be available. As we do not want to bundle them all
+ // we now try to load the old qt_<locale>.ts file first and then fall back to loading
+ // qtbase_<locale>.ts if that failed.
+ //
+ // See http://doc.qt.io/qt-5/linguist-programmers.html#deploying-translations for more information
+ QTranslator qttranslator;
+ // First we try and see if there is a translation packaged with Mumble that shall overwrite any potentially
+ // existing Qt translations. If not, we try to load the qt-translations installed on the host-machine and if
+ // that fails as well, we try to load translations bundled in Mumble. Note: Resource starting with :/ are
+ // bundled resources specified in a .qrc file
+ if (qttranslator.load(locale, ":/mumble_overwrite_qt_")) {
+ app.installTranslator(&qttranslator);
+ } else if (qttranslator.load(locale, ":/mumble_overwrite_qtbase_")) {
+ app.installTranslator(&qttranslator);
+ } else if (qttranslator.load(locale, "qt_", QLibraryInfo::location(QLibraryInfo::TranslationsPath))) {
+ app.installTranslator(&qttranslator);
+ } else if (qttranslator.load(locale, "qtbase_", QLibraryInfo::location(QLibraryInfo::TranslationsPath))) {
+ app.installTranslator(&qttranslator);
+ } else if (qttranslator.load(locale, ":/qt_")) {
+ app.installTranslator(&qttranslator);
+ } else if (qttranslator.load(locale, ":/qtbase_")) {
+ app.installTranslator(&qttranslator);
+ }
+ }
+}; // namespace Translations
+}; // namespace Mumble
diff --git a/src/mumble/Translations.h b/src/mumble/Translations.h
new file mode 100644
index 000000000..4e472e635
--- /dev/null
+++ b/src/mumble/Translations.h
@@ -0,0 +1,26 @@
+// Copyright 2021 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
+#ifndef MUMBLE_MUMBLE_TRANSLATIONS_H_
+#define MUMBLE_MUMBLE_TRANSLATIONS_H_
+
+#include <QStringList>
+
+class QApplication;
+class QLocale;
+
+namespace Mumble {
+namespace Translations {
+
+ QStringList getDefaultTranslationDirectories();
+
+ QStringList getTranslationDirectories(const QApplication &app, const QStringList &extraDirectories);
+
+ void installTranslators(const QLocale &locale, QApplication &app, const QStringList &extraDirectories);
+
+}; // namespace Translations
+}; // namespace Mumble
+
+#endif // MUMBLE_MUMBLE_TRANSLATIONS_H_
diff --git a/src/mumble/main.cpp b/src/mumble/main.cpp
index 12b3ddf6d..42991c805 100644
--- a/src/mumble/main.cpp
+++ b/src/mumble/main.cpp
@@ -39,16 +39,15 @@
#include "SSL.h"
#include "SocketRPC.h"
#include "TalkingUI.h"
+#include "Translations.h"
#include "Themes.h"
#include "UserLockFile.h"
#include "VersionCheck.h"
-#include <QtCore/QLibraryInfo>
#include <QtCore/QProcess>
-#include <QtCore/QStandardPaths>
-#include <QtCore/QTranslator>
#include <QtGui/QDesktopServices>
#include <QtWidgets/QMessageBox>
+#include <QLocale>
#include <QScreen>
#ifdef USE_DBUS
@@ -224,8 +223,11 @@ int main(int argc, char **argv) {
bool suppressIdentity = false;
bool customJackClientName = false;
bool bRpcMode = false;
+ bool printTranslationDirs = false;
QString rpcCommand;
QUrl url;
+ QStringList extraTranslationDirs;
+ QString localeOverwrite;
if (a.arguments().count() > 1) {
for (int i = 1; i < args.count(); ++i) {
@@ -274,6 +276,22 @@ int main(int argc, char **argv) {
" --print-echocancel-queue\n"
" Print on stdout the echo cancellation queue state\n"
" (useful for debugging purposes)\n"
+ " --translation-dir <dir>\n"
+ " Specifies an additional translation fir <dir> in which\n"
+ " Mumble will search for translation files that overwrite\n"
+ " the bundled ones\n"
+ " Directories added this way have higher priority than\n"
+ " the default locations used otherwise\n"
+ " --print-translation-dirs\n"
+ " Print out the paths in which Mumble will search for\n"
+ " translation files that overwrite the bundled ones.\n"
+ " (Useful for translators testing their translations)\n"
+ " --locale <locale>\n"
+ " Overwrite the locale in Mumble's settings with a\n"
+ " locale that corresponds to the given locale string.\n"
+ " If the format is invalid, Mumble will error.\n"
+ " Otherwise the locale will be permanently saved to\n"
+ " Mumble's settings."
"\n");
QString rpcHelpBanner = MainWindow::tr("Remote controlling Mumble:\n"
"\n");
@@ -362,6 +380,24 @@ 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) == "--print-translation-dirs") {
+ printTranslationDirs = true;
+ } else if (args.at(i) == "--translation-dir") {
+ if (i + 1 < args.count()) {
+ extraTranslationDirs.append(args.at(i + 1));
+ i++;
+ } else {
+ qCritical("Missing argument for --translation-dir!");
+ return 1;
+ }
+ } else if (args.at(i) == "--locale") {
+ if (i + 1 < args.count()) {
+ localeOverwrite = args.at(i + 1);
+ i++;
+ } else {
+ qCritical("Missing argument for --locale!");
+ return 1;
+ }
} else {
if (!bRpcMode) {
QUrl u = QUrl::fromEncoded(args.at(i).toUtf8());
@@ -378,6 +414,24 @@ int main(int argc, char **argv) {
}
}
+ if (printTranslationDirs) {
+ QString infoString = QObject::tr("The directories in which Mumble searches for extra translation files are:\n");
+
+ int counter = 1;
+ for (const QString &currentTranslationDir : Mumble::Translations::getTranslationDirectories(a, extraTranslationDirs)) {
+ infoString += QString::fromLatin1("%1. ").arg(counter) + currentTranslationDir + "\n";
+ counter++;
+ }
+
+#if defined(Q_OS_WIN)
+ QMessageBox::information(nullptr, QObject::tr("Invocation"), infoString);
+#else
+ printf("%s", qUtf8Printable(infoString));
+#endif
+
+ return 0;
+ }
+
#ifdef USE_DBUS
# ifdef Q_OS_WIN
// By default, windbus expects the path to dbus-daemon to be in PATH, and the path
@@ -496,55 +550,43 @@ int main(int argc, char **argv) {
Themes::apply();
- QString qsSystemLocale = QLocale::system().name();
+ QLocale systemLocale = QLocale::system();
#ifdef Q_OS_MAC
if (os_lang) {
- qWarning("Using Mac OS X system language as locale name");
- qsSystemLocale = QLatin1String(os_lang);
+ const QLocale macOSLocale = QLocale(QString::fromLatin1(os_lang));
+
+ if (macOSLocale != QLocale::c()) {
+ qWarning("Using Mac OS X system language as locale name");
+ systemLocale = macOSLocale;
+ }
}
#endif
- const QString locale = Global::get().s.qsLanguage.isEmpty() ? qsSystemLocale : Global::get().s.qsLanguage;
- qWarning("Locale is \"%s\" (System: \"%s\")", qPrintable(locale), qPrintable(qsSystemLocale));
+ QLocale settingsLocale;
- QTranslator translator;
- if (translator.load(QLatin1String(":mumble_") + locale))
- a.installTranslator(&translator);
+ if (localeOverwrite.isEmpty()) {
+ settingsLocale = QLocale(Global::get().s.qsLanguage);
+ if (settingsLocale == QLocale::c()) {
+ settingsLocale = systemLocale;
+ }
+ } else {
+ // Manually specified locale overwrite
+ settingsLocale = QLocale(localeOverwrite);
- QTranslator loctranslator;
- if (loctranslator.load(QLatin1String("mumble_") + locale, a.applicationDirPath()))
- a.installTranslator(&loctranslator); // Can overwrite strings from bundled mumble translation
+ if (settingsLocale == QLocale::c()) {
+ qFatal("Invalid locale specification \"%s\"", qUtf8Printable(localeOverwrite));
+ return 1;
+ }
- // With modularization of Qt 5 some - but not all - of the qt_<locale>.ts files have become
- // so-called meta catalogues which no longer contain actual translations but refer to other
- // more specific ts files like qtbase_<locale>.ts . To successfully load a meta catalogue all
- // of its referenced translations must be available. As we do not want to bundle them all
- // we now try to load the old qt_<locale>.ts file first and then fall back to loading
- // qtbase_<locale>.ts if that failed.
- //
- // See http://doc.qt.io/qt-5/linguist-programmers.html#deploying-translations for more information
- QTranslator qttranslator;
- // First we try and see if there is a translation packaged with Mumble that shall overwrite any potentially existing
- // Qt translations. If not, we try to load the qt-translations installed on the host-machine and if that fails as
- // well, we try to load translations bundled in Mumble. Note: Resource starting with :/ are bundled resources
- // specified in a .qrc file
- if (qttranslator.load(QLatin1String(":/mumble_overwrite_qt_") + locale)) {
- a.installTranslator(&qttranslator);
- } else if (qttranslator.load(QLatin1String(":/mumble_overwrite_qtbase_") + locale)) {
- a.installTranslator(&qttranslator);
- } else if (qttranslator.load(QLatin1String("qt_") + locale,
- QLibraryInfo::location(QLibraryInfo::TranslationsPath))) {
- a.installTranslator(&qttranslator);
- } else if (qttranslator.load(QLatin1String("qtbase_") + locale,
- QLibraryInfo::location(QLibraryInfo::TranslationsPath))) {
- a.installTranslator(&qttranslator);
- } else if (qttranslator.load(QLatin1String(":/qt_") + locale)) {
- a.installTranslator(&qttranslator);
- } else if (qttranslator.load(QLatin1String(":/qtbase_") + locale)) {
- a.installTranslator(&qttranslator);
+ // The locale is valid -> save it to the settings
+ Global::get().s.qsLanguage = settingsLocale.nativeLanguageName();
}
+ qWarning("Locale is \"%s\" (System: \"%s\")", qUtf8Printable(settingsLocale.name()), qUtf8Printable(systemLocale.name()));
+
+ Mumble::Translations::installTranslators(settingsLocale, a, extraTranslationDirs);
+
// Initialize proxy settings
NetworkConfig::SetupProxy();
diff --git a/src/mumble/mumble_ar.ts b/src/mumble/mumble_ar.ts
index 47f84c82a..b833df382 100644
--- a/src/mumble/mumble_ar.ts
+++ b/src/mumble/mumble_ar.ts
@@ -6150,49 +6150,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6236,6 +6193,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7293,6 +7308,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_bg.ts b/src/mumble/mumble_bg.ts
index d4c7395d5..d80c74d5e 100644
--- a/src/mumble/mumble_bg.ts
+++ b/src/mumble/mumble_bg.ts
@@ -6147,49 +6147,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6233,6 +6190,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7290,6 +7305,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_br.ts b/src/mumble/mumble_br.ts
index 751a40b8e..8c977cd9c 100644
--- a/src/mumble/mumble_br.ts
+++ b/src/mumble/mumble_br.ts
@@ -6146,49 +6146,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6232,6 +6189,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7289,6 +7304,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_ca.ts b/src/mumble/mumble_ca.ts
index 5e98c897f..3f7f6bb34 100644
--- a/src/mumble/mumble_ca.ts
+++ b/src/mumble/mumble_ca.ts
@@ -6152,49 +6152,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6238,6 +6195,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7295,6 +7310,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_cs.ts b/src/mumble/mumble_cs.ts
index e285678ab..9d330dfaf 100644
--- a/src/mumble/mumble_cs.ts
+++ b/src/mumble/mumble_cs.ts
@@ -6206,49 +6206,6 @@ kontextové nabídce kanálů.</translation>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6292,6 +6249,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7353,6 +7368,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Vyvolání</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_cy.ts b/src/mumble/mumble_cy.ts
index 1e31b896a..7e8a31c06 100644
--- a/src/mumble/mumble_cy.ts
+++ b/src/mumble/mumble_cy.ts
@@ -6150,49 +6150,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6236,6 +6193,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7293,6 +7308,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_da.ts b/src/mumble/mumble_da.ts
index dccc594be..eae8e1550 100644
--- a/src/mumble/mumble_da.ts
+++ b/src/mumble/mumble_da.ts
@@ -6202,49 +6202,6 @@ kanalens genvejsmenu.</translation>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6288,6 +6245,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7349,6 +7364,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Opmærksomhed</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_de.ts b/src/mumble/mumble_de.ts
index c62f8b21a..72349d51a 100644
--- a/src/mumble/mumble_de.ts
+++ b/src/mumble/mumble_de.ts
@@ -6264,49 +6264,6 @@ Sie können zusätzliche Kanäle zum Filtern über das Kontextmenü des Kanals a
</translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation>Hauptfenster anzeigen/verstecken</translation>
@@ -6350,6 +6307,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7417,6 +7432,15 @@ Infos hierzu finden Sie im &lt;a href=&quot;https://wiki.mumble.info/wiki/Instal
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Aufruf</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_el.ts b/src/mumble/mumble_el.ts
index 8c368ca48..46385290d 100644
--- a/src/mumble/mumble_el.ts
+++ b/src/mumble/mumble_el.ts
@@ -6211,49 +6211,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6297,6 +6254,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7359,6 +7374,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Επίκληση</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_en.ts b/src/mumble/mumble_en.ts
index 8b716e171..1a6605bfb 100644
--- a/src/mumble/mumble_en.ts
+++ b/src/mumble/mumble_en.ts
@@ -6145,49 +6145,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6231,6 +6188,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7288,6 +7303,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_en_GB.ts b/src/mumble/mumble_en_GB.ts
index b869201b7..d5b1eb3e6 100644
--- a/src/mumble/mumble_en_GB.ts
+++ b/src/mumble/mumble_en_GB.ts
@@ -6182,49 +6182,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6268,6 +6225,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7325,6 +7340,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_eo.ts b/src/mumble/mumble_eo.ts
index 073b615f2..ab4b850ce 100644
--- a/src/mumble/mumble_eo.ts
+++ b/src/mumble/mumble_eo.ts
@@ -6155,49 +6155,6 @@ the channel&apos;s context menu.</source>
</translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation>Kaŝi/Montri ĉefafenestron</translation>
@@ -6241,6 +6198,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7298,6 +7313,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Alvoko</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_es.ts b/src/mumble/mumble_es.ts
index b825a4d12..b8ee55e90 100644
--- a/src/mumble/mumble_es.ts
+++ b/src/mumble/mumble_es.ts
@@ -6216,85 +6216,6 @@ en el menu contextual del canal.</translation>
</translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation>Usar: mumble [opciones] [&lt;url&gt;]
-
-&lt;url&gt;especifica una URL para conectarse después del inicio en lugar de mostrar
-la ventana de conexión, y tiene la siguiente forma:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-El parámetro de consulta de versión debe establecerse para invocar
-Versión correcta del cliente. Actualmente, el valor predeterminado es 1.2.0.
-
-Las opciones válidas son:
-&#xa0;&#xa0; -h, --help Muestra este texto de ayuda y sale.
- &#xa0; -m, --multiple
- &#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; Permite que se inicien varias instancias del cliente.
-&#xa0;-c, --config
-Especifica un archivo de configuración alternativo.
-Si usa esto para ejecutar múltiples instancias de Mumble al mismo tiempo,
-asegúrese de especificar un valor alternativo para &apos;database&apos; en la configuración.
- &#xa0; -n, --noidentity
- &#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; Suprime la carga de archivos con identidad (i.e., certificados).
-&#xa0;&#xa0; -jn, --jackname
- &#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; Establece el nombre del cliente Jack personalizado.
- &#xa0; --license
- &#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; Muestra la licencia de Mumble.
- &#xa0; --authors
- &#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; Muestra los autores de Mumble.
- &#xa0; --third-party-licenses
- &#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; Muestra las licencias de software de terceros utilizado por Mumble.
- --window-title-ext
-&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0; Fija una extensión de título específica.
---dump-input-streams
- &#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;Muestra los streams de PCM en diversos puntos de la cadena de entrada (útil para efectos de debugging)
- &#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;- Entrada en bruto del micrófono
- &#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;- Lectura del parlante para cancelación de eco
-&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;- Entrada procesada del micrófono
---print-echocancel-queue
-&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;Imprime en stdout el estado de la cola de cancelación de eco (útil para efectos de debugging)
-</translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6338,6 +6259,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7401,6 +7380,15 @@ Vea &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;la
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Invocación</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_et.ts b/src/mumble/mumble_et.ts
index 57cf2b7de..313178877 100644
--- a/src/mumble/mumble_et.ts
+++ b/src/mumble/mumble_et.ts
@@ -6147,49 +6147,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation>Peida/Näita peaakent</translation>
@@ -6233,6 +6190,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7290,6 +7305,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_eu.ts b/src/mumble/mumble_eu.ts
index 06fbfa3e1..e0434cafd 100644
--- a/src/mumble/mumble_eu.ts
+++ b/src/mumble/mumble_eu.ts
@@ -6166,49 +6166,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6252,6 +6209,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7309,6 +7324,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_fa_IR.ts b/src/mumble/mumble_fa_IR.ts
index 3bdbe029e..2743deb33 100644
--- a/src/mumble/mumble_fa_IR.ts
+++ b/src/mumble/mumble_fa_IR.ts
@@ -6145,49 +6145,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6231,6 +6188,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7288,6 +7303,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_fi.ts b/src/mumble/mumble_fi.ts
index eb0650426..e4b1b30ed 100644
--- a/src/mumble/mumble_fi.ts
+++ b/src/mumble/mumble_fi.ts
@@ -6215,90 +6215,6 @@ kanavien alivalikosta.</translation>
</translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation>Käyttö: mumble [valinnat] [&lt;url&gt;]
-
-&lt;url&gt; määrittää URLn johon yhdistää käynnistymisen jälkeen sen sijaan että näytetään
-liittymisikkuna. Osoite on muotoa:
-mumble://[&lt;käyttäjä&gt;[:&lt;salasana&gt;]@]&lt;osoite&gt;[:&lt;portti&gt;][/&lt;kanava&gt;[/&lt;alikanava&gt;...]][?versio=&lt;x.y.z&gt;]
-
-Versio-kyselyparametri täytyy asettaa jotta voidaan kutsua oikea versio asiakasohjelmasta.
-Tällä hetkellä sen oletusarvo on 1.2.0.
-
-Päteviä valintoja ovat:
- -h, --help Näytä tämä aputeksti ja poistu.
- -m, --multiple
- Salli useamman esiintymän asiakasohjelmasta käynnistyä.
- -c, --config
- Määritä vaihtoehtoinen asetustiedosto.
- Jos käytät tätä ajaaksesi monia esiintymiä Mumblesta yhtä
- aikaa, pidä huoli että määrittelet vaihtoehtoisen &apos;database&apos;
- -arvon asetustiedostossa.
- -n, --noidentity
- Hiljennä identiteettitiedostojen (esim. varmenteiden) lataus
- -jn, --jackname &lt;arg&gt;
- Aseta mukautettu Jack-asiakasohjelman nimi.
- --license
- Näytä Mumblen lisenssi.
- --authors
- Näytä Mumblen tekijät.
- --third-party-licenses
- Näytä kolmannen osapuolen ohjelmistojen lisenssit, joita
- Mumble käyttää.
- --window-title-ext &lt;arg&gt;
- Asettaa mukautetun ikkunaotsikon päätteen.
- --dump-input-streams
- Kirjoittaa talteen PCM-virrat vaihtelevissa paikoissa
- sisääntuloketjua (hyödyllistä vianetsinnässä)
- - suora mikrofonin sisääntulo
- - kuulokkeulostulon takaisinluku kaiunpoistoa varten
- - käsitelty mikrofonin sisääntulo
- --print-echocancel-queue
- Tulosta stdout:iin kaiunpoiston jonon tila
- (hyödyllistä vianetsinnässä)
-
-</translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation>Näytä/piilota pääikkuna</translation>
@@ -6383,6 +6299,64 @@ Päteviä valintoja ovat:
</translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7446,6 +7420,15 @@ Lisätietoa löydät &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_M
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Kutsu</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_fr.ts b/src/mumble/mumble_fr.ts
index 294f8ceda..7b146e5e9 100644
--- a/src/mumble/mumble_fr.ts
+++ b/src/mumble/mumble_fr.ts
@@ -6216,89 +6216,6 @@ Affiche la console développeur Mumble où les logs peuvent être consultés.</t
</translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation>Usage : mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; spécifie une URL à laquelle se connecter après le démarrage, plutôt que de montrer la fenêtre de connexion, et a la forme suivante :
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-Le paramètre de requête &quot;version&quot; doit être défini afin d&apos;appeler la bonne version du client. C&apos;est actuellement 1.2.0 par défaut.
-
-Les options valides sont :
- -h, --help Affiche cette aide et quitte.
- -m, --multiple
- Autorise plusieurs instances du client à être démarrées.
- -c, --config
- Spécifie un fichier de configuration alternatif.
- Si vous utilisez cette option pour faire fonctionner plusieurs
- instances de Mumble, soyez certain de définir une une valeur
- &apos;database&quot; alternative dans la configuration.
- -n, --noidentity
- Dissimule le chargement des fichiers d&apos;identités
- (i.e., certificats.)
- -jn, --jackname &lt;arg&gt;
- Définie le nom du client Jack personnalisé.
- --license
- Affiche la licence Mumble.
- --authors
- Affiche les auteurs de Mumble.
- --third-party-licenses
- Affiche les licences logicielles tierces utilisées par
- Mumble.
- --window-title-ext &lt;arg&gt;
- Définit une extension de titre de fenêtre personnalisée.
- --dump-input-streams
- Dump les flux PCM à divers endroits de la chaine d&apos;entrée
- (utile à des fins de débogage)
- - entrée microphone brute
- - &quot;readback&quot; haut-parleur pour suppression d&apos;écho
- - entrée microphone traitée
- --print-echocancel-queue
- Affiche sur stdout l&apos;état de la file de suppression d&apos;écho
- (utile à des fins de débogage)
-
-</translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation>Montrer/cacher la fenêtre principale</translation>
@@ -6342,6 +6259,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7404,6 +7379,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Invocation</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_gl.ts b/src/mumble/mumble_gl.ts
index e99074059..6100388e7 100644
--- a/src/mumble/mumble_gl.ts
+++ b/src/mumble/mumble_gl.ts
@@ -6148,49 +6148,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6234,6 +6191,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7291,6 +7306,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_he.ts b/src/mumble/mumble_he.ts
index 07d4c3a98..4aa420c01 100644
--- a/src/mumble/mumble_he.ts
+++ b/src/mumble/mumble_he.ts
@@ -6199,49 +6199,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6285,6 +6242,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7347,6 +7362,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">קריאה</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_hu.ts b/src/mumble/mumble_hu.ts
index 63c273c63..c783de2b7 100644
--- a/src/mumble/mumble_hu.ts
+++ b/src/mumble/mumble_hu.ts
@@ -6196,49 +6196,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6282,6 +6239,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7339,6 +7354,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_it.ts b/src/mumble/mumble_it.ts
index 40e969e9c..d0e59483e 100644
--- a/src/mumble/mumble_it.ts
+++ b/src/mumble/mumble_it.ts
@@ -6217,89 +6217,6 @@ contestuale del canale.</translation>
</translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation>Utilizzo: mumble [opzioni] [&lt;url&gt;]
-
-&lt;url&gt;Specifica un URL a cui connettersi dopo l&apos;avvio, invece
-di visualizzare
-la finestra di connessione, ed ha la seguente forma:
-mumble://[&lt;nomeutente&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;porta&gt;][/&lt;canale&gt;[/&lt;sottocanale&gt;...]][?version=&lt;x.y.z&gt;]
-
-I parametri di versione devono essere messi nel giusto ordine per
-richiamare la giusta versione del client.
-Il valore attuale di default è 1.2.0.
-
-Opzioni valide:
--h, --help Visualizza questo messaggio di aiuto ed esce.
--m, --multiple
-Permette di avviare più di un&apos;istanza del programma contemporaneamente.
- -c, --config
-Specifica un file di configurazione alternativo.
-Se utilizzi questo per avviare istanze multiple di Mumble,
-assicurati di utilizzare valori alternativi di &quot;database&quot; nelle impostazioni.
--n, --noidentity
-Impedisce il caricamento di file di identificazione (es. certificati)
--jn, --jackname&lt;arg&gt;
-Imposta un nome personalizzato per il client Jack.
---license
-Mostra la licenza di Mumble.
---authors
-Mostra gli autori di Mumble.
---third-party-licenses
-Mostra le licenze dei software di terze parti utilizzati da Mumble.
- --window-title-ext &lt;arg&gt;
-Imposta un&apos;estensione personalizzata del titolo della finestra.
---dump-input-streams
-Effettua il Dump degli stream PCM in varie parti della catena di input-
-(utile a i fini di debug)
-- input microfono non processato
-- rientro dagli altoparlanti per la cancellazione eco
-- input microfono processato
---print-echocancel-queue
-Scrive su stdout lo stato della coda della cancellazione eco
-(utile a i fini di debug)
-</translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation>Nascondi/mostra la finestra principale</translation>
@@ -6343,6 +6260,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7406,6 +7381,15 @@ Controlla &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Invocazione</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_ja.ts b/src/mumble/mumble_ja.ts
index 83382b3c5..5f9790a1d 100644
--- a/src/mumble/mumble_ja.ts
+++ b/src/mumble/mumble_ja.ts
@@ -6195,49 +6195,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6281,6 +6238,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7342,6 +7357,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">呼び出し</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_ko.ts b/src/mumble/mumble_ko.ts
index abb85bfbc..2ad2a6806 100644
--- a/src/mumble/mumble_ko.ts
+++ b/src/mumble/mumble_ko.ts
@@ -6177,49 +6177,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6263,6 +6220,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7325,6 +7340,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">호출</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_lt.ts b/src/mumble/mumble_lt.ts
index 519e96aac..88d5a99ff 100644
--- a/src/mumble/mumble_lt.ts
+++ b/src/mumble/mumble_lt.ts
@@ -6179,49 +6179,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6265,6 +6222,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7326,6 +7341,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_nl.ts b/src/mumble/mumble_nl.ts
index b602220d8..44138f93b 100644
--- a/src/mumble/mumble_nl.ts
+++ b/src/mumble/mumble_nl.ts
@@ -6216,88 +6216,6 @@ context-menu van het kanaal.</translation>
</translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation>Gebruik: mumble [opties] [&lt;url&gt;]
-
-&lt;url&gt; specificeert een adreslink om mee te verbinden na het opstarten in plaats van
-het verbindingsvenster te tonen, en heeft het volgende format:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The versie query parameter moet ingesteld zijn om de
-juiste client versie aan te roepen. Het valt nu terug op 1.2.0.
-
-Valide opties zijn:
- -h, --help Deze hulptekst tonen en afsluiten.
- -m, --multiple
- Opstarten van meerdere instanties van de client toe laten staan.
- -c, --config
- Een alternatief configuratiebestand specificeren.
- Als je dit gebruikt om meerdere instanties van Mumble tegelijk te draaien,
- vul dan een alternatieve &apos;database&apos; waarde in de configuratie in.
- -n, --noidentity
- Laden van identiteitsbestanden onderdrukken (bijv. certificaten.)
- -jn, --jackname &lt;arg&gt;
- Gecustomiseerde client naam instellen.
- --license
- De Mumble licentie tonen.
- --authors
- De Mumble auteuren tonen.
- --third-party-licenses
- Licenties voor software van derden gebruikt door Mumble tonen.
- --window-title-ext &lt;arg&gt;
- Een extensie een aangepaste venstertitel aanmeten.
- --dump-input-streams
- PCM streams op verscheidene delen van de inputketen dumpen
- (nuttig voor foutopsporingsdoeleinden)
- - ruwe microfoon input
- - speaker leesterug voor echodemping
- - verwerkte microfoon input
- --print-echocancel-queue
- Op stdout de echo dempende wachtrijstaat printen
- (nuttig voor foutopsporingsdoeleinden)
-
-</translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation>Vers(t)op hoofdvenster</translation>
@@ -6364,6 +6282,64 @@ Valide acties zijn:
</translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7427,6 +7403,15 @@ Zie &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;de
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Aanroeping</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_no.ts b/src/mumble/mumble_no.ts
index 73169c798..4fe20deb2 100644
--- a/src/mumble/mumble_no.ts
+++ b/src/mumble/mumble_no.ts
@@ -6223,49 +6223,6 @@ kanalens kontekstmeny.</translation>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation>Skjul/vis hovedvindu</translation>
@@ -6309,6 +6266,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7371,6 +7386,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Påkallelse</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_oc.ts b/src/mumble/mumble_oc.ts
index c0c90baed..20ba4ab67 100644
--- a/src/mumble/mumble_oc.ts
+++ b/src/mumble/mumble_oc.ts
@@ -6147,49 +6147,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6233,6 +6190,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7290,6 +7305,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_pl.ts b/src/mumble/mumble_pl.ts
index d74d741d4..1679976d1 100644
--- a/src/mumble/mumble_pl.ts
+++ b/src/mumble/mumble_pl.ts
@@ -6208,89 +6208,6 @@ kanały mają być filtrowane.</translation>
</translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation>Użycie: mumble [opcje] [&lt;url&gt;]
-
-&lt;url&gt; Określa URL do nawiązania połączenia po uruchomieniu aplikacji, zamiast wyświetlania
-okna połączenia, ma następującą składnię:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-Parametr z wersją Mumble musi zostać podany w celu uruchomienia
-poprawnej wersji klienta. Aktualnie domyślną wartością jest 1.2.0.
-
-Dostępne opcje:
--h, --help
- Wyświetla to okno pomocy i zamyka aplikację.
--m, --multiple
- Pozwala na uruchomienie kilku instancji programu.
--c, --config
- Określa alternatywny plik konfiguracyjny.
- Jeśli używasz tego do uruchamiania wielu wystąpień Mumble jednocześnie,
- upewnij się, że ustawiłeś alternatywną wartość &apos;database&apos; w konfiguracji.
--n, --noidentity
- Powstrzymuje ładowanie plików identyfikacyjnych (np. certyfikatów).
- -jn, --jackname &lt;arg&gt;
- Ustawia niestandardową nazwę klienta Jack.
---license
- Pokazuje licencję Mumble.
---authors
- Pokazuje autorów Mumble.
---third-party-licenses
- Pokazuje licencje na oprogramowanie firm trzecich używane przez Mumble.
- --window-title-ext &lt;arg&gt;
- Ustawia niestandardowe rozszerzenie tytułu okna.
- --dump-input-streams
- Zrzuca strumienie PCM w różnych częściach łańcucha wejściowego
- (przydatne do celów debugowania)
- - surowe wejście mikrofonowe
- - odczyt głośników w celu usuwania echa
- - przetworzone wejście mikrofonowe
- --print-echocancel-queue
- Drukuje na wyjściu stan kolejki usuwania echa
- (przydatne do celów debugowania)
-
-</translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation>Ukryj/pokaż główne okno</translation>
@@ -6357,6 +6274,64 @@ toggledeaf
</translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7421,6 +7396,15 @@ Zobacz &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Wywołanie</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_pt_BR.ts b/src/mumble/mumble_pt_BR.ts
index 70f094ce5..331cdd30a 100644
--- a/src/mumble/mumble_pt_BR.ts
+++ b/src/mumble/mumble_pt_BR.ts
@@ -6214,90 +6214,6 @@ no menu contextual do canal.</translation>
</translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation>Uso: mumble [opções] [&lt;url&gt;]
-
-&lt;url&gt; especifica uma URL a se conectar na inicialização ao invés
-de mostrar a janela de conexão, e tem a forma seguinte:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-O parâmetro version deve ser definido para invocar
-a versão correta do cliente. Por padrão a 1.2.0.
-
-Opções válidas são:
- -h, --help Exibe esse texto de ajuda e finaliza.
- -m, --multiple
- Permite iniciar múltiplas instâncias do cliente.
- -c, --config
- Especifica configuração alternativa.
- Se você usar isso para várias instâncias de Mumble
- ao mesmo tempo, lembre de definir um
- &apos;banco de dados&apos; alternativo na configuração.
- -n, --noidentity
- Suprime o carregamento dos arquivos de identificação
- (i.e., certificados).
- -jn, --jackname
- Define nome pessoal de cliente Jack.
- --license
- Exibe a licença do Mumble.
- --authors
- Exibe os autores do Mumble.
- --third-party-licenses
- Exibe licenças para software de terceiros no Mumble.
- --window-title-ext
- Define um título de janela personalizado.
---dump-input-streams
- Exporta fluxos PCM em várias partes da cadeia de entrada
- (útil para fins de depuração)
- - entrada crua de microfone
- - leitura de alto-falantes para cancelamento de eco
- - entrada processada de microfone
---print-echocancel-queue
- Exibe no stdout o estado de fila do cancelamento de eco
- (útil para fins de depuração)
-
-</translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation>Ocultar/exibir a janela principal</translation>
@@ -6341,6 +6257,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7404,6 +7378,15 @@ Consulte a &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Invocação</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_pt_PT.ts b/src/mumble/mumble_pt_PT.ts
index 43a4f0956..6e8df7609 100644
--- a/src/mumble/mumble_pt_PT.ts
+++ b/src/mumble/mumble_pt_PT.ts
@@ -6200,49 +6200,6 @@ do menu de contexto do canal.</translation>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6286,6 +6243,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7347,6 +7362,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Invocação</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_ro.ts b/src/mumble/mumble_ro.ts
index 0d00e163c..573769d1d 100644
--- a/src/mumble/mumble_ro.ts
+++ b/src/mumble/mumble_ro.ts
@@ -6151,49 +6151,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6237,6 +6194,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7294,6 +7309,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_ru.ts b/src/mumble/mumble_ru.ts
index ccbf915e3..edc314d6d 100644
--- a/src/mumble/mumble_ru.ts
+++ b/src/mumble/mumble_ru.ts
@@ -6170,89 +6170,6 @@ the channel&apos;s context menu.</source>
</translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation>Использование: mumble [ключи] [&lt;url&gt;]
-
-&lt;url&gt; указывает адрес для подключения после запуска вместо вывода
-окна подключения и имеет следующий вид:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-Параметр запроса версии должен быть установлен для вызова
-правильной версии клиента. По умолчанию это 1.2.0
-
-Допустимые ключи:
- -h, --help Показать данную справку и выйти.
- -m, --multiple
- Разрешить запуск нескольких клиентов.
- -c, --config
- Указать альтернативный файл конфигурации.
- Если вы используете эту опцию, чтобы запустить несколько
- окон Mumble одновременно, укажите альтернативную опцию
- &apos;database&apos; в файле конфигурации.
- -n, --noidentity
- Запретить загрузку файлов идентификации (например, сертификатов.)
- -jn, --jackname&lt;arg&gt;
- Задать имя клиента JACK.
- --license
- Показать лицензию Mumble.
- --authors
- Показать авторов Mumble.
- --third-party-licenses
- Показать лицензии стороннего ПО, используемого Mumble.
- --window-title-ext &lt;arg&gt;
- Задать произвольное расширение заголовка окна.
- --dump-input-streams
- Дамп потоков PCM в различных частях входной цепочки
- (полезно для отладки)
- - необработанный микрофонный вход
- - спикер для эхоподавления
- - обработанный микрофонный вход
- --print-echocancel-queue
- Вывести на стандартный вывод состояние очереди эхоподавления
- (полезно для отладки)
-
-</translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation>Показать/скрыть основное окно</translation>
@@ -6319,6 +6236,64 @@ Valid actions are:
</translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7381,6 +7356,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Вызов</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_si.ts b/src/mumble/mumble_si.ts
index 758662be1..cb573fe78 100644
--- a/src/mumble/mumble_si.ts
+++ b/src/mumble/mumble_si.ts
@@ -5080,49 +5080,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Remote controlling Mumble:
</source>
@@ -6195,6 +6152,64 @@ Otherwise abort and check your certificate and username.</source>
<source>Unknown Channel Drag mode in UserModel::dropMimeData.</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7248,6 +7263,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>Local Volume Adjustment...</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_sv.ts b/src/mumble/mumble_sv.ts
index a1058cc62..a31ca9903 100644
--- a/src/mumble/mumble_sv.ts
+++ b/src/mumble/mumble_sv.ts
@@ -6204,49 +6204,6 @@ kanalens innehållsmeny.</translation>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6290,6 +6247,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7351,6 +7366,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Anropande</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_te.ts b/src/mumble/mumble_te.ts
index 21272a028..fe753ff41 100644
--- a/src/mumble/mumble_te.ts
+++ b/src/mumble/mumble_te.ts
@@ -6158,49 +6158,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6244,6 +6201,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7307,6 +7322,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_th.ts b/src/mumble/mumble_th.ts
index 71a28f388..b8a134c7a 100644
--- a/src/mumble/mumble_th.ts
+++ b/src/mumble/mumble_th.ts
@@ -6145,49 +6145,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6231,6 +6188,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7288,6 +7303,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_tr.ts b/src/mumble/mumble_tr.ts
index 1c21262fc..556eb0e73 100644
--- a/src/mumble/mumble_tr.ts
+++ b/src/mumble/mumble_tr.ts
@@ -6214,49 +6214,6 @@ ilave kanallar ekleyebilirsiniz.</translation>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6300,6 +6257,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7362,6 +7377,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">Çağrı</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_uk.ts b/src/mumble/mumble_uk.ts
index da0fa0992..f17fc2933 100644
--- a/src/mumble/mumble_uk.ts
+++ b/src/mumble/mumble_uk.ts
@@ -6147,49 +6147,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6233,6 +6190,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7290,6 +7305,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished"></translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_zh_CN.ts b/src/mumble/mumble_zh_CN.ts
index 4b1b0f636..89ef4ea98 100644
--- a/src/mumble/mumble_zh_CN.ts
+++ b/src/mumble/mumble_zh_CN.ts
@@ -6215,86 +6215,6 @@ the channel&apos;s context menu.</source>
</translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation>用法:mumble [选项] [&lt;URL&gt;]
-
-&lt;URL&gt; 指定启动时连接的 URL,而不是显示连接窗口,URL 的格式为:
-mumble://[&lt;用户名&gt;[:&lt;密码&gt;]@]&lt;主机名&gt;[:&lt;端口&gt;][/&lt;频道名&gt;[/&lt;子频道名&gt;...]][?version=&lt;x.y.z&gt;]
-
-必须设置 version 请求参数以调用正确的客户端版本,当前的默认值为 1.2.0。
-
-可用的选项:
- -h, --help 显示此帮助信息并退出。
- -m, --multiple
- 允许启动多个客户端实例。
- -c, --config
- 指定替代配置文件。
- 如果您使用此参数同时运行多个 Mumble 实例,
- 请确保在配置文件内设置替代 &apos;database&apos; 选项。
- -n, --noidentity
- 禁止加载身份认证文件(即证书)。
- -jn, --jackname &lt;参数&gt;
- 设置自定义 Jack 客户端名称。
- --license
- 显示 Mumble 许可。
- --authors
- 显示 Mumble 作者。
- --third-party-licenses
- 显示 Mumble 使用的第三方软件的许可。
- --window-title-ext &lt;参数&gt;
- 设置自定义窗口标题后缀名。
- --dump-input-streams
- 转储输入链上各部分的 PCM 流。
- (适用于调试目的)
- - 原始麦克风输入
- - 扬声器回声消除重读取
- - 已处理麦克风输入
- --print-echocancel-queue
- 向标准输出打印回声消除队列状态。
- (适用于调试目的)
-
-</translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation>隐藏/显示主界面</translation>
@@ -6360,6 +6280,64 @@ Valid actions are:
</translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7423,6 +7401,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">调用</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_zh_HK.ts b/src/mumble/mumble_zh_HK.ts
index 8bd931381..5ecb9dea8 100644
--- a/src/mumble/mumble_zh_HK.ts
+++ b/src/mumble/mumble_zh_HK.ts
@@ -6150,49 +6150,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6236,6 +6193,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7297,6 +7312,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">調用</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>
diff --git a/src/mumble/mumble_zh_TW.ts b/src/mumble/mumble_zh_TW.ts
index 59e4c81a7..f954a6559 100644
--- a/src/mumble/mumble_zh_TW.ts
+++ b/src/mumble/mumble_zh_TW.ts
@@ -6173,49 +6173,6 @@ the channel&apos;s context menu.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Usage: mumble [options] [&lt;url&gt;]
-
-&lt;url&gt; specifies a URL to connect to after startup instead of showing
-the connection window, and has the following form:
-mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
-
-The version query parameter has to be set in order to invoke the
-correct client version. It currently defaults to 1.2.0.
-
-Valid options are:
- -h, --help Show this help text and exit.
- -m, --multiple
- Allow multiple instances of the client to be started.
- -c, --config
- 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.
- -n, --noidentity
- Suppress loading of identity files (i.e., certificates.)
- -jn, --jackname &lt;arg&gt;
- Set custom Jack client name.
- --license
- Show the Mumble license.
- --authors
- Show the Mumble authors.
- --third-party-licenses
- Show licenses for third-party software used by Mumble.
- --window-title-ext &lt;arg&gt;
- Sets a custom window title extension.
- --dump-input-streams
- Dump PCM streams at various parts of the input chain
- (useful for debugging purposes)
- - raw microphone input
- - speaker readback for echo cancelling
- - processed microphone input
- --print-echocancel-queue
- Print on stdout the echo cancellation queue state
- (useful for debugging purposes)
-
-</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<source>Hide/show main window</source>
<comment>Global Shortcut</comment>
<translation type="unfinished"></translation>
@@ -6259,6 +6216,64 @@ Valid actions are:
</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>Usage: mumble [options] [&lt;url&gt;]
+
+&lt;url&gt; specifies a URL to connect to after startup instead of showing
+the connection window, and has the following form:
+mumble://[&lt;username&gt;[:&lt;password&gt;]@]&lt;host&gt;[:&lt;port&gt;][/&lt;channel&gt;[/&lt;subchannel&gt;...]][?version=&lt;x.y.z&gt;]
+
+The version query parameter has to be set in order to invoke the
+correct client version. It currently defaults to 1.2.0.
+
+Valid options are:
+ -h, --help Show this help text and exit.
+ -m, --multiple
+ Allow multiple instances of the client to be started.
+ -c, --config
+ 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.
+ -n, --noidentity
+ Suppress loading of identity files (i.e., certificates.)
+ -jn, --jackname &lt;arg&gt;
+ Set custom Jack client name.
+ --license
+ Show the Mumble license.
+ --authors
+ Show the Mumble authors.
+ --third-party-licenses
+ Show licenses for third-party software used by Mumble.
+ --window-title-ext &lt;arg&gt;
+ Sets a custom window title extension.
+ --dump-input-streams
+ Dump PCM streams at various parts of the input chain
+ (useful for debugging purposes)
+ - raw microphone input
+ - speaker readback for echo cancelling
+ - processed microphone input
+ --print-echocancel-queue
+ Print on stdout the echo cancellation queue state
+ (useful for debugging purposes)
+ --translation-dir &lt;dir&gt;
+ Specifies an additional translation fir &lt;dir&gt; in which
+ Mumble will search for translation files that overwrite
+ the bundled ones
+ Directories added this way have higher priority than
+ the default locations used otherwise
+ --print-translation-dirs
+ Print out the paths in which Mumble will search for
+ translation files that overwrite the bundled ones.
+ (Useful for translators testing their translations)
+ --locale &lt;locale&gt;
+ Overwrite the locale in Mumble&apos;s settings with a
+ locale that corresponds to the given locale string.
+ 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>
</context>
<context>
<name>Manual</name>
@@ -7319,6 +7334,15 @@ See &lt;a href=&quot;https://wiki.mumble.info/wiki/Installing_Mumble&quot;&gt;th
<source>The provided URL uses an invalid version format: &quot;%1&quot;</source>
<translation type="unfinished"></translation>
</message>
+ <message>
+ <source>The directories in which Mumble searches for extra translation files are:
+</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <source>Invocation</source>
+ <translation type="unfinished">調用</translation>
+ </message>
</context>
<context>
<name>RichTextEditor</name>