Hello community,

here is the log from the commit of package eolie for openSUSE:Factory checked 
in at 2019-05-24 11:30:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/eolie (Old)
 and      /work/SRC/openSUSE:Factory/.eolie.new.5148 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "eolie"

Fri May 24 11:30:58 2019 rev:15 rq:704814 version:0.9.62

Changes:
--------
--- /work/SRC/openSUSE:Factory/eolie/eolie.changes      2019-05-02 
19:20:44.413751630 +0200
+++ /work/SRC/openSUSE:Factory/.eolie.new.5148/eolie.changes    2019-05-24 
11:30:59.669412502 +0200
@@ -1,0 +2,6 @@
+Tue May 21 20:04:19 UTC 2019 - Antoine Belvire <antoine.belv...@opensuse.org>
+
+- Update to version 0.9.62:
+  * Bug fixes.
+
+-------------------------------------------------------------------

Old:
----
  eolie-0.9.61.tar.xz

New:
----
  eolie-0.9.62.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ eolie.spec ++++++
--- /var/tmp/diff_new_pack.pv1H1H/_old  2019-05-24 11:31:00.453412300 +0200
+++ /var/tmp/diff_new_pack.pv1H1H/_new  2019-05-24 11:31:00.457412299 +0200
@@ -20,7 +20,7 @@
 %global __requires_exclude typelib\\(Unity\\)
 
 Name:           eolie
-Version:        0.9.61
+Version:        0.9.62
 Release:        0
 Summary:        Web browser for GNOME
 License:        GPL-3.0-or-later

++++++ _service ++++++
--- /var/tmp/diff_new_pack.pv1H1H/_old  2019-05-24 11:31:00.497412289 +0200
+++ /var/tmp/diff_new_pack.pv1H1H/_new  2019-05-24 11:31:00.501412288 +0200
@@ -1,6 +1,6 @@
 <services>
   <service mode="disabled" name="tar_scm">
-    <param name="revision">0.9.61</param>
+    <param name="revision">0.9.62</param>
     <param name="scm">git</param>
     <param name="url">https://gitlab.gnome.org/World/eolie.git</param>
     <param name="versionformat">@PARENT_TAG@</param>

++++++ eolie-0.9.61.tar.xz -> eolie-0.9.62.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eolie-0.9.61/data/org.gnome.Eolie.appdata.xml.in 
new/eolie-0.9.62/data/org.gnome.Eolie.appdata.xml.in
--- old/eolie-0.9.61/data/org.gnome.Eolie.appdata.xml.in        2019-05-01 
14:11:55.000000000 +0200
+++ new/eolie-0.9.62/data/org.gnome.Eolie.appdata.xml.in        2019-05-21 
21:33:37.000000000 +0200
@@ -10,11 +10,10 @@
        <p>Eolie is a new GNOME web browser.</p>
  </description>
  <releases>
-    <release version="0.9.61" date="2019-05-01">
+    <release version="0.9.62" date="2019-05-21">
       <description>
         <ul>
-          <li>Enable 2 factor auth for Firefox sync</li>
-          <li>Disable hw acceleration (like in Epiphany)</li>
+          <li>Bug Fixes</li>
         </ul>
       </description>
     </release>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eolie-0.9.61/eolie/helper_dbus.py 
new/eolie-0.9.62/eolie/helper_dbus.py
--- old/eolie-0.9.61/eolie/helper_dbus.py       2019-05-01 14:11:55.000000000 
+0200
+++ new/eolie-0.9.62/eolie/helper_dbus.py       2019-05-21 21:33:37.000000000 
+0200
@@ -10,7 +10,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
 
-from gi.repository import Gio
+from gi.repository import Gio, GLib
 
 from eolie.define import PROXY_BUS, PROXY_PATH, PROXY_INTERFACE, App
 from eolie.logger import Logger
@@ -35,14 +35,17 @@
         try:
             bus = App().get_dbus_connection()
             proxy_bus = PROXY_BUS % page_id
+            cancellable = Gio.Cancellable()
+            GLib.timeout_add(2000, cancellable.cancel)
             Gio.DBusProxy.new(bus, Gio.DBusProxyFlags.NONE, None,
                               proxy_bus,
                               PROXY_PATH,
-                              PROXY_INTERFACE, None,
+                              PROXY_INTERFACE, cancellable,
                               self.__on_get_proxy,
                               call, dbus_args, callback, *args)
         except Exception as e:
             Logger.error("DBusHelper::call(): %s", e)
+            callback(None, None, *args)
 
     def connect(self, signal, callback, page_id):
         """
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eolie-0.9.61/eolie/popover_uri.py 
new/eolie-0.9.62/eolie/popover_uri.py
--- old/eolie-0.9.61/eolie/popover_uri.py       2019-05-01 14:11:55.000000000 
+0200
+++ new/eolie-0.9.62/eolie/popover_uri.py       2019-05-21 21:33:37.000000000 
+0200
@@ -89,24 +89,21 @@
         if favicon is not None:
             grid.attach(favicon, 0, 0, 1, 2)
 
-        self.__title = Gtk.Label.new(title)
+        uri = item.get_property("uri")
+        self.__title = Gtk.Label.new()
         self.__title.set_ellipsize(Pango.EllipsizeMode.END)
         self.__title.set_property("halign", Gtk.Align.START)
         self.__title.set_hexpand(True)
         self.__title.set_property('has-tooltip', True)
         self.__title.connect('query-tooltip', self.__on_query_tooltip)
         self.__title.show()
-        grid.attach(self.__title, 1, 0, 1, 1)
-
-        if favicon is not None:
-            uri = Gtk.Label.new(item.get_property("uri"))
-            uri.set_ellipsize(Pango.EllipsizeMode.END)
-            uri.set_property("halign", Gtk.Align.START)
-            uri.get_style_context().add_class("dim-label")
-            uri.set_property('has-tooltip', True)
-            uri.connect('query-tooltip', self.__on_query_tooltip)
-            uri.show()
-            grid.attach(uri, 1, 1, 1, 1)
+        if uri:
+            self.__title.set_markup("%s\n<span alpha='40000'>%s</span>" %
+                                    (GLib.markup_escape_text(title),
+                                     GLib.markup_escape_text(uri)))
+        else:
+            self.__title.set_text(title)
+        grid.attach(self.__title, 1, 0, 1, 2)
 
         if item_type == Type.HISTORY:
             dt = datetime.fromtimestamp(item.get_property("atime"))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eolie-0.9.61/eolie/sites_manager_child.py 
new/eolie-0.9.62/eolie/sites_manager_child.py
--- old/eolie-0.9.61/eolie/sites_manager_child.py       2019-05-01 
14:11:55.000000000 +0200
+++ new/eolie-0.9.62/eolie/sites_manager_child.py       2019-05-21 
21:33:37.000000000 +0200
@@ -118,7 +118,9 @@
         """
         if event in [WebKit2.LoadEvent.STARTED,
                      WebKit2.LoadEvent.COMMITTED]:
