diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000..1bb13ed53 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,499 @@ +version: 2.1 +commands: + cmake: + description: Configure build + steps: + - run: + name: cmake + command: cmake .. + working_directory: bin + build_source_tarball: + description: Build source tarball + steps: + - run: + name: Build source tarball + command: ../dist/maketarball.sh + working_directory: bin + + build_rpm: + description: Build RPM + steps: + - run: + name: Create rpmbuild directory + command: mkdir -p ~/rpmbuild/SOURCES + - run: + name: Move source tarball + command: mv clementine-*.tar.xz ~/rpmbuild/SOURCES + working_directory: bin + - run: + name: Build RPM + command: rpmbuild -ba ../dist/clementine.spec + working_directory: bin + cmake_debian: + description: Configure build + parameters: + distribution: + type: string + default: xenial + arch: + type: string + default: amd64 + steps: + - run: + name: cmake + command: > + cmake .. + -DWITH_DEBIAN=ON + -DDEB_ARCH=<< parameters.arch >> + -DDEB_DIST=<< parameters.distribution >> + -DFORCE_GIT_VERSION= + -DENABLE_SPOTIFY_BLOB=OFF + working_directory: bin + make_deb: + description: Build deb + steps: + - run: + name: make deb + command: make deb + working_directory: bin + copy_artifacts: + description: Copy build artifacts + parameters: + build: + type: string + default: ubuntu-xenial + steps: + - run: + name: Create artifact output directory + command: mkdir -p /tmp/artifacts/<< parameters.build >> + - run: + name: Copy deb to artifacts directory + command: cp bin/clementine_*.deb /tmp/artifacts/<< parameters.build >>/ + - persist_to_workspace: + root: /tmp/artifacts/<< parameters.build >> + paths: + - "*" + - store_artifacts: + path: /tmp/artifacts/<< parameters.build >> + copy_rpm_artifacts: + description: Copy build artifcats + parameters: + build: + type: string + default: fedora-29 + steps: + - run: + name: Create artifact output directory + command: mkdir -p /tmp/artifacts/<< parameters.build >> + - run: + name: Copy RPM to artifacts directory + command: cp ~/rpmbuild/RPMS/*/clementine-*.rpm /tmp/artifacts/<< parameters.build >> + - persist_to_workspace: + root: /tmp/artifacts/<< parameters.build >> + paths: + - "*" + - store_artifacts: + path: /tmp/artifacts/<< parameters.build >> + install_xenial_dependencies: + description: Install Xenial dependencies + steps: + - run: + name: Install Dependencies + command: > + apt-get update && apt-get install -y + cmake + fakeroot + gettext + git + libasound2-dev + libboost-dev + libboost-serialization-dev + libcdio-cdda1 + libcdio-dev + libchromaprint-dev + libcrypto++-dev + libdbus-1-dev + libfftw3-dev + libglew1.5-dev + libgpod-dev + libgstreamer-plugins-base1.0-dev + libgstreamer1.0-dev + liblastfm-dev + libmtp-dev + libmygpo-qt-dev + libplist-dev + libprotobuf-dev + libpulse-dev + libqca2-dev + libqca2-plugin-ossl + libqjson-dev + libqt4-dev + libqt4-opengl-dev + libqtwebkit-dev + libsparsehash-dev + libsqlite3-dev + libtag1-dev + libusbmuxd-dev + protobuf-compiler + qt4-dev-tools + ssh + install_bionic_dependencies: + description: Install Bionic dependencies + steps: + - run: + name: Install Dependencies + command: > + apt-get update && apt-get install -y + cmake + fakeroot + gettext + git + libasound2-dev + libboost-dev + libboost-serialization-dev + libcdio-cdda2 + libcdio-dev + libchromaprint-dev + libcrypto++-dev + libdbus-1-dev + libfftw3-dev + libglew1.5-dev + libgpod-dev + libgstreamer-plugins-base1.0-dev + libgstreamer1.0-dev + liblastfm-dev + libmtp-dev + libmygpo-qt-dev + libplist-dev + libprotobuf-dev + libpulse-dev + libqca2-dev + libqca2-plugins + libqjson-dev + libqt4-dev + libqt4-opengl-dev + libqtwebkit-dev + libsparsehash-dev + libsqlite3-dev + libtag1-dev + libusbmuxd-dev + protobuf-compiler + qt4-dev-tools + ssh + install_disco_dependencies: + description: Install Disco dependencies + steps: + - run: + name: Install Dependencies + command: > + apt-get update && apt-get install -y + cmake + fakeroot + gettext + git + libasound2-dev + libboost-dev + libboost-serialization-dev + libcdio-cdda2 + libcdio-dev + libchromaprint-dev + libcrypto++-dev + libdbus-1-dev + libfftw3-dev + libglew1.5-dev + libgpod-dev + libgstreamer-plugins-base1.0-dev + libgstreamer1.0-dev + liblastfm-dev + libmtp-dev + libmygpo-qt-dev + libplist-dev + libprotobuf-dev + libpulse-dev + libqca2-dev + libqca2-plugins + libqjson-dev + libqt4-dev + libqt4-opengl-dev + libqtwebkit-dev + libsparsehash-dev + libsqlite3-dev + libtag1-dev + libusbmuxd-dev + protobuf-compiler + qt4-dev-tools + ssh + + install_fedora_dependencies: + description: Install Fedora Dependencies + steps: + - run: + name: Install Dependencies + command: > + dnf install --assumeyes + @development-tools + boost-devel + cmake + cryptopp-devel + desktop-file-utils + fftw-devel + gcc-c++ + gettext + git + glew-devel + gstreamer1-devel + gstreamer1-plugins-base-devel + libcdio-devel + libchromaprint-devel + libgpod-devel + liblastfm-devel + libmtp-devel + openssh + protobuf-compiler + protobuf-devel + pulseaudio-libs-devel + qca-devel + qca-ossl + qjson-devel + qt-devel + qtwebkit-devel + rpmdevtools + sha2-devel + sparsehash-devel + sqlite-devel + taglib-devel + tar + +jobs: + build_disco_64: + docker: + - image: ubuntu:disco + + steps: + - install_disco_dependencies + - checkout + - cmake_debian: + distribution: disco + arch: amd64 + - make_deb + - copy_artifacts: + build: ubuntu-disco + + build_disco_32: + docker: + - image: i386/ubuntu:disco + + steps: + - install_disco_dependencies + - checkout + - cmake_debian: + distribution: disco + arch: i386 + - make_deb + - copy_artifacts: + build: ubuntu-disco + + build_bionic_64: + docker: + - image: ubuntu:bionic + + steps: + - install_bionic_dependencies + - checkout + - cmake_debian: + distribution: bionic + arch: amd64 + - make_deb + - copy_artifacts: + build: ubuntu-bionic + + build_bionic_32: + docker: + - image: i386/ubuntu:bionic + + steps: + - install_bionic_dependencies + - checkout + - cmake_debian: + distribution: bionic + arch: i386 + - make_deb + - copy_artifacts: + build: ubuntu-bionic + + build_xenial_64: + docker: + - image: ubuntu:xenial + + steps: + - install_xenial_dependencies + - checkout + - cmake_debian: + distribution: xenial + arch: amd64 + - make_deb + - copy_artifacts: + build: ubuntu-xenial + + build_xenial_32: + docker: + - image: i386/ubuntu:xenial + + steps: + - install_xenial_dependencies + - checkout + - cmake_debian: + distribution: xenial + arch: i386 + - make_deb + - copy_artifacts: + build: ubuntu-xenial + + build_fedora_29_64: + docker: + - image: fedora:29 + environment: + RPM_BUILD_NCPUS: "1" + + steps: + - install_fedora_dependencies + - checkout + - cmake + - build_source_tarball + - build_rpm + - copy_rpm_artifacts: + build: fedora-29 + + build_fedora_30_64: + docker: + - image: fedora:30 + environment: + RPM_BUILD_NCPUS: "1" + + steps: + - install_fedora_dependencies + - checkout + - cmake + - build_source_tarball + - build_rpm + - copy_rpm_artifacts: + build: fedora-30 + + build_mac: + macos: + xcode: "11.0.0" + steps: + - run: + name: Setup PATH + command: | + echo 'export Qt5_DIR=/usr/local/opt/qt5/lib/cmake' >> $BASH_ENV + echo 'export Qt5LinguistTools_DIR=/usr/local/Cellar/qt/5.11.2/lib/cmake/Qt5LinguistTools' >> $BASH_ENV + echo 'export GST_SCANNER_PATH=/usr/local/Cellar/gstreamer/1.14.4/libexec/gstreamer-1.0/gst-plugin-scanner' >> $BASH_ENV + echo 'export GST_PLUGIN_PATH=/usr/local/lib/gstreamer-1.0' >> $BASH_ENV + echo 'export PATH=/usr/local/opt/gettext/bin:$PATH' >> $BASH_ENV + source $BASH_ENV + - run: + name: Install dependencies from homebrew + command: > + brew install + boost + chromaprint + cmake + cryptopp + gettext + glib + liblastfm + pkgconfig + protobuf + protobuf-c + qt + - run: + name: Install sqlite + command: brew install sqlite --with-fts + - run: + name: Install gstreamer + command: brew install gstreamer gst-plugins-base + - run: + name: Install gst-plugins-good + command: brew install gst-plugins-good --with-flac + - run: + name: Install gst-plugins + command: brew install gst-plugins-bad gst-plugins-ugly + - run: + name: Install other dependencies + command: brew install chromaprint liblastfm + - checkout + - run: + name: Checkout qt5 branch + command: git checkout qt5 + - run: + name: cmake + command: cmake .. -DUSE_VISUALISATIONS=OFF + working_directory: bin + - run: + name: make + command: make + working_directory: bin + - run: + name: Copy icon file and resources + command: make install + working_directory: bin + - run: + name: Build DMG + command: make dmg + working_directory: bin + - run: + name: Create artifact output directory + command: mkdir -p /tmp/artifacts/mac + - run: + name: Copy dmg to artifacts directory + command: cp bin/clementine*.dmg /tmp/artifacts/mac + - persist_to_workspace: + root: /tmp/artifacts/mac + paths: + - "*" + - store_artifacts: + path: /tmp/artifacts/mac + + upload_artifacts: + docker: + - image: google/cloud-sdk + steps: + - run: + name: Google Cloud Auth + command: | + echo $GCLOUD_SERVICE_KEY | gcloud auth activate-service-account circleci-uploader@clementine-data.iam.gserviceaccount.com --key-file=- + gcloud --quiet config set project clementine-data + - attach_workspace: + at: /tmp/artifacts + - run: + name: Upload Artifact to Google Cloud + command: gsutil rsync -r /tmp/artifacts gs://builds.clementine-player.org/ + +workflows: + version: 2 + build_all: + jobs: + - build_xenial_32 + - build_xenial_64 + - build_bionic_32 + - build_bionic_64 + - build_disco_32 + - build_disco_64 + - build_fedora_29_64 + - build_fedora_30_64 + + - upload_artifacts: + context: gcp + requires: + - build_xenial_32 + - build_xenial_64 + - build_bionic_32 + - build_bionic_64 + - build_disco_32 + - build_disco_64 + - build_fedora_29_64 + - build_fedora_30_64 + filters: + branches: + only: master diff --git a/cmake/FindFFTW3.cmake b/cmake/FindFFTW3.cmake index e711dd3ab..0ad11867f 100644 --- a/cmake/FindFFTW3.cmake +++ b/cmake/FindFFTW3.cmake @@ -54,8 +54,8 @@ SET(FFTW3_POSSIBLE_LIBRARY_PATH ) -# the lib prefix is containe din filename onf W32, unfortuantely. JW -# teh "general" lib: +# the lib prefix is contained in filename on W32, unfortunately. JW +# the "general" lib: FIND_LIBRARY(FFTW3_FFTW_LIBRARY NAMES fftw3 libfftw libfftw3 libfftw3-3 PATHS diff --git a/data/lyrics/ultimate_providers.xml b/data/lyrics/ultimate_providers.xml index 5f90c9747..98a043695 100644 --- a/data/lyrics/ultimate_providers.xml +++ b/data/lyrics/ultimate_providers.xml @@ -63,11 +63,11 @@ - + in other cases it is omitted ($uicideboy$ -> uicideboy) + I chose to omit it though, in some cases it's gonna be problematic --> diff --git a/dist/cpplint.py b/dist/cpplint.py index 7df424532..9192fae8b 100755 --- a/dist/cpplint.py +++ b/dist/cpplint.py @@ -6110,7 +6110,7 @@ def ParseArguments(args): try: _valid_extensions = set(val.split(',')) except ValueError: - PrintUsage('Extensions must be comma seperated list.') + PrintUsage('Extensions must be comma separated list.') if not filenames: PrintUsage('No files were specified.') diff --git a/dist/format.py b/dist/format.py index 616802b54..ceb6c71c8 100755 --- a/dist/format.py +++ b/dist/format.py @@ -23,7 +23,7 @@ def main(): help='edit files inplace instead of showing a diff') parser.add_argument('--files', nargs='*', metavar='FIL', default=[], - help='get files as arguments insted of git') + help='get files as arguments instead of git') args = parser.parse_args() try: diff --git a/ext/libclementine-remote/remotecontrolmessages.proto b/ext/libclementine-remote/remotecontrolmessages.proto index 2389a5a26..4dd5ca9ce 100644 --- a/ext/libclementine-remote/remotecontrolmessages.proto +++ b/ext/libclementine-remote/remotecontrolmessages.proto @@ -137,7 +137,7 @@ message SongMetadata { optional Type type = 22; } -// Playlist informations +// Playlist information message Playlist { optional int32 id = 1; optional string name = 2; diff --git a/ext/libclementine-tagreader/cloudstream.cpp b/ext/libclementine-tagreader/cloudstream.cpp index 503cd6652..c5f8cb54f 100644 --- a/ext/libclementine-tagreader/cloudstream.cpp +++ b/ext/libclementine-tagreader/cloudstream.cpp @@ -33,15 +33,14 @@ static const int kTaglibSuffixCacheBytes = 8 * 1024; } CloudStream::CloudStream(const QUrl& url, const QString& filename, - const long length, const QString& auth, - QNetworkAccessManager* network) + const long length, const QString& auth) : url_(url), filename_(filename), encoded_filename_(filename_.toUtf8()), length_(length), auth_(auth), cursor_(0), - network_(network), + network_(new QNetworkAccessManager), cache_(length), num_requests_(0) {} diff --git a/ext/libclementine-tagreader/cloudstream.h b/ext/libclementine-tagreader/cloudstream.h index 4c2e1358d..7002b3ad9 100644 --- a/ext/libclementine-tagreader/cloudstream.h +++ b/ext/libclementine-tagreader/cloudstream.h @@ -18,21 +18,20 @@ #ifndef GOOGLEDRIVESTREAM_H #define GOOGLEDRIVESTREAM_H -#include #include +#include +#include #include #include #include #include -class QNetworkAccessManager; - class CloudStream : public QObject, public TagLib::IOStream { Q_OBJECT public: CloudStream(const QUrl& url, const QString& filename, const long length, - const QString& auth, QNetworkAccessManager* network); + const QString& auth); // Taglib::IOStream virtual TagLib::FileName name() const; @@ -73,7 +72,7 @@ class CloudStream : public QObject, public TagLib::IOStream { const QString auth_; int cursor_; - QNetworkAccessManager* network_; + std::unique_ptr network_; google::sparsetable cache_; int num_requests_; diff --git a/ext/libclementine-tagreader/tagreader.cpp b/ext/libclementine-tagreader/tagreader.cpp index 467995591..bdd56bdea 100644 --- a/ext/libclementine-tagreader/tagreader.cpp +++ b/ext/libclementine-tagreader/tagreader.cpp @@ -22,7 +22,6 @@ #include #include #include -#include #include #include #include @@ -77,12 +76,6 @@ #define NumberToASFAttribute(x) \ TagLib::ASF::Attribute(QStringToTaglibString(QString::number(x))) -class FileRefFactory { - public: - virtual ~FileRefFactory() {} - virtual TagLib::FileRef* GetFileRef(const QString& filename) = 0; -}; - class TagLibFileRefFactory : public FileRefFactory { public: virtual TagLib::FileRef* GetFileRef(const QString& filename) { @@ -122,7 +115,6 @@ const char* kASF_OriginalYear_ID = "WM/OriginalReleaseYear"; TagReader::TagReader() : factory_(new TagLibFileRefFactory), - network_(new QNetworkAccessManager), kEmbeddedCover("(embedded)") {} void TagReader::ReadFile(const QString& filename, @@ -989,7 +981,7 @@ bool TagReader::SaveSongRatingToFile( if (filename.isNull()) return false; qLog(Debug) << "Saving song rating tags to" << filename; - if (song.rating()) { + if (song.rating() < 0) { // The FMPS spec says unrated == "tag not present". For us, no rating // results in rating being -1, so don't write anything in that case. // Actually, we should also remove tag set in this case, but in @@ -1332,8 +1324,8 @@ bool TagReader::ReadCloudFile(const QUrl& download_url, const QString& title, pb::tagreader::SongMetadata* song) const { qLog(Debug) << "Loading tags from" << title; - std::unique_ptr stream(new CloudStream( - download_url, title, size, authorisation_header, network_)); + std::unique_ptr stream( + new CloudStream(download_url, title, size, authorisation_header)); stream->Precache(); std::unique_ptr tag; if (mime_type == "audio/mpeg" && diff --git a/ext/libclementine-tagreader/tagreader.h b/ext/libclementine-tagreader/tagreader.h index 2408aced6..37aac30b8 100644 --- a/ext/libclementine-tagreader/tagreader.h +++ b/ext/libclementine-tagreader/tagreader.h @@ -21,11 +21,11 @@ #include #include +#include #include "config.h" #include "tagreadermessages.pb.h" -class QNetworkAccessManager; class QString; class QTextCodec; class QUrl; @@ -40,7 +40,11 @@ class PopularimeterFrame; } } -class FileRefFactory; +class FileRefFactory { + public: + virtual ~FileRefFactory() {} + virtual TagLib::FileRef* GetFileRef(const QString& filename) = 0; +}; /** * This class holds all useful methods to read and write tags from/to files. @@ -119,8 +123,7 @@ class TagReader { static TagLib::ID3v2::PopularimeterFrame* GetPOPMFrameFromTag( TagLib::ID3v2::Tag* tag); - FileRefFactory* factory_; - QNetworkAccessManager* network_; + std::unique_ptr factory_; const std::string kEmbeddedCover; }; diff --git a/src/analyzers/analyzercontainer.cpp b/src/analyzers/analyzercontainer.cpp index de04bb0bc..b78602a60 100644 --- a/src/analyzers/analyzercontainer.cpp +++ b/src/analyzers/analyzercontainer.cpp @@ -163,7 +163,7 @@ void AnalyzerContainer::ChangeAnalyzer(int id) { analyzer_types_[id]->newInstance(Q_ARG(QWidget*, this)); if (!instance) { - qLog(Warning) << "Couldn't intialise a new" + qLog(Warning) << "Couldn't initialise a new" << analyzer_types_[id]->className(); return; } diff --git a/src/analyzers/blockanalyzer.cpp b/src/analyzers/blockanalyzer.cpp index 7be055bb0..1b9060b5f 100644 --- a/src/analyzers/blockanalyzer.cpp +++ b/src/analyzers/blockanalyzer.cpp @@ -284,7 +284,7 @@ QColor ensureContrast(const QColor& bg, const QColor& fg, uint _amount = 150) { int dh = abs(bh - fh); if (dh > 120) { - // a third of the colour wheel automatically guarentees contrast + // a third of the colour wheel automatically guarantees contrast // but only if the values are high enough and saturations significant enough // to allow the colours to be visible and not be shades of grey or black diff --git a/src/core/database.cpp b/src/core/database.cpp index 5a212bbe2..aef879679 100644 --- a/src/core/database.cpp +++ b/src/core/database.cpp @@ -262,7 +262,7 @@ QSqlDatabase Database::Connect() { } // Find Sqlite3 functions in the Qt plugin. - StaticInit(); + if (!sFTSTokenizer) StaticInit(); { @@ -670,7 +670,7 @@ void Database::BackupFile(const QString& filename) { sqlite3* source_connection = nullptr; sqlite3* dest_connection = nullptr; - BOOST_SCOPE_EXIT((source_connection)(dest_connection)(task_id)(app_)) { + BOOST_SCOPE_EXIT((&source_connection)(&dest_connection)(task_id)(app_)) { // Harmless to call sqlite3_close() with a nullptr pointer. sqlite3_close(source_connection); sqlite3_close(dest_connection); diff --git a/src/covers/albumcoverfetchersearch.cpp b/src/covers/albumcoverfetchersearch.cpp index 272dac2d8..1e3237207 100644 --- a/src/covers/albumcoverfetchersearch.cpp +++ b/src/covers/albumcoverfetchersearch.cpp @@ -48,7 +48,7 @@ AlbumCoverFetcherSearch::AlbumCoverFetcherSearch( image_load_timeout_(new NetworkTimeouts(kImageLoadTimeoutMs, this)), network_(network), cancel_requested_(false) { - // we will terminate the search after kSearchTimeoutMs miliseconds if we are + // we will terminate the search after kSearchTimeoutMs milliseconds if we are // not // able to find all of the results before that point in time QTimer::singleShot(kSearchTimeoutMs, this, SLOT(TerminateSearch())); diff --git a/src/dbus/org.freedesktop.UDisks.Device.xml b/src/dbus/org.freedesktop.UDisks.Device.xml index 99d1c459f..f93d4dfc2 100644 --- a/src/dbus/org.freedesktop.UDisks.Device.xml +++ b/src/dbus/org.freedesktop.UDisks.Device.xml @@ -1152,7 +1152,7 @@ - Detachs the device by e.g. powering down the physical port + Detaches the device by e.g. powering down the physical port it is connected to. Note that not all devices or ports are capable of this. Check the DriveCanDetach @@ -2408,7 +2408,7 @@ BAD_ATTRIBUTE_NOW (At least one pre-fail attribute is exceeding its threshold now), BAD_SECTOR_MANY (Many bad sectors)), BAD_STATUS (Smart Self Assessment negative) - or empty if some error occured trying to determine the result. + or empty if some error occurred trying to determine the result. This property is only valid if DriveAtaSmartTimeCollected is greater than zero. diff --git a/src/devices/udisks2lister.h b/src/devices/udisks2lister.h index 0fef30631..49519d7d6 100644 --- a/src/devices/udisks2lister.h +++ b/src/devices/udisks2lister.h @@ -96,7 +96,7 @@ class Udisks2Lister : public DeviceLister { quint64 capacity; QString dbus_drive_path; - // Paritition + // Partition QString label; QString uuid; quint64 free_space; diff --git a/src/engines/enginebase.h b/src/engines/enginebase.h index e6c30d2c3..d64a02419 100644 --- a/src/engines/enginebase.h +++ b/src/engines/enginebase.h @@ -61,7 +61,7 @@ class Base : public QObject { virtual qint64 length_nanosec() const = 0; // Subclasses should respect given markers (beginning and end) which are - // in miliseconds. + // in milliseconds. virtual bool Load(const QUrl& url, TrackChangeFlags change, bool force_stop_at_end, quint64 beginning_nanosec, qint64 end_nanosec); diff --git a/src/engines/gstenginepipeline.cpp b/src/engines/gstenginepipeline.cpp index 0edf6df87..29392f5b0 100644 --- a/src/engines/gstenginepipeline.cpp +++ b/src/engines/gstenginepipeline.cpp @@ -511,7 +511,7 @@ bool GstEnginePipeline::InitFromUrl(const QUrl& url, qint64 end_nanosec) { if (url.scheme() == "cdda" && !url.path().isEmpty()) { // Currently, Gstreamer can't handle input CD devices inside cdda URL. So - // we handle them ourselve: we extract the track number and re-create an + // we handle them ourself: we extract the track number and re-create an // URL with only cdda:// + the track number (which can be handled by // Gstreamer). We keep the device in mind, and we will set it later using // SourceSetupCallback @@ -1003,7 +1003,7 @@ void GstEnginePipeline::SourceSetupCallback(GstURIDecodeBin* bin, if (g_object_class_find_property(G_OBJECT_GET_CLASS(element), "device") && !instance->source_device().isEmpty()) { - // Gstreamer is not able to handle device in URL (refering to Gstreamer + // Gstreamer is not able to handle device in URL (referring to Gstreamer // documentation, this might be added in the future). Despite that, for now // we include device inside URL: we decompose it during Init and set device // here, when this callback is called. @@ -1228,7 +1228,7 @@ void GstEnginePipeline::FaderTimelineFinished() { fader_.reset(); // Wait a little while longer before emitting the finished signal (and - // probably distroying the pipeline) to account for delays in the audio + // probably destroying the pipeline) to account for delays in the audio // server/driver. if (use_fudge_timer_) { fader_fudge_timer_.start(kFaderFudgeMsec, this); diff --git a/src/internet/podcasts/podcastdownloader.cpp b/src/internet/podcasts/podcastdownloader.cpp index 1fbb2fe05..a6ccd706c 100644 --- a/src/internet/podcasts/podcastdownloader.cpp +++ b/src/internet/podcasts/podcastdownloader.cpp @@ -97,7 +97,7 @@ void Task::finishedInternal() { emit ProgressChanged(episode_, PodcastDownload::Finished, 0); - // I didn't ecountered even a single podcast with a corect metadata + // I didn't ecountered even a single podcast with a correct metadata TagReaderClient::Instance()->SaveFileBlocking(file_->fileName(), song); emit finished(this); } diff --git a/src/internet/podcasts/podcastupdater.cpp b/src/internet/podcasts/podcastupdater.cpp index 60da225b2..911b08cbb 100644 --- a/src/internet/podcasts/podcastupdater.cpp +++ b/src/internet/podcasts/podcastupdater.cpp @@ -132,7 +132,7 @@ void PodcastUpdater::PodcastLoaded(PodcastUrlLoaderReply* reply, if (one_of_many) { if (--pending_replies_ == 0) { // This was the last reply we were waiting for. Save this time as being - // the last sucessful update and restart the timer. + // the last successful update and restart the timer. last_full_update_ = QDateTime::currentDateTime(); SaveSettings(); RestartTimer(); diff --git a/src/internet/seafile/seafileservice.h b/src/internet/seafile/seafileservice.h index 4f919066a..814167adf 100644 --- a/src/internet/seafile/seafileservice.h +++ b/src/internet/seafile/seafileservice.h @@ -27,7 +27,7 @@ * - Seafile stores files in libraries (or repositories) so variable with the *name "library" corresponds to the * Seafile library, not to the Clementine library - * - The authentification of Seafile's API is simply a token (REST API) + * - The authentication of Seafile's API is simply a token (REST API) * - Seafile stores a hash for each entry. This hash changes when the entry is *modified. * This is the reason why we just have to compare the local hash with the diff --git a/src/internet/subsonic/subsonicdynamicplaylist.cpp b/src/internet/subsonic/subsonicdynamicplaylist.cpp index e6f7e42e8..c691c6352 100644 --- a/src/internet/subsonic/subsonicdynamicplaylist.cpp +++ b/src/internet/subsonic/subsonicdynamicplaylist.cpp @@ -128,7 +128,7 @@ PlaylistItemList SubsonicDynamicPlaylist::GenerateMore(int count) { if (reader.attributes().value("status") != "ok") { reader.readNextStartElement(); int error = reader.attributes().value("code").toString().toInt(); - qLog(Warning) << "An error occured fetching data. Code: " << error + qLog(Warning) << "An error occurred fetching data. Code: " << error << " Message: " << reader.attributes().value("message").toString(); } diff --git a/src/internet/subsonic/subsonicservice.cpp b/src/internet/subsonic/subsonicservice.cpp index 1cf7ac568..aa9c00511 100644 --- a/src/internet/subsonic/subsonicservice.cpp +++ b/src/internet/subsonic/subsonicservice.cpp @@ -350,7 +350,7 @@ void SubsonicService::OnPingFinished(QNetworkReply* reply) { login_state_ = LoginState_RedirectNoUrl; } else { redirect_count_++; - qLog(Debug) << "Redirect receieved to " + qLog(Debug) << "Redirect received to " << redirect_url.toString(QUrl::RemoveQuery) << ", current redirect count is " << redirect_count_; if (redirect_count_ <= kMaxRedirects) { diff --git a/src/networkremote/incomingdataparser.cpp b/src/networkremote/incomingdataparser.cpp index c8dcb8a11..61f559474 100644 --- a/src/networkremote/incomingdataparser.cpp +++ b/src/networkremote/incomingdataparser.cpp @@ -32,7 +32,7 @@ #endif IncomingDataParser::IncomingDataParser(Application* app) : app_(app) { - // load settings initaily and sign up for updates + // load settings initially and sign up for updates ReloadSettings(); connect(app_, SIGNAL(SettingsChanged()), SLOT(ReloadSettings())); diff --git a/src/networkremote/networkremotehelper.cpp b/src/networkremote/networkremotehelper.cpp index 15c0d2bf6..0b947050b 100644 --- a/src/networkremote/networkremotehelper.cpp +++ b/src/networkremote/networkremotehelper.cpp @@ -49,7 +49,7 @@ void NetworkRemoteHelper::StartServer() { void NetworkRemoteHelper::ReloadSettings() { emit ReloadSettingsSig(); } -// For using in Settingsdialog, we haven't the appication there +// For using in Settingsdialog, we haven't the application there NetworkRemoteHelper* NetworkRemoteHelper::Instance() { if (!sInstance) { // normally he shouldn't go here. Only for safety diff --git a/src/playlist/playlistdelegates.cpp b/src/playlist/playlistdelegates.cpp index daf896e73..ab48157c4 100644 --- a/src/playlist/playlistdelegates.cpp +++ b/src/playlist/playlistdelegates.cpp @@ -401,6 +401,8 @@ TagCompleter::TagCompleter(LibraryBackend* backend, Playlist::Column column, future); } +TagCompleter::~TagCompleter() { model()->deleteLater(); } + void TagCompleter::ModelReady(QFuture future) { TagCompletionModel* model = future.result(); setModel(model); diff --git a/src/playlist/playlistdelegates.h b/src/playlist/playlistdelegates.h index df6436d15..6314f2483 100644 --- a/src/playlist/playlistdelegates.h +++ b/src/playlist/playlistdelegates.h @@ -157,6 +157,7 @@ class TagCompleter : public QCompleter { public: TagCompleter(LibraryBackend* backend, Playlist::Column column, QLineEdit* editor); + ~TagCompleter(); private slots: void ModelReady(QFuture future); diff --git a/src/playlist/playlistmanager.cpp b/src/playlist/playlistmanager.cpp index cb2207372..9e423545e 100644 --- a/src/playlist/playlistmanager.cpp +++ b/src/playlist/playlistmanager.cpp @@ -357,7 +357,7 @@ void PlaylistManager::SetActiveToCurrent() { // Check if we need to update the active playlist. // By calling SetActiveToCurrent, the playlist manager emits the signal // "ActiveChanged". This signal causes the network remote module to - // send all playlists to the clients, even no change happend. + // send all playlists to the clients, even if no change happened. if (current_id() != active_id()) { SetActivePlaylist(current_id()); } diff --git a/src/playlist/playlistview.cpp b/src/playlist/playlistview.cpp index 963715c3f..97308602b 100644 --- a/src/playlist/playlistview.cpp +++ b/src/playlist/playlistview.cpp @@ -773,7 +773,7 @@ void PlaylistView::closeEditor(QWidget* editor, } void PlaylistView::mouseMoveEvent(QMouseEvent* event) { - // Check wheather rating section is locked by user or not + // Check whether rating section is locked by user or not if (!ratings_locked_) { QModelIndex index = indexAt(event->pos()); if (index.isValid() && index.data(Playlist::Role_CanSetRating).toBool()) { diff --git a/src/playlistparsers/parserbase.h b/src/playlistparsers/parserbase.h index 669ce7d2c..f5fc297ce 100644 --- a/src/playlistparsers/parserbase.h +++ b/src/playlistparsers/parserbase.h @@ -40,7 +40,7 @@ class ParserBase : public QObject { // Loads all songs from playlist found at path 'playlist_path' in directory // 'dir'. - // The 'device' argument is an opened and ready to read from represantation of + // The 'device' argument is an opened and ready to read from representation of // this playlist. // This method might not return all of the songs found in the playlist. Any // playlist diff --git a/src/songinfo/songinfobase.cpp b/src/songinfo/songinfobase.cpp index 770b8d5a3..1f28919a3 100644 --- a/src/songinfo/songinfobase.cpp +++ b/src/songinfo/songinfobase.cpp @@ -75,7 +75,7 @@ void SongInfoBase::Clear() { delete section_container_; sections_.clear(); - // Container for collapsable sections goes below + // Container for collapsible sections goes below section_container_ = new QWidget; section_container_->setLayout(new QVBoxLayout); section_container_->layout()->setContentsMargins(0, 0, 0, 0); @@ -161,7 +161,7 @@ void SongInfoBase::CollapseSections() { // Sections are already sorted by type and relevance, so the algorithm we use // to determine which ones to show by default is: - // * In the absense of any user preference, show the first (highest + // * In the absence of any user preference, show the first (highest // relevance section of each type and hide the rest) // * If one or more sections in a type have been explicitly hidden/shown // by the user before then hide all sections in that type and show only diff --git a/src/translations/af.po b/src/translations/af.po index 4463e6473..0a5e0b4df 100644 --- a/src/translations/af.po +++ b/src/translations/af.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Afrikaans (http://www.transifex.com/davidsansome/clementine/language/af/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1307,7 +1307,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Komma geskeide lys van klas:vlak, vlak is 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5603,8 +5603,8 @@ msgstr "Wyeband (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii afstandsbeheer %1: aktief" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/ar.po b/src/translations/ar.po index b5d5df246..fd45c9294 100644 --- a/src/translations/ar.po +++ b/src/translations/ar.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Arabic (http://www.transifex.com/davidsansome/clementine/language/ar/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1311,7 +1311,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "لائحة عناصر مفروقة بفاصلة لـ \"class:level\"، قيمة Level بين 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5607,8 +5607,8 @@ msgstr "Wide band (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "أداة التحكم عن بعد لـ Wii %1: مفعلة" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/be.po b/src/translations/be.po index 75d277745..5641b0281 100644 --- a/src/translations/be.po +++ b/src/translations/be.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Belarusian (http://www.transifex.com/davidsansome/clementine/language/be/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1306,7 +1306,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Падзелены коскамі сьпіс \"кляс:узровень\", дзе ўзровень ад 0 да 3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5602,8 +5602,8 @@ msgstr "Шырокая паласа прапусканьня (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Remote %1: актываваны" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/bg.po b/src/translations/bg.po index 936d4042c..08fb88dec 100644 --- a/src/translations/bg.po +++ b/src/translations/bg.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Bulgarian (http://www.transifex.com/davidsansome/clementine/language/bg/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1310,8 +1310,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Разделен със запетаи списък с class:level, level (ниво) е 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Списък с думи за игнориране при подреждане, разделени със запетайки" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5606,8 +5606,8 @@ msgstr "Wide band (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Remote %1: активирано" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/bn.po b/src/translations/bn.po index 26842f8b9..7311b9ca0 100644 --- a/src/translations/bn.po +++ b/src/translations/bn.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Bengali (http://www.transifex.com/davidsansome/clementine/language/bn/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1304,7 +1304,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5600,7 +5600,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/br.po b/src/translations/br.po index a2d6e1ed1..01f9a402e 100644 --- a/src/translations/br.po +++ b/src/translations/br.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Breton (http://www.transifex.com/davidsansome/clementine/language/br/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1309,7 +1309,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Listenn dispartiet gant ur virgulenn eus klas:live, live etre 0 ha 3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5605,8 +5605,8 @@ msgstr "Bandenn ledan (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wiimote %1: gweredekaet" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/bs.po b/src/translations/bs.po index 5dc65a2e7..998e58479 100644 --- a/src/translations/bs.po +++ b/src/translations/bs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Bosnian (http://www.transifex.com/davidsansome/clementine/language/bs/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1302,7 +1302,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5598,7 +5598,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/ca.po b/src/translations/ca.po index 5b2e8d9d3..0a5a2891c 100644 --- a/src/translations/ca.po +++ b/src/translations/ca.po @@ -3,12 +3,12 @@ # This file is distributed under the same license as the Clementine package. # # Translators: -# Fito JB, 2014-2015 -# Fito JB, 2012-2013,2018 -# Fito JB, 2016,2018 -# Fito JB, 2015-2016 -# Fito JB, 2013 -# Fito JB, 2014 +# Adolfo Jayme-Barrientos, 2014-2015 +# Adolfo Jayme-Barrientos, 2012-2013,2018 +# Adolfo Jayme-Barrientos, 2016,2018 +# Adolfo Jayme-Barrientos, 2015-2016 +# Adolfo Jayme-Barrientos, 2013 +# Adolfo Jayme-Barrientos, 2014 # FIRST AUTHOR , 2010 # Juanjo, 2016-2019 # davidsansome , 2013 @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 20:48+0000\n" +"PO-Revision-Date: 2019-08-22 17:31+0000\n" "Last-Translator: Juanjo\n" "Language-Team: Catalan (http://www.transifex.com/davidsansome/clementine/language/ca/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1311,7 +1311,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Llista separada per comes de classe:nivell, el nivell és 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "Llista separada de paraules que s'ignoraran a l'inici de cada cadena quan s'ordeni." #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5607,7 +5607,7 @@ msgstr "Banda ampla (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "Comandament remot Wii %1: activat" #: widgets/osd.cpp:257 diff --git a/src/translations/cs.po b/src/translations/cs.po index cc4be1285..32a6ed7b6 100644 --- a/src/translations/cs.po +++ b/src/translations/cs.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 12:58+0000\n" +"PO-Revision-Date: 2019-08-24 11:05+0000\n" "Last-Translator: fri\n" "Language-Team: Czech (http://www.transifex.com/davidsansome/clementine/language/cs/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1316,7 +1316,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Čárkou oddělený seznam class:level, level je 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "Seznam slov (předpon) oddělených čárkou, která se při řazení mají přehlížet" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5612,7 +5612,7 @@ msgstr "Široké pásmo" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "Wii Remote %1: zapnuto" #: widgets/osd.cpp:257 diff --git a/src/translations/cy.po b/src/translations/cy.po index c3b63a1ed..f61c4568e 100644 --- a/src/translations/cy.po +++ b/src/translations/cy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Welsh (http://www.transifex.com/davidsansome/clementine/language/cy/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1302,7 +1302,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5598,7 +5598,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/da.po b/src/translations/da.po index c3a5bdbb5..8d353faeb 100644 --- a/src/translations/da.po +++ b/src/translations/da.po @@ -25,7 +25,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-05-18 22:33+0000\n" +"PO-Revision-Date: 2019-09-04 13:13+0000\n" "Last-Translator: scootergrisen\n" "Language-Team: Danish (http://www.transifex.com/davidsansome/clementine/language/da/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1320,7 +1320,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Kommasepareret liste af klasse:niveau, niveau er 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "Kommasepareret liste af præfiksord som skal ignoreres ved sortering" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5616,7 +5616,7 @@ msgstr "Wide band (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "Wii Remote %1: aktiveret" #: widgets/osd.cpp:257 diff --git a/src/translations/de.po b/src/translations/de.po index c12b185f8..2a67e66da 100644 --- a/src/translations/de.po +++ b/src/translations/de.po @@ -20,7 +20,7 @@ # daschuer , 2012 # Eduard Braun , 2015-2016 # El_Zorro_Loco , 2011-2012 -# Ettore Atalan , 2014-2018 +# Ettore Atalan , 2014-2019 # FIRST AUTHOR , 2010 # geroldmittelstaedt , 2012 # geroldmittelstaedt , 2012 @@ -63,8 +63,8 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" -"Last-Translator: hatstand \n" +"PO-Revision-Date: 2019-08-22 13:58+0000\n" +"Last-Translator: Ettore Atalan \n" "Language-Team: German (http://www.transifex.com/davidsansome/clementine/language/de/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -1358,7 +1358,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Komma getrennte Liste mit »class:level« (Level ist 0-3)" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -1634,7 +1634,7 @@ msgstr "Die Datenbank ist beschädigt. Bitte https://github.com/clementine-playe #: ../bin/src/ui_episodeinfowidget.h:133 msgid "Date" -msgstr "" +msgstr "Datum" #: playlist/playlist.cpp:1432 ../bin/src/ui_edittagdialog.h:715 msgid "Date created" @@ -3283,7 +3283,7 @@ msgstr "Bibliothek auf Änderungen überwachen" #: core/song.cpp:460 msgid "Monkey's Audio" -msgstr "" +msgstr "Monkey's Audio" #: ../bin/src/ui_playbacksettingspage.h:372 msgid "Mono playback" @@ -5654,8 +5654,8 @@ msgstr "Breitband (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii-Fernbedienung %1 aktiviert" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format @@ -5985,7 +5985,7 @@ msgstr "neueste zuerst" #: smartplaylists/searchterm.cpp:265 msgid "not empty" -msgstr "" +msgstr "nicht leer" #: smartplaylists/searchterm.cpp:261 msgid "not equals" diff --git a/src/translations/el.po b/src/translations/el.po index 4f2263091..2f7701a55 100644 --- a/src/translations/el.po +++ b/src/translations/el.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-13 04:29+0000\n" +"PO-Revision-Date: 2019-08-23 03:57+0000\n" "Last-Translator: Dimitrios Glentadakis \n" "Language-Team: Greek (http://www.transifex.com/davidsansome/clementine/language/el/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1319,7 +1319,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Λίστα χωρισμένη με κόμμα από class:level, το level είναι 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "Κατάστιχο με προθέματα διαχωρισμένα με κόμμα για αγνόηση κατά την ταξινόμηση" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5615,7 +5615,7 @@ msgstr "Ευρεία ζώνη (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "Χειριστήριο Wii %1: ενεργοποιήθηκε" #: widgets/osd.cpp:257 diff --git a/src/translations/en_CA.po b/src/translations/en_CA.po index e7912d5fc..459ba0af9 100644 --- a/src/translations/en_CA.po +++ b/src/translations/en_CA.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: English (Canada) (http://www.transifex.com/davidsansome/clementine/language/en_CA/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1304,7 +1304,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Comma separated list of class:level, level is 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5600,7 +5600,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/en_GB.po b/src/translations/en_GB.po index 21cf705fd..d3a640bbf 100644 --- a/src/translations/en_GB.po +++ b/src/translations/en_GB.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the Clementine package. # # Translators: -# Andi Chandler , 2015-2017 +# Andi Chandler , 2015-2017,2019 # davidsansome , 2010 # Eilidh Martin , 2017 # Luke Hollins , 2015 msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" -"Last-Translator: hatstand \n" +"PO-Revision-Date: 2019-09-13 12:07+0000\n" +"Last-Translator: Andi Chandler \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/davidsansome/clementine/language/en_GB/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -344,7 +344,7 @@ msgid "" "played in the last 180 minutes.

Available fields: %1.

" -msgstr "" +msgstr "

Prefix a word with a field name to limit the search to that field, e.g. artist:Bode searches the library for all artists that contain the word Bode, playcount:>=2 searches the library for songs played at least twice, lastplayed:<1h30m searches the library for songs played in the last 180 minutes.

Available fields: %1.

" #: ../bin/src/ui_librarysettingspage.h:198 msgid "" @@ -397,7 +397,7 @@ msgstr "A song will be included in the playlist if it matches these conditions." #: ../bin/src/ui_behavioursettingspage.h:417 msgid "A&utomatic" -msgstr "" +msgstr "A&utomatic" #: smartplaylists/searchterm.cpp:396 msgid "A-Z" @@ -470,7 +470,7 @@ msgstr "Action" #: wiimotedev/wiimotesettingspage.cpp:103 msgid "Activate/Deactivate Wii Remote" -msgstr "" +msgstr "Activate/Deactivate Wii Remote" #: internet/podcasts/addpodcastdialog.cpp:63 msgid "Add Podcast" @@ -767,11 +767,11 @@ msgstr "Alongside the originals" #: ../bin/src/ui_behavioursettingspage.h:370 msgid "Alwa&ys hide the main window" -msgstr "" +msgstr "Alwa&ys hide the main window" #: ../bin/src/ui_behavioursettingspage.h:369 msgid "Always show &the main window" -msgstr "" +msgstr "Always show &the main window" #: ../bin/src/ui_behavioursettingspage.h:384 #: ../bin/src/ui_behavioursettingspage.h:404 @@ -863,7 +863,7 @@ msgstr "Artist's initial" #: ../bin/src/ui_behavioursettingspage.h:420 msgid "As&k when saving" -msgstr "" +msgstr "As&k when saving" #: ../bin/src/ui_transcodedialog.h:225 #: ../bin/src/ui_networkremotesettingspage.h:250 @@ -1305,8 +1305,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Comma separated list of class:level, level is 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "Comma separated list of prefix words to ignore when sorting" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -1542,11 +1542,11 @@ msgstr "Ctrl+Up" #: ../bin/src/ui_queuemanager.h:141 msgid "Ctrl+" -msgstr "" +msgstr "Ctrl+" #: ../bin/src/ui_queuemanager.h:145 msgid "Ctrl+" -msgstr "" +msgstr "Ctrl+" #: ui/equalizer.cpp:110 msgid "Custom" @@ -1581,7 +1581,7 @@ msgstr "Database corruption detected. Please read https://github.com/clementine- #: ../bin/src/ui_episodeinfowidget.h:133 msgid "Date" -msgstr "" +msgstr "Date" #: playlist/playlist.cpp:1432 ../bin/src/ui_edittagdialog.h:715 msgid "Date created" @@ -1601,7 +1601,7 @@ msgstr "De&fault" #: core/commandlineoptions.cpp:165 msgid "Decrease the volume by 4 percent" -msgstr "" +msgstr "Decrease the volume by 4 percent" #: core/commandlineoptions.cpp:167 msgid "Decrease the volume by percent" @@ -1665,7 +1665,7 @@ msgstr "Delete smart playlist" #: core/commandlineoptions.cpp:186 msgid "Delete the currently playing song" -msgstr "" +msgstr "Delete the currently playing song" #: ../bin/src/ui_organisedialog.h:245 msgid "Delete the original files" @@ -2079,7 +2079,7 @@ msgstr "Entire collection" #: internet/podcasts/podcastservice.cpp:532 msgid "Episode information" -msgstr "" +msgstr "Episode information" #: ../bin/src/ui_equalizer.h:162 ../bin/src/ui_mainwindow.h:705 msgid "Equalizer" @@ -2596,7 +2596,7 @@ msgstr "Hardware information is only available while the device is connected." #: ../bin/src/ui_appearancesettingspage.h:325 msgid "Hide playlist filter toolbar" -msgstr "" +msgstr "Hide playlist filter toolbar" #: ../bin/src/ui_transcoderoptionsmp3.h:201 msgid "High" @@ -2614,7 +2614,7 @@ msgstr "High (1024x1024)" #: ui/equalizer.cpp:128 msgid "Hip Hop" -msgstr "" +msgstr "Hip Hop" #: internet/subsonic/subsonicsettingspage.cpp:138 msgid "Host not found, check server URL. Example: http://localhost:4040/" @@ -2666,7 +2666,7 @@ msgstr "Ignore \"The\" in artist names" #: ../bin/src/ui_behavioursettingspage.h:423 msgid "Ignore prefix word(s)" -msgstr "" +msgstr "Ignore prefix word(s)" #: ui/albumcoverchoicecontroller.cpp:44 msgid "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)" @@ -2718,7 +2718,7 @@ msgstr "Incomplete configuration, please ensure all fields are populated." #: core/commandlineoptions.cpp:164 msgid "Increase the volume by 4 percent" -msgstr "" +msgstr "Increase the volume by 4 percent" #: core/commandlineoptions.cpp:166 msgid "Increase the volume by percent" @@ -3230,7 +3230,7 @@ msgstr "Monitor the library for changes" #: core/song.cpp:460 msgid "Monkey's Audio" -msgstr "" +msgstr "Monkey's Audio" #: ../bin/src/ui_playbacksettingspage.h:372 msgid "Mono playback" @@ -3418,7 +3418,7 @@ msgstr "Normal block type" #: ../bin/src/ui_behavioursettingspage.h:428 msgid "Normal duration (at least 4 minutes or half the track length)" -msgstr "" +msgstr "Normal duration (at least 4 minutes or half the track length)" #: playlist/playlistsequence.cpp:203 msgid "Not available while using a dynamic playlist" @@ -3749,11 +3749,11 @@ msgstr "Play if there is nothing already playing" #: library/libraryview.cpp:396 ui/mainwindow.cpp:1815 msgid "Play next" -msgstr "" +msgstr "Play next" #: ui/mainwindow.cpp:1813 msgid "Play selected tracks next" -msgstr "" +msgstr "Play selected tracks next" #: core/commandlineoptions.cpp:178 msgid "Play the th track in the playlist" @@ -3809,13 +3809,13 @@ msgstr "Plugin status:" #: ../bin/src/ui_podcastinfodialog.h:93 msgid "Podcast Information" -msgstr "" +msgstr "Podcast Information" #: internet/podcasts/podcastservice.cpp:437 #: internet/podcasts/podcastservice.cpp:535 #: internet/podcasts/podcastservice.cpp:539 msgid "Podcast information" -msgstr "" +msgstr "Podcast information" #: internet/podcasts/podcastservice.cpp:133 #: ../bin/src/ui_podcastsettingspage.h:250 @@ -3937,7 +3937,7 @@ msgstr "Psychedelic" #: wiimotedev/wiimotesettingspage.cpp:246 msgid "Push Wii Remote button" -msgstr "" +msgstr "Push Wii Remote button" #: ../bin/src/ui_wiimoteshortcutgrabber.h:121 msgid "Push Wiiremote button" @@ -4073,7 +4073,7 @@ msgstr "Remember Wii remote swing" #: ../bin/src/ui_behavioursettingspage.h:371 msgid "Remember from &last time" -msgstr "" +msgstr "Remember from &last time" #: ../bin/src/ui_playlistsaveoptionsdialog.h:99 msgid "Remember my choice" @@ -4230,7 +4230,7 @@ msgstr "Run" #: core/song.cpp:456 msgid "SNES SPC700" -msgstr "" +msgstr "SNES SPC700" #: ../bin/src/ui_networkproxysettingspage.h:163 msgid "SOCKS proxy" @@ -4526,7 +4526,7 @@ msgstr "Settings" #: ../bin/src/ui_behavioursettingspage.h:429 msgid "Short duration (at least 1 minute or half the track length)" -msgstr "" +msgstr "Short duration (at least 1 minute or half the track length)" #: ../bin/src/ui_globalshortcutssettingspage.h:172 msgid "Shortcut" @@ -4892,7 +4892,7 @@ msgstr "Stop playback after current track" #: ../bin/src/ui_behavioursettingspage.h:377 msgid "Stop playback if song fails to play" -msgstr "" +msgstr "Stop playback if song fails to play" #: core/globalshortcuts.cpp:56 msgid "Stop playing after current track" @@ -5483,7 +5483,7 @@ msgstr "VBR MP3" #: core/song.cpp:458 msgid "VGM" -msgstr "" +msgstr "VGM" #: ../bin/src/ui_transcoderoptionsspeex.h:231 msgid "Variable bit rate" @@ -5496,7 +5496,7 @@ msgstr "Various artists" #: ../bin/src/ui_subsonicsettingspage.h:136 msgid "Verify Server certificate" -msgstr "" +msgstr "Verify Server certificate" #: ui/about.cpp:35 #, qt-format @@ -5555,7 +5555,7 @@ msgstr "Wav" #: core/song.cpp:450 msgid "WavPack" -msgstr "" +msgstr "WavPack" #: ../bin/src/ui_podcastinfowidget.h:192 msgid "Website" @@ -5571,7 +5571,7 @@ msgstr "When Clementine starts" #: ../bin/src/ui_behavioursettingspage.h:427 msgid "When calculating play counts, use" -msgstr "" +msgstr "When calculating play counts, use" #: ../bin/src/ui_librarysettingspage.h:203 msgid "" @@ -5585,7 +5585,7 @@ msgstr "When saving a playlist, file paths should be" #: ../bin/src/ui_behavioursettingspage.h:422 msgid "When sorting artists, albums and titles" -msgstr "" +msgstr "When sorting artists, albums and titles" #: ../bin/src/ui_globalsearchsettingspage.h:147 msgid "When the list is empty..." @@ -5601,7 +5601,7 @@ msgstr "Wide band (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "Wii Remote %1: activated" #: widgets/osd.cpp:257 @@ -5875,7 +5875,7 @@ msgstr "does not contain" #: smartplaylists/searchterm.cpp:263 msgid "empty" -msgstr "" +msgstr "empty" #: smartplaylists/searchterm.cpp:253 msgid "ends with" @@ -5932,7 +5932,7 @@ msgstr "newest first" #: smartplaylists/searchterm.cpp:265 msgid "not empty" -msgstr "" +msgstr "not empty" #: smartplaylists/searchterm.cpp:261 msgid "not equals" diff --git a/src/translations/eo.po b/src/translations/eo.po index d9f7bb5a7..5e862c01a 100644 --- a/src/translations/eo.po +++ b/src/translations/eo.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the Clementine package. # # Translators: -# Fito JB, 2014 -# Fito JB, 2018 -# Fito JB, 2015-2016 -# Fito JB, 2014 +# Adolfo Jayme-Barrientos, 2014 +# Adolfo Jayme-Barrientos, 2018 +# Adolfo Jayme-Barrientos, 2015-2016 +# Adolfo Jayme-Barrientos, 2014 # FIRST AUTHOR , 2010 msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Esperanto (http://www.transifex.com/davidsansome/clementine/language/eo/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1306,7 +1306,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5602,7 +5602,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/es.po b/src/translations/es.po index 55411b98a..bd6df951d 100644 --- a/src/translations/es.po +++ b/src/translations/es.po @@ -4,12 +4,12 @@ # # Translators: # Coroccotta , 2012 -# Fito JB, 2014 -# Fito JB, 2012-2013,2018 -# Fito JB, 2016-2019 -# Fito JB, 2015-2016 -# Fito JB, 2013 -# Fito JB, 2014 +# Adolfo Jayme-Barrientos, 2014 +# Adolfo Jayme-Barrientos, 2012-2013,2018 +# Adolfo Jayme-Barrientos, 2016-2019 +# Adolfo Jayme-Barrientos, 2015-2016 +# Adolfo Jayme-Barrientos, 2013 +# Adolfo Jayme-Barrientos, 2014 # Adrián Prado Castro , 2013 # Adrián Ramirez Escalante , 2012 # Amaury Ortega , 2018 @@ -43,8 +43,8 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-05-01 16:46+0000\n" -"Last-Translator: Luis Rosety Gil \n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" +"Last-Translator: hatstand \n" "Language-Team: Spanish (http://www.transifex.com/davidsansome/clementine/language/es/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -1338,8 +1338,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Lista separada por comas de la clase:nivel, el nivel es 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Lista de prefijos separados por coma, para ser ignorados durante la ordenación" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5634,8 +5634,8 @@ msgstr "Banda ancha (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Remote %1: activo" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/et.po b/src/translations/et.po index 2823c80a6..477c5cd7e 100644 --- a/src/translations/et.po +++ b/src/translations/et.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Estonian (http://www.transifex.com/davidsansome/clementine/language/et/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1305,7 +1305,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5601,7 +5601,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/eu.po b/src/translations/eu.po index 0f2131086..66e25b65b 100644 --- a/src/translations/eu.po +++ b/src/translations/eu.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Basque (http://www.transifex.com/davidsansome/clementine/language/eu/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1306,7 +1306,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Komaz banaturiko klase-zerrenda:maila, maila 0-3 da" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5602,8 +5602,8 @@ msgstr "Banda zabala (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "%1 Wii urruneko kontrola: aktibaturik" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/fa.po b/src/translations/fa.po index a44621f20..5f823177d 100644 --- a/src/translations/fa.po +++ b/src/translations/fa.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Persian (http://www.transifex.com/davidsansome/clementine/language/fa/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1308,7 +1308,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "لیست مجزا بوسیله‌ی ویرگول از کلاس:طبقه، طبقه ۰-۳ است" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5604,8 +5604,8 @@ msgstr "باند پهن (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "دورکنترل Wii %1: پویا است" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/fi.po b/src/translations/fi.po index 396c894e2..5d4e1ca38 100644 --- a/src/translations/fi.po +++ b/src/translations/fi.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-07-08 23:01+0000\n" +"PO-Revision-Date: 2019-09-07 08:02+0000\n" "Last-Translator: Kimmo Kujansuu \n" "Language-Team: Finnish (http://www.transifex.com/davidsansome/clementine/language/fi/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -187,7 +187,7 @@ msgstr "&Oma" #: ../bin/src/ui_mainwindow.h:739 msgid "&Extras" -msgstr "&Extrat" +msgstr "&Lisäosat" #: ../bin/src/ui_edittagdialog.h:728 msgid "&Grouping" @@ -1308,8 +1308,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Pilkuin erotettu lista luokka:taso -määritteitä, jossa taso on väliltä 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Pilkulla erotettu luettelo etuliitteisistä sanoista, joita ei tarvita lajittelun yhteydessä" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "Pilkuilla erotettu luettelo etuliitteistä, jotka sivuutetaan lajittelun yhteydessä" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5604,7 +5604,7 @@ msgstr "Laajakaistainen (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "Wii-ohjain %1: aktivoitu" #: widgets/osd.cpp:257 diff --git a/src/translations/fr.po b/src/translations/fr.po index d35868fbe..728962f60 100644 --- a/src/translations/fr.po +++ b/src/translations/fr.po @@ -16,7 +16,7 @@ # Clément Jonglez , 2015 # djabal , 2013 # djabal , 2013 -# Doryan R, 2019 +# a270031086f2a0d3514bc0cb507b48f6, 2019 # Etienne G , 2013 # evangeneer , 2012 # Faketag Fakenick <>, 2012 @@ -53,8 +53,8 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-05-29 14:44+0000\n" -"Last-Translator: Doryan R\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" +"Last-Translator: hatstand \n" "Language-Team: French (http://www.transifex.com/davidsansome/clementine/language/fr/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -1348,8 +1348,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Liste séparée par une virgule des classes:niveau, le niveau étant entre 1 et 3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Liste de mots de préfixe à ignorer lors du tri, séparés par des virgules" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5644,8 +5644,8 @@ msgstr "Large bande (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wiimote %1 : activée" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/ga.po b/src/translations/ga.po index 67e835213..831c14f0c 100644 --- a/src/translations/ga.po +++ b/src/translations/ga.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Irish (http://www.transifex.com/davidsansome/clementine/language/ga/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1303,7 +1303,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5599,8 +5599,8 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Remote %1: gníomhachtaithe" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/gl.po b/src/translations/gl.po index 9dce39e55..7f9bf8e79 100644 --- a/src/translations/gl.po +++ b/src/translations/gl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Galician (http://www.transifex.com/davidsansome/clementine/language/gl/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1306,7 +1306,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Lista separada por comas de :, onde o nivel será un valor do 0 ao 3." #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5602,8 +5602,8 @@ msgstr "Banda larga (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Mando %1 da Wii: activado." +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/he.po b/src/translations/he.po index f1517fcb3..428c1f561 100644 --- a/src/translations/he.po +++ b/src/translations/he.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Hebrew (http://www.transifex.com/davidsansome/clementine/language/he/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1309,7 +1309,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "רשימה מופרדת בפסיקים של class:level,level יכול להיות 0-3 " #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5605,8 +5605,8 @@ msgstr "פס רחב (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Remote %1: מופעל" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/he_IL.po b/src/translations/he_IL.po index 83840c575..b02ada5e9 100644 --- a/src/translations/he_IL.po +++ b/src/translations/he_IL.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Hebrew (Israel) (http://www.transifex.com/davidsansome/clementine/language/he_IL/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1301,7 +1301,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5597,7 +5597,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/hi.po b/src/translations/hi.po index c1269a3bd..727608b81 100644 --- a/src/translations/hi.po +++ b/src/translations/hi.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Hindi (http://www.transifex.com/davidsansome/clementine/language/hi/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1304,7 +1304,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5600,7 +5600,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/hr.po b/src/translations/hr.po index fa722492a..024e4fa24 100644 --- a/src/translations/hr.po +++ b/src/translations/hr.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-07-18 19:29+0000\n" -"Last-Translator: gogo \n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" +"Last-Translator: hatstand \n" "Language-Team: Croatian (http://www.transifex.com/davidsansome/clementine/language/hr/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -1306,8 +1306,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Zarezom odvojen popis klasa:razina, razina je 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Zarezom odvojeni popis riječi prefiksa za zanemarivanje prilikom razvrstavanja" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5602,8 +5602,8 @@ msgstr "Širokopojasni (ŠP)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Daljinski upravljač %1: aktiviran" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/hu.po b/src/translations/hu.po index c27b6d263..8ad72d9d0 100644 --- a/src/translations/hu.po +++ b/src/translations/hu.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 13:04+0000\n" +"PO-Revision-Date: 2019-08-22 13:40+0000\n" "Last-Translator: Balázs Meskó \n" "Language-Team: Hungarian (http://www.transifex.com/davidsansome/clementine/language/hu/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1312,7 +1312,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Vesszővel tagolt lista az osztály:szint pároknak, a szintek 0-3 értékeket vehetnek fel" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "A sorrendezésnél mellőzött előtagszavak vesszővel elválasztott listája" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5608,7 +5608,7 @@ msgstr "Széles sávú (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "Wii távvezérlő %1: aktiválva" #: widgets/osd.cpp:257 diff --git a/src/translations/hy.po b/src/translations/hy.po index dd5069f34..d5bb014a3 100644 --- a/src/translations/hy.po +++ b/src/translations/hy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Armenian (http://www.transifex.com/davidsansome/clementine/language/hy/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1302,7 +1302,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5598,7 +5598,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/ia.po b/src/translations/ia.po index 4f6a56873..fd5d6aefe 100644 --- a/src/translations/ia.po +++ b/src/translations/ia.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Interlingua (http://www.transifex.com/davidsansome/clementine/language/ia/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1304,7 +1304,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5600,7 +5600,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/id.po b/src/translations/id.po index ffe7ae984..6cdcec788 100644 --- a/src/translations/id.po +++ b/src/translations/id.po @@ -28,7 +28,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Indonesian (http://www.transifex.com/davidsansome/clementine/language/id/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1323,7 +1323,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Daftar yang dipisahkan koma dari kelas:level, level adalah 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5619,8 +5619,8 @@ msgstr "Pita lebar (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Remote %1: aktif" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/is.po b/src/translations/is.po index 762a150a5..9ccb30a2d 100644 --- a/src/translations/is.po +++ b/src/translations/is.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-11 14:32+0000\n" +"PO-Revision-Date: 2019-09-23 17:53+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic (http://www.transifex.com/davidsansome/clementine/language/is/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1308,8 +1308,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Kommu-aðgreindur listi klasi:stig, stig eru 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Listi, aðgreindur með kommum, yfir orð í forskeytum sem á að hunsa við röðun" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5604,8 +5604,8 @@ msgstr "Breiðtíðni (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii-fjarstýring %1: virkjuð" +msgid "Wii Remote %1: activated" +msgstr "Wii-fjarstýring %1: virk" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/it.po b/src/translations/it.po index 2eea644b9..cf4c9e402 100644 --- a/src/translations/it.po +++ b/src/translations/it.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-11 05:39+0000\n" +"PO-Revision-Date: 2019-08-22 13:13+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/davidsansome/clementine/language/it/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1307,8 +1307,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Elenco separato da virgole di classe:livello, livello è 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Elenco separato da virgole di parole prefisse da ignorare in fase di ordinamento" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "Elenco separato da virgole di parole preefisse da ignorare in fase di ordinamento" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5603,7 +5603,7 @@ msgstr "Banda larga (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "Wii Remote %1: attivato" #: widgets/osd.cpp:257 diff --git a/src/translations/ja.po b/src/translations/ja.po index f0b0ae1fe..47002b750 100644 --- a/src/translations/ja.po +++ b/src/translations/ja.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Japanese (http://www.transifex.com/davidsansome/clementine/language/ja/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1316,7 +1316,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "コンマ区切りの クラス:レベル のリスト、レベルは 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5612,8 +5612,8 @@ msgstr "高速回線 (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii リモコン %1: アクティブになりました" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/ka.po b/src/translations/ka.po index 762b748e2..d84148d33 100644 --- a/src/translations/ka.po +++ b/src/translations/ka.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Georgian (http://www.transifex.com/davidsansome/clementine/language/ka/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1304,7 +1304,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5600,7 +5600,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/kk.po b/src/translations/kk.po index a74c33a8c..03c35a65a 100644 --- a/src/translations/kk.po +++ b/src/translations/kk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Kazakh (http://www.transifex.com/davidsansome/clementine/language/kk/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1302,7 +1302,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5598,7 +5598,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/ko.po b/src/translations/ko.po index e9ae581d6..a77e8b18b 100644 --- a/src/translations/ko.po +++ b/src/translations/ko.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-05-31 09:10+0000\n" -"Last-Translator: 박정규(Jung-Kyu Park) \n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" +"Last-Translator: hatstand \n" "Language-Team: Korean (http://www.transifex.com/davidsansome/clementine/language/ko/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -1317,8 +1317,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "콤마로 클래스:단계의 목록을 나눔, 단계는 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "정렬할 때 콤마로 구분된 접두사는 무시하기" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5613,8 +5613,8 @@ msgstr "광대역 (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii 리모콘 %1: 활성화" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/lt.po b/src/translations/lt.po index 2352ace99..657f60c0b 100644 --- a/src/translations/lt.po +++ b/src/translations/lt.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 13:07+0000\n" +"PO-Revision-Date: 2019-08-24 10:36+0000\n" "Last-Translator: Moo\n" "Language-Team: Lithuanian (http://www.transifex.com/davidsansome/clementine/language/lt/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1307,7 +1307,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Kableliais išskirtas sąrašas iš klasės:lygio, lygis yra nuo 0 iki 3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "Kableliais atskirtų priešdelio žodžių, kurių rikiuojant bus nepaisoma, sąrašas" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5603,7 +5603,7 @@ msgstr "Platus dažnis (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "Wii pultas %1: aktyvuotas" #: widgets/osd.cpp:257 diff --git a/src/translations/lv.po b/src/translations/lv.po index 65e995165..22242e3cc 100644 --- a/src/translations/lv.po +++ b/src/translations/lv.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Latvian (http://www.transifex.com/davidsansome/clementine/language/lv/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1307,7 +1307,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5603,8 +5603,8 @@ msgstr "Plaša josla (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Tālvadība %1: aktivizēta" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/mk_MK.po b/src/translations/mk_MK.po index eb670afc5..a3988884b 100644 --- a/src/translations/mk_MK.po +++ b/src/translations/mk_MK.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Macedonian (Macedonia) (http://www.transifex.com/davidsansome/clementine/language/mk_MK/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1305,7 +1305,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5601,7 +5601,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/mr.po b/src/translations/mr.po index af3df4ff5..d57f53a07 100644 --- a/src/translations/mr.po +++ b/src/translations/mr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Marathi (http://www.transifex.com/davidsansome/clementine/language/mr/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1302,7 +1302,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5598,7 +5598,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/ms.po b/src/translations/ms.po index 6a531183d..d54016bf8 100644 --- a/src/translations/ms.po +++ b/src/translations/ms.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-24 08:35+0000\n" -"Last-Translator: abuyop \n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" +"Last-Translator: hatstand \n" "Language-Team: Malay (http://www.transifex.com/davidsansome/clementine/language/ms/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -1305,8 +1305,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Senarai kelas dipisah dengan tanda koma: aras, aras diantara 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Senarai perkataan awalan diasing dengan tanda koma untuk diabaikan ketika mengisih" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5601,8 +5601,8 @@ msgstr "Jalur lebar (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Remote %1: diaktifkan" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/my.po b/src/translations/my.po index 04db0f4a0..69dd596b8 100644 --- a/src/translations/my.po +++ b/src/translations/my.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Burmese (http://www.transifex.com/davidsansome/clementine/language/my/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1302,7 +1302,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "အမျိုးအစားစာရင်းခွဲခြားရန်ပုဒ်ရပ်: အမျိုးအစား, အမျိုးအစားက ၀-၃" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5598,8 +5598,8 @@ msgstr "ရေဒီယိုလှိုင်းကျယ် (ဒဗလူဘ #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "ဝီအဝေးထိန်း %1: အသက်သွင်းပြီး" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/nb.po b/src/translations/nb.po index e232d91eb..4d3765f8d 100644 --- a/src/translations/nb.po +++ b/src/translations/nb.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/davidsansome/clementine/language/nb/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1307,7 +1307,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Komma-separert liste av klasse:level, level er 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5603,8 +5603,8 @@ msgstr "Bredbånd (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii-kontroller %1: påslått" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/nl.po b/src/translations/nl.po index 51f4bf424..33a8ff9a4 100644 --- a/src/translations/nl.po +++ b/src/translations/nl.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-05-08 15:27+0000\n" -"Last-Translator: dragnadh\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" +"Last-Translator: hatstand \n" "Language-Team: Dutch (http://www.transifex.com/davidsansome/clementine/language/nl/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -1311,7 +1311,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Door komma's gescheiden lijst van van klasse:niveau, het niveau is 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5607,8 +5607,8 @@ msgstr "Snel internet" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Remote %1: geactiveerd" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/oc.po b/src/translations/oc.po index ceefcd163..589394c8e 100644 --- a/src/translations/oc.po +++ b/src/translations/oc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/davidsansome/clementine/language/oc/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1302,7 +1302,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5598,7 +5598,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/pa.po b/src/translations/pa.po index ac5990f67..3ecdaa162 100644 --- a/src/translations/pa.po +++ b/src/translations/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/davidsansome/clementine/language/pa/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1302,7 +1302,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5598,7 +5598,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/pl.po b/src/translations/pl.po index 3c37c5e15..2ca9e6a5f 100644 --- a/src/translations/pl.po +++ b/src/translations/pl.po @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-11 18:45+0000\n" -"Last-Translator: Piotr Wojcik \n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" +"Last-Translator: hatstand \n" "Language-Team: Polish (http://www.transifex.com/davidsansome/clementine/language/pl/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -1322,8 +1322,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Rozdzielona przecinkami lista klasa:poziom, gdzie poziom wynosi 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Oddzielona przecinkami lista prefiksów ignorowana podczas sortowania" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5618,8 +5618,8 @@ msgstr "Szerokie pasmo (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Remote %1: aktywowany" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/pt.po b/src/translations/pt.po index e27e46d4a..f0ba6e1f2 100644 --- a/src/translations/pt.po +++ b/src/translations/pt.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-05-08 23:16+0000\n" -"Last-Translator: Rui \n" +"PO-Revision-Date: 2019-08-25 10:09+0000\n" +"Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese (http://www.transifex.com/davidsansome/clementine/language/pt/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -1310,7 +1310,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Lista de classes separadas por vírgula: nível entre 0 e 3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "Lista de prefixos de palavras a ignorar ao organizar (separadas por vírgula)" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5606,8 +5606,8 @@ msgstr "Banda larga (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Remote %1: ativo" +msgid "Wii Remote %1: activated" +msgstr "Wii Remote %1: ativado" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/pt_BR.po b/src/translations/pt_BR.po index 528ee1f44..6111cad0d 100644 --- a/src/translations/pt_BR.po +++ b/src/translations/pt_BR.po @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 16:30+0000\n" +"PO-Revision-Date: 2019-08-22 13:53+0000\n" "Last-Translator: carlo giusepe tadei valente sasaki \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/davidsansome/clementine/language/pt_BR/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1314,8 +1314,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Lista separada por vírgulas de classe: o nível, o nível é 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Lista separada por vírgulas de prefixos a serem ignorados ao filtrar" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "Lista de prefixos separados por vírgula a serem ignorados ao ordenar" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5610,7 +5610,7 @@ msgstr "Banda larga (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "Wii Remote %1: ativado" #: widgets/osd.cpp:257 diff --git a/src/translations/ro.po b/src/translations/ro.po index f8fbf3b5a..94c3ba929 100644 --- a/src/translations/ro.po +++ b/src/translations/ro.po @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-18 08:58+0000\n" +"PO-Revision-Date: 2019-08-24 18:01+0000\n" "Last-Translator: Daniel Șerbănescu \n" "Language-Team: Romanian (http://www.transifex.com/davidsansome/clementine/language/ro/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1314,8 +1314,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Listă separată prin virgulă de clasă:nivel, nivelul este 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Listă separată prin virgulă de cuvinte prefix de ignorat la sortare" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "Listă de cuvinte prefix separate prin virgulă de ignorat la sortare" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5610,8 +5610,8 @@ msgstr "Bandă largă (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Remote %1: activat" +msgid "Wii Remote %1: activated" +msgstr "Wii Remote %1: activată" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/ru.po b/src/translations/ru.po index 9dbb778f8..8711753e5 100644 --- a/src/translations/ru.po +++ b/src/translations/ru.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 14:35+0000\n" +"PO-Revision-Date: 2019-08-22 12:49+0000\n" "Last-Translator: Andrei Stepanov \n" "Language-Team: Russian (http://www.transifex.com/davidsansome/clementine/language/ru/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1331,8 +1331,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Разделённый запятыми список «класс:уровень», где уровень от 0 до 3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Разделенный запятыми список префиксных слов, которые следует игнорировать при сортировке" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "Разделённый запятыми список префиксных слов, которые следует игнорировать при сортировке" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5627,7 +5627,7 @@ msgstr "Шировая полоса пропускания (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "Пульт Wii %1: активен" #: widgets/osd.cpp:257 diff --git a/src/translations/si_LK.po b/src/translations/si_LK.po index a4bb44f33..998ffd6d1 100644 --- a/src/translations/si_LK.po +++ b/src/translations/si_LK.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/davidsansome/clementine/language/si_LK/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1301,7 +1301,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5597,7 +5597,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/sk.po b/src/translations/sk.po index 3748ebed0..f7717c57a 100644 --- a/src/translations/sk.po +++ b/src/translations/sk.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Slovak (http://www.transifex.com/davidsansome/clementine/language/sk/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1308,7 +1308,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Čiarkou oddelený zoznam class:level, level je 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5604,8 +5604,8 @@ msgstr "Široké pásmo (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii diaľkové %1: aktivované" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/sl.po b/src/translations/sl.po index 6eae5b62e..8cea6a741 100644 --- a/src/translations/sl.po +++ b/src/translations/sl.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Slovenian (http://www.transifex.com/davidsansome/clementine/language/sl/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1308,7 +1308,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Z vejicami ločen seznam razred:raven, raven je 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5604,8 +5604,8 @@ msgstr "Širok pas (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Remote %1: omogočen" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/sr.po b/src/translations/sr.po index fe2a84aa1..8ddd3424a 100644 --- a/src/translations/sr.po +++ b/src/translations/sr.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Serbian (http://www.transifex.com/davidsansome/clementine/language/sr/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1305,7 +1305,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Зарез раздваја листу од класа: ниво, ниво је 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5601,8 +5601,8 @@ msgstr "широки опсег (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii даљински %1: активиран" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/sr@latin.po b/src/translations/sr@latin.po index 783d6e34e..e0cf7c10c 100644 --- a/src/translations/sr@latin.po +++ b/src/translations/sr@latin.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/davidsansome/clementine/language/sr@latin/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1306,8 +1306,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Zarez razdvaja listu od klasa: nivo, nivo je 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Zapetom odvejen spisak prefiksnih reči za zanemarivanje pri sortiranju" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5602,8 +5602,8 @@ msgstr "široki opseg (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii daljinski %1: aktiviran" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/sv.po b/src/translations/sv.po index c530657c5..7027110bb 100644 --- a/src/translations/sv.po +++ b/src/translations/sv.po @@ -30,7 +30,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Swedish (http://www.transifex.com/davidsansome/clementine/language/sv/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1325,7 +1325,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Lista, separerad med komma, över class:level; level är 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5621,8 +5621,8 @@ msgstr "Bredband (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii-kontroll %1: aktiverad" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/te.po b/src/translations/te.po index e3049d768..ae9e990ff 100644 --- a/src/translations/te.po +++ b/src/translations/te.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Telugu (http://www.transifex.com/davidsansome/clementine/language/te/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1302,7 +1302,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5598,7 +5598,7 @@ msgstr "" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "" #: widgets/osd.cpp:257 diff --git a/src/translations/tr.po b/src/translations/tr.po index a57b15f99..bfc74906a 100644 --- a/src/translations/tr.po +++ b/src/translations/tr.po @@ -26,7 +26,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Turkish (http://www.transifex.com/davidsansome/clementine/language/tr/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1321,7 +1321,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Virgülle ayrılmış sınıf:seviye listesi, sınıf 0-3 arasında olabilir " #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5617,8 +5617,8 @@ msgstr "Geniş Bant (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Kumanda %1: etkin" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/tr_TR.po b/src/translations/tr_TR.po index 649b2eae9..abc8c5769 100644 --- a/src/translations/tr_TR.po +++ b/src/translations/tr_TR.po @@ -43,7 +43,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-26 12:48+0000\n" +"PO-Revision-Date: 2019-08-27 12:12+0000\n" "Last-Translator: Demiray Muhterem \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/davidsansome/clementine/language/tr_TR/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1338,8 +1338,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Virgülle ayrılmış sınıf:seviye listesi, sınıf 0-3 arasında olabilir " #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Sıralama sırasında önek kelimelerinin virgülle ayrılmış listesi yok sayılır" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "Sıralama sırasında yoksayılacak virgülle ayrılmış önek kelimelerin listesi" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5634,7 +5634,7 @@ msgstr "Geniş Bant (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "Wii Kumanda %1: etkin" #: widgets/osd.cpp:257 diff --git a/src/translations/uk.po b/src/translations/uk.po index 61a7920c4..edf081b2e 100644 --- a/src/translations/uk.po +++ b/src/translations/uk.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 13:00+0000\n" +"PO-Revision-Date: 2019-08-22 13:03+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian (http://www.transifex.com/davidsansome/clementine/language/uk/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1304,8 +1304,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Список, розділений комами, виду клас:рівень, рівень може бути від 0 до 3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "Список відокремлених комами слів-префіксів, які слід ігнорувати при упорядкуванні" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "Список відокремлених комами слів-префіксів, ігнорованих при упорядкуванні" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5600,7 +5600,7 @@ msgstr "Широка смуга (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" +msgid "Wii Remote %1: activated" msgstr "Wii Remote %1: активовано" #: widgets/osd.cpp:257 diff --git a/src/translations/uz.po b/src/translations/uz.po index 08c00f135..5626aab54 100644 --- a/src/translations/uz.po +++ b/src/translations/uz.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Uzbek (http://www.transifex.com/davidsansome/clementine/language/uz/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1303,7 +1303,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5599,8 +5599,8 @@ msgstr "Keng band (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii Remote %1: yoqilgan" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/vi.po b/src/translations/vi.po index 317f1e961..b2df537a6 100644 --- a/src/translations/vi.po +++ b/src/translations/vi.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Vietnamese (http://www.transifex.com/davidsansome/clementine/language/vi/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1308,7 +1308,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "Dấu phẩy phân cách danh sách lớp:mức độ, mức độ từ 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5604,8 +5604,8 @@ msgstr "Băng rộng (Wb)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Tay cầm Wii %1: đã kích hoạt" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/zh_CN.po b/src/translations/zh_CN.po index 2a59cbc18..a1491f681 100644 --- a/src/translations/zh_CN.po +++ b/src/translations/zh_CN.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-05-18 13:57+0000\n" -"Last-Translator: zhineng404 \n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" +"Last-Translator: hatstand \n" "Language-Team: Chinese (China) (http://www.transifex.com/davidsansome/clementine/language/zh_CN/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -1316,8 +1316,8 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "class:level 列表用逗号分隔,level 范围 0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" -msgstr "在排序时忽略逗号前缀的列表" +msgid "Comma separated list of prefix words to ignore when sorting" +msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 #: ui/organisedialog.cpp:79 ../bin/src/ui_edittagdialog.h:718 @@ -5612,8 +5612,8 @@ msgstr "宽带 (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii 遥控器 %1:活动" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/translations/zh_TW.po b/src/translations/zh_TW.po index 27c42e00e..62d3fc8ed 100644 --- a/src/translations/zh_TW.po +++ b/src/translations/zh_TW.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Clementine Music Player\n" -"PO-Revision-Date: 2019-04-10 10:30+0000\n" +"PO-Revision-Date: 2019-08-22 10:45+0000\n" "Last-Translator: hatstand \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/davidsansome/clementine/language/zh_TW/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1305,7 +1305,7 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "用逗號化分類別清單:等級為0-3" #: ../bin/src/ui_behavioursettingspage.h:425 -msgid "Comma seperated list of prefix words to ignore when sorting" +msgid "Comma separated list of prefix words to ignore when sorting" msgstr "" #: playlist/playlist.cpp:1435 smartplaylists/searchterm.cpp:384 @@ -5601,8 +5601,8 @@ msgstr "寬頻 (WB)" #: widgets/osd.cpp:245 #, qt-format -msgid "Wii Remote %1: actived" -msgstr "Wii 遙控器 %1 :起作用的" +msgid "Wii Remote %1: activated" +msgstr "" #: widgets/osd.cpp:257 #, qt-format diff --git a/src/ui/behavioursettingspage.ui b/src/ui/behavioursettingspage.ui index 88567d8dd..38931124d 100644 --- a/src/ui/behavioursettingspage.ui +++ b/src/ui/behavioursettingspage.ui @@ -463,7 +463,7 @@ - Comma seperated list of prefix words to ignore when sorting + Comma separated list of prefix words to ignore when sorting diff --git a/src/ui/mainwindow.cpp b/src/ui/mainwindow.cpp index 28cac46a9..526f1d899 100644 --- a/src/ui/mainwindow.cpp +++ b/src/ui/mainwindow.cpp @@ -939,7 +939,7 @@ MainWindow::MainWindow(Application* app, SystemTrayIcon* tray_icon, OSD* osd, // Load theme // This is tricky: we need to save the default/system palette now, before - // loading user preferred theme (which will overide it), to be able to restore + // loading user preferred theme (which will override it), to be able to restore // it later const_cast(Appearance::kDefaultPalette) = QApplication::palette(); app_->appearance()->LoadUserTheme(); @@ -1545,7 +1545,7 @@ void MainWindow::UpdateTrackPosition() { << ", scrobble point:" << scrobble_point << ", lastfm status:" << playlist->get_lastfm_status() << ", play count point:" << play_count_point - << ", is local libary item:" << item->IsLocalLibraryItem() + << ", is local library item:" << item->IsLocalLibraryItem() << ", playlist have incremented playcount: " << playlist->have_incremented_playcount(); diff --git a/src/widgets/osd.cpp b/src/widgets/osd.cpp index 77178a145..7cd74dfbf 100644 --- a/src/widgets/osd.cpp +++ b/src/widgets/osd.cpp @@ -240,7 +240,7 @@ void OSD::CallFinished(QDBusPendingCallWatcher*) {} void OSD::WiiremoteActived(int id) { ShowMessage(QString(tr("%1: Wiimotedev module")) .arg(QCoreApplication::applicationName()), - tr("Wii Remote %1: actived").arg(QString::number(id))); + tr("Wii Remote %1: activated").arg(QString::number(id))); } void OSD::WiiremoteDeactived(int id) { diff --git a/tests/librarybackend_test.cpp b/tests/librarybackend_test.cpp index 8d3f70a49..99f7cdb7d 100644 --- a/tests/librarybackend_test.cpp +++ b/tests/librarybackend_test.cpp @@ -288,7 +288,7 @@ TEST_F(SingleSong, DeleteSongs) { EXPECT_EQ("Title", songs_deleted[0].title()); EXPECT_EQ(1, songs_deleted[0].id()); - // Check we can't retreive that song any more + // Check we can't retrieve that song any more Song song = backend_->GetSongById(1); EXPECT_FALSE(song.is_valid()); EXPECT_EQ(-1, song.id());