From 89ae4361d57886ba534a477cdbc4fce1556183e4 Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Wed, 3 Mar 2021 17:01:40 +0100 Subject: FEAT(client): Improve translation directory search Mumble allows using translation files (*.qm) on disk to overwrite the bundled translations. This is very useful for translators wanting to try out their translations. Unfortunately though in order for this to work translations had to be placed next to the Mumble executable which (due to the usual install path of Mumble) requires admin/root privileges. Therefore this commit adds a few extra locations in which such translation files are searched in. Furthermore it adds the --translation-dir command line argument that allows to specify a custom location that is prepended to the list of checked directories. Fixes #4796 --- src/mumble/main.cpp | 48 ++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 46 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/mumble/main.cpp b/src/mumble/main.cpp index 12b3ddf6d..bad20b746 100644 --- a/src/mumble/main.cpp +++ b/src/mumble/main.cpp @@ -226,6 +226,7 @@ int main(int argc, char **argv) { bool bRpcMode = false; QString rpcCommand; QUrl url; + QStringList extraTranslationDirs; if (a.arguments().count() > 1) { for (int i = 1; i < args.count(); ++i) { @@ -274,6 +275,12 @@ 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 \n" + " Specifies an additional translation fir 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" "\n"); QString rpcHelpBanner = MainWindow::tr("Remote controlling Mumble:\n" "\n"); @@ -362,6 +369,14 @@ 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) == "--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 (!bRpcMode) { QUrl u = QUrl::fromEncoded(args.at(i).toUtf8()); @@ -378,6 +393,25 @@ int main(int argc, char **argv) { } } + // Populate extra translation dirs (directories in which Mumble shall look for + // translation files that can overwrite the bundled one if present). The order + // in which they are added to this list determines the priority (first match + // will win). + // Start with the directory the Mumble executable lives in. + extraTranslationDirs.append(a.applicationDirPath()); + // Next add AppData directories + for (const QString ¤tConfigPath : QStandardPaths::standardLocations(QStandardPaths::AppDataLocation)) { + extraTranslationDirs.append(QDir::cleanPath(currentConfigPath)); + } + // Next add directories in the config locations + for (const QString ¤tConfigPath : QStandardPaths::standardLocations(QStandardPaths::ConfigLocation)) { + extraTranslationDirs.append(QDir::cleanPath(currentConfigPath + QDir::separator() + "MumbleTranslations")); + } + // Finally add a dir in the home directory + for (const QString ¤tHomePath : QStandardPaths::standardLocations(QStandardPaths::HomeLocation)) { + extraTranslationDirs.append(QDir::cleanPath(currentHomePath + QDir::separator() + "MumbleTranslations")); + } + #ifdef USE_DBUS # ifdef Q_OS_WIN // By default, windbus expects the path to dbus-daemon to be in PATH, and the path @@ -512,9 +546,19 @@ int main(int argc, char **argv) { if (translator.load(QLatin1String(":mumble_") + locale)) a.installTranslator(&translator); + // Create a second translator that tries to load translation files from several directories on + // disk. If found, these translation files can overwrite strings from the bundled translations QTranslator loctranslator; - if (loctranslator.load(QLatin1String("mumble_") + locale, a.applicationDirPath())) - a.installTranslator(&loctranslator); // Can overwrite strings from bundled mumble translation + QString translationFilename = QLatin1String("mumble_") + locale; + for (const QString ¤tTranslationDir : extraTranslationDirs) { + if (loctranslator.load(translationFilename, currentTranslationDir)) { + a.installTranslator(&loctranslator); + + // First match wins + qWarning("Using extra translation file from directory: \"%s\"", currentTranslationDir.toUtf8().data()); + break; + } + } // With modularization of Qt 5 some - but not all - of the qt_.ts files have become // so-called meta catalogues which no longer contain actual translations but refer to other -- cgit v1.2.3 From 8d1d77772ef0169a2e8eba81138f372df6d84632 Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Wed, 3 Mar 2021 17:07:09 +0100 Subject: FEAT(client): Add option to print translation dirs In order to figure out where Mumble _really_ tries to look for translation files (*.qm) on the local disk, this commit adds an option that will cause Mumble to print out the list of directories it will search (in order). --- src/mumble/main.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'src') diff --git a/src/mumble/main.cpp b/src/mumble/main.cpp index bad20b746..587e84b25 100644 --- a/src/mumble/main.cpp +++ b/src/mumble/main.cpp @@ -224,6 +224,7 @@ int main(int argc, char **argv) { bool suppressIdentity = false; bool customJackClientName = false; bool bRpcMode = false; + bool printTranslationDirs = false; QString rpcCommand; QUrl url; QStringList extraTranslationDirs; @@ -281,6 +282,10 @@ int main(int argc, char **argv) { " 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" "\n"); QString rpcHelpBanner = MainWindow::tr("Remote controlling Mumble:\n" "\n"); @@ -369,6 +374,8 @@ 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)); @@ -412,6 +419,24 @@ int main(int argc, char **argv) { extraTranslationDirs.append(QDir::cleanPath(currentHomePath + QDir::separator() + "MumbleTranslations")); } + if (printTranslationDirs) { + QString infoString = QObject::tr("The directories in which Mumble searches for extra translation files are:\n"); + + int counter = 1; + for (const QString ¤tTranslationDir : 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 -- cgit v1.2.3 From 0dcc1f614b2ab4f0d4bbac5fd29676595072a133 Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Thu, 11 Mar 2021 15:35:56 +0100 Subject: REFAC(client): Separate translation handling Instead of doing everything in main.cpp, there is now a dedicated source files that deals with that. --- src/mumble/CMakeLists.txt | 2 + src/mumble/Translations.cpp | 107 ++++++++++++++++++++++++++++++++++++++++++++ src/mumble/Translations.h | 26 +++++++++++ src/mumble/main.cpp | 89 +++++++----------------------------- 4 files changed, 151 insertions(+), 73 deletions(-) create mode 100644 src/mumble/Translations.cpp create mode 100644 src/mumble/Translations.h (limited to 'src') 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 . + +#include "Translations.h" + +#include +#include +#include +#include +#include + +namespace Mumble { +namespace Translations { + + QStringList getDefaultTranslationDirectories() { + QStringList translationDirs; + + const QString translationDirName = "MumbleTranslations"; + + // AppData directories + for (const QString ¤tConfigPath : QStandardPaths::standardLocations(QStandardPaths::AppDataLocation)) { + translationDirs.append(QDir::cleanPath(currentConfigPath)); + } + // Directories in the config locations + for (const QString ¤tConfigPath : QStandardPaths::standardLocations(QStandardPaths::ConfigLocation)) { + translationDirs.append(QDir::cleanPath(currentConfigPath + QDir::separator() + translationDirName)); + } + // A directory in the home directory + for (const QString ¤tHomePath : 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 ¤tDir : 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_.ts files have become + // so-called meta catalogues which no longer contain actual translations but refer to other + // more specific ts files like qtbase_.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_.ts file first and then fall back to loading + // qtbase_.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 . + +#ifndef MUMBLE_MUMBLE_TRANSLATIONS_H_ +#define MUMBLE_MUMBLE_TRANSLATIONS_H_ + +#include + +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 587e84b25..947d419fe 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 #include -#include -#include #include #include +#include #include #ifdef USE_DBUS @@ -400,30 +399,11 @@ int main(int argc, char **argv) { } } - // Populate extra translation dirs (directories in which Mumble shall look for - // translation files that can overwrite the bundled one if present). The order - // in which they are added to this list determines the priority (first match - // will win). - // Start with the directory the Mumble executable lives in. - extraTranslationDirs.append(a.applicationDirPath()); - // Next add AppData directories - for (const QString ¤tConfigPath : QStandardPaths::standardLocations(QStandardPaths::AppDataLocation)) { - extraTranslationDirs.append(QDir::cleanPath(currentConfigPath)); - } - // Next add directories in the config locations - for (const QString ¤tConfigPath : QStandardPaths::standardLocations(QStandardPaths::ConfigLocation)) { - extraTranslationDirs.append(QDir::cleanPath(currentConfigPath + QDir::separator() + "MumbleTranslations")); - } - // Finally add a dir in the home directory - for (const QString ¤tHomePath : QStandardPaths::standardLocations(QStandardPaths::HomeLocation)) { - extraTranslationDirs.append(QDir::cleanPath(currentHomePath + QDir::separator() + "MumbleTranslations")); - } - if (printTranslationDirs) { QString infoString = QObject::tr("The directories in which Mumble searches for extra translation files are:\n"); int counter = 1; - for (const QString ¤tTranslationDir : extraTranslationDirs) { + for (const QString ¤tTranslationDir : Mumble::Translations::getTranslationDirectories(a, extraTranslationDirs)) { infoString += QString::fromLatin1("%1. ").arg(counter) + currentTranslationDir + "\n"; counter++; } @@ -555,65 +535,28 @@ 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); - } -#endif - - const QString locale = Global::get().s.qsLanguage.isEmpty() ? qsSystemLocale : Global::get().s.qsLanguage; - qWarning("Locale is \"%s\" (System: \"%s\")", qPrintable(locale), qPrintable(qsSystemLocale)); + const QLocale macOSLocale = QLocale(QString::fromLatin1(os_lang)); - QTranslator translator; - if (translator.load(QLatin1String(":mumble_") + locale)) - a.installTranslator(&translator); - - // Create a second translator that tries to load translation files from several directories on - // disk. If found, these translation files can overwrite strings from the bundled translations - QTranslator loctranslator; - QString translationFilename = QLatin1String("mumble_") + locale; - for (const QString ¤tTranslationDir : extraTranslationDirs) { - if (loctranslator.load(translationFilename, currentTranslationDir)) { - a.installTranslator(&loctranslator); - - // First match wins - qWarning("Using extra translation file from directory: \"%s\"", currentTranslationDir.toUtf8().data()); - break; + if (macOSLocale != QLocale::c()) { + qWarning("Using Mac OS X system language as locale name"); + systemLocale = macOSLocale; } } +#endif - // With modularization of Qt 5 some - but not all - of the qt_.ts files have become - // so-called meta catalogues which no longer contain actual translations but refer to other - // more specific ts files like qtbase_.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_.ts file first and then fall back to loading - // qtbase_.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); + QLocale settingsLocale = QLocale(Global::get().s.qsLanguage); + if (settingsLocale == QLocale::c()) { + settingsLocale = systemLocale; } + qWarning("Locale is \"%s\" (System: \"%s\")", qUtf8Printable(settingsLocale.name()), qUtf8Printable(systemLocale.name())); + + Mumble::Translations::installTranslators(settingsLocale, a, extraTranslationDirs); + // Initialize proxy settings NetworkConfig::SetupProxy(); -- cgit v1.2.3 From fcabef87d996cc21dcc0f8a817d894776e286c3d Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Fri, 12 Mar 2021 11:55:00 +0100 Subject: FEAT(client): Allow to overwrite setting's locale In case you want to use a locale that does not have a corresponding bundled translation in Mumble, you will probably have a hard time setting this up in Mumble's settings. This is important though in case one wants to test a new translation from an external translation file. Therefore this commit adds a new command line option that allows overwriting Mumble's settings manually. --- src/mumble/main.cpp | 36 +++++++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/mumble/main.cpp b/src/mumble/main.cpp index 947d419fe..42991c805 100644 --- a/src/mumble/main.cpp +++ b/src/mumble/main.cpp @@ -227,6 +227,7 @@ int main(int argc, char **argv) { QString rpcCommand; QUrl url; QStringList extraTranslationDirs; + QString localeOverwrite; if (a.arguments().count() > 1) { for (int i = 1; i < args.count(); ++i) { @@ -285,6 +286,12 @@ int main(int argc, char **argv) { " 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 \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"); @@ -383,6 +390,14 @@ int main(int argc, char **argv) { 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()); @@ -548,9 +563,24 @@ int main(int argc, char **argv) { } #endif - QLocale settingsLocale = QLocale(Global::get().s.qsLanguage); - if (settingsLocale == QLocale::c()) { - settingsLocale = systemLocale; + QLocale settingsLocale; + + if (localeOverwrite.isEmpty()) { + settingsLocale = QLocale(Global::get().s.qsLanguage); + if (settingsLocale == QLocale::c()) { + settingsLocale = systemLocale; + } + } else { + // Manually specified locale overwrite + settingsLocale = QLocale(localeOverwrite); + + if (settingsLocale == QLocale::c()) { + qFatal("Invalid locale specification \"%s\"", qUtf8Printable(localeOverwrite)); + return 1; + } + + // 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())); -- cgit v1.2.3 From 4052c13f02a4c7b8b0bfa2fd18ce162d6c8e474a Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Fri, 12 Mar 2021 11:58:05 +0100 Subject: TRANSLATION: Update translation files --- src/mumble/mumble_ar.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_bg.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_br.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_ca.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_cs.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_cy.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_da.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_de.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_el.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_en.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_en_GB.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_eo.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_es.ts | 146 ++++++++++++++++++++----------------------- src/mumble/mumble_et.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_eu.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_fa_IR.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_fi.ts | 151 ++++++++++++++++++++------------------------- src/mumble/mumble_fr.ts | 150 ++++++++++++++++++++------------------------ src/mumble/mumble_gl.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_he.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_hu.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_it.ts | 150 ++++++++++++++++++++------------------------ src/mumble/mumble_ja.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_ko.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_lt.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_nl.ts | 149 ++++++++++++++++++++------------------------ src/mumble/mumble_no.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_oc.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_pl.ts | 150 ++++++++++++++++++++------------------------ src/mumble/mumble_pt_BR.ts | 151 ++++++++++++++++++++------------------------- src/mumble/mumble_pt_PT.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_ro.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_ru.ts | 150 ++++++++++++++++++++------------------------ src/mumble/mumble_si.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_sv.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_te.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_th.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_tr.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_uk.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_zh_CN.ts | 147 ++++++++++++++++++++----------------------- src/mumble/mumble_zh_HK.ts | 110 ++++++++++++++++++++------------- src/mumble/mumble_zh_TW.ts | 110 ++++++++++++++++++++------------- 42 files changed, 2814 insertions(+), 2160 deletions(-) (limited to 'src') 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 @@ -6146,49 +6146,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6233,6 +6190,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7293,6 +7308,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6143,49 +6143,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6230,6 +6187,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7290,6 +7305,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6142,49 +6142,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6229,6 +6186,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7289,6 +7304,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6148,49 +6148,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6235,6 +6192,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7295,6 +7310,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6202,49 +6202,6 @@ kontextové nabídce kanálů. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6289,6 +6246,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7353,6 +7368,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Vyvolání + RichTextEditor 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 @@ -6146,49 +6146,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6233,6 +6190,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7293,6 +7308,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6198,49 +6198,6 @@ kanalens genvejsmenu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6285,6 +6242,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7349,6 +7364,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Opmærksomhed + RichTextEditor 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 @@ -6263,49 +6263,6 @@ Sie können zusätzliche Kanäle zum Filtern über das Kontextmenü des Kanals a Konfigurationsdatei %1 existiert nicht oder ist nicht beschreibbar. - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - - - - Hide/show main window Global Shortcut @@ -6347,6 +6304,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7417,6 +7432,15 @@ Infos hierzu finden Sie im <a href="https://wiki.mumble.info/wiki/Instal The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Aufruf + RichTextEditor 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 @@ -6207,49 +6207,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6294,6 +6251,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7359,6 +7374,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Επίκληση + RichTextEditor 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 @@ -6141,49 +6141,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6228,6 +6185,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7288,6 +7303,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6178,49 +6178,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6265,6 +6222,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7325,6 +7340,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6154,49 +6154,6 @@ the channel's context menu. Agordadosiero %1 ne ekzistas aŭ ĝi estas neverkebla. - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - - - - Hide/show main window Global Shortcut @@ -6238,6 +6195,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7298,6 +7313,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Alvoko + RichTextEditor 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 @@ -6213,85 +6213,6 @@ en el menu contextual del canal. Configuration file %1 does not exist or is not writable. El archivo de configuración %1 no existe o es de sólo lectura. - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - - - Usar: mumble [opciones] [<url>] - -<url>especifica una URL para conectarse después del inicio en lugar de mostrar -la ventana de conexión, y tiene la siguiente forma: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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: -   -h, --help Muestra este texto de ayuda y sale. -   -m, --multiple -                 Permite que se inicien varias instancias del cliente. - -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 'database' en la configuración. -   -n, --noidentity -                 Suprime la carga de archivos con identidad (i.e., certificados). -   -jn, --jackname -                 Establece el nombre del cliente Jack personalizado. -   --license -                 Muestra la licencia de Mumble. -   --authors -                 Muestra los autores de Mumble. -   --third-party-licenses -                 Muestra las licencias de software de terceros utilizado por Mumble. - --window-title-ext -                Fija una extensión de título específica. ---dump-input-streams -                Muestra los streams de PCM en diversos puntos de la cadena de entrada (útil para efectos de debugging) -                - Entrada en bruto del micrófono -                - Lectura del parlante para cancelación de eco -                - Entrada procesada del micrófono ---print-echocancel-queue -                Imprime en stdout el estado de la cola de cancelación de eco (útil para efectos de debugging) @@ -6335,6 +6256,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7401,6 +7380,15 @@ Vea <a href="https://wiki.mumble.info/wiki/Installing_Mumble">la The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Invocación + RichTextEditor 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 @@ -6143,49 +6143,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6230,6 +6187,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7290,6 +7305,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6162,49 +6162,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6249,6 +6206,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7309,6 +7324,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6141,49 +6141,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6228,6 +6185,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7288,6 +7303,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6212,90 +6212,6 @@ kanavien alivalikosta. Configuration file %1 does not exist or is not writable. Konfiguraatiotiedostoa %1 ei ole tai sitä ei voi muokata. - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - - - Käyttö: mumble [valinnat] [<url>] - -<url> määrittää URLn johon yhdistää käynnistymisen jälkeen sen sijaan että näytetään -liittymisikkuna. Osoite on muotoa: -mumble://[<käyttäjä>[:<salasana>]@]<osoite>[:<portti>][/<kanava>[/<alikanava>...]][?versio=<x.y.z>] - -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 'database' - -arvon asetustiedostossa. - -n, --noidentity - Hiljennä identiteettitiedostojen (esim. varmenteiden) lataus - -jn, --jackname <arg> - 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 <arg> - 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ä) - @@ -6383,6 +6299,64 @@ Päteviä valintoja ovat: + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. + + + Manual @@ -7446,6 +7420,15 @@ Lisätietoa löydät <a href="https://wiki.mumble.info/wiki/Installing_M The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Kutsu + RichTextEditor 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 @@ -6213,89 +6213,6 @@ Affiche la console développeur Mumble où les logs peuvent être consultés.Configuration file %1 does not exist or is not writable. Le fichier de configuration %1 n'existe pas ou ne peut être modifié. - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - - - Usage : mumble [options] [<url>] - -<url> 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://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -Le paramètre de requête "version" doit être défini afin d'appeler la bonne version du client. C'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 - 'database" alternative dans la configuration. - -n, --noidentity - Dissimule le chargement des fichiers d'identités - (i.e., certificats.) - -jn, --jackname <arg> - 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 <arg> - Définit une extension de titre de fenêtre personnalisée. - --dump-input-streams - Dump les flux PCM à divers endroits de la chaine d'entrée - (utile à des fins de débogage) - - entrée microphone brute - - "readback" haut-parleur pour suppression d'écho - - entrée microphone traitée - --print-echocancel-queue - Affiche sur stdout l'état de la file de suppression d'écho - (utile à des fins de débogage) - @@ -6339,6 +6256,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7404,6 +7379,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Invocation + RichTextEditor 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 @@ -6144,49 +6144,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6231,6 +6188,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7291,6 +7306,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6195,49 +6195,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6282,6 +6239,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7347,6 +7362,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + קריאה + RichTextEditor 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 @@ -6192,49 +6192,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6279,6 +6236,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7339,6 +7354,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6214,89 +6214,6 @@ contestuale del canale. Configuration file %1 does not exist or is not writable. Il file di configurazione %1 non esiste o non è modificabile. - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - - - Utilizzo: mumble [opzioni] [<url>] - -<url>Specifica un URL a cui connettersi dopo l'avvio, invece -di visualizzare -la finestra di connessione, ed ha la seguente forma: -mumble://[<nomeutente>[:<password>]@]<host>[:<porta>][/<canale>[/<sottocanale>...]][?version=<x.y.z>] - -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'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 "database" nelle impostazioni. --n, --noidentity -Impedisce il caricamento di file di identificazione (es. certificati) --jn, --jackname<arg> -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 <arg> -Imposta un'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) @@ -6340,6 +6257,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7406,6 +7381,15 @@ Controlla <a href="https://wiki.mumble.info/wiki/Installing_Mumble" The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Invocazione + RichTextEditor 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 @@ -6191,49 +6191,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6278,6 +6235,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7342,6 +7357,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + 呼び出し + RichTextEditor 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 @@ -6173,49 +6173,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6260,6 +6217,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7325,6 +7340,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + 호출 + RichTextEditor 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 @@ -6175,49 +6175,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6262,6 +6219,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7326,6 +7341,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6213,88 +6213,6 @@ context-menu van het kanaal. Configuration file %1 does not exist or is not writable. Configuratiebestand %1 bestaat niet of is onbeschrijfbaar. - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - - - Gebruik: mumble [opties] [<url>] - -<url> specificeert een adreslink om mee te verbinden na het opstarten in plaats van -het verbindingsvenster te tonen, en heeft het volgende format: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' waarde in de configuratie in. - -n, --noidentity - Laden van identiteitsbestanden onderdrukken (bijv. certificaten.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6364,6 +6282,64 @@ Valide acties zijn: + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. + + + Manual @@ -7427,6 +7403,15 @@ Zie <a href="https://wiki.mumble.info/wiki/Installing_Mumble">de The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Aanroeping + RichTextEditor 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 @@ -6219,49 +6219,6 @@ kanalens kontekstmeny. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6306,6 +6263,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7371,6 +7386,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Påkallelse + RichTextEditor 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 @@ -6143,49 +6143,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6230,6 +6187,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7290,6 +7305,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6205,89 +6205,6 @@ kanały mają być filtrowane. Configuration file %1 does not exist or is not writable. Plik konfiguracyjny %1 nie istnieje lub nie można go zapisać. - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - - - Użycie: mumble [opcje] [<url>] - -<url> Określa URL do nawiązania połączenia po uruchomieniu aplikacji, zamiast wyświetlania -okna połączenia, ma następującą składnię: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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ść 'database' w konfiguracji. --n, --noidentity - Powstrzymuje ładowanie plików identyfikacyjnych (np. certyfikatów). - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6357,6 +6274,64 @@ toggledeaf + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. + + + Manual @@ -7421,6 +7396,15 @@ Zobacz <a href="https://wiki.mumble.info/wiki/Installing_Mumble"> The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Wywołanie + RichTextEditor 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 @@ -6211,90 +6211,6 @@ no menu contextual do canal. Configuration file %1 does not exist or is not writable. Arquivo de configuração %1 não existe ou não é escrevível, - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - - - Uso: mumble [opções] [<url>] - -<url> 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://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 - 'banco de dados' 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) - @@ -6338,6 +6254,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7404,6 +7378,15 @@ Consulte a <a href="https://wiki.mumble.info/wiki/Installing_Mumble" The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Invocação + RichTextEditor 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 @@ -6196,49 +6196,6 @@ do menu de contexto do canal. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6283,6 +6240,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7347,6 +7362,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Invocação + RichTextEditor 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 @@ -6147,49 +6147,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6234,6 +6191,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7294,6 +7309,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6167,89 +6167,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. Файл конфигурации %1 не существует или недоступен для записи. - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - - - Использование: mumble [ключи] [<url>] - -<url> указывает адрес для подключения после запуска вместо вывода -окна подключения и имеет следующий вид: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -Параметр запроса версии должен быть установлен для вызова -правильной версии клиента. По умолчанию это 1.2.0 - -Допустимые ключи: - -h, --help Показать данную справку и выйти. - -m, --multiple - Разрешить запуск нескольких клиентов. - -c, --config - Указать альтернативный файл конфигурации. - Если вы используете эту опцию, чтобы запустить несколько - окон Mumble одновременно, укажите альтернативную опцию - 'database' в файле конфигурации. - -n, --noidentity - Запретить загрузку файлов идентификации (например, сертификатов.) - -jn, --jackname<arg> - Задать имя клиента JACK. - --license - Показать лицензию Mumble. - --authors - Показать авторов Mumble. - --third-party-licenses - Показать лицензии стороннего ПО, используемого Mumble. - --window-title-ext <arg> - Задать произвольное расширение заголовка окна. - --dump-input-streams - Дамп потоков PCM в различных частях входной цепочки - (полезно для отладки) - - необработанный микрофонный вход - - спикер для эхоподавления - - обработанный микрофонный вход - --print-echocancel-queue - Вывести на стандартный вывод состояние очереди эхоподавления - (полезно для отладки) - @@ -6319,6 +6236,64 @@ Valid actions are: + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. + + + Manual @@ -7381,6 +7356,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Вызов + RichTextEditor 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 @@ -5076,49 +5076,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6195,6 +6152,64 @@ Otherwise abort and check your certificate and username. Unknown Channel Drag mode in UserModel::dropMimeData. + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. + + + Manual @@ -7248,6 +7263,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th Local Volume Adjustment... + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6200,49 +6200,6 @@ kanalens innehållsmeny. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6287,6 +6244,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7351,6 +7366,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Anropande + RichTextEditor 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 @@ -6154,49 +6154,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6241,6 +6198,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7307,6 +7322,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6141,49 +6141,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6228,6 +6185,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7288,6 +7303,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6210,49 +6210,6 @@ ilave kanallar ekleyebilirsiniz. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6297,6 +6254,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7362,6 +7377,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + Çağrı + RichTextEditor 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 @@ -6143,49 +6143,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6230,6 +6187,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7290,6 +7305,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + + RichTextEditor 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 @@ -6212,86 +6212,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. 配置文件 %1 不存在或不可写。 - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - - - 用法:mumble [选项] [<URL>] - -<URL> 指定启动时连接的 URL,而不是显示连接窗口,URL 的格式为: -mumble://[<用户名>[:<密码>]@]<主机名>[:<端口>][/<频道名>[/<子频道名>...]][?version=<x.y.z>] - -必须设置 version 请求参数以调用正确的客户端版本,当前的默认值为 1.2.0。 - -可用的选项: - -h, --help 显示此帮助信息并退出。 - -m, --multiple - 允许启动多个客户端实例。 - -c, --config - 指定替代配置文件。 - 如果您使用此参数同时运行多个 Mumble 实例, - 请确保在配置文件内设置替代 'database' 选项。 - -n, --noidentity - 禁止加载身份认证文件(即证书)。 - -jn, --jackname <参数> - 设置自定义 Jack 客户端名称。 - --license - 显示 Mumble 许可。 - --authors - 显示 Mumble 作者。 - --third-party-licenses - 显示 Mumble 使用的第三方软件的许可。 - --window-title-ext <参数> - 设置自定义窗口标题后缀名。 - --dump-input-streams - 转储输入链上各部分的 PCM 流。 - (适用于调试目的) - - 原始麦克风输入 - - 扬声器回声消除重读取 - - 已处理麦克风输入 - --print-echocancel-queue - 向标准输出打印回声消除队列状态。 - (适用于调试目的) - @@ -6360,6 +6280,64 @@ Valid actions are: + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. + + + Manual @@ -7423,6 +7401,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + 调用 + RichTextEditor 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 @@ -6146,49 +6146,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6233,6 +6190,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7297,6 +7312,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + 調用 + RichTextEditor 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 @@ -6169,49 +6169,6 @@ the channel's context menu. Configuration file %1 does not exist or is not writable. - - - - - Usage: mumble [options] [<url>] - -<url> specifies a URL to connect to after startup instead of showing -the connection window, and has the following form: -mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] - -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 'database' value in the config. - -n, --noidentity - Suppress loading of identity files (i.e., certificates.) - -jn, --jackname <arg> - 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 <arg> - 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) - @@ -6256,6 +6213,64 @@ Valid actions are: stoptalking Stop talking + + + + + Usage: mumble [options] [<url>] + +<url> specifies a URL to connect to after startup instead of showing +the connection window, and has the following form: +mumble://[<username>[:<password>]@]<host>[:<port>][/<channel>[/<subchannel>...]][?version=<x.y.z>] + +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 'database' value in the config. + -n, --noidentity + Suppress loading of identity files (i.e., certificates.) + -jn, --jackname <arg> + 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 <arg> + 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 <dir> + Specifies an additional translation fir <dir> 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 <locale> + Overwrite the locale in Mumble'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's settings. @@ -7319,6 +7334,15 @@ See <a href="https://wiki.mumble.info/wiki/Installing_Mumble">th The provided URL uses an invalid version format: "%1" + + The directories in which Mumble searches for extra translation files are: + + + + + Invocation + 調用 + RichTextEditor -- cgit v1.2.3