[tor-commits] [translation/tor-messenger-authproperties] Update translations for tor-messenger-authproperties

2016-02-29 Thread translation
commit 51347e56269dbfea3fbe01227fe0dfbf5774a505
Author: Translation commit bot 
Date:   Mon Feb 29 22:16:15 2016 +

Update translations for tor-messenger-authproperties
---
 sv/auth.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sv/auth.properties b/sv/auth.properties
index 66d2cac..a8045ba 100644
--- a/sv/auth.properties
+++ b/sv/auth.properties
@@ -1,6 +1,6 @@
 auth.title=Verifiera identiteten hos %S
 auth.yourFingerprint=Fingeravtryck för dig, %S:\n%S
-auth.theirFingerprint=Påstått fingeravtryck för %S:\n%S
+auth.theirFingerprint=Föreslaget fingeravtryck för %S:\n%S
 auth.help=Genom att verifiera din kontakts identitet hjälper du till att 
säkerställa att personen du pratar med är den de hävdar sig vara.
 auth.helpTitle=Hjälp med verifiering
 auth.question=Det här är frågan din kontakt ställde:\n\n%S\n\nAnge det 
hemliga svaret här (skiftlägeskänsligt):

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tor-messenger-authproperties_completed] Update translations for tor-messenger-authproperties_completed

2016-02-29 Thread translation
commit 0ffba924f1ad42b43b2845e154a469a421e6bd6f
Author: Translation commit bot 
Date:   Mon Feb 29 22:16:19 2016 +

Update translations for tor-messenger-authproperties_completed
---
 sv/auth.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sv/auth.properties b/sv/auth.properties
index 66d2cac..a8045ba 100644
--- a/sv/auth.properties
+++ b/sv/auth.properties
@@ -1,6 +1,6 @@
 auth.title=Verifiera identiteten hos %S
 auth.yourFingerprint=Fingeravtryck för dig, %S:\n%S
-auth.theirFingerprint=Påstått fingeravtryck för %S:\n%S
+auth.theirFingerprint=Föreslaget fingeravtryck för %S:\n%S
 auth.help=Genom att verifiera din kontakts identitet hjälper du till att 
säkerställa att personen du pratar med är den de hävdar sig vara.
 auth.helpTitle=Hjälp med verifiering
 auth.question=Det här är frågan din kontakt ställde:\n\n%S\n\nAnge det 
hemliga svaret här (skiftlägeskänsligt):

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor-messenger-build/master] Update participants list with new followers

2016-02-29 Thread arlo
commit df9d65b1bebb00d294fbc8187f0395c2c75c8f7a
Author: Arlo Breault 
Date:   Mon Feb 29 12:56:10 2016 -0800

Update participants list with new followers
---
 projects/instantbird/bug-955324.patch | 52 +++
 projects/instantbird/config   |  1 +
 2 files changed, 53 insertions(+)

diff --git a/projects/instantbird/bug-955324.patch 
b/projects/instantbird/bug-955324.patch
new file mode 100644
index 000..c16b0db
--- /dev/null
+++ b/projects/instantbird/bug-955324.patch
@@ -0,0 +1,52 @@
+# HG changeset patch
+# User Arlo Breault 
+# Date 1456775633 28800
+#  Mon Feb 29 11:53:53 2016 -0800
+# Node ID 6e6444a94b87a64b6ac316280f810709b632d461
+# Parent  f2acd8984cea1a68e57a2c30e93a3089a9bce76d
+Bug 955324 - Starting/stopping to follow someone doesn't update the 
participant list of the timeline
+
+diff --git a/chat/protocols/twitter/twitter.js 
b/chat/protocols/twitter/twitter.js
+--- a/chat/protocols/twitter/twitter.js
 b/chat/protocols/twitter/twitter.js
