Make the library scanner use filter words for selecting cover art. Thanks markwatkinson. Fixes issue #634

This commit is contained in:
David Sansome 2010-12-28 12:52:58 +00:00
parent 6456665066
commit 1362809b5d
49 changed files with 480 additions and 6 deletions

View File

@ -98,6 +98,11 @@ void LibraryConfig::Save() {
s.beginGroup(LibraryWatcher::kSettingsGroup);
s.setValue("startup_scan", ui_->startup_scan->isChecked());
s.setValue("monitor", ui_->monitor->isChecked());
QString filter_text = ui_->cover_art_patterns->text();
QStringList filters = filter_text.split(',', QString::SkipEmptyParts);
s.setValue("cover_art_patterns", filters);
s.endGroup();
}
@ -115,5 +120,10 @@ void LibraryConfig::Load() {
s.beginGroup(LibraryWatcher::kSettingsGroup);
ui_->startup_scan->setChecked(s.value("startup_scan", true).toBool());
ui_->monitor->setChecked(s.value("monitor", true).toBool());
QStringList filters = s.value("cover_art_patterns",
QStringList() << "front" << "cover").toStringList();
ui_->cover_art_patterns->setText(filters.join(","));
s.endGroup();
}

View File

@ -89,6 +89,23 @@
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_2">
<property name="text">
<string>Preferred album art filenames (comma separated)</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="cover_art_patterns">
<property name="toolTip">
<string>When looking for album art Clementine will first look for picture files that contain one of these words. If there are no matches then it will use the largest image in the directory.</string>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
</layout>
</widget>
</item>

View File

