Hello community,

here is the log from the commit of package gnome-news for openSUSE:Factory 
checked in at 2017-09-13 21:40:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-news (Old)
 and      /work/SRC/openSUSE:Factory/.gnome-news.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-news"

Wed Sep 13 21:40:01 2017 rev:4 rq:520676 version:0.0.1+20170808

Changes:
--------
--- /work/SRC/openSUSE:Factory/gnome-news/gnome-news.changes    2017-03-22 
22:57:27.004885616 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-news.new/gnome-news.changes       
2017-09-13 21:40:02.956187560 +0200
@@ -1,0 +2,9 @@
+Wed Aug 16 11:29:57 UTC 2017 - dims...@opensuse.org
+
+- Update to version 0.0.1+20170808:
+  + build: Add a first version of Flatpak manifest
+  + tracker: Update queries to sparql1.1 correct syntax
+  + Use Tracker 2.0 unconditionally
+  + Updated translations.
+
+-------------------------------------------------------------------

Old:
----
  gnome-news-0.0.1+20170118.tar.xz

New:
----
  gnome-news-0.0.1+20170808.tar.xz

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

Other differences:
------------------
++++++ gnome-news.spec ++++++
--- /var/tmp/diff_new_pack.atnN2i/_old  2017-09-13 21:40:03.752075578 +0200
+++ /var/tmp/diff_new_pack.atnN2i/_new  2017-09-13 21:40:03.752075578 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           gnome-news
-Version:        0.0.1+20170118
+Version:        0.0.1+20170808
 Release:        0
 Summary:        GNOME News Reader
 License:        GPL-3.0+
@@ -34,13 +34,13 @@
 BuildRequires:  libxml2-tools
 BuildRequires:  python3-gobject
 Requires:       tracker-miner-rss
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildArch:      noarch
 
 %description
 A GNOME 3 Feed Reader.
 
 %lang_package
+
 %prep
 %setup -q
 

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.atnN2i/_old  2017-09-13 21:40:03.800068825 +0200
+++ /var/tmp/diff_new_pack.atnN2i/_new  2017-09-13 21:40:03.804068263 +0200
@@ -3,4 +3,4 @@
             <param 
name="url">https://github.com/ignatenkobrain/gnome-news.git</param>
           <param 
name="changesrevision">9ec458d936b7583069cdba724c49f4caaa1f3661</param></service><service
 name="tar_scm">
                 <param name="url">git://git.gnome.org/gnome-news</param>
-              <param 
name="changesrevision">16a28abd3cd82455f6249b88b49cbd4572df945e</param></service></servicedata>
\ No newline at end of file
+              <param 
name="changesrevision">1144856cbf361d43e8a5b53ee056f60f33f46a37</param></service></servicedata>
\ No newline at end of file

++++++ gnome-news-0.0.1+20170118.tar.xz -> gnome-news-0.0.1+20170808.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-news-0.0.1+20170118/gnome-news.in 
new/gnome-news-0.0.1+20170808/gnome-news.in
--- old/gnome-news-0.0.1+20170118/gnome-news.in 2017-01-18 15:52:33.000000000 
+0100
+++ new/gnome-news-0.0.1+20170808/gnome-news.in 2017-08-08 21:03:36.000000000 
+0200
@@ -23,7 +23,7 @@
     gi.require_version('GObject', '2.0')
     gi.require_version('Gtk', '3.0')
     gi.require_version('Gdk', '3.0')
-    gi.require_version('Tracker', '1.0')
+    gi.require_version('Tracker', '2.0')
     gi.require_version('WebKit2', '4.0')
 except ValueError as e:
     sys.exit("Missing dependency: {}".format(e))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-news-0.0.1+20170118/gnomenews/tracker.py 
new/gnome-news-0.0.1+20170808/gnomenews/tracker.py
--- old/gnome-news-0.0.1+20170118/gnomenews/tracker.py  2017-01-18 
15:52:33.000000000 +0100
+++ new/gnome-news-0.0.1+20170808/gnomenews/tracker.py  2017-08-08 
21:03:36.000000000 +0200
@@ -47,15 +47,15 @@
     def get_post_sorted_by_date(self, unread=False, starred=False):
         query = """
         SELECT
-          nie:url(?msg) AS url
-          nie:title(?msg) AS title
-          nco:fullname(?creator) AS fullname
-          nie:url(?website) AS author_homepage
-          nco:emailAddress(?email) AS author_email
-          nie:contentCreated(?msg) AS date
-          nmo:htmlMessageContent(?msg) AS content
-          nmo:isRead(?msg) AS is_read
-          ?msg BOUND(?tag) as is_starred
+          nie:url(?msg) AS ?url
+          nie:title(?msg) AS ?title
+          nco:fullname(?creator) AS ?fullname
+          nie:url(?website) AS ?author_homepage
+          nco:emailAddress(?email) AS ?author_email
+          nie:contentCreated(?msg) AS ?date
+          nmo:htmlMessageContent(?msg) AS ?content
+          nmo:isRead(?msg) AS ?is_read
+          ?msg BOUND(?tag) AS ?is_starred
         WHERE
           { ?msg a mfo:FeedMessage """
 
