diff --git a/docs/GlobalShortcuts.md b/docs/GlobalShortcuts.md index 8eea42aeaa6..1037e182179 100644 --- a/docs/GlobalShortcuts.md +++ b/docs/GlobalShortcuts.md @@ -53,6 +53,25 @@ regardless of the user they're running under! ## macOS -Mumble needs to be granted accessibility permissions. +Mumble needs permission to monitor keyboard and mouse input for global shortcuts +(e.g. Push-to-Talk) to work. The required permission depends on your macOS version: -![macOS screenshot](../screenshots/macOS_privacy_accessibility.png) +### macOS 10.15 (Catalina) and later + +Grant **Input Monitoring** permission: + +1. Open **System Settings** > **Privacy & Security** > **Input Monitoring** +2. Enable the checkbox next to **Mumble** + +![macOS Input Monitoring screenshot](../screenshots/macOS_privacy_input_monitoring.png) + +### macOS 10.9 - 10.14 + +Grant **Accessibility** permission: + +1. Open **System Preferences** > **Security & Privacy** > **Privacy** > **Accessibility** +2. Click the lock to make changes, then enable the checkbox next to **Mumble** + +![macOS Accessibility screenshot](../screenshots/macOS_privacy_accessibility.png) + +Mumble will automatically detect your macOS version and open the correct settings pane. diff --git a/screenshots/macOS_privacy_input_monitoring.png b/screenshots/macOS_privacy_input_monitoring.png new file mode 100644 index 00000000000..6190c333250 Binary files /dev/null and b/screenshots/macOS_privacy_input_monitoring.png differ diff --git a/src/mumble/GlobalShortcut.cpp b/src/mumble/GlobalShortcut.cpp index 3d05a00515e..966f6afcb60 100644 --- a/src/mumble/GlobalShortcut.cpp +++ b/src/mumble/GlobalShortcut.cpp @@ -24,8 +24,7 @@ #include #ifdef Q_OS_MAC -# include -# include +# include "GlobalShortcut_macx.h" #endif #include @@ -639,25 +638,13 @@ GlobalShortcutConfig::GlobalShortcutConfig(Settings &st) : ConfigWidget(st) { #endif #ifdef Q_OS_MAC - // Help Mac users enable accessibility access for Mumble... - const QOperatingSystemVersion current = QOperatingSystemVersion::current(); - if (current >= QOperatingSystemVersion::OSXMavericks) { - qpbOpenAccessibilityPrefs->setHidden(true); - label->setText(tr("" - "

" - "Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, " - "etc.) for global shortcuts." - "

" - "

" - "If you want more flexibility, you can add Mumble as a trusted accessibility program in the " - "Security & Privacy section " - "of your Mac's System Preferences." - "

" - "

" - "In the Security & Privacy preference pane, change to the Privacy tab. Then choose " - "Accessibility (near the bottom) in " - "the list to the left. Finally, add Mumble to the list of trusted accessibility programs." - "")); + // Help Mac users enable the appropriate permission for Mumble. + // On macOS 10.15+, this is Input Monitoring; on older versions, it's Accessibility. + qpbOpenInputMonitoringSettings->setHidden(true); + if (!macOS_usesInputMonitoring()) { + // Update the label text for older macOS versions that use Accessibility + label->setText(tr("

Mumble needs Accessibility permission to use global " + "shortcuts such as Push-to-Talk.

