commit a9f1af16eba7a14d9a66b97d2047a80534ff6e6c
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed Oct 7 07:15:06 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=bridgedb
---
sw/LC_MESSAGES/bridgedb.po | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sw/LC_MESSAGES/bridgedb.po b/sw/LC_MESSAGES/bridgedb.po
index 5a0439cc8a..4ce74ac9c7 100644
--- a/sw/LC_MESSAGES/bridgedb.po
+++ b/sw/LC_MESSAGES/bridgedb.po
@@ -9,7 +9,…
[View More]7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'\n"
"POT-Creation-Date: 2020-05-14 14:21-0700\n"
-"PO-Revision-Date: 2020-10-07 06:34+0000\n"
+"PO-Revision-Date: 2020-10-07 06:53+0000\n"
"Last-Translator: Zaituni Njovu <zaituni(a)zainafoundationtz.org>\n"
"Language-Team: Swahili (http://www.transifex.com/otf/torproject/language/sw/)\n"
"MIME-Version: 1.0\n"
@@ -187,13 +187,13 @@ msgstr "Hapa ndio madaraja yako:"
msgid ""
"You have exceeded the rate limit. Please slow down! The minimum time between\n"
"emails is %s hours. All further emails during this time period will be ignored."
-msgstr "Umetumia zaidi ya kikomo chako. Tafadhali punguza! Muda unaohitajika kati ya barua pepe ni 1%s kwa saa. Hatuta pokea barua pepe, baada ya muda huu."
+msgstr "Umezidisha kiwango kilichowekwa. Tafadhari punguza mwendo! kiwango cha kati cha muda kati ya\nbaruapepe ni %smasaa. baruapepe zote zitakazoingia katika kipindi cha wakati huu zitapuuzwa"
#: bridgedb/strings.py:40
msgid ""
"If these bridges are not what you need, reply to this email with one of\n"
"the following commands in the message body:"
-msgstr ""
+msgstr "Kama haya madaraja siyo unayoyahitaji, jibu kupitia baruapepe hii na moja ya\namri zifuatazo katika kiini cha ujumbe:"
#. TRANSLATORS: Please DO NOT translate "BridgeDB".
#. TRANSLATORS: Please DO NOT translate "Pluggable Transports".
[View Less]
commit 34092628552a941e22ac5fb2715faf90da3ab1a0
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Thu Oct 3 10:53:43 2019 -0400
Bug 31607: App menu items stop working on macOS
Avoid re-creating the hidden window, since this causes the nsMenuBarX
object that is associated with the app menu to be freed (which in
turn causes all of the app menu items to stop working).
More detail: There should only be one hidden window.
XREMain::XRE_mainRun() contains …
[View More]an explicit call to create the
hidden window and that is the normal path by which it is created.
However, when Tor Launcher's wizard/progress window is opened during
startup, a hidden window is created earlier as a side effect of
calls to nsAppShellService::GetHiddenWindow(). Then, when
XREMain::XRE_mainRun() creates its hidden window, the original one
is freed which also causes the app menu's nsMenuBarX object which
is associated with that window to be destroyed. When that happens,
the menuGroupOwner property within each Cocoa menu items's MenuItemInfo
object is cleared. This breaks the link that is necessary for
NativeMenuItemTarget's menuItemHit method to dispatch a menu item
event.
---
xpfe/appshell/nsAppShellService.cpp | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/xpfe/appshell/nsAppShellService.cpp b/xpfe/appshell/nsAppShellService.cpp
index d70fe4e6b239..9c6a09c10a0f 100644
--- a/xpfe/appshell/nsAppShellService.cpp
+++ b/xpfe/appshell/nsAppShellService.cpp
@@ -93,6 +93,10 @@ void nsAppShellService::EnsureHiddenWindow() {
NS_IMETHODIMP
nsAppShellService::CreateHiddenWindow() {
+ if (mHiddenWindow) {
+ return NS_OK;
+ }
+
if (!XRE_IsParentProcess()) {
return NS_ERROR_NOT_IMPLEMENTED;
}
[View Less]