Projects
Multimedia
flacon
Sign Up
Log In
Username
Password
We truncated the diff of some files because they were too big. If you want to see the full diff for every file,
click here
.
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 29
View file
flacon.changes
Changed
@@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Wed May 1 13:24:09 UTC 2019 - Kyrill Detinov <lazy.kent@opensuse.org> + +- Update to 5.4.0. + * Ability to put the disc number into the output filename. + * Fix of regression. Templates are always inserted at the end of + pattern editor. + * Translations updated. + +------------------------------------------------------------------- Tue Apr 23 05:17:52 UTC 2019 - Kyrill Detinov <lazy.kent@opensuse.org> - Update to 5.3.0.
View file
flacon.spec
Changed
@@ -17,7 +17,7 @@ Name: flacon -Version: 5.3.0 +Version: 5.4.0 Release: 0 Summary: Split compressed Audio CD images to tracks License: LGPL-2.1-or-later
View file
flacon-5.3.0.tar.gz/CMakeLists.txt -> flacon-5.4.0.tar.gz/CMakeLists.txt
Changed
@@ -32,7 +32,7 @@ project(flacon) set(MAJOR_VERSION 5) -set(MINOR_VERSION 3) +set(MINOR_VERSION 4) set(PATCH_VERSION 0) #set(BETA_VERSION beta2) @@ -63,6 +63,7 @@ inputaudiofile.h internet/dataprovider.h scanner.h + patternexpander.h gui/icon.h gui/mainwindow.h @@ -116,6 +117,7 @@ inputaudiofile.cpp internet/dataprovider.cpp scanner.cpp + patternexpander.cpp gui/icon.cpp gui/mainwindow.cpp
View file
flacon-5.3.0.tar.gz/converter/cuecreator.cpp -> flacon-5.4.0.tar.gz/converter/cuecreator.cpp
Changed
@@ -27,6 +27,7 @@ #include "cuecreator.h" #include "disk.h" #include "settings.h" +#include "patternexpander.h" #include <QFileInfo> #include <QTextCodec> @@ -42,14 +43,13 @@ { Track *track = mDisk->track(0); QString dir = QFileInfo(track->resultFilePath()).dir().absolutePath(); - QString fileName = safeString(expandPattern(settings->value(Settings::PerTrackCue_FileName).toString(), - mDisk->count(), - 0, - track->album(), - track->title(), - track->artist(), - track->genre(), - track->date())); + PatternExpander expander(*track); + expander.setTrackNum(0); + expander.setTrackCount(mDisk->count()); + expander.setDiskNum(mDisk->diskNum()); + expander.setDiskCount(mDisk->diskCount()); + + QString fileName = expander.expand(settings->value(Settings::PerTrackCue_FileName).toString()); if (!fileName.endsWith(".cue")) fileName += ".cue";
View file
flacon-5.3.0.tar.gz/gui/aboutdialog/aboutdialog.cpp -> flacon-5.4.0.tar.gz/gui/aboutdialog/aboutdialog.cpp
Changed
@@ -182,27 +182,27 @@ result.add("Artem Aleksuk", "mailto:h31mail@yandex.ru", - tr("WavPack support patch")); + tr("WavPack support patch", "Thanks on the about page")); result.add("Kyrill Detinov", "mailto:lazy.kent@opensuse.org", - tr("Packaging, testing")); + tr("Packaging, testing", "Thanks on the about page")); result.add("", "mailto:yahoe.001@gmail.com", - tr("Improvements in the UI")); + tr("Improvements in the UI", "Thanks on the about page")); result.add("Taras Sokol", "mailto:tsokolp@gmail.com", - tr("Flacon account on github.com")); + tr("Flacon account on github.com", "Thanks on the about page")); result.add("FlatIcon", "https://www.flaticon.com", - "Icon for application"); + tr("Icon for application", "Thanks on the about page")); result.add("Icons8", "https://icons8.com", - "icons for application"); + tr("Icons for application", "Thanks on the about page")); return result; }
View file
flacon-5.3.0.tar.gz/gui/configdialog/configdialog.cpp -> flacon-5.4.0.tar.gz/gui/configdialog/configdialog.cpp
Changed
@@ -31,6 +31,7 @@ #include "project.h" #include "../controls.h" #include "../icon.h" +#include "../patternexpander.h" #include <QStringList> #include <QSet> @@ -144,7 +145,7 @@ perTrackCueFormatBtn->addFullPattern(pattern, tr("Use \"%1\"", "Predefined CUE file name, string like 'Use \"%a/%A/%n - %t.cue\"'") .arg(pattern) - + " ( " + patternExample(pattern) + " )"); + + " ( " + PatternExpander::example(pattern) + " )"); } connect(perTrackCueFormatBtn, &OutPatternButton::paternSelected,
View file
flacon-5.3.0.tar.gz/gui/controls.cpp -> flacon-5.4.0.tar.gz/gui/controls.cpp
Changed
@@ -519,17 +519,12 @@ /************************************************ - + * ************************************************/ -void HistoryComboBox::focusOutEvent(QFocusEvent *e) +void HistoryComboBox::showPopup() { - QKeyEvent key_press(QKeyEvent::KeyPress, Qt::Key_Return, Qt::NoModifier, QString(), false, 0 ); - QApplication::sendEvent(this, &key_press); - - QKeyEvent key_release(QKeyEvent::KeyRelease, Qt::Key_Return, Qt::NoModifier, QString(), false, 0 ); - QApplication::sendEvent(this, &key_release); - - QComboBox::focusOutEvent(e); + addToHistory(lineEdit()->text()); + QComboBox::showPopup(); } @@ -553,6 +548,18 @@ /************************************************ * ************************************************/ +void HistoryComboBox::addToHistory(const QString &value) +{ + QStringList hist = this->history(); + hist.removeAll(value); + hist.insert(0, value); + setHistory(hist); +} + + +/************************************************ + * + ************************************************/ ActionsButton::ActionsButton(QWidget *parent): QToolButton(parent) {
View file
flacon-5.3.0.tar.gz/gui/controls.h -> flacon-5.4.0.tar.gz/gui/controls.h
Changed
@@ -293,14 +293,14 @@ QAction * deleteItemAction() { return &mDeleteItemAct; } -protected: - void focusOutEvent(QFocusEvent *e); + void showPopup() override; private slots: void deleteItem(); private: QAction mDeleteItemAct; + void addToHistory(const QString &value); };
View file
flacon-5.3.0.tar.gz/gui/mainwindow.cpp -> flacon-5.4.0.tar.gz/gui/mainwindow.cpp
Changed
@@ -43,6 +43,7 @@ #include "controls.h" #include "gui/icon.h" #include "application.h" +#include "patternexpander.h" #include <QFileDialog> #include <QDir> @@ -145,6 +146,9 @@ outPatternButton->addPattern("%t", tr("Insert \"Track title\"")); outPatternButton->addPattern("%y", tr("Insert \"Year\"")); outPatternButton->addPattern("%g", tr("Insert \"Genre\"")); + outPatternButton->addPattern("%d", tr("Insert \"Disk number\"")); + outPatternButton->addPattern("%D", tr("Insert \"Total number of disks\"")); + const QString patterns[] = { "%a/{%y - }%A/%n - %t", @@ -159,7 +163,7 @@ outPatternButton->addFullPattern(pattern, tr("Use \"%1\"", "Predefined out file pattern, string like 'Use \"%a/%A/%n - %t\"'") .arg(pattern) - + " ( " + patternExample(pattern) + ".flac )"); + + " ( " + PatternExpander::example(pattern) + ".flac )"); } outPatternButton->menu()->addSeparator();
View file
flacon-5.4.0.tar.gz/patternexpander.cpp
Added
@@ -0,0 +1,224 @@ +/* BEGIN_COMMON_COPYRIGHT_HEADER + * (c)LGPL2+ + * + * Flacon - audio File Encoder + * https://github.com/flacon/flacon + * + * Copyright: 2019 + * Alexander Sokoloff <sokoloff.a@gmail.com> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * END_COMMON_COPYRIGHT_HEADER */ + + +#include "patternexpander.h" +#include "track.h" + + +class Tokens: public QHash<QChar, QString> +{ +public: + Tokens(): + QHash<QChar, QString>() + { + } + + bool isEmptyForOptional(QChar key) const + { + // If album contains only one disk, + // diskCount and diskNum are optional + if (key == 'd' || + key == 'D' ) + { + return (value('D').toInt() <= 1); + } + + return this->value(key).isEmpty(); + } +}; + + +/************************************************ + * + ************************************************/ +PatternExpander::PatternExpander(): + mTrackCount(0), + mTrackNum(0), + mDiskCount(0), + mDiskNum(0) +{ + +} + + +/************************************************ + * + ************************************************/ +PatternExpander::PatternExpander(const Track &track): + mTrackCount(track.trackCount()), + mTrackNum(track.trackNum()), + mDiskCount(track.diskCount()), + mDiskNum(track.diskNum()), + mAlbum(track.album()), + mTrackTitle(track.title()), + mArtist(track.artist()), + mGenre(track.genre()), + mDate(track.date()) +{ + +} + + +/************************************************ + + ************************************************/ +static QString doExpandPattern(const QString &pattern, const Tokens &tokens, bool optional) +{ + QString res; + bool perc = false; + bool hasVars = false; + bool isValid = true; + + + for(int i=0; i<pattern.length(); ++i) + { + QChar c = pattern.at(i); + + + // Sub pattern ................................. + if (c == '{') + { + int level = 0; + int start = i + 1; + //int j = i; + QString s = "{"; + + for (int j=i; j<pattern.length(); ++j) + { + c = pattern.at(j); + if (c == '{') + level++; + else if (c == '}') + level--; + + if (level == 0) + { + s = doExpandPattern(pattern.mid(start, j - start), tokens, true); + i = j; + break; + } + } + res += s; + } + // Sub pattern ................................. + + else + { + if (perc) + { + perc = false; + if (tokens.contains(c)) + { + hasVars = true; + if (optional && tokens.isEmptyForOptional(c)) + { + isValid = false; + } + else + { + QString s = tokens.value(c); + res += s; + } + } + else + { + if (c == '%') + res += "%"; + else + res += QString("%") + c; + } + } + else + { + if (c == '%') + perc = true; + else + res += c; + } + } + } + + if (perc) + res += "%"; + + if (optional) + { + if (hasVars) + { + if (!isValid) + return ""; + } + else + { + return "{" + res + "}"; + } + } + + return res; +} + + +/************************************************ + * + ************************************************/ +QString PatternExpander::expand(const QString &pattern) const +{ + Tokens tokens; + tokens.insert(QChar('N'), QString("%1").arg(mTrackCount, 2, 10, QChar('0'))); + tokens.insert(QChar('n'), QString("%1").arg(mTrackNum, 2, 10, QChar('0'))); + tokens.insert(QChar('D'), QString("%1").arg(mDiskCount, 2, 10, QChar('0'))); + tokens.insert(QChar('d'), QString("%1").arg(mDiskNum, 2, 10, QChar('0'))); + tokens.insert(QChar('A'), safeString(mAlbum)); + tokens.insert(QChar('t'), safeString(mTrackTitle)); + tokens.insert(QChar('a'), safeString(mArtist)); + tokens.insert(QChar('g'), safeString(mGenre)); + tokens.insert(QChar('y'), safeString(mDate)); +
View file
flacon-5.4.0.tar.gz/patternexpander.h
Added
@@ -0,0 +1,93 @@ +/* BEGIN_COMMON_COPYRIGHT_HEADER + * (c)LGPL2+ + * + * Flacon - audio File Encoder + * https://github.com/flacon/flacon + * + * Copyright: 2019 + * Alexander Sokoloff <sokoloff.a@gmail.com> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * END_COMMON_COPYRIGHT_HEADER */ + + +#ifndef PATTERNEXPANDER_H +#define PATTERNEXPANDER_H + +#include "types.h" +#include "tags.h" +#include <QString> + +class Track; + +/************************************************ + %N Number of tracks %n Track number + %D Number of disks %d Disk number + %a Artist %A Album title + %y Year %g Genre + %t Track title + ************************************************/ +class PatternExpander +{ +public: + PatternExpander(); + PatternExpander(const Track &track); + + TrackCount trackCount() const { return mTrackCount; } + void setTrackCount(TrackCount value) { mTrackCount = value; } + + TrackNum trackNum() const { return mTrackNum; } + void setTrackNum(TrackNum value) { mTrackNum = value; } + + DiskCount diskCount() const { return mDiskCount; } + void setDiskCount(DiskCount value) { mDiskCount = value; } + + DiskNum diskNum() const { return mDiskNum; } + void setDiskNum(DiskNum value) { mDiskNum = value; } + + + QString artist() const { return mArtist; } + void setArtist(const QString &value) { mArtist = value; } + + QString album() const { return mAlbum; } + void setAlbum(const QString &value) { mAlbum = value; } + + QString trackTitle() const { return mTrackTitle; } + void setTrackTtle(const QString &value) { mTrackTitle = value; } + + QString genre() const { return mGenre;} + void setGenre(const QString &value) { mGenre = value; } + + QString date() const { return mDate; } + void setDate(const QString &value) { mDate = value; } + + QString expand(const QString &pattern) const; + + static QString example(const QString &pattern); + +private: + TrackCount mTrackCount; + TrackNum mTrackNum; + DiskCount mDiskCount; + DiskNum mDiskNum; + QString mAlbum; + QString mTrackTitle; + QString mArtist; + QString mGenre; + QString mDate; +}; + +#endif // PATTERNEXPANDER_H
View file
flacon-5.3.0.tar.gz/tests/CMakeLists.txt -> flacon-5.4.0.tar.gz/tests/CMakeLists.txt
Changed
@@ -47,6 +47,7 @@ test_findcuefile.cpp test_findaudiofile.cpp test_outformatencoderargs.cpp + test_patternexpander.cpp ) @@ -88,4 +89,4 @@ add_executable(${PROJECT_NAME} ${TEST_HEADERS} ${TEST_SOURCES}) target_link_libraries(${PROJECT_NAME} ${QT_LIBRARIES} ${LIBRARIES} Qt5::Core Qt5::Test Qt5::Widgets Qt5::Network) -add_test(${PROJECT_NAME} ${PROJECT_NAME}) \ No newline at end of file +add_test(${PROJECT_NAME} ${PROJECT_NAME})
View file
flacon-5.4.0.tar.gz/tests/test_patternexpander.cpp
Added
@@ -0,0 +1,277 @@ +/* BEGIN_COMMON_COPYRIGHT_HEADER + * (c)LGPL2+ + * + * Flacon - audio File Encoder + * https://github.com/flacon/flacon + * + * Copyright: 2019 + * Alexander Sokoloff <sokoloff.a@gmail.com> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * END_COMMON_COPYRIGHT_HEADER */ + + +#include "testflacon.h" +#include "tools.h" +#include <QTest> +#include <QMap> +#include <QString> +#include "types.h" +#include "patternexpander.h" + + +/************************************************ + * + ************************************************/ +static QMap<QString, QString> parseTrackData(const QString &str) +{ + QMap<QString, QString> res; + + foreach (QString line, str.split("\n")) + { + line = line.trimmed(); + if (line.isEmpty()) + continue; + + QString key = line.section(":", 0, 0).trimmed(); + QString val = line.section(":", 1).trimmed(); + + res.insert(key, val); + } + + return res; +} + + +/************************************************ + * + ************************************************/ +void TestFlacon::testPatternExpander() +{ + QFETCH(QString, pattern); + QFETCH(QString, trackData); + QFETCH(QString, expected); + + QMap<QString, QString> trackValues = parseTrackData(trackData); + + PatternExpander expander; + + expander.setTrackCount(trackValues.value("trackCount").toInt()); + expander.setTrackNum(trackValues.value("trackNum").toInt()); + expander.setDiskCount(trackValues.value("diskCount").toInt()); + expander.setDiskNum(trackValues.value("diskNum").toInt()); + + expander.setAlbum(trackValues.value("album")); + expander.setTrackTtle(trackValues.value("title")); + expander.setArtist(trackValues.value("artist")); + expander.setGenre(trackValues.value("genre")); + expander.setDate(trackValues.value("date")); + + + QString result = expander.expand(pattern); + + QCOMPARE(result, expected); +} + + +/************************************************ + * + ************************************************/ +void TestFlacon::testPatternExpander_data() +{ + QTest::addColumn<QString>("pattern"); + QTest::addColumn<QString>("trackData"); + QTest::addColumn<QString>("expected"); + + + QTest::newRow("01") + << "" + << "" + << ""; + + + QTest::newRow("02") + << "static" + << R"( + trackCount: 10 + trackNum: 1 + diskCount: 2 + diskNum: 1 + album: Hits + title: Track title + artist: Band + genre: Rock + date: 1999 + )" + << "static"; + + + QTest::newRow("03") + << "%a/{%y - }%A/%n - %t" + << R"( + trackCount: 10 + trackNum: 1 + diskCount: 2 + diskNum: 1 + album: Hits + title: Track title + artist: Band + genre: Rock + date: 1999 + )" + << "Band/1999 - Hits/01 - Track title"; + + + QTest::newRow("04") + << "%a -{ %y }%A/%n - %t" + << R"( + trackCount: 10 + trackNum: 1 + diskCount: 2 + diskNum: 1 + album: Hits + title: Track title + artist: Band + genre: Rock + date: 1999 + )" + << "Band - 1999 Hits/01 - Track title"; + + QTest::newRow("05") + << "%a/{%y - }%A/%n - %t" + << R"( + trackCount: 10 + trackNum: 1 + diskCount: 2 + diskNum: 1 + album: Hits + title: Track title + artist: Band + genre: Rock + )" + << "Band/Hits/01 - Track title"; + + QTest::newRow("05") + << "%a/%y - %A/%n - %t" + << R"( + trackCount: 10 + trackNum: 1 + diskCount: 2 + diskNum: 1 + album: Hits + title: Track title + artist: Band + genre: Rock + )" + << "Band/ - Hits/01 - Track title"; + + + QTest::newRow("06") + << "%a/{%y - }%A/%d of %D/%n - %t" + << R"( + trackCount: 10 + trackNum: 5 + diskCount: 2 + diskNum: 1 + album: Hits + title: Track title + artist: Band + genre: Rock + date: 1999 + )" + << "Band/1999 - Hits/01 of 02/05 - Track title"; + + + QTest::newRow("07") + << "%a/{%y - }%A/%d of %D/%n - %t"
View file
flacon-5.3.0.tar.gz/tests/testflacon.h -> flacon-5.4.0.tar.gz/tests/testflacon.h
Changed
@@ -109,6 +109,9 @@ void testFindCueFile_data(); void testFindCueFile(); + void testPatternExpander_data(); + void testPatternExpander(); + void testConvert(); void testConvert_data();
View file
flacon-5.3.0.tar.gz/track.cpp -> flacon-5.4.0.tar.gz/track.cpp
Changed
@@ -33,6 +33,7 @@ #include "project.h" #include "settings.h" #include "outformat.h" +#include "patternexpander.h" #include <uchardet.h> #include <QDir> @@ -181,40 +182,21 @@ int n = pattern.lastIndexOf(QDir::separator()); if (n < 0) { - return expandPattern(pattern, - this->trackCount(), - this->trackNum(), - this->album(), - this->title(), - this->artist(), - this->genre(), - this->date()) - + "." + settings->outFormat()->ext(); + PatternExpander expander(*this); + return expander.expand(pattern) + + "." + settings->outFormat()->ext(); } // If the disk is a collection, the files fall into different directories. // So we use the tag DiskPerformer for expand the directory path. - return expandPattern(pattern.left(n), - this->trackCount(), - this->trackNum(), - this->album(), - this->title(), - this->tag(TagId::AlbumArtist), - this->genre(), - this->date()) - - + - - expandPattern(pattern.mid(n), - this->trackCount(), - this->trackNum(), - this->album(), - this->title(), - this->artist(), - this->genre(), - this->date()) - - + "." + settings->outFormat()->ext(); + PatternExpander albumExpander(*this); + albumExpander.setArtist(this->tag(TagId::AlbumArtist)); + + PatternExpander trackExpander(*this); + + return albumExpander.expand(pattern.left(n)) + + trackExpander.expand(pattern.mid(n)) + + "." + settings->outFormat()->ext(); }
View file
flacon-5.3.0.tar.gz/translations/flacon_cs.ts -> flacon-5.4.0.tar.gz/translations/flacon_cs.ts
Changed
@@ -50,29 +50,43 @@ <translation>Autorské právo: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Sledování chyb %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon je přeložen do mnoha jazyků díky práci překladatelů z celého světa na <a href='%1'>Transifexu</a>.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Záplata s podporou pro WavPack</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Balení, zkouška</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Vylepšení rozhraní</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Účet Flaconu na github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Sledování chyb %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon je přeložen do mnoha jazyků díky práci překladatelů z celého světa na <a href='%1'>Transifexu</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> </context> <context> @@ -1168,6 +1182,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_cs_CZ.ts -> flacon-5.4.0.tar.gz/translations/flacon_cs_CZ.ts
Changed
@@ -50,29 +50,43 @@ <translation>Autorské právo: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Sledování chyb %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon je přeložen do mnoha jazyků díky práci překladatelů z celého světa na <a href='%1'>Transifexu</a>.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Záplata s podporou pro WavPack</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Balení, zkouška</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Vylepšení rozhraní</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Účet Flaconu na github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Sledování chyb %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon je přeložen do mnoha jazyků díky práci překladatelů z celého světa na <a href='%1'>Transifexu</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> </context> <context> @@ -1145,6 +1159,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_de.ts -> flacon-5.4.0.tar.gz/translations/flacon_de.ts
Changed
@@ -50,29 +50,43 @@ <translation>Copyright: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Bug Tracker %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon wird dank der Hilfe der Flacon Übersetzer Teams auf <a href='%1'>Transifex</a> in viele Sprachen übersetzt.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Patch für WavPack-Unterstützung</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Paketierung, Testen</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Verbesserungen in der Benutzeroberfläche</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Flacon-Konto auf github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Bug Tracker %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation>Symbol für Anwendung</translation> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon wird dank der Hilfe der Flacon Übersetzer Teams auf <a href='%1'>Transifex</a> in viele Sprachen übersetzt.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation>Symbole für Anwendung</translation> </message> </context> <context> @@ -1171,6 +1185,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation>Ctrl+Shift+W</translation> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_el.ts -> flacon-5.4.0.tar.gz/translations/flacon_el.ts
Changed
@@ -50,29 +50,43 @@ <translation>Πνευματικά δικαιώματα: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Ιχνηλάτης σφαλμάτων %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Το Flacon έχει μεταφραστεί σε πολλές γλώσσες, χάρη στο έργο των ομάδων μετάφρασης του Flacon στο <a href='%1'>Transifex</a>.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>WavPack patch υποστήριξης</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Συσκευασία, δοκιμή</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Βελτιώσεις στο UI</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Flacon λογαριασμός στο github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Ιχνηλάτης σφαλμάτων %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Το Flacon έχει μεταφραστεί σε πολλές γλώσσες, χάρη στο έργο των ομάδων μετάφρασης του Flacon στο <a href='%1'>Transifex</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> </context> <context> @@ -1171,6 +1185,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_es.ts -> flacon-5.4.0.tar.gz/translations/flacon_es.ts
Changed
@@ -50,29 +50,43 @@ <translation>Todos los derechos reservados: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Seguimiento de fallos %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon es traducido a muchos lenguajes gracias al trabajo del equipo de traductores en <a href='%1'>Transifex</a></translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Parche de soporte de Wavpack</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Empaquetado, pruebas</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Mejoras de la Interfaz de Usuario</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Cuenta de Flacon en github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Seguimiento de fallos %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation>Icono para la aplicación</translation> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon es traducido a muchos lenguajes gracias al trabajo del equipo de traductores en <a href='%1'>Transifex</a></translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation>Iconos para la aplicación</translation> </message> </context> <context> @@ -1171,6 +1185,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation>Ctrl+Mayúsculas+W</translation> </message> + <message> + <source>Insert "Disk number"</source> + <translation>Insertar "Número de disco"</translation> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation>Insertar "Número total de discos"</translation> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_es_MX.ts -> flacon-5.4.0.tar.gz/translations/flacon_es_MX.ts
Changed
@@ -50,29 +50,43 @@ <translation>Derechos de autor: %1-%2-%3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Rastreador de errores %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon es traducido a muchos idiomas gracias al trabajo de los equipos de traducción de Flacon en <a href='%1'>Transifex</a>.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Parche de soporte WavPack</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Empaquetando, probando</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Mejoras en la interfase de usuario</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Cuenta de Flacon en github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Rastreador de errores %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation>Ícono de la aplicación</translation> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon es traducido a muchos idiomas gracias al trabajo de los equipos de traducción de Flacon en <a href='%1'>Transifex</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation>Íconos de la aplicación</translation> </message> </context> <context> @@ -294,7 +308,7 @@ </message> <message> <source>Resampling</source> - <translation type="unfinished"/> + <translation>Remuestreo</translation> </message> <message> <source>44100 Hz</source> @@ -318,11 +332,11 @@ </message> <message> <source>Maximum bit depth:</source> - <translation type="unfinished"/> + <translation>Bit depth máximo:</translation> </message> <message> <source>Maximum sample rate:</source> - <translation type="unfinished"/> + <translation>Ratio máximo de muestra:</translation> </message> <message> <source>Per track CUE sheet</source> @@ -350,12 +364,12 @@ <message> <source>32-bit</source> <comment>Item in combobox</comment> - <translation type="unfinished"/> + <translation>32-bit</translation> </message> <message> <source>File name format:</source> <extracomment>Settings dialog, label for the edit control with name of the created CUE file.</extracomment> - <translation type="unfinished"/> + <translation>Formato de nombre de archivo:</translation> </message> <message> <source>Insert "Artist"</source> @@ -686,7 +700,7 @@ <message> <source>I can't write file <b>%1</b>:<br>%2</source> <comment>Error string, %1 is a filename, %2 error message</comment> - <translation type="unfinished"/> + <translation>No se puede escribir el archivo <b>%1</b>:<br>%2</translation> </message> </context> <context> @@ -706,12 +720,12 @@ <message> <source>A maximum of %1-bit per sample is supported by this format. This value will be used for encoding.</source> <comment>Warning message</comment> - <translation type="unfinished"/> + <translation>Este formato soporta un máximo de %1-bit por muestreo. Éste valor será usado para su codificación.</translation> </message> <message> <source>A maximum sample rate of %1 is supported by this format. This value will be used for encoding.</source> <comment>Warning message</comment> - <translation type="unfinished"/> + <translation>Este formato soporta un máximo de %1-bit por muestreo. Éste valor será usado para su codificación. </translation> </message> </context> <context> @@ -1065,7 +1079,7 @@ <message> <source>Standard music location</source> <comment>Menu item for output direcory button</comment> - <translation type="unfinished"/> + <translation>Ubicación de música estándar</translation> </message> <message> <source>Desktop</source> @@ -1130,22 +1144,30 @@ </message> <message> <source>Album performer:</source> - <translation type="unfinished"/> + <translation>Interprete del álbum</translation> </message> <message> <source>Convert selected</source> <extracomment>Main menu item</extracomment> - <translation type="unfinished"/> + <translation>Conversor seleccionado</translation> </message> <message> <source>Start conversion process for the selected tracks</source> <extracomment>Main menu item tooltip</extracomment> - <translation type="unfinished"/> + <translation>Iniciar el proceso de conversión para las pistas seleccionadas</translation> </message> <message> <source>Ctrl+Shift+W</source> <extracomment>Main menu item shortcut</extracomment> - <translation type="unfinished"/> + <translation>Ctrl+Shift+W</translation> + </message> + <message> + <source>Insert "Disk number"</source> + <translation>Insertar "número de disco"</translation> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation>Insertar "número total de discos"</translation> </message> </context> <context> @@ -1329,7 +1351,7 @@ <message> <source>Album performer:</source> <comment>Music tag name</comment> - <translation type="unfinished"/> + <translation>Interprete del álbum</translation> </message> </context> <context>
View file
flacon-5.3.0.tar.gz/translations/flacon_et.ts -> flacon-5.4.0.tar.gz/translations/flacon_et.ts
Changed
@@ -50,28 +50,42 @@ <translation type="unfinished"/> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation type="unfinished"/> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation type="unfinished"/> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> </context> @@ -1113,6 +1127,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_fr.ts -> flacon-5.4.0.tar.gz/translations/flacon_fr.ts
Changed
@@ -50,29 +50,43 @@ <translation>Tous droits réservés : %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Gestionnaire de bogues : %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon est traduit en plusieurs langues grâce au travail des équipes de traduction Flacon sur <a href='%1'>Transifex</a>.</translation> + </message> + <message> <source>WavPack support patch</source> - <translation>Correctif de prise en charge WavPack</translation> + <comment>Thanks on the about page</comment> + <translation>Correctif de prise en charge de WavPack</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Mise en forme et tests</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Améliorations de l’IU</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Compte Flacon sur github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Gestionnaire de bogues : %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation>Icône pour l’application</translation> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon est traduit en plusieurs langues grâce au travail des équipes de traduction Flacon sur <a href='%1'>Transifex</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation>Icônes pour l’application</translation> </message> </context> <context> @@ -1169,6 +1183,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation>Ctrl+Maj+W</translation> </message> + <message> + <source>Insert "Disk number"</source> + <translation>Insérer le « Numéro de disque »</translation> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation>Insérer le « Nombre total de disques »</translation> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_gl.ts -> flacon-5.4.0.tar.gz/translations/flacon_gl.ts
Changed
@@ -50,28 +50,42 @@ <translation>Dereitos de autoría: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation type="unfinished"/> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation type="unfinished"/> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Parche para a compatibilidade con WavPack</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Empaquetamento, provas</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Melloras na interface gráfica</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> </context> @@ -1144,6 +1158,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_he.ts -> flacon-5.4.0.tar.gz/translations/flacon_he.ts
Changed
@@ -50,29 +50,43 @@ <translation>זכויות יוצרים: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>מעקב תקלים: %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>פלאקון מתורגם לשפות רבות בזכות עבודתם של צוותי התרגום של פלאקון באמצעות <a href='%1'> Transifex </a>.</translation> + </message> + <message> <source>WavPack support patch</source> - <translation>תיקון לתמיכת WavPack</translation> + <comment>Thanks on the about page</comment> + <translation>תיקון לתמיכת וואבפאק</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>אריזה, בדיקה</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>שיפורים בממשק משתמש</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>חשבון פלאקון ב github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>מעקב תקלים: %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation>צלמית עבור היישום</translation> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>פלאקון מתורגם לשפות רבות בזכות עבודתם של צוותי התרגום של פלאקון באמצעות <a href='%1'> Transifex </a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation>צלמיות עבור היישום</translation> </message> </context> <context> @@ -410,7 +424,7 @@ </message> <message> <source>ReplayGain</source> - <translation>ReplayGain</translation> + <translation>ריפלאיגאיין</translation> </message> <message> <source>Calculate gain:</source> @@ -457,7 +471,7 @@ </message> <message> <source>ReplayGain</source> - <translation>ReplayGain</translation> + <translation>ריפלאיגאיין</translation> </message> <message> <source>Calculate gain:</source> @@ -590,7 +604,7 @@ </message> <message> <source>ReplayGain</source> - <translation>ReplayGain</translation> + <translation>ריפלאיגאיין</translation> </message> <message> <source>Calculate gain:</source> @@ -601,7 +615,7 @@ <name>ConfigPage_Opus</name> <message> <source>Opus encoding configuration</source> - <translation>הגדרות קידוד Opus</translation> + <translation>הגדרות קידוד אופוס</translation> </message> <message> <source>Bitrate type:</source> @@ -658,7 +672,7 @@ </message> <message> <source>ReplayGain</source> - <translation>ReplayGain</translation> + <translation>ריפלאיגאיין</translation> </message> <message> <source>Calculate gain:</source> @@ -1171,6 +1185,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation>Ctrl+Shift+W</translation> </message> + <message> + <source>Insert "Disk number"</source> + <translation>הזנת "מספר תקליטור"</translation> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation>הזנת "מספר תקליטורים כולל"</translation> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_hu.ts -> flacon-5.4.0.tar.gz/translations/flacon_hu.ts
Changed
@@ -50,29 +50,43 @@ <translation>%1 %2 használata - Copyright (C) %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Hibakövetés %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>A flakon több nyelvre is le lett lefordítva, köszönhetően a Falcon fordító csapat munkájának a <a href='%1'>Transifex</a>-en.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Wavpack támogató patch</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Csomagolás, tesztelés</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Felületi fejlesztések</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Flacon fiók a github.com-on</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Hibakövetés %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>A flakon több nyelvre is le lett lefordítva, köszönhetően a Falcon fordító csapat munkájának a <a href='%1'>Transifex</a>-en.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> </context> <context> @@ -1173,6 +1187,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation>Ctrl+Shift+W</translation> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_id.ts -> flacon-5.4.0.tar.gz/translations/flacon_id.ts
Changed
@@ -50,29 +50,43 @@ <translation>Copyright: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation type="unfinished"/> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon telah diterjemahkan kedalam banyak bahasa, terimakasih atas kerja keras Tim Penerjemah Flacon dalam <a href='%1'>Transifex</a></translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Akun Flacon di github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon telah diterjemahkan kedalam banyak bahasa, terimakasih atas kerja keras Tim Penerjemah Flacon dalam <a href='%1'>Transifex</a></translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> </context> <context> @@ -1122,6 +1136,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_it.ts -> flacon-5.4.0.tar.gz/translations/flacon_it.ts
Changed
@@ -50,28 +50,42 @@ <translation>Copyright: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Traccia bug %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation type="unfinished"/> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Patch di supporto WavPack</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Pacchettizzazione, testing</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Miglioramenti all'interfaccia grafica</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Account di Flacon su github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Traccia bug %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> </context> @@ -1160,6 +1174,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_ja_JP.ts -> flacon-5.4.0.tar.gz/translations/flacon_ja_JP.ts
Changed
@@ -50,28 +50,42 @@ <translation>コピーライト Copyright: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Bug tracker %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation type="unfinished"/> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>WavPack サポートパッチ</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>パッケージング, テスティング</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>UIの改善</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Flacon account on github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Bug tracker %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> </context> @@ -1118,6 +1132,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_lt.ts -> flacon-5.4.0.tar.gz/translations/flacon_lt.ts
Changed
@@ -50,29 +50,43 @@ <translation>Autorių Teisės: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Klaidų sekimas %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon vertimo komandų darbo <a href='%1'>Transifex</a> puslapyje dėka, programa Flacon yra verčiama į daugelį kalbų.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>WavPack palaikymo pataisa</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Pakavimas, testavimas</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Patobulinimai naudotojo sąsajoje</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Flacon paskyra puslapyje github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Klaidų sekimas %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation>Programos piktograma</translation> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon vertimo komandų darbo <a href='%1'>Transifex</a> puslapyje dėka, programa Flacon yra verčiama į daugelį kalbų.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation>Programos piktogramos</translation> </message> </context> <context> @@ -1171,6 +1185,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation>Ctrl+Shift+W</translation> </message> + <message> + <source>Insert "Disk number"</source> + <translation>Įterpti "Disko numerį"</translation> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation>Įterpti "Bendrą diskų skaičių"</translation> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_ms_MY.ts -> flacon-5.4.0.tar.gz/translations/flacon_ms_MY.ts
Changed
@@ -50,29 +50,43 @@ <translation>Hakcipta: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Penjejak pepijat %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon telah diterjemahkan kepada banyak bahasa, terima kasih kepada pasukan terjemahan Flacon di <a href='%1'>Transifex</a>.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Tampalang sokongan WavPack</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Mempakej, menguji</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Penambahbaikan dalam UI</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Akaun Flacon dalam github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Penjejak pepijat %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon telah diterjemahkan kepada banyak bahasa, terima kasih kepada pasukan terjemahan Flacon di <a href='%1'>Transifex</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> </context> <context> @@ -1172,6 +1186,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_nb.ts -> flacon-5.4.0.tar.gz/translations/flacon_nb.ts
Changed
@@ -50,29 +50,43 @@ <translation>Kopirett: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Feilrettingsoversikt %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon oversettes til mange språk takket være oversettelseslagene på <a href='%1'>Transifex</a>.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Programfiks for WavPack-støtte</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Pakking, testing</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Forbedringer i grensesnittet</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Kontoen Flacon på github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Feilrettingsoversikt %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon oversettes til mange språk takket være oversettelseslagene på <a href='%1'>Transifex</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> </context> <context> @@ -1171,6 +1185,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_nl.ts -> flacon-5.4.0.tar.gz/translations/flacon_nl.ts
Changed
@@ -50,29 +50,43 @@ <translation>Auteursrecht: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Bugtracker %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon is vertaald in veel talen dankzij het werk van de Flacon-vertalingsteams op <a href='%1'>Transifex</a>.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>WavPack-ondersteuningspatch</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Verpakken, testen</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Verbeteringen in de gebruikersinterface</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Flacon-account op github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Bugtracker %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation>Pictogram voor toepassing</translation> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon is vertaald in veel talen dankzij het werk van de Flacon-vertalingsteams op <a href='%1'>Transifex</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation>Pictogrammen voor toepassing</translation> </message> </context> <context> @@ -963,7 +977,7 @@ </message> <message> <source>Insert "Total number of tracks"</source> - <translation>‘Totaal aantal nummers’ invoegen</translation> + <translation>‘Aantal nummers’ invoegen</translation> </message> <message> <source>Insert "Artist"</source> @@ -1041,7 +1055,7 @@ Tokens beginnen met %. U kan volgende tokens gebruiken: <table> <tr><td class="term">%n</td> <td class="def"> - Tracknummer</td> - <td class="term">%N</td> <td class="def"> - Totaal aantal nummers</td></tr> + <td class="term">%N</td> <td class="def"> - Aantal nummers</td></tr> <tr><td class="term">%a</td> <td class="def"> - Artiest</td> <td class="term">%A</td> <td class="def"> - Albumtitel</td></tr> <tr><td class="term">%t</td> <td class="def"> - Nummertitel</td> @@ -1171,6 +1185,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation>Ctrl+Shift+W</translation> </message> + <message> + <source>Insert "Disk number"</source> + <translation>‘Schijfnummer’ invoegen</translation> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation>‘Aantal schijven’ invoegen</translation> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_nl_BE.ts -> flacon-5.4.0.tar.gz/translations/flacon_nl_BE.ts
Changed
@@ -50,29 +50,43 @@ <translation>Auteursrecht: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Bugtracker %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon is vertaald in nen hoop talen dankzij het werk van de Flacon-vertalingsteams op <a href='%1'>Transifex</a>.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>WavPack-ondersteuningsplakker</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Verpakken, testen</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Verbeteringen in de gebruikersinterface</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Flacon-account op github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Bugtracker %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation>Pictogram voor toepassing</translation> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon is vertaald in nen hoop talen dankzij het werk van de Flacon-vertalingsteams op <a href='%1'>Transifex</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation>Pictogrammen voor toepassing</translation> </message> </context> <context> @@ -963,7 +977,7 @@ </message> <message> <source>Insert "Total number of tracks"</source> - <translation>‘Totaal aantal nummers’ invoegen</translation> + <translation>‘Aantal nummers’ invoegen</translation> </message> <message> <source>Insert "Artist"</source> @@ -1041,7 +1055,7 @@ Tokens beginnen met %. U kan volgende tokens gebruiken: <table> <tr><td class="term">%n</td> <td class="def"> - Tracknummer</td> - <td class="term">%N</td> <td class="def"> - Totaal aantal nummers</td></tr> + <td class="term">%N</td> <td class="def"> - Aantal nummers</td></tr> <tr><td class="term">%a</td> <td class="def"> - Artiest</td> <td class="term">%A</td> <td class="def"> - Albumtitel</td></tr> <tr><td class="term">%t</td> <td class="def"> - Nummertitel</td> @@ -1171,6 +1185,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation>Ctrl+Shift+W</translation> </message> + <message> + <source>Insert "Disk number"</source> + <translation>‘Schijfnummer’ invoegen</translation> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation>‘Aantal schijven’ invoegen</translation> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_pl.ts -> flacon-5.4.0.tar.gz/translations/flacon_pl.ts
Changed
@@ -50,28 +50,42 @@ <translation>Copyright: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Bugtracker %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation type="unfinished"/> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Poprawka obsługi WavPack.</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Paczkowanie, testowanie</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Ulepszenia UI programu</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Konto "Flacon" na github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Bugtracker %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> </context> @@ -1159,6 +1173,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_pl_PL.ts -> flacon-5.4.0.tar.gz/translations/flacon_pl_PL.ts
Changed
@@ -50,29 +50,43 @@ <translation>Copyright: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Bug tracker %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon jest tłumaczony na wiele języków, dzięki pracy zespołom tłumaczy na stronie <a href='%1'>Transifex</a>.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Poprawki obsługi WavPack.</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Paczkowanie, testowanie.</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Ulepszenia UI programu.</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Konto "Flacon" na github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Bug tracker %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon jest tłumaczony na wiele języków, dzięki pracy zespołom tłumaczy na stronie <a href='%1'>Transifex</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> </context> <context> @@ -1147,6 +1161,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_pt_BR.ts -> flacon-5.4.0.tar.gz/translations/flacon_pt_BR.ts
Changed
@@ -50,29 +50,43 @@ <translation>Copyright: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Rastreador de erros %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon é traduzido para vários idiomas graças ao trabalho das equipes de tradução do Flacon em <a href='%1'>Transifex</a>.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Patch de suporte a WavPack</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Empacotamento, teste.</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Aprimoramentos na interface gráfica.</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Conta do Flacon no github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Rastreador de erros %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation>Ícone para o programa</translation> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon é traduzido para vários idiomas graças ao trabalho das equipes de tradução do Flacon em <a href='%1'>Transifex</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation>Ícones para o programa</translation> </message> </context> <context> @@ -1167,6 +1181,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation>Ctrl+Shift+W</translation> </message> + <message> + <source>Insert "Disk number"</source> + <translation>Insira o "Número do disco"</translation> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation>Insira o "Número total de discos"</translation> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_pt_PT.ts -> flacon-5.4.0.tar.gz/translations/flacon_pt_PT.ts
Changed
@@ -50,28 +50,42 @@ <translation>Direitos de autor: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Registo de erros: %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation type="unfinished"/> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Suporte ao patch do WavPack</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Empacotamento, testes</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Melhorias à interface do utilizador</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Conta do Flacon no github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Registo de erros: %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> </context> @@ -1142,6 +1156,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_ro_RO.ts -> flacon-5.4.0.tar.gz/translations/flacon_ro_RO.ts
Changed
@@ -50,29 +50,43 @@ <translation>Copyright: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Raportare erori %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon este tradus în multe limbi datorită echipelor de traducere implicate în proiectul Flacon de pe <a href='%1'>Transifex</a>.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Suport WavPack</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Creare fișiere binare, testare</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Îmbunătățiri ale interfeței</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Cont Flacon pe github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Raportare erori %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon este tradus în multe limbi datorită echipelor de traducere implicate în proiectul Flacon de pe <a href='%1'>Transifex</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> </context> <context> @@ -1171,6 +1185,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_ru.ts -> flacon-5.4.0.tar.gz/translations/flacon_ru.ts
Changed
@@ -50,29 +50,43 @@ <translation>Copyright: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Баг-трекер %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon переведена на множество языков благодаря работе команды переводчиков на сайте <a href='%1'>Transifex</a>.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Патч для поддержки WavPack</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Пакетирование, тестирование</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Улучшения в интерфейсе</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Учетная запись "Flacon" на github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Баг-трекер %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation>Иконка для программы</translation> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon переведена на множество языков благодаря работе команды переводчиков на сайте <a href='%1'>Transifex</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation>Иконки для программы</translation> </message> </context> <context> @@ -1168,6 +1182,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation>Ctrl+Shift+W</translation> </message> + <message> + <source>Insert "Disk number"</source> + <translation>Вставить номер диска</translation> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation>Вставить количество дисков</translation> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_sr.ts -> flacon-5.4.0.tar.gz/translations/flacon_sr.ts
Changed
@@ -50,29 +50,43 @@ <translation>© %1 — %2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Буболовац: %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Флакон је преведен на многе језике захваљујући раду преводилаћких тимова на <a href='%1'>Трансифексу</a>.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Закрпа за ВавПак подршку</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Пакирање, тестирање</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Побољшања сучеља</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Флаконов налог на github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Буболовац: %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Флакон је преведен на многе језике захваљујући раду преводилаћких тимова на <a href='%1'>Трансифексу</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> </context> <context> @@ -1119,6 +1133,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_sr@latin.ts -> flacon-5.4.0.tar.gz/translations/flacon_sr@latin.ts
Changed
@@ -50,29 +50,43 @@ <translation>© %1 — %2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Bubolovac: %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon je preveden na mnoge jezike zahvaljujući radu prevodilaćkih timova na <a href='%1'>Transifexu</a>.</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Zakrpa za VavPak podršku</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Pakiranje, testiranje</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Poboljšanja sučelja</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Flaconov nalog na github.com</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Bubolovac: %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon je preveden na mnoge jezike zahvaljujući radu prevodilaćkih timova na <a href='%1'>Transifexu</a>.</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> </context> <context> @@ -1119,6 +1133,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_tr.ts -> flacon-5.4.0.tar.gz/translations/flacon_tr.ts
Changed
@@ -50,28 +50,42 @@ <translation>Telif hakkı: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Hata izleyicisi %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation type="unfinished"/> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>WavPack destek yaması</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Paketleme, sınama</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Kullanıcı arabirimi iyileştirmeleri</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Flacon github.com hesabı</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Hata izleyicisi %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> </context> @@ -1112,6 +1126,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_uk.ts -> flacon-5.4.0.tar.gz/translations/flacon_uk.ts
Changed
@@ -50,29 +50,43 @@ <translation>Авторське право: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>Баг-трекер %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon перекладена багатьма мовами завдяки праці команди перекладачів на сайті <a href='%1'>Transifex</a>..</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>Латка для підтримки WavPack</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>Пакування, тестування.</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>Покращення інтерфейсу.</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Обліковий запис "Flacon" на github.com.</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>Баг-трекер %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon перекладена багатьма мовами завдяки праці команди перекладачів на сайті <a href='%1'>Transifex</a>..</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> </context> <context> @@ -1171,6 +1185,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_zh_CN.ts -> flacon-5.4.0.tar.gz/translations/flacon_zh_CN.ts
Changed
@@ -50,29 +50,43 @@ <translation>版权: %1-%2 %3</translation> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation>出错的曲目 %1</translation> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation>Flacon 已被翻译到许多种语言,这要感谢 <a href='%1'>Transifex</a> 上的各 Flacon 翻译小组。</translation> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation>WavPach 支持补丁</translation> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation>打包和测试。</translation> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation>UI的改进</translation> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation>Flacon 在github.com 的网址</translation> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> - <translation>出错的曲目 %1</translation> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> - <translation>Flacon 已被翻译到许多种语言,这要感谢 <a href='%1'>Transifex</a> 上的各 Flacon 翻译小组。</translation> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> + <translation type="unfinished"/> </message> </context> <context> @@ -1147,6 +1161,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/flacon_zh_TW.ts -> flacon-5.4.0.tar.gz/translations/flacon_zh_TW.ts
Changed
@@ -50,28 +50,42 @@ <translation type="unfinished"/> </message> <message> + <source>Bug tracker %1</source> + <comment>About dialog, About tab</comment> + <translation type="unfinished"/> + </message> + <message> + <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <translation type="unfinished"/> + </message> + <message> <source>WavPack support patch</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> <source>Packaging, testing</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> <source>Improvements in the UI</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> <source>Flacon account on github.com</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> - <source>Bug tracker %1</source> - <comment>About dialog, About tab</comment> + <source>Icon for application</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> <message> - <source>Flacon is translated into many languages thanks to the work of the Flacon translation teams on <a href='%1'>Transifex</a>.</source> + <source>Icons for application</source> + <comment>Thanks on the about page</comment> <translation type="unfinished"/> </message> </context> @@ -1116,6 +1130,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"/> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"/> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"/> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/translations/src.flacon.ts -> flacon-5.4.0.tar.gz/translations/src.flacon.ts
Changed
@@ -1114,6 +1114,14 @@ <extracomment>Main menu item shortcut</extracomment> <translation type="unfinished"></translation> </message> + <message> + <source>Insert "Disk number"</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Insert "Total number of disks"</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>MultiValuesComboBox</name>
View file
flacon-5.3.0.tar.gz/types.cpp -> flacon-5.4.0.tar.gz/types.cpp
Changed
@@ -325,134 +325,3 @@ res.replace('?', "-"); return res; } - - - -/************************************************ - - ************************************************/ -static QString doExpandPattern(const QString &pattern, const QHash<QChar, QString> *tokens, bool optional) -{ - QString res; - bool perc = false; - bool hasVars = false; - bool isValid = true; - - - for(int i=0; i<pattern.length(); ++i) - { - QChar c = pattern.at(i); - - - // Sub pattern ................................. - if (c == '{') - { - int level = 0; - int start = i + 1; - //int j = i; - QString s = "{"; - - for (int j=i; j<pattern.length(); ++j) - { - c = pattern.at(j); - if (c == '{') - level++; - else if (c == '}') - level--; - - if (level == 0) - { - s = doExpandPattern(pattern.mid(start, j - start), tokens, true); - i = j; - break; - } - } - res += s; - } - // Sub pattern ................................. - - else - { - if (perc) - { - perc = false; - if (tokens->contains(c)) - { - QString s = tokens->value(c); - hasVars = true; - isValid = !s.isEmpty(); - res += s; - } - else - { - if (c == '%') - res += "%"; - else - res += QString("%") + c; - } - } - else - { - if (c == '%') - perc = true; - else - res += c; - } - } - } - - if (perc) - res += "%"; - - if (optional) - { - if (hasVars) - { - if (!isValid) - return ""; - } - else - { - return "{" + res + "}"; - } - } - - return res; -} - - -/************************************************ - %N Number of tracks %n Track number - %a Artist %A Album title - %y Year %g Genre - %t Track title - ************************************************/ -QString expandPattern(const QString &pattern, - int trackCount, - int trackNum, - const QString &album, - const QString &title, - const QString &artist, - const QString &genre, - const QString &date) -{ - QHash<QChar, QString> tokens; - tokens.insert(QChar('N'), QString("%1").arg(trackCount, 2, 10, QChar('0'))); - tokens.insert(QChar('n'), QString("%1").arg(trackNum, 2, 10, QChar('0'))); - tokens.insert(QChar('A'), safeString(album)); - tokens.insert(QChar('t'), safeString(title)); - tokens.insert(QChar('a'), safeString(artist)); - tokens.insert(QChar('g'), safeString(genre)); - tokens.insert(QChar('y'), safeString(date)); - - return doExpandPattern(pattern, &tokens, false); -} - - -/************************************************ - * - ************************************************/ -QString patternExample(const QString &pattern) -{ - return expandPattern(pattern, 14, 13, "Help", "Yesterday", "The Beatles", "Pop", "1965"); -}
View file
flacon-5.3.0.tar.gz/types.h -> flacon-5.4.0.tar.gz/types.h
Changed
@@ -67,7 +67,10 @@ QString coverModeToString(CoverMode mode); CoverMode strToCoverMode(const QString &str); +typedef quint16 DiskCount; typedef quint16 DiskNum; + +typedef quint16 TrackCount; typedef quint16 TrackNum; unsigned int levenshteinDistance(const QString &s1, const QString & s2); @@ -154,16 +157,7 @@ void initTypes(); QString safeString(const QString &str); -QString expandPattern(const QString &pattern, - int trackCount, - int trackNum, - const QString &album, - const QString &title, - const QString &artist, - const QString &genre, - const QString &date); - -QString patternExample(const QString &pattern); + class Messages {
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.