diff --git a/src/mumble/GlobalShortcutTypes.h b/src/mumble/GlobalShortcutTypes.h index 183c7c81e5c..564e50add73 100644 --- a/src/mumble/GlobalShortcutTypes.h +++ b/src/mumble/GlobalShortcutTypes.h @@ -37,6 +37,26 @@ enum Type { ToggleTalkingUI, ToggleSearch, ListenToChannel, + ServerConnect, + ServerDisconnect, + ServerInformation, + ServerTokens, + ServerUserList, + ServerBanList, + SelfPrioritySpeaker, + Recording, + SelfComment, + ServerTexture, + ServerTextureRemove, + SelfRegister, + AudioStats, + ConfigDialog, + AudioWizard, + ConfigCert, + AudioTTS, + HelpAbout, + HelpAboutQt, + HelpVersionCheck, }; // A few assertions meant to catch, if anyone inserts a new value in-between instead of appending @@ -44,6 +64,7 @@ enum Type { static_assert(PushToTalk == 1, "You may only append to the end of the enum!"); static_assert(ToggleMinimalView == 9, "You may only append to the end of the enum!"); static_assert(ToggleSearch == 22, "You may only append to the end of the enum!"); +static_assert(HelpVersionCheck == 43, "You may only append to the end of the enum!"); } // namespace GlobalShortcutType #endif // MUMBLE_MUMBLE_GLOBALSHORTCUTTYPES_H_ diff --git a/src/mumble/MainWindow.cpp b/src/mumble/MainWindow.cpp index 879a05b1ccd..26b9380be45 100644 --- a/src/mumble/MainWindow.cpp +++ b/src/mumble/MainWindow.cpp @@ -317,6 +317,101 @@ void MainWindow::createActions() { gsToggleSearch->qsWhatsThis = tr("This will open or close the search dialog depending on whether it is currently opened already"); + gsServerConnect = + new GlobalShortcut(this, GlobalShortcutType::ServerConnect, tr("Connect to a server", "Global Shortcut")); + gsServerConnect->setObjectName(QLatin1String("gsServerConnect")); + gsServerConnect->qsWhatsThis = tr("This will open the server connection dialog", "Global Shortcut"); + + gsServerDisconnect = + new GlobalShortcut(this, GlobalShortcutType::ServerDisconnect, tr("Disconnect from server", "Global Shortcut")); + gsServerDisconnect->setObjectName(QLatin1String("gsServerDisconnect")); + gsServerDisconnect->qsWhatsThis = tr("This will disconnect you from the server", "Global Shortcut"); + + gsServerInformation = new GlobalShortcut(this, GlobalShortcutType::ServerInformation, + tr("Open server information", "Global Shortcut")); + gsServerInformation->setObjectName(QLatin1String("gsServerInformation")); + gsServerInformation->qsWhatsThis = tr("This will show information about the server connection", "Global Shortcut"); + + gsServerTokens = + new GlobalShortcut(this, GlobalShortcutType::ServerTokens, tr("Open server tokens", "Global Shortcut")); + gsServerTokens->setObjectName(QLatin1String("gsServerTokens")); + gsServerTokens->qsWhatsThis = tr("This will open the server tokens dialog", "Global Shortcut"); + + gsServerUserList = + new GlobalShortcut(this, GlobalShortcutType::ServerUserList, tr("Open server user list", "Global Shortcut")); + gsServerUserList->setObjectName(QLatin1String("gsServerUserList")); + gsServerUserList->qsWhatsThis = tr("This will open the server user list dialog", "Global Shortcut"); + + gsServerBanList = + new GlobalShortcut(this, GlobalShortcutType::ServerBanList, tr("Open server ban list", "Global Shortcut")); + gsServerBanList->setObjectName(QLatin1String("gsServerBanList")); + gsServerBanList->qsWhatsThis = tr("This will open the server ban list dialog", "Global Shortcut"); + + gsSelfPrioritySpeaker = new GlobalShortcut(this, GlobalShortcutType::SelfPrioritySpeaker, + tr("Toggle priority speaker", "Global Shortcut")); + gsSelfPrioritySpeaker->setObjectName(QLatin1String("gsSelfPrioritySpeaker")); + gsSelfPrioritySpeaker->qsWhatsThis = tr("This will enable/disable the priority speaker", "Global Shortcut"); + + gsRecording = + new GlobalShortcut(this, GlobalShortcutType::Recording, tr("Open recording dialog", "Global Shortcut")); + gsRecording->setObjectName(QLatin1String("gsRecording")); + gsRecording->qsWhatsThis = tr("This will open the recording dialog"); + + gsSelfComment = new GlobalShortcut(this, GlobalShortcutType::SelfComment, tr("Change comment", "Global Shortcut")); + gsSelfComment->setObjectName(QLatin1String("gsSelfComment")); + gsSelfComment->qsWhatsThis = tr("This will open the change comment dialog"); + + gsServerTexture = + new GlobalShortcut(this, GlobalShortcutType::ServerTexture, tr("Change avatar", "Global Shortcut")); + gsServerTexture->setObjectName(QLatin1String("gsServerTexture")); + gsServerTexture->qsWhatsThis = tr("This will open your file explorer to change your avatar image on this server"); + + gsServerTextureRemove = + new GlobalShortcut(this, GlobalShortcutType::ServerTextureRemove, tr("Remove avatar", "Global Shortcut")); + gsServerTextureRemove->setObjectName(QLatin1String("gsServerTextureRemove")); + gsServerTextureRemove->qsWhatsThis = tr("This will reset your avatar on the server"); + + gsSelfRegister = + new GlobalShortcut(this, GlobalShortcutType::SelfRegister, tr("Register on the server", "Global Shortcut")); + gsSelfRegister->setObjectName(QLatin1String("gsSelfRegister")); + gsSelfRegister->qsWhatsThis = tr("This will register you on the server"); + + gsAudioStats = new GlobalShortcut(this, GlobalShortcutType::AudioStats, tr("Audio statistics", "Global Shortcut")); + gsAudioStats->setObjectName(QLatin1String("gsAudioStats")); + gsAudioStats->qsWhatsThis = tr("This will open the audio statistics dialog"); + + gsConfigDialog = new GlobalShortcut(this, GlobalShortcutType::ConfigDialog, tr("Open settings", "Global Shortcut")); + gsConfigDialog->setObjectName(QLatin1String("gsConfigDialog")); + gsConfigDialog->qsWhatsThis = tr("This will open the settings dialog"); + + gsAudioWizard = + new GlobalShortcut(this, GlobalShortcutType::AudioWizard, tr("Start audio wizard", "Global Shortcut")); + gsAudioWizard->setObjectName(QLatin1String("gsAudioWizard")); + gsAudioWizard->qsWhatsThis = tr("This will open the audio wizard dialog"); + + gsConfigCert = + new GlobalShortcut(this, GlobalShortcutType::ConfigCert, tr("Start certificate wizard", "Global Shortcut")); + gsConfigCert->setObjectName(QLatin1String("gsConfigCert")); + gsConfigCert->qsWhatsThis = tr("This will open the certificate wizard dialog"); + + gsAudioTTS = new GlobalShortcut(this, GlobalShortcutType::AudioTTS, tr("Toggle text to speech", "Global Shortcut")); + gsAudioTTS->setObjectName(QLatin1String("gsAudioTTS")); + gsAudioTTS->qsWhatsThis = tr("This will enable/disable the text to speech"); + + gsHelpAbout = new GlobalShortcut(this, GlobalShortcutType::HelpAbout, tr("Open about dialog", "Global Shortcut")); + gsHelpAbout->setObjectName(QLatin1String("gsHelpAbout")); + gsHelpAbout->qsWhatsThis = tr("This will open the about dialog"); + + gsHelpAboutQt = + new GlobalShortcut(this, GlobalShortcutType::HelpAboutQt, tr("Open about Qt dialog", "Global Shortcut")); + gsHelpAboutQt->setObjectName(QLatin1String("gsHelpAboutQt")); + gsHelpAboutQt->qsWhatsThis = tr("This will open the about Qt dialog"); + + gsHelpVersionCheck = + new GlobalShortcut(this, GlobalShortcutType::HelpVersionCheck, tr("Check for update", "Global Shortcut")); + gsHelpVersionCheck->setObjectName(QLatin1String("gsHelpVersionCheck")); + gsHelpVersionCheck->qsWhatsThis = tr("This will check if mumble is up to date"); + #ifndef Q_OS_MAC qstiIcon->show(); #endif @@ -1440,25 +1535,7 @@ void MainWindow::setupView(bool toggle_minimize) { } void MainWindow::on_qaServerConnect_triggered(bool autoconnect) { - ConnectDialog *cd = new ConnectDialog(this, autoconnect); - int res = cd->exec(); - - if (cd->qsServer.isEmpty() || (cd->usPort == 0) || cd->qsUsername.isEmpty()) - res = QDialog::Rejected; - - if (res == QDialog::Accepted) { - recreateServerHandler(); - qsDesiredChannel = QString(); - rtLast = MumbleProto::Reject_RejectType_None; - bRetryServer = true; - qaServerDisconnect->setEnabled(true); - Global::get().l->log( - Log::Information, - tr("Connecting to server %1.").arg(Log::msgColor(cd->qsServer.toHtmlEscaped(), Log::Server))); - Global::get().sh->setConnectionInfo(cd->qsServer, cd->usPort, cd->qsUsername, cd->qsPassword); - Global::get().sh->start(QThread::TimeCriticalPriority); - } - delete cd; + openServerConnectDialog(autoconnect); } void MainWindow::on_Reconnect_timeout() { @@ -1488,59 +1565,11 @@ void MainWindow::on_qmSelf_aboutToShow() { } void MainWindow::on_qaSelfComment_triggered() { - ClientUser *p = ClientUser::get(Global::get().uiSession); - if (!p) - return; - - if (!p->qbaCommentHash.isEmpty() && p->qsComment.isEmpty()) { - p->qsComment = QString::fromUtf8(Global::get().db->blob(p->qbaCommentHash)); - if (p->qsComment.isEmpty()) { - pmModel->uiSessionComment = ~(p->uiSession); - MumbleProto::RequestBlob mprb; - mprb.add_session_comment(p->uiSession); - Global::get().sh->sendMessage(mprb); - return; - } - } - - unsigned int session = p->uiSession; - - ::TextMessage *texm = new ::TextMessage(this, tr("Change your comment")); - - texm->rteMessage->setText(p->qsComment); - int res = texm->exec(); - - p = ClientUser::get(session); - - if (p && (res == QDialog::Accepted)) { - const QString &msg = texm->message(); - MumbleProto::UserState mpus; - mpus.set_session(session); - mpus.set_comment(u8(msg)); - Global::get().sh->sendMessage(mpus); - - if (!msg.isEmpty()) - Global::get().db->setBlob(sha1(msg), msg.toUtf8()); - } - delete texm; + openSelfCommentDialog(); } void MainWindow::on_qaSelfRegister_triggered() { - ClientUser *p = ClientUser::get(Global::get().uiSession); - if (!p) - return; - - QMessageBox::StandardButton result; - result = - QMessageBox::question(this, tr("Register yourself as %1").arg(p->qsName), - tr("