@ -450,13 +450,38 @@ void LibraryWatcher::RescanPathsNow() {
}
QString LibraryWatcher::PickBestImage(const QStringList& images) {
// This is used when there is more than one image in a directory.
// Just pick the biggest image.
// Pick the biggest image that matches the most important filter
QStringList filtered;
foreach(const QString& filter_text, best_image_filters_) {
// the images in the images list are represented by a full path,
// so we need to isolate just the filename
foreach(const QString& image, images) {
QFileInfo file_info(image);
QString filename(file_info.fileName());
if (filename.contains(filter_text, Qt::CaseInsensitive))
filtered << image;
}
/* We assume the filters are give in the order best to worst, so
if we've got a result, we go with it. Otherwise we might
start capturing more generic rules */
if (!filtered.isEmpty())
break;
}
if (filtered.isEmpty()){
// the filter was too restrictive, just use the original list
filtered = images;
}
int biggest_size = 0;
QString biggest_path;
foreach (const QString& path, images) {
foreach (const QString& path, filtered) {
QImage image(path);
if (image.isNull())
continue;
@ -497,7 +522,16 @@ void LibraryWatcher::ReloadSettings() {
s.beginGroup(kSettingsGroup);
scan_on_startup_ = s.value("startup_scan", true).toBool();
monitor_ = s.value("monitor", true).toBool();
best_image_filters_.clear();
QStringList filters = s.value("cover_art_patterns",
QStringList() << "front" << "cover").toStringList();
foreach(const QString& filter, filters) {
QString s = filter.trimmed();
if (!s.isEmpty())
best_image_filters_ << s;
}
if (!monitor_ && was_monitoring_before) {
// Remove all directories from all QFileSystemWatchers
foreach (const DirData& data, watched_dirs_.values()) {

View File

@ -42,7 +42,7 @@ class LibraryWatcher : public QObject {
void set_backend(LibraryBackend* backend) { backend_ = backend; }
void set_task_manager(TaskManager* task_manager) { task_manager_ = task_manager; }
void set_device_name(const QString& device_name) { device_name_ = device_name; }
void IncrementalScanAsync();
void SetRescanPausedAsync(bool pause);
void ReloadSettingsAsync();
@ -128,8 +128,8 @@ class LibraryWatcher : public QObject {
static bool FindSongByPath(const SongList& list, const QString& path, Song* out);
inline static QString ExtensionPart( const QString &fileName );
inline static QString DirectoryPart( const QString &fileName );
static QString PickBestImage(const QStringList& images);
static QString ImageForSong(const QString& path, QMap<QString, QStringList>& album_art);
QString PickBestImage(const QStringList& images);
QString ImageForSong(const QString& path, QMap<QString, QStringList>& album_art);
void AddWatch(QFileSystemWatcher* w, const QString& path);
private:
@ -142,6 +142,14 @@ class LibraryWatcher : public QObject {
LibraryBackend* backend_;
TaskManager* task_manager_;
QString device_name_;
/* A list of words use to try to identify the (likely) best image
* found in an directory to use as cover artwork.
* e.g. using ["front", "cover"] would identify front.jpg and
* exclude back.jpg.
*/
QStringList best_image_filters_;
bool stop_requested_;
bool scan_on_startup_;
bool monitor_;

View File

@ -1674,6 +1674,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2374,6 +2377,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1688,6 +1688,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2388,6 +2391,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1678,6 +1678,9 @@ msgstr "Настройки"
msgid "Preferences..."
msgstr "Настройки..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2378,6 +2381,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1674,6 +1674,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2374,6 +2377,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1712,6 +1712,9 @@ msgstr "Preferències"
msgid "Preferences..."
msgstr "Preferències..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Format d'àudio preferit"
@ -2422,6 +2425,12 @@ msgstr "Wav"
msgid "When Clementine starts"
msgstr "Quan s'inicia Clementine"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "Adreça MAC de la WiFi"

View File

@ -1713,6 +1713,9 @@ msgstr "Nastavení"
msgid "Preferences..."
msgstr "Nastavení..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Upřednostňovaný zvukový formát"
@ -2426,6 +2429,12 @@ msgstr "WAV"
msgid "When Clementine starts"
msgstr "Při spuštění Clementine"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "Adresa MAC WiFi"

View File

@ -1674,6 +1674,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2374,6 +2377,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1679,6 +1679,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2381,6 +2384,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr "Når Clementine starter"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1716,6 +1716,9 @@ msgstr "Einstellungen"
msgid "Preferences..."
msgstr "Einstellungen..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Bevorzugtes Dateiformat"
@ -2432,6 +2435,12 @@ msgstr "WAV"
msgid "When Clementine starts"
msgstr "Bei Programmstart"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "W-LAN MAC Adresse"

View File

@ -1723,6 +1723,9 @@ msgstr "Προτιμήσεις"
msgid "Preferences..."
msgstr "Προτιμήσεις..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Προτιμώμενη ηχητική διαμόρφωση"
@ -2441,6 +2444,12 @@ msgstr "Wav"
msgid "When Clementine starts"
msgstr "Όταν ξεκινά το Clementine"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "Διεύθυνση MAC του WiFi"

View File

@ -1663,6 +1663,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2363,6 +2366,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1679,6 +1679,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2379,6 +2382,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr "When Clementine starts"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1676,6 +1676,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2376,6 +2379,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr "When Clementine starts"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1674,6 +1674,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2374,6 +2377,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1724,6 +1724,9 @@ msgstr "Preferencias"
msgid "Preferences..."
msgstr "Preferencias…"
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Formato de audio preferido"
@ -2436,6 +2439,12 @@ msgstr "Wav"
msgid "When Clementine starts"
msgstr "Cuando Clementine inicia"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "Dirección MAC WiFi"

View File

@ -1676,6 +1676,9 @@ msgstr "Seadistused"
msgid "Preferences..."
msgstr "Seadistused..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Eelistatud heli vorming"
@ -2376,6 +2379,12 @@ msgstr "Wav"
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1674,6 +1674,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2374,6 +2377,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1676,6 +1676,9 @@ msgstr "Asetukset"
msgid "Preferences..."
msgstr "Asetukset..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2376,6 +2379,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1729,6 +1729,9 @@ msgstr "Préférences"
msgid "Preferences..."
msgstr "Préférences..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Format audio préféré"
@ -2447,6 +2450,12 @@ msgstr "Wav"
msgid "When Clementine starts"
msgstr "Quand Clementine démarre"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "WiFi MAC Adresse"

View File

@ -1680,6 +1680,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2380,6 +2383,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1682,6 +1682,9 @@ msgstr "מאפיינים"
msgid "Preferences..."
msgstr "מאפיינים..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "פורמט אודיו מועדף"
@ -2382,6 +2385,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1674,6 +1674,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2374,6 +2377,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1680,6 +1680,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2380,6 +2383,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1712,6 +1712,9 @@ msgstr "Beállítások"
msgid "Preferences..."
msgstr "Beállítások..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Előnyben részesített audio formátum"
@ -2426,6 +2429,12 @@ msgstr "WAV"
msgid "When Clementine starts"
msgstr "Amikor a Clementine elindul"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "WiFi MAC cím"

View File

@ -1720,6 +1720,9 @@ msgstr "Preferenze"
msgid "Preferences..."
msgstr "Preferenze..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Formato audio preferito"
@ -2439,6 +2442,12 @@ msgstr "Wav"
msgid "When Clementine starts"
msgstr "All'avvio di Clementine"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "Indirizzo MAC WiFi"

View File

@ -1702,6 +1702,9 @@ msgstr "環境設定"
msgid "Preferences..."
msgstr "環境設定..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "優先するオーディオ形式"
@ -2410,6 +2413,12 @@ msgstr "Wav"
msgid "When Clementine starts"
msgstr "Clementine の起動時"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "WiFi の MAC アドレス"

View File

@ -1676,6 +1676,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2376,6 +2379,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1674,6 +1674,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2374,6 +2377,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1688,6 +1688,9 @@ msgstr "Innstillinger"
msgid "Preferences..."
msgstr "Innstillinger …"
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2389,6 +2392,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr "Når Clementine starter"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1707,6 +1707,9 @@ msgstr "Voorkeuren"
msgid "Preferences..."
msgstr "Voorkeuren..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Audioformaat-voorkeur"
@ -2425,6 +2428,12 @@ msgstr "Wav"
msgid "When Clementine starts"
msgstr "Zodra Clementine wordt gestart"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "WiFi MAC Address"

View File

@ -1674,6 +1674,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2374,6 +2377,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr "Quand Clementine avia"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1707,6 +1707,9 @@ msgstr "Preferencje"
msgid "Preferences..."
msgstr "Preferencje..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Preferowany format audio"
@ -2419,6 +2422,12 @@ msgstr "Wav"
msgid "When Clementine starts"
msgstr "Gdy Clementine jest uruchamiane"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "Adres MAC urządzenia WiFi"

View File

@ -1717,6 +1717,9 @@ msgstr "Preferências"
msgid "Preferences..."
msgstr "Preferências..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Formato áudio preferido"
@ -2432,6 +2435,12 @@ msgstr "Wav"
msgid "When Clementine starts"
msgstr "Ao iniciar o Clementine"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "Endereço MAC \"WiFi\""

View File

@ -1713,6 +1713,9 @@ msgstr "Preferências"
msgid "Preferences..."
msgstr "Preferências..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Formato de áudio preferido"
@ -2414,6 +2417,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr "Quando Clementine iniciar"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1675,6 +1675,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2375,6 +2378,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr "Când pornește Clementine"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1707,6 +1707,9 @@ msgstr "Настройки"
msgid "Preferences..."
msgstr "Настройки..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Предпочитаемый аудио формат"
@ -2420,6 +2423,12 @@ msgstr "Wav"
msgid "When Clementine starts"
msgstr "При запуске Clementine"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "MAC адрес WiFi"

View File

@ -1703,6 +1703,9 @@ msgstr "Nastavenia"
msgid "Preferences..."
msgstr "Nastavenia..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Preferovaný formát zvuku"
@ -2417,6 +2420,12 @@ msgstr "Wav"
msgid "When Clementine starts"
msgstr "Pri zapnutí Clementine"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "WiFi MAC adresa"

View File

@ -1706,6 +1706,9 @@ msgstr "Možnosti"
msgid "Preferences..."
msgstr "Možnosti ..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Prednostna vrsta zvoka"
@ -2418,6 +2421,12 @@ msgstr "WAV"
msgid "When Clementine starts"
msgstr "Ko se Clementine zažene"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "WiFi naslov MAC"

View File

@ -1679,6 +1679,9 @@ msgstr "Поставке"
msgid "Preferences..."
msgstr "Поставке..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Пожељни формат звука"
@ -2379,6 +2382,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1708,6 +1708,9 @@ msgstr "Inställningar"
msgid "Preferences..."
msgstr "Inställningar..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Önskat ljudformat"
@ -2421,6 +2424,12 @@ msgstr "WAV"
msgid "When Clementine starts"
msgstr "När Clementine startar"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "MAC-adress för WiFi"

View File

@ -1706,6 +1706,9 @@ msgstr "Tercihler"
msgid "Preferences..."
msgstr "Tercihler..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Tercih edilen ses biçimleri"
@ -2410,6 +2413,12 @@ msgstr "Wav"
msgid "When Clementine starts"
msgstr "Clementine başladığında"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "WiFi MAC Adresi"

View File

@ -1664,6 +1664,9 @@ msgstr ""
msgid "Preferences..."
msgstr ""
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2364,6 +2367,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1708,6 +1708,9 @@ msgstr "Параметри"
msgid "Preferences..."
msgstr "Параметри..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "Бажаний аудіо формат"
@ -2415,6 +2418,12 @@ msgstr "Wav"
msgid "When Clementine starts"
msgstr "Під час запуску Clementine"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr "Адреса WiFi MAC"

View File

@ -1678,6 +1678,9 @@ msgstr "首选项"
msgid "Preferences..."
msgstr "首选项..."
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr ""
@ -2378,6 +2381,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr ""
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""

View File

@ -1679,6 +1679,9 @@ msgstr "偏好設定"
msgid "Preferences..."
msgstr "偏好設定…"
msgid "Preferred album art filenames (comma separated)"
msgstr ""
msgid "Preferred audio format"
msgstr "首選的音頻格式"
@ -2379,6 +2382,12 @@ msgstr ""
msgid "When Clementine starts"
msgstr "當Clementine啟動"
msgid ""
"When looking for album art Clementine will first look for picture files that "
"contain one of these words. If there are no matches then it will use the "
"largest image in the directory."
msgstr ""
msgid "WiFi MAC Address"
msgstr ""