-            self.__label.set_text(webview.get_uri())
+            uri = webview.get_uri()
+            if uri is not None:
+                self.__label.set_text(uri)
 
     def __on_webview_title_changed(self, webview, title):
         """
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eolie-0.9.61/eolie/toolbar_title.py 
new/eolie-0.9.62/eolie/toolbar_title.py
--- old/eolie-0.9.61/eolie/toolbar_title.py     2019-05-01 14:11:55.000000000 
+0200
+++ new/eolie-0.9.62/eolie/toolbar_title.py     2019-05-21 21:33:37.000000000 
+0200
@@ -570,15 +570,20 @@
                 GLib.idle_add(self.__window.close_popovers)
                 parsed = urlparse(uri)
                 # Search a missing scheme
-                if uri.find(".") != -1 and not parsed.scheme:
-                    db_uri = App().history.get_match(uri)
-                    if db_uri is not None:
-                        db_parsed = urlparse(db_uri)
-                        if db_parsed.netloc.startswith("www.") and\
-                                not parsed.netloc.startswith("www."):
-                            uri = "%s://www.%s" % (db_parsed.scheme, uri)
-                        else:
-                            uri = "%s://%s" % (db_parsed.scheme, uri)
+                if uri.find(".") != -1 and\
+                        uri.find(" ") == -1 and\
+                        not parsed.scheme:
+                    # Add missing www.
+                    if not uri.startswith("www."):
+                        db_uri = App().history.get_match("://www." + uri)
+                        if db_uri is not None:
+                            uri = "www." + uri
+                    # Add missing scheme
+                    db_uri = App().history.get_match("https://"; + uri)
+                    if db_uri is None:
+                        uri = "http://"; + uri
+                    else:
+                        uri = "https://"; + uri
                 self.__window.container.load_uri(uri)
                 self.__window.container.set_expose(False)
                 if self.__entry_changed_id is not None:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eolie-0.9.61/eolie/utils.py 
new/eolie-0.9.62/eolie/utils.py
--- old/eolie-0.9.61/eolie/utils.py     2019-05-01 14:11:55.000000000 +0200
+++ new/eolie-0.9.62/eolie/utils.py     2019-05-21 21:33:37.000000000 +0200
@@ -80,8 +80,6 @@
     favicon_uri = None
     try:
         parsed = urlparse(uri)
-        if parsed.path == "/":
-            return None
         for uri in [parsed.netloc + parsed.path, parsed.netloc]:
             sql = sqlite3.connect(favicons_path, 600.0)
             result = sql.execute("SELECT url\
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eolie-0.9.61/eolie/webview_artwork.py 
new/eolie-0.9.62/eolie/webview_artwork.py
--- old/eolie-0.9.61/eolie/webview_artwork.py   2019-05-01 14:11:55.000000000 
+0200
+++ new/eolie-0.9.62/eolie/webview_artwork.py   2019-05-21 21:33:37.000000000 
+0200
@@ -119,7 +119,6 @@
             @param uri as str
             @param initial_uri as str
         """
-        resized = None
         # Save webview favicon
         if surface is not None:
             if surface.get_width() >= ArtSize.FAVICON:
@@ -130,12 +129,10 @@
             exists = App().art.exists(uri, favicon_type)
             if not exists:
                 resized = resize_favicon(surface)
