diff --git a/src/FlowPlayer.cpp b/src/FlowPlayer.cpp index bea8eac..dfb80e5 100644 --- a/src/FlowPlayer.cpp +++ b/src/FlowPlayer.cpp @@ -113,6 +113,9 @@ int main(int argc, char *argv[]) app->installTranslator(&translator); + // ensure the media cache dir is created + const QString mediaCacheDir = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art"; + QDir().mkpath(mediaCacheDir); QScopedPointer window(SailfishApp::createView()); window->setTitle("FlowPlayer"); diff --git a/src/coversearch.cpp b/src/coversearch.cpp index 7a53c57..f01e95c 100644 --- a/src/coversearch.cpp +++ b/src/coversearch.cpp @@ -357,7 +357,7 @@ void CoverSearch::paintImg(QString image, int index) void CoverSearch::saveImage(QString artist, QString album, QString imagepath) { - QString th2 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-"+ doubleHash(artist, album) + ".jpeg"; + QString th2 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-"+ doubleHash(artist, album) + ".jpeg"; QImage image(imagepath); image.save(th2, "JPEG"); diff --git a/src/datareader.cpp b/src/datareader.cpp index 17a858c..c15bf09 100644 --- a/src/datareader.cpp +++ b/src/datareader.cpp @@ -1,4 +1,5 @@ #include "datareader.h" +#include "globalutils.h" #include #include @@ -25,6 +26,7 @@ #include #include #include +#include extern bool databaseWorking; extern bool isDBOpened; @@ -185,6 +187,10 @@ TagLib::File* DataReader::getFileByMimeType(QString file) void DataReader::readFile(QString file) { + // Is oFile used somewhere? (I failed to find a location.) + // If not, what is this new line good for? For details, see PR #75. + QString oFile = file; + file.remove("file://"); TagLib::File* tf = getFileByMimeType(file); @@ -202,6 +208,31 @@ void DataReader::readFile(QString file) m_tracknum = QString::number(tagFile->tag()->track()); if (m_title=="") m_title = QFileInfo(file).baseName(); + + // if we have artist and album, we check for a cover image. + if (m_artist != "" && m_album != "") { + QFileInfo info(file); + QDirIterator iterator(info.dir()); + while (iterator.hasNext()) { + iterator.next(); + // we are explicit about two common factors, the type JPEG (ToDo: add PNG + // throughout all C++ source files, see issue #78), and basename cover or folder + if (iterator.fileInfo().isFile()) { + if ( (iterator.fileInfo().suffix() == "jpeg" || + iterator.fileInfo().suffix() == "jpg") && + // See ToDo above: (… || + // iterator.fileInfo().suffix() == "png") && + (iterator.fileInfo().baseName() == "cover" || + iterator.fileInfo().baseName() == "folder") ) { + QString th2 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + + "/media-art/album-" + doubleHash(m_artist, m_album) + ".jpeg"; + qDebug() << "COPYING FILE ART: " << iterator.filePath() << m_artist << m_album; + QFile::copy(iterator.filePath(), th2); + } + } + } + } + if (m_artist=="") m_artist = tr("Unknown artist"); if (m_album=="") m_album = tr("Unknown album"); diff --git a/src/datos.cpp b/src/datos.cpp index 67e9fbe..f202fbf 100644 --- a/src/datos.cpp +++ b/src/datos.cpp @@ -29,7 +29,7 @@ bool namefileLessThan(const QStringList &d1, const QStringList &d2) QString Datos::getThumbnail(QString data, int index) { - QString th1 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-"+ data + ".jpeg"; + QString th1 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-"+ data + ".jpeg"; /*QString th2 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/flowplayer/62/album-"+ data + ".jpeg"; @@ -320,7 +320,7 @@ void Datos::DatosPrivate::populateItems() item->band = q->listado[i][3]; item->songs = q->listado[i][4]; item->hash = doubleHash(item->acount=="1"? item->artist : item->title, item->title); - item->coverart = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-"+ item->hash + ".jpeg"; + item->coverart = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-"+ item->hash + ".jpeg"; item->isSelected = false; } else if (groupFilter=="artist") { item->artist = q->listado[i][1]=="1"? tr("1 album") : tr("%1 albums").arg( q->listado[i][1].toInt()); diff --git a/src/loadwebimage.cpp b/src/loadwebimage.cpp index d438547..600a1c9 100644 --- a/src/loadwebimage.cpp +++ b/src/loadwebimage.cpp @@ -80,7 +80,7 @@ bool WebThread::checkInternal() if (QFileInfo(dir + "/folder.jpg").exists()) { - QString th2 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-"+ doubleHash(artist, album) + ".jpeg"; + QString th2 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-"+ doubleHash(artist, album) + ".jpeg"; QImage image(dir + "/folder.jpg"); image.save(th2, "JPEG"); emit imgLoaded(th2, files[0][2].toInt()); @@ -89,7 +89,7 @@ bool WebThread::checkInternal() else if (QFileInfo(dir + "/folder.jpeg").exists()) { - QString th2 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-"+ doubleHash(artist, album) + ".jpeg"; + QString th2 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-"+ doubleHash(artist, album) + ".jpeg"; QImage image(dir + "/folder.jpeg"); image.save(th2, "JPEG"); emit imgLoaded(th2, files[0][2].toInt()); @@ -98,7 +98,7 @@ bool WebThread::checkInternal() else if (QFileInfo(dir + "/cover.jpg").exists()) { - QString th2 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-"+ doubleHash(artist, album) + ".jpeg"; + QString th2 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-"+ doubleHash(artist, album) + ".jpeg"; QImage image(dir + "/cover.jpg"); image.save(th2, "JPEG"); emit imgLoaded(th2, files[0][2].toInt()); @@ -107,7 +107,7 @@ bool WebThread::checkInternal() if (QFileInfo(dir + "/Folder.jpg").exists()) { - QString th2 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-"+ doubleHash(artist, album) + ".jpeg"; + QString th2 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-"+ doubleHash(artist, album) + ".jpeg"; QImage image(dir + "/Folder.jpg"); image.save(th2, "JPEG"); emit imgLoaded(th2, files[0][2].toInt()); @@ -116,7 +116,7 @@ bool WebThread::checkInternal() else if (QFileInfo(dir + "/Folder.jpeg").exists()) { - QString th2 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-"+ doubleHash(artist, album) + ".jpeg"; + QString th2 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-"+ doubleHash(artist, album) + ".jpeg"; QImage image(dir + "/Folder.jpeg"); image.save(th2, "JPEG"); emit imgLoaded(th2, files[0][2].toInt()); @@ -125,7 +125,7 @@ bool WebThread::checkInternal() else if (QFileInfo(dir + "/Cover.jpg").exists()) { - QString th2 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-"+ doubleHash(artist, album) + ".jpeg"; + QString th2 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-"+ doubleHash(artist, album) + ".jpeg"; QImage image(dir + "/Cover.jpg"); image.save(th2, "JPEG"); emit imgLoaded(th2, files[0][2].toInt()); @@ -292,7 +292,7 @@ QString WebThread::saveToDisk(QIODevice *reply) QString art = files[0][0]; QString alb = files[0][1]; - QString th2 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-"+ doubleHash(art, alb) + ".jpeg"; + QString th2 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-"+ doubleHash(art, alb) + ".jpeg"; QImage image = QImage::fromData(reply->readAll()); image.save(th2, "JPEG"); @@ -304,7 +304,7 @@ QString WebThread::saveToDiskExtern(QIODevice *reply) { QImage image = QImage::fromData(reply->readAll()); - QString path = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/flowplayer/" + hash(curImage) + ".jpeg"; + QString path = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/flowplayer/" + hash(curImage) + ".jpeg"; image.save(path, "JPEG"); diff --git a/src/missing.cpp b/src/missing.cpp index bb33a50..23e6eaf 100644 --- a/src/missing.cpp +++ b/src/missing.cpp @@ -78,10 +78,10 @@ void Missing::loadData() if (dato1!=tr("Unknown album") && dato2!=tr("Unknown artist")) { - QString th2 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-"+ doubleHash(dato2, dato1) + ".jpeg"; + QString th2 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-"+ doubleHash(dato2, dato1) + ".jpeg"; if ( ! QFileInfo(th2).exists() ) { - QString th3 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-"+ doubleHash(dato1, dato1); + ".jpeg"; + QString th3 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-"+ doubleHash(dato1, dato1); + ".jpeg"; if ( ! QFileInfo(th3).exists() ) { //qDebug() << dato1 << " doesn't exist. Adding to list"; diff --git a/src/utils.cpp b/src/utils.cpp index 1ce7f78..a21d363 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -83,7 +83,7 @@ void Utils::readLyrics(QString artist, QString song) QString sng = cleanItem(song); if ( ( art!="" ) && ( sng!="" ) ) { - QString th1 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/lyrics/"+art+"-"+sng+".txt"; + QString th1 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/lyrics/"+art+"-"+sng+".txt"; if ( QFileInfo(th1).exists() ) { @@ -116,10 +116,10 @@ QString Utils::thumbnail(QString artist, QString album, QString count) QString art = count=="1"? artist : album; QString alb = album; - QString th1 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-"+ doubleHash(art, alb) + ".jpeg"; + QString th1 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-"+ doubleHash(art, alb) + ".jpeg"; if (!QFileInfo(th1).exists()) { - QString th2 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-"+ doubleHash(alb, alb) + ".jpeg"; + QString th2 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-"+ doubleHash(alb, alb) + ".jpeg"; if (QFileInfo(th2).exists()) return th2; } @@ -355,11 +355,11 @@ void Utils::downloaded(QNetworkReply *respuesta) void Utils::saveLyrics(QString artist, QString song, QString lyrics) { QDir d; - d.mkdir(QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/lyrics"); + d.mkdir(QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/lyrics"); QString art = cleanItem(artist); QString sng = cleanItem(song); - QString f = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/lyrics/"+art+"-"+sng+".txt"; + QString f = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/lyrics/"+art+"-"+sng+".txt"; if ( QFileInfo(f).exists() ) QFile::remove(f); @@ -377,11 +377,11 @@ void Utils::saveLyrics(QString artist, QString song, QString lyrics) void Utils::saveLyrics2(QString artist, QString song, QString lyrics) { QDir d; - d.mkdir(QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/lyrics"); + d.mkdir(QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/lyrics"); QString art = cleanItem(artist); QString sng = cleanItem(song); - QString f = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/lyrics/"+art+"-"+sng+".txt"; + QString f = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/lyrics/"+art+"-"+sng+".txt"; if ( QFileInfo(f).exists() ) QFile::remove(f); @@ -421,10 +421,10 @@ void Utils::Finished(int requestId, bool) QImage img; img.loadFromData(bytes); - QString th1 = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/album-" + doubleHash(albumArtArtist, albumArtAlbum) + ".jpeg"; - if ( QFileInfo(QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/preview.jpeg").exists() ) + QString th1 = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/album-" + doubleHash(albumArtArtist, albumArtAlbum) + ".jpeg"; + if ( QFileInfo(QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/preview.jpeg").exists() ) removePreview(); - img.save(QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/preview.jpeg"); + img.save(QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/preview.jpeg"); downloadedAlbumArt = th1; emit coverDownloaded(); } @@ -434,7 +434,7 @@ void Utils::Finished(int requestId, bool) void Utils::removePreview() { - QFile f(QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/media-art/preview.jpeg"); + QFile f(QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + "/media-art/preview.jpeg"); f.remove(); } diff --git a/translations/ca.ts b/translations/ca.ts index 95741bd..44b7e9d 100644 --- a/translations/ca.ts +++ b/translations/ca.ts @@ -9,19 +9,24 @@ Quant a - - Taglib is used for reading, writing and manipulating audio file tags - S'utilitza Taglib per llegir, escriure i manipular etiquetes dels fitxers d'àudio + + Original author: + + + + + Contributors: + - - If your language is not available you can contribute here: - Si el vostre idioma no està disponible podeu contribuir aquí: + + If you want to create a new translation or improve an extant one: + - - You can contribute to keep this project alive making a small donation - Podeu contribuir a mantenir aquest projecte actiu fent una petita donació + + You can support the original author of FlowPlayer by donating: + @@ -221,12 +226,12 @@ DataReader - + Unknown artist Artista desconegut - + Unknown album Àlbum desconegut @@ -234,17 +239,17 @@ Datos - + Various artists Artistes diversos - + 1 album 1 àlbum - + %1 albums %1 àlbums @@ -335,48 +340,48 @@ LFM - - + + Error fetching artist information Error en l'obtenció de la informació de l'artista - + The artist could not be found No s'ha pogut trobar l'artista - + Error fetching album information Error en l'obtenció de la informació de l'àlbum - + The album could not be found No s'ha pogut trobar l'àlbum - + No album information available No s'ha trobat informació de l'àlbum - + Error fetching track information Error en l'obtenció de la informació de la pista - + The track could not be found No s'ha pogut trobar la pista - + No track information available No s'ha trobat informació de la pista - + Fetching artist information S'està obtenint la informació de l'artista @@ -614,12 +619,12 @@ Meta - + Unknown artist Artista desconegut - + Unknown album Àlbum desconegut @@ -674,17 +679,17 @@ Missing - + Various artists Artistes diversos - + Unknown album Àlbum desconegut - + Unknown artist Artista desconegut @@ -706,12 +711,12 @@ MyPlaylist - + Unknown artist Artista desconegut - + Unknown album Àlbum desconegut @@ -843,15 +848,23 @@ No hi ha cap emissora desada + + PickFolder + + + Select folder + Selecciona una carpeta + + Playlist - + Unknown artist Artista desconegut - + Unknown album Àlbum desconegut @@ -859,7 +872,7 @@ PlaylistManager - + Custom playlists Personalitza les llistes de reproducció diff --git a/translations/da.ts b/translations/da.ts index d367991..dc3b060 100644 --- a/translations/da.ts +++ b/translations/da.ts @@ -9,19 +9,24 @@ Om - - Taglib is used for reading, writing and manipulating audio file tags - TagLib bruges til at læse, skrive og manipulere audiofilmærker + + Original author: + + + + + Contributors: + - - If your language is not available you can contribute here: - Hvis dit sprog ikke et tilgængeligt, kan du bidrage her: + + If you want to create a new translation or improve an extant one: + - - You can contribute to keep this project alive making a small donation - Du kan bidrage til at holde dette projekt i live ved at give en lille donation + + You can support the original author of FlowPlayer by donating: + @@ -221,12 +226,12 @@ DataReader - + Unknown artist Ukendt kunstner - + Unknown album Ukendt album @@ -234,17 +239,17 @@ Datos - + Various artists Forskellige kunstnere - + 1 album 1 album - + %1 albums %1 albums @@ -335,48 +340,48 @@ LFM - - + + Error fetching artist information Fejl ved hentning af kunstnerinformation - + The artist could not be found Kunstneren kunne ikke findes - + Error fetching album information Fejl ved hentning af albuminformation - + The album could not be found Albummet kunne ikke findes - + No album information available Ingen albuminformation tilgængelig - + Error fetching track information Fejl ved hentning af sporinformation - + The track could not be found Sporet kan ikke findes - + No track information available Ingen information om spor tilgængelig - + Fetching artist information Henter info om kunstner @@ -614,12 +619,12 @@ Meta - + Unknown artist Ukendt kunstner - + Unknown album Ukendt album @@ -674,17 +679,17 @@ Missing - + Various artists Forskellige kunstnere - + Unknown album Ukendt album - + Unknown artist Ukendt kunstner @@ -706,12 +711,12 @@ MyPlaylist - + Unknown artist Ukendt kunstner - + Unknown album Ukendt album @@ -843,15 +848,23 @@ Ingen gemte stationer + + PickFolder + + + Select folder + Vælg folder + + Playlist - + Unknown artist Ukendt kunstner - + Unknown album Ukendt album @@ -859,7 +872,7 @@ PlaylistManager - + Custom playlists Brugerdefinerede afspilningslister diff --git a/translations/de.ts b/translations/de.ts index 18b68f8..5b76964 100644 --- a/translations/de.ts +++ b/translations/de.ts @@ -1,4 +1,6 @@ - + + + AboutPage @@ -7,12 +9,12 @@ Über - + Original author: Ursprünglicher Autor: - + Contributors: Beitragende: @@ -22,7 +24,7 @@ Wenn Du eine neue Übersetzung erstellen oder eine bestehende verbessern möchtest: - + You can support the original author of FlowPlayer by donating: Du kannst den ursprünglichen Autor von FlowPlayer durch eine Spende unterstützen: @@ -224,12 +226,12 @@ DataReader - + Unknown artist Unbekannter Künstler - + Unknown album Unbekanntes Album @@ -237,17 +239,17 @@ Datos - + Various artists Diverse Künstler - + 1 album 1 Album - + %1 albums %1 Alben @@ -338,48 +340,48 @@ LFM - - + + Error fetching artist information Fehler beim Abruf der Künstlerinformationen - + The artist could not be found Der Künstler konnte nicht gefunden werden - + Error fetching album information Fehler beim Abruf der Albuminformationen - + The album could not be found Das Album konnte nicht gefunden werden - + No album information available Keine Informationen zum Album verfügbar - + Error fetching track information Fehler beim Abruf der Titelinformationen - + The track could not be found Der Titel konnte nicht gefunden werden - + No track information available Keine Titelinformationen verfügbar - + Fetching artist information Hole Künstlerinformationen @@ -617,12 +619,12 @@ Meta - + Unknown artist Unbekannter Künstler - + Unknown album Unbekanntes Album @@ -677,17 +679,17 @@ Missing - + Various artists Diverse Künstler - + Unknown album Unbekanntes Album - + Unknown artist Unbekannter Künstler @@ -709,12 +711,12 @@ MyPlaylist - + Unknown artist Unbekannter Künstler - + Unknown album Unbekanntes Album @@ -846,15 +848,23 @@ Keine Sender vorhanden + + PickFolder + + + Select folder + Ordner auswählen + + Playlist - + Unknown artist Unbekannter Künstler - + Unknown album Unbekanntes Album @@ -862,7 +872,7 @@ PlaylistManager - + Custom playlists Eigene Playlisten @@ -1390,4 +1400,4 @@ Cover nicht gefunden - \ No newline at end of file + diff --git a/translations/es.ts b/translations/es.ts index b74922b..1cdd8b0 100644 --- a/translations/es.ts +++ b/translations/es.ts @@ -1,4 +1,6 @@ - + + + AboutPage @@ -7,19 +9,24 @@ Acerca - - Taglib is used for reading, writing and manipulating audio file tags - La librería Taglib es usada para leer, escribir y manipular las etiquetas de los archivos de audio + + Original author: + - - If your language is not available you can contribute here: - Si su idioma no se encuentra disponible puede contribuír aquí: + + Contributors: + - - You can contribute to keep this project alive making a small donation - Usted puede contribuír a mantener este proyecto haciendo una pequeña donación + + If you want to create a new translation or improve an extant one: + + + + + You can support the original author of FlowPlayer by donating: + @@ -219,12 +226,12 @@ DataReader - + Unknown artist Artista desconocido - + Unknown album Album desconocido @@ -232,17 +239,17 @@ Datos - + Various artists Artistas varios - + 1 album 1 álbum - + %1 albums %1 álbumes @@ -333,48 +340,48 @@ LFM - - + + Error fetching artist information Error al descargar información del artista - + The artist could not be found No se encontró el artista - + Error fetching album information Error al descargar información del álbum - + The album could not be found No se encontró el álbum - + No album information available No hay información del álbum disponible - + Error fetching track information Error al descargar información de la canción - + The track could not be found No se encontró la canción - + No track information available No hay información de la canción disponible - + Fetching artist information Descargando información del artista @@ -612,12 +619,12 @@ Meta - + Unknown artist Artista desconocido - + Unknown album Album desconocido @@ -672,17 +679,17 @@ Missing - + Various artists Artistas varios - + Unknown album Album desconocido - + Unknown artist Artista desconocido @@ -704,12 +711,12 @@ MyPlaylist - + Unknown artist Artista desconocido - + Unknown album Album desconocido @@ -841,15 +848,23 @@ No hay estaciones guardadas + + PickFolder + + + Select folder + Seleccionar carpeta + + Playlist - + Unknown artist Artista desconocido - + Unknown album Album desconocido @@ -857,7 +872,7 @@ PlaylistManager - + Custom playlists Listas personalizadas @@ -1385,4 +1400,4 @@ Carátula no encontrada - \ No newline at end of file + diff --git a/translations/flowplayer.ts b/translations/flowplayer.ts index f02e64e..f6f67c9 100644 --- a/translations/flowplayer.ts +++ b/translations/flowplayer.ts @@ -19,12 +19,12 @@ - + If you want to create a new translation or improve an extant one: - + You can support the original author of FlowPlayer by donating: @@ -226,12 +226,12 @@ DataReader - + Unknown artist - + Unknown album @@ -239,17 +239,17 @@ Datos - + Various artists - + 1 album - + %1 albums @@ -340,48 +340,48 @@ LFM - - + + Error fetching artist information - + The artist could not be found - + Error fetching album information - + The album could not be found - + No album information available - + Error fetching track information - + The track could not be found - + No track information available - + Fetching artist information @@ -619,12 +619,12 @@ Meta - + Unknown artist - + Unknown album @@ -679,17 +679,17 @@ Missing - + Various artists - + Unknown album - + Unknown artist @@ -711,12 +711,12 @@ MyPlaylist - + Unknown artist - + Unknown album @@ -848,15 +848,23 @@ + + PickFolder + + + Select folder + + + Playlist - + Unknown artist - + Unknown album @@ -864,7 +872,7 @@ PlaylistManager - + Custom playlists diff --git a/translations/fr.ts b/translations/fr.ts index ffcabd5..fa54b0d 100644 --- a/translations/fr.ts +++ b/translations/fr.ts @@ -1,4 +1,6 @@ - + + + AboutPage @@ -7,19 +9,24 @@ A propos - - Taglib is used for reading, writing and manipulating audio file tags - Taglib est utilisé pour lire, écrire et manipuler les tags de fichier audio + + Original author: + - - If your language is not available you can contribute here: - Si votre langue n'est pas disponible, vous pouvez contribuer ici: + + Contributors: + - - You can contribute to keep this project alive making a small donation - Vous pouvez aider à maintenir ce projet en vie en faisant une petite donation + + If you want to create a new translation or improve an extant one: + + + + + You can support the original author of FlowPlayer by donating: + @@ -219,12 +226,12 @@ DataReader - + Unknown artist Artiste inconnu - + Unknown album Album inconnu @@ -232,17 +239,17 @@ Datos - + Various artists Artistes divers - + 1 album 1 album - + %1 albums %1 album @@ -333,48 +340,48 @@ LFM - - + + Error fetching artist information Erreur lors de la recherche d'informations sur l'artiste - + The artist could not be found L'artiste n'a pas été trouvé - + Error fetching album information Erreur lors de la recherche d'informations sur l'album - + The album could not be found L'album ne peut être trouvé - + No album information available Pas d'information disponible sur l'album - + Error fetching track information Erreur lors de la recherche d'informations sur la piste - + The track could not be found La piste ne peut être trouvée - + No track information available Pas d'information disponible sur la piste - + Fetching artist information Recherche d'informations sur l'artiste @@ -612,12 +619,12 @@ Meta - + Unknown artist Artiste inconnu - + Unknown album Album inconnu @@ -672,17 +679,17 @@ Missing - + Various artists Artistes divers - + Unknown album Album inconnu - + Unknown artist Artiste inconnu @@ -704,12 +711,12 @@ MyPlaylist - + Unknown artist Artiste inconnu - + Unknown album Album inconnu @@ -841,15 +848,23 @@ Aucune station sauvegardée + + PickFolder + + + Select folder + Choisir le dossier + + Playlist - + Unknown artist Artiste inconnu - + Unknown album Album inconnu @@ -857,7 +872,7 @@ PlaylistManager - + Custom playlists Playlists personnalisées @@ -1385,4 +1400,4 @@ Pochette non trouvée - \ No newline at end of file + diff --git a/translations/it.ts b/translations/it.ts index 6aecc5e..4035c22 100644 --- a/translations/it.ts +++ b/translations/it.ts @@ -9,19 +9,24 @@ Info - - Taglib is used for reading, writing and manipulating audio file tags - Taglib è utilizzato per la lettura, la scrittura e la manipolazione dei tag + + Original author: + + + + + Contributors: + - - If your language is not available you can contribute here: - Se la tua lingua non è disponibile, puoi contribuire qui: + + If you want to create a new translation or improve an extant one: + - - You can contribute to keep this project alive making a small donation - Puoi contribuire al mantenimento di questo progetto effettuando una donazione + + You can support the original author of FlowPlayer by donating: + @@ -221,12 +226,12 @@ DataReader - + Unknown artist Artista sconosciuto - + Unknown album Album sconosciuto @@ -234,17 +239,17 @@ Datos - + Various artists Artisti vari - + 1 album 1 album - + %1 albums %1 album @@ -335,48 +340,48 @@ LFM - - + + Error fetching artist information Errore nel recuperare le info sull'artista - + The artist could not be found L'artista non può essere trovato - + Error fetching album information Errore nel recuperare le info sull'album - + The album could not be found L'album non può essere trovato - + No album information available Nessuna info sull'album disponibile - + Error fetching track information Errore nel recuperare le info sulla traccia - + The track could not be found La traccia non può essere trovata - + No track information available Nessuna info sulla traccia disponibile - + Fetching artist information Recupero info sull'artista @@ -614,12 +619,12 @@ Meta - + Unknown artist Artista sconosciuto - + Unknown album Album sconosciuto @@ -674,17 +679,17 @@ Missing - + Various artists Artisti vari - + Unknown album Album sconosciuto - + Unknown artist Artista sconosciuto @@ -706,12 +711,12 @@ MyPlaylist - + Unknown artist Artista sconosciuto - + Unknown album Album sconosciuto @@ -843,15 +848,23 @@ Nessuna stazione salvata + + PickFolder + + + Select folder + Seleziona cartella + + Playlist - + Unknown artist Artista sconosciuto - + Unknown album Album sconosciuto @@ -859,7 +872,7 @@ PlaylistManager - + Custom playlists Playlist personalizzata diff --git a/translations/nl.ts b/translations/nl.ts index 5de5edd..876da77 100644 --- a/translations/nl.ts +++ b/translations/nl.ts @@ -1,4 +1,6 @@ - + + + AboutPage @@ -7,19 +9,24 @@ Over - - Taglib is used for reading, writing and manipulating audio file tags - Taglib wordt gebruikt voor het lezen, schrijven en het manipuleren van audio file-tags + + Original author: + - - If your language is not available you can contribute here: - Als uw taal niet beschikbaar is, kunt u hier uw bijdrage leveren: + + Contributors: + - - You can contribute to keep this project alive making a small donation - Met een kleine donatie, kunt u uw bijdrage leveren en het project in leven houden. + + If you want to create a new translation or improve an extant one: + + + + + You can support the original author of FlowPlayer by donating: + @@ -219,12 +226,12 @@ DataReader - + Unknown artist Onbekende artiest - + Unknown album Onbekende album @@ -232,17 +239,17 @@ Datos - + Various artists Diverse artiesten - + 1 album 1 album - + %1 albums %1 albums @@ -333,48 +340,48 @@ LFM - - + + Error fetching artist information Fout bij het ophalen van informatie over de artiest - + The artist could not be found Artiest kan niet worden gevonden - + Error fetching album information Fout bij het ophalen van informatie over de album - + The album could not be found Album kan niet worden gevonden - + No album information available Album informatie niet beschikbaar - + Error fetching track information Fout bij het ophalen van informatie over de track - + The track could not be found Track kan niet worden gevonden - + No track information available Track informatie niet beschikbaar - + Fetching artist information Informatie ophalen over de artiest @@ -612,12 +619,12 @@ Meta - + Unknown artist Onbekende artiest - + Unknown album Onbekende album @@ -672,17 +679,17 @@ Missing - + Various artists Diverse artiesten - + Unknown album Onbekende album - + Unknown artist Onbekende artiest @@ -704,12 +711,12 @@ MyPlaylist - + Unknown artist Onbekende artiest - + Unknown album Onbekende album @@ -841,15 +848,23 @@ Geen opgeslagen stations + + PickFolder + + + Select folder + Selecteer map + + Playlist - + Unknown artist Onbekende artiest - + Unknown album Onbekende album @@ -857,7 +872,7 @@ PlaylistManager - + Custom playlists Handmatige afspeellijsten @@ -1385,4 +1400,4 @@ Cover niet gevonden - \ No newline at end of file + diff --git a/translations/ru.ts b/translations/ru.ts index 3444c10..0b6ea5c 100644 --- a/translations/ru.ts +++ b/translations/ru.ts @@ -1,4 +1,6 @@ - + + + AboutPage @@ -7,19 +9,24 @@ О программе - - Taglib is used for reading, writing and manipulating audio file tags - Taglib используется для чтения и записи тегов аудиофайлов + + Original author: + - - If your language is not available you can contribute here: - Если ваш язык недоступен, вы можете помочь в переводе здесь: + + Contributors: + - - You can contribute to keep this project alive making a small donation - Вы можете внести свой вклад в жизнь проекта, сделав небольшое пожертвование + + If you want to create a new translation or improve an extant one: + + + + + You can support the original author of FlowPlayer by donating: + @@ -219,12 +226,12 @@ DataReader - + Unknown artist Неизвестный исполнитель - + Unknown album Неизвестный альбом @@ -232,17 +239,17 @@ Datos - + Various artists Различные исполнители - + 1 album 1 альбом - + %1 albums %1 альбомов @@ -333,48 +340,48 @@ LFM - - + + Error fetching artist information Ошибка при получении сведений об исполнителе - + The artist could not be found Исполнитель не может быть найден - + Error fetching album information Ошибка при получении информации об альбоме - + The album could not be found Альбом не найден - + No album information available Нет информации об альбоме - + Error fetching track information Ошибка при получении информации о треке - + The track could not be found Трек не найден - + No track information available Нет информации о треке - + Fetching artist information Поиск сведений об исполнителе @@ -612,12 +619,12 @@ Meta - + Unknown artist Неизвестный исполнитель - + Unknown album Неизвестный альбом @@ -672,17 +679,17 @@ Missing - + Various artists Различные исполнители - + Unknown album Неизвестный альбом - + Unknown artist Неизвестный исполнитель @@ -704,12 +711,12 @@ MyPlaylist - + Unknown artist Неизвестный исполнитель - + Unknown album Неизвестный альбом @@ -841,15 +848,23 @@ Нет сохраненных радиостанций + + PickFolder + + + Select folder + Выбрать папку + + Playlist - + Unknown artist Неизвестный исполнитель - + Unknown album Неизвестный альбом @@ -857,7 +872,7 @@ PlaylistManager - + Custom playlists Собственные плейлисты @@ -1385,4 +1400,4 @@ Обложка не найдена - \ No newline at end of file + diff --git a/translations/sv.ts b/translations/sv.ts index 8da0235..ac93779 100644 --- a/translations/sv.ts +++ b/translations/sv.ts @@ -1,4 +1,6 @@ - + + + AboutPage @@ -7,12 +9,12 @@ Om - + Original author: Ursprunglig utvecklare: - + Contributors: Bidragande parter: @@ -22,7 +24,7 @@ Om du vill skapa en ny översättning eller förbättra en befintlig: - + You can support the original author of FlowPlayer by donating: Du kan stödja den ursprungliga utvecklaren av FlowPlayer genom att donera: @@ -224,12 +226,12 @@ DataReader - + Unknown artist Okänd artist - + Unknown album Okänt album @@ -237,17 +239,17 @@ Datos - + Various artists Diverse artister - + 1 album 1 album - + %1 albums %1 album @@ -338,48 +340,48 @@ LFM - - + + Error fetching artist information Fel vid hämtning av artistinformation - + The artist could not be found Artisten kunde inte hittas - + Error fetching album information Fel vid hämtning av albuminformation - + The album could not be found Albumet kunde inte hittas - + No album information available Ingen albuminformation tillgänglig - + Error fetching track information Fel vid hämtning av spårinformation - + The track could not be found Spåret kunde inte hittas - + No track information available Ingen spårinformation tillgänglig - + Fetching artist information Hämtar artistinformation @@ -617,12 +619,12 @@ Meta - + Unknown artist Okänd artist - + Unknown album Okänt album @@ -677,17 +679,17 @@ Missing - + Various artists Diverse artister - + Unknown album Okänt album - + Unknown artist Okänd artist @@ -709,12 +711,12 @@ MyPlaylist - + Unknown artist Okänd artist - + Unknown album Okänt album @@ -846,15 +848,23 @@ Inga sparade stationer + + PickFolder + + + Select folder + Välj mapp + + Playlist - + Unknown artist Okänd artist - + Unknown album Okänt album @@ -862,7 +872,7 @@ PlaylistManager - + Custom playlists Anpassade spelningslistor @@ -1390,4 +1400,4 @@ Inget omslag hittades - \ No newline at end of file +