You are about to register yourself on this server. This action cannot be undone, " - "and your username cannot be changed once this is done. You will forever be known as " - "'%1' on this server.

Are you sure you want to register yourself?

") - .arg(p->qsName.toHtmlEscaped()), - QMessageBox::Yes | QMessageBox::No); - - if (result == QMessageBox::Yes) - Global::get().sh->registerUser(p->uiSession); + selfRegister(); } void MainWindow::qcbTransmitMode_activated(int index) { @@ -1589,63 +1618,31 @@ void MainWindow::on_qmServer_aboutToShow() { } void MainWindow::on_qaServerDisconnect_triggered() { - if (qtReconnect->isActive()) { - qtReconnect->stop(); - qaServerDisconnect->setEnabled(false); - } - if (Global::get().sh && Global::get().sh->isRunning()) - Global::get().sh->disconnect(); + disconnectFromServer(); } void MainWindow::on_qaServerBanList_triggered() { - Global::get().sh->requestBanList(); - - if (banEdit) { - banEdit->reject(); - delete banEdit; - banEdit = nullptr; - } + openServerBanListDialog(); } void MainWindow::on_qaServerUserList_triggered() { - Global::get().sh->requestUserList(); - - if (userEdit) { - userEdit->reject(); - delete userEdit; - userEdit = nullptr; - } + openServerUserListDialog(); } void MainWindow::on_qaServerInformation_triggered() { - ServerInformation *infoDialog = new ServerInformation(this); - infoDialog->show(); + openServerInformationDialog(); } void MainWindow::on_qaServerTexture_triggered() { - QPair< QByteArray, QImage > choice = openImageFile(); - if (choice.first.isEmpty()) - return; - - const QImage &img = choice.second; - - if ((img.height() <= 1024) && (img.width() <= 1024)) - Global::get().sh->setUserTexture(Global::get().uiSession, choice.first); + changeServerTexture(); } void MainWindow::on_qaServerTextureRemove_triggered() { - Global::get().sh->setUserTexture(Global::get().uiSession, QByteArray()); + removeServerTexture(); } void MainWindow::on_qaServerTokens_triggered() { - if (tokenEdit) { - tokenEdit->reject(); - delete tokenEdit; - tokenEdit = nullptr; - } - - tokenEdit = new Tokens(this); - tokenEdit->show(); + openServerTokensDialog(); } void MainWindow::voiceRecorderDialog_finished(int) { @@ -1892,14 +1889,7 @@ void MainWindow::on_qaUserDeaf_triggered() { } void MainWindow::on_qaSelfPrioritySpeaker_triggered() { - ClientUser *p = ClientUser::get(Global::get().uiSession); - if (!p) - return; - - MumbleProto::UserState mpus; - mpus.set_session(p->uiSession); - mpus.set_priority_speaker(!p->bPrioritySpeaker); - Global::get().sh->sendMessage(mpus); + toggleSelfPrioritySpeaker(); } void MainWindow::on_qaUserPrioritySpeaker_triggered() { @@ -2736,25 +2726,15 @@ void MainWindow::setAudioDeaf(bool deaf) { } void MainWindow::on_qaRecording_triggered() { - if (voiceRecorderDialog) { - voiceRecorderDialog->show(); - voiceRecorderDialog->raise(); - voiceRecorderDialog->activateWindow(); - } else { - voiceRecorderDialog = new VoiceRecorderDialog(this); - connect(voiceRecorderDialog, SIGNAL(finished(int)), this, SLOT(voiceRecorderDialog_finished(int))); - QObject::connect(Global::get().sh.get(), &ServerHandler::disconnected, voiceRecorderDialog, &QDialog::reject); - voiceRecorderDialog->show(); - } + recording(); } void MainWindow::on_qaAudioTTS_triggered() { - Global::get().s.bTTS = qaAudioTTS->isChecked(); + toggleAudioTTS(qaAudioTTS->isChecked()); } void MainWindow::on_qaAudioStats_triggered() { - AudioStats *as = new AudioStats(this); - as->show(); + openAudioStatsDialog(); } void MainWindow::on_qaAudioUnlink_triggered() { @@ -2762,32 +2742,7 @@ void MainWindow::on_qaAudioUnlink_triggered() { } void MainWindow::on_qaConfigDialog_triggered() { - ConfigDialog *dlg = new ConfigDialog(this); - - QObject::connect(dlg, &ConfigDialog::settingsAccepted, Global::get().talkingUI, &TalkingUI::on_settingsChanged); - - if (dlg->exec() == QDialog::Accepted) { - setupView(false); - updateTransmitModeComboBox(Global::get().s.atTransmit); - updateTrayIcon(); - updateUserModel(); - - if (Global::get().s.requireRestartToApply) { - if (Global::get().s.requireRestartToApply - && QMessageBox::question( - this, tr("Restart Mumble?"), - tr("Some settings will only apply after a restart of Mumble. Restart Mumble now?"), - QMessageBox::Yes | QMessageBox::No) - == QMessageBox::Yes) { - forceQuit = true; - restartOnQuit = true; - - close(); - } - } - } - - delete dlg; + openConfigDialog(); } void MainWindow::on_qaConfigMinimal_triggered() { @@ -2802,15 +2757,11 @@ void MainWindow::on_qaConfigHideFrame_triggered() { } void MainWindow::on_qaConfigCert_triggered() { - CertWizard *cw = new CertWizard(this); - cw->exec(); - delete cw; + openCertWizardDialog(); } void MainWindow::on_qaAudioWizard_triggered() { - AudioWizard *aw = new AudioWizard(this); - aw->exec(); - delete aw; + openAudioWizardDialog(); } void MainWindow::on_qaDeveloperConsole_triggered() { @@ -2832,16 +2783,15 @@ void MainWindow::on_qaHelpWhatsThis_triggered() { } void MainWindow::on_qaHelpAbout_triggered() { - AboutDialog adAbout(this); - adAbout.exec(); + openAboutDialog(); } void MainWindow::on_qaHelpAboutQt_triggered() { - QMessageBox::aboutQt(this, tr("About Qt")); + openAboutQtDialog(); } void MainWindow::on_qaHelpVersionCheck_triggered() { - new VersionCheck(false, this); + versionCheck(); } void MainWindow::on_gsMuteSelf_down(QVariant v) { @@ -3240,6 +3190,167 @@ void MainWindow::on_gsToggleSearch_triggered(bool down, QVariant) { toggleSearchDialogVisibility(); } +void MainWindow::on_gsServerConnect_triggered(bool down, QVariant) { + if (!down) { + return; + } + + openServerConnectDialog(); +} + +void MainWindow::on_gsServerDisconnect_triggered(bool down, QVariant) { + if (!down) { + return; + } + + disconnectFromServer(); +} + +void MainWindow::on_gsServerInformation_triggered(bool down, QVariant) { + if (!down) { + return; + } + + openServerInformationDialog(); +} + +void MainWindow::on_gsServerTokens_triggered(bool down, QVariant) { + if (!down) { + return; + } + + openServerTokensDialog(); +} + +void MainWindow::on_gsServerUserList_triggered(bool down, QVariant) { + if (!down) { + return; + } + + openServerUserListDialog(); +} + +void MainWindow::on_gsServerBanList_triggered(bool down, QVariant) { + if (!down) { + return; + } + + openServerBanListDialog(); +} + +void MainWindow::on_gsSelfPrioritySpeaker_triggered(bool down, QVariant) { + if (!down) { + return; + } + + toggleSelfPrioritySpeaker(); +} + +void MainWindow::on_gsRecording_triggered(bool down, QVariant) { + if (!down) { + return; + } + + recording(); +} + +void MainWindow::on_gsSelfComment_triggered(bool down, QVariant) { + if (!down) { + return; + } + + openSelfCommentDialog(); +} + +void MainWindow::on_gsServerTexture_triggered(bool down, QVariant) { + if (!down) { + return; + } + + changeServerTexture(); +} + +void MainWindow::on_gsServerTextureRemove_triggered(bool down, QVariant) { + if (!down) { + return; + } + + removeServerTexture(); +} + +void MainWindow::on_gsSelfRegister_triggered(bool down, QVariant) { + if (!down) { + return; + } + + selfRegister(); +} + +void MainWindow::on_gsAudioStats_triggered(bool down, QVariant) { + if (!down) { + return; + } + + openAudioStatsDialog(); +} + +void MainWindow::on_gsConfigDialog_triggered(bool down, QVariant) { + if (!down) { + return; + } + + openConfigDialog(); +} + +void MainWindow::on_gsAudioWizard_triggered(bool down, QVariant) { + if (!down) { + return; + } + + openAudioWizardDialog(); +} + +void MainWindow::on_gsConfigCert_triggered(bool down, QVariant) { + if (!down) { + return; + } + + openCertWizardDialog(); +} + +void MainWindow::on_gsAudioTTS_triggered(bool down, QVariant) { + if (!down) { + return; + } + + toggleAudioTTS(!Global::get().s.bTTS); +} + +void MainWindow::on_gsHelpAbout_triggered(bool down, QVariant) { + if (!down) { + return; + } + + openAboutDialog(); +} + +void MainWindow::on_gsHelpAboutQt_triggered(bool down, QVariant) { + if (!down) { + return; + } + + openAboutQtDialog(); +} + +void MainWindow::on_gsHelpVersionCheck_triggered(bool down, QVariant) { + if (!down) { + return; + } + + versionCheck(); +} + + void MainWindow::whisperReleased(QVariant scdata) { if (Global::get().iPushToTalk <= 0) return; @@ -3811,3 +3922,228 @@ void MainWindow::destroyUserInformation() { } } } + +void MainWindow::openServerConnectDialog(bool autoconnect) { + ConnectDialog *cd = new ConnectDialog(this, autoconnect); + int res = cd->exec(); + + if (cd->qsServer.isEmpty() || (cd->usPort == 0) || cd->qsUsername.isEmpty()) + res = QDialog::Rejected; + + if (res == QDialog::Accepted) { + recreateServerHandler(); + qsDesiredChannel = QString(); + rtLast = MumbleProto::Reject_RejectType_None; + bRetryServer = true; + qaServerDisconnect->setEnabled(true); + Global::get().l->log( + Log::Information, + tr("Connecting to server %1.").arg(Log::msgColor(cd->qsServer.toHtmlEscaped(), Log::Server))); + Global::get().sh->setConnectionInfo(cd->qsServer, cd->usPort, cd->qsUsername, cd->qsPassword); + Global::get().sh->start(QThread::TimeCriticalPriority); + } + delete cd; +} + +void MainWindow::disconnectFromServer() { + if (qtReconnect->isActive()) { + qtReconnect->stop(); + qaServerDisconnect->setEnabled(false); + } + if (Global::get().sh && Global::get().sh->isRunning()) + Global::get().sh->disconnect(); +} + +void MainWindow::openServerInformationDialog() { + ServerInformation *infoDialog = new ServerInformation(this); + infoDialog->show(); +} + +void MainWindow::openServerTokensDialog() { + if (tokenEdit) { + tokenEdit->reject(); + delete tokenEdit; + tokenEdit = nullptr; + } + + tokenEdit = new Tokens(this); + tokenEdit->show(); +} + +void MainWindow::openServerUserListDialog() { + Global::get().sh->requestUserList(); + + if (userEdit) { + userEdit->reject(); + delete userEdit; + userEdit = nullptr; + } +} + +void MainWindow::openServerBanListDialog() { + Global::get().sh->requestBanList(); + + if (banEdit) { + banEdit->reject(); + delete banEdit; + banEdit = nullptr; + } +} + +void MainWindow::toggleSelfPrioritySpeaker() { + ClientUser *p = ClientUser::get(Global::get().uiSession); + if (!p) + return; + + MumbleProto::UserState mpus; + mpus.set_session(p->uiSession); + mpus.set_priority_speaker(!p->bPrioritySpeaker); + Global::get().sh->sendMessage(mpus); +} + +void MainWindow::recording() { + if (voiceRecorderDialog) { + voiceRecorderDialog->show(); + voiceRecorderDialog->raise(); + voiceRecorderDialog->activateWindow(); + } else { + voiceRecorderDialog = new VoiceRecorderDialog(this); + connect(voiceRecorderDialog, SIGNAL(finished(int)), this, SLOT(voiceRecorderDialog_finished(int))); + QObject::connect(Global::get().sh.get(), &ServerHandler::disconnected, voiceRecorderDialog, &QDialog::reject); + voiceRecorderDialog->show(); + } +} + +void MainWindow::openSelfCommentDialog() { + ClientUser *p = ClientUser::get(Global::get().uiSession); + if (!p) + return; + + if (!p->qbaCommentHash.isEmpty() && p->qsComment.isEmpty()) { + p->qsComment = QString::fromUtf8(Global::get().db->blob(p->qbaCommentHash)); + if (p->qsComment.isEmpty()) { + pmModel->uiSessionComment = ~(p->uiSession); + MumbleProto::RequestBlob mprb; + mprb.add_session_comment(p->uiSession); + Global::get().sh->sendMessage(mprb); + return; + } + } + + unsigned int session = p->uiSession; + + ::TextMessage *texm = new ::TextMessage(this, tr("Change your comment")); + + texm->rteMessage->setText(p->qsComment); + int res = texm->exec(); + + p = ClientUser::get(session); + + if (p && (res == QDialog::Accepted)) { + const QString &msg = texm->message(); + MumbleProto::UserState mpus; + mpus.set_session(session); + mpus.set_comment(u8(msg)); + Global::get().sh->sendMessage(mpus); + + if (!msg.isEmpty()) + Global::get().db->setBlob(sha1(msg), msg.toUtf8()); + } + delete texm; +} + +void MainWindow::changeServerTexture() { + QPair< QByteArray, QImage > choice = openImageFile(); + if (choice.first.isEmpty()) + return; + + const QImage &img = choice.second; + + if ((img.height() <= 1024) && (img.width() <= 1024)) + Global::get().sh->setUserTexture(Global::get().uiSession, choice.first); +} + +void MainWindow::removeServerTexture() { + Global::get().sh->setUserTexture(Global::get().uiSession, QByteArray()); +} + +void MainWindow::selfRegister() { + ClientUser *p = ClientUser::get(Global::get().uiSession); + if (!p) + return; + + QMessageBox::StandardButton result; + result = + QMessageBox::question(this, tr("Register yourself as %1").arg(p->qsName), + tr("