-        # We wait for a better favicon
-        if resized is not None:
-            self.__save_favicon_to_cache(resized,
-                                         uri,
-                                         initial_uri,
-                                         favicon_type)
+                self.__save_favicon_to_cache(resized,
+                                             uri,
+                                             initial_uri,
+                                             favicon_type)
 
     def __save_favicon_to_cache(self, surface, uri, initial_uri, favicon_type):
         """
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eolie-0.9.61/meson.build new/eolie-0.9.62/meson.build
--- old/eolie-0.9.61/meson.build        2019-05-01 14:11:55.000000000 +0200
+++ new/eolie-0.9.62/meson.build        2019-05-21 21:33:37.000000000 +0200
@@ -1,5 +1,5 @@
 project('eolie', 'c',
-  version: '0.9.61',
+  version: '0.9.62',
   meson_version: '>= 0.40.0',
 )
 i18n = import('i18n')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eolie-0.9.61/org.gnome.Eolie.json 
new/eolie-0.9.62/org.gnome.Eolie.json
--- old/eolie-0.9.61/org.gnome.Eolie.json       2019-05-01 14:11:55.000000000 
+0200
+++ new/eolie-0.9.62/org.gnome.Eolie.json       2019-05-21 21:33:37.000000000 
+0200
@@ -4,6 +4,8 @@
   "runtime-version": "master",
   "sdk": "org.gnome.Sdk",
   "command": "eolie",
+  "tags": ["devel", "development", "nightly"],
+  "desktop-file-name-prefix": "(Development) ",
   "finish-args": [
     "--share=ipc",
     "--share=network",
@@ -24,8 +26,7 @@
     "--talk-name=ca.desrt.dconf",
     "--env=DCONF_USER_CONFIG_DIR=.config/dconf"
   ],
-  "modules": [
-    {
+  "modules": [{
       "name": "gst-libav",
       "config-opts": [
         "--disable-gtk-doc"
@@ -34,13 +35,11 @@
         "*.la",
         "/share/gtk-doc"
       ],
-      "sources": [
-        {
-          "type": "archive",
-          "url": 
"https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.12.4.tar.xz";,
-          "sha256": 
"2a56aa5d2d8cd912f2bce17f174713d2c417ca298f1f9c28ee66d4aa1e1d9e62"
-        }
-      ]
+      "sources": [{
+        "type": "archive",
+        "url": 
"https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.14.4.tar.xz";,
+        "sha256": 
"dfd78591901df7853eab7e56a86c34a1b03635da0d3d56b89aa577f1897865da"
+      }]
     },
     {
       "name": "gst-plugins-ugly",
@@ -51,13 +50,11 @@
         "*.la",
         "/share/gtk-doc"
       ],
-      "sources": [
-        {
-          "type": "archive",
-          "url": 
"https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.12.4.tar.xz";,
-          "sha256": 
"1c165b8d888ed350acd8e6ac9f6fe06508e6fcc0a3afc6ccc9fbeb30df9be522"
-        }
-      ]
+      "sources": [{
+        "type": "archive",
+        "url": 
"https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.14.4.tar.xz";,
+        "sha256": 
"ac02d837f166c35ff6ce0738e281680d0b90052cfb1f0255dcf6aaca5f0f6d23"
+      }]
     },
     {
       "name": "enchant",
@@ -67,13 +64,11 @@
         "*.la",
         "/share"
       ],
-      "sources": [
-        {
-          "type": "archive",
-          "url": 
"https://github.com/AbiWord/enchant/releases/download/v2.2.3/enchant-2.2.3.tar.gz";,
-          "sha256": 
"abd8e915675cff54c0d4da5029d95c528362266557c61c7149d53fa069b8076d"
-        }
-      ]
+      "sources": [{
+        "type": "archive",
+        "url": 
"https://github.com/AbiWord/enchant/releases/download/v2.2.3/enchant-2.2.3.tar.gz";,
+        "sha256": 
"abd8e915675cff54c0d4da5029d95c528362266557c61c7149d53fa069b8076d"
+      }]
     },
     {
       "name": "gtkspell",
@@ -81,41 +76,47 @@
         "*.la",
         "/share/gtk-doc"
       ],
-      "sources": [
-        {
-          "type": "archive",
-          "url": 
"https://sourceforge.net/projects/gtkspell/files/3.0.10/gtkspell3-3.0.10.tar.xz";,
-          "sha256": 
"b040f63836b347eb344f5542443dc254621805072f7141d49c067ecb5a375732"
-        }
-      ]
+      "sources": [{
+        "type": "archive",
+        "url": 
"https://sourceforge.net/projects/gtkspell/files/3.0.10/gtkspell3-3.0.10.tar.xz";,
+        "sha256": 
"b040f63836b347eb344f5542443dc254621805072f7141d49c067ecb5a375732"
+      }]
     },
     {
       "name": "python-requests",
       "buildsystem": "simple",
       "build-commands": [
-        "pip3 install --prefix=/app requests-2.14.2-py2.py3-none-any.whl"
+        "pip3 install --prefix=/app requests-2.21.0-py2.py3-none-any.whl"
       ],
-      "sources": [
-        {
-          "type": "file",
-          "url": 
"https://pypi.python.org/packages/e4/b0/286e8a936158e5cc5791d5fa3bc4b1d5a7e1ff4e5b3f3766b63d8e97708a/requests-2.14.2-py2.py3-none-any.whl#md5=a1b2f02e7ba45dff7c76f621cde042c4";,
-          "sha256": 
"3b39cde35be51762885631cf586f4dc2284951b44d479a4454020758d767cc2f"
-        }
-      ]
+      "sources": [{
+        "type": "file",
+        "url": 
"https://files.pythonhosted.org/packages/7d/e3/20f3d364d6c8e5d2353c72a67778eb189176f08e873c9900e10c0287b84b/requests-2.21.0-py2.py3-none-any.whl";,
+        "sha256": 
"7bf2a778576d825600030a110f3c0e3e8edc51dfaafe1c146e39a2027784957b"
+      }]
     },
     {
       "name": "python-beautifulsoup4",
       "buildsystem": "simple",
       "build-commands": [
-        "pip3 install --prefix=/app beautifulsoup4-4.6.0-py3-none-any.whl"
+        "pip3 install --prefix=/app beautifulsoup4-4.7.1-py3-none-any.whl"
       ],
-      "sources": [
-        {
-          "type": "file",
-          "url": 
"https://pypi.python.org/packages/9e/d4/10f46e5cfac773e22707237bfcd51bbffeaf0a576b0a847ec7ab15bd7ace/beautifulsoup4-4.6.0-py3-none-any.whl#md5=f6becf1889e5697734cc98798d2f0111";,
-          "sha256": 
"11a9a27b7d3bddc6d86f59fb76afb70e921a25ac2d6cc55b40d072bd68435a76"
-        }
-      ]
+      "sources": [{
+        "type": "file",
+        "url": 
"https://files.pythonhosted.org/packages/1d/5d/3260694a59df0ec52f8b4883f5d23b130bc237602a1411fa670eae12351e/beautifulsoup4-4.7.1-py3-none-any.whl";,
+        "sha256": 
"034740f6cb549b4e932ae1ab975581e6103ac8f942200a0e9759065984391858"
+      }],
+      "modules": [{
+        "name": "soupsieve",
+        "buildsystem": "simple",
+        "build-commands": [
+          "pip3 install --prefix=/app soupsieve-1.9.1-py2.py3-none-any.whl"
+        ],
+        "sources": [{
+          "type": "file",
+          "url": 
"https://files.pythonhosted.org/packages/b9/a5/7ea40d0f8676bde6e464a6435a48bc5db09b1a8f4f06d41dd997b8f3c616/soupsieve-1.9.1-py2.py3-none-any.whl";,
+          "sha256": 
"6898e82ecb03772a0d82bd0d0a10c0d6dcc342f77e0701d0ec4a8271be465ece"
+        }]
+      }]
     },
     {
       "name": "six",
@@ -123,27 +124,23 @@
       "build-commands": [
         "python3 setup.py install --prefix=/app"
       ],
-      "sources": [
-        {
-          "type": "archive",
-          "url": "https://github.com/benjaminp/six/archive/1.11.0.tar.gz";,
-          "sha256": 
"927dc6fcfccd4e32e1ce161a20bf8cda39d8c9d5f7a845774486907178f69bd4"
-        }
-      ]
+      "sources": [{
+        "type": "archive",
+        "url": "https://github.com/benjaminp/six/archive/1.12.0.tar.gz";,
+        "sha256": 
"0ce7aef70d066b8dda6425c670d00c25579c3daad8108b3e3d41bef26003c852"
+      }]
     },
     {
       "name": "mohawk",
       "buildsystem": "simple",
       "build-commands": [
-        "python3 setup.py install --prefix=/app --root=/"
+        "pip3 install --prefix=/app mohawk-1.0.0-py2-none-any.whl"
       ],
-      "sources": [
-        {
-          "type": "archive",
-          "url": 
"https://pypi.python.org/packages/19/22/10f696548a8d41ad41b92ab6c848c60c669e18c8681c179265ce4d048b03/mohawk-0.3.4.tar.gz#md5=b65196bb05b9c96d9286c7cd6b110920";,
-          "sha256": 
"e98b331d9fa9ece7b8be26094cbe2d57613ae882133cc755167268a984bc0ab3"
-        }
-      ]
+      "sources": [{
+        "type": "archive",
+        "url": 
"https://files.pythonhosted.org/packages/b8/ac/b5b421dddcd731fb3dfb1b473d96a237d2f1997b21dcdaed8d4c21792bd9/mohawk-1.0.0-py2-none-any.whl";,
+        "sha256": 
"aa57e6626a6ea323ab714779f23734de1d1feca8cb6fc00b65e65ce115c1696a"
+      }]
     },
     {
       "name": "requests_hawk",
@@ -151,27 +148,23 @@
       "build-commands": [
         "pip3 install --prefix=/app requests_hawk-1.0.0-py2.py3-none-any.whl"
       ],
-      "sources": [
-        {
-          "type": "file",
-          "url": 
"https://pypi.python.org/packages/3b/6a/d1aa3fab0b788bf4cf3d60898ff6b80852c8a6d82a8a7ac6d163487b8e30/requests_hawk-1.0.0-py2.py3-none-any.whl#md5=621d1ba4dabfc3ace8a3472753807d04";,
-          "sha256": 
"c2626ab31ebef0c81b97781c44c2275bfcc6d8e8520fc4ced495f0f386f8fe26"
-        }
-      ]
+      "sources": [{
+        "type": "file",
+        "url": 
"https://files.pythonhosted.org/packages/3b/6a/d1aa3fab0b788bf4cf3d60898ff6b80852c8a6d82a8a7ac6d163487b8e30/requests_hawk-1.0.0-py2.py3-none-any.whl";,
+        "sha256": 
"c2626ab31ebef0c81b97781c44c2275bfcc6d8e8520fc4ced495f0f386f8fe26"
+      }]
     },
     {
       "name": "hawkauthlib",
       "buildsystem": "simple",
       "build-commands": [
-        "python3 setup.py install --prefix=/app --root=/"
+        "pip3 install --prefix=/app hawkauthlib-2.0.0-py2.py3-none-any.whl"
       ],
-      "sources": [
-        {
-          "type": "archive",
-          "url": 
"https://pypi.python.org/packages/46/62/54729cbfc8d115f07f41f74a43a8e3711be358541295ff76fcec5bfd81d2/hawkauthlib-0.1.1.tar.gz#md5=86cd5e4577397fbb75975dd8b6fb939e";,
-          "sha256": 
"7ac93c892e7629721dde196193c9af3bde1f20540945569f7c7d34d3ea92680a"
-        }
-      ]
+      "sources": [{
+        "type": "archive",
+        "url": 
"https://files.pythonhosted.org/packages/53/ec/23dd5cbd5e950543fdd30d91ddac4f56e395d14316677aa4cb78a029f8e2/hawkauthlib-2.0.0-py2.py3-none-any.whl";,
+        "sha256": 
"935878d3a75832aa76f78ddee13491f1466cbd69a8e7e4248902763cf9953ba9"
+      }]
     },
     {
       "name": "cffi",
@@ -179,13 +172,11 @@
       "build-commands": [
         "python3 setup.py install --prefix=/app --root=/"
       ],
-      "sources": [
-        {
-          "type": "archive",
-          "url": 
"https://pypi.python.org/packages/5b/b9/790f8eafcdab455bcd3bd908161f802c9ce5adbf702a83aa7712fcc345b7/cffi-1.10.0.tar.gz#md5=2b5fa41182ed0edaf929a789e602a070";,
-          "sha256": 
"b3b02911eb1f6ada203b0763ba924234629b51586f72a21faacc638269f4ced5"
-        }
-      ]
+      "sources": [{
+        "type": "archive",
+        "url": 
"https://files.pythonhosted.org/packages/64/7c/27367b38e6cc3e1f49f193deb761fe75cda9f95da37b67b422e62281fcac/cffi-1.12.2.tar.gz";,
+        "sha256": 
"e113878a446c6228669144ae8a56e268c91b7f1fafae927adc4879d9849e0ea7"
+      }]
     },
     {
       "name": "pycparser",
@@ -193,13 +184,11 @@
       "build-commands": [
         "python3 setup.py install --prefix=/app --root=/"
       ],
-      "sources": [
-        {
-          "type": "archive",
-          "url": 
"https://pypi.python.org/packages/be/64/1bb257ffb17d01f4a38d7ce686809a736837ad4371bcc5c42ba7a715c3ac/pycparser-2.17.tar.gz#md5=ca98dcb50bc1276f230118f6af5a40c7";,
-          "sha256": 
"0aac31e917c24cb3357f5a4d5566f2cc91a19ca41862f6c3c22dc60a629673b6"
-        }
-      ]
+      "sources": [{
+        "type": "archive",
+        "url": 
"https://files.pythonhosted.org/packages/68/9e/49196946aee219aead1290e00d1e7fdeab8567783e83e1b9ab5585e6206a/pycparser-2.19.tar.gz";,
+        "sha256": 
"a988718abfad80b6b157acce7bf130a30876d27603738ac39f140993246b25b3"
+      }]
     },
     {
       "name": "cryptography",
@@ -207,13 +196,11 @@
       "build-commands": [
         "python3 setup.py install --prefix=/app --root=/ --skip-build"
       ],
-      "sources": [
-        {
-          "type": "archive",
-          "url": 
"https://pypi.python.org/packages/ec/5f/d5bc241d06665eed93cd8d3aa7198024ce7833af7a67f6dc92df94e00588/cryptography-1.8.1.tar.gz#md5=9f28a9c141995cd2300d0976b4fac3fb";,
-          "sha256": 
"323524312bb467565ebca7e50c8ae5e9674e544951d28a2904a50012a8828190"
-        }
-      ]
+      "sources": [{
+        "type": "archive",
+        "url": 
"https://files.pythonhosted.org/packages/07/ca/bc827c5e55918ad223d59d299fff92f3563476c3b00d0a9157d9c0217449/cryptography-2.6.1.tar.gz";,
+        "sha256": 
"26c821cbeb683facb966045e2064303029d572a87ee69ca5a1bf54bf55f93ca6"
+      }]
     },
     {
       "name": "PyYAML",
@@ -221,13 +208,11 @@
       "build-commands": [
         "python3 setup.py install --prefix=/app --root=/"
       ],
-      "sources": [
-        {
-          "type": "archive",
-          "url": 
"https://pypi.python.org/packages/4a/85/db5a2df477072b2902b0eb892feb37d88ac635d36245a72a6a69b23b383a/PyYAML-3.12.tar.gz#md5=4c129761b661d181ebf7ff4eb2d79950";,
-          "sha256": 
"592766c6303207a20efc445587778322d7f73b161bd994f227adaa341ba212ab"
-        }
-      ]
+      "sources": [{
+        "type": "archive",
+        "url": 
"https://files.pythonhosted.org/packages/9f/2c/9417b5c774792634834e730932745bc09a7d36754ca00acf1ccd1ac2594d/PyYAML-5.1.tar.gz";,
+        "sha256": 
"436bc774ecf7c103814098159fbb84c2715d25980175292c648f2da143909f95"
+      }]
     },
     {
       "name": "PyBrowserID",
@@ -235,83 +220,71 @@
       "build-commands": [
         "python3 setup.py install --prefix=/app --root=/"
       ],
-      "sources": [
-        {
-          "type": "archive",
-          "url": 
"https://pypi.python.org/packages/d7/fd/729ef9ff743bc1758f24c5dbbe4c650f892bd4b04e60cec26b1f73b2f100/PyBrowserID-0.11.0.tar.gz#md5=881db380326010ed41f6a529591b5095";,
-          "sha256": 
"bf72f57eaa4d2ea36c6888e868f49e588c7b9c0b78dfbf2bc79fee93e97f39d2"
-        }
-      ]
+      "sources": [{
+        "type": "archive",
+        "url": 
"https://files.pythonhosted.org/packages/e4/2e/e9bb9e24e600da08ff6a4d003362434eed717151f58413d8f73427e7e315/PyBrowserID-0.14.0.tar.gz";,
+        "sha256": 
"6c227669e87cc25796ae76f6a0ef65025528c8ad82d352679fa9a3e5663a71e3"
+      }]
     },
     {
       "name": "pyparsing",
       "buildsystem": "simple",
       "build-commands": [
-        "pip3 install --prefix=/app pyparsing-2.2.0-py2.py3-none-any.whl"
+        "pip3 install --prefix=/app pyparsing-2.4.0-py2.py3-none-any.whl"
       ],
-      "sources": [
-        {
-          "type": "file",
-          "url": 
"https://pypi.python.org/packages/6a/8a/718fd7d3458f9fab8e67186b00abdd345b639976bc7fb3ae722e1b026a50/pyparsing-2.2.0-py2.py3-none-any.whl#md5=7247e7896688eff4bc8c7fc5d0cdd2b0";,
-          "sha256": 
"fee43f17a9c4087e7ed1605bd6df994c6173c1e977d7ade7b651292fab2bd010"
-        }
-      ]
+      "sources": [{
+        "type": "file",
+        "url": 
"https://files.pythonhosted.org/packages/dd/d9/3ec19e966301a6e25769976999bd7bbe552016f0d32b577dc9d63d2e0c49/pyparsing-2.4.0-py2.py3-none-any.whl";,
+        "sha256": 
"9b6323ef4ab914af344ba97510e966d64ba91055d6b9afa6b30799340e89cc03"
+      }]
     },
     {
       "name": "packaging",
       "buildsystem": "simple",
       "build-commands": [
-        "pip3 install --prefix=/app packaging-16.8-py2.py3-none-any.whl"
+        "pip3 install --prefix=/app packaging-19.0-py2.py3-none-any.whl"
       ],
-      "sources": [
-        {
-          "type": "file",
-          "url": 
"https://pypi.python.org/packages/87/1b/c39b7c65b5612812b83d6cab7ef2885eac9f6beb0b7b8a7071a186aea3b1/packaging-16.8-py2.py3-none-any.whl#md5=c7326351bf015fa53c74b0075923ab02";,
-          "sha256": 
"99276dc6e3a7851f32027a68f1095cd3f77c148091b092ea867a351811cfe388"
-        }
-      ]
+      "sources": [{
+        "type": "file",
+        "url": 
"https://files.pythonhosted.org/packages/91/32/58bc30e646e55eab8b21abf89e353f59c0cc02c417e42929f4a9546e1b1d/packaging-19.0-py2.py3-none-any.whl";,
+        "sha256": 
"9e1cbf8c12b1f1ce0bb5344b8d7ecf66a6f8a6e91bcb0c84593ed6d3ab5c4ab3"
+      }]
     },
     {
       "name": "asn1crypto",
       "buildsystem": "simple",
       "build-commands": [
-        "pip3 install --prefix=/app asn1crypto-0.22.0-py2.py3-none-any.whl"
+        "pip3 install --prefix=/app asn1crypto-0.24.0-py2.py3-none-any.whl"
       ],
-      "sources": [
-        {
-          "type": "file",
-          "url": 
"https://pypi.python.org/packages/97/ba/7e8117d8efcee589f4d96dd2b2eb1d997f96d27d214cf2b7134ad8acf6ab/asn1crypto-0.22.0-py2.py3-none-any.whl#md5=5f8356d63fb715160b00fe764f6790ea";,
-          "sha256": 
"d232509fefcfcdb9a331f37e9c9dc20441019ad927c7d2176cf18ed5da0ba097"
-        }
-      ]
+      "sources": [{
+        "type": "file",
+        "url": 
"https://files.pythonhosted.org/packages/ea/cd/35485615f45f30a510576f1a56d1e0a7ad7bd8ab5ed7cdc600ef7cd06222/asn1crypto-0.24.0-py2.py3-none-any.whl";,
+        "sha256": 
"2f1adbb7546ed199e3c90ef23ec95c5cf3585bac7d11fb7eb562a3fe89c64e87"
+      }]
     },
     {
       "name": "WebOb",
       "buildsystem": "simple",
       "build-commands": [
-        "pip3 install --prefix=/app WebOb-1.6.0-py2.py3-none-any.whl"
+        "pip3 install --prefix=/app WebOb-1.8.5-py2.py3-none-any.whl"
       ],
-      "sources": [
-        {
-          "type": "file",
-          "url": 
"https://pypi.python.org/packages/12/5a/b6ef092cf8e70d2d63fdd8d2c6d479b1896d815cb256585213ed86e10196/WebOb-1.6.0-py2.py3-none-any.whl#md5=8ff68c5fce011abd8c3ef714a24450ec";,
-          "sha256": 
"69356a75980172f3e76717f6899b6c75d95ccdc7a2cb6a3b8bd6a7de3fc72401"
-        }
-      ]
+      "sources": [{
+        "type": "file",
+        "url": 
"https://files.pythonhosted.org/packages/06/e1/4acd2b4327fceb4c6446bdbca515f807ab83188526fd654940c00bcf8cc3/WebOb-1.8.5-py2.py3-none-any.whl";,
+        "sha256": 
"36db8203c67023d68c1b00208a7bf55e3b10de2aa317555740add29c619de12b"
+      }]
     },
     {
       "name": "idna",
       "buildsystem": "simple",
       "build-commands": [
-        "pip3 install --prefix=/app idna-2.5-py2.py3-none-any.whl"
+        "pip3 install --prefix=/app idna-2.8-py2.py3-none-any.whl"
       ],
-      "sources": [
-        {
-          "type": "file",
-          "url": 
"https://pypi.python.org/packages/11/7d/9bbbd7bb35f34b0169542487d2a8859e44306bb2e6a4455d491800a5621f/idna-2.5-py2.py3-none-any.whl#md5=a7e9abecc669f5bd2ddb53b453008d32";,
-          "sha256": 
"cc19709fd6d0cbfed39ea875d29ba6d4e22c0cebc510a76d6302a28385e8bb70"
-        }
-      ]
+      "sources": [{
+        "type": "file",
+        "url": 
"https://files.pythonhosted.org/packages/14/2c/cd551d81dbe15200be1cf41cd03869a46fe7226e7450af7a6545bfc474c9/idna-2.8-py2.py3-none-any.whl";,
+        "sha256": 
"ea8b7f6188e6fa117537c3df7da9fc686d485087abf6ac197f9c46432f7e4a3c"
+      }]
     },
     {
       "name": "Naked",
@@ -319,13 +292,11 @@
       "build-commands": [
         "pip3 install --prefix=/app Naked-0.1.31-py2.py3-none-any.whl"
       ],
-      "sources": [
-        {
-          "type": "file",
-          "url": 
"https://pypi.python.org/packages/02/36/b8107b51adca73402ec1860d88f41d958e275e60eea6eeaa9c39ddb89a40/Naked-0.1.31-py2.py3-none-any.whl#md5=fb3c6f2ec6c32ed11d00f1b1d80984f8";,
-          "sha256": 
"19de9961f4edb29e75cf837e8e031d6b52fbba4f0033515893d26f69c74b3b1f"
-        }
-      ]
+      "sources": [{
+        "type": "file",
+        "url": 
"https://pypi.python.org/packages/02/36/b8107b51adca73402ec1860d88f41d958e275e60eea6eeaa9c39ddb89a40/Naked-0.1.31-py2.py3-none-any.whl#md5=fb3c6f2ec6c32ed11d00f1b1d80984f8";,
+        "sha256": 
"19de9961f4edb29e75cf837e8e031d6b52fbba4f0033515893d26f69c74b3b1f"
+      }]
     },
     {
       "name": "shellescape",
@@ -333,13 +304,11 @@
       "build-commands": [
         "pip3 install --prefix=/app shellescape-3.4.1-py2.py3-none-any.whl"
       ],
-      "sources": [
-        {
-          "type": "file",
-          "url": 
"https://pypi.python.org/packages/51/b6/986c99a10040beaaefca1ad6c93bd7738cb8e4f52f6caed13d3ed1caa7e4/shellescape-3.4.1-py2.py3-none-any.whl#md5=5bc6f494f210878685dc9492fbce52e2";,
-          "sha256": 
"3ff2aeb6ce2c5a4e6059fe4a2a745a824f5a3834fe8365a39c5ea691073cfdb6"
-        }
-      ]
+      "sources": [{
+        "type": "file",
+        "url": 
"https://pypi.python.org/packages/51/b6/986c99a10040beaaefca1ad6c93bd7738cb8e4f52f6caed13d3ed1caa7e4/shellescape-3.4.1-py2.py3-none-any.whl#md5=5bc6f494f210878685dc9492fbce52e2";,
+        "sha256": 
"3ff2aeb6ce2c5a4e6059fe4a2a745a824f5a3834fe8365a39c5ea691073cfdb6"
+      }]
     },
     {
       "name": "pycrypto",
@@ -347,51 +316,43 @@
       "build-commands": [
         "python3 setup.py install --prefix=/app --root=/"
       ],
-      "sources": [
-        {
-          "type": "archive",
-          "url": 
"https://pypi.python.org/packages/60/db/645aa9af249f059cc3a368b118de33889219e0362141e75d4eaf6f80f163/pycrypto-2.6.1.tar.gz#md5=55a61a054aa66812daf5161a0d5d7eda";,
-          "sha256": 
"f2ce1e989b272cfcb677616763e0a2e7ec659effa67a88aa92b3a65528f60a3c"
-        }
-      ]
+      "sources": [{
+        "type": "archive",
+        "url": 
"https://files.pythonhosted.org/packages/60/db/645aa9af249f059cc3a368b118de33889219e0362141e75d4eaf6f80f163/pycrypto-2.6.1.tar.gz";,
+        "sha256": 
"f2ce1e989b272cfcb677616763e0a2e7ec659effa67a88aa92b3a65528f60a3c"
+      }]
     },
     {
       "name": "python-dateutil",
       "buildsystem": "simple",
       "build-commands": [
-        "pip3 install --prefix=/app python_dateutil-2.6.1-py2.py3-none-any.whl"
+        "pip3 install --prefix=/app python_dateutil-2.8.0-py2.py3-none-any.whl"
       ],
-      "sources": [
-        {
-          "type": "file",
-          "url": 
"https://pypi.python.org/packages/4b/0d/7ed381ab4fe80b8ebf34411d14f253e1cf3e56e2820ffa1d8844b23859a2/python_dateutil-2.6.1-py2.py3-none-any.whl#md5=342c025339de1e7c2138c74983c111d7";,
-          "sha256": 
"95511bae634d69bc7329ba55e646499a842bc4ec342ad54a8cdb65645a0aad3c"
-        }
-      ]
+      "sources": [{
+        "type": "file",
+        "url": 
"https://files.pythonhosted.org/packages/41/17/c62faccbfbd163c7f57f3844689e3a78bae1f403648a6afb1d0866d87fbb/python_dateutil-2.8.0-py2.py3-none-any.whl";,
+        "sha256": 
"7e6584c74aeed623791615e26efd690f29817a27c73085b78e4bad02493df2fb"
+      }]
     },
     {
       "name": "PyFxA",
       "buildsystem": "simple",
       "build-commands": [
-        "pip3 install --prefix=/app PyFxA-0.3.0-py2.py3-none-any.whl"
+        "python3 setup.py install --prefix=/app"
       ],
-      "sources": [
-        {
-          "type": "file",
-          "url": 
"https://pypi.python.org/packages/b6/97/91b810a1b5678c2b84e0e1fc8a47736fd8d41c0425bcb5daa84ca11b6b97/PyFxA-0.3.0-py2.py3-none-any.whl#md5=605546678d7e81de31e40b083622edcc";,
-          "sha256": 
"e5963db092b71bff0f51e0695eeeb59405e5646c51998c2d3f06b96d5aca6ace"
-        }
-      ]
+      "sources": [{
+        "type": "archive",
+        "url": 
"https://files.pythonhosted.org/packages/cf/93/002ded7990d847f730cd9b63fec2f5de98d72fc752408be14173b4e763a5/PyFxA-0.7.1.tar.gz";,
+        "sha256": 
"616689486d8d63956aa40836cffafde6e7590cdeb200badabaaf3c17d5b26cce"
+      }]
     },
     {
       "name": "Eolie",
       "buildsystem": "meson",
-      "sources": [
-        {
-          "type": "git",
-          "url": "https://gitlab.gnome.org/World/eolie.git";
-        }
-      ]
+      "sources": [{
+        "type": "git",
+        "url": "https://gitlab.gnome.org/World/eolie.git";
+      }]
     }
   ]
-}
+}
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eolie-0.9.61/subprojects/po/ar.po 
new/eolie-0.9.62/subprojects/po/ar.po
--- old/eolie-0.9.61/subprojects/po/ar.po       2019-05-01 14:11:55.000000000 
+0200
+++ new/eolie-0.9.62/subprojects/po/ar.po       2019-05-21 21:33:37.000000000 
+0200
@@ -8,17 +8,17 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-05-01 14:09+0200\n"
-"PO-Revision-Date: 2018-12-16 10:08+0000\n"
+"PO-Revision-Date: 2019-05-03 21:37+0000\n"
 "Last-Translator: mohammadA <mohammadabdulha...@gmail.com>\n"
-"Language-Team: Arabic <https://hosted.weblate.org/projects/gnumdk/eolie/ar/";
-">\n"
+"Language-Team: Arabic <https://hosted.weblate.org/projects/gnumdk/eolie/ar/>"
+"\n"
 "Language: ar\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
 "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: Weblate 3.4-dev\n"
+"X-Generator: Weblate 3.7-dev\n"
 
 #: ../data/org.gnome.Eolie.gschema.xml:19
 msgid "Show debug messages"
@@ -50,7 +50,7 @@
 
 #: ../data/org.gnome.Eolie.gschema.xml:54
 msgid "Enable smooth scrolling"
-msgstr ""
+msgstr "فعِّل التمرير السلس"
 
 #: ../data/org.gnome.Eolie.gschema.xml:59
 msgid "Block all unwanted popups"
@@ -184,7 +184,7 @@
 
 #: ../data/AboutDialog.ui.in:67 ../eolie/container.py:470
 msgid "Patreon"
-msgstr ""
+msgstr "باتريون"
 
 #: ../data/AboutDialog.ui.in:77 ../eolie/container.py:470
 msgid "PayPal"
@@ -351,7 +351,7 @@
 
 #: ../data/DialogCookies.ui:19
 msgid "Cookies manager"
-msgstr ""
+msgstr "مدير الكعكات"
 
 #: ../data/DialogCookies.ui:23
 msgid "Delete cookies"
@@ -727,11 +727,11 @@
 
 #: ../data/SettingsDialog.ui:929
 msgid "Login :"
-msgstr ""
+msgstr "الولوج :"
 
 #: ../data/SettingsDialog.ui:951
 msgid "Password :"
-msgstr ""
+msgstr "كلمة السر :"
 
 #: ../data/SettingsDialog.ui:972
 msgid "Allow synchronization"
@@ -743,11 +743,12 @@
 
 #: ../data/SettingsDialog.ui:1028
 msgid "Code :"
-msgstr ""
+msgstr "الرمز :"
 
 #: ../data/SettingsDialog.ui:1039 ../data/SettingsDialog.ui:1040
+#, fuzzy
 msgid "You need to enable Two Factor Authentication"
-msgstr ""
+msgstr "تحتاج إلى تفعيل الاستيثاق ذو العاملين"
 
 #: ../data/SettingsDialog.ui:1059
 msgid "Syncing"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eolie-0.9.61/subprojects/po/de.po 
new/eolie-0.9.62/subprojects/po/de.po
--- old/eolie-0.9.61/subprojects/po/de.po       2019-05-01 14:11:55.000000000 
+0200
+++ new/eolie-0.9.62/subprojects/po/de.po       2019-05-21 21:33:37.000000000 
+0200
@@ -4,16 +4,16 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-05-01 14:09+0200\n"
-"PO-Revision-Date: 2019-02-22 21:17+0000\n"
-"Last-Translator: Vincent Bermel <willovi...@openmailbox.org>\n"
-"Language-Team: German <https://hosted.weblate.org/projects/gnumdk/eolie/de/";
-">\n"
+"PO-Revision-Date: 2019-05-06 19:48+0000\n"
+"Last-Translator: ssantos <ssan...@web.de>\n"
+"Language-Team: German <https://hosted.weblate.org/projects/gnumdk/eolie/de/>"
+"\n"
 "Language: de\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.5-dev\n"
+"X-Generator: Weblate 3.7-dev\n"
 
 #: ../data/org.gnome.Eolie.gschema.xml:19
 msgid "Show debug messages"
@@ -25,7 +25,7 @@
 
 #: ../data/org.gnome.Eolie.gschema.xml:29
 msgid "INTERNAL"
-msgstr ""
+msgstr "INTERN"
 
 #: ../data/org.gnome.Eolie.gschema.xml:34
 msgid "Show sidebar(sites manager)"
@@ -47,7 +47,7 @@
 
 #: ../data/org.gnome.Eolie.gschema.xml:54
 msgid "Enable smooth scrolling"
-msgstr ""
+msgstr "Sanftes Scrollen aktivieren"
 
 #: ../data/org.gnome.Eolie.gschema.xml:59
 msgid "Block all unwanted popups"
@@ -181,7 +181,7 @@
 
 #: ../data/AboutDialog.ui.in:67 ../eolie/container.py:470
 msgid "Patreon"
-msgstr ""
+msgstr "Patreon"
 
 #: ../data/AboutDialog.ui.in:77 ../eolie/container.py:470
 msgid "PayPal"
@@ -350,7 +350,7 @@
 
 #: ../data/DialogCookies.ui:19
 msgid "Cookies manager"
-msgstr ""
+msgstr "Manager für Cookies"
 
 #: ../data/DialogCookies.ui:23
 msgid "Delete cookies"
@@ -730,11 +730,11 @@
 
 #: ../data/SettingsDialog.ui:929
 msgid "Login :"
-msgstr ""
+msgstr "Anmeldung:"
 
 #: ../data/SettingsDialog.ui:951
 msgid "Password :"
-msgstr ""
+msgstr "Passwort:"
 
 #: ../data/SettingsDialog.ui:972
 msgid "Allow synchronization"
@@ -746,11 +746,11 @@
 
 #: ../data/SettingsDialog.ui:1028
 msgid "Code :"
-msgstr ""
+msgstr "Code :"
 
 #: ../data/SettingsDialog.ui:1039 ../data/SettingsDialog.ui:1040
 msgid "You need to enable Two Factor Authentication"
-msgstr ""
+msgstr "Sie müssen die Zwei-Faktor-Authentifizierung aktivieren"
 
 #: ../data/SettingsDialog.ui:1059
 msgid "Syncing"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eolie-0.9.61/subprojects/po/es.po 
new/eolie-0.9.62/subprojects/po/es.po
--- old/eolie-0.9.61/subprojects/po/es.po       2019-05-01 14:11:55.000000000 
+0200
+++ new/eolie-0.9.62/subprojects/po/es.po       2019-05-21 21:33:37.000000000 
+0200
@@ -8,16 +8,16 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-05-01 14:09+0200\n"
-"PO-Revision-Date: 2018-07-18 01:42+0000\n"
-"Last-Translator: Wilfer Daniel Ciro Maya <wilci...@gmail.com>\n"
-"Language-Team: Spanish <https://hosted.weblate.org/projects/gnumdk/eolie/es/";
-">\n"
+"PO-Revision-Date: 2019-05-19 15:48+0000\n"
+"Last-Translator: Fernando Espada <fesp...@posteo.net>\n"
+"Language-Team: Spanish <https://hosted.weblate.org/projects/gnumdk/eolie/es/>"
+"\n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.1-dev\n"
+"X-Generator: Weblate 3.7-dev\n"
 
 #: ../data/org.gnome.Eolie.gschema.xml:19
 msgid "Show debug messages"
@@ -181,7 +181,7 @@
 
 #: ../data/AboutDialog.ui.in:67 ../eolie/container.py:470
 msgid "Patreon"
-msgstr ""
+msgstr "Patreon"
 
 #: ../data/AboutDialog.ui.in:77 ../eolie/container.py:470
 msgid "PayPal"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eolie-0.9.61/subprojects/po/nb_NO.po 
new/eolie-0.9.62/subprojects/po/nb_NO.po
--- old/eolie-0.9.61/subprojects/po/nb_NO.po    2019-05-01 14:11:55.000000000 
+0200
+++ new/eolie-0.9.62/subprojects/po/nb_NO.po    2019-05-21 21:33:37.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-05-01 14:09+0200\n"
-"PO-Revision-Date: 2019-04-20 19:33+0000\n"
+"PO-Revision-Date: 2019-05-19 15:48+0000\n"
 "Last-Translator: Allan Nordhøy <ep...@anotheragency.no>\n"
 "Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/gnumdk/";
 "eolie/nb_NO/>\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.6\n"
+"X-Generator: Weblate 3.7-dev\n"
 
 #: ../data/org.gnome.Eolie.gschema.xml:19
 msgid "Show debug messages"
@@ -1367,7 +1367,7 @@
 
 #: ../eolie/webview_errors.py:140
 msgid "Network not available"
-msgstr "Nettverk utilgjengelig"
+msgstr "Nettverk ikke tilgjengelig"
 
 #: ../eolie/webview_errors.py:141
 msgid "Check your network connection"


Reply via email to