From fa471b69a9c0fda4b2ffbbe6217c07411d44d983 Mon Sep 17 00:00:00 2001 From: Merkaber Date: Wed, 31 Aug 2022 14:43:41 +0200 Subject: BUILD(client): migrateSettings now takes reference In order for migrateSettings to do what it is supposed to do, it must takes its argument by reference and not by value. --- src/mumble/JSONSerialization.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mumble/JSONSerialization.cpp b/src/mumble/JSONSerialization.cpp index 55931f384..8729e440e 100644 --- a/src/mumble/JSONSerialization.cpp +++ b/src/mumble/JSONSerialization.cpp @@ -149,7 +149,7 @@ void to_json(nlohmann::json &j, const Settings &settings) { j[SettingsKeys::MUMBLE_QUIT_NORMALLY_KEY] = settings.mumbleQuitNormally; } -void migrateSettings(nlohmann::json json, int settingsVersion) { +void migrateSettings(nlohmann::json &json, int settingsVersion) { // Perform conversions required to transform the given JSON into the format applicable to be read out by the most // recent standards -- cgit v1.2.3 From 4c4dfa7dfa60f7e85e7d580c55d2c12bb722449f Mon Sep 17 00:00:00 2001 From: Merkaber Date: Sat, 13 Aug 2022 11:49:49 +0200 Subject: FEAT(client, ui): Extended quit behavior setting This commit extends the quit behavior setting from being a binary toggle between ask or don't ask, when quitting while connected to a server, to give the user the options for Mumble to ask, minimize or quit straight away, either always or only while connected to a server. Fixes #5282 --- src/mumble/CMakeLists.txt | 1 + src/mumble/EnumStringConversions.cpp | 11 +++++ src/mumble/EnumStringConversions.h | 2 + src/mumble/JSONSerialization.cpp | 11 ++++- src/mumble/LookConfig.cpp | 6 ++- src/mumble/LookConfig.ui | 43 ++++++++++++++++---- src/mumble/MainWindow.cpp | 47 +++++++++++++++++----- src/mumble/MainWindow.h | 2 +- src/mumble/MumbleApplication.cpp | 2 +- src/mumble/QuitBehavior.h | 18 +++++++++ src/mumble/Settings.cpp | 10 ++++- src/mumble/Settings.h | 3 +- src/mumble/SettingsKeys.h | 2 +- src/mumble/SettingsMacros.h | 2 +- src/mumble/VersionCheck.cpp | 2 +- .../generate_test_case.py | 2 + 16 files changed, 137 insertions(+), 27 deletions(-) create mode 100644 src/mumble/QuitBehavior.h diff --git a/src/mumble/CMakeLists.txt b/src/mumble/CMakeLists.txt index 5ee9783bd..b1ae27fba 100644 --- a/src/mumble/CMakeLists.txt +++ b/src/mumble/CMakeLists.txt @@ -138,6 +138,7 @@ set(MUMBLE_SOURCES "ConnectDialogEdit.ui" "ConnectDialog.h" "ConnectDialog.ui" + "QuitBehavior.h" "CustomElements.cpp" "CustomElements.h" "Database.cpp" diff --git a/src/mumble/EnumStringConversions.cpp b/src/mumble/EnumStringConversions.cpp index b36b1187b..a3c8e26e0 100644 --- a/src/mumble/EnumStringConversions.cpp +++ b/src/mumble/EnumStringConversions.cpp @@ -69,6 +69,13 @@ PROCESS(Settings::AlwaysOnTopBehaviour, OnTopInMinimal, "InMinimal") \ PROCESS(Settings::AlwaysOnTopBehaviour, OnTopInNormal, "InNormal") +#define QUIT_VALUES \ + PROCESS(QuitBehavior, ALWAYS_ASK, "AlwaysAsk") \ + PROCESS(QuitBehavior, ASK_WHEN_CONNECTED, "AskWhenConnected") \ + PROCESS(QuitBehavior, ALWAYS_MINIMIZE, "AlwaysMinimize") \ + PROCESS(QuitBehavior, MINIMIZE_WHEN_CONNECTED, "MinimizeWhenConnected") \ + PROCESS(QuitBehavior, ALWAYS_QUIT, "AlwaysQuit") + #define WINDOW_LAYOUT_VALUES \ PROCESS(Settings::WindowLayout, LayoutClassic, "Classic") \ PROCESS(Settings::WindowLayout, LayoutStacked, "Stacked") \ @@ -178,6 +185,9 @@ BEFORE_CODE(Settings::AlwaysOnTopBehaviour) \ ALWAYS_ON_TOP_VALUES \ AFTER_CODE \ + BEFORE_CODE(QuitBehavior) \ + QUIT_VALUES \ + AFTER_CODE \ BEFORE_CODE(Settings::WindowLayout) \ WINDOW_LAYOUT_VALUES \ AFTER_CODE \ @@ -253,6 +263,7 @@ PROCESS_ALL_ENUMS #undef RECORDING_MODE_VALUES #undef WINDOW_LAYOUT_VALUES #undef ALWAYS_ON_TOP_VALUES +#undef QUIT_VALUES #undef PROXY_TYPE_VALUES #undef ECHO_CANCEL_VALUES #undef NOISE_CANCEL_VALUES diff --git a/src/mumble/EnumStringConversions.h b/src/mumble/EnumStringConversions.h index c42a1d6c3..1431127dd 100644 --- a/src/mumble/EnumStringConversions.h +++ b/src/mumble/EnumStringConversions.h @@ -26,6 +26,7 @@ const char *enumToString(Settings::NoiseCancel e); const char *enumToString(EchoCancelOptionID e); const char *enumToString(Settings::ProxyType e); const char *enumToString(Settings::AlwaysOnTopBehaviour e); +const char *enumToString(QuitBehavior e); const char *enumToString(Settings::WindowLayout e); const char *enumToString(Settings::RecordingMode e); const char *enumToString(Search::SearchDialog::UserAction e); @@ -50,6 +51,7 @@ void stringToEnum(const std::string &str, Settings::NoiseCancel &e); void stringToEnum(const std::string &str, EchoCancelOptionID &e); void stringToEnum(const std::string &str, Settings::ProxyType &e); void stringToEnum(const std::string &str, Settings::AlwaysOnTopBehaviour &e); +void stringToEnum(const std::string &str, QuitBehavior &e); void stringToEnum(const std::string &str, Settings::WindowLayout &e); void stringToEnum(const std::string &str, Settings::RecordingMode &e); void stringToEnum(const std::string &str, Search::SearchDialog::UserAction &e); diff --git a/src/mumble/JSONSerialization.cpp b/src/mumble/JSONSerialization.cpp index 8729e440e..cd24c483f 100644 --- a/src/mumble/JSONSerialization.cpp +++ b/src/mumble/JSONSerialization.cpp @@ -153,7 +153,16 @@ void migrateSettings(nlohmann::json &json, int settingsVersion) { // Perform conversions required to transform the given JSON into the format applicable to be read out by the most // recent standards - (void) json; + // Check if the old ask_on_quit key exists and the new one does not exist within the json file + if (json.contains("ask_on_quit") + && (!json.contains(static_cast< const char * >(SettingsKeys::QUIT_BEHAVIOR_KEY)))) { + if (!json.at("ask_on_quit").get< bool >()) { + json[SettingsKeys::QUIT_BEHAVIOR_KEY] = QuitBehavior::ALWAYS_QUIT; + } else { + json[SettingsKeys::QUIT_BEHAVIOR_KEY] = QuitBehavior::ALWAYS_ASK; + } + } + (void) settingsVersion; } diff --git a/src/mumble/LookConfig.cpp b/src/mumble/LookConfig.cpp index 2d67e3e35..4fc9e7c3b 100644 --- a/src/mumble/LookConfig.cpp +++ b/src/mumble/LookConfig.cpp @@ -186,7 +186,9 @@ void LookConfig::load(const Settings &r) { loadComboBox(qcbChannelDrag, r.ceChannelDrag); loadComboBox(qcbUserDrag, r.ceUserDrag); loadCheckBox(qcbUsersTop, r.bUserTop); - loadCheckBox(qcbAskOnQuit, r.bAskOnQuit); + + loadComboBox(qcbQuitBehavior, static_cast< int >(r.quitBehavior)); + loadCheckBox(qcbEnableDeveloperMenu, r.bEnableDeveloperMenu); loadCheckBox(qcbLockLayout, (r.wlWindowLayout == Settings::LayoutCustom) && r.bLockLayout); loadCheckBox(qcbHideTray, r.bHideInTray); @@ -253,7 +255,7 @@ void LookConfig::save() const { } s.aotbAlwaysOnTop = static_cast< Settings::AlwaysOnTopBehaviour >(qcbAlwaysOnTop->currentIndex()); - s.bAskOnQuit = qcbAskOnQuit->isChecked(); + s.quitBehavior = static_cast< QuitBehavior >(qcbQuitBehavior->currentIndex()); s.bEnableDeveloperMenu = qcbEnableDeveloperMenu->isChecked(); s.bLockLayout = qcbLockLayout->isChecked(); s.bHideInTray = qcbHideTray->isChecked(); diff --git a/src/mumble/LookConfig.ui b/src/mumble/LookConfig.ui index 1be0b578e..1e6e52fed 100644 --- a/src/mumble/LookConfig.ui +++ b/src/mumble/LookConfig.ui @@ -447,17 +447,46 @@ - - + + + + Quit Behavior + + + + + - Ask whether to close or minimize when quitting Mumble. + This setting controls the behavior of clicking on the X in the top right corner. - <b>If set, will verify you want to quit if connected.</b> - - - Ask on quit while connected + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + Always Ask + + + + + Ask when connected + + + + + Always Minimize + + + + + Minimize when connected + + + + + Always Quit + + diff --git a/src/mumble/MainWindow.cpp b/src/mumble/MainWindow.cpp index e15662945..fcdc0f9f0 100644 --- a/src/mumble/MainWindow.cpp +++ b/src/mumble/MainWindow.cpp @@ -128,9 +128,9 @@ MainWindow::MainWindow(QWidget *p) : QMainWindow(p) { #ifdef Q_OS_WIN uiNewHardware = 1; #endif - bSuppressAskOnQuit = false; - restartOnQuit = false; - bAutoUnmute = false; + forceQuit = false; + restartOnQuit = false; + bAutoUnmute = false; Channel::add(Channel::ROOT_ID, tr("Root")); @@ -504,29 +504,56 @@ bool MainWindow::nativeEvent(const QByteArray &, void *message, long *) { #endif void MainWindow::closeEvent(QCloseEvent *e) { + ServerHandlerPtr sh = Global::get().sh; + QuitBehavior quitBehavior = Global::get().s.quitBehavior; + const bool alwaysAsk = quitBehavior == QuitBehavior::ALWAYS_ASK; + const bool askDueToConnected = sh && sh->isRunning() && quitBehavior == QuitBehavior::ASK_WHEN_CONNECTED; + const bool alwaysMinimize = quitBehavior == QuitBehavior::ALWAYS_MINIMIZE; + const bool minimizeDueToConnected = sh && sh->isRunning() && quitBehavior == QuitBehavior::MINIMIZE_WHEN_CONNECTED; + + if (!forceQuit && (alwaysAsk || askDueToConnected)) { #ifndef Q_OS_MAC - ServerHandlerPtr sh = Global::get().sh; - if (sh && sh->isRunning() && Global::get().s.bAskOnQuit && !bSuppressAskOnQuit) { QMessageBox mb(QMessageBox::Warning, QLatin1String("Mumble"), - tr("Mumble is currently connected to a server. Do you want to Close or Minimize it?"), + tr("Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead?"), QMessageBox::NoButton, this); + QCheckBox *qcbRemember = new QCheckBox(tr("Remember this setting")); QPushButton *qpbClose = mb.addButton(tr("Close"), QMessageBox::YesRole); QPushButton *qpbMinimize = mb.addButton(tr("Minimize"), QMessageBox::NoRole); QPushButton *qpbCancel = mb.addButton(tr("Cancel"), QMessageBox::RejectRole); mb.setDefaultButton(qpbClose); mb.setEscapeButton(qpbCancel); + mb.setCheckBox(qcbRemember); mb.exec(); if (mb.clickedButton() == qpbMinimize) { showMinimized(); e->ignore(); + + // If checkbox is checked and not connected, always minimize + // If checkbox is checked and connected, always minimize when connected + if (qcbRemember->isChecked() && !(sh && sh->isRunning())) { + Global::get().s.quitBehavior = QuitBehavior::ALWAYS_MINIMIZE; + } else if (qcbRemember->isChecked()) { + Global::get().s.quitBehavior = QuitBehavior::MINIMIZE_WHEN_CONNECTED; + } + return; } else if (mb.clickedButton() == qpbCancel) { e->ignore(); return; } + + // If checkbox is checked, quit always + if (qcbRemember->isChecked()) { + Global::get().s.quitBehavior = QuitBehavior::ALWAYS_QUIT; + } +#endif + } else if (!forceQuit && (alwaysMinimize || minimizeDueToConnected)) { + showMinimized(); + e->ignore(); + return; } + sh.reset(); -#endif if (Global::get().s.bMinimalView) { Global::get().s.qbaMinimalViewGeometry = saveGeometry(); @@ -2066,7 +2093,7 @@ void MainWindow::on_qaHide_triggered() { } void MainWindow::on_qaQuit_triggered() { - bSuppressAskOnQuit = true; + forceQuit = true; this->close(); } @@ -2703,8 +2730,8 @@ void MainWindow::on_qaConfigDialog_triggered() { tr("Some settings will only apply after a restart of Mumble. Restart Mumble now?"), QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) { - bSuppressAskOnQuit = true; - restartOnQuit = true; + forceQuit = true; + restartOnQuit = true; close(); } diff --git a/src/mumble/MainWindow.h b/src/mumble/MainWindow.h index 433c09fc6..e8ad769aa 100644 --- a/src/mumble/MainWindow.h +++ b/src/mumble/MainWindow.h @@ -109,7 +109,7 @@ public: bool bRetryServer; QString qsDesiredChannel; - bool bSuppressAskOnQuit; + bool forceQuit; /// Restart the client after shutdown bool restartOnQuit; bool bAutoUnmute; diff --git a/src/mumble/MumbleApplication.cpp b/src/mumble/MumbleApplication.cpp index 60b5958d1..f577d7572 100644 --- a/src/mumble/MumbleApplication.cpp +++ b/src/mumble/MumbleApplication.cpp @@ -38,7 +38,7 @@ void MumbleApplication::onCommitDataRequest(QSessionManager &) { if (Global::get().mw) { Global::get().s.mumbleQuitNormally = true; Global::get().s.save(); - Global::get().mw->bSuppressAskOnQuit = true; + Global::get().mw->forceQuit = true; qWarning() << "Session likely ending. Suppressing ask on quit"; } } diff --git a/src/mumble/QuitBehavior.h b/src/mumble/QuitBehavior.h new file mode 100644 index 000000000..d1bacb9f1 --- /dev/null +++ b/src/mumble/QuitBehavior.h @@ -0,0 +1,18 @@ +// Copyright 2022 The Mumble Developers. All rights reserved. +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file at the root of the +// Mumble source tree or at . + +#ifndef MUMBLE_QUITBEHAVIOR_H +#define MUMBLE_QUITBEHAVIOR_H + +/// This enum lists a series of quit options +enum class QuitBehavior { + ALWAYS_ASK = 0, + ASK_WHEN_CONNECTED = 1, + ALWAYS_MINIMIZE = 2, + MINIMIZE_WHEN_CONNECTED = 3, + ALWAYS_QUIT = 4 +}; + +#endif // MUMBLE_QUITBEHAVIOR_H diff --git a/src/mumble/Settings.cpp b/src/mumble/Settings.cpp index 09b5aff75..d823d202e 100644 --- a/src/mumble/Settings.cpp +++ b/src/mumble/Settings.cpp @@ -928,7 +928,6 @@ void Settings::legacyLoad(const QString &path) { LOADENUM(ceChannelDrag, "ui/drag"); LOADENUM(ceUserDrag, "ui/userdrag"); LOADENUM(aotbAlwaysOnTop, "ui/alwaysontop"); - LOAD(bAskOnQuit, "ui/askonquit"); LOAD(bEnableDeveloperMenu, "ui/developermenu"); LOAD(bLockLayout, "ui/locklayout"); LOAD(bMinimalView, "ui/minimalview"); @@ -969,6 +968,15 @@ void Settings::legacyLoad(const QString &path) { LOAD(iChatMessageMargins, "ui/ChatMessageMargins"); LOAD(bDisablePublicList, "ui/disablepubliclist"); + if (settings_ptr->contains("ui/askonquit")) { + // Compatibility layer for overtaking the old (now deprecated) settings + // This block should only be called once at the first start of the new Mumble version + bool deprecatedAskOnQuit = true; + LOAD(deprecatedAskOnQuit, "ui/askonquit"); + + quitBehavior = deprecatedAskOnQuit ? QuitBehavior::ALWAYS_ASK : QuitBehavior::ALWAYS_QUIT; + } + // TalkingUI LOAD(qpTalkingUI_Position, "ui/talkingUIPosition"); LOAD(bShowTalkingUI, "ui/showTalkingUI"); diff --git a/src/mumble/Settings.h b/src/mumble/Settings.h index 6d37b77fb..0446c780d 100644 --- a/src/mumble/Settings.h +++ b/src/mumble/Settings.h @@ -24,6 +24,7 @@ #include #include "EchoCancelOption.h" +#include "QuitBehavior.h" #include "SSL.h" #include "SearchDialog.h" @@ -392,7 +393,7 @@ struct Settings { bool bMinimalView = false; bool bHideFrame = false; AlwaysOnTopBehaviour aotbAlwaysOnTop = OnTopNever; - bool bAskOnQuit = true; + QuitBehavior quitBehavior = QuitBehavior::ALWAYS_ASK; bool bEnableDeveloperMenu = false; bool bLockLayout = false; bool bHideInTray = false; diff --git a/src/mumble/SettingsKeys.h b/src/mumble/SettingsKeys.h index 990307b43..b2d4ba69f 100644 --- a/src/mumble/SettingsKeys.h +++ b/src/mumble/SettingsKeys.h @@ -169,7 +169,7 @@ const SettingsKey CHANNEL_EXPANSION_MODE_KEY = { "channel_expansion_mo const SettingsKey CHANNEL_DRAG_MODE_KEY = { "channel_drag_mode" }; const SettingsKey USER_DRAG_MODE_KEY = { "user_drag_mode" }; const SettingsKey ALWAYS_ON_TOP_KEY = { "always_on_top" }; -const SettingsKey ASK_ON_QUIT_KEY = { "ask_on_quit" }; +const SettingsKey QUIT_BEHAVIOR_KEY = { "quit_behavior" }; const SettingsKey SHOW_DEVELOPER_MENU_KEY = { "show_developer_menu" }; const SettingsKey LOCK_LAYOUT_KEY = { "lock_layout" }; const SettingsKey MINIMAL_VIEW_KEY = { "minimal_view" }; diff --git a/src/mumble/SettingsMacros.h b/src/mumble/SettingsMacros.h index 87e48618b..e3be8e9e4 100644 --- a/src/mumble/SettingsMacros.h +++ b/src/mumble/SettingsMacros.h @@ -143,7 +143,7 @@ PROCESS(ui, CHANNEL_DRAG_MODE_KEY, ceChannelDrag) \ PROCESS(ui, USER_DRAG_MODE_KEY, ceUserDrag) \ PROCESS(ui, ALWAYS_ON_TOP_KEY, aotbAlwaysOnTop) \ - PROCESS(ui, ASK_ON_QUIT_KEY, bAskOnQuit) \ + PROCESS(ui, QUIT_BEHAVIOR_KEY, quitBehavior) \ PROCESS(ui, SHOW_DEVELOPER_MENU_KEY, bEnableDeveloperMenu) \ PROCESS(ui, LOCK_LAYOUT_KEY, bLockLayout) \ PROCESS(ui, MINIMAL_VIEW_KEY, bMinimalView) \ diff --git a/src/mumble/VersionCheck.cpp b/src/mumble/VersionCheck.cpp index e6745c80b..c183192ca 100644 --- a/src/mumble/VersionCheck.cpp +++ b/src/mumble/VersionCheck.cpp @@ -150,7 +150,7 @@ void VersionCheck::fetched(QByteArray a, QUrl url) { execinfo.nShow = SW_NORMAL; if (ShellExecuteExW(&execinfo)) { - Global::get().mw->bSuppressAskOnQuit = true; + Global::get().mw->forceQuit = true; qApp->closeAllWindows(); } else { Global::get().mw->msgBox(tr("Failed to launch snapshot installer.")); diff --git a/src/tests/TestSettingsJSONSerialization/generate_test_case.py b/src/tests/TestSettingsJSONSerialization/generate_test_case.py index 57e37c4a6..5ae436790 100755 --- a/src/tests/TestSettingsJSONSerialization/generate_test_case.py +++ b/src/tests/TestSettingsJSONSerialization/generate_test_case.py @@ -136,6 +136,8 @@ def getDefaultValueForType(dataType): return "Settings::NoiseCancelBoth" elif dataType in ["EchoCancelOptionID"]: return "EchoCancelOptionID::SPEEX_MULTICHANNEL" + elif dataType in ["QuitBehavior"]: + return "QuitBehavior::ALWAYS_QUIT" elif dataType in ["OverlayShow"]: return "OverlaySettings::HomeChannel" elif dataType in ["OverlayShow"]: -- cgit v1.2.3 From a1769a670715849698ca7a959ca633349c255d19 Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Fri, 16 Sep 2022 15:14:18 +0200 Subject: TRANSLATION: Update translation files --- src/mumble/mumble_ar.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_bg.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_br.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_ca.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_cs.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_cy.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_da.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_de.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_el.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_en.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_en_GB.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_eo.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_es.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_et.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_eu.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_fa_IR.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_fi.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_fr.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_gl.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_he.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_hu.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_it.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_ja.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_ko.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_lt.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_nl.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_no.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_oc.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_pl.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_pt_BR.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_pt_PT.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_ro.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_ru.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_si.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_sk.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_sq.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_sv.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_te.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_th.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_tr.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_uk.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_zh_CN.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_zh_HK.ts | 56 +++++++++++++++++++++++++++++++++------------- src/mumble/mumble_zh_TW.ts | 56 +++++++++++++++++++++++++++++++++------------- 44 files changed, 1760 insertions(+), 704 deletions(-) diff --git a/src/mumble/mumble_ar.ts b/src/mumble/mumble_ar.ts index 026b68280..7c74f33ec 100644 --- a/src/mumble/mumble_ar.ts +++ b/src/mumble/mumble_ar.ts @@ -4146,10 +4146,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel عرض عدد المستخدمين في كل قناة @@ -4215,14 +4211,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top @@ -4527,6 +4515,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4618,10 +4638,6 @@ The setting only applies for new messages, the already shown ones will retain th Close - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6380,6 +6396,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_bg.ts b/src/mumble/mumble_bg.ts index bf129337f..37384873e 100644 --- a/src/mumble/mumble_bg.ts +++ b/src/mumble/mumble_bg.ts @@ -4143,10 +4143,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4212,14 +4208,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top @@ -4524,6 +4512,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4615,10 +4635,6 @@ The setting only applies for new messages, the already shown ones will retain th Close Затваряне - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6377,6 +6393,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_br.ts b/src/mumble/mumble_br.ts index e19221fd7..33ef9145b 100644 --- a/src/mumble/mumble_br.ts +++ b/src/mumble/mumble_br.ts @@ -4142,10 +4142,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4211,14 +4207,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top @@ -4523,6 +4511,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4614,10 +4634,6 @@ The setting only applies for new messages, the already shown ones will retain th Close - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6376,6 +6392,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_ca.ts b/src/mumble/mumble_ca.ts index 9c77972f9..7b441e6a1 100644 --- a/src/mumble/mumble_ca.ts +++ b/src/mumble/mumble_ca.ts @@ -4168,10 +4168,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4237,14 +4233,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top @@ -4549,6 +4537,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4640,10 +4660,6 @@ The setting only applies for new messages, the already shown ones will retain th Close - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6402,6 +6418,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_cs.ts b/src/mumble/mumble_cs.ts index d702ab246..6e780ae96 100644 --- a/src/mumble/mumble_cs.ts +++ b/src/mumble/mumble_cs.ts @@ -4197,10 +4197,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels Uživatelé nad Kanály - - <b>If set, will verify you want to quit if connected.</b> - <b>Je-li nastaveno, potvrdí, zda chcete odejít, pokud jste připojeni.</b> - Show number of users in each channel Zobrazí počet uživatelů v každém kanále @@ -4266,14 +4262,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging Táhnutí Kanálů - - Ask whether to close or minimize when quitting Mumble. - Zeptat se, jestli zavřít či minimalizovat při ukončení Mumble. - - - Ask on quit while connected - Zeptat se na ukončení, je-li připojeno - Always On Top Vždy Nahoře @@ -4578,6 +4566,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4669,10 +4689,6 @@ The setting only applies for new messages, the already shown ones will retain th Close Zavřít - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble je nyní připojen k serveru. Opravdu ho chcete Zavřit nebo Minimalizovat? - Mute Self Global Shortcut @@ -6436,6 +6452,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_cy.ts b/src/mumble/mumble_cy.ts index 92efe457d..2c67050ed 100644 --- a/src/mumble/mumble_cy.ts +++ b/src/mumble/mumble_cy.ts @@ -4146,10 +4146,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4215,14 +4211,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top @@ -4527,6 +4515,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4618,10 +4638,6 @@ The setting only applies for new messages, the already shown ones will retain th Close - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6380,6 +6396,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_da.ts b/src/mumble/mumble_da.ts index c29702a09..1b24e81d0 100644 --- a/src/mumble/mumble_da.ts +++ b/src/mumble/mumble_da.ts @@ -4195,10 +4195,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels Brugere over underkanaler - - <b>If set, will verify you want to quit if connected.</b> - <b>Hvis denne er markeret, vil du skulle bekræfte, at du vil afslutte, hvis du har oprettet forbindelse.</b> - Show number of users in each channel Vis antallet af brugere i hver kanal @@ -4264,14 +4260,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging Flytning af kanaler - - Ask whether to close or minimize when quitting Mumble. - Spørg om du vil lukke eller minimere, når du afslutter Mumble. - - - Ask on quit while connected - Spørg før afslutning (hvis forbindelse er oprettet) - Always On Top Altid øverst @@ -4576,6 +4564,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4667,10 +4687,6 @@ The setting only applies for new messages, the already shown ones will retain th Close Luk - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble har i øjeblikket forbindelse til en server. Vil du lukke eller minimere det? - Mute Self Global Shortcut @@ -6432,6 +6448,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_de.ts b/src/mumble/mumble_de.ts index f3218d7ef..3d65c5402 100644 --- a/src/mumble/mumble_de.ts +++ b/src/mumble/mumble_de.ts @@ -4204,10 +4204,6 @@ Die Einstellung gilt nur für neue Nachrichten, die bereits angezeigten behalten Users above Channels Benutzer über Kanälen - - <b>If set, will verify you want to quit if connected.</b> - <b>Wenn aktiviert, kommt beim Beenden eine Abfrage.</b> - Show number of users in each channel Zeige die Anzahl der Benutzer in jedem Kanal @@ -4273,14 +4269,6 @@ Die Einstellung gilt nur für neue Nachrichten, die bereits angezeigten behalten Channel Dragging Kanal ziehen - - Ask whether to close or minimize when quitting Mumble. - Fragen, ob das Mumblefenster geschlossen oder minimiert werden soll, wenn Mumble beendet wird. - - - Ask on quit while connected - Frage beim Beenden mit aktiver Verbindung nach - Always On Top Immer oben @@ -4585,6 +4573,38 @@ Die Einstellung gilt nur für neue Nachrichten, die bereits angezeigten behalten Action (Channel): Aktion (Kanal): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4676,10 +4696,6 @@ Die Einstellung gilt nur für neue Nachrichten, die bereits angezeigten behalten Close Schließen - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble ist gerade zu einem Server verbunden. Möchten Sie es schließen oder minimieren? - Mute Self Global Shortcut @@ -6523,6 +6539,14 @@ Gültige Optionen sind: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_el.ts b/src/mumble/mumble_el.ts index 878337c60..373a9c59b 100644 --- a/src/mumble/mumble_el.ts +++ b/src/mumble/mumble_el.ts @@ -4204,10 +4204,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels Χρήστες πάνω από τα κανάλια - - <b>If set, will verify you want to quit if connected.</b> - <b>Εάν επιλεχθεί, θα επαληθεύει ότι θέλετε να τερματίσετε τη σύνδεση, εάν είστε συνδεδεμένοι.</b> - Show number of users in each channel Εμφάνιση αριθμού χρηστών σε κάθε κανάλι @@ -4273,14 +4269,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging Σύρσιμο καναλιών - - Ask whether to close or minimize when quitting Mumble. - Να ρωτάστε το εαν θα κλείσει ή θα ελαχιστοποιηθεί το Mumble κατά τον τερματισμό. - - - Ask on quit while connected - Να ρωτάστε κατά τον τερματισμό όταν είστε συνδεδεμένοι - Always On Top Πάντα Στην Κορυφή @@ -4585,6 +4573,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): Ενέργεια (Κανάλι): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4676,10 +4696,6 @@ The setting only applies for new messages, the already shown ones will retain th Close Κλείσιμο - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Το Mumble είναι συνδεδεμένο αυτήν τη στιγμή με έναν διακομιστή. Θέλετε να το Κλείσετε ή να το Ελαχιστοποιήσετε; - Mute Self Global Shortcut @@ -6470,6 +6486,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_en.ts b/src/mumble/mumble_en.ts index 403224f66..e338776be 100644 --- a/src/mumble/mumble_en.ts +++ b/src/mumble/mumble_en.ts @@ -4141,10 +4141,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4210,14 +4206,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top @@ -4522,6 +4510,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4613,10 +4633,6 @@ The setting only applies for new messages, the already shown ones will retain th Close - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6375,6 +6391,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_en_GB.ts b/src/mumble/mumble_en_GB.ts index 99a897e09..060ce7a5f 100644 --- a/src/mumble/mumble_en_GB.ts +++ b/src/mumble/mumble_en_GB.ts @@ -4178,10 +4178,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4247,14 +4243,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - Ask whether to close or minimise when quitting Mumble. - - - Ask on quit while connected - - Always On Top @@ -4559,6 +4547,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4650,10 +4670,6 @@ The setting only applies for new messages, the already shown ones will retain th Close - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble is currently connected to a server. Do you want to Close or Minimise it? - Mute Self Global Shortcut @@ -6412,6 +6428,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_eo.ts b/src/mumble/mumble_eo.ts index 67587f320..b1af7d863 100644 --- a/src/mumble/mumble_eo.ts +++ b/src/mumble/mumble_eo.ts @@ -4153,10 +4153,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels Uzantoj supre de la Kanaloj - - <b>If set, will verify you want to quit if connected.</b> - <b>Agordite, kontrolos ke vi volas ĉesi, se vi estos konektita.</b> - Show number of users in each channel Montri nombron da uzantoj en ĉiu kanalo @@ -4222,14 +4218,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top @@ -4534,6 +4522,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4625,10 +4645,6 @@ The setting only applies for new messages, the already shown ones will retain th Close Fermi - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6388,6 +6404,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_es.ts b/src/mumble/mumble_es.ts index feefeb78a..7b69aa15a 100644 --- a/src/mumble/mumble_es.ts +++ b/src/mumble/mumble_es.ts @@ -4205,10 +4205,6 @@ La configuración solo se aplica a los mensajes nuevos, los que ya se muestran c Users above Channels Usuarios encima de los canales - - <b>If set, will verify you want to quit if connected.</b> - <b>Si se marca, le pedirá confirmar que desea salir si está conectado.<b> - Show number of users in each channel Muestra el número de usuarios en cada canal @@ -4274,14 +4270,6 @@ La configuración solo se aplica a los mensajes nuevos, los que ya se muestran c Channel Dragging Arrastre de canales - - Ask whether to close or minimize when quitting Mumble. - Preguntar si cerrar o minimizar al salir de Mumble. - - - Ask on quit while connected - Preguntar al salir mientras esté conectado - Always On Top Siempre visible @@ -4586,6 +4574,38 @@ La configuración solo se aplica a los mensajes nuevos, los que ya se muestran c Action (Channel): Acción (Canal): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4677,10 +4697,6 @@ La configuración solo se aplica a los mensajes nuevos, los que ya se muestran c Close Cerrar - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble está conectado a un servidor actualmente. ¿Desea cerrarlo o minimizarlo? - Mute Self Global Shortcut @@ -6448,6 +6464,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_et.ts b/src/mumble/mumble_et.ts index c76e861d6..598b70c0f 100644 --- a/src/mumble/mumble_et.ts +++ b/src/mumble/mumble_et.ts @@ -4143,10 +4143,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels Kasutjad kanalist kõrgemal - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4212,14 +4208,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging Kanali lohistamine - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top Alati kõige pealmine @@ -4524,6 +4512,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4615,10 +4635,6 @@ The setting only applies for new messages, the already shown ones will retain th Close Sulge - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6377,6 +6393,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_eu.ts b/src/mumble/mumble_eu.ts index a49dc6b4c..787beea9c 100644 --- a/src/mumble/mumble_eu.ts +++ b/src/mumble/mumble_eu.ts @@ -4160,10 +4160,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel Erakutsi kanal bakoitzeko erabiltzaile kopurua @@ -4229,14 +4225,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - Mumble ixtean, itxi edo txikitu nahi duzun galdetu. - - - Ask on quit while connected - Galdetu irteterakoan konektatua zauden bitarten - Always On Top Beti gainean @@ -4541,6 +4529,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4632,10 +4652,6 @@ The setting only applies for new messages, the already shown ones will retain th Close Itxi - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble zerbitzari batera dago konektatuta orain. Itxi edo Minimizatu nahi al duzu? - Mute Self Global Shortcut @@ -6397,6 +6413,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_fa_IR.ts b/src/mumble/mumble_fa_IR.ts index dcbd826a3..fb4666256 100644 --- a/src/mumble/mumble_fa_IR.ts +++ b/src/mumble/mumble_fa_IR.ts @@ -4141,10 +4141,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4210,14 +4206,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top @@ -4522,6 +4510,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4613,10 +4633,6 @@ The setting only applies for new messages, the already shown ones will retain th Close - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6375,6 +6391,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_fi.ts b/src/mumble/mumble_fi.ts index fc50aba36..bdfe6fcb5 100644 --- a/src/mumble/mumble_fi.ts +++ b/src/mumble/mumble_fi.ts @@ -4204,10 +4204,6 @@ Tämä vaikuttaa vain uusiin viesteihin, vanhojen viestien aikaleima ei muutu.Users above Channels Käyttäjät yläkanavilla - - <b>If set, will verify you want to quit if connected.</b> - <b>Valittuna vahvistaa haluatko sulkea ohjelman kun olet yhdistettynä palvelimeen.</b> - Show number of users in each channel Näytä käyttäjien määrän jokaisella kanavalla @@ -4273,14 +4269,6 @@ Tämä vaikuttaa vain uusiin viesteihin, vanhojen viestien aikaleima ei muutu.Channel Dragging Kanavien vetäminen - - Ask whether to close or minimize when quitting Mumble. - Kysyy haluatko sulkea vai pienentää Mumblen sulkemisen yhteydessä. - - - Ask on quit while connected - Kysy lopettamisesta yhdistettynä - Always On Top Aina päällimmäisenä @@ -4585,6 +4573,38 @@ Tämä vaikuttaa vain uusiin viesteihin, vanhojen viestien aikaleima ei muutu.Action (Channel): Toiminta (Kanava): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4676,10 +4696,6 @@ Tämä vaikuttaa vain uusiin viesteihin, vanhojen viestien aikaleima ei muutu.Close Sulje - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble on yhdistetty palvelimeen. Haluatko sulkea vai pienentää sen? - Mute Self Global Shortcut @@ -6469,6 +6485,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_fr.ts b/src/mumble/mumble_fr.ts index fee2830d5..70a837ae4 100644 --- a/src/mumble/mumble_fr.ts +++ b/src/mumble/mumble_fr.ts @@ -4204,10 +4204,6 @@ Le paramètre ne s'applique qu'aux nouveaux messages, ceux déjà affi Users above Channels Utilisateurs en haut des salons - - <b>If set, will verify you want to quit if connected.</b> - <b>Si cochée, vérifie que vous voulez quitter si vous êtes connecté.</b> - Show number of users in each channel Affiche le nombre d'utilisateurs dans chaque salon @@ -4273,14 +4269,6 @@ Le paramètre ne s'applique qu'aux nouveaux messages, ceux déjà affi Channel Dragging Faire glisser le salon - - Ask whether to close or minimize when quitting Mumble. - Demande si on quitte ou réduit la fenêtre en fermant Mumble. - - - Ask on quit while connected - Confirmer l'arrêt si connecté - Always On Top Toujours au-dessus @@ -4585,6 +4573,38 @@ Le paramètre ne s'applique qu'aux nouveaux messages, ceux déjà affi Action (Channel): Action (Salon) : + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4676,10 +4696,6 @@ Le paramètre ne s'applique qu'aux nouveaux messages, ceux déjà affi Close Fermer - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble est actuellement connecté à un serveur. Voulez-vous le fermer ou le réduire dans la barre des tâches ? - Mute Self Global Shortcut @@ -6531,6 +6547,14 @@ Les options valides sont : You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_gl.ts b/src/mumble/mumble_gl.ts index 4f8e27a5c..651194097 100644 --- a/src/mumble/mumble_gl.ts +++ b/src/mumble/mumble_gl.ts @@ -4144,10 +4144,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4213,14 +4209,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top @@ -4525,6 +4513,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4616,10 +4636,6 @@ The setting only applies for new messages, the already shown ones will retain th Close - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6378,6 +6394,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_he.ts b/src/mumble/mumble_he.ts index 241e152cc..4787f98fd 100644 --- a/src/mumble/mumble_he.ts +++ b/src/mumble/mumble_he.ts @@ -4192,10 +4192,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels משתמשים מעל ערוצים - - <b>If set, will verify you want to quit if connected.</b> - <b>אם מוגדר, תצטרכו לאשר שוב יציאה מהתוכנה.</b> - Show number of users in each channel הצג את מספר משתמשים בכל ערוץ @@ -4261,14 +4257,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging גרירת ערוצים - - Ask whether to close or minimize when quitting Mumble. - <p dir="RTL">שאל האם לסגור או למזער את Mumble ביציאה.</p> - - - Ask on quit while connected - <p dir="RTL">שאל האם לצאת כאשר מחובר לשרת.</p> - Always On Top תמיד למעלה @@ -4573,6 +4561,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4664,10 +4684,6 @@ The setting only applies for new messages, the already shown ones will retain th Close סגור - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - <p dir="RTL">‫Mumble מחוברת כרגע לשרת, לסגור או למזער אותה?</p> - Mute Self Global Shortcut @@ -6428,6 +6444,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_hu.ts b/src/mumble/mumble_hu.ts index 372265d75..df5901616 100644 --- a/src/mumble/mumble_hu.ts +++ b/src/mumble/mumble_hu.ts @@ -4190,10 +4190,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels Felhasználók a csatornák felett - - <b>If set, will verify you want to quit if connected.</b> - <b>Ha be van állítva, akkor leellenőrzi, hogy ha kapcsolódva van, akkor ki akar-e lépni.</b> - Show number of users in each channel Felhasználók számát mutatja minden csatornában @@ -4259,14 +4255,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging Csatorna mozgatása - - Ask whether to close or minimize when quitting Mumble. - Amikor kilép a Mumble-ból megkérdezi, hogy bezárja vagy minimalizálj a programot. - - - Ask on quit while connected - Kilépés megerősítése - Always On Top Mindig előtérben @@ -4571,6 +4559,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4662,10 +4682,6 @@ The setting only applies for new messages, the already shown ones will retain th Close Bezárás - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - A Mumble jelenleg kiszolgálóhoz csatlakozik. Szeretne kilépni vagy csak kis méretre szeretne váltani? - Mute Self Global Shortcut @@ -6428,6 +6444,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_it.ts b/src/mumble/mumble_it.ts index 42d1fc622..35c562e01 100644 --- a/src/mumble/mumble_it.ts +++ b/src/mumble/mumble_it.ts @@ -4204,10 +4204,6 @@ Questa impostazione si applica solo ai nuovi messaggi, quelli già mostrati mant Users above Channels Visualizza utenti sopra i canali - - <b>If set, will verify you want to quit if connected.</b> - <b>Se selezionato chiederà conferma alla chiusura di Mumble, se connesso ad un server</b> - Show number of users in each channel Visualizza il numero degli utenti in ogni canale @@ -4273,14 +4269,6 @@ Questa impostazione si applica solo ai nuovi messaggi, quelli già mostrati mant Channel Dragging Trascinamento Canale - - Ask whether to close or minimize when quitting Mumble. - Chiede se chiudere o minimizzare la finestra all'uscita da Mumble. - - - Ask on quit while connected - Quando connesso, chiedi conferma all'uscita - Always On Top Sempre in primo piano @@ -4585,6 +4573,38 @@ Questa impostazione si applica solo ai nuovi messaggi, quelli già mostrati mant Action (Channel): Azione (Canale): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4676,10 +4696,6 @@ Questa impostazione si applica solo ai nuovi messaggi, quelli già mostrati mant Close Chiudi - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble è attualmente connesso ad un server. Vuoi Chiuderlo o Minimizzarlo? - Mute Self Global Shortcut @@ -6470,6 +6486,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_ja.ts b/src/mumble/mumble_ja.ts index 4584cda38..07f6dbfbe 100644 --- a/src/mumble/mumble_ja.ts +++ b/src/mumble/mumble_ja.ts @@ -4191,10 +4191,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels チャンネルの上にユーザを表示する - - <b>If set, will verify you want to quit if connected.</b> - <b>これがセットされている場合、接続中に終了するかを確認します。</b> - Show number of users in each channel それぞれのチャンネルのユーザ数を表示 @@ -4260,14 +4256,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging チャンネルのドラッグ操作 - - Ask whether to close or minimize when quitting Mumble. - 終了時に最小化するか閉じるかを確認します。 - - - Ask on quit while connected - 接続中の終了は確認する - Always On Top 常に手前に表示 @@ -4572,6 +4560,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4663,10 +4683,6 @@ The setting only applies for new messages, the already shown ones will retain th Close 閉じる - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble は現在、サーバに接続しています。接続を閉じるか最小化しますか? - Mute Self Global Shortcut @@ -6426,6 +6442,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_ko.ts b/src/mumble/mumble_ko.ts index 47404efb0..6219954e3 100644 --- a/src/mumble/mumble_ko.ts +++ b/src/mumble/mumble_ko.ts @@ -4203,10 +4203,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels 채널 위의 유저 - - <b>If set, will verify you want to quit if connected.</b> - <b>설정된 경우 연결되면 종료할지 확인합니다.</b> - Show number of users in each channel 각 채널의 유저 수 표시 @@ -4272,14 +4268,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging 채널 드래그 - - Ask whether to close or minimize when quitting Mumble. - Mumble을 종료할 때 닫을 것인지 아니면 최소화할지 묻습니다. - - - Ask on quit while connected - 연결된 상태에서 종료 시 묻기 - Always On Top 항상 위에 @@ -4584,6 +4572,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): 작업 (채널): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4675,10 +4695,6 @@ The setting only applies for new messages, the already shown ones will retain th Close 닫기 - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble이 현재 서버에 연결되어 있습니다. 닫거나 최소화하시겠습니까? - Mute Self Global Shortcut @@ -6469,6 +6485,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_lt.ts b/src/mumble/mumble_lt.ts index 5953504ca..343d2c3ec 100644 --- a/src/mumble/mumble_lt.ts +++ b/src/mumble/mumble_lt.ts @@ -4174,10 +4174,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - <b>Jei nustatyta, jums išeinant ir vis dar tebesant prisijungus, bus klausiama patvirtinimo.</b> - Show number of users in each channel Rodyti kiekviename kanale naudotojų skaičių @@ -4243,14 +4239,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging Kanalų tempimas - - Ask whether to close or minimize when quitting Mumble. - Išeinant iš Mumble, klausti ar programą užverti ar suskleisti. - - - Ask on quit while connected - Klausti išeinant, kai tebeesama prisijungta - Always On Top Visada viršuje @@ -4555,6 +4543,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4646,10 +4666,6 @@ The setting only applies for new messages, the already shown ones will retain th Close Užverti - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Programa Mumble šiuo metu yra prisijungusi prie serverio. Norite programą užverti ar suskleisti? - Mute Self Global Shortcut @@ -6410,6 +6426,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_nl.ts b/src/mumble/mumble_nl.ts index 404601726..901db10a2 100644 --- a/src/mumble/mumble_nl.ts +++ b/src/mumble/mumble_nl.ts @@ -4204,10 +4204,6 @@ Deze instelling geldt voor nieuwe berichten, vermits getoonden conformeren aan h Users above Channels Gebruikers boven kanalen - - <b>If set, will verify you want to quit if connected.</b> - <b>Ingesteld, wordt om bevestiging gevraagd of je wilt afsluiten terwijl nog verbonden.</b> - Show number of users in each channel Kanaalgebruikersaantal tonen @@ -4273,14 +4269,6 @@ Deze instelling geldt voor nieuwe berichten, vermits getoonden conformeren aan h Channel Dragging Kanalen Slepen - - Ask whether to close or minimize when quitting Mumble. - Vraag af te sluiten/minimaliseren indien Mumble afsluit. - - - Ask on quit while connected - Vraag bij afsluiten terwijl verbonden - Always On Top Altijd vooraan @@ -4585,6 +4573,38 @@ Deze instelling geldt voor nieuwe berichten, vermits getoonden conformeren aan h Action (Channel): Actie (Kanaal): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4676,10 +4696,6 @@ Deze instelling geldt voor nieuwe berichten, vermits getoonden conformeren aan h Close Sluit - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble is momenteel verbonden met een server. Wil je afsluiten of minimaliseren? - Mute Self Global Shortcut @@ -6470,6 +6486,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_no.ts b/src/mumble/mumble_no.ts index fe7d719b3..0e5808967 100644 --- a/src/mumble/mumble_no.ts +++ b/src/mumble/mumble_no.ts @@ -4219,10 +4219,6 @@ Har kun innvirkning for nye meldinger. Gamle meldinger vises i foregående tidsf Users above Channels Brukere over kanaler - - <b>If set, will verify you want to quit if connected.</b> - <b>Hvis satt, vil spørre deg om bekreftelse ved avslutting hvis tilkoblet.</b> - Show number of users in each channel Vis antalle brukere i hver kanal @@ -4288,14 +4284,6 @@ Har kun innvirkning for nye meldinger. Gamle meldinger vises i foregående tidsf Channel Dragging Kanaldraging - - Ask whether to close or minimize when quitting Mumble. - Spør hvorvidt det skal lukkes eller minimeres når Mumble avsluttes. - - - Ask on quit while connected - Spør ved avslutning når tilkoblet - Always On Top Alltid øverst @@ -4600,6 +4588,38 @@ Har kun innvirkning for nye meldinger. Gamle meldinger vises i foregående tidsf Action (Channel): Handling (kanal): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4691,10 +4711,6 @@ Har kun innvirkning for nye meldinger. Gamle meldinger vises i foregående tidsf Close Lukk - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble er ikke koblet til en tjener. Ønsker du å lukke eller minimere det? - Mute Self Global Shortcut @@ -6485,6 +6501,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_oc.ts b/src/mumble/mumble_oc.ts index e368494fd..72f87f33b 100644 --- a/src/mumble/mumble_oc.ts +++ b/src/mumble/mumble_oc.ts @@ -4143,10 +4143,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4212,14 +4208,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top Totjorn en dessús @@ -4524,6 +4512,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4615,10 +4635,6 @@ The setting only applies for new messages, the already shown ones will retain th Close Tampar - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6377,6 +6393,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_pl.ts b/src/mumble/mumble_pl.ts index 58fb74117..ea75505a3 100644 --- a/src/mumble/mumble_pl.ts +++ b/src/mumble/mumble_pl.ts @@ -4205,10 +4205,6 @@ Ustawienie dotyczy tylko nowych wiadomości, te już pokazane zachowają poprzed Users above Channels Wyświetlaj nazwy użytkowników ponad kanałami - - <b>If set, will verify you want to quit if connected.</b> - <b>Jeżeli ustawione, program będzie sprawdzać; czy chcesz go zamknąć, gdy jesteś na serwerze.</b> - Show number of users in each channel Wyświetlaj liczbę użytkowników na każdym kanale @@ -4274,14 +4270,6 @@ Ustawienie dotyczy tylko nowych wiadomości, te już pokazane zachowają poprzed Channel Dragging Przeciąganie kanałów - - Ask whether to close or minimize when quitting Mumble. - Zapytaj, czy zamknąć, czy zminimalizować, podczas kończenia pracy z Mumble. - - - Ask on quit while connected - Ostrzegaj przed zamknięciem programu - Always On Top Zawsze na wierzchu @@ -4586,6 +4574,38 @@ Ustawienie dotyczy tylko nowych wiadomości, te już pokazane zachowają poprzed Action (Channel): Akcja (kanał): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4677,10 +4697,6 @@ Ustawienie dotyczy tylko nowych wiadomości, te już pokazane zachowają poprzed Close Zakończ - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - <b>UWAGA!</b> Mumble jest obecnie połączony z serwerem. Chcesz zamknąć czy zminimalizować program? - Mute Self Global Shortcut @@ -6531,6 +6547,14 @@ Prawidłowe opcje to: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_pt_BR.ts b/src/mumble/mumble_pt_BR.ts index 198d1af72..3aebb19db 100644 --- a/src/mumble/mumble_pt_BR.ts +++ b/src/mumble/mumble_pt_BR.ts @@ -4204,10 +4204,6 @@ Essa configuração só se aplica para novas mensagens. As mensagens já exibida Users above Channels Usuários acima dos canais - - <b>If set, will verify you want to quit if connected.</b> - <b>Se marcado, verificará se você quer sair se conectado</b> - Show number of users in each channel Mostrar número de usuários em cada canal @@ -4273,14 +4269,6 @@ Essa configuração só se aplica para novas mensagens. As mensagens já exibida Channel Dragging Moção de canais - - Ask whether to close or minimize when quitting Mumble. - Perguntar quando fechar ou minimizar ao fechar o Mumble. - - - Ask on quit while connected - Perguntar ao sair enquanto conectado - Always On Top Sempre visível @@ -4585,6 +4573,38 @@ Essa configuração só se aplica para novas mensagens. As mensagens já exibida Action (Channel): Ação (Canal): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4676,10 +4696,6 @@ Essa configuração só se aplica para novas mensagens. As mensagens já exibida Close Fechar - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - O Mumble está conectado a um servidor atualmente. Você gostaria de fechá-lo ou minimizá-lo? - Mute Self Global Shortcut @@ -6470,6 +6486,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_pt_PT.ts b/src/mumble/mumble_pt_PT.ts index 28f4d8cfc..cb9c76986 100644 --- a/src/mumble/mumble_pt_PT.ts +++ b/src/mumble/mumble_pt_PT.ts @@ -4204,10 +4204,6 @@ Essa configuração só se aplica para novas mensagens. As mensagens já exibida Users above Channels Utilizadores acima dos canais - - <b>If set, will verify you want to quit if connected.</b> - <b>Se marcado, verificará se quer sair se ligado</b> - Show number of users in each channel Mostrar número de utilizadores em cada canal @@ -4273,14 +4269,6 @@ Essa configuração só se aplica para novas mensagens. As mensagens já exibida Channel Dragging Movimento de Canais - - Ask whether to close or minimize when quitting Mumble. - Perguntar fechar ou minimizar ao encerrar o Mumble. - - - Ask on quit while connected - Perguntar ao sair enquanto ligado - Always On Top Sempre no topo @@ -4585,6 +4573,38 @@ Essa configuração só se aplica para novas mensagens. As mensagens já exibida Action (Channel): Ação (Canal): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4676,10 +4696,6 @@ Essa configuração só se aplica para novas mensagens. As mensagens já exibida Close Fechar - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - O Mumble está ligado a um servidor atualmente. Gostaria de fechá-lo ou minimizá-lo? - Mute Self Global Shortcut @@ -6448,6 +6464,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_ro.ts b/src/mumble/mumble_ro.ts index 5bb8fdea7..eb10a7790 100644 --- a/src/mumble/mumble_ro.ts +++ b/src/mumble/mumble_ro.ts @@ -4147,10 +4147,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4216,14 +4212,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top @@ -4528,6 +4516,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4619,10 +4639,6 @@ The setting only applies for new messages, the already shown ones will retain th Close - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6381,6 +6397,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_ru.ts b/src/mumble/mumble_ru.ts index 0d9667ef3..b1c7783fe 100644 --- a/src/mumble/mumble_ru.ts +++ b/src/mumble/mumble_ru.ts @@ -4205,10 +4205,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels Пользователи над каналами - - <b>If set, will verify you want to quit if connected.</b> - <b>Если отмечено, нужно будет подтвердить попытку закрыть Mumble, если Вы подключены к серверу.</b> - Show number of users in each channel Показывать количество пользователей на каждом канале @@ -4274,14 +4270,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging Перетаскивание канала - - Ask whether to close or minimize when quitting Mumble. - Спрашивать Закрыть или Свернуть Mumble при закрытии. - - - Ask on quit while connected - Спрашивать о выходе, когда подключен к серверу - Always On Top Отображать на переднем плане @@ -4586,6 +4574,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): Действие (Канал): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4677,10 +4697,6 @@ The setting only applies for new messages, the already shown ones will retain th Close Закрыть - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - В настоящий момент Mumble подключен к серверу.<br />Вы хотите Закрыть его или Свернуть в трей? - Mute Self Global Shortcut @@ -6471,6 +6487,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_si.ts b/src/mumble/mumble_si.ts index 45679bbfc..61d1290a7 100644 --- a/src/mumble/mumble_si.ts +++ b/src/mumble/mumble_si.ts @@ -4285,18 +4285,6 @@ The setting only applies for new messages, the already shown ones will retain th Show context menu in menu bar - - Ask whether to close or minimize when quitting Mumble. - - - - <b>If set, will verify you want to quit if connected.</b> - - - - Ask on quit while connected - - <b>Enable Developer menu</b><br />This enables the "Developer"-menu in Mumble. This menu is used for developer-specific features, such as the Developer Console. @@ -4494,6 +4482,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -5492,10 +5512,6 @@ Valid actions are: Push-to-Talk - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Close @@ -6339,6 +6355,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_sk.ts b/src/mumble/mumble_sk.ts index 13429ab22..edac76a81 100644 --- a/src/mumble/mumble_sk.ts +++ b/src/mumble/mumble_sk.ts @@ -4230,18 +4230,6 @@ The setting only applies for new messages, the already shown ones will retain th Show context menu in menu bar - - Ask whether to close or minimize when quitting Mumble. - - - - <b>If set, will verify you want to quit if connected.</b> - - - - Ask on quit while connected - - <b>Enable Developer menu</b><br />This enables the "Developer"-menu in Mumble. This menu is used for developer-specific features, such as the Developer Console. @@ -4495,6 +4483,38 @@ The setting only applies for new messages, the already shown ones will retain th User Interface + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -5605,10 +5625,6 @@ Valid actions are: Mumble - Minimal View - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Close @@ -6340,6 +6356,14 @@ Otherwise abort and check your certificate and username. You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_sq.ts b/src/mumble/mumble_sq.ts index 24fbd456f..4c496744c 100644 --- a/src/mumble/mumble_sq.ts +++ b/src/mumble/mumble_sq.ts @@ -4287,18 +4287,6 @@ The setting only applies for new messages, the already shown ones will retain th Show context menu in menu bar - - Ask whether to close or minimize when quitting Mumble. - - - - <b>If set, will verify you want to quit if connected.</b> - - - - Ask on quit while connected - - <b>Enable Developer menu</b><br />This enables the "Developer"-menu in Mumble. This menu is used for developer-specific features, such as the Developer Console. @@ -4496,6 +4484,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -5509,10 +5529,6 @@ Valid actions are: Push-to-Talk - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Close @@ -6341,6 +6357,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_sv.ts b/src/mumble/mumble_sv.ts index dff44d544..7f17bf9d9 100644 --- a/src/mumble/mumble_sv.ts +++ b/src/mumble/mumble_sv.ts @@ -4204,10 +4204,6 @@ Inställningen gäller endast för nya meddelanden, de redan visade meddelandena Users above Channels Visa användare ovan kanaler - - <b>If set, will verify you want to quit if connected.</b> - <b>Vid markering, kommer vi att verifiera om du vill avsluta vid anslutning.</b> - Show number of users in each channel Visa antalet användare i varje kanal @@ -4273,14 +4269,6 @@ Inställningen gäller endast för nya meddelanden, de redan visade meddelandena Channel Dragging Kanaldragning - - Ask whether to close or minimize when quitting Mumble. - Fråga om att stänga eller minimera vid avslut av Mumble. - - - Ask on quit while connected - Fråga vid avslut om stängning - Always On Top Alltid överst @@ -4585,6 +4573,38 @@ Inställningen gäller endast för nya meddelanden, de redan visade meddelandena Action (Channel): Åtgärd (kanal): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4676,10 +4696,6 @@ Inställningen gäller endast för nya meddelanden, de redan visade meddelandena Close Stäng - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble är för närvarande anslutet till en server. Vill du stänga eller minimera? - Mute Self Global Shortcut @@ -6470,6 +6486,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_te.ts b/src/mumble/mumble_te.ts index f6bd7c377..8455043d8 100644 --- a/src/mumble/mumble_te.ts +++ b/src/mumble/mumble_te.ts @@ -4154,10 +4154,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4223,14 +4219,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top @@ -4535,6 +4523,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4626,10 +4646,6 @@ The setting only applies for new messages, the already shown ones will retain th Close - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6388,6 +6404,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_th.ts b/src/mumble/mumble_th.ts index b0f0a6b8a..99e44138f 100644 --- a/src/mumble/mumble_th.ts +++ b/src/mumble/mumble_th.ts @@ -4141,10 +4141,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4210,14 +4206,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top @@ -4522,6 +4510,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4613,10 +4633,6 @@ The setting only applies for new messages, the already shown ones will retain th Close - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6375,6 +6391,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_tr.ts b/src/mumble/mumble_tr.ts index 5e200af0f..5b7697812 100644 --- a/src/mumble/mumble_tr.ts +++ b/src/mumble/mumble_tr.ts @@ -4203,10 +4203,6 @@ Bu ayar sadece yeni mesajlara uygulanır, zaten görüntülenmiş olanlar öncek Users above Channels Kullanıcılar kanalların üstünde - - <b>If set, will verify you want to quit if connected.</b> - <b>Bağlantıdayken programdan çıkmak istediğinizde, emin olup olmadığınızı sorar.</b> - Show number of users in each channel Her kanaldaki kullanıcı sayısını göster @@ -4272,14 +4268,6 @@ Bu ayar sadece yeni mesajlara uygulanır, zaten görüntülenmiş olanlar öncek Channel Dragging Kanal Kaydırma - - Ask whether to close or minimize when quitting Mumble. - Mumble'dan çıkış seçildiğinde uygulamanın kapatılması ve küçültülmesi seçimi sun. - - - Ask on quit while connected - Bağlantıdayken çıkışta sor - Always On Top Her Zaman Üstte @@ -4584,6 +4572,38 @@ Bu ayar sadece yeni mesajlara uygulanır, zaten görüntülenmiş olanlar öncek Action (Channel): Eylem (Kanal): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4675,10 +4695,6 @@ Bu ayar sadece yeni mesajlara uygulanır, zaten görüntülenmiş olanlar öncek Close Kapat - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble hâlihazırda bir sunucuya bağlıdır. Kapatmak mı istiyorsunuz, küçültmek mi? - Mute Self Global Shortcut @@ -6529,6 +6545,14 @@ Geçerli seçenekler şunlardır: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_uk.ts b/src/mumble/mumble_uk.ts index 41cab2327..716e3a8e6 100644 --- a/src/mumble/mumble_uk.ts +++ b/src/mumble/mumble_uk.ts @@ -4143,10 +4143,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4212,14 +4208,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top @@ -4524,6 +4512,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4615,10 +4635,6 @@ The setting only applies for new messages, the already shown ones will retain th Close - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - - Mute Self Global Shortcut @@ -6377,6 +6393,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_zh_CN.ts b/src/mumble/mumble_zh_CN.ts index 5aeb0db66..baad3a395 100644 --- a/src/mumble/mumble_zh_CN.ts +++ b/src/mumble/mumble_zh_CN.ts @@ -4203,10 +4203,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels 用户显示在频道上方 - - <b>If set, will verify you want to quit if connected.</b> - <b>如果选中,在您已连接服务器时退出需要确认。</b> - Show number of users in each channel 显示每个频道的用户数 @@ -4272,14 +4268,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging 频道拖动 - - Ask whether to close or minimize when quitting Mumble. - 在退出 Mumble 时,询问您要关闭还是最小化。 - - - Ask on quit while connected - 在已连接服务器时确认退出 - Always On Top 始终置顶 @@ -4584,6 +4572,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): 操作(频道): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4675,10 +4695,6 @@ The setting only applies for new messages, the already shown ones will retain th Close 关闭 - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble 已连接到服务器。您要关闭或者最小化吗? - Mute Self Global Shortcut @@ -6529,6 +6545,14 @@ mumble://[<用户名>[:<密码>]@]<主机名>[:<端口>] You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_zh_HK.ts b/src/mumble/mumble_zh_HK.ts index fc75ba67d..a6987cd91 100644 --- a/src/mumble/mumble_zh_HK.ts +++ b/src/mumble/mumble_zh_HK.ts @@ -4141,10 +4141,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels - - <b>If set, will verify you want to quit if connected.</b> - - Show number of users in each channel @@ -4210,14 +4206,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging - - Ask whether to close or minimize when quitting Mumble. - - - - Ask on quit while connected - - Always On Top @@ -4522,6 +4510,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4613,10 +4633,6 @@ The setting only applies for new messages, the already shown ones will retain th Close 關閉 - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble 正與伺服器連線中。您希望關閉還是最小化? - Mute Self Global Shortcut @@ -6380,6 +6396,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual diff --git a/src/mumble/mumble_zh_TW.ts b/src/mumble/mumble_zh_TW.ts index 44cbcf680..737422017 100644 --- a/src/mumble/mumble_zh_TW.ts +++ b/src/mumble/mumble_zh_TW.ts @@ -4169,10 +4169,6 @@ The setting only applies for new messages, the already shown ones will retain th Users above Channels 顯示頻道內使用者清單 - - <b>If set, will verify you want to quit if connected.</b> - <b>退出程式時如果與伺服器持續連線則進行重複確認。</b> - Show number of users in each channel 顯示每一個頻道的使用人數 @@ -4238,14 +4234,6 @@ The setting only applies for new messages, the already shown ones will retain th Channel Dragging 頻道拖曳 - - Ask whether to close or minimize when quitting Mumble. - 詢問退出 Mumble 時是關閉還是最小化。 - - - Ask on quit while connected - 與伺服器連線期間離開前確認 - Always On Top 最上層顯示 @@ -4550,6 +4538,38 @@ The setting only applies for new messages, the already shown ones will retain th Action (Channel): + + Quit Behavior + + + + This setting controls the behavior of clicking on the X in the top right corner. + + + + This setting controls the behavior when closing Mumble. You can choose between being asked for confirmation, minimize instead if closing or just closing without any additional prompt. Optionally, the first two options can only apply when you are currently connected to a server (in that case, Mumble will quit without asking, when not connected to any server). + + + + Always Ask + + + + Ask when connected + + + + Always Minimize + + + + Minimize when connected + + + + Always Quit + + MainWindow @@ -4641,10 +4661,6 @@ The setting only applies for new messages, the already shown ones will retain th Close 關閉 - - Mumble is currently connected to a server. Do you want to Close or Minimize it? - Mumble 正與伺服器連線中。你希望關閉還是最小化? - Mute Self Global Shortcut @@ -6403,6 +6419,14 @@ Valid options are: You are currently in minimal view but not connected to a server. Use the context menu to conenct to a server or disable minimal view. + + Are you sure you want to close Mumble? Perhaps you prefer to minimize it instead? + + + + Remember this setting + + Manual -- cgit v1.2.3