You are about to register yourself on this server. This action cannot be undone, " + "and your username cannot be changed once this is done. You will forever be known as " + "'%1' on this server.

Are you sure you want to register yourself?

") + .arg(p->qsName.toHtmlEscaped()), + QMessageBox::Yes | QMessageBox::No); + + if (result == QMessageBox::Yes) + Global::get().sh->registerUser(p->uiSession); +} + +void MainWindow::openAudioStatsDialog() { + AudioStats *as = new AudioStats(this); + as->show(); +} + +void MainWindow::openConfigDialog() { + ConfigDialog *dlg = new ConfigDialog(this); + + QObject::connect(dlg, &ConfigDialog::settingsAccepted, Global::get().talkingUI, &TalkingUI::on_settingsChanged); + + if (dlg->exec() == QDialog::Accepted) { + setupView(false); + updateTransmitModeComboBox(Global::get().s.atTransmit); + updateTrayIcon(); + updateUserModel(); + + if (Global::get().s.requireRestartToApply) { + if (Global::get().s.requireRestartToApply + && QMessageBox::question( + this, tr("Restart Mumble?"), + tr("Some settings will only apply after a restart of Mumble. Restart Mumble now?"), + QMessageBox::Yes | QMessageBox::No) + == QMessageBox::Yes) { + forceQuit = true; + restartOnQuit = true; + + close(); + } + } + } + + delete dlg; +} + +void MainWindow::openAudioWizardDialog() { + AudioWizard *aw = new AudioWizard(this); + aw->exec(); + delete aw; +} + +void MainWindow::openCertWizardDialog() { + CertWizard *cw = new CertWizard(this); + cw->exec(); + delete cw; +} + +void MainWindow::toggleAudioTTS(const bool &newState) { + Global::get().s.bTTS = newState; +} + +void MainWindow::openAboutDialog() { + AboutDialog adAbout(this); + adAbout.exec(); +} + +void MainWindow::openAboutQtDialog() { + QMessageBox::aboutQt(this, tr("About Qt")); +} + +void MainWindow::versionCheck() { + new VersionCheck(false, this); +} \ No newline at end of file diff --git a/src/mumble/MainWindow.h b/src/mumble/MainWindow.h index 0f164255141..c155c7510e3 100644 --- a/src/mumble/MainWindow.h +++ b/src/mumble/MainWindow.h @@ -99,6 +99,15 @@ class MainWindow : public QMainWindow, public Ui::MainWindow { GlobalShortcut *gsSendTextMessage, *gsSendClipboardTextMessage; GlobalShortcut *gsToggleTalkingUI; GlobalShortcut *gsToggleSearch; + GlobalShortcut *gsServerConnect, *gsServerDisconnect, *gsServerInformation, *gsServerTokens; + GlobalShortcut *gsServerUserList, *gsServerBanList; + GlobalShortcut *gsSelfPrioritySpeaker; + GlobalShortcut *gsRecording; + GlobalShortcut *gsSelfComment, *gsServerTexture, *gsServerTextureRemove; + GlobalShortcut *gsSelfRegister, *gsAudioStats; + GlobalShortcut *gsConfigDialog, *gsAudioWizard, *gsConfigCert; + GlobalShortcut *gsAudioTTS; + GlobalShortcut *gsHelpAbout, *gsHelpAboutQt, *gsHelpVersionCheck; DockTitleBar *dtbLogDockTitle, *dtbChatDockTitle; @@ -307,6 +316,27 @@ public slots: void on_gsSendClipboardTextMessage_triggered(bool, QVariant); void on_gsToggleTalkingUI_triggered(bool, QVariant); void on_gsToggleSearch_triggered(bool, QVariant); + void on_gsServerConnect_triggered(bool, QVariant); + void on_gsServerDisconnect_triggered(bool, QVariant); + void on_gsServerInformation_triggered(bool, QVariant); + void on_gsServerTokens_triggered(bool, QVariant); + void on_gsServerUserList_triggered(bool, QVariant); + void on_gsServerBanList_triggered(bool, QVariant); + void on_gsSelfPrioritySpeaker_triggered(bool, QVariant); + void on_gsRecording_triggered(bool, QVariant); + void on_gsSelfComment_triggered(bool, QVariant); + void on_gsServerTexture_triggered(bool, QVariant); + void on_gsServerTextureRemove_triggered(bool, QVariant); + void on_gsSelfRegister_triggered(bool, QVariant); + void on_gsAudioStats_triggered(bool, QVariant); + void on_gsConfigDialog_triggered(bool, QVariant); + void on_gsAudioWizard_triggered(bool, QVariant); + void on_gsConfigCert_triggered(bool, QVariant); + void on_gsAudioTTS_triggered(bool, QVariant); + void on_gsHelpAbout_triggered(bool, QVariant); + void on_gsHelpAboutQt_triggered(bool, QVariant); + void on_gsHelpVersionCheck_triggered(bool, QVariant); + void on_Reconnect_timeout(); void on_Icon_activated(QSystemTrayIcon::ActivationReason); void on_qaTalkingUIToggle_triggered(); @@ -379,6 +409,27 @@ public slots: /// @param actionName The name of the action that has been executed. /// @param p The user on which the action was performed. void logChangeNotPermanent(const QString &actionName, ClientUser *const p) const; + + void openServerConnectDialog(bool autoconnect = false); + void disconnectFromServer(); + void openServerInformationDialog(); + void openServerTokensDialog(); + void openServerUserListDialog(); + void openServerBanListDialog(); + void toggleSelfPrioritySpeaker(); + void recording(); + void openSelfCommentDialog(); + void changeServerTexture(); + void removeServerTexture(); + void selfRegister(); + void openAudioStatsDialog(); + void openConfigDialog(); + void openAudioWizardDialog(); + void openCertWizardDialog(); + void toggleAudioTTS(const bool &newState); + void openAboutDialog(); + void openAboutQtDialog(); + void versionCheck(); }; #endif diff --git a/src/mumble/mumble_ar.ts b/src/mumble/mumble_ar.ts index 603e31a3707..09393b9b479 100644 --- a/src/mumble/mumble_ar.ts +++ b/src/mumble/mumble_ar.ts @@ -6419,6 +6419,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_bg.ts b/src/mumble/mumble_bg.ts index 99f08622482..711c623b64a 100644 --- a/src/mumble/mumble_bg.ts +++ b/src/mumble/mumble_bg.ts @@ -6416,6 +6416,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Прекъсване на връзка със сървъра + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_br.ts b/src/mumble/mumble_br.ts index 9d7cd45aa0e..b8c7fc19378 100644 --- a/src/mumble/mumble_br.ts +++ b/src/mumble/mumble_br.ts @@ -6415,6 +6415,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_ca.ts b/src/mumble/mumble_ca.ts index 1bbfc2fedd8..35749318286 100644 --- a/src/mumble/mumble_ca.ts +++ b/src/mumble/mumble_ca.ts @@ -6441,6 +6441,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_cs.ts b/src/mumble/mumble_cs.ts index 932bc8e08fd..27415aa1b5b 100644 --- a/src/mumble/mumble_cs.ts +++ b/src/mumble/mumble_cs.ts @@ -6475,6 +6475,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Odpojit od serveru + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_cy.ts b/src/mumble/mumble_cy.ts index 676a35704ec..d1644937eb2 100644 --- a/src/mumble/mumble_cy.ts +++ b/src/mumble/mumble_cy.ts @@ -6419,6 +6419,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_da.ts b/src/mumble/mumble_da.ts index 57505fdc6dc..52a999636dc 100644 --- a/src/mumble/mumble_da.ts +++ b/src/mumble/mumble_da.ts @@ -6471,6 +6471,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Afbryd forbindelse til server + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_de.ts b/src/mumble/mumble_de.ts index bc91e8b8e31..5bf165ca010 100644 --- a/src/mumble/mumble_de.ts +++ b/src/mumble/mumble_de.ts @@ -6562,6 +6562,193 @@ Gültige Optionen sind: Wenn das Format ungültig ist, wird Mumble einen Fehler melden. + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Verbindung zum Server trennen + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_el.ts b/src/mumble/mumble_el.ts index d05fab7150e..864cff00cd9 100644 --- a/src/mumble/mumble_el.ts +++ b/src/mumble/mumble_el.ts @@ -6569,6 +6569,193 @@ mumble://[<username>[:<password>]@]<host>[:<port>][/< Ρυθμίσεις του Mumble. + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Αποσυνδεθείτε από τον διακομιστή + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_en.ts b/src/mumble/mumble_en.ts index b23f61c4ec6..cc2ff8e706a 100644 --- a/src/mumble/mumble_en.ts +++ b/src/mumble/mumble_en.ts @@ -6414,6 +6414,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_en_GB.ts b/src/mumble/mumble_en_GB.ts index e4cb0e235ce..92227a2ef13 100644 --- a/src/mumble/mumble_en_GB.ts +++ b/src/mumble/mumble_en_GB.ts @@ -6468,6 +6468,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_eo.ts b/src/mumble/mumble_eo.ts index 16116ceb7d9..19a83426ed2 100644 --- a/src/mumble/mumble_eo.ts +++ b/src/mumble/mumble_eo.ts @@ -6427,6 +6427,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_es.ts b/src/mumble/mumble_es.ts index 2780fcd45c8..c9caf2c3909 100644 --- a/src/mumble/mumble_es.ts +++ b/src/mumble/mumble_es.ts @@ -6570,6 +6570,193 @@ Las opciones válidas son: Configuración de Mumble. + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Desconectarse del servidor + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_et.ts b/src/mumble/mumble_et.ts index 9fa671ef65d..89cc3651cb8 100644 --- a/src/mumble/mumble_et.ts +++ b/src/mumble/mumble_et.ts @@ -6416,6 +6416,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Serverist lahti ühendatud + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_eu.ts b/src/mumble/mumble_eu.ts index 3f2bd2193b7..614c14cd00d 100644 --- a/src/mumble/mumble_eu.ts +++ b/src/mumble/mumble_eu.ts @@ -6436,6 +6436,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Zerbitzaritik deskonektatu + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_fa_IR.ts b/src/mumble/mumble_fa_IR.ts index cbab5869efd..781f9ab137a 100644 --- a/src/mumble/mumble_fa_IR.ts +++ b/src/mumble/mumble_fa_IR.ts @@ -6416,6 +6416,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_fi.ts b/src/mumble/mumble_fi.ts index 5b83ab13481..49bc919fa04 100644 --- a/src/mumble/mumble_fi.ts +++ b/src/mumble/mumble_fi.ts @@ -6568,6 +6568,193 @@ Hyväksytyt valinnat ovat Mumble-asetuksiin. + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Katkaise palvelinyhteys + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_fr.ts b/src/mumble/mumble_fr.ts index ece503ce5d8..7b390c69651 100644 --- a/src/mumble/mumble_fr.ts +++ b/src/mumble/mumble_fr.ts @@ -6576,6 +6576,193 @@ Les options valides sont : manière permanente dans les réglages de Mumble. + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Déconnexion du serveur + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_gl.ts b/src/mumble/mumble_gl.ts index ea92081fec1..5fa4cc7882b 100644 --- a/src/mumble/mumble_gl.ts +++ b/src/mumble/mumble_gl.ts @@ -6417,6 +6417,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_he.ts b/src/mumble/mumble_he.ts index c0506e41206..ec475d6f6cf 100644 --- a/src/mumble/mumble_he.ts +++ b/src/mumble/mumble_he.ts @@ -6467,6 +6467,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + התנתק מהשרת + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_hi.ts b/src/mumble/mumble_hi.ts index d12a1398f29..6f0cf5572cd 100644 --- a/src/mumble/mumble_hi.ts +++ b/src/mumble/mumble_hi.ts @@ -6378,6 +6378,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_hu.ts b/src/mumble/mumble_hu.ts index e97b8a4e461..adbe8007394 100644 --- a/src/mumble/mumble_hu.ts +++ b/src/mumble/mumble_hu.ts @@ -6467,6 +6467,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Bontja a kapcsolatot a szerverrel + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_it.ts b/src/mumble/mumble_it.ts index d1001c33a6a..296e1ef30bf 100644 --- a/src/mumble/mumble_it.ts +++ b/src/mumble/mumble_it.ts @@ -6509,6 +6509,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Disconnettiti dal server + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_ja.ts b/src/mumble/mumble_ja.ts index c2cf474dc3d..6d1cb12c330 100644 --- a/src/mumble/mumble_ja.ts +++ b/src/mumble/mumble_ja.ts @@ -6465,6 +6465,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + サーバから切断 + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_ko.ts b/src/mumble/mumble_ko.ts index 208a94ccb49..cdbd247d77d 100644 --- a/src/mumble/mumble_ko.ts +++ b/src/mumble/mumble_ko.ts @@ -6508,6 +6508,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + 서버와의 연결 끊기 + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_lt.ts b/src/mumble/mumble_lt.ts index 53d89b3d429..b4d5484a8b2 100644 --- a/src/mumble/mumble_lt.ts +++ b/src/mumble/mumble_lt.ts @@ -6450,6 +6450,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Atsijungti nuo serverio + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_nl.ts b/src/mumble/mumble_nl.ts index 77e1ccfb7d0..6f9a8fe2d38 100644 --- a/src/mumble/mumble_nl.ts +++ b/src/mumble/mumble_nl.ts @@ -6509,6 +6509,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Verbreek verbinding met server + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_no.ts b/src/mumble/mumble_no.ts index 4ff0b5a007f..8489b694174 100644 --- a/src/mumble/mumble_no.ts +++ b/src/mumble/mumble_no.ts @@ -6524,6 +6524,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Koble fra tjeneren + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_oc.ts b/src/mumble/mumble_oc.ts index 55c007ea1df..7e284ad1bf5 100644 --- a/src/mumble/mumble_oc.ts +++ b/src/mumble/mumble_oc.ts @@ -6416,6 +6416,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Se desconnectar del servidor + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_pl.ts b/src/mumble/mumble_pl.ts index b41947f2b96..005cfa19669 100644 --- a/src/mumble/mumble_pl.ts +++ b/src/mumble/mumble_pl.ts @@ -6570,6 +6570,193 @@ Prawidłowe opcje to: ustawieniach Mumble. + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Rozłącz od serwera + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_pt_BR.ts b/src/mumble/mumble_pt_BR.ts index b026939ee74..406855ec54b 100644 --- a/src/mumble/mumble_pt_BR.ts +++ b/src/mumble/mumble_pt_BR.ts @@ -6510,6 +6510,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Desconectar-se do servidor + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_pt_PT.ts b/src/mumble/mumble_pt_PT.ts index fb2258df578..c3a6eda5fb8 100644 --- a/src/mumble/mumble_pt_PT.ts +++ b/src/mumble/mumble_pt_PT.ts @@ -6487,6 +6487,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Desligar-se do servidor + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_ro.ts b/src/mumble/mumble_ro.ts index 4936c648f2b..1ea710a7b45 100644 --- a/src/mumble/mumble_ro.ts +++ b/src/mumble/mumble_ro.ts @@ -6424,6 +6424,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_ru.ts b/src/mumble/mumble_ru.ts index dcb15315871..44e52ac444d 100644 --- a/src/mumble/mumble_ru.ts +++ b/src/mumble/mumble_ru.ts @@ -6510,6 +6510,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Отключиться от сервера + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_si.ts b/src/mumble/mumble_si.ts index 2cae698d8e0..d832be80e1d 100644 --- a/src/mumble/mumble_si.ts +++ b/src/mumble/mumble_si.ts @@ -6378,6 +6378,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_sk.ts b/src/mumble/mumble_sk.ts index 6f1968bb5a4..c501f7a1585 100644 --- a/src/mumble/mumble_sk.ts +++ b/src/mumble/mumble_sk.ts @@ -6382,6 +6382,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_sq.ts b/src/mumble/mumble_sq.ts index 00d9d9355c5..0c7be050839 100644 --- a/src/mumble/mumble_sq.ts +++ b/src/mumble/mumble_sq.ts @@ -6380,6 +6380,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_sv.ts b/src/mumble/mumble_sv.ts index bce29cac9b6..70f66a627f8 100644 --- a/src/mumble/mumble_sv.ts +++ b/src/mumble/mumble_sv.ts @@ -6568,6 +6568,193 @@ Giltiga värden för options är: Mumbles inställningar. + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Frånkopplad från servern + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_te.ts b/src/mumble/mumble_te.ts index ed20d031742..17b457c2fa2 100644 --- a/src/mumble/mumble_te.ts +++ b/src/mumble/mumble_te.ts @@ -6427,6 +6427,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_th.ts b/src/mumble/mumble_th.ts index 74ffb4f9f7e..85f4d753ab3 100644 --- a/src/mumble/mumble_th.ts +++ b/src/mumble/mumble_th.ts @@ -6414,6 +6414,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_tr.ts b/src/mumble/mumble_tr.ts index 0aec7584728..8853aefaa37 100644 --- a/src/mumble/mumble_tr.ts +++ b/src/mumble/mumble_tr.ts @@ -6570,6 +6570,193 @@ Geçerli seçenekler şunlardır: kaydedilecektir. + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + Sunucuyla bağlantıyı kes + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_uk.ts b/src/mumble/mumble_uk.ts index fbb8fef0334..c8b455964ed 100644 --- a/src/mumble/mumble_uk.ts +++ b/src/mumble/mumble_uk.ts @@ -6424,6 +6424,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_zh_CN.ts b/src/mumble/mumble_zh_CN.ts index ffa82cc112f..a7fe114aa32 100644 --- a/src/mumble/mumble_zh_CN.ts +++ b/src/mumble/mumble_zh_CN.ts @@ -6568,6 +6568,193 @@ mumble://[<用户名>[:<密码>]@]<主机名>[:<端口>] 永久保存到 Mumble 设置中。 + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + 从服务器断开连接 + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_zh_HK.ts b/src/mumble/mumble_zh_HK.ts index c4caa8f9aef..13f982c2007 100644 --- a/src/mumble/mumble_zh_HK.ts +++ b/src/mumble/mumble_zh_HK.ts @@ -6419,6 +6419,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + 伺服器斷開連線 + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual diff --git a/src/mumble/mumble_zh_TW.ts b/src/mumble/mumble_zh_TW.ts index 3c47fe24719..077c40c4393 100644 --- a/src/mumble/mumble_zh_TW.ts +++ b/src/mumble/mumble_zh_TW.ts @@ -6442,6 +6442,193 @@ Valid options are: + + Connect to a server + Global Shortcut + + + + This will open the server connection dialog + Global Shortcut + + + + Disconnect from server + Global Shortcut + 從伺服器斷開連線 + + + This will disconnect you from the server + Global Shortcut + + + + Open server information + Global Shortcut + + + + This will show information about the server connection + Global Shortcut + + + + Open server tokens + Global Shortcut + + + + This will open the server tokens dialog + Global Shortcut + + + + Open server user list + Global Shortcut + + + + This will open the server user list dialog + Global Shortcut + + + + Open server ban list + Global Shortcut + + + + This will open the server ban list dialog + Global Shortcut + + + + Toggle priority speaker + Global Shortcut + + + + This will enable/disable the priority speaker + Global Shortcut + + + + Open recording dialog + Global Shortcut + + + + This will open the recording dialog + + + + Change comment + Global Shortcut + + + + This will open the change comment dialog + + + + Change avatar + Global Shortcut + + + + This will open your file explorer to change your avatar image on this server + + + + Remove avatar + Global Shortcut + + + + This will reset your avatar on the server + + + + Register on the server + Global Shortcut + + + + This will register you on the server + + + + Audio statistics + Global Shortcut + + + + This will open the audio statistics dialog + + + + Open settings + Global Shortcut + + + + This will open the settings dialog + + + + Start audio wizard + Global Shortcut + + + + This will open the audio wizard dialog + + + + Start certificate wizard + Global Shortcut + + + + This will open the certificate wizard dialog + + + + Toggle text to speech + Global Shortcut + + + + This will enable/disable the text to speech + + + + Open about dialog + Global Shortcut + + + + This will open the about dialog + + + + Open about Qt dialog + Global Shortcut + + + + This will open the about Qt dialog + + + + Check for update + Global Shortcut + + + + This will check if mumble is up to date + + Manual