Hello community, here is the log from the commit of package lollypop for openSUSE:Factory checked in at 2020-06-10 00:54:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lollypop (Old) and /work/SRC/openSUSE:Factory/.lollypop.new.3606 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lollypop" Wed Jun 10 00:54:03 2020 rev:129 rq:813034 version:1.3.1 Changes: -------- --- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes 2020-05-28 09:21:49.133485788 +0200 +++ /work/SRC/openSUSE:Factory/.lollypop.new.3606/lollypop.changes 2020-06-10 00:54:28.559891672 +0200 @@ -1,0 +2,9 @@ +Tue Jun 09 18:32:42 UTC 2020 - [email protected] + +- Update to version 1.3.1: + * Fix a crash when playing a radio (glgo#World/lollypop#2459). + * Fix an issue with shuffle (glgo#World/lollypop#2453). + * Remove reference to meson deprecated python3 module. +- Replace shebangs which use env interpreter. + +------------------------------------------------------------------- Old: ---- lollypop-1.3.0.tar.xz New: ---- lollypop-1.3.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lollypop.spec ++++++ --- /var/tmp/diff_new_pack.fWHOHa/_old 2020-06-10 00:54:29.411893876 +0200 +++ /var/tmp/diff_new_pack.fWHOHa/_new 2020-06-10 00:54:29.415893887 +0200 @@ -17,7 +17,7 @@ Name: lollypop -Version: 1.3.0 +Version: 1.3.1 Release: 0 Summary: GNOME music playing application License: GPL-3.0-or-later @@ -86,6 +86,8 @@ %prep %autosetup -p1 +# Don't use env interpreter so that the rpm dependency detection work +sed -i 's;/usr/bin/env python3;/usr/bin/python3;' lollypop.in search-provider/lollypop-sp.in %build %meson ++++++ _service ++++++ --- /var/tmp/diff_new_pack.fWHOHa/_old 2020-06-10 00:54:29.447893969 +0200 +++ /var/tmp/diff_new_pack.fWHOHa/_new 2020-06-10 00:54:29.451893980 +0200 @@ -1,7 +1,7 @@ <services> <service mode="disabled" name="tar_scm"> <param name="changesgenerate">enable</param> - <param name="revision">1.3.0</param> + <param name="revision">1.3.1</param> <param name="scm">git</param> <param name="url">https://gitlab.gnome.org/World/lollypop.git</param> <param name="versionformat">@PARENT_TAG@</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.fWHOHa/_old 2020-06-10 00:54:29.475894042 +0200 +++ /var/tmp/diff_new_pack.fWHOHa/_new 2020-06-10 00:54:29.475894042 +0200 @@ -1,4 +1,4 @@ <servicedata> <service name="tar_scm"> <param name="url">https://gitlab.gnome.org/World/lollypop.git</param> - <param name="changesrevision">e11d7549ed4c99e16e515dd2946714fb2c0e89d8</param></service></servicedata> \ No newline at end of file + <param name="changesrevision">523bd2fe072689ae7361b01e170915cc0db4064b</param></service></servicedata> \ No newline at end of file ++++++ lollypop-1.3.0.tar.xz -> lollypop-1.3.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.0/data/org.gnome.Lollypop.appdata.xml.in new/lollypop-1.3.1/data/org.gnome.Lollypop.appdata.xml.in --- old/lollypop-1.3.0/data/org.gnome.Lollypop.appdata.xml.in 2020-05-27 11:14:11.000000000 +0200 +++ new/lollypop-1.3.1/data/org.gnome.Lollypop.appdata.xml.in 2020-06-09 17:10:47.000000000 +0200 @@ -17,7 +17,7 @@ </ul> </description> <releases> - <release version="1.3.0" date="2020-05-27"> + <release version="1.3.1" date="2020-06-09"> <description> </description> </release> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.0/lollypop/player_auto_similar.py new/lollypop-1.3.1/lollypop/player_auto_similar.py --- old/lollypop-1.3.0/lollypop/player_auto_similar.py 2020-05-27 11:14:11.000000000 +0200 +++ new/lollypop-1.3.1/lollypop/player_auto_similar.py 2020-06-09 17:10:47.000000000 +0200 @@ -123,6 +123,17 @@ albums = tracks_to_albums([Track(track_id) for track_id in track_ids]) App().player.play_albums(albums) + @property + def radio_cancellable(self): + """ + Get cancellable + @return Gio.Cancellable + """ + return self.__radio_cancellable + +####################### +# PROTECTED # +####################### def _on_stream_start(self, bus, message): """ Cancel radio loading if current not a web track diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.0/lollypop/player_shuffle.py new/lollypop-1.3.1/lollypop/player_shuffle.py --- old/lollypop-1.3.0/lollypop/player_shuffle.py 2020-05-27 11:14:11.000000000 +0200 +++ new/lollypop-1.3.1/lollypop/player_shuffle.py 2020-06-09 17:10:47.000000000 +0200 @@ -194,6 +194,7 @@ @param settings as Gio.Settings @param value as GLib.Variant """ + self.__on_playback_setted(self, self.albums) if self._current_track.id is not None: self.set_next() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.0/lollypop/view_albums_list.py new/lollypop-1.3.1/lollypop/view_albums_list.py --- old/lollypop-1.3.0/lollypop/view_albums_list.py 2020-05-27 11:14:11.000000000 +0200 +++ new/lollypop-1.3.1/lollypop/view_albums_list.py 2020-06-09 17:10:47.000000000 +0200 @@ -116,7 +116,7 @@ self._box.remove(child) LazyLoadingView.populate(self, albums) - def clear(self, clear_albums=False): + def clear(self): """ Clear the view """ @@ -124,8 +124,6 @@ self.__reveals = [] for child in self._box.get_children(): self._box.remove(child) - if clear_albums: - App().player.clear_albums() def jump_to_current(self): """ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.0/lollypop/view_current_albums.py new/lollypop-1.3.1/lollypop/view_current_albums.py --- old/lollypop-1.3.0/lollypop/view_current_albums.py 2020-05-27 11:14:11.000000000 +0200 +++ new/lollypop-1.3.1/lollypop/view_current_albums.py 2020-06-09 17:10:47.000000000 +0200 @@ -10,6 +10,8 @@ # 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 GLib + from lollypop.utils_album import tracks_to_albums from lollypop.utils import emit_signal from lollypop.objects_track import Track @@ -70,6 +72,17 @@ else: self.show_placeholder(True) + def clear(self): + """ + Clear the view + """ + if not App().player.radio_cancellable.is_cancelled(): + App().player.radio_cancellable.cancel() + GLib.timeout_add(500, self.clear) + else: + AlbumsListView.clear(self) + App().player.clear_albums() + @property def filtered(self): """ @@ -125,7 +138,7 @@ break else: self.stop() - self.clear() + AlbumsListView.clear(self) self.populate() def _on_playback_added(self, player, album): @@ -156,12 +169,12 @@ """ if albums: self.stop() - self.clear() + AlbumsListView.clear(self) AlbumsListView.populate(self, albums) self.show_placeholder(False) else: self.stop() - self.clear() + AlbumsListView.clear(self) self.show_placeholder(True) def _on_playback_removed(self, player, album): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.0/lollypop/widgets_banner_current_albums.py new/lollypop-1.3.1/lollypop/widgets_banner_current_albums.py --- old/lollypop-1.3.0/lollypop/widgets_banner_current_albums.py 2020-05-27 11:14:11.000000000 +0200 +++ new/lollypop-1.3.1/lollypop/widgets_banner_current_albums.py 2020-06-09 17:10:47.000000000 +0200 @@ -247,7 +247,7 @@ Clear albums @param button as Gtk.Button """ - self.__view.clear(True) + self.__view.clear() self.__view.populate() emit_signal(App().player, "status-changed") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.0/lollypop.in new/lollypop-1.3.1/lollypop.in --- old/lollypop-1.3.0/lollypop.in 2020-05-27 11:14:11.000000000 +0200 +++ new/lollypop-1.3.1/lollypop.in 2020-06-09 17:10:47.000000000 +0200 @@ -1,4 +1,4 @@ -#!@PYTHON@ +#!/usr/bin/env python3 import sys import os diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.0/meson.build new/lollypop-1.3.1/meson.build --- old/lollypop-1.3.0/meson.build 2020-05-27 11:14:11.000000000 +0200 +++ new/lollypop-1.3.1/meson.build 2020-06-09 17:10:47.000000000 +0200 @@ -1,6 +1,6 @@ project('lollypop', - version: '1.3.0', - meson_version: '>= 0.40.0' + version: '1.3.1', + meson_version: '>= 0.46.0' ) revision = run_command('bin/revision.sh').stdout().strip() if revision == '' @@ -8,12 +8,12 @@ endif i18n = import('i18n') -python = import('python3') +py_mod = import('python') project_id = 'org.gnome.Lollypop' message('Looking for dependencies') -python_bin = python.find_python() -if not python_bin.found() +py_installation = py_mod.find_installation('python3') +if not py_installation.found() error('No valid python3 binary found') else message('Found python3 binary') @@ -26,7 +26,7 @@ dependency('glib-2.0') dependency('pygobject-3.0', version: '>= 3.29.1') -python_dir = join_paths(get_option('prefix'), python.sysconfig_path('purelib')) +python_dir = join_paths(get_option('prefix'), py_installation.get_install_dir()) LIBEXEC_DIR = join_paths(get_option('prefix'), get_option('libexecdir')) DATA_DIR = join_paths(get_option('prefix'), get_option('datadir'), meson.project_name()) bindir = join_paths(get_option('prefix'), get_option('bindir')) @@ -36,11 +36,10 @@ conf.set('DATA_DIR', DATA_DIR) conf.set('LOCALE_DIR', join_paths(get_option('prefix'), get_option('datadir'), 'locale')) conf.set('PYTHON_DIR', python_dir) -#conf.set('PYTHON_EXEC_DIR', join_paths(get_option('prefix'), python.sysconfig_path('stdlib'))) +#conf.set('PYTHON_EXEC_DIR', join_paths(get_option('prefix'), py_installation.get_path('stdlib'))) conf.set('libexecdir', LIBEXEC_DIR) conf.set('VERSION', meson.project_version()) conf.set('REVISION', revision) -conf.set('PYTHON', python_bin.path()) subdir('data') subproject('po') diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.0/search-provider/lollypop-sp.in new/lollypop-1.3.1/search-provider/lollypop-sp.in --- old/lollypop-1.3.0/search-provider/lollypop-sp.in 2020-05-27 11:14:11.000000000 +0200 +++ new/lollypop-1.3.1/search-provider/lollypop-sp.in 2020-06-09 17:10:47.000000000 +0200 @@ -1,4 +1,4 @@ -#!@PYTHON@ +#!/usr/bin/env python3 # Copyright (c) 2014-2016 Cedric Bellegarde <[email protected]> # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.0/subprojects/po/es_EC.po new/lollypop-1.3.1/subprojects/po/es_EC.po --- old/lollypop-1.3.0/subprojects/po/es_EC.po 2020-05-27 11:14:11.000000000 +0200 +++ new/lollypop-1.3.1/subprojects/po/es_EC.po 2020-06-09 17:10:47.000000000 +0200 @@ -8,15 +8,16 @@ "Project-Id-Version: lollypop\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-05-05 14:02+0200\n" -"PO-Revision-Date: 2017-11-27 14:00+0000\n" -"Last-Translator: Cédric Bellegarde <[email protected]>\n" -"Language-Team: Spanish (Ecuador) (http://www.transifex.com/gnumdk/lollypop/" -"language/es_EC/)\n" +"PO-Revision-Date: 2020-06-04 23:41+0000\n" +"Last-Translator: C0D3C <[email protected]>\n" +"Language-Team: Spanish (Ecuador) <https://hosted.weblate.org/projects/gnumdk/" +"lollypop/es_EC/>\n" "Language: es_EC\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" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.1-dev\n" #: ../data/org.gnome.Lollypop.gschema.xml:35 msgid "Window size" @@ -28,7 +29,7 @@ #: ../data/org.gnome.Lollypop.gschema.xml:40 msgid "Window position" -msgstr "" +msgstr "Posición de la Ventana" #: ../data/org.gnome.Lollypop.gschema.xml:41 msgid "Window position (x and y)." @@ -47,7 +48,7 @@ #: ../data/org.gnome.Lollypop.gschema.xml:308 #: ../data/org.gnome.Lollypop.gschema.xml:358 msgid "INTERNAL" -msgstr "" +msgstr "INTERNA" #: ../data/org.gnome.Lollypop.gschema.xml:60 msgid "Allow using a cover per track" @@ -63,7 +64,7 @@ #: ../data/org.gnome.Lollypop.gschema.xml:80 msgid "Window maximized" -msgstr "" +msgstr "Ventana Maximizada" #: ../data/org.gnome.Lollypop.gschema.xml:81 msgid "Window maximized state." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.0/subprojects/po/fi.po new/lollypop-1.3.1/subprojects/po/fi.po --- old/lollypop-1.3.0/subprojects/po/fi.po 2020-05-27 11:14:11.000000000 +0200 +++ new/lollypop-1.3.1/subprojects/po/fi.po 2020-06-09 17:10:47.000000000 +0200 @@ -9,7 +9,7 @@ "Project-Id-Version: lollypop\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-05-05 14:02+0200\n" -"PO-Revision-Date: 2020-01-02 17:21+0000\n" +"PO-Revision-Date: 2020-06-03 06:41+0000\n" "Last-Translator: Jiri Grönroos <[email protected]>\n" "Language-Team: Finnish <https://hosted.weblate.org/projects/gnumdk/lollypop/" "fi/>\n" @@ -18,7 +18,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.10\n" +"X-Generator: Weblate 4.1-dev\n" #: ../data/org.gnome.Lollypop.gschema.xml:35 msgid "Window size" @@ -109,7 +109,7 @@ #: ../data/org.gnome.Lollypop.gschema.xml:125 msgid "Show year below album name" -msgstr "" +msgstr "Näytä vuosi albumin nimen alla" #: ../data/org.gnome.Lollypop.gschema.xml:130 msgid "Import playlists from collections" @@ -254,7 +254,7 @@ #: ../data/org.gnome.Lollypop.gschema.xml:283 msgid "Force single column mode" -msgstr "" +msgstr "Pakota yhden sarakkeen tilaan" #: ../data/org.gnome.Lollypop.gschema.xml:288 msgid "Volume rate" @@ -407,6 +407,12 @@ "couch thanks to it fullscreen mode; fetches lyrics, artwork and biography " "online; and provides native support for ReplayGain." msgstr "" +"Lollypop on kevyt ja moderni musiikkisoitin, joka on suunniteltu toimimaan " +"erinomaisesti Gnome-työpöytäympäristön kanssa. Se sisältää muun muassa " +"biletilan, joka osaa valita automaattisesti sopivia soittolistoja ja " +"mahdollistaa soittimen käytön sohvalta kiitos koko näytön tilan. Lisäksi se " +"noutaa sanoituksia, kuvituksia ja artistiesittelyjä verkosta sekä tarjoaa " +"natiivin tuen ReplayGainille." #: ../data/org.gnome.Lollypop.appdata.xml.in:13 msgid "Multiple Audio Formats –" @@ -446,7 +452,7 @@ #: ../data/Appmenu.ui:63 msgid "Mini player" -msgstr "" +msgstr "Pienoissoitin" #: ../data/Appmenu.ui:81 msgid "Fullscreen" @@ -624,7 +630,7 @@ #: ../data/SettingsBehaviour.ui:257 msgid "Transitions between tracks" -msgstr "" +msgstr "Siirtymä kappaleiden välillä" #: ../data/SettingsBehaviour.ui:287 msgid "Smooth transitions" @@ -652,7 +658,7 @@ #: ../data/SettingsBehaviour.ui:414 msgid "Transitions duration in milliseconds" -msgstr "" +msgstr "Siirtymien kesto millisekunneissa" #: ../data/SettingsCollections.ui:44 ../lollypop/menu_playlist.py:112 msgid "Confirm" @@ -688,6 +694,8 @@ "Background data\n" "<span size=\"x-small\" alpha=\"70%\">Search artwork in background</span>" msgstr "" +"Tietojen käyttö taustalla\n" +"<span size=\"x-small\" alpha=\"70%\">Etsi kuvitusta taustalla</span>" #: ../data/SettingsWeb.ui:153 msgid "" @@ -724,6 +732,8 @@ "Startpage\n" "<span size=\"x-small\" alpha=\"70%\">Search songs , artwork, …</span>" msgstr "" +"Startpage\n" +"<span size=\"x-small\" alpha=\"70%\">Etsi kappaleita, kuvitusta…</span>" #: ../data/SettingsWeb.ui:228 msgid "" @@ -785,6 +795,9 @@ "<span size=\"x-small\" alpha=\"70%\">Artist biography, artwork search, …</" "span>" msgstr "" +"AudioDB\n" +"<span size=\"x-small\" alpha=\"70%\">Esittäjien biografia, kuvitusten " +"haku…</span>" #: ../data/SettingsWeb.ui:530 msgid "" @@ -797,6 +810,8 @@ "DuckDuckGo\n" "<span size=\"x-small\" alpha=\"70%\">Search songs , artwork, …</span>" msgstr "" +"DuckDuckGo\n" +"<span size=\"x-small\" alpha=\"70%\">Etsi kappaleita, kuvituksia…</span>" #: ../data/SettingsWeb.ui:588 msgid "" @@ -806,7 +821,7 @@ #: ../data/SettingsWeb.ui:635 msgid "Privacy" -msgstr "" +msgstr "Tietosuoja" #: ../data/SettingsWeb.ui:653 ../data/SettingsWeb.ui:693 #: ../lollypop/widgets_settings_web.py:129 @@ -820,7 +835,7 @@ #: ../data/SettingsWeb.ui:683 msgid "Libre.fm:" -msgstr "" +msgstr "Libre.fm:" #: ../data/SettingsWeb.ui:738 msgid "" @@ -877,6 +892,9 @@ "<span size=\"small\" alpha='40000'>Activate this if Web playback does not " "work</span>" msgstr "" +"Käytä äskettäistä versiota youtube-dl:stä\n" +"<span size=\"small\" alpha='40000'>Aktivoi tämä jos verkkotoisto ei " +"toimi</span>" #: ../data/SettingsWeb.ui:965 msgid "No server set" @@ -948,7 +966,7 @@ #: ../data/Shortcuts.ui:87 msgctxt "shortcut window" msgid "Mini player" -msgstr "" +msgstr "Pienoissoitin" #: ../data/Shortcuts.ui:96 msgctxt "shortcut window" @@ -1100,11 +1118,11 @@ #: ../data/ToolbarEnd.ui:31 msgid "Automatic playback (similar)" -msgstr "" +msgstr "Automaattinen toisto (samankaltainen)" #: ../data/ToolbarEnd.ui:36 msgid "Automatic playback (random)" -msgstr "" +msgstr "Automaattinen toisto (satunnainen)" #: ../data/ToolbarEnd.ui:41 msgid "Repeat track" @@ -1165,7 +1183,7 @@ #: ../lollypop/database_upgrade.py:779 msgid "Please wait while Lollypop is updating albums" -msgstr "" +msgstr "Odota hetki, kun Lollypop päivittää albumeja" #: ../lollypop/database_upgrade.py:798 msgid "Please wait while Lollypop is updating tracks" @@ -1178,7 +1196,7 @@ #: ../lollypop/dialog_apps.py:73 msgid "Select" -msgstr "" +msgstr "Valitse" #: ../lollypop/dialog_apps.py:81 msgid "Select an application" @@ -1250,7 +1268,7 @@ #: ../lollypop/menu_actions.py:99 msgid "Open with…" -msgstr "" +msgstr "Avaa sovelluksella…" #: ../lollypop/menu_artist.py:48 msgid "Show tracks" @@ -1294,7 +1312,7 @@ #: ../lollypop/menu_objects.py:59 ../lollypop/menu_objects.py:108 msgid "Others" -msgstr "" +msgstr "Muut" #: ../lollypop/menu_objects.py:130 msgid "%Y-%m-%d" @@ -1307,7 +1325,7 @@ #: ../lollypop/menu_playback.py:57 ../lollypop/menu_playback.py:265 #: ../lollypop/menu_playback.py:501 msgid "Play a radio" -msgstr "" +msgstr "Toista radioa" #: ../lollypop/menu_playback.py:72 msgid "Add to playback" @@ -1332,7 +1350,7 @@ #: ../lollypop/menu_playback.py:136 msgid "From collection" -msgstr "" +msgstr "Kokoelmasta" #: ../lollypop/menu_playback.py:144 ../lollypop/menu_search.py:56 msgid "Deezer" @@ -1344,11 +1362,11 @@ #: ../lollypop/menu_playback.py:164 ../lollypop/menu_search.py:68 msgid "Spotify" -msgstr "" +msgstr "Spotify" #: ../lollypop/menu_playback.py:168 ../lollypop/menu_suggestions.py:74 msgid "From the Web" -msgstr "" +msgstr "Verkosta" #: ../lollypop/menu_playback.py:208 msgid "Play this playlist" @@ -1428,7 +1446,7 @@ #: ../lollypop/menu_search.py:64 msgid "MusicBrainz" -msgstr "" +msgstr "MusicBrainz" #: ../lollypop/menu_selectionlist.py:50 msgid "Default on startup" @@ -1472,7 +1490,7 @@ #: ../lollypop/menu_suggestions.py:47 ../lollypop/view_suggestions.py:129 msgid "New releases on Spotify" -msgstr "" +msgstr "Uudet julkaisut Spotifyssa" #: ../lollypop/menu_suggestions.py:59 ../lollypop/view_suggestions.py:127 msgid "Suggestions from Spotify" @@ -1480,7 +1498,7 @@ #: ../lollypop/menu_suggestions.py:71 ../lollypop/view_suggestions.py:131 msgid "Top albums on Deezer" -msgstr "" +msgstr "Top-albumit Deezerissä" #: ../lollypop/menu_sync.py:33 msgid "All devices" @@ -1617,6 +1635,7 @@ #: ../lollypop/view_albums_box.py:61 ../lollypop/view_lyrics.py:168 msgid "Network unavailable or disabled in settings" msgstr "" +"Verkko ei ole käytettävissä tai verkon käyttö on estetty asetusten kautta" #: ../lollypop/view_albums_line.py:164 msgid "Others compilations" @@ -1771,7 +1790,7 @@ #: ../lollypop/widgets_equalizer.py:34 msgid "Laptop/Headphones" -msgstr "" +msgstr "Kannettava/kuulokkeet" #: ../lollypop/widgets_equalizer.py:35 msgid "Large Hall" @@ -1901,7 +1920,7 @@ #: ../lollypop/widgets_settings_web.py:269 msgid "Disconnect" -msgstr "" +msgstr "Katkaise yhteys" #: ../lollypop/wikipedia.py:117 msgid "band" @@ -1909,7 +1928,7 @@ #: ../lollypop/wikipedia.py:117 msgid "singer" -msgstr "" +msgstr "laulaja" #~ msgid "Network not available" #~ msgstr "Verkkoa ei ole käytettävissä" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.0/subprojects/po/it.po new/lollypop-1.3.1/subprojects/po/it.po --- old/lollypop-1.3.0/subprojects/po/it.po 2020-05-27 11:14:11.000000000 +0200 +++ new/lollypop-1.3.1/subprojects/po/it.po 2020-06-09 17:10:47.000000000 +0200 @@ -17,7 +17,7 @@ "Project-Id-Version: lollypop\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-05-05 14:02+0200\n" -"PO-Revision-Date: 2020-04-19 23:11+0000\n" +"PO-Revision-Date: 2020-06-03 06:41+0000\n" "Last-Translator: Gianluca Boiano <[email protected]>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/gnumdk/lollypop/" "it/>\n" @@ -26,7 +26,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 4.0.2-dev\n" +"X-Generator: Weblate 4.1-dev\n" #: ../data/org.gnome.Lollypop.gschema.xml:35 msgid "Window size" @@ -93,11 +93,11 @@ #: ../data/org.gnome.Lollypop.gschema.xml:95 msgid "Shown suggestions" -msgstr "" +msgstr "Suggerimenti mostrati" #: ../data/org.gnome.Lollypop.gschema.xml:100 msgid "Play featured tracks" -msgstr "" +msgstr "Riproduci tracce in primo piano" #: ../data/org.gnome.Lollypop.gschema.xml:105 msgid "Allow syncing to USB disks" @@ -117,7 +117,7 @@ #: ../data/org.gnome.Lollypop.gschema.xml:125 msgid "Show year below album name" -msgstr "" +msgstr "Mostra anno sotto al nome dell'album" #: ../data/org.gnome.Lollypop.gschema.xml:130 msgid "Import playlists from collections" @@ -476,7 +476,7 @@ #: ../data/Appmenu.ui:63 msgid "Mini player" -msgstr "" +msgstr "Mini player" #: ../data/Appmenu.ui:81 msgid "Fullscreen" @@ -816,6 +816,8 @@ "Deezer\n" "<span size=\"x-small\" alpha=\"70%\">Artwork search, search songs</span>" msgstr "" +"Deezer\n" +"<span size=\"x-small\" alpha=\"70%\">Cerca copertine, canzoni</span>" #: ../data/SettingsWeb.ui:501 msgid "" @@ -1000,7 +1002,7 @@ #: ../data/Shortcuts.ui:87 msgctxt "shortcut window" msgid "Mini player" -msgstr "" +msgstr "Mini player" #: ../data/Shortcuts.ui:96 msgctxt "shortcut window" @@ -1217,11 +1219,11 @@ #: ../lollypop/database_upgrade.py:779 msgid "Please wait while Lollypop is updating albums" -msgstr "" +msgstr "Un po di pazienza. Lollypop sta aggiornando gli album" #: ../lollypop/database_upgrade.py:798 msgid "Please wait while Lollypop is updating tracks" -msgstr "" +msgstr "Un po di pazienza. Lollypop sta aggiornando le tracce" #: ../lollypop/dialog_apps.py:70 ../lollypop/menu_playlist.py:138 #: ../lollypop/widgets_device.py:144 @@ -1310,11 +1312,11 @@ #: ../lollypop/menu_artist.py:57 msgid "Show year" -msgstr "" +msgstr "Mostra anno" #: ../lollypop/menu_artist.py:65 msgid "Play featured" -msgstr "" +msgstr "Riproduci in primo piano" #: ../lollypop/menu_artist.py:68 ../lollypop/menu_decade.py:39 #: ../lollypop/menu_genre.py:41 ../lollypop/menu_objects.py:45 @@ -1371,7 +1373,7 @@ #: ../lollypop/menu_playback.py:114 msgid "Related tracks" -msgstr "" +msgstr "Tracce correlate" #: ../lollypop/menu_playback.py:123 ../lollypop/playlists.py:107 #: ../lollypop/playlists.py:354 ../lollypop/shown.py:70 @@ -1400,7 +1402,7 @@ #: ../lollypop/menu_playback.py:168 ../lollypop/menu_suggestions.py:74 msgid "From the Web" -msgstr "" +msgstr "Dal Web" #: ../lollypop/menu_playback.py:208 msgid "Play this playlist" @@ -1444,7 +1446,7 @@ #: ../lollypop/menu_playlist.py:50 msgid "Sync from Last.FM" -msgstr "" +msgstr "Sincronizza con Last.FM" #: ../lollypop/menu_playlist.py:57 msgid "Manage smart playlist" @@ -1524,15 +1526,15 @@ #: ../lollypop/menu_suggestions.py:47 ../lollypop/view_suggestions.py:129 msgid "New releases on Spotify" -msgstr "" +msgstr "Nuove uscite su Spotify" #: ../lollypop/menu_suggestions.py:59 ../lollypop/view_suggestions.py:127 msgid "Suggestions from Spotify" -msgstr "" +msgstr "Suggeriti da Spotify" #: ../lollypop/menu_suggestions.py:71 ../lollypop/view_suggestions.py:131 msgid "Top albums on Deezer" -msgstr "" +msgstr "Migliori album su Deezer" #: ../lollypop/menu_sync.py:33 msgid "All devices" @@ -1545,7 +1547,7 @@ #: ../lollypop/player_albums.py:58 ../lollypop/player_albums.py:142 #: ../lollypop/player_albums.py:169 ../lollypop/player_albums.py:185 msgid "No album available" -msgstr "" +msgstr "Nessun album disponibile" #: ../lollypop/player_bin.py:428 msgid "Can't find this track on YouTube" @@ -1668,7 +1670,7 @@ #: ../lollypop/view_albums_box.py:61 ../lollypop/view_lyrics.py:168 msgid "Network unavailable or disabled in settings" -msgstr "" +msgstr "Rete non disponibile o disattivata nelle impostazioni" #: ../lollypop/view_albums_line.py:164 msgid "Others compilations" @@ -1730,7 +1732,7 @@ #: ../lollypop/view_tracks_album.py:67 msgid "All tracks skipped" -msgstr "" +msgstr "Tutte le tracce saltate" #: ../lollypop/view_tracks_album.py:231 #, python-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.0/subprojects/po/pl.po new/lollypop-1.3.1/subprojects/po/pl.po --- old/lollypop-1.3.0/subprojects/po/pl.po 2020-05-27 11:14:11.000000000 +0200 +++ new/lollypop-1.3.1/subprojects/po/pl.po 2020-06-09 17:10:47.000000000 +0200 @@ -16,7 +16,7 @@ "Project-Id-Version: lollypop\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-05-05 14:02+0200\n" -"PO-Revision-Date: 2020-05-09 12:13+0000\n" +"PO-Revision-Date: 2020-06-03 06:41+0000\n" "Last-Translator: Tomasz Małota <[email protected]>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/gnumdk/lollypop/" "pl/>\n" @@ -1151,7 +1151,7 @@ #: ../data/ToolbarEnd.ui:26 msgid "Continuous playback" -msgstr "Odtwarzanie w pętli" +msgstr "Odtwarzaj w pętli" #: ../data/ToolbarEnd.ui:31 msgid "Automatic playback (similar)" @@ -1332,7 +1332,7 @@ #: ../lollypop/menu_current_albums.py:34 ../lollypop/menu_current_albums.py:52 #: ../lollypop/shown.py:41 ../lollypop/widgets_banner_current_albums.py:64 msgid "Playing albums" -msgstr "Odtwarzanie albumów" +msgstr "Odtwarzane albumy" #: ../lollypop/menu_current_albums.py:42 msgid "Create a new playlist" @@ -1721,7 +1721,7 @@ #: ../lollypop/view_search.py:151 ../lollypop/view_search.py:161 #: ../lollypop/view_search.py:185 msgid "Search for artists, albums and tracks" -msgstr "Wyszukaj wykonawców, albumy i utwory" +msgstr "Szukaj wykonawców, albumów i utworów" #: ../lollypop/view_search.py:305 msgid "No results for this search" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.0/subprojects/po/pt_BR.po new/lollypop-1.3.1/subprojects/po/pt_BR.po --- old/lollypop-1.3.0/subprojects/po/pt_BR.po 2020-05-27 11:14:11.000000000 +0200 +++ new/lollypop-1.3.1/subprojects/po/pt_BR.po 2020-06-09 17:10:47.000000000 +0200 @@ -15,7 +15,7 @@ "Project-Id-Version: lollypop\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-05-05 14:02+0200\n" -"PO-Revision-Date: 2020-05-07 18:27+0000\n" +"PO-Revision-Date: 2020-06-09 13:41+0000\n" "Last-Translator: Carlos Henrique De Freitas F. <[email protected]>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "gnumdk/lollypop/pt_BR/>\n" @@ -87,7 +87,7 @@ #: ../data/org.gnome.Lollypop.gschema.xml:90 ../lollypop/menu_search.py:40 msgid "Search on the Web" -msgstr "Procurar na Web" +msgstr "Procurar na Rede" #: ../data/org.gnome.Lollypop.gschema.xml:95 msgid "Shown suggestions" @@ -111,7 +111,7 @@ #: ../data/org.gnome.Lollypop.gschema.xml:120 msgid "If true, Lollypop will not use system youtube-dl" -msgstr "Se verdadeiro, Lollypop não usará o sistema youtube-dl" +msgstr "Se verdadeiro, Lollypop não usará o sistema youtube-dl" #: ../data/org.gnome.Lollypop.gschema.xml:125 msgid "Show year below album name" @@ -370,10 +370,7 @@ #: ../data/AboutDialog.ui.in:27 msgctxt "Translation credits here, put your name here!" msgid "Cédric Bellegarde <[email protected]>" -msgstr "" -"Ian Brunelli <[email protected]>, Lucas Miranda <[email protected]>, Laís " -"Figueiredo <[email protected]>, Carlos Henrique Freitas.F " -"<[email protected]>" +msgstr "Carlos Henrique de Freitas F. <[email protected]>" #: ../data/AboutDialog.ui.in:28 msgid "" @@ -411,11 +408,11 @@ #: ../data/AboutDialog.ui.in:84 ../lollypop/container_notification.py:86 msgid "Patreon" -msgstr "Site Patreon" +msgstr "Patreon" #: ../data/AboutDialog.ui.in:94 ../lollypop/container_notification.py:86 msgid "PayPal" -msgstr "PayPal" +msgstr "PayPal Pagamentos" #: ../data/org.gnome.Lollypop.appdata.xml.in:8 #: ../data/org.gnome.Lollypop.desktop.in:3 @@ -492,7 +489,7 @@ #: ../data/Appmenu.ui:123 msgid "_Keyboard Shortcuts" -msgstr "_Atalhos de Teclado" +msgstr "_Atalhos do Teclado" #: ../data/Appmenu.ui:137 msgid "_About Lollypop" @@ -956,12 +953,12 @@ #: ../data/Shortcuts.ui:17 msgctxt "shortcut window" msgid "Settings" -msgstr "Configurações" +msgstr "Ajustes" #: ../data/Shortcuts.ui:24 msgctxt "shortcut window" msgid "Search" -msgstr "Pesquisar" +msgstr "Buscar" #: ../data/Shortcuts.ui:31 msgctxt "shortcut window" @@ -1001,7 +998,7 @@ #: ../data/Shortcuts.ui:80 msgctxt "shortcut window" msgid "Fullscreen" -msgstr "Tela cheia" +msgstr "Tela Cheia" #: ../data/Shortcuts.ui:87 msgctxt "shortcut window" @@ -1215,7 +1212,7 @@ #: ../lollypop/container_notification.py:85 msgid "Please consider a donation to the project" -msgstr "Por favor, considere fazer uma doação ao projeto" +msgstr "Considere ajudar o projeto com uma doação" #: ../lollypop/database_artists.py:122 msgid "Many artists" @@ -1482,7 +1479,7 @@ #: ../lollypop/menu_search.py:33 ../lollypop/shown.py:40 msgid "Search" -msgstr "Pesquisar" +msgstr "Buscar" #: ../lollypop/menu_search.py:64 msgid "MusicBrainz" @@ -1494,7 +1491,7 @@ #: ../lollypop/menu_selectionlist.py:53 msgid "Startup" -msgstr "Inicializar" +msgstr "Iniciar" #: ../lollypop/menu_selectionlist.py:96 msgid "Sidebar"