@@ -86,10 +86,10 @@
     def get_info_for_entry(self, url):
         query = """
         SELECT
-          nie:title(?msg) AS title
-          nco:fullname(?creator) AS fullname
-          nie:url(?website) AS author_homepage
-          nco:emailAddress(?email) AS author_email
+          nie:title(?msg) AS ?title
+          nco:fullname(?creator) AS ?fullname
+          nie:url(?website) AS ?author_homepage
+          nco:emailAddress(?email) AS ?author_email
         WHERE
           { ?msg a mfo:FeedMessage ;
                  nie:url <%s> .
@@ -222,15 +222,15 @@
         """
         query = """
         SELECT
-          nie:url(?msg) AS url
-          nie:title(?msg) AS title
-          nco:fullname(?creator) AS fullname
-          nie:url(?website) AS author_homepage
-          nco:emailAddress(?email) AS author_email
-          nie:contentCreated(?msg) AS date
-          nmo:htmlMessageContent(?msg) AS content
-          nmo:isRead(?msg) AS is_read
-          ?msg BOUND(?tag) as is_starred
+          nie:url(?msg) AS ?url
+          nie:title(?msg) AS ?title
+          nco:fullname(?creator) AS ?fullname
+          nie:url(?website) AS ?author_homepage
+          nco:emailAddress(?email) AS ?author_email
+          nie:contentCreated(?msg) AS ?date
+          nmo:htmlMessageContent(?msg) AS ?content
+          nmo:isRead(?msg) AS ?is_read
+          ?msg BOUND(?tag) AS ?is_starred
           { ?msg a mfo:FeedMessage;
                  nmo:communicationChannel ?chan .
             ?chan nie:url "%s" .
@@ -262,8 +262,8 @@
         """
         query = """
         SELECT
-          nie:url(?chan) AS url
-          nie:title(?chan) AS title
+          nie:url(?chan) AS ?url
+          nie:title(?chan) AS ?title
           { ?chan a mfo:FeedChannel"""
 
         if url is not None:
@@ -297,7 +297,7 @@
           nie:contentCreated(?msg) AS ?date_created
           nmo:htmlMessageContent(?msg) AS ?content
           nmo:isRead(?msg) AS ?is_read
