[tor-commits] [nyx/master] Update copyright dates for 2020

2020-01-05 Thread atagar
commit 796089d28debb1c4f6d4ee645214e3fc61068a12 Author: Damian Johnson Date: Thu Jan 2 11:59:34 2020 -0800 Update copyright dates for 2020 Happy new year! Bumping the dates for 2020... % find . -type f -iname '*.py' -exec sed -i 's/-2019/-2020/g' "{}" +; % grep -R

[tor-commits] [stem/master] Drop python 2 network testing normalization

2020-01-05 Thread atagar
commit 6d8af3896c9b8313e0b8fddefbdea60c30f120d5 Author: Damian Johnson Date: Sun Jan 5 13:02:27 2020 -0800 Drop python 2 network testing normalization Honestly this whole module can now be simplified quite a bit, but simply dropping the python 2.x bits for the moment. ---

[tor-commits] [stem/master] Drop python 3 specific instructions from PyPI

2020-01-05 Thread atagar
commit 56ff2d57125954f1edc5958b0b2366de0e8f55ee Author: Damian Johnson Date: Sun Jan 5 13:08:03 2020 -0800 Drop python 3 specific instructions from PyPI --- setup.py | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 8b6f1e4b..52b62dca

[tor-commits] [stem/master] Drop python 2.x exception normalization

2020-01-05 Thread atagar
commit 7d4b94de2ca18e6793adb3c931b63471ff6df1ef Author: Damian Johnson Date: Sun Jan 5 12:18:52 2020 -0800 Drop python 2.x exception normalization --- stem/socket.py | 10 ++ 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/stem/socket.py b/stem/socket.py index

[tor-commits] [stem/master] Drop python 2.6 -> 3.5 support

2020-01-05 Thread atagar
commit a396f57c3a55f34bb9f9d5976fc54fcc6561a8c4 Merge: 4e21371e bdd376bd Author: Damian Johnson Date: Sun Jan 5 13:28:37 2020 -0800 Drop python 2.6 -> 3.5 support As stated in our release announcement Stem 2.x will discontinue Python 2.x support now that the PSF has dropped

[tor-commits] [stem/master] Drop python 2 log object type workaround

2020-01-05 Thread atagar
commit aa6aaa2e6f664c9fc0a3f76b9405848dc06e47be Author: Damian Johnson Date: Sun Jan 5 12:50:58 2020 -0800 Drop python 2 log object type workaround --- stem/util/log.py | 8 +--- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/stem/util/log.py b/stem/util/log.py index

[tor-commits] [stem/master] Update FAQ concering compatible python versions

2020-01-05 Thread atagar
commit bdd376bd9e25dcee54d43a47e10329d92f83cafd Author: Damian Johnson Date: Sun Jan 5 13:27:40 2020 -0800 Update FAQ concering compatible python versions --- docs/faq.rst | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/faq.rst b/docs/faq.rst index

[tor-commits] [stem/master] Drop python 2.6 workaround for lack of setUpClass

2020-01-05 Thread atagar
commit 310e361494795e7d91c0e1dbaca22a5372a0 Author: Damian Johnson Date: Sun Jan 5 13:05:10 2020 -0800 Drop python 2.6 workaround for lack of setUpClass --- test/integ/manual.py | 3 --- test/unit/installation.py | 3 --- 2 files changed, 6 deletions(-) diff --git

[tor-commits] [stem/master] Drop BytesIO TODO comment

2020-01-05 Thread atagar
commit 21faefda9f4bdfafd7d454ecf2909daaad654140 Author: Damian Johnson Date: Sun Jan 5 12:31:41 2020 -0800 Drop BytesIO TODO comment BytesIO is great to concatenate large data or turn strings into file objects, but I'm kinda unsure why I wanted one here. This buffer both adds

[tor-commits] [stem/master] Differentiate bytes/unicode in hashes

2020-01-05 Thread atagar
commit 2006edc5ee1878bd5c98e99b3f00c987838ba297 Author: Damian Johnson Date: Sun Jan 5 12:54:42 2020 -0800 Differentiate bytes/unicode in hashes Huh. To avoid bulk refactoring our tests we included a small hack that hashed byte and unicode types to the same value. Said

[tor-commits] [stem/master] Don't suppress socket closing exceptions

2020-01-05 Thread atagar
commit e91d0ef934a700699403fd3172ee98f0a7915193 Author: Damian Johnson Date: Sun Jan 5 12:15:17 2020 -0800 Don't suppress socket closing exceptions We'll revert this if it becomes an issue in practice, but the comment says that we suppress exceptions due to python 2.x. I

[tor-commits] [stem/master] Drop check for python 2.6 style exception catching