+@@ -569,16 +569,17 @@ Account.prototype = {
+ // friendships/destroy will return the user in case of success.
+ // Error cases would return a non 200 HTTP code and not call our callback.
+ this.signAndSend("1.1/friendships/destroy.json", null,
+  [["screen_name", aUserName]], function(aData, aXHR) {
+   let user = JSON.parse(aData);
+   if (!("id_str" in user))
+ return; // Unexpected response...
+   this._friends.delete(user.id_str);
++  this.timeline.removeParticipant(user.screen_name);
+   let date = aXHR.getResponseHeader("Date");
+   this.timeline.systemMessage(_("event.unfollow", user.screen_name), 
false,
+   new Date(date) / 1000);
+ }, null, this);
+   },
+   addBuddy: function(aTag, aName) {
+ this.follow(aName);
+   },
+@@ -775,19 +776,21 @@ Account.prototype = {
+ // Overwrite the existing _friends list (if any).
+ this._friends = new Set(msg.friends.map(aId => aId.toString()));
+   }
+   else if ("event" in msg) {
+ let user, event;
+ switch(msg.event) {
+   case "follow":
+ if (msg.source.screen_name == this.name) {
+-  this._friends.add(msg.target.id_str);
+   user = msg.target;
+   event = "follow";
++  this.setUserInfo(user);
++  this._friends.add(user.id_str);
++  this.timeline._ensureParticipantExists(user.screen_name);
+ }
+ else if (msg.target.screen_name == this.name) {
+   user = msg.source;
+   event = "followed";
+ }
+ if (user) {
+   this.setUserInfo(user);
+   this.timeline.systemMessage(_("event." + event, 
user.screen_name),
diff --git a/projects/instantbird/config b/projects/instantbird/config
index 8fb173e..b9d846c 100644
--- a/projects/instantbird/config
+++ b/projects/instantbird/config
@@ -76,6 +76,7 @@ input_files:
   - filename: trac-17896.patch
   - filename: trac-17494.patch
   - filename: trac-13312.patch
+  - filename: bug-955324.patch
   - filename: version.patch
   - filename: search-context-menu.patch
   - filename: search-preferences-xul.patch

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/mat-gui] Update translations for mat-gui

2016-02-29 Thread translation
commit 7b08989e8ebf98d656abe44a5f058d8514cc38e0
Author: Translation commit bot 
Date:   Mon Feb 29 20:45:33 2016 +

Update translations for mat-gui
---
 sv.po | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sv.po b/sv.po
index d0d66e2..d99890b 100644
--- a/sv.po
+++ b/sv.po
@@ -8,15 +8,15 @@
 # Foo Bar, 2014
 # Henry Blom , 2015
 # Jimmy Jägerström, 2013
-# T N , 2016
+# T , 2016
 # WinterFairy , 2013-2014
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-02-10 23:06+0100\n"
-"PO-Revision-Date: 2016-02-29 19:31+\n"
-"Last-Translator: T N \n"
+"PO-Revision-Date: 2016-02-29 20:27+\n"
+"Last-Translator: T \n"
 "Language-Team: Swedish 
(http://www.transifex.com/otf/torproject/language/sv/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -84,7 +84,7 @@ msgstr "Ta bort filer som inte stöds från arkivet"
 
 #: mat-gui:241
 msgid "Remove non-supported (and so non-anonymised) file from output archive"
-msgstr ""
+msgstr "Ta bort icke-stöd (och därmed ej anonymiserad) fil från utgångs 
arkiv"
 
 #: mat-gui:280
 msgid "Unknown"
@@ -96,7 +96,7 @@ msgstr "Icke-stödda"
 
 #: mat-gui:339
 msgid "Harmless fileformat"
-msgstr "Oskadligt filformat"
+msgstr "Ofarlig filformat"
 
 #: mat-gui:341
 msgid "Cant read file"

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/mat-gui_completed] Update translations for mat-gui_completed

2016-02-29 Thread translation
commit 9c3cc24469930823b9d114b8a76d88ebf607011c
Author: Translation commit bot 
Date:   Mon Feb 29 20:45:37 2016 +

Update translations for mat-gui_completed
---
 sv.po | 17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/sv.po b/sv.po
index 545a1cc..d99890b 100644
--- a/sv.po
+++ b/sv.po
@@ -8,14 +8,15 @@
 # Foo Bar, 2014
 # Henry Blom , 2015
 # Jimmy Jägerström, 2013
+# T , 2016
 # WinterFairy , 2013-2014
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-01-03 20:54+0100\n"
-"PO-Revision-Date: 2015-12-22 22:32+\n"
-"Last-Translator: Anders Nilsson \n"
+"POT-Creation-Date: 2016-02-10 23:06+0100\n"
+"PO-Revision-Date: 2016-02-29 20:27+\n"
+"Last-Translator: T \n"
 "Language-Team: Swedish 
(http://www.transifex.com/otf/torproject/language/sv/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -78,12 +79,12 @@ msgid "Reduce the produced PDF size and quality"
 msgstr "Reducera den producerade PDF-filens storlek och kvalitet"
 
 #: mat-gui:238
-msgid "Add unsupported file to archives"
-msgstr "Lägg till icke-stödd fil i arkiven"
+msgid "Remove unsupported file from archives"
+msgstr "Ta bort filer som inte stöds från arkivet"
 
 #: mat-gui:241
-msgid "Add non-supported (and so non-anonymised) file to output archive"
-msgstr "Lägg till fil utan stöd (och sålunda icke-anonymiserad) till utdata 
arkivet"
+msgid "Remove non-supported (and so non-anonymised) file from output archive"
+msgstr "Ta bort icke-stöd (och därmed ej anonymiserad) fil från utgångs 
arkiv"
 
 #: mat-gui:280
 msgid "Unknown"
@@ -95,7 +96,7 @@ msgstr "Icke-stödda"
 
 #: mat-gui:339
 msgid "Harmless fileformat"
-msgstr "Oskadligt filformat"
+msgstr "Ofarlig filformat"
 
 #: mat-gui:341
 msgid "Cant read file"

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tor-messenger-privproperties_completed] Update translations for tor-messenger-privproperties_completed

2016-02-29 Thread translation
commit 1cdd9bc5ed30f167719eaed6da662ab42ec466d5
Author: Translation commit bot 
Date:   Mon Feb 29 19:46:43 2016 +

Update translations for tor-messenger-privproperties_completed
---
 sv/priv.properties | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sv/priv.properties b/sv/priv.properties
index 50a8790..ae9acc8 100644
--- a/sv/priv.properties
+++ b/sv/priv.properties
@@ -1 +1,2 @@
-priv.account=Skapar privat nyckel för %S (%S) ...
+priv.account=Skapar privat nyckel
+priv.failed=Fel vid skapning av nyckel: %S

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/mat-gui] Update translations for mat-gui

2016-02-29 Thread translation
commit ab5fb7caac12d4ed2b36b6dac6bd788be2362aff
Author: Translation commit bot 
Date:   Mon Feb 29 19:45:32 2016 +

Update translations for mat-gui
---
 sv.po | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/sv.po b/sv.po
index cdfc8c1..d0d66e2 100644
--- a/sv.po
+++ b/sv.po
@@ -8,14 +8,15 @@
 # Foo Bar, 2014
 # Henry Blom , 2015
 # Jimmy Jägerström, 2013
+# T N , 2016
 # WinterFairy , 2013-2014
 msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-02-10 23:06+0100\n"
-"PO-Revision-Date: 2016-02-11 09:31+\n"
-"Last-Translator: carolyn \n"
+"PO-Revision-Date: 2016-02-29 19:31+\n"
+"Last-Translator: T N \n"
 "Language-Team: Swedish 
(http://www.transifex.com/otf/torproject/language/sv/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -79,7 +80,7 @@ msgstr "Reducera den producerade PDF-filens storlek och 
kvalitet"
 
 #: mat-gui:238
 msgid "Remove unsupported file from archives"
-msgstr ""
+msgstr "Ta bort filer som inte stöds från arkivet"
 
 #: mat-gui:241
 msgid "Remove non-supported (and so non-anonymised) file from output archive"

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [webwml/master] Drop projects/mentors we haven't heard from

2016-02-29 Thread atagar
commit 3ddd63efa5296a221daa8a295280b37b2546e2bf
Author: Damian Johnson 
Date:   Mon Feb 29 09:07:37 2016 -0800

Drop projects/mentors we haven't heard from

Dropping the folks we haven't heard from with regard to GSoC. For projects
where they're the last names remaining dropping the project itself too.
---
 getinvolved/en/volunteer.wml | 307 +--
 1 file changed, 3 insertions(+), 304 deletions(-)

diff --git a/getinvolved/en/volunteer.wml b/getinvolved/en/volunteer.wml
index aa53608..0b6d497 100644
--- a/getinvolved/en/volunteer.wml
+++ b/getinvolved/en/volunteer.wml
@@ -416,11 +416,7 @@ meetings around the world.
 
 
 Project Ideas:
-Tor Codebase Cleanup
-Improve test coverage in 
Tor
-Have the Tor daemon use more cores
-Help improve Tor hidden 
services
-Improved DNS support for Tor
+Help improve Tor hidden 
services
 
 
 
@@ -558,12 +554,6 @@ meetings around the world.
 block Tor. This has both a C and python implementation.
 
 
-
-Project Ideas:
-https://trac.torproject.org/projects/tor/wiki/doc/PluggableTransports#Helpneeded;>Various
 coding tasks 
-Build Better Pluggable 
Transports
-
-
 
 https://crypto.stanford.edu/flashproxy/;>Flash Proxy (https://gitweb.torproject.org/flashproxy.git;>code, 
 content.
 
 
-
-Project Ideas:
-Add Support for Reporting Pcaps to 
OoniBackend and OoniProbe
-
-
 
 TorPS (https://github.com/torps/torps;>code)
 
@@ -866,125 +851,13 @@ meetings around the world.
 
 
 
-
-
-Tor Codebase Cleanup
-
-Language: C
-
-Likely Mentors: David (dgoulet)
-
-
-The Tor code is more than 10 years old in places, and we haven't always had
-enough time or wisdom to write things as well as we could have.  Our unit
-test coverage is shamefully low, and the dependency graph of our modules is
-shamefully convoluted . We could use refactoring and unit tests!  Please
-look through the Tor source code and look for ugly or tricky code or
-dependencies -- the uglier and trickier the better -- and think about how
-you could make the code look better, read better, and (subject to testing)
-work better.
-
-
-
-If this is for a fun side-project, it would be great for you to work on
-anything that can be made better and more tested.  For an internship-level
-position, we'd hope that you could find a number of particularly tricky or
-knotty piece of the code to clean up, and aim for resolving the ugliest
-problems, not necessarily the easiest.
-
-
-
-For a big project here, it would be great to pick one of the major
-"submodules" of Tor -- path selection, node discovery, directory authority
-operations, directory service -- and refactor its interface completely, to
-minify and codify its points of contact with the rest of Tor.
-
-
-
-As part of your application for this project please identify one of the
-thorniest Tor functions and submit a patch refactoring it to be better. If
-you find this to be difficult then this likely isn't the project for
-you.
-
-
-
-
-
-Build Better Pluggable Transports
-
-Language: C, Python
-
-Likely Mentors: Ximin (infinity0)
-
-
-For Tor users in censored countries, we have a 
-pluggable transports framework that uses external programs to bypass
-censorship in different ways. Each of these have their own strengths and
-weaknesses.
-
-
-
-We have deployed obfsproxy, 
-http://crypto.stanford.edu/flashproxy/;>flashproxy, 
-http://www.cs.kau.se/philwint/scramblesuit/;>scramblesuit, 
-https://trac.torproject.org/projects/tor/wiki/doc/meek;>meek,
-and https://fteproxy.org/about;>FTE bridges into the main 
-Tor Browser.
-
-
-
-There are several possible directions for this project. Ideas include:
-  
-Address gaps or weaknesses in our existing pluggable transports
-  
-Flashproxy: Add WebRTC support to traverse NATs.
-Flashproxy: Improve the facilitator's resistance against DoS
-and poisoning attacks.
-  
-
-Finish and release our pluggable transport combiner, that chains
-several transports together to take advantage of orthogonal types of
-blocking resistance.
-Improve the UX for selecting the appropriate pluggable transport in
-the new Tor Browser, whilst maintaining user security.
-Implement a new pluggable transport that resists blocking in a
-novel way.
-
-  Impersonate a voice-over-IP protocol
-  Impersonate HTTP http://www.cs.utexas.edu/~amir/papers/parrot.pdf;>sufficiently
-  well that traffic will go through a HTTP-only proxy
-  Implement 

[tor-commits] [webwml/master] Add 'Make Stegotorus deployment ready' project idea

2016-02-29 Thread atagar
commit fb8533f7efb33698413519fa391f400265ba994d
Author: Damian Johnson 
Date:   Mon Feb 29 09:00:35 2016 -0800

Add 'Make Stegotorus deployment ready' project idea
---
 getinvolved/en/volunteer.wml | 138 +++
 1 file changed, 138 insertions(+)

diff --git a/getinvolved/en/volunteer.wml b/getinvolved/en/volunteer.wml
index 6c73977..aa53608 100644
--- a/getinvolved/en/volunteer.wml
+++ b/getinvolved/en/volunteer.wml
@@ -1527,6 +1527,144 @@ implementation.
 
 
 
+
+
+Make Stegotorus deployment ready
+
+Language: C++
+
+Likely Mentors: vmon
+
+
+https://github.com/TheTorProject/stegotorus/tree/master/src;>Stegotorus
+is a PT framework which streamline the development stealthier pluggable
+transport. An HTTP pluggable transport is already implemented in Stegotorus
+framework and can be used when encrypted payloads are throttled and only
+ephemeral connections are tolerated.
+
+
+
+The majority of work on Stegotorus is done and it can be deployed with a 
relatively minor improvements including:
+
+
+
+  #8098 A config file file for Stegotorus
+
+Stegotorus needs many configuration settings specially on the bridge
+side. This include also the configuration required by each steg module.
+Currently the configuration is fed to Stegotorus as command line
+arguments but a file like torrc is needed so all tweaking can be read
+from there.
+
+
+
+Current Status and work needed to be done: The code for reading the
+config file is written by SRI but it is not yet used in the Stegotorus
+to read the config.
+
+  
+
+  #8101 Debugging the transparent proxy
+
+Stegotorus http module uses other websites payload to hide and serve
+censored traffic. As such it needs to decide if the request is
+genuinely to the auxiliary website, in that case becomes a transparent
+proxy and serves the website content as requested, or if the request is
+actually a request to serve censored material which should be delivered
+to steg modules.
+
+
+
+Current Status: This is completely implemented. However, the 
transparent proxy sometimes crashes and need to be triaged, debugged and fixed.
+
+  
+
+  #11337 refactoring the steg module code
+
+The http steg module code, although not essentials to the core of the
+Stegotorus. needs some improvement and clean up. The solution is to
+refactor the steg modules as children of FileStegMod.
+
+
+
+Current status and work needed to be done: This has already been done
+but still needs testing and refactoring before it can be reliably merge
+to the master branch.
+
+  
+
+  #8089 Adding Elligator to Stegotorus handshake and test
+
+The current Stegotorus handshake is distinguishable from random byte
+string, which can be used to flag and detect Stegotorus traffic
+deterministically and need to be implemented similar to
+ScrambleSuite. Also because the capacity of client to server channel
+might be slim depending on the choice of steg module it is desirable
+to be implemented using Elliptic curve crypto. Hence, Elligator
+protocol is ideal solution for this situation. All we need is to 
replace Stegotorus handshake by Elligator.
+
+
+
+Current Status and work needed to be done: Elligator handshake code is
+included in stegotorus code base, it is only needed to be called by
+instead of the current handshake and be tested.
+
+  
+
+  Make Stegotorus memory safe by using shared pointers
+
+Stegotorus has large code base and it is not written in a memory safe
+languages. To facilitate its audit, we need to replace (almost all) use
+of pointers to shared pointers.
+
+
+
+Current Status: No progress has not been done.
+
+  
+
+  Security Audit and writing more unit test
+
+To be able to deploy Stegotorus for real world use we need to audit the
+code and write more unit test covering new aspects of the Stegotorus
+(new http transport, proxy server, Elligator handshake)
+
+
+
+Current Status: No progress has been done.
+
+  
+
+  SRI branch merging
+
+Stegotorus has been forked from the initial development from SRI. Now
+that SRI is hosting Stegotorus publicly it is desirable to merge the
+two branches so we can benefit from both developments.
+
+
+
+Current Status: No progress has been done.
+
+  
+
+  #8099 deterministic build
+
+To 

[tor-commits] [translation/tor-messenger-commandsproperties_completed] Update translations for tor-messenger-commandsproperties_completed

2016-02-29 Thread translation
commit 2432f4e158957ef7d8aef3f92e10e75173a92b70
Author: Translation commit bot 
Date:   Mon Feb 29 12:46:18 2016 +

Update translations for tor-messenger-commandsproperties_completed
---
 ko/commands.properties | 27 +++
 1 file changed, 27 insertions(+)

diff --git a/ko/commands.properties b/ko/commands.properties
new file mode 100644
index 000..6755bf9
--- /dev/null
+++ b/ko/commands.properties
@@ -0,0 +1,27 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+# LOCALIZATION NOTE (commands):
+#  %S is a comma separated list of command names.
+commands=명령: %S.\n자세한 정보는 /help 명령을 
사용하세요.
+# LOCALIZATION NOTE (noCommand, noHelp):
+#  %S is the command name the user typed.
+noCommand='%S' 명령이 없습니다.
+noHelp='%S' 명령에 대한 도움 메시지가 없습니다, 죄송합니다!
+
+sayHelpString=say 메시지: 명령 처리 없이 메시지를 보냅
니다.
+rawHelpString=raw 메시지: HTML 엔티티를 탈출하지 않고 
메시지를 보냅니다.
+helpHelpString=help 이름: 이름 명령에 대한 도움 
메시지를 보여주거나, 변수 없이 사용하면 사용 가능한 명ë 
¹ì–´ 목록을 보여줍니다.
+
+# LOCALIZATION NOTE (statusCommand):
+#  %1$S is replaced with a status command name
+#   (one of "back", "away", "busy", "dnd", or "offline").
+#  %2$S is replaced with the localized version of that status type
+#   (one of the 5 strings below).
+statusCommand=%1$S 상태 메시지: 선택적인 상태 메시지로 
상태를 %2$S로 설정합니다.
+back=사용 가능
+away=자리 비움
+busy=사용 불가능
+dnd=사용 불가능
+offline=오프라인

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tor-messenger-commandsproperties] Update translations for tor-messenger-commandsproperties

2016-02-29 Thread translation
commit daa26eaf86d39329c07ff69a7c6deac04e15ca88
Author: Translation commit bot 
Date:   Mon Feb 29 12:16:17 2016 +

Update translations for tor-messenger-commandsproperties
---
 ko/commands.properties | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/ko/commands.properties b/ko/commands.properties
index 54e5721..5d595e9 100644
--- a/ko/commands.properties
+++ b/ko/commands.properties
@@ -7,21 +7,21 @@
 commands=Commands: %S.\nUse /help command for more information.
 # LOCALIZATION NOTE (noCommand, noHelp):
 #  %S is the command name the user typed.
-noCommand=No '%S' command.
-noHelp=No help message for the '%S' command, sorry!
+noCommand='%S' 명령이 없습니다.
+noHelp='%S' 명령에 대한 도움 메시지가 없습니다, 죄송합니다!
 
-sayHelpString=say message: send a message without processing commands.
-rawHelpString=raw message: send a message without escaping HTML 
entities.
-helpHelpString=help name: show the help message for the name 
command, or the list of possible commands when used without parameter.
+sayHelpString=say 메시지: 명령 처리 없이 메시지를 보냅
니다.
+rawHelpString=raw 메시지: HTML 엔티티를 탈출하지 않고 
메시지를 보냅니다.
+helpHelpString=help 이름: 이름 명령에 대한 도움 
메시지를 보여주거나, 변수 없이 사용하면 사용 가능한 명ë 
¹ì–´ 목록을 보여줍니다.
 
 # LOCALIZATION NOTE (statusCommand):
 #  %1$S is replaced with a status command name
 #   (one of "back", "away", "busy", "dnd", or "offline").
 #  %2$S is replaced with the localized version of that status type
 #   (one of the 5 strings below).
-statusCommand=%1$S status message: set the status to %2$S with an 
optional status message.
-back=온라인
+statusCommand=%1$S 상태 메시지: 선택적인 상태 메시지로 
상태를 %2$S로 설정합니다.
+back=사용 가능
 away=자리 비움
-busy=unavailable
-dnd=unavailable
+busy=사용 불가능
+dnd=사용 불가능
 offline=오프라인

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/https_everywhere] Update translations for https_everywhere

2016-02-29 Thread translation
commit bf86c31d73038daddd6900ccc1c6c3fa41b8
Author: Translation commit bot 
Date:   Mon Feb 29 11:45:16 2016 +

Update translations for https_everywhere
---
 sv/https-everywhere.dtd | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/sv/https-everywhere.dtd b/sv/https-everywhere.dtd
index d6a4b12..9d5aa7d 100644
--- a/sv/https-everywhere.dtd
+++ b/sv/https-everywhere.dtd
@@ -14,7 +14,7 @@
 
 
 
-
+
 
 
 
@@ -38,19 +38,19 @@
 
 
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
 
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [translation/tails-misc_completed] Update translations for tails-misc_completed

2016-02-29 Thread translation
commit b03b6e53d3829f1b07e2ae3cbf9e9380086bab52
Author: Translation commit bot 
Date:   Mon Feb 29 11:45:55 2016 +

Update translations for tails-misc_completed
---
 sv.po | 82 +--
 1 file changed, 41 insertions(+), 41 deletions(-)

diff --git a/sv.po b/sv.po
index 4aab887..647ce37 100644
--- a/sv.po
+++ b/sv.po
@@ -18,8 +18,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-01-11 21:00+0100\n"
-"PO-Revision-Date: 2016-01-17 17:54+\n"
+"POT-Creation-Date: 2016-02-24 21:38+0100\n"
+"PO-Revision-Date: 2016-02-29 11:36+\n"
 "Last-Translator: Martin \n"
 "Language-Team: Swedish 
(http://www.transifex.com/otf/torproject/language/sv/)\n"
 "MIME-Version: 1.0\n"
@@ -53,30 +53,30 @@ msgid ""
 "\n"
 msgstr "Hjälp oss att fixa din bugg!\nLäs våra 
instruktioner för att rapportera buggar.\nInkludera inte 
mer personlig information än nödvändigt!\nOm att ge oss din 
e-postadress\n\nAtt ge oss din e-postadress gör det möjligt för oss 
att komma i kontakt med dig för att reda ut problemet. Det här är 
nödvändigt för den stora majoriteten av rapporterna vi tar emot eftersom att 
de flesta rapporter utan kontaktinformation är oanvändbara. Å andra sidan 
ger det också en möjlighet för obehöriga, som din e-post- eller 
Internetleverantör, att bekräfta att du använder Tails.\n\n"
 
-#: config/chroot_local-includes/usr/local/bin/electrum:14
+#: config/chroot_local-includes/usr/local/bin/electrum:17
 msgid "Persistence is disabled for Electrum"
 msgstr "\"Uthållighet\" är innaktiverat för bitcoin klienten Electrum"
 
-#: config/chroot_local-includes/usr/local/bin/electrum:16
+#: config/chroot_local-includes/usr/local/bin/electrum:19
 msgid ""
 "When you reboot Tails, all of Electrum's data will be lost, including your "
 "Bitcoin wallet. It is strongly recommended to only run Electrum when its "
 "persistence feature is activated."
 msgstr "När du startar om Tails, förloras all data tillhörande Electrum , 
inklusive Bitcoin plånboken. Det rekommenderas starkt att bara köra Electrum 
när dess uthållighet-funktion är aktiverad."
 
-#: config/chroot_local-includes/usr/local/bin/electrum:18
+#: config/chroot_local-includes/usr/local/bin/electrum:21
 msgid "Do you want to start Electrum anyway?"
 msgstr "Vill du starta Electrum ändå?"
 
-#: config/chroot_local-includes/usr/local/bin/electrum:20
-#: config/chroot_local-includes/usr/local/bin/icedove:22
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:36
+#: config/chroot_local-includes/usr/local/bin/electrum:23
+#: config/chroot_local-includes/usr/local/bin/icedove:23
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
 msgid "_Launch"
 msgstr "_Starta"
 
-#: config/chroot_local-includes/usr/local/bin/electrum:21
-#: config/chroot_local-includes/usr/local/bin/icedove:23
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
+#: config/chroot_local-includes/usr/local/bin/electrum:24
+#: config/chroot_local-includes/usr/local/bin/icedove:24
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
 msgid "_Exit"
 msgstr "_Avsluta"
 
@@ -237,11 +237,11 @@ msgstr "Utmatning från GnuPG:"
 msgid "Other messages provided by GnuPG:"
 msgstr "Andra meddelanden givna av GnuPG:"
 
-#: config/chroot_local-includes/usr/local/bin/icedove:18
+#: config/chroot_local-includes/usr/local/bin/icedove:19
 msgid "The Claws Mail persistence feature is activated."
 msgstr "Claws Mail persistens funktionen är aktiverad."
 
-#: config/chroot_local-includes/usr/local/bin/icedove:20
+#: config/chroot_local-includes/usr/local/bin/icedove:21
 msgid ""
 "If you have emails saved in Claws Mail, you should migrate"
@@ -322,40 +322,40 @@ msgstr "Det finns kända säkerhetsproblem i den här 
Tails versionen:"
 msgid "Known security issues"
 msgstr "Kända säkerhetsproblem"
 
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:51
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
 #, sh-format
 msgid "Network card ${nic} disabled"
 msgstr "Nätverkskortet ${nic} inaktiverad"
 
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:53
 #, sh-format
 msgid ""
 "MAC spoofing failed for network card ${nic_name} (${nic}) so it is 
temporarily disabled.\n"
 "You might prefer to restart Tails and disable MAC spoofing."
 msgstr "Misslyckades med att fejka MAC för nätverkskort ${nic_name} (${nic}) 
så det har temporärt inaktiverats.\nDu vill nog starta om Tails och 
inaktivera fejkning av MAC."
 
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:61
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
 msgid "All networking disabled"
 msgstr "Alla nätverk inaktiverade"
 
-#: 

[tor-commits] [translation/tails-misc] Update translations for tails-misc

2016-02-29 Thread translation
commit 5ee6c664239e6c2c1733095cd8208b141b0a7b63
Author: Translation commit bot 
Date:   Mon Feb 29 11:45:51 2016 +

Update translations for tails-misc
---
 sv.po | 82 +--
 1 file changed, 41 insertions(+), 41 deletions(-)

diff --git a/sv.po b/sv.po
index 4aab887..647ce37 100644
--- a/sv.po
+++ b/sv.po
@@ -18,8 +18,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: The Tor Project\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-01-11 21:00+0100\n"
-"PO-Revision-Date: 2016-01-17 17:54+\n"
+"POT-Creation-Date: 2016-02-24 21:38+0100\n"
+"PO-Revision-Date: 2016-02-29 11:36+\n"
 "Last-Translator: Martin \n"
 "Language-Team: Swedish 
(http://www.transifex.com/otf/torproject/language/sv/)\n"
 "MIME-Version: 1.0\n"
@@ -53,30 +53,30 @@ msgid ""
 "\n"
 msgstr "Hjälp oss att fixa din bugg!\nLäs våra 
instruktioner för att rapportera buggar.\nInkludera inte 
mer personlig information än nödvändigt!\nOm att ge oss din 
e-postadress\n\nAtt ge oss din e-postadress gör det möjligt för oss 
att komma i kontakt med dig för att reda ut problemet. Det här är 
nödvändigt för den stora majoriteten av rapporterna vi tar emot eftersom att 
de flesta rapporter utan kontaktinformation är oanvändbara. Å andra sidan 
ger det också en möjlighet för obehöriga, som din e-post- eller 
Internetleverantör, att bekräfta att du använder Tails.\n\n"
 
-#: config/chroot_local-includes/usr/local/bin/electrum:14
+#: config/chroot_local-includes/usr/local/bin/electrum:17
 msgid "Persistence is disabled for Electrum"
 msgstr "\"Uthållighet\" är innaktiverat för bitcoin klienten Electrum"
 
-#: config/chroot_local-includes/usr/local/bin/electrum:16
+#: config/chroot_local-includes/usr/local/bin/electrum:19
 msgid ""
 "When you reboot Tails, all of Electrum's data will be lost, including your "
 "Bitcoin wallet. It is strongly recommended to only run Electrum when its "
 "persistence feature is activated."
 msgstr "När du startar om Tails, förloras all data tillhörande Electrum , 
inklusive Bitcoin plånboken. Det rekommenderas starkt att bara köra Electrum 
när dess uthållighet-funktion är aktiverad."
 
-#: config/chroot_local-includes/usr/local/bin/electrum:18
+#: config/chroot_local-includes/usr/local/bin/electrum:21
 msgid "Do you want to start Electrum anyway?"
 msgstr "Vill du starta Electrum ändå?"
 
-#: config/chroot_local-includes/usr/local/bin/electrum:20
-#: config/chroot_local-includes/usr/local/bin/icedove:22
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:36
+#: config/chroot_local-includes/usr/local/bin/electrum:23
+#: config/chroot_local-includes/usr/local/bin/icedove:23
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
 msgid "_Launch"
 msgstr "_Starta"
 
-#: config/chroot_local-includes/usr/local/bin/electrum:21
-#: config/chroot_local-includes/usr/local/bin/icedove:23
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:37
+#: config/chroot_local-includes/usr/local/bin/electrum:24
+#: config/chroot_local-includes/usr/local/bin/icedove:24
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
 msgid "_Exit"
 msgstr "_Avsluta"
 
@@ -237,11 +237,11 @@ msgstr "Utmatning från GnuPG:"
 msgid "Other messages provided by GnuPG:"
 msgstr "Andra meddelanden givna av GnuPG:"
 
-#: config/chroot_local-includes/usr/local/bin/icedove:18
+#: config/chroot_local-includes/usr/local/bin/icedove:19
 msgid "The Claws Mail persistence feature is activated."
 msgstr "Claws Mail persistens funktionen är aktiverad."
 
-#: config/chroot_local-includes/usr/local/bin/icedove:20
+#: config/chroot_local-includes/usr/local/bin/icedove:21
 msgid ""
 "If you have emails saved in Claws Mail, you should migrate"
@@ -322,40 +322,40 @@ msgstr "Det finns kända säkerhetsproblem i den här 
Tails versionen:"
 msgid "Known security issues"
 msgstr "Kända säkerhetsproblem"
 
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:51
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
 #, sh-format
 msgid "Network card ${nic} disabled"
 msgstr "Nätverkskortet ${nic} inaktiverad"
 
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:53
 #, sh-format
 msgid ""
 "MAC spoofing failed for network card ${nic_name} (${nic}) so it is 
temporarily disabled.\n"
 "You might prefer to restart Tails and disable MAC spoofing."
 msgstr "Misslyckades med att fejka MAC för nätverkskort ${nic_name} (${nic}) 
så det har temporärt inaktiverats.\nDu vill nog starta om Tails och 
inaktivera fejkning av MAC."
 
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:61
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
 msgid "All networking disabled"
 msgstr "Alla nätverk inaktiverade"
 
-#: 

[tor-commits] [translation/https_everywhere_completed] Update translations for https_everywhere_completed

2016-02-29 Thread translation
commit b38803fbb04ac075ede3232dc67a0fefb300f1c7
Author: Translation commit bot 
Date:   Mon Feb 29 11:45:23 2016 +

Update translations for https_everywhere_completed
---
 sv/https-everywhere.dtd | 27 +++
 1 file changed, 15 insertions(+), 12 deletions(-)

diff --git a/sv/https-everywhere.dtd b/sv/https-everywhere.dtd
index e1ef946..9d5aa7d 100644
--- a/sv/https-everywhere.dtd
+++ b/sv/https-everywhere.dtd
@@ -14,6 +14,7 @@
 
 
 
+
 
 
 
@@ -37,17 +38,19 @@
 
 
 
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
 
-
-
-
-
-
-
 
-
-
-

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits