commit 29df13fec2e08a5968926806abd827f78c693bae Author: Sukhbir Singh sukhbir@torproject.org Date: Sat Nov 23 18:22:57 2013 -0500
Show Sender header in message pane (thanks to Carsten N.) --- components/torbirdy.js | 3 +++ import-translations.sh | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/components/torbirdy.js b/components/torbirdy.js index 7a0acfb..3c44372 100644 --- a/components/torbirdy.js +++ b/components/torbirdy.js @@ -156,6 +156,9 @@ const TorBirdyPrefs = { // https://lists.torproject.org/pipermail/tor-talk/2012-May/024395.html "mailnews.reply_header_type": 1, "mailnews.reply_header_authorwrote": "%s", + // Show Sender header in message pane. + // http://heise.de/-2044405 + "mailnews.headers.showSender": true,
/* Mail diff --git a/import-translations.sh b/import-translations.sh index 53a9531..39ee9dc 100755 --- a/import-translations.sh +++ b/import-translations.sh @@ -2,7 +2,7 @@
# Script to fetch and update translations. Modified from tor-launcher.
-BUNDLE_LOCALES="ar da eu he lv pa pt_BR tr cs de es fr it nl pl sv zh-CN ms-MY ja" +BUNDLE_LOCALES="ar da eu he lv pa pt-BR tr cs de es fr it nl pl sv zh-CN ms-MY ja"
if [ -d translation ]; then
tor-commits@lists.torproject.org