2020-01-05 Thread atagar
commit f74f10dead195e82f3fb6d5d519e1f0fddf498f0 Author: Damian Johnson Date: Sun Jan 5 12:49:13 2020 -0800 Drop check for python 2.6 style exception catching --- stem/util/test_tools.py | 15 --- 1 file changed, 15 deletions(-) diff --git a/stem/util/test_tools.py

[tor-commits] [stem/master] Replace print function with lambda

2020-01-05 Thread atagar
commit ef177c52569d1fbcce8f3203d111c2b74fe5e0db Author: Damian Johnson Date: Sun Jan 5 12:36:59 2020 -0800 Replace print function with lambda --- stem/interpreter/__init__.py | 9 + 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/stem/interpreter/__init__.py

[tor-commits] [stem/master] Drop is_python_26 checks

2020-01-05 Thread atagar
commit 551fbde4845a78d3b0f885202dbd171d54d660aa Author: Damian Johnson Date: Fri Jan 3 14:40:55 2020 -0800 Drop is_python_26 checks Python 2.6 specific code paths are now obsolete. This is most notable within our tests because we can now use skipTest() without an extra return

[tor-commits] [stem/master] Drop queue fallback

2020-01-05 Thread atagar
commit bfafe1062511a62ddf612846e8d9ee1c05d19668 Author: Damian Johnson Date: Fri Jan 3 16:28:05 2020 -0800 Drop queue fallback --- stem/control.py | 7 +-- stem/descriptor/reader.py | 6 +- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/stem/control.py

[tor-commits] [stem/master] Drop urllib fallback

2020-01-05 Thread atagar
commit cc20b182cd2c4deaee0b793d2fbf05d550af280d Author: Damian Johnson Date: Fri Jan 3 16:15:26 2020 -0800 Drop urllib fallback Python 3.x renamed the urllib2 module to urllib.request. --- cache_fallback_directories.py | 9 ++--- cache_manual.py | 9 ++---

[tor-commits] [stem/master] tor-prompt requires the readline module

2020-01-05 Thread atagar
commit fb35e3f68477611b39729125e0ae0b3d6d6cfe82 Author: Damian Johnson Date: Fri Jan 3 14:13:22 2020 -0800 tor-prompt requires the readline module When compiling Python ourselves several modules (most notably compression) are unavailable by default. Turns out readline is one

[tor-commits] [stem/master] Disconnected sockets raise OSErrors

2020-01-05 Thread atagar
commit 7e1234c39f6a2e9f894d3c8e24a46e2921961acb Author: Damian Johnson Date: Sun Jan 5 12:40:56 2020 -0800 Disconnected sockets raise OSErrors Dropping exception normalization has caused our tests to fail with...

[tor-commits] [stem/master] Drop importlib fallback

2020-01-05 Thread atagar
commit bcdfbd993ab9008ae6d36be41989fdf3d387cc3f Author: Damian Johnson Date: Fri Jan 3 16:30:24 2020 -0800 Drop importlib fallback --- test/task.py | 14 ++ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/test/task.py b/test/task.py index 70ab5e4b..19026165

[tor-commits] [stem/master] Drop struct usage from Size class

2020-01-05 Thread atagar
commit 3b46d49e499b9a15c1657bb643d0fcb7bd505faa Author: Damian Johnson Date: Sat Jan 4 17:44:48 2020 -0800 Drop struct usage from Size class Python 3.x added better methods for integer conversion to/from bytes. --- stem/client/datatype.py | 38

[tor-commits] [stem/master] Stem development version tag

2020-01-05 Thread atagar
commit 4fd458d4debf2444023de9f745ce726f84da79cf Author: Damian Johnson Date: Thu Jan 2 11:33:40 2020 -0800 Stem development version tag As always, flagging our git codebase with a '-dev' version suffix. --- stem/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[tor-commits] [stem/master] Require Python 3.6 to run tests

2020-01-05 Thread atagar
commit c73023efe24891fac4ed32ce78e2630d1caeaabc Author: Damian Johnson Date: Thu Jan 2 11:47:22 2020 -0800 Require Python 3.6 to run tests Now that the PSF has removed Python 2.x support we are as well... https://www.python.org/doc/sunset-python-2/ Stem 2.x

[tor-commits] [stem/master] Drop lru_cache copy

2020-01-05 Thread atagar
commit 2e0fb02f938c6c2da3b31780753df908655a6ba8 Author: Damian Johnson Date: Fri Jan 3 13:56:14 2020 -0800 Drop lru_cache copy Python added lru_cache as a builtin in Python 3.2. We included a copy for Python 2.x compatibity and as such is no longer required. ---