")); } #endif } @@ -677,24 +664,16 @@ bool GlobalShortcutConfig::eventFilter(QObject * /*object*/, QEvent *e) { bool GlobalShortcutConfig::showWarning() const { #ifdef Q_OS_MAC -# if MAC_OS_X_VERSION_MAX_ALLOWED >= 1090 - const QOperatingSystemVersion current = QOperatingSystemVersion::current(); - if (current >= QOperatingSystemVersion::OSXMavericks) { - return !AXIsProcessTrustedWithOptions(nullptr); - } else -# endif - { - return !QFile::exists(QLatin1String("/private/var/db/.AccessibilityAPIEnabled")); - } -#endif + return !macOS_hasGlobalShortcutPermission(); +#else return false; +#endif } -void GlobalShortcutConfig::on_qpbOpenAccessibilityPrefs_clicked() { - QStringList args; - args << QLatin1String("/Applications/System Preferences.app"); - args << QLatin1String("/System/Library/PreferencePanes/UniversalAccessPref.prefPane"); - (void) QProcess::startDetached(QLatin1String("/usr/bin/open"), args); +void GlobalShortcutConfig::on_qpbOpenInputMonitoringSettings_clicked() { +#ifdef Q_OS_MAC + macOS_openPrivacySettings(); +#endif } void GlobalShortcutConfig::on_qpbSkipWarning_clicked() { @@ -885,7 +864,11 @@ void GlobalShortcutConfig::reload() { } #ifdef Q_OS_MAC if (!Global::get().s.bSuppressMacEventTapWarning) { - qwWarningContainer->setVisible(showWarning()); + bool warn = showWarning(); + qwWarningContainer->setVisible(warn); + if (warn) { + qpbOpenInputMonitoringSettings->setHidden(false); + } } else { qwWarningContainer->setVisible(false); } diff --git a/src/mumble/GlobalShortcut.h b/src/mumble/GlobalShortcut.h index 9c887c620d8..67ee78555e5 100644 --- a/src/mumble/GlobalShortcut.h +++ b/src/mumble/GlobalShortcut.h @@ -212,7 +212,7 @@ public slots: void on_qpbRemove_clicked(bool); void on_qtwShortcuts_currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *); void on_qtwShortcuts_itemChanged(QTreeWidgetItem *, int); - void on_qpbOpenAccessibilityPrefs_clicked(); + void on_qpbOpenInputMonitoringSettings_clicked(); void on_qpbSkipWarning_clicked(); }; diff --git a/src/mumble/GlobalShortcut.ui b/src/mumble/GlobalShortcut.ui index 8b4063289bb..a696892e14f 100644 --- a/src/mumble/GlobalShortcut.ui +++ b/src/mumble/GlobalShortcut.ui @@ -32,7 +32,7 @@ - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> Qt::RichText @@ -58,9 +58,9 @@ - + - Open Accessibility Preferences + Open Privacy Settings diff --git a/src/mumble/GlobalShortcut_macx.h b/src/mumble/GlobalShortcut_macx.h index 3c1a9a464e1..a35d534502e 100644 --- a/src/mumble/GlobalShortcut_macx.h +++ b/src/mumble/GlobalShortcut_macx.h @@ -14,6 +14,34 @@ #include "Global.h" #include "GlobalShortcut.h" +// Helper functions for runtime macOS version checking. +// These allow C++ code to check and request the appropriate permission +// (Input Monitoring on macOS 10.15+, Accessibility on older versions). +#ifdef __cplusplus +extern "C" { +#endif + +/// Check if the app has the necessary permission for global shortcuts. +/// On macOS 10.15+, checks Input Monitoring; on older versions, checks Accessibility. +bool macOS_hasGlobalShortcutPermission(); + +/// Request the necessary permission for global shortcuts. +/// On macOS 10.15+, requests Input Monitoring; on older versions, this is a no-op +/// (Accessibility permission is requested automatically when the event tap fails). +void macOS_requestGlobalShortcutPermission(); + +/// Open the appropriate Privacy settings pane in System Preferences. +/// On macOS 10.15+, opens Input Monitoring; on older versions, opens Accessibility. +void macOS_openPrivacySettings(); + +/// Returns true if the current macOS version uses Input Monitoring (10.15+), +/// false if it uses Accessibility (10.14 and earlier). +bool macOS_usesInputMonitoring(); + +#ifdef __cplusplus +} +#endif + class GlobalShortcutMac : public GlobalShortcutEngine { private: Q_OBJECT diff --git a/src/mumble/GlobalShortcut_macx.mm b/src/mumble/GlobalShortcut_macx.mm index c0ae90b0e8b..ed5178b6fbc 100644 --- a/src/mumble/GlobalShortcut_macx.mm +++ b/src/mumble/GlobalShortcut_macx.mm @@ -14,6 +14,50 @@ #define MOD_OFFSET 0x10000 #define MOUSE_OFFSET 0x20000 +// Helper functions for runtime macOS version checking. +// These allow GlobalShortcut.cpp (C++) to use the appropriate permission API +// based on the running macOS version. + +bool macOS_hasGlobalShortcutPermission() { + if (@available(macOS 10.15, *)) { + // macOS 10.15+ (Catalina): Use Input Monitoring API + return CGPreflightListenEventAccess(); + } else { + // macOS 10.9 - 10.14: Use Accessibility API + return AXIsProcessTrustedWithOptions(nullptr); + } +} + +void macOS_requestGlobalShortcutPermission() { + if (@available(macOS 10.15, *)) { + // macOS 10.15+ (Catalina): Request Input Monitoring permission + CGRequestListenEventAccess(); + } else { + // macOS 10.9 - 10.14: Request Accessibility permission with system prompt + NSDictionary *options = @{(__bridge NSString *) kAXTrustedCheckOptionPrompt: @YES }; + AXIsProcessTrustedWithOptions((__bridge CFDictionaryRef) options); + } +} + +void macOS_openPrivacySettings() { + NSString *urlString; + if (@available(macOS 10.15, *)) { + // macOS 10.15+: Open Input Monitoring settings + urlString = @"x-apple.systempreferences:com.apple.preference.security?Privacy_ListenEvent"; + } else { + // macOS 10.9 - 10.14: Open Accessibility settings + urlString = @"x-apple.systempreferences:com.apple.preference.security?Privacy_Accessibility"; + } + [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:urlString]]; +} + +bool macOS_usesInputMonitoring() { + if (@available(macOS 10.15, *)) { + return true; + } + return false; +} + GlobalShortcutEngine *GlobalShortcutEngine::platformInit() { return new GlobalShortcutMac(); } @@ -135,6 +179,11 @@ return; #endif + // Request the appropriate permission based on macOS version. + // On macOS 10.15+, this requests Input Monitoring permission. + // On older versions, permission is requested automatically when the event tap fails. + macOS_requestGlobalShortcutPermission(); + CGEventMask evmask = CGEventMaskBit(kCGEventLeftMouseDown) | CGEventMaskBit(kCGEventLeftMouseUp) | CGEventMaskBit(kCGEventRightMouseDown) | @@ -151,7 +200,7 @@ CGEventMaskBit(kCGEventScrollWheel); port = CGEventTapCreate(kCGSessionEventTap, kCGTailAppendEventTap, - kCGEventTapOptionDefault, // active filter (not only a listener) + kCGEventTapOptionListenOnly, evmask, GlobalShortcutMac::callback, this); @@ -478,7 +527,7 @@ } bool GlobalShortcutMac::canSuppress() { - return true; + return false; } bool GlobalShortcutMac::canDisable() { diff --git a/src/mumble/mumble.plist.in b/src/mumble/mumble.plist.in index f4491ca2135..28b08301cfb 100644 --- a/src/mumble/mumble.plist.in +++ b/src/mumble/mumble.plist.in @@ -36,6 +36,6 @@ NSMicrophoneUsageDescription Mumble uses your microphone to allow you to talk to other people NSAccessibilityUsageDescription - Mumble needs accessibility permission for global shortcuts + Mumble needs accessibility permission for global shortcuts such as Push-to-Talk on older macOS versions diff --git a/src/mumble/mumble_ar.ts b/src/mumble/mumble_ar.ts index b94dff9b71b..994d2a1a0f4 100644 --- a/src/mumble/mumble_ar.ts +++ b/src/mumble/mumble_ar.ts @@ -3700,14 +3700,6 @@ Label of the server. This is what the server will be named like in your server l &Remove و حذف - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip @@ -3774,6 +3766,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3816,10 +3816,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts @@ -3849,6 +3845,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned diff --git a/src/mumble/mumble_bg.ts b/src/mumble/mumble_bg.ts index ed5eed2aeca..90826d891c4 100644 --- a/src/mumble/mumble_bg.ts +++ b/src/mumble/mumble_bg.ts @@ -3697,14 +3697,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &Премахване - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip Пропускане @@ -3771,6 +3763,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3813,10 +3813,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts Преки пътища @@ -3846,6 +3842,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Необозначено diff --git a/src/mumble/mumble_br.ts b/src/mumble/mumble_br.ts index f54c6a25592..80289cf9515 100644 --- a/src/mumble/mumble_br.ts +++ b/src/mumble/mumble_br.ts @@ -3696,14 +3696,6 @@ Label of the server. This is what the server will be named like in your server l &Remove Dilemel - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip Lammat @@ -3770,6 +3762,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3812,10 +3812,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts Berradurioù @@ -3845,6 +3841,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned diff --git a/src/mumble/mumble_ca.ts b/src/mumble/mumble_ca.ts index 217df79a387..f5633deb324 100644 --- a/src/mumble/mumble_ca.ts +++ b/src/mumble/mumble_ca.ts @@ -3746,14 +3746,6 @@ Etiqueta del servidor. És el nom que rebrà el servidor serà a la vostra llist &Remove &Suprimeix - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>En aquest moment el Mumble només pot utilitzar botons del ratolí i les tecles modificadores del teclat (Alt, Ctrl, Cmd, etc.) per a dreceres globals.</p><p>Si voleu més flexibilitat, podeu activar <span style=" font-style:italic;">Accés al dispositius d'assistència</span> en les preferències d'accessibilitat del sistema. No obstant això, tingueu en compte que aquest canvi també permet que els programes maliciosos llegeixin el que s'escriu al teclat.</p></body></html> - - - Open Accessibility Preferences - Preferències de l'Accessibilitat Oberta - Skip Salta @@ -3822,6 +3814,14 @@ Sense aquesta opció activada, l'ús de les dreceres globals del Mumble en This removes the selected entry from the "Configured Shortcut" tree above Això elimina l'entrada seleccionada de l'arbre de "Dreceres Configurades" de dalt + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3864,10 +3864,6 @@ Sense aquesta opció activada, l'ús de les dreceres globals del Mumble en GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p> El Mumble actualment només pot utilitzar botons de ratolí i tecles modificadors del teclat (Alt, Ctrl, Cmd, etc.) per a dreceres globals.</p><p> Si voleu més flexibilitat, podeu afegir al Mumble com a programa d'accessibilitat de confiança a la secció Seguretat i Privacitat de les Preferències del Sistema Mac.</p><p>Al tauler de preferències de seguretat i privacitat, trieu la pestanya Privadesa. A continuació, seleccioneu Accessibilitat (prop de la part inferior) a la llista a l'esquerra. Finalment, afegiu el Mumble a la llista de programes d'accessibilitat de confiança.</body></html> - Shortcuts Dreceres @@ -3897,6 +3893,10 @@ Sense aquesta opció activada, l'ús de les dreceres globals del Mumble en Shortcut input combinations Combinacions d'entrada de la drecera + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Sense assignar diff --git a/src/mumble/mumble_cs.ts b/src/mumble/mumble_cs.ts index f19115b2f12..af3020eab62 100644 --- a/src/mumble/mumble_cs.ts +++ b/src/mumble/mumble_cs.ts @@ -3743,14 +3743,6 @@ Jmenovka serveru. Takto se bude server jmenovat ve Vašem seznamu serverů a mů &Remove &Odstranit - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Mumble může v současnosti používat pro globální zkratky pouze tlačítka myši a modifikátory na klávesnici (Alt, Ctrl, Cmd, atd.).</p><p>Pokud chcete větší přizpůsobivost, můžete povolit <span style=" font-style:italic;">přístup pro pomocná zařízení</span> v nastavení přístupnosti v systému. Tato změna ale může případně umožnit škodlivým programům číst to, co je psáno na vaší klávesnici.</p></body></html> - - - Open Accessibility Preferences - Otevřít nastavení přístupnosti - Skip Přeskočit @@ -3817,6 +3809,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3859,10 +3859,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Mumble nyní může používat pro globální zkratky pouze tlačítka myši a modifikační klávesy klávesnice (Alt, Ctrl, Cmd, atd.).</p><p>Pokud chcete používat více kláves můžete Mumble přidat jako důvěryhodný program pro usnadnění v části Zabezpečení a Soukromí v nastavení systému Mac.</p><p>V panelu přejděte na kartu Soukromí, pak v seznamu vlevo zvolte Usnadnění (ve spodní části). Nakonec přidejte Mubme do seznamu důvěryhodných programů.</body></html> - Shortcuts Zkratky @@ -3892,6 +3888,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Nepřiřazeno diff --git a/src/mumble/mumble_cy.ts b/src/mumble/mumble_cy.ts index 166ca413251..672d5a401c2 100644 --- a/src/mumble/mumble_cy.ts +++ b/src/mumble/mumble_cy.ts @@ -3700,14 +3700,6 @@ Label of the server. This is what the server will be named like in your server l &Remove - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip @@ -3774,6 +3766,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3816,10 +3816,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts @@ -3849,6 +3845,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned diff --git a/src/mumble/mumble_da.ts b/src/mumble/mumble_da.ts index 499adeba9d4..f41c1b9b800 100644 --- a/src/mumble/mumble_da.ts +++ b/src/mumble/mumble_da.ts @@ -3742,14 +3742,6 @@ Etikette for serveren. Dette er, hvad serveren vil blive navngivet som i din ser &Remove &Fjern - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Mumble kan på nuværende tidspunkt kun bruge knapper på musen og tastatur-modifikationsknapper (Alt, Ctrl, Cmd, etc.) som globale genveje.</p><p>Hvis du ønsker større fleksibilitet, kan du aktivere <span style=" font-style:italic;">Adgang for hjælpemiddelenheder</span> i systemets tilgængelighedspræferencer. Vær imidlertid opmærksom på, at denne ændring også potentielt tillader ondsindede programmer, at læse hvad der blivet skrevet på tastaturet.</p></body></html> - - - Open Accessibility Preferences - Åben tilgængelighedspræferencer - Skip Spring over @@ -3816,6 +3808,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3858,10 +3858,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts Genveje @@ -3891,6 +3887,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Ubenyttet diff --git a/src/mumble/mumble_de.ts b/src/mumble/mumble_de.ts index de89fe14387..4bb5bac362f 100644 --- a/src/mumble/mumble_de.ts +++ b/src/mumble/mumble_de.ts @@ -3746,14 +3746,6 @@ Dies ist die Bezeichnung des Servers wie sie in den Favoriten erscheint und kann &Remove &Entfernen - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Mumble kann zur Zeit nur Maus- und Zusatztasten (Alt, Strg, Befehlstaste usw.) für globale Tastenkürzel verwenden.</p><p>Für mehr Flexibilität kann <span style="font-style:italic;">Zugriff für Hilfsgeräte aktivieren</span> in den Bedienungshilfen Einstellungen des Systems aktiviert werden. Bitte beachten Sie jedoch, dass diese Änderung unter Umständen auch bösartigen Programmen erlaubt, zu lesen, was auf Ihrer Tastatur getippt wird.</p></body></html> - - - Open Accessibility Preferences - Öffne Bedienungshilfen Einstellungen - Skip Überspringen @@ -3822,6 +3814,14 @@ Ohne diese Option funktioniert die Verwendung der globalen Tastaturkürzel von M This removes the selected entry from the "Configured Shortcut" tree above Entfernt den markierten Eintrag aus dem "Konfigurierten Tastenkürzel"-Baum oberhalb + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3864,10 +3864,6 @@ Ohne diese Option funktioniert die Verwendung der globalen Tastaturkürzel von M GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Mumble kann zurzeit nur Maustasten und Zusatztasten auf der Tastatur (Alt, Strg, Cmd, usw.) für systemweite Tastenkürzel verwenden.</p><p>Für eine größere Flexibilität können Sie Mumble als vertrautes Bedienhilfenprogramm im Privatsphärenreiter der Systemeinstellungen Ihres Mac's aktivieren.</p><p>Öffnen Sie dazu in Ihren Systemeinstellungen das Sicherheitsfenster und wechseln zum Privatsphärenreiter. Gehen Sie nun in der Navigation (links) auf den Punkt Bedienungshilfen und fügen Mumble in die erscheinende Liste der vertrauenswürdigen Programme hinzu.</body></html> - Shortcuts Tastenkürzel @@ -3897,6 +3893,10 @@ Ohne diese Option funktioniert die Verwendung der globalen Tastaturkürzel von M Shortcut input combinations Tastenkürzel Eingabekombinationen + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Nicht zugewiesen diff --git a/src/mumble/mumble_el.ts b/src/mumble/mumble_el.ts index 4f0850a2fa2..74b287f3bd5 100644 --- a/src/mumble/mumble_el.ts +++ b/src/mumble/mumble_el.ts @@ -3746,14 +3746,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &Αφαίρεση - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Προς το παρόν, το Mumble μπορεί να χρησιμοποιήσει μόνο τα πλήκτρα του ποντικιού και τα πλήκτρα τροποποίησης στο πληκτρολόγιο (Alt, Ctrl, Cmd κ.λπ.) για γενικές συντομεύσεις.</p><p>Εάν θέλετε περισσότερη ευελιξία, μπορείτε να ενεργοποιήσετε την <span style=" font-style:italic;">Πρόσβαση σε βοηθητικές συσκευές</span> στις προτιμήσεις προσβασιμότητας του συστήματος. Ωστόσο, σημειώστε ότι αυτή η αλλαγή δυνητικά επιτρέπει και τα κακόβουλα προγράμματα να διαβάζουν το τι πληκτρολογείτε στο πληκτρολόγιό σας.</p></body></html> - - - Open Accessibility Preferences - Ανοιχτές Προτιμήσεις Προσβασιμότητας - Skip Να παραλειφθεί @@ -3822,6 +3814,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3864,10 +3864,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Προς το παρόν, το Mumble μπορεί να χρησιμοποιήσει μόνο τα πλήκτρα του ποντικιού και τα πλήκτρα τροποποίησης στο πληκτρολόγιο (Alt, Ctrl, Cmd κ.λπ.) για γενικές συντομεύσεις.</p><p>Εάν θέλετε περισσότερη ευελιξία, μπορείτε να προσθέσετε το Mumble ως πρόγραμμα αξιόπιστης προσβασιμότητας στην ενότητα Ασφάλεια & Απόρρητο στις προτιμήσεις συστήματος του Mac.</p><p>Στο παράθυρο των προτιμήσεων Ασφάλεια και Απόρρητο, μεταβείτε στην καρτέλα Απόρρητο. Στη συνέχεια, επιλέξτε Προσβασιμότητα (στο κάτω μέρος) στη λίστα αριστερά. Τέλος, προσθέστε το Mumble στη λίστα των προγραμμάτων αξιόπιστης προσβασιμότητας.</body></html> - Shortcuts Συντομεύσεις @@ -3897,6 +3893,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Μη αναθετημένο diff --git a/src/mumble/mumble_en.ts b/src/mumble/mumble_en.ts index f4982eaebba..3bbd6925aa9 100644 --- a/src/mumble/mumble_en.ts +++ b/src/mumble/mumble_en.ts @@ -3695,14 +3695,6 @@ Label of the server. This is what the server will be named like in your server l &Remove - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip @@ -3769,6 +3761,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3811,10 +3811,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts @@ -3844,6 +3840,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned diff --git a/src/mumble/mumble_en_GB.ts b/src/mumble/mumble_en_GB.ts index d0467f96c46..01fd0dd4b69 100644 --- a/src/mumble/mumble_en_GB.ts +++ b/src/mumble/mumble_en_GB.ts @@ -3693,7 +3693,7 @@ Label of the server. This is what the server will be named like in your server l Cancel - + Cancel @@ -3746,14 +3746,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &Remove - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - Open Accessibility Preferences - - Skip @@ -3820,6 +3812,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3862,10 +3862,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts @@ -3895,6 +3891,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned @@ -5511,7 +5511,7 @@ This setting only applies to new messages; existing messages keep the previous t Cancel - + Cancel Save Image As... @@ -5543,7 +5543,7 @@ This setting only applies to new messages; existing messages keep the previous t Enter reason - + Enter reason Sending message to %1 diff --git a/src/mumble/mumble_eo.ts b/src/mumble/mumble_eo.ts index dd13349f776..26246dd5a72 100644 --- a/src/mumble/mumble_eo.ts +++ b/src/mumble/mumble_eo.ts @@ -3706,14 +3706,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &Forigi - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip Preterpasi @@ -3780,6 +3772,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3822,10 +3822,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts Fulmoklavoj @@ -3855,6 +3851,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Neatribuite diff --git a/src/mumble/mumble_es.ts b/src/mumble/mumble_es.ts index dbe215feed4..495b949c2fc 100644 --- a/src/mumble/mumble_es.ts +++ b/src/mumble/mumble_es.ts @@ -3747,14 +3747,6 @@ Por favor informa a un desarrollador sobre el código de error: %1 &Remove &Eliminar - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Actualmente, Mumble solo puede usar concurrentemente para los métodos abreviados globales botones del ratón y teclas modificadoras del teclado (Alt, Ctrl, Cmd, etc.).</p><p>Si desea más flexibilidad, puede activar <span style=" font-style:italic;">Acceso para dispositivos de ayuda</span> en las preferencias de accesibilidad del sistema. Sin embargo, por favor fíjese en que este cambio también permite potencialmente que programas malintencionados lean lo que se escribe en su teclado.</p></body></html> - - - Open Accessibility Preferences - Abrir preferencias de accesibilidad - Skip Omitir @@ -3823,6 +3815,14 @@ Sin esta opción habilitada, los métodos abreviados globales de Mumble en aplic This removes the selected entry from the "Configured Shortcut" tree above Esto elimina la entrada seleccionada del árbol "Acceso directo configurado" arriba + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3865,10 +3865,6 @@ Sin esta opción habilitada, los métodos abreviados globales de Mumble en aplic GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Actualmente, Mumble solo puede usar para los métodos abreviados globales botones del ratón y teclas modificadoras del teclado (Alt, Ctrl, Cmd, etc.).</p><p>Si desea más flexibilidad, puede añadir Mumble como programa de confianza en la sección de Seguridad y Privacidad de las Preferencias del Sistema Mac.<p></p> En el panel de preferencias de Seguridad y Privacidad, cambia a la pestaña de Privacidad. Elige Accesibilidad (en la parte baja) de la lista a la izquierda. FInalmente, añade a Mumble a la lista de programas de confianza para la accesibilidad</body></html> - Shortcuts Métodos abreviados @@ -3898,6 +3894,10 @@ Sin esta opción habilitada, los métodos abreviados globales de Mumble en aplic Shortcut input combinations Combinaciones de entradas de accesos directos + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Sin asignar diff --git a/src/mumble/mumble_et.ts b/src/mumble/mumble_et.ts index cdd3a049ec3..87b3f26a8a6 100644 --- a/src/mumble/mumble_et.ts +++ b/src/mumble/mumble_et.ts @@ -3697,14 +3697,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &Eemalda - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip Jäta vahele @@ -3771,6 +3763,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3813,10 +3813,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts Otseteed @@ -3846,6 +3842,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Määramata diff --git a/src/mumble/mumble_eu.ts b/src/mumble/mumble_eu.ts index 542575e5839..b0915e561e2 100644 --- a/src/mumble/mumble_eu.ts +++ b/src/mumble/mumble_eu.ts @@ -3713,14 +3713,6 @@ Zerbitzariaren etika. Zerbitzari zerrendan agertuko zaizun izena ezartzen du, ed &Remove &Ezabatu - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - Ireki irisgarritasun aukerak - Skip Irten @@ -3787,6 +3779,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3829,10 +3829,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts Laster-teklak @@ -3862,6 +3858,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Esleitu gabea diff --git a/src/mumble/mumble_fa_IR.ts b/src/mumble/mumble_fa_IR.ts index 0716e8359e3..8cbae920f10 100644 --- a/src/mumble/mumble_fa_IR.ts +++ b/src/mumble/mumble_fa_IR.ts @@ -3697,14 +3697,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &حذف - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip @@ -3771,6 +3763,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3813,10 +3813,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts @@ -3846,6 +3842,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned diff --git a/src/mumble/mumble_fi.ts b/src/mumble/mumble_fi.ts index c1e37d7cac2..73b897ad77a 100644 --- a/src/mumble/mumble_fi.ts +++ b/src/mumble/mumble_fi.ts @@ -3746,14 +3746,6 @@ Palvelimen nimike. Vapaasti valittava nimike, jolla palvelin tulee esiintymään &Remove &Poista - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Mumble voi tällä hetkellä käyttää hiiren näppäimiä ja näppäimistön apunäppäimiä (Alt, Ctrl, Cmd, etc.) yleisiin pikanäppäimiin.</p><p>Jos haluat laajemman valikoiman, voit sallia <span style=" font-style:italic;">Käyttöapulaitteet</span> järjestelmän saavutettavuusasetuksissa. Ota kuitenkin huomioon että tämä muutos voi mahdollistaa haittaohjelmien lukea näppäimistöäsi..</p></body></html> - - - Open Accessibility Preferences - Avaa saavutettavuusasetukset - Skip Ohita @@ -3822,6 +3814,14 @@ Ilman tätä asetusta järjestelmänlaajuiset pikanäppäimet eivät toimi kysei This removes the selected entry from the "Configured Shortcut" tree above Tämä poistaa valitun kohteen "Määritellyt pikavalinnat" yläpuolella olevasta listasta + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3864,10 +3864,6 @@ Ilman tätä asetusta järjestelmänlaajuiset pikanäppäimet eivät toimi kysei GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Mumblea voi tällä hetkellä käyttää vain hiiren painikkeilla ja näppäimistön muokkausnäppäimillä (Alt, Ctrl, Cmd, etc.) maailmanlaajuisen pikanäppäimet.</p><p>Jos haluat enemmän joustavuutta, voit lisätä Mumblen Macin järjestelmäasetuksissa turvallisuus ja yksityisyys osiossa luottettujen ohjelmien joukkoon.</p><p>Turvallisuus ja yksityisyys asetuksissa valitse Tietosuoja-välilehti, sen jälkeen valitse Saavutettavuus (alhaalla) luettelossa vasemmalla. Lopuksi, lisää Mumble luotettujen ohjelmien listaan.</body></html> - Shortcuts Pikanäppäimet @@ -3897,6 +3893,10 @@ Ilman tätä asetusta järjestelmänlaajuiset pikanäppäimet eivät toimi kysei Shortcut input combinations Pikanäppäimien yhdistelmät + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Määrittämätön diff --git a/src/mumble/mumble_fr.ts b/src/mumble/mumble_fr.ts index 5c769043316..e60873f2f69 100644 --- a/src/mumble/mumble_fr.ts +++ b/src/mumble/mumble_fr.ts @@ -3746,14 +3746,6 @@ Nom du serveur. C'est le nom du serveur tel qu'il apparaîtra dans vos &Remove Supp&rimer - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Actuellement Mumble ne peut utiliser que les boutons de la souris et les touches de combinaison du clavier (Alt, Ctrl, Cmd, etc.) pour les raccourcis globaux.</p><p>Si vous désirez davantage de flexibilité, vous pouvez activer <span style=" font-style:italic;">l'accès des périphériques d'aide</span> dans les préférences d'accessibilité du système. Toutefois, veuillez noter que cette modification permet aussi potentiellement aux applications malveillantes de lire ce qui est tapé sur votre clavier.</p></body></html> - - - Open Accessibility Preferences - Ouvrir les préférences d'accessibilité - Skip Ignorer @@ -3822,6 +3814,14 @@ Sans cette option, l'utilisation des raccourcis globaux de Mumble dans les This removes the selected entry from the "Configured Shortcut" tree above Cela enlève l'élément sélectionné de l'arborescence « Raccourcis configurés » ci-dessus + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3864,10 +3864,6 @@ Sans cette option, l'utilisation des raccourcis globaux de Mumble dans les GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Mumble peut seulement utiliser les boutons de la souris et les modificateurs de clavier (Alt, Ctrl, Cmd, etc.) pour les raccourcis globaux.</p><p>Si vous voulez plus de flexibilité, vous pouvez ajouter Mumble en tant que programme d'accessibilité de confiance dans la section Sécurité & Vie Privée des Paramètres Systèmes de votre Mac.</p><p>Dans le panneau Sécurité & Vie Privée, changez dans l'onglet Vie Privée. Après choississez Accessibilité (près du bas) dans la liste à la gauche. Finalement, ajoutez Mumble à la liste des programmes d'accessibilité de confiance.</body></html> - Shortcuts Raccourcis @@ -3897,6 +3893,10 @@ Sans cette option, l'utilisation des raccourcis globaux de Mumble dans les Shortcut input combinations Combinaisons d'entrée du raccourci + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Non assigné diff --git a/src/mumble/mumble_gl.ts b/src/mumble/mumble_gl.ts index f695e73147b..29581118fdf 100644 --- a/src/mumble/mumble_gl.ts +++ b/src/mumble/mumble_gl.ts @@ -3698,14 +3698,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &Borrar - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip @@ -3772,6 +3764,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3814,10 +3814,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts @@ -3847,6 +3843,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned diff --git a/src/mumble/mumble_he.ts b/src/mumble/mumble_he.ts index c8b0f4c648d..a2ecf84d58f 100644 --- a/src/mumble/mumble_he.ts +++ b/src/mumble/mumble_he.ts @@ -3740,14 +3740,6 @@ Label of the server. This is what the server will be named like in your server l &Remove הס&ר - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p dir="RTL">Mumble תומך כעת רק בכפתורי עכבר ובכפתורי שליטה במקלדת (Alt, Ctrl, Shift וכו') עבור קיצורים גלובאליים.</p><p dir="RTL">אם תרצו להשתמש בעוד, תוכלו להפעיל את <span style=" font-style:italic;">גישה להתקני תמיכה</span> בהגדרות הנגישות של המערכת. למרות זאת, שימו לב שזה עלול לאפשר לתוכנות זדוניות לקרוא את הקשות המקלדת שלכם.</p></body></html> - - - Open Accessibility Preferences - פתח העדפות נגישות - Skip דלג @@ -3814,6 +3806,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3856,10 +3856,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts קיצורי דרך @@ -3889,6 +3885,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned לא מוקצה diff --git a/src/mumble/mumble_hi.ts b/src/mumble/mumble_hi.ts index fd1a23d95e4..a7b3255e878 100644 --- a/src/mumble/mumble_hi.ts +++ b/src/mumble/mumble_hi.ts @@ -3629,14 +3629,6 @@ Host: %1 Port: %2 GlobalShortcut - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip @@ -3751,6 +3743,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3793,10 +3793,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts @@ -3825,6 +3821,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned diff --git a/src/mumble/mumble_hu.ts b/src/mumble/mumble_hu.ts index 78833a7d0f8..054f4766d64 100644 --- a/src/mumble/mumble_hu.ts +++ b/src/mumble/mumble_hu.ts @@ -3734,14 +3734,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &Eltávolítás - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip Kihagyás @@ -3810,6 +3802,14 @@ Ha ez a beállítás nincs bejelölve az adott játék nem fogja engedni, hogy a This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3852,10 +3852,6 @@ Ha ez a beállítás nincs bejelölve az adott játék nem fogja engedni, hogy a GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts Gyorsbillentyű @@ -3885,6 +3881,10 @@ Ha ez a beállítás nincs bejelölve az adott játék nem fogja engedni, hogy a Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned diff --git a/src/mumble/mumble_it.ts b/src/mumble/mumble_it.ts index b7e783b1d5e..7771e72f802 100644 --- a/src/mumble/mumble_it.ts +++ b/src/mumble/mumble_it.ts @@ -3746,14 +3746,6 @@ Nome del server. Questo è il nome che apparirà sulla tua lista dei server pref &Remove &Rimuovi - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Mumble può attualmente utilizzare solo pulsanti del mouse e tasti modificatori della tastiera (Alt, Ctrl, Cmd, etc.) per le scorciatoie globali.</p><p>Se vuoi più flessibilità, puoi abilitare <span style=" font-style:italic;">Accesso per dispositivi di assistenza</span> nelle impostazioni di Accessibilità del sistema. Comunque, nota che questo può potenzialmente permettere a software maligni di leggere quello che stai scrivendo con la tastiera.</p></body></html> - - - Open Accessibility Preferences - Apri Preferenze Accessibilità - Skip Salta @@ -3822,6 +3814,14 @@ Senza questa opzione abilitata, le scorciatoie globali di Mumble non funzioneran This removes the selected entry from the "Configured Shortcut" tree above Rimuove l'occorrenza selezionata dall'albero delle "scorciatoie Configurate" qui sopra + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3864,10 +3864,6 @@ Senza questa opzione abilitata, le scorciatoie globali di Mumble non funzioneran GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Mumble può attualmente utilizzare solo pulsanti del mouse e tasti modificatori della tastiera (Alt, Ctrl, Cmd, etc.) per le scorciatoie globali.</p><p>Se vuoi più flessibilità, puoi aggiungere Mumble ai programmi di accessibilità fidati nella sezione Sicurezza e Privacy delle Impostazioni di Sistema Mac.</p><p>Nel pannello delle impostazioni di Sicurezza e Privacy, seleziona la scheda Privacy. Dopo scegli Accessibilità (nella parte bassa) nella lista sulla sinistra. Infine, aggiungi Mumble alla lista dei programmi di accessibilità fidati.</p></body></html> - Shortcuts Scorciatoie @@ -3897,6 +3893,10 @@ Senza questa opzione abilitata, le scorciatoie globali di Mumble non funzioneran Shortcut input combinations Combinazioni input della scorciatoia + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Non assegnato diff --git a/src/mumble/mumble_ja.ts b/src/mumble/mumble_ja.ts index 0e87f67b60b..36f4dc88b63 100644 --- a/src/mumble/mumble_ja.ts +++ b/src/mumble/mumble_ja.ts @@ -3740,14 +3740,6 @@ Label of the server. This is what the server will be named like in your server l &Remove 削除(&R) - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Mumbleはマウスボタンとキーボードの修飾キー(Alt、Ctrl、Cmdなど)のみを使用できます。</p><p>より柔軟に設定したいなら、システム環境設定のアクセシビリティの<span style=" font-style:italic;">補助装置にアクセスできるようにする</span>を有効にできる。しかし、この変更は悪意のあるプログラムがあなたがキーボードでタイプした内容を読み取ることを許すことに注意してください。</p></body></html> - - - Open Accessibility Preferences - アクセシビリティ設定を開く - Skip スキップ @@ -3814,6 +3806,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3856,10 +3856,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts ショートカット @@ -3889,6 +3885,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned 未割り当て diff --git a/src/mumble/mumble_ko.ts b/src/mumble/mumble_ko.ts index 960ca262080..ebbb7567069 100644 --- a/src/mumble/mumble_ko.ts +++ b/src/mumble/mumble_ko.ts @@ -3745,14 +3745,6 @@ Label of the server. This is what the server will be named like in your server l &Remove 삭제(&R) - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Mumble은 현재 전역 단축키에 마우스 버튼과 키보드 한정자 키만 (Alt, Ctrl, Cmd 등) 사용할 수 있습니다.</p><p>더 많은 유연성을 원하면 시스템의 접근성 기본 설정에서 <span style=" font-style:italic;">보조 장치 접근</span>을 활성화 할 수 있습니다. 그러나 이러한 변경으로 인해 악성 프로그램이 키보드에 입력된 내용을 읽을 수도 있습니다.</p></body></html> - - - Open Accessibility Preferences - 접근성 환경 설정 열기 - Skip 스킵 @@ -3821,6 +3813,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3863,10 +3863,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Mumble은 현재 전역 단축키에 마우스 버튼과 키보드 한정자 키만 (Alt, Ctrl, Cmd 등) 사용할 수 있습니다.</p><p>더 많은 유연성을 원한다면 Mac 시스템 환경 설정의 보안 및 개인 정보 부분에서 신뢰할 수 있는 접근성 프로그램으로 Mumble을 추가 할 수 있습니다.</p><p>보안 및 개인 정보 환경 설정 창에서 개인 정보 탭으로 변경합니다. 그런 다음 왼쪽 목록에서 접근성을 (아래쪽 근처) 선택합니다. 마지막으로 신뢰할 수 있는 접근성 프로그램 목록에 Mumble을 추가합니다.</body></html> - Shortcuts 단축키 @@ -3896,6 +3892,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned 할당되지 않음 diff --git a/src/mumble/mumble_lt.ts b/src/mumble/mumble_lt.ts index f1e0d4301e9..2fe24ea73ac 100644 --- a/src/mumble/mumble_lt.ts +++ b/src/mumble/mumble_lt.ts @@ -3728,14 +3728,6 @@ Label of the server. This is what the server will be named like in your server l &Remove Ša&linti - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip Praleisti @@ -3802,6 +3794,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3844,10 +3844,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts Trumpiniai @@ -3877,6 +3873,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Nepriskirta diff --git a/src/mumble/mumble_nl.ts b/src/mumble/mumble_nl.ts index 275c17d37ff..afdbb261238 100644 --- a/src/mumble/mumble_nl.ts +++ b/src/mumble/mumble_nl.ts @@ -3746,14 +3746,6 @@ Naam van server. Zelfgekozen naam van server die in serverlijst wordt weergegeve &Remove &Verwijder - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Mumble kan momenteel enkel muisknoppen en speciale toetsenbordtoetsen (Alt, Ctrl, Cmd, etc.) gebruiken als globale sneltoetsen.</p><p>Wil je meer flexibiliteit, dan kan je <span style=" font-style:italic;">Toegang voor hulpapparaten</span> onder de toegankelijkheidsinstellingen van je systeem instellen. Let hierbij op dat schadelijke software hiermee ook zal kunnen uitlezen wat je aan het typen bent.</p></body></html> - - - Open Accessibility Preferences - Toegankelijkheidscentrum openen - Skip Overslaan @@ -3822,6 +3814,14 @@ Als deze optie is uitgeschakeld, werken Mumble's globale sneltoetsen niet i This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3864,10 +3864,6 @@ Als deze optie is uitgeschakeld, werken Mumble's globale sneltoetsen niet i GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><body><p>Mumble slechts muisknoppen en speciale toetsenbord-toetsen gebruiken (Alt, Ctrl, Cmd, etc.) voor globale sneltoetsen.</p><p>Als je meer flexibiliteit vereist, stel Mumble als een vertrouwd toegankelijkheidsprogramma onder Beveiliging & Privacy sectie van je Mac's systeeminstellingen in.</p><p>Beveiliging & Privacy voorkeurspaneel → Privacy-tab → Toegankelijkheid onder linksaan in lijst is waar je Mumble toevoegt.</body></html> - Shortcuts Sneltoetsen @@ -3897,6 +3893,10 @@ Als deze optie is uitgeschakeld, werken Mumble's globale sneltoetsen niet i Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Ontoegewezen diff --git a/src/mumble/mumble_no.ts b/src/mumble/mumble_no.ts index e915f52b6bb..fa44ccca60a 100644 --- a/src/mumble/mumble_no.ts +++ b/src/mumble/mumble_no.ts @@ -3760,14 +3760,6 @@ Hva tjeneren er beskrevet som. Dette er hva tjeneren vil bli navngitt som i din &Remove &Fjern - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Kun valgtaster fra tastatur eller mus (Alt, Ctrl, Cmd, osv.) kan brukes for snarveier som gjelder for hele systemet.</p><p>Hvis du ønsker mer fleksibilitet kan du endre <span style=" font-style:italic;">Tilgang for hjelpeenheter</span> i systemets tilgjengelighetsinnstillinger. Merk at denne endringen har potensiale til å la skadelig programvare se hva som skrives på ditt tastatur.</p></body></html> - - - Open Accessibility Preferences - Åpne tilgjengelighetsinnstillinger - Skip Hopp over @@ -3836,6 +3828,14 @@ Uten dette påskrudd kan du ikke bruke Mumble-snarveier i priviligerte programme This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3878,10 +3878,6 @@ Uten dette påskrudd kan du ikke bruke Mumble-snarveier i priviligerte programme GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Kun valgtaster fra tastatur eller mus (Alt, Ctrl, Cmd, osv.) kan brukes for snarveier som gjelder for hele systemet. </p><p>Hvis du ønsker mer fleksibilitet kan du legge til Mumble som et betrodd hjelpefunksjons-program i Sikkerhet & Personvern på din Macs systeminnstillinger.</p><p>I sikkerhet og personvernsfanen, endre til personvernsfanen. Velg så Tilgjengelighet (nært bunnen) i listen på venstresiden. Til sist, legg til Mumble i listen over betrodde tilgjengelighetsprogrammer.</body></html> - Shortcuts Tastatursnarveier @@ -3911,6 +3907,10 @@ Uten dette påskrudd kan du ikke bruke Mumble-snarveier i priviligerte programme Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Utildelt diff --git a/src/mumble/mumble_oc.ts b/src/mumble/mumble_oc.ts index 11a46741956..3db6390d427 100644 --- a/src/mumble/mumble_oc.ts +++ b/src/mumble/mumble_oc.ts @@ -3697,14 +3697,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &Suprimir - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip Ignorar @@ -3771,6 +3763,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3813,10 +3813,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts Acorchis @@ -3846,6 +3842,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Pas assignat diff --git a/src/mumble/mumble_pl.ts b/src/mumble/mumble_pl.ts index 8f9de7cb7fa..fe22c2a20b5 100644 --- a/src/mumble/mumble_pl.ts +++ b/src/mumble/mumble_pl.ts @@ -3747,14 +3747,6 @@ Etykieta serwera. Określa, pod jaką nazwą twój serwer będzie wyświetlany n &Remove &Usuń - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Mumble obecnie może używać tylko przycisków myszy oraz modyfikatorów klawiatury (Alt, Ctrl, Cmd, itp.), jako skrótów globalnych.</p><p>Jeżeli potrzebujesz większej swobody, możesz aktywować <span style=" font-style:italic;">Wejście dla urządzeń wspomagających</span> w systemowych ustawieniach dostępności. Jednakże, ta zmiana może potencjalnie pozwolić innym programom na odczyt tego co piszesz na klawiaturze.</p></body></html> - - - Open Accessibility Preferences - Otwórz preferencje dostępności - Skip Pomiń @@ -3823,6 +3815,14 @@ Bez tej opcji korzystanie z globalnych skrótów Mumble w aplikacjach uprzywilej This removes the selected entry from the "Configured Shortcut" tree above Usuwa wybrany wpis z powyższego drzewa „Skonfigurowane skróty” + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3865,10 +3865,6 @@ Bez tej opcji korzystanie z globalnych skrótów Mumble w aplikacjach uprzywilej GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Mumble obecnie może używać tylko przycisków myszy oraz modyfikatorów klawiszy klawiatury (Alt, Ctrl, Cmd, itd.) jako globalnych skrótów. </p><p> Jeśli chcesz więcej elastyczności, możesz dodać Mumble do zaufanych programów w sekcji ustawień Zabezpieczenia i Prywatność Twojego systemu Mac. </p><p>W ustawieniach Zabezpieczenia i Prywatność należy wejść w zakładkę Prywatność. Później należy wybrać Dostępność (u dołu strony) z listy na lewo. Na końcu należy dodać Mumble do listy zaufanych programów.</body></html> - Shortcuts Skróty @@ -3898,6 +3894,10 @@ Bez tej opcji korzystanie z globalnych skrótów Mumble w aplikacjach uprzywilej Shortcut input combinations Kombinacje wprowadzania skrótu + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Nieprzypisany diff --git a/src/mumble/mumble_pt_BR.ts b/src/mumble/mumble_pt_BR.ts index e61428d124a..b4cb34379a8 100644 --- a/src/mumble/mumble_pt_BR.ts +++ b/src/mumble/mumble_pt_BR.ts @@ -3746,14 +3746,6 @@ Etiqueta do favorito. É como o favorito será exibido na lista de favoritos, e &Remove &Eliminar - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Atualmente o Mumble só pode usar botões do mouse e as teclas modificadoras do teclado (Alt, Ctrl, Cmd, etc.) para atalhos globais.</p><p>Se você quer mais flexibilidade você pode ativar <span style=" font-style:italic;">Acesso para dispositivos de assistência</span> nas preferências de Acessibilidade do sistema. Por favor note, no entanto, que essa mudança também permite programas potencialmente maliciosos de ver o que é digitado em seu teclado.</p></body></html> - - - Open Accessibility Preferences - Abrir Preferências de Acessibilidade - Skip Pular @@ -3822,6 +3814,14 @@ Sem essa opção ativada, usar os atalhos globais do Mumble em aplicações priv This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3864,10 +3864,6 @@ Sem essa opção ativada, usar os atalhos globais do Mumble em aplicações priv GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Atualmente o Mumble só pode utilizar teclas modificadoras do mouse e do teclado (Alt, Ctrl, Cmd, etc.) para atalhos globais.</p><p>Se você deseja mais flexibilidade, você pode adicionar o Mumble como um programa de acessibilidade confiável na seção de Segurança e Privacidade nas Preferências do Sistema do seu Mac.</p><p>No painel de Segurança e Privacidade, modifique a aba Privacidade. Depois escolhe Acessibilidade (próximo à parte inferior) na lista à esquerda. Finalmente, adicione o Mumble à lista de programas de acessibilidade confiáveis.</body></html> - Shortcuts Atalhos @@ -3897,6 +3893,10 @@ Sem essa opção ativada, usar os atalhos globais do Mumble em aplicações priv Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Não designado diff --git a/src/mumble/mumble_pt_PT.ts b/src/mumble/mumble_pt_PT.ts index 25223886025..d3a000df0e8 100644 --- a/src/mumble/mumble_pt_PT.ts +++ b/src/mumble/mumble_pt_PT.ts @@ -3746,14 +3746,6 @@ Etiqueta do servidor. É como o servidor será exibido na lista de favoritos, e &Remove &Eliminar - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Atualmente o Mumble só pode usar botões do rato e as teclas modificadoras do teclado (Alt, Ctrl, Cmd, etc.) para atalhos globais.</p><p>Se quer mais flexibilidade pode ativar <span style=" font-style:italic;">Acesso para aparelhos de assistência</span> nas preferências de Acessibilidade do sistema. Por favor note no entanto, que essa mudança também permite potencialmente programas maliciosos de ver o que é escrito no seu teclado.</p></body></html> - - - Open Accessibility Preferences - Abrir Preferências de Acessibilidade - Skip Saltar @@ -3822,6 +3814,14 @@ Sem essa opção ativada, usar os atalhos globais do Mumble em aplicações priv This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3864,10 +3864,6 @@ Sem essa opção ativada, usar os atalhos globais do Mumble em aplicações priv GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Atualmente, o Mumble só pode usar botões do rato e teclas modificadoras do teclado (Alt, Ctrl, Cmd, etc.) como atalhos globais.</p><p>Se deseja mais flexibilidade, pode adicionar o Mumble como um programa de acessibilidade de confiança na secção de Segurança & Privacidade nas Preferências de Sistema do seu Mac.</p><p>No painel de preferências de Segurança & Privacidade, mude para o separador de Privacidade. Depois escolha Acessibilidade (perto do fundo) na lista à esquerda. Finalmente, adicione o Mumble à lista de programas de acessibilidade de confiança.</body></html> - Shortcuts Atalhos @@ -3897,6 +3893,10 @@ Sem essa opção ativada, usar os atalhos globais do Mumble em aplicações priv Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Não designado diff --git a/src/mumble/mumble_ro.ts b/src/mumble/mumble_ro.ts index d265ff2d5ef..24f6604d563 100644 --- a/src/mumble/mumble_ro.ts +++ b/src/mumble/mumble_ro.ts @@ -3705,14 +3705,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &Elimină - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip @@ -3779,6 +3771,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3821,10 +3821,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts @@ -3854,6 +3850,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned diff --git a/src/mumble/mumble_ru.ts b/src/mumble/mumble_ru.ts index 1074f77fe04..a864ee6284e 100644 --- a/src/mumble/mumble_ru.ts +++ b/src/mumble/mumble_ru.ts @@ -3747,14 +3747,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &Удалить - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Mumble может использовать только кнопки мыши и клавиши-модификаторы (Alt, Ctrl, Cmd, и т.д.) для Глобальных клавиш.</p><p>Если вы хотите больше гибкости, вы можете включить <span style="font-style:italic;">Доступ для вспомогательных устройств</span> в системных настройках доступа. Тем не менее, обращаем ваше внимание, что это изменение потенциально позволит вредоносным программам читать то, что напечатано на вашей клавиатуре.</p></body></html> - - - Open Accessibility Preferences - Открыть настройки специальных возможностей - Skip Пропустить @@ -3823,6 +3815,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above При этом выбранная запись удаляется из дерева "Настроенные ярлыки" + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3865,10 +3865,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Mumble может использовать только кнопки мыши и клавиши-модификаторы (Alt, Ctrl, Cmd, и т.д.) для Глобальных клавиш.</p><p>Если вы хотите больше гибкости, вы можете добавить Mumble в качестве надежной программы доступности в разделе «Защита и безопасность» в системных настройках вашего Mac.</p><p> На панели «Защита и безопасность» перейдите на вкладку «Конфиденциальность». Затем выберите Универсальный доступ (внизу) в списке слева. Наконец, добавьте Mumble в список доверенных программ доступности.</body></html> - Shortcuts Горячие клавиши @@ -3898,6 +3894,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations Комбинации клавиш быстрого ввода + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Не назначено diff --git a/src/mumble/mumble_si.ts b/src/mumble/mumble_si.ts index 10362986189..c70bd55adb4 100644 --- a/src/mumble/mumble_si.ts +++ b/src/mumble/mumble_si.ts @@ -3624,14 +3624,6 @@ Host: %1 Port: %2 GlobalShortcut - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip @@ -3746,6 +3738,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3788,10 +3788,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts @@ -3820,6 +3816,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned diff --git a/src/mumble/mumble_sk.ts b/src/mumble/mumble_sk.ts index 845c7fe54c9..c272f576485 100644 --- a/src/mumble/mumble_sk.ts +++ b/src/mumble/mumble_sk.ts @@ -3628,14 +3628,6 @@ Host: %1 Port: %2 GlobalShortcut - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip @@ -3750,6 +3742,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3792,10 +3792,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts @@ -3824,6 +3820,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned diff --git a/src/mumble/mumble_sq.ts b/src/mumble/mumble_sq.ts index bf23b268990..4f3944028de 100644 --- a/src/mumble/mumble_sq.ts +++ b/src/mumble/mumble_sq.ts @@ -975,7 +975,7 @@ Contains the list of members inherited by the current channel. Uncheck <i> On - + On Gets played when starting to transmit @@ -1901,7 +1901,7 @@ Contains the list of members inherited by the current channel. Uncheck <i> <b>This is the input method to use for audio.</b> - + <b>Kjo është metoda e dhënies për t’u përdorur për audion.</b> Device @@ -2232,7 +2232,7 @@ Mumble is under continuous development, and the development team wants to focus Speech is dynamically amplified by at most this amount - + E folura amplifikohet në mënyrë dinamike e shumta me këtë sasi Voice activity detection level @@ -3630,14 +3630,6 @@ Host: %1 Port: %2 GlobalShortcut - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - Parapëlqime - Skip Anashkaloje @@ -3752,6 +3744,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3794,10 +3794,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts Shkurtore @@ -3826,6 +3822,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned %{name} rihapi raportimin %{target} @@ -4477,7 +4477,7 @@ The setting only applies for new messages, the already shown ones will retain th % - + % Notification sound volume adjustment @@ -4549,7 +4549,7 @@ The setting only applies for new messages, the already shown ones will retain th decibels - + decibelë diff --git a/src/mumble/mumble_sv.ts b/src/mumble/mumble_sv.ts index 20437ccac90..41ad9701d33 100644 --- a/src/mumble/mumble_sv.ts +++ b/src/mumble/mumble_sv.ts @@ -3746,14 +3746,6 @@ Serverns namn. Detta är vad servern kommer att kallas i din serverlista, som du &Remove &Ta bort - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Mumble kan för närvarande bara använda musknappar och vissa tangenter (Alt, Ctrl, Cmd, osv.) för globala genvägar.</p><p>Om du vill ha bättre flexibilitet, kan du använda <span style=" font-style:italic;">Åtkomst för tillgänglighetsenheter</span> i systemets alternativ för hjälpmedel. Kom ihåg att den här ändringen möjligtvis ochså kan tillåta skadlig programvara att läsa vad som skrivs på ditt tangentbord.</p></body></html> - - - Open Accessibility Preferences - Öppna tillgänglighetsinställningar - Skip Hoppa över @@ -3822,6 +3814,14 @@ Om det här alternativet inte är aktiverat fungerar det inte att använda Mumbl This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3864,10 +3864,6 @@ Om det här alternativet inte är aktiverat fungerar det inte att använda Mumbl GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Mumble kan för närvarande bara använda musknappar och vissa tangenter (Alt, Ctrl, Cmd, osv.) för globala genvägar. </p><p>Om du vill ha bättre flexibilitet, kan du lägga till Mumble som säkert tillgänglighetsprogram i Säkerhet & Sekretess inställningspanelen i dina Mac's Systeminställningar.</p<><p>I Säkerhet & Sekretess inställningspanelen, byt till Sektretess fliken. Efteråt välj tillgänglighet (nästan längst ner) i listan till vänster. Slutligen, lägg till Mumble i listan över betrodda tillgänglighetsprogram.</body></html> - Shortcuts Genvägar @@ -3897,6 +3893,10 @@ Om det här alternativet inte är aktiverat fungerar det inte att använda Mumbl Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Otilldelad diff --git a/src/mumble/mumble_te.ts b/src/mumble/mumble_te.ts index 934fe6c50fe..0ef885f61ea 100644 --- a/src/mumble/mumble_te.ts +++ b/src/mumble/mumble_te.ts @@ -3708,14 +3708,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &తొలగించు - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip @@ -3782,6 +3774,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3824,10 +3824,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts @@ -3857,6 +3853,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned diff --git a/src/mumble/mumble_th.ts b/src/mumble/mumble_th.ts index e302dd5e3a7..541002c5dd2 100644 --- a/src/mumble/mumble_th.ts +++ b/src/mumble/mumble_th.ts @@ -3695,14 +3695,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &เอาออก - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip @@ -3769,6 +3761,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3811,10 +3811,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts @@ -3844,6 +3840,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned diff --git a/src/mumble/mumble_tr.ts b/src/mumble/mumble_tr.ts index 333bf626825..39b4e2abb2f 100644 --- a/src/mumble/mumble_tr.ts +++ b/src/mumble/mumble_tr.ts @@ -3745,14 +3745,6 @@ Sunucunun etiketi. Bu, sunucu listenizde sunucunun ismidir ve istediğinizi seç &Remove &Kaldır - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Mumble, genel kısayollar için şu anda sadece fare düğmelerini ve klavyenin birleştirici tuşlarını (Alt, Ctrl, Cmd vs.) kullanabilir.</p><p>Daha fazla esneklik istiyorsanız sisteminizin Erişilebilirlik tercihlerinde <span style=" font-style:italic;">yardımcı aygıtlar için erişimi</span> etkinleştirebilirsiniz. Ancak bunun potansiyel olarak zararlı programların klavyenizde ne yazıldığını okumalarına imkân verebileceğini unutmayın.</p></body></html> - - - Open Accessibility Preferences - Erişilebilirlik Tercihlerini Aç - Skip Atla @@ -3821,6 +3813,14 @@ Bu seçenek seçilmediyse, yetkili programlarda Mumble'ın genel kısayolla This removes the selected entry from the "Configured Shortcut" tree above Bu, yukarıdaki "Yapılandırılmış Kısayol" ağacından seçili girdiyi kaldırır + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3863,10 +3863,6 @@ Bu seçenek seçilmediyse, yetkili programlarda Mumble'ın genel kısayolla GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Genel kısayollar için güncel olarak Mumble sadece fare düğmelerini ve klavyenin değiştirici düğmelerini (Alt, Ctrl, Cmd, vs.) kullanabilir.</p><p>Eğer daha fazla esneklik istiyorsanız Mac bilgisayarınızın Sistem Tercihlerinin Güvenlik ve Gizlilik bölümünde Mumble'ı güvenilir erişilebilirlik programı olarak ekleyebilirsiniz. </p><p> Güvenlik ve Gizlilik panosunda Gizlilik semesine geçin. Ardından sol köşedeki listede Erişilebilirliği (alta yakın) seçin. Son olarak, Mumble'ı güvenilir erişilebilirlik programlarına ekleyin.</body></html> - Shortcuts Kısayollar @@ -3896,6 +3892,10 @@ Bu seçenek seçilmediyse, yetkili programlarda Mumble'ın genel kısayolla Shortcut input combinations Kısayol girdi birleşmeleri + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Atanmadı diff --git a/src/mumble/mumble_uk.ts b/src/mumble/mumble_uk.ts index 4176c3393ae..4941d52b568 100644 --- a/src/mumble/mumble_uk.ts +++ b/src/mumble/mumble_uk.ts @@ -3747,14 +3747,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &видалити - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Наразі Mumble може використовувати лише кнопки миші та клавіші-модифікатори клавіатури (Alt, Ctrl, Cmd тощо) для глобальних комбінацій клавіш.</p><p>Якщо вам потрібна більша гнучкість , ви можете ввімкнути <span style=" font-style:italic;">Доступ для допоміжних пристроїв</span> у налаштуваннях доступності системи. Однак зауважте, що ця зміна також потенційно дозволяє зловмисним програмам читати те, що вводиться на вашій клавіатурі.</p></body></html> - - - Open Accessibility Preferences - Відкрийте параметри доступності - Skip Пропустити @@ -3823,6 +3815,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above Це видалить вибраний запис із дерева «Налаштований ярлик» вище + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3865,10 +3865,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Наразі Mumble може використовувати лише кнопки миші та клавіші-модифікатори клавіатури (Alt, Ctrl, Cmd тощо) для глобальних комбінацій клавіш.</p><p>Якщо вам потрібна більша гнучкість , ви можете додати Mumble як надійну програму спеціальних можливостей у розділі «Безпека та конфіденційність» системних налаштувань вашого Mac.</p><p>На панелі налаштувань «Безпека та конфіденційність» перейдіть на Вкладка конфіденційності. Потім виберіть Спеціальні можливості (унизу) у списку ліворуч. Нарешті, додайте Mumble до списку надійних програм спеціальних можливостей.</body></html> - Shortcuts Ярлики @@ -3898,6 +3894,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations Комбінації швидкого введення + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned Непризначений diff --git a/src/mumble/mumble_zh_CN.ts b/src/mumble/mumble_zh_CN.ts index a4e790289eb..f298e26a417 100644 --- a/src/mumble/mumble_zh_CN.ts +++ b/src/mumble/mumble_zh_CN.ts @@ -3745,14 +3745,6 @@ Label of the server. This is what the server will be named like in your server l &Remove 删除(&R) - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - <html><head/><body><p>Mumble 目前仅支持鼠标按钮和键盘修饰键(Alt、Ctrl、Cmd 等)作为全局快捷键。</p><p>如果您希望更灵活,可以在系统辅助功能偏好设置中启用<span style=" font-style:italic;">辅助设备访问</span>。但请注意,此更改还可能允许恶意程序读取键盘上键入的内容。</p></body></html> - - - Open Accessibility Preferences - 打开辅助功能偏好设置 - Skip 跳过 @@ -3821,6 +3813,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above 这会从上面的“已配置的快捷键”树中删除选中的条目 + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3863,10 +3863,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - <html><head/><body><p>Mumble 目前仅支持鼠标按钮和键盘修饰键(Alt、Ctrl、Cmd 等)作为全局快捷键。</p><p>如果您希望更灵活,可以在 Mac 系统偏好设置的“安全性与隐私”中将 Mumble 添加为信任的辅助功能程序。</p><p>在偏好设置的“安全性与隐私”面板,转到“隐私”标签。然后在左侧的列表内选择“辅助功能”(靠近底部)。最后,在右侧添加 Mumble 作为信任的辅助功能程序</body></html> - Shortcuts 快捷键 @@ -3896,6 +3892,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations 快捷键输入组合 + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned 未分配 diff --git a/src/mumble/mumble_zh_HK.ts b/src/mumble/mumble_zh_HK.ts index abd1bf06d8e..7259bc8ff32 100644 --- a/src/mumble/mumble_zh_HK.ts +++ b/src/mumble/mumble_zh_HK.ts @@ -3695,14 +3695,6 @@ Label of the server. This is what the server will be named like in your server l &Remove &移除 - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - - Skip @@ -3769,6 +3761,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3811,10 +3811,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts @@ -3844,6 +3840,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned 未分配 diff --git a/src/mumble/mumble_zh_TW.ts b/src/mumble/mumble_zh_TW.ts index d5a28baad00..100fb55ce99 100644 --- a/src/mumble/mumble_zh_TW.ts +++ b/src/mumble/mumble_zh_TW.ts @@ -3721,14 +3721,6 @@ Label of the server. This is what the server will be named like in your server l &Remove 刪除(&R) - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can enable <span style=" font-style:italic;">Access for assistive devices</span> in the system's Accessibility preferences. However, please note that this change also potentially allows malicious programs to read what is typed on your keyboard.</p></body></html> - - - - Open Accessibility Preferences - 開啟無障礙選項 - Skip 略過 @@ -3795,6 +3787,14 @@ Without this option enabled, using Mumble's global shortcuts in privileged This removes the selected entry from the "Configured Shortcut" tree above + + <html><head/><body><p>Mumble needs <b>Input Monitoring</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + + + Open Privacy Settings + + GlobalShortcutButtons @@ -3837,10 +3837,6 @@ Without this option enabled, using Mumble's global shortcuts in privileged GlobalShortcutConfig - - <html><head/><body><p>Mumble can currently only use mouse buttons and keyboard modifier keys (Alt, Ctrl, Cmd, etc.) for global shortcuts.</p><p>If you want more flexibility, you can add Mumble as a trusted accessibility program in the Security & Privacy section of your Mac's System Preferences.</p><p>In the Security & Privacy preference pane, change to the Privacy tab. Then choose Accessibility (near the bottom) in the list to the left. Finally, add Mumble to the list of trusted accessibility programs.</body></html> - - Shortcuts 快速鍵 @@ -3870,6 +3866,10 @@ Without this option enabled, using Mumble's global shortcuts in privileged Shortcut input combinations + + <html><head/><body><p>Mumble needs <b>Accessibility</b> permission to use global shortcuts such as Push-to-Talk.</p></body></html> + + Unassigned 未分配