-          ?msg BOUND(?tag) as ?is_starred
+          ?msg BOUND(?tag) AS ?is_starred
           { ?msg a mfo:FeedMessage; """
 
         if channel:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-news-0.0.1+20170118/org.gnome.News.json 
new/gnome-news-0.0.1+20170808/org.gnome.News.json
--- old/gnome-news-0.0.1+20170118/org.gnome.News.json   1970-01-01 
01:00:00.000000000 +0100
+++ new/gnome-news-0.0.1+20170808/org.gnome.News.json   2017-08-08 
21:03:36.000000000 +0200
@@ -0,0 +1,66 @@
+{
+    "app-id": "org.gnome.News",
+    "runtime": "org.gnome.Platform",
+    "runtime-version": "master",
+    "sdk": "org.gnome.Sdk",
+    "command": "gnome-news",
+    "tags": ["nightly"],
+    "desktop-file-name-prefix": "(Nightly) ",
+    "finish-args": [
+        /* X11 + XShm access */
+        "--share=ipc", "--socket=x11",
+        /* Wayland access */
+        "--socket=wayland",
+        /* Tracker */
+        "--talk-name=org.freedesktop.Tracker1",
+        /* Needed for dconf to work */
+        "--filesystem=xdg-run/dconf", "--filesystem=~/.config/dconf:ro",
+        "--talk-name=ca.desrt.dconf", 
"--env=DCONF_USER_CONFIG_DIR=.config/dconf"
+    ],
+    "build-options" : {
+        "cflags": "-O2 -g",
+        "cxxflags": "-O2 -g",
+        "env": {
+            "V": "1"
+        }
+    },
+    "cleanup": [
+        "/include",
+        "/lib/pkgconfig",
+        "/share/pkgconfig",
+        "/share/aclocal",
+        "/man",
+        "/share/man",
+        "/share/gtk-doc",
+        "/share/vala",
+        "*.la",
+        "*.a"
+    ],
+    "modules": [
+        {
+            "name": "tracker",
+            "cleanup": [ "/bin", "/etc", "/libexec" ],
+            "config-opts": [ "--disable-miner-apps", "--disable-static",
+                             "--disable-tracker-extract", 
"--disable-tracker-needle",
+                             "--disable-tracker-preferences", 
"--disable-artwork",
+                             "--disable-tracker-writeback", 
"--disable-miner-user-guides",
+                             "--with-bash-completion-dir=no" ],
+            "sources": [
+                {
+                    "type": "git",
+                    "url": "https://git.gnome.org/browse/tracker";
+                }
+            ]
+        },
+        {
+            "name": "gnome-news",
+            "command": "gnome-news",
+            "sources": [
+                {
+                    "type": "git",
+                    "url": "git://git.gnome.org/gnome-news"
+                }
+            ]
+        }
+    ]
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-news-0.0.1+20170118/po/LINGUAS 
new/gnome-news-0.0.1+20170808/po/LINGUAS
--- old/gnome-news-0.0.1+20170118/po/LINGUAS    2017-01-18 15:52:33.000000000 
+0100
+++ new/gnome-news-0.0.1+20170808/po/LINGUAS    2017-08-08 21:03:36.000000000 
+0200
@@ -1,9 +1,13 @@
+ca
 cs
+da
 de
 el
 es
 fi
 fr
+fur
+hr
 hu
 id
 it
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-news-0.0.1+20170118/po/ca.po 
new/gnome-news-0.0.1+20170808/po/ca.po
--- old/gnome-news-0.0.1+20170118/po/ca.po      1970-01-01 01:00:00.000000000 
+0100
+++ new/gnome-news-0.0.1+20170808/po/ca.po      2017-08-08 21:03:36.000000000 
+0200
@@ -0,0 +1,164 @@
+# Catalan translation for gnome-news.
+# Copyright (C) 2017 gnome-news's COPYRIGHT HOLDER
+# This file is distributed under the same license as the gnome-news package.
+# Pere Orga <p...@orga.cat>, 2017.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: gnome-news master\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-03-07 07:03+0100\n"
+"PO-Revision-Date: 2017-03-06 23:17+0100\n"
+"Last-Translator: Pere Orga <p...@orga.cat>\n"
+"Language-Team: Catalan <gn...@llistes.softcatala.org>\n"
+"Language: ca\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.8.12\n"
+
+#: ../data/gtk/menus.ui.h:1
+msgid "About"
+msgstr "Quant a"
+
+#: ../data/gtk/menus.ui.h:2
+msgid "Quit"
+msgstr "Surt"
+
+#. TRANSLATORS: the application name
+#: ../data/org.gnome.News.appdata.xml.in.h:2
+#: ../data/org.gnome.News.desktop.in.h:1 ../gnomenews/application.py:37
+#: ../gnomenews/toolbar.py:100 ../gnomenews/window.py:35
+msgid "News"
+msgstr "Notícies"
+
+#. TRANSLATORS: one-line description for the app
+#: ../data/org.gnome.News.appdata.xml.in.h:4
+msgid "Feed Reader"
+msgstr "Lector de canals de notícies"
+
+#. TRANSLATORS: AppData description marketing paragraph
+#: ../data/org.gnome.News.appdata.xml.in.h:6
+msgid "GNOME News can be used to read news."
+msgstr "El Notícies del GNOME es pot utilitzar per llegir notícies."
+
+#: ../data/org.gnome.News.desktop.in.h:2
+msgid "Feed reader for GNOME"
+msgstr "Lector de canals de notícies del GNOME"
+
+#: ../data/org.gnome.News.gschema.xml.h:1
+msgid "Window size"
+msgstr "Mida de la finestra"
+
+#: ../data/org.gnome.News.gschema.xml.h:2
+msgid "Window size (width and height)."
+msgstr "Mida de la finestra (amplada i alçada)."
+
+#: ../data/org.gnome.News.gschema.xml.h:3
+msgid "Window position"
+msgstr "Posició de la finestra"
+
+#: ../data/org.gnome.News.gschema.xml.h:4
+msgid "Window position (x and y)."
+msgstr "Posició de la finestra (x i y)."
+
+#: ../data/org.gnome.News.gschema.xml.h:5
+msgid "Window maximized"
+msgstr "Finestra maximitzada"
+
+#: ../data/org.gnome.News.gschema.xml.h:6
+msgid "Window maximized state."
+msgstr "Estat de la finestra maximitzada."
+
+#: ../data/ui/empty-view.ui.h:1
+msgid "No Results Found"
+msgstr "No s'ha trobat cap resultat"
+
+#: ../data/ui/empty-view.ui.h:2
+msgid "Try a different search"
+msgstr "Proveu una cerca diferent"
+
+#: ../data/ui/empty-view.ui.h:3
+msgid "No Starred Articles Found"
+msgstr "No s'ha trobat cap article destacat"
+
+#: ../data/ui/empty-view.ui.h:4
+msgid "You can see your starred articles after marking them"
+msgstr "Podreu veure els articles destacats després de marcar-los"
+
+#: ../data/ui/empty-view.ui.h:5
+msgid "No Feed Subscription Found"
+msgstr "No s'ha trobat cap subscripció a canals de notícies"
+
+#: ../data/ui/empty-view.ui.h:6
+msgid "You can subscribe to feeds using the \"+\" button"
+msgstr "Us podeu subscriure als canals de notícies utilitzant el botó «+»"
+
+#: ../data/ui/headerbar.ui.h:1
+msgid "Add a new feed"
+msgstr "Afegeix un canal de notícies nou"
+
+#: ../data/ui/headerbar.ui.h:2
+msgid "Enter feed address to add"
+msgstr "Introduïu l'adreça del canal de notícies a afegir"
+
+#: ../data/ui/headerbar.ui.h:3
+msgid "Add"
+msgstr "Afegeix"
+
+#: ../data/ui/headerbar.ui.h:4
+msgid "You are already subscribed to that feed!"
+msgstr "Ja esteu subscrit a aquest canal."
+
+#: ../data/ui/headerbar.ui.h:5
+msgid "Select All"
+msgstr "Selecciona-ho tot"
+
+#: ../data/ui/headerbar.ui.h:6
+msgid "Select None"
+msgstr "No seleccionis res"
+
+#: ../data/ui/headerbar.ui.h:7
+msgid "Click on items to select them"
+msgstr "Feu clic en els elements per seleccionar-los"
+
+#: ../data/ui/headerbar.ui.h:8
+msgid "Mark this article as starred"
+msgstr "Marca aquest article com a destacat"
+
+#: ../data/ui/headerbar.ui.h:9
+msgid "Search"
+msgstr "Cerca"
+
+#: ../data/ui/headerbar.ui.h:10
+msgid "Select"
+msgstr "Selecciona"
+
+#: ../data/ui/headerbar.ui.h:11
+msgid "Back"
+msgstr "Enrere"
+
+#: ../gnomenews/toolbar.py:97
+#, python-format
+msgid "Searching for \"%s\""
+msgstr "S'està cercant per «%s»"
+
+#: ../gnomenews/view.py:86 ../gnomenews/view.py:99
+msgid "This article was already read"
+msgstr "Aquest article ja s'havia llegit"
+
+#: ../gnomenews/view.py:174
+msgid "New"
+msgstr "Nou"
+
+#: ../gnomenews/view.py:191
+msgid "Feeds"
+msgstr "Canals de notícies"
+
+#: ../gnomenews/view.py:268
+msgid "Unknown feed"
+msgstr "Canal de notícies desconegut"
+
+#: ../gnomenews/view.py:361
+msgid "Starred"
+msgstr "Destacat"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-news-0.0.1+20170118/po/da.po 
new/gnome-news-0.0.1+20170808/po/da.po
--- old/gnome-news-0.0.1+20170118/po/da.po      1970-01-01 01:00:00.000000000 
+0100
+++ new/gnome-news-0.0.1+20170808/po/da.po      2017-08-08 21:03:36.000000000 
+0200
@@ -0,0 +1,165 @@
+# Danish translation for gnome-news.
+# Copyright (C) 2017 gnome-news's COPYRIGHT HOLDER
+# This file is distributed under the same license as the gnome-news package.
+# Alan Mortensen <alanmortensen...@gmail.com>, 2017.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: gnome-news master\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-03-07 06:05+0000\n"
+"PO-Revision-Date: 2017-03-12 15:43+0100\n"
+"Language-Team: Danish <da...@dansk-gruppen.dk>\n"
+"Language: da\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"
+"Last-Translator: Alan Mortensen <alanmortensen...@gmail.com>\n"
+"X-Generator: Poedit 1.8.7.1\n"
+
+#: ../data/gtk/menus.ui.h:1
+msgid "About"
+msgstr "Om"
+
+#: ../data/gtk/menus.ui.h:2
+msgid "Quit"
+msgstr "Afslut"
+
+#. TRANSLATORS: the application name
+#: ../data/org.gnome.News.appdata.xml.in.h:2
+#: ../data/org.gnome.News.desktop.in.h:1 ../gnomenews/application.py:37
+#: ../gnomenews/toolbar.py:100 ../gnomenews/window.py:35
+msgid "News"
+msgstr "Nyheder"
+
+#. TRANSLATORS: one-line description for the app
+#: ../data/org.gnome.News.appdata.xml.in.h:4
+msgid "Feed Reader"
+msgstr "Nyhedsstrømslæser"
+
+#. TRANSLATORS: AppData description marketing paragraph
+#: ../data/org.gnome.News.appdata.xml.in.h:6
+msgid "GNOME News can be used to read news."
+msgstr "GNOME Nyheder kan bruges til at læse nyheder."
+
+#: ../data/org.gnome.News.desktop.in.h:2
+msgid "Feed reader for GNOME"
+msgstr "Nyhedsstrømslæser til GNOME"
+
+#: ../data/org.gnome.News.gschema.xml.h:1
+msgid "Window size"
+msgstr "Vinduesstørrelse"
+
+#: ../data/org.gnome.News.gschema.xml.h:2
+msgid "Window size (width and height)."
+msgstr "Vinduesstørrelse (bredde og højde)."
+
+#: ../data/org.gnome.News.gschema.xml.h:3
+msgid "Window position"
+msgstr "Vinduesplacering"
+
+#: ../data/org.gnome.News.gschema.xml.h:4
+msgid "Window position (x and y)."
+msgstr "Vinduesplacering (x og y)."
+
+#: ../data/org.gnome.News.gschema.xml.h:5
+msgid "Window maximized"
+msgstr "Vindue maksimeret"
+
+#: ../data/org.gnome.News.gschema.xml.h:6
+msgid "Window maximized state."
+msgstr "Maksimeret tilstand for vindue."
+
+#: ../data/ui/empty-view.ui.h:1
+msgid "No Results Found"
+msgstr "Fandt ingen resultater"
+
+#: ../data/ui/empty-view.ui.h:2
+msgid "Try a different search"
+msgstr "Prøv en anden søgning"
+
+#: ../data/ui/empty-view.ui.h:3
+msgid "No Starred Articles Found"
+msgstr "Fandt ikke nogen stjernemarkerede artikler"
+
+#: ../data/ui/empty-view.ui.h:4
+msgid "You can see your starred articles after marking them"
+msgstr "Du kan se dine stjernemarkerede artikler efter at have mærket dem"
+
+#: ../data/ui/empty-view.ui.h:5
+msgid "No Feed Subscription Found"
+msgstr "Fandt ikke noget abonnement på nyhedsstrøm"
+
+#: ../data/ui/empty-view.ui.h:6
+msgid "You can subscribe to feeds using the \"+\" button"
+msgstr "Du kan abonnere på nyhedsstrømme med \"+\"-knappen"
+
+#: ../data/ui/headerbar.ui.h:1
+msgid "Add a new feed"
+msgstr "Tilføj en ny nyhedsstrøm"
+
+#: ../data/ui/headerbar.ui.h:2
+msgid "Enter feed address to add"
+msgstr "Indtast adressen på nyhedsstrøm, der skal tilføjes"
+
+#: ../data/ui/headerbar.ui.h:3
+msgid "Add"
+msgstr "Tilføj"
+
+#: ../data/ui/headerbar.ui.h:4
+msgid "You are already subscribed to that feed!"
+msgstr "Du abonnerer allerede på denne nyhedsstrøm!"
+
+#: ../data/ui/headerbar.ui.h:5
+msgid "Select All"
+msgstr "Vælg alle"
+
+#: ../data/ui/headerbar.ui.h:6
+msgid "Select None"
+msgstr "Vælg ingen"
+
+#: ../data/ui/headerbar.ui.h:7
+msgid "Click on items to select them"
+msgstr "Klik på elementer for at vælge dem"
+
+#: ../data/ui/headerbar.ui.h:8
+msgid "Mark this article as starred"
+msgstr "Markér denne artikel med stjerne"
+
+#: ../data/ui/headerbar.ui.h:9
+msgid "Search"
+msgstr "Søg"
+
+#: ../data/ui/headerbar.ui.h:10
+msgid "Select"
+msgstr "Vælg"
+
+#: ../data/ui/headerbar.ui.h:11
+msgid "Back"
+msgstr "Tilbage"
+
+#: ../gnomenews/toolbar.py:97
+#, python-format
+msgid "Searching for \"%s\""
+msgstr "Søger efter \"%s\""
+
+#: ../gnomenews/view.py:86 ../gnomenews/view.py:99
+msgid "This article was already read"
+msgstr "Denne artikel er allerede læst"
+
+#: ../gnomenews/view.py:174
+msgid "New"
+msgstr "Ny"
+
+#: ../gnomenews/view.py:191
+msgid "Feeds"
+msgstr "Nyhedsstrømme"
+
+#: ../gnomenews/view.py:268
+msgid "Unknown feed"
+msgstr "Ukendt nyhedsstrøm"
+
+#: ../gnomenews/view.py:361
+msgid "Starred"
+msgstr "Stjernemarkeret"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-news-0.0.1+20170118/po/fur.po 
new/gnome-news-0.0.1+20170808/po/fur.po
--- old/gnome-news-0.0.1+20170118/po/fur.po     1970-01-01 01:00:00.000000000 
+0100
+++ new/gnome-news-0.0.1+20170808/po/fur.po     2017-08-08 21:03:36.000000000 
+0200
@@ -0,0 +1,164 @@
+# Friulian translation for gnome-news.
+# Copyright (C) 2017 gnome-news's COPYRIGHT HOLDER
+# This file is distributed under the same license as the gnome-news package.
+# Fabio Tomat <f.t.pub...@gmail.com>, 2017.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: gnome-news master\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-01-18 14:53+0000\n"
+"PO-Revision-Date: 2017-03-05 22:49+0100\n"
+"Language-Team: Friulian <f...@li.org>\n"
+"Language: fur\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Last-Translator: Fabio Tomat <f.t.pub...@gmail.com>\n"
+"X-Generator: Poedit 1.8.12\n"
+
+#: ../data/gtk/menus.ui.h:1
+msgid "About"
+msgstr "Informazions"
+
+#: ../data/gtk/menus.ui.h:2
+msgid "Quit"
+msgstr "Jes"
+
+#. TRANSLATORS: the application name
+#: ../data/org.gnome.News.appdata.xml.in.h:2
+#: ../data/org.gnome.News.desktop.in.h:1 ../gnomenews/application.py:37
+#: ../gnomenews/toolbar.py:100 ../gnomenews/window.py:35
+msgid "News"
+msgstr "Notiziis"
+
+#. TRANSLATORS: one-line description for the app
+#: ../data/org.gnome.News.appdata.xml.in.h:4
+msgid "Feed Reader"
+msgstr "Letôr di feed"
+
+#. TRANSLATORS: AppData description marketing paragraph
+#: ../data/org.gnome.News.appdata.xml.in.h:6
+msgid "GNOME News can be used to read news."
+msgstr "Notiziis GNOME al pues jessi doprât par lei notiziis."
+
+#: ../data/org.gnome.News.desktop.in.h:2
+msgid "Feed reader for GNOME"
+msgstr "Letôr di feed par GNOME"
+
+#: ../data/org.gnome.News.gschema.xml.h:1
+msgid "Window size"
+msgstr "Dimension barcon"
+
+#: ../data/org.gnome.News.gschema.xml.h:2
+msgid "Window size (width and height)."
+msgstr "La dimension dal barcon (largjece e altece)."
+
+#: ../data/org.gnome.News.gschema.xml.h:3
+msgid "Window position"
+msgstr "Posizion barcon"
+
+#: ../data/org.gnome.News.gschema.xml.h:4
+msgid "Window position (x and y)."
+msgstr "La posizion dal barcon (x e y)."
+
+#: ../data/org.gnome.News.gschema.xml.h:5
+msgid "Window maximized"
+msgstr "Barcon slargjât"
+
+#: ../data/org.gnome.News.gschema.xml.h:6
+msgid "Window maximized state."
+msgstr "Stât barcon slargjât."
+
+#: ../data/ui/empty-view.ui.h:1
+msgid "No Results Found"
+msgstr "Nissun risultât cjatât"
+
+#: ../data/ui/empty-view.ui.h:2
+msgid "Try a different search"
+msgstr "Prove une ricercje diferente"
+
+#: ../data/ui/empty-view.ui.h:3
+msgid "No Starred Articles Found"
+msgstr "Nissun articul speciâl cjatât"
+
+#: ../data/ui/empty-view.ui.h:4
+msgid "You can see your starred articles after marking them"
+msgstr "Tu puedis viodi i tiei articui speciâi dopo vêju segnâts"
+
+#: ../data/ui/empty-view.ui.h:5
+msgid "No Feed Subscription Found"
+msgstr "Nissune sotscrizion a feed cjatade"
+
+#: ../data/ui/empty-view.ui.h:6
+msgid "You can subscribe to feeds using the \"+\" button"
+msgstr "Tu puedis sotscriviti ai feed doprant il boton \"+\""
+
+#: ../data/ui/headerbar.ui.h:1
+msgid "Add a new feed"
+msgstr "Zonte un gnûf feed"
+
+#: ../data/ui/headerbar.ui.h:2
+msgid "Enter feed address to add"
+msgstr "Inserìs la direzion dal feed di zontâ"
+
+#: ../data/ui/headerbar.ui.h:3
+msgid "Add"
+msgstr "Zonte"
+
+#: ../data/ui/headerbar.ui.h:4
+msgid "You are already subscribed to that feed!"
+msgstr "Tu âs za sotscrit chel feed!"
+
+#: ../data/ui/headerbar.ui.h:5
+msgid "Select All"
+msgstr "Selezione dut"
+
+#: ../data/ui/headerbar.ui.h:6
+msgid "Select None"
+msgstr "Selezione nuie"
+
+#: ../data/ui/headerbar.ui.h:7
+msgid "Click on items to select them"
+msgstr "Fâs clic sui elements par selezionâju"
+
+#: ../data/ui/headerbar.ui.h:8
+msgid "Mark this article as starred"
+msgstr "Segne chest articul come speciâl"
+
+#: ../data/ui/headerbar.ui.h:9
+msgid "Search"
+msgstr "Cîr"
+
+#: ../data/ui/headerbar.ui.h:10
+msgid "Select"
+msgstr "Selezione"
+
+#: ../data/ui/headerbar.ui.h:11
+msgid "Back"
+msgstr "Indaûr"
+
+#: ../gnomenews/toolbar.py:97
+#, python-format
+msgid "Searching for \"%s\""
+msgstr "Daûr a cirî \"%s\""
+
+#: ../gnomenews/view.py:86 ../gnomenews/view.py:99
+msgid "This article was already read"
+msgstr "Chest articul al è za stât let"
+
+#: ../gnomenews/view.py:174
+msgid "New"
+msgstr "Gnûf"
+
+#: ../gnomenews/view.py:191
+msgid "Feeds"
+msgstr "Feed"
+
+#: ../gnomenews/view.py:268
+msgid "Unknown feed"
+msgstr "Feed no cognossût"
+
+#: ../gnomenews/view.py:361
+msgid "Starred"
+msgstr "Speciâl"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-news-0.0.1+20170118/po/hr.po 
new/gnome-news-0.0.1+20170808/po/hr.po
--- old/gnome-news-0.0.1+20170118/po/hr.po      1970-01-01 01:00:00.000000000 
+0100
+++ new/gnome-news-0.0.1+20170808/po/hr.po      2017-08-08 21:03:36.000000000 
+0200
@@ -0,0 +1,165 @@
+# Croatian translation for gnome-news.
+# Copyright (C) 2017 gnome-news's COPYRIGHT HOLDER
+# This file is distributed under the same license as the gnome-news package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: gnome-news master\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-04-12 09:46+0000\n"
+"PO-Revision-Date: 2017-04-30 23:03+0200\n"
+"Language-Team: Croatian <h...@li.org>\n"
+"Language: hr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Last-Translator: gogo <trebeln...@gmail.com>\n"
+"X-Generator: Poedit 1.8.7.1\n"
+
+#: ../data/gtk/menus.ui.h:1
+msgid "About"
+msgstr "O programu"
+
+#: ../data/gtk/menus.ui.h:2
+msgid "Quit"
+msgstr "Zatvori"
+
+#. TRANSLATORS: the application name
+#: ../data/org.gnome.News.appdata.xml.in.h:2
+#: ../data/org.gnome.News.desktop.in.h:1 ../gnomenews/application.py:37
+#: ../gnomenews/toolbar.py:100 ../gnomenews/window.py:35
+msgid "News"
+msgstr "Novosti"
+
+#. TRANSLATORS: one-line description for the app
+#: ../data/org.gnome.News.appdata.xml.in.h:4
+msgid "Feed Reader"
+msgstr "Čitač RSS kanala"
+
+#. TRANSLATORS: AppData description marketing paragraph
+#: ../data/org.gnome.News.appdata.xml.in.h:6
+msgid "GNOME News can be used to read news."
+msgstr "GNOME Vijesti mogu se koristiti za čitanje vijesti."
+
+#: ../data/org.gnome.News.desktop.in.h:2
+msgid "Feed reader for GNOME"
+msgstr "Čitač RSS kanala za GNOME"
+
+#: ../data/org.gnome.News.gschema.xml.h:1
+msgid "Window size"
+msgstr "Veličina prozora"
+
+#: ../data/org.gnome.News.gschema.xml.h:2
+msgid "Window size (width and height)."
+msgstr "Veličina prozora (širina i visina)."
+
+#: ../data/org.gnome.News.gschema.xml.h:3
+msgid "Window position"
+msgstr "Položaj prozora"
+
+#: ../data/org.gnome.News.gschema.xml.h:4
+msgid "Window position (x and y)."
+msgstr "Položaj prozora (x-os i y-os)"
+
+#: ../data/org.gnome.News.gschema.xml.h:5
+msgid "Window maximized"
+msgstr "Prozor uvećan"
+
+#: ../data/org.gnome.News.gschema.xml.h:6
+msgid "Window maximized state."
+msgstr "Stanje uvećanog prozora"
+
+#: ../data/ui/empty-view.ui.h:1
+msgid "No Results Found"
+msgstr "Nema pronađenih rezultata"
+
+#: ../data/ui/empty-view.ui.h:2
+msgid "Try a different search"
+msgstr "Pokušaj drugačiju pretragu"
+
+#: ../data/ui/empty-view.ui.h:3
+msgid "No Starred Articles Found"
+msgstr "Nema pronađenih članaka označenih zvjezdicom"
+
+#: ../data/ui/empty-view.ui.h:4
+msgid "You can see your starred articles after marking them"
+msgstr "Možete vidjeti svoje članke označene zvjezdicom nakon što ih označite."
+
+#: ../data/ui/empty-view.ui.h:5
+msgid "No Feed Subscription Found"
+msgstr "NEma pronađenih pretplata kanala"
+
+#: ../data/ui/empty-view.ui.h:6
+msgid "You can subscribe to feeds using the \"+\" button"
+msgstr "Možete se pretplatiti na kanale koristeći \"+\" tipku"
+
+#: ../data/ui/headerbar.ui.h:1
+msgid "Add a new feed"
+msgstr "Dodaj novi kanal"
+
+#: ../data/ui/headerbar.ui.h:2
+msgid "Enter feed address to add"
+msgstr "Upiši adresu kanala za dodavanje"
+
+#: ../data/ui/headerbar.ui.h:3
+msgid "Add"
+msgstr "Dodaj"
+
+#: ../data/ui/headerbar.ui.h:4
+msgid "You are already subscribed to that feed!"
+msgstr "Već ste pretplaćeni na ovaj kanal!"
+
+#: ../data/ui/headerbar.ui.h:5
+msgid "Select All"
+msgstr "Odaberi sve"
+
+#: ../data/ui/headerbar.ui.h:6
+msgid "Select None"
+msgstr "Ukloni odabir"
+
+#: ../data/ui/headerbar.ui.h:7
+msgid "Click on items to select them"
+msgstr "Kliknite na stavku za odabir"
+
+#: ../data/ui/headerbar.ui.h:8
+msgid "Mark this article as starred"
+msgstr "Označi ovaj članak sa zvjezdicom"
+
+#: ../data/ui/headerbar.ui.h:9
+msgid "Search"
+msgstr "Pretraga"
+
+#: ../data/ui/headerbar.ui.h:10
+msgid "Select"
+msgstr "Odaberi"
+
+#: ../data/ui/headerbar.ui.h:11
+msgid "Back"
+msgstr "Natrag"
+
+#: ../gnomenews/toolbar.py:97
+#, python-format
+msgid "Searching for \"%s\""
+msgstr "Pretraživam \"%s\""
+
+#: ../gnomenews/view.py:86 ../gnomenews/view.py:99
+msgid "This article was already read"
+msgstr "Ovaj članak je već pročitan"
+
+#: ../gnomenews/view.py:174
+msgid "New"
+msgstr "Novi"
+
+#: ../gnomenews/view.py:191
+msgid "Feeds"
+msgstr "Kanali"
+
+#: ../gnomenews/view.py:268
+msgid "Unknown feed"
+msgstr "Nepoznati kanal"
+
+#: ../gnomenews/view.py:361
+msgid "Starred"
+msgstr "Sa zvjezdicom"


Reply via email to