[tor-commits] [stem/master] Drop StringIO fallback

2020-01-05 Thread atagar
commit 902ce4186be618f6597baf7e57aee2c74852df09 Author: Damian Johnson Date: Fri Jan 3 16:23:14 2020 -0800 Drop StringIO fallback Python 3.x moved StringIO into its io module. --- run_tests.py | 8 ++-- stem/descriptor/export.py| 8 ++--

[tor-commits] [stem/master] Resume 'GETINFO status/fresh-relay-descs' test

2020-01-05 Thread atagar
commit 4e21371e88662992fa21bc1f845c05c16ccee4f4 Author: Damian Johnson Date: Fri Jan 3 15:55:42 2020 -0800 Resume 'GETINFO status/fresh-relay-descs' test To work around these failures Nick suggested adding an Address line to our torrc...

[tor-commits] [stem/master] Drop 'GETINFO status/fresh-relay-descs' test

2020-01-05 Thread atagar
commit 983afa8a67e8ef013ff8c03afbd75d0219ea1188 Author: Damian Johnson Date: Fri Jan 3 15:32:58 2020 -0800 Drop 'GETINFO status/fresh-relay-descs' test This test fails ~30% of the time because tor has not yet determined its address...

[tor-commits] [stem/master] Replace mkdtemp() with TemporaryDirectory()

2020-01-05 Thread atagar
commit 85c81eea7fdad016384e734791cccf0e97132fc1 Author: Damian Johnson Date: Sat Jan 4 15:25:14 2020 -0800 Replace mkdtemp() with TemporaryDirectory() Minor python 3.x simplification now that we can use this builtin. --- stem/descriptor/collector.py | 13 ++---

[tor-commits] [stem/master] Open tarfile using 'with' statement

2020-01-05 Thread atagar
commit 45463c5a083965799b3500ed2715a43baf89b3aa Author: Damian Johnson Date: Sat Jan 4 15:21:59 2020 -0800 Open tarfile using 'with' statement Addressing one of our TODO comments. This one's kinda moot since we're dropping this whole module but... meh. ---

[tor-commits] [stem/master] Update copyright dates for 2020

2020-01-05 Thread atagar
commit e9b2536859b86eed554618e6b41ba1442a994d4b Author: Damian Johnson Date: Thu Jan 2 11:35:10 2020 -0800 Update copyright dates for 2020 Happy new year! Bumping the dates for 2020... % find . -type f -iname '*.py' -exec sed -i 's/-2019/-2020/g' "{}" +; % grep -R

[tor-commits] [stem/master] Use file's seekable() method

2020-01-05 Thread atagar
commit 8406d91ebf979503f84764aacd05d62d93cea470 Author: Damian Johnson Date: Sat Jan 4 17:21:15 2020 -0800 Use file's seekable() method Another small python 3.x simplification. --- stem/descriptor/__init__.py | 9 + stem/descriptor/export.py | 4 ++-- 2 files changed, 3

[tor-commits] [stem/master] Drop OrderedDict copy

2020-01-05 Thread atagar
commit a1eaf853775316e20649e49115a4e9839dfa4393 Author: Damian Johnson Date: Fri Jan 3 13:46:48 2020 -0800 Drop OrderedDict copy Python added OrderedDict as a builtin in Python 2.7. We included a copy for Python 2.6 compatibity and as such is no longer required. ---

[tor-commits] [stem/master] Drop is_python_3 checks

2020-01-05 Thread atagar
commit 1f2cc309a0785d2d5885cf16fb739707ead195c2 Author: Damian Johnson Date: Fri Jan 3 15:10:07 2020 -0800 Drop is_python_3 checks These checks now always evaluate to 'true'. Dropping these checks and their alternate code paths. --- stem/client/cell.py| 4

[tor-commits] [stem/master] Test interpreter using our python version

2020-01-05 Thread atagar
commit 9082fe1e15b1f5995743b28db4e70223054eb2e5 Author: Damian Johnson Date: Fri Jan 3 14:08:00 2020 -0800 Test interpreter using our python version Our interpreter's integ tests did not provide a python executable while shelling out, and as such used our default python

[tor-commits] [stem/master] Drop http.client fallback

2020-01-05 Thread atagar
commit ab83d8ded24d83005834d4f0d1d9fd40bbd38e96 Author: Damian Johnson Date: Fri Jan 3 16:17:14 2020 -0800 Drop http.client fallback Just a single normalization of HTTPMessage. --- test/unit/descriptor/remote.py | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff

[tor-commits] [stem/master] Drop mock fallback

2020-01-05 Thread atagar
commit 5691ff000a40059a2a9812e627574ac88cc7c754 Author: Damian Johnson Date: Fri Jan 3 15:54:22 2020 -0800 Drop mock fallback Python 3.3 added mock as a builtin. As such we no longer need to use python 2.x's standalone mock module as a fallback. --- run_tests.py

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit dcf95b8e0b4ded621c50fb21a98dfc1157e5a719 Author: Translation commit bot Date: Sun Jan 5 20:55:11 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+ru.po | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit 855e5a4e8c4f4ade2bb823113d0cc9a9d7b6da12 Author: Translation commit bot Date: Sun Jan 5 20:24:38 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+ru.po | 22 +- 1 file changed, 21 insertions(+), 1 deletion(-) diff

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit b53ec349613dc4d14616e9fa96ce988dccf94140 Author: Translation commit bot Date: Sun Jan 5 19:24:44 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+ru.po | 15 ++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git

[tor-commits] [translation/tbmanual-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot

2020-01-05 Thread translation
commit 2fd21bf40f69a725d34ed590ac533bec3ece2c01 Author: Translation commit bot Date: Sun Jan 5 19:21:07 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot --- contents+ar.po | 31 +++ 1 file changed, 15 insertions(+), 16

[tor-commits] [translation/tails-persistence-setup] https://gitweb.torproject.org/translation.git/commit/?h=tails-persistence-setup

2020-01-05 Thread translation
commit c92acfc52af9090c727252ad20b42e3f32b3966d Author: Translation commit bot Date: Sun Jan 5 19:20:33 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tails-persistence-setup --- pt_PT/pt_PT.po | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git

[tor-commits] [translation/tails-onioncircuits] https://gitweb.torproject.org/translation.git/commit/?h=tails-onioncircuits

2020-01-05 Thread translation
commit 74b8dea7c89640290d63800116d8d8175a20 Author: Translation commit bot Date: Sun Jan 5 19:20:22 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tails-onioncircuits --- pt_PT/onioncircuits.pot | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff

[tor-commits] [translation/tails-onioncircuits_completed] https://gitweb.torproject.org/translation.git/commit/?h=tails-onioncircuits_completed

2020-01-05 Thread translation
commit 1fc00f85c83a2ae8a34556f10c7a006171877693 Author: Translation commit bot Date: Sun Jan 5 19:20:28 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tails-onioncircuits_completed --- pt_PT/onioncircuits.pot | 9 + 1 file changed, 5 insertions(+), 4

[tor-commits] [translation/tails-perl5lib_completed] https://gitweb.torproject.org/translation.git/commit/?h=tails-perl5lib_completed

2020-01-05 Thread translation
commit 87bbd6fd58a43716951ddcc14fc531856687af37 Author: Translation commit bot Date: Sun Jan 5 19:19:50 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tails-perl5lib_completed --- pt_PT.po | 36 1 file changed, 36 insertions(+)

[tor-commits] [translation/tails-perl5lib] https://gitweb.torproject.org/translation.git/commit/?h=tails-perl5lib

2020-01-05 Thread translation
commit 6d3cbef5be8016d3b3725e3d9d18b12314cf5d3f Author: Translation commit bot Date: Sun Jan 5 19:19:31 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tails-perl5lib --- pt_PT.po | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pt_PT.po

[tor-commits] [translation/snowflakeaddon-messages.json_completed] https://gitweb.torproject.org/translation.git/commit/?h=snowflakeaddon-messages.json_completed

2020-01-05 Thread translation
commit 2d92ad194c9d54bd7164b680f5c41c80e1aab87d Author: Translation commit bot Date: Sun Jan 5 19:17:25 2020 + https://gitweb.torproject.org/translation.git/commit/?h=snowflakeaddon-messages.json_completed --- pt_PT/messages.json | 52

[tor-commits] [translation/orfox-stringsxml_completed] https://gitweb.torproject.org/translation.git/commit/?h=orfox-stringsxml_completed

2020-01-05 Thread translation
commit 9396182a04b13f6d4710c9ab5320fa3edf5c6d3b Author: Translation commit bot Date: Sun Jan 5 19:16:59 2020 + https://gitweb.torproject.org/translation.git/commit/?h=orfox-stringsxml_completed --- pt-PT/strings.xml | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-)

[tor-commits] [translation/snowflakeaddon-messages.json] https://gitweb.torproject.org/translation.git/commit/?h=snowflakeaddon-messages.json

2020-01-05 Thread translation
commit 694baa4b16ee57c117b610c9845bfd7e339e53f2 Author: Translation commit bot Date: Sun Jan 5 19:17:19 2020 + https://gitweb.torproject.org/translation.git/commit/?h=snowflakeaddon-messages.json --- pt_PT/messages.json | 36 ++-- 1 file changed, 18

[tor-commits] [translation/orfox-stringsxml] https://gitweb.torproject.org/translation.git/commit/?h=orfox-stringsxml

2020-01-05 Thread translation
commit fcf8ffd82338884cbb5b68207cbe3e61e5a058db Author: Translation commit bot Date: Sun Jan 5 19:16:52 2020 + https://gitweb.torproject.org/translation.git/commit/?h=orfox-stringsxml --- pt-PT/strings.xml | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git

[tor-commits] [translation/exoneratorproperties_completed] https://gitweb.torproject.org/translation.git/commit/?h=exoneratorproperties_completed

2020-01-05 Thread translation
commit 4b7f3dfbd68fce123b0f5005185530f2b127385e Author: Translation commit bot Date: Sun Jan 5 19:15:48 2020 + https://gitweb.torproject.org/translation.git/commit/?h=exoneratorproperties_completed --- pt_PT/exonerator.properties | 70 ++--- 1

[tor-commits] [translation/exoneratorproperties] https://gitweb.torproject.org/translation.git/commit/?h=exoneratorproperties

2020-01-05 Thread translation
commit 2b7f70c4078ce7574b1a1636a7d61c8e427e4c14 Author: Translation commit bot Date: Sun Jan 5 19:15:42 2020 + https://gitweb.torproject.org/translation.git/commit/?h=exoneratorproperties --- pt_PT/exonerator.properties | 20 ++-- 1 file changed, 10 insertions(+), 10

[tor-commits] [translation/whisperback] https://gitweb.torproject.org/translation.git/commit/?h=whisperback

2020-01-05 Thread translation
commit 27b49e30aafd1c63298c02403c068ea80be697a5 Author: Translation commit bot Date: Sun Jan 5 18:54:26 2020 + https://gitweb.torproject.org/translation.git/commit/?h=whisperback --- pt_PT/pt_PT.po | 36 ++-- 1 file changed, 18 insertions(+), 18

[tor-commits] [translation/tor-launcher-properties_completed] https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-properties_completed

2020-01-05 Thread translation
commit 447eb7363f2be2f1949153dc65f665d26997e75f Author: Translation commit bot Date: Sun Jan 5 18:53:43 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-properties_completed --- pt-PT/torlauncher.properties | 8 1 file changed, 4 insertions(+), 4

[tor-commits] [translation/tor-launcher-network-settings_completed] https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-network-settings_completed

2020-01-05 Thread translation
commit 804e6597ffa80b7551c0ad66572fe5d8b1e03a1e Author: Translation commit bot Date: Sun Jan 5 18:53:58 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-network-settings_completed --- pt-PT/network-settings.dtd | 12 ++-- 1 file changed, 6

[tor-commits] [translation/tor-launcher-properties] https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-properties

2020-01-05 Thread translation
commit f3933059d7ceb793ad18384c63e012b68d829a27 Author: Translation commit bot Date: Sun Jan 5 18:53:36 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-properties --- pt-PT/torlauncher.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[tor-commits] [translation/tor-launcher-network-settings] https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-network-settings

2020-01-05 Thread translation
commit 1361cb0a467d2d51f628eb43790a0aa60a7dcfc1 Author: Translation commit bot Date: Sun Jan 5 18:53:49 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-network-settings --- pt-PT/network-settings.dtd | 6 +++--- 1 file changed, 3 insertions(+), 3

[tor-commits] [translation/torbutton-torbuttonproperties_completed] https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties_completed

2020-01-05 Thread translation
commit e352e25ed92943bec473e729d40707de7bfabf5d Author: Translation commit bot Date: Sun Jan 5 18:52:20 2020 + https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties_completed --- pt-PT/torbutton.properties | 2 +- 1 file changed, 1 insertion(+), 1

[tor-commits] [translation/torbirdy_completed] https://gitweb.torproject.org/translation.git/commit/?h=torbirdy_completed

2020-01-05 Thread translation
commit 5aa6dbf68714008b72d39d88913571ca42f8832c Author: Translation commit bot Date: Sun Jan 5 18:51:45 2020 + https://gitweb.torproject.org/translation.git/commit/?h=torbirdy_completed --- pt_PT/torbirdy.dtd| 10 +- pt_PT/torbirdy.properties | 4 ++-- 2 files

[tor-commits] [translation/torbutton-brandproperties_completed] https://gitweb.torproject.org/translation.git/commit/?h=torbutton-brandproperties_completed

2020-01-05 Thread translation
commit 2b22d4492319861f8219dcea3b0332d39a8658c8 Author: Translation commit bot Date: Sun Jan 5 18:51:58 2020 + https://gitweb.torproject.org/translation.git/commit/?h=torbutton-brandproperties_completed --- pt-PT/brand.properties | 4 ++-- 1 file changed, 2 insertions(+), 2

[tor-commits] [translation/torbutton-brandproperties] https://gitweb.torproject.org/translation.git/commit/?h=torbutton-brandproperties

2020-01-05 Thread translation
commit 0bce79687608bb2c89314ce77d898d3aee06f63e Author: Translation commit bot Date: Sun Jan 5 18:51:51 2020 + https://gitweb.torproject.org/translation.git/commit/?h=torbutton-brandproperties --- pt-PT/brand.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[tor-commits] [translation/tor_animation_completed] https://gitweb.torproject.org/translation.git/commit/?h=tor_animation_completed

2020-01-05 Thread translation
commit 6fe1815a0df598c627c2d4a7364ed62618ed600c Author: Translation commit bot Date: Sun Jan 5 18:51:30 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tor_animation_completed --- pt_PT.srt | 94 +++ 1 file

[tor-commits] [translation/torbutton-torbuttonproperties] https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties

2020-01-05 Thread translation
commit f7254a00f4d125d86221f8811225af24c615866d Author: Translation commit bot Date: Sun Jan 5 18:52:14 2020 + https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties --- pt-PT/torbutton.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[tor-commits] [translation/torbirdy] https://gitweb.torproject.org/translation.git/commit/?h=torbirdy

2020-01-05 Thread translation
commit 85470755543c0e72d40bfd711faee9bc152062e2 Author: Translation commit bot Date: Sun Jan 5 18:51:37 2020 + https://gitweb.torproject.org/translation.git/commit/?h=torbirdy --- pt_PT/torbirdy.dtd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pt_PT/torbirdy.dtd

[tor-commits] [translation/tails-persistence-setup] https://gitweb.torproject.org/translation.git/commit/?h=tails-persistence-setup

2020-01-05 Thread translation
commit f06c1c379aa4c09fc3d5d401fa92fee634b78edf Author: Translation commit bot Date: Sun Jan 5 18:50:13 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tails-persistence-setup --- pt_PT/pt_PT.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[tor-commits] [translation/tails-iuk] https://gitweb.torproject.org/translation.git/commit/?h=tails-iuk

2020-01-05 Thread translation
commit a7acdfa0b78aab1bf87808ab0d23525d6650ed86 Author: Translation commit bot Date: Sun Jan 5 18:49:06 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tails-iuk --- pt_PT.po | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pt_PT.po b/pt_PT.po

[tor-commits] [translation/policies-code_of_conducttxtpot] https://gitweb.torproject.org/translation.git/commit/?h=policies-code_of_conducttxtpot

2020-01-05 Thread translation
commit b4c4aa48699395bcb690b9fcda282d09c12d76a3 Author: Translation commit bot Date: Sun Jan 5 18:46:57 2020 + https://gitweb.torproject.org/translation.git/commit/?h=policies-code_of_conducttxtpot --- code_of_conduct+pt_PT.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)

[tor-commits] [translation/liveusb-creator] https://gitweb.torproject.org/translation.git/commit/?h=liveusb-creator

2020-01-05 Thread translation
commit c1776b8d6e18ac4cb359a2fec009fd9e29d38087 Author: Translation commit bot Date: Sun Jan 5 18:46:06 2020 + https://gitweb.torproject.org/translation.git/commit/?h=liveusb-creator --- pt_PT/pt_PT.po | 116 - 1 file changed, 58

[tor-commits] [translation/donatepages-messagespot] https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot

2020-01-05 Thread translation
commit fddc9a561dbdbe05eee230fca435272e4f3fcc2d Author: Translation commit bot Date: Sun Jan 5 18:45:33 2020 + https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot --- locale/pt_PT/LC_MESSAGES/messages.po | 114 --- 1 file

[tor-commits] [translation/donatepages-messagespot] https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot

2020-01-05 Thread translation
commit f3b5cde618e86d4936e9706ae360bc470f5ccbf4 Author: Translation commit bot Date: Sun Jan 5 18:15:34 2020 + https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot --- locale/pt_PT/LC_MESSAGES/messages.po | 130 +-- 1 file

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit ff781cb72c9584d9cac1849af93b1279ae42758c Author: Translation commit bot Date: Sun Jan 5 17:54:37 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+ru.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contents+ru.po

[tor-commits] [translation/donatepages-messagespot] https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot

2020-01-05 Thread translation
commit d8cae79d9a8bc915afaf720a7f516889f561d814 Author: Translation commit bot Date: Sun Jan 5 17:45:35 2020 + https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot --- locale/pt_PT/LC_MESSAGES/messages.po | 123 +++ 1 file

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit edbbf4e8f366312f84c990206e2de102d4219e2a Author: Translation commit bot Date: Sun Jan 5 17:24:34 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+pt-PT.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[tor-commits] [translation/tpo-web] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web

2020-01-05 Thread translation
commit 95e77926a108c2eb465a9f072d90cf26671a9758 Author: Translation commit bot Date: Sun Jan 5 17:24:02 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tpo-web --- contents+pt-PT.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

[tor-commits] [translation/tbmanual-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot

2020-01-05 Thread translation
commit 0ef14d159164313097c9a4c87fcd64e7923e5922 Author: Translation commit bot Date: Sun Jan 5 17:20:56 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot --- contents+pt-PT.po | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff

[tor-commits] [translation/donatepages-messagespot] https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot

2020-01-05 Thread translation
commit efdf8eb93dd1d5662dc0ed90b3bd19f7947214cc Author: Translation commit bot Date: Sun Jan 5 17:15:41 2020 + https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot --- locale/pt_PT/LC_MESSAGES/messages.po | 87 ++-- 1 file

[tor-commits] [translation/communitytpo-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=communitytpo-contentspot

2020-01-05 Thread translation
commit 78f5e3fe137127a597666aaf80b5687201590504 Author: Translation commit bot Date: Sun Jan 5 17:15:29 2020 + https://gitweb.torproject.org/translation.git/commit/?h=communitytpo-contentspot --- contents+pt-PT.po | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-)

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit f37b10e87bd73c600908bfdda2aab714eb149c26 Author: Translation commit bot Date: Sun Jan 5 16:54:53 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+pt-PT.po | 25 +++-- 1 file changed, 15 insertions(+), 10 deletions(-)

[tor-commits] [translation/tpo-web] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web

2020-01-05 Thread translation
commit 0475fe9de5582eacecda2fa9e84b72fba7a172ea Author: Translation commit bot Date: Sun Jan 5 16:54:19 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tpo-web --- contents+pt-PT.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contents+pt-PT.po

[tor-commits] [translation/tor_outreach_md] https://gitweb.torproject.org/translation.git/commit/?h=tor_outreach_md

2020-01-05 Thread translation
commit 03e534a9e4edd78b514ea549c688a50074b944df Author: Translation commit bot Date: Sun Jan 5 16:54:07 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tor_outreach_md --- tor-outreach2019-2020-pt_PT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[tor-commits] [translation/tor_outreach_md_completed] https://gitweb.torproject.org/translation.git/commit/?h=tor_outreach_md_completed

2020-01-05 Thread translation
commit 191af9fe12ac34201efe788186352fbc8779d4cd Author: Translation commit bot Date: Sun Jan 5 16:54:13 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tor_outreach_md_completed --- tor-outreach2019-2020-pt_PT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[tor-commits] [translation/tbmanual-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot

2020-01-05 Thread translation
commit 37b99af8c74c73abc71e94e30877862010991e32 Author: Translation commit bot Date: Sun Jan 5 16:51:01 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot --- contents+pt-PT.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

[tor-commits] [translation/donatepages-messagespot] https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot

2020-01-05 Thread translation
commit 66df30a65f55f25986e5ffae951185970bd8ab79 Author: Translation commit bot Date: Sun Jan 5 16:45:34 2020 + https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot --- locale/pt_PT/LC_MESSAGES/messages.po | 4 ++-- 1 file changed, 2 insertions(+), 2

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit 3401493da38b1f82b45f66002695a743c2d753ae Author: Translation commit bot Date: Sun Jan 5 16:24:46 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+pt-PT.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[tor-commits] [translation/donatepages-messagespot] https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot

2020-01-05 Thread translation
commit b4ace8bf76f94f5f7ff8bcab4b1d1e225c9930c4 Author: Translation commit bot Date: Sun Jan 5 16:15:41 2020 + https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot --- locale/pt_PT/LC_MESSAGES/messages.po | 67 +--- 1 file

[tor-commits] [translation/communitytpo-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=communitytpo-contentspot

2020-01-05 Thread translation
commit b139de88512e7b2139b96d0e03aeed6aabf897e4 Author: Translation commit bot Date: Sun Jan 5 16:15:28 2020 + https://gitweb.torproject.org/translation.git/commit/?h=communitytpo-contentspot --- contents+pt-PT.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit 5649fd70e5d5a23aa9ad13888c27d61e9e04a5a9 Author: Translation commit bot Date: Sun Jan 5 15:54:48 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+pt-PT.po | 27 +++ 1 file changed, 15 insertions(+), 12

[tor-commits] [translation/tpo-web] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web

2020-01-05 Thread translation
commit 3448a05872f966d919022a2d33a3b85fdd60cdef Author: Translation commit bot Date: Sun Jan 5 15:54:15 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tpo-web --- contents+pt-PT.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

[tor-commits] [translation/tor_outreach_md] https://gitweb.torproject.org/translation.git/commit/?h=tor_outreach_md

2020-01-05 Thread translation
commit 3964ad485b5149f278c460cb8009ca72d173fd43 Author: Translation commit bot Date: Sun Jan 5 15:54:02 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tor_outreach_md --- tor-outreach2019-2020-pt_PT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[tor-commits] [translation/tor_outreach_md_completed] https://gitweb.torproject.org/translation.git/commit/?h=tor_outreach_md_completed

2020-01-05 Thread translation
commit dee00d8b3a994cba77721f8c505415f91ca83c52 Author: Translation commit bot Date: Sun Jan 5 15:54:08 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tor_outreach_md_completed --- tor-outreach2019-2020-pt_PT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[tor-commits] [translation/policies-code_of_conducttxtpot] https://gitweb.torproject.org/translation.git/commit/?h=policies-code_of_conducttxtpot

2020-01-05 Thread translation
commit d4f3402120a6aabeb29ce2f79c59ef6e3b934612 Author: Translation commit bot Date: Sun Jan 5 15:47:02 2020 + https://gitweb.torproject.org/translation.git/commit/?h=policies-code_of_conducttxtpot --- code_of_conduct+pt_PT.po | 10 +- 1 file changed, 5 insertions(+), 5

[tor-commits] [translation/donatepages-messagespot] https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot

2020-01-05 Thread translation
commit 7371221464b2e2151245fe0ec2b9ea2c919e22b9 Author: Translation commit bot Date: Sun Jan 5 15:45:33 2020 + https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot --- locale/pt_PT/LC_MESSAGES/messages.po | 25 ++--- 1 file changed, 14

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit 06003495f464affeb01f1cb86f8d39e067c8f2f3 Author: Translation commit bot Date: Sun Jan 5 14:54:27 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+ar.po | 17 + 1 file changed, 13 insertions(+), 4 deletions(-) diff --git

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit a804f0a127db43d6710697e8b0194a75001cf921 Author: Translation commit bot Date: Sun Jan 5 13:54:36 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+ar.po | 20 +++- 1 file changed, 15 insertions(+), 5 deletions(-) diff

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit b4c390b8915a4336b029f50853c1e7272ae3f82c Author: Translation commit bot Date: Sun Jan 5 13:24:30 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+ar.po | 9 - contents+ru.po | 6 +- 2 files changed, 13 insertions(+), 2

[tor-commits] [translation/orfox-stringsxml_completed] https://gitweb.torproject.org/translation.git/commit/?h=orfox-stringsxml_completed

2020-01-05 Thread translation
commit 3492bd81027c13df037c305698a484c911eff6b6 Author: Translation commit bot Date: Sun Jan 5 13:16:58 2020 + https://gitweb.torproject.org/translation.git/commit/?h=orfox-stringsxml_completed --- el/strings.xml | 9 + 1 file changed, 1 insertion(+), 8 deletions(-) diff

[tor-commits] [translation/orfox-stringsxml] https://gitweb.torproject.org/translation.git/commit/?h=orfox-stringsxml

2020-01-05 Thread translation
commit 6bd03f786f17bb159c8c4d90d2fe79305aa4a788 Author: Translation commit bot Date: Sun Jan 5 13:16:52 2020 + https://gitweb.torproject.org/translation.git/commit/?h=orfox-stringsxml --- el/strings.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit 470c68bc7b8c4f42bfe34635d53415c6e2ba3de0 Author: Translation commit bot Date: Sun Jan 5 12:54:44 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contents+ar.po

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit c1701494d0610a6ffe1cf7063f4d64b6bb03e76f Author: Translation commit bot Date: Sun Jan 5 12:25:00 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+ar.po | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit f5d9018b4877737cea648a0e5f30d30cffba326d Author: Translation commit bot Date: Sun Jan 5 11:54:21 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+ar.po | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git

[tor-commits] [translation/tbmanual-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot

2020-01-05 Thread translation
commit ff9dcae6b0cab3ec5930a6ad6306608c15101ba5 Author: Translation commit bot Date: Sun Jan 5 11:50:43 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tbmanual-contentspot --- contents+pl.po | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-01-05 Thread translation
commit 549b3ff00141913984e14e8456c008cd2166112f Author: Translation commit bot Date: Sun Jan 5 11:24:47 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+de.po | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git

  1   2   >