Merge remote-tracking branch 'origin/master' into qt5
This commit is contained in:
commit
cb6cd7c485
499
.circleci/config.yml
Normal file
499
.circleci/config.yml
Normal file
@ -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
|
@ -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
|
||||
|
@ -63,11 +63,11 @@
|
||||
<provider name="genius.com" charset="utf-8" url="https://www.genius.com/{artist}-{title}-lyrics">
|
||||
<urlFormat replace=",._@!#%^*+;\/"'()[]" with=""/>
|
||||
<urlFormat replace=" :" with="-"/>
|
||||
<!-- When $ is used as the dollar sign it is ommitted from the url
|
||||
<!-- When $ is used as the dollar sign it is omitted from the url
|
||||
When $ is used instead of 's',
|
||||
in some cases it is replaced by 's'(Too $hort -> too-short)
|
||||
in other cases it is ommited ($uicideboy$ -> uicideboy)
|
||||
I chose to ommit it though, in some cases it's gonna be problematic -->
|
||||
in other cases it is omitted ($uicideboy$ -> uicideboy)
|
||||
I chose to omit it though, in some cases it's gonna be problematic -->
|
||||
<urlFormat replace="$" with=""/>
|
||||
<urlFormat replace="ÄÂÀÁÃäâàáã" with="a"/>
|
||||
<urlFormat replace="ËÊÈÉëêèé" with="e"/>
|
||||
|
2
dist/cpplint.py
vendored
2
dist/cpplint.py
vendored
@ -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.')
|
||||
|
2
dist/format.py
vendored
2
dist/format.py
vendored
@ -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:
|
||||
|
@ -137,7 +137,7 @@ message SongMetadata {
|
||||
optional Type type = 22;
|
||||
}
|
||||
|
||||
// Playlist informations
|
||||
// Playlist information
|
||||
message Playlist {
|
||||
optional int32 id = 1;
|
||||
optional string name = 2;
|
||||
|
@ -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) {}
|
||||
|
||||
|
@ -18,21 +18,20 @@
|
||||
#ifndef GOOGLEDRIVESTREAM_H
|
||||
#define GOOGLEDRIVESTREAM_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QList>
|
||||
#include <QNetworkAccessManager>
|
||||
#include <QObject>
|
||||
#include <QSslError>
|
||||
#include <QUrl>
|
||||
|
||||
#include <google/sparsetable>
|
||||
#include <taglib/tiostream.h>
|
||||
|
||||
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<QNetworkAccessManager> network_;
|
||||
|
||||
google::sparsetable<char> cache_;
|
||||
int num_requests_;
|
||||
|
@ -22,7 +22,6 @@
|
||||
#include <QCoreApplication>
|
||||
#include <QDateTime>
|
||||
#include <QFileInfo>
|
||||
#include <QNetworkAccessManager>
|
||||
#include <QTextCodec>
|
||||
#include <QUrl>
|
||||
#include <QVector>
|
||||
@ -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<CloudStream> stream(new CloudStream(
|
||||
download_url, title, size, authorisation_header, network_));
|
||||
std::unique_ptr<CloudStream> stream(
|
||||
new CloudStream(download_url, title, size, authorisation_header));
|
||||
stream->Precache();
|
||||
std::unique_ptr<TagLib::File> tag;
|
||||
if (mime_type == "audio/mpeg" &&
|
||||
|
@ -21,11 +21,11 @@
|
||||
#include <QByteArray>
|
||||
|
||||
#include <taglib/xiphcomment.h>
|
||||
#include <memory>
|
||||
|
||||
#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<FileRefFactory> factory_;
|
||||
|
||||
const std::string kEmbeddedCover;
|
||||
};
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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
|
||||
|
||||
|
@ -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);
|
||||
|
@ -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()));
|
||||
|
@ -1152,7 +1152,7 @@
|
||||
<doc:doc>
|
||||
<doc:description>
|
||||
<doc:para>
|
||||
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
|
||||
<doc:ref type="property" to="Device:DriveCanDetach">DriveCanDetach</doc:ref>
|
||||
@ -2408,7 +2408,7 @@
|
||||
<quote>BAD_ATTRIBUTE_NOW</quote> (At least one pre-fail attribute is exceeding its threshold now),
|
||||
<quote>BAD_SECTOR_MANY</quote> (Many bad sectors)),
|
||||
<quote>BAD_STATUS</quote> (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
|
||||
<doc:ref type="property" to="Device:DriveAtaSmartTimeCollected">DriveAtaSmartTimeCollected</doc:ref>
|
||||
is greater than zero.
|
||||
|
@ -96,7 +96,7 @@ class Udisks2Lister : public DeviceLister {
|
||||
quint64 capacity;
|
||||
QString dbus_drive_path;
|
||||
|
||||
// Paritition
|
||||
// Partition
|
||||
QString label;
|
||||
QString uuid;
|
||||
quint64 free_space;
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -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();
|
||||
|
@ -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
|
||||
|
@ -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();
|
||||
}
|
||||
|
@ -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) {
|
||||
|
@ -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()));
|
||||
|
||||
|
@ -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
|
||||
|
@ -401,6 +401,8 @@ TagCompleter::TagCompleter(LibraryBackend* backend, Playlist::Column column,
|
||||
future);
|
||||
}
|
||||
|
||||
TagCompleter::~TagCompleter() { model()->deleteLater(); }
|
||||
|
||||
void TagCompleter::ModelReady(QFuture<TagCompletionModel*> future) {
|
||||
TagCompletionModel* model = future.result();
|
||||
setModel(model);
|
||||
|
@ -157,6 +157,7 @@ class TagCompleter : public QCompleter {
|
||||
public:
|
||||
TagCompleter(LibraryBackend* backend, Playlist::Column column,
|
||||
QLineEdit* editor);
|
||||
~TagCompleter();
|
||||
|
||||
private slots:
|
||||
void ModelReady(QFuture<TagCompletionModel*> future);
|
||||
|
@ -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());
|
||||
}
|
||||
|
@ -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()) {
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <EMAIL@ADDRESS>, 2010
|
||||
# Juanjo, 2016-2019
|
||||
# davidsansome <me@davidsansome.com>, 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
|
||||
|
@ -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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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
|
||||
|
@ -20,7 +20,7 @@
|
||||
# daschuer <daschuer@gmx.de>, 2012
|
||||
# Eduard Braun <eduard.braun2@gmx.de>, 2015-2016
|
||||
# El_Zorro_Loco <the.crazy.zorro@googlemail.com>, 2011-2012
|
||||
# Ettore Atalan <atalanttore@googlemail.com>, 2014-2018
|
||||
# Ettore Atalan <atalanttore@googlemail.com>, 2014-2019
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010
|
||||
# geroldmittelstaedt <gerold.mittelstaedt@googlemail.com>, 2012
|
||||
# geroldmittelstaedt <gerold.mittelstaedt@googlemail.com>, 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 <john.maguire@gmail.com>\n"
|
||||
"PO-Revision-Date: 2019-08-22 13:58+0000\n"
|
||||
"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\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"
|
||||
|
@ -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 <dglent@free.fr>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -3,15 +3,15 @@
|
||||
# This file is distributed under the same license as the Clementine package.
|
||||
#
|
||||
# Translators:
|
||||
# Andi Chandler <andi@gowling.com>, 2015-2017
|
||||
# Andi Chandler <andi@gowling.com>, 2015-2017,2019
|
||||
# davidsansome <me@davidsansome.com>, 2010
|
||||
# Eilidh Martin <maxqueue93+github@gmail.com>, 2017
|
||||
# Luke Hollins <luke@farcry.ca>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Clementine Music Player\n"
|
||||
"PO-Revision-Date: 2019-04-10 10:30+0000\n"
|
||||
"Last-Translator: hatstand <john.maguire@gmail.com>\n"
|
||||
"PO-Revision-Date: 2019-09-13 12:07+0000\n"
|
||||
"Last-Translator: Andi Chandler <andi@gowling.com>\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.</p><p><span style=\" font-"
|
||||
"weight:600;\">Available fields: </span><span style=\" font-"
|
||||
"style:italic;\">%1</span>.</p></body></html>"
|
||||
msgstr ""
|
||||
msgstr "<html><head/><body><p>Prefix a word with a field name to limit the search to that field, e.g. <span style=\" font-weight:600;\">artist:</span><span style=\" font-style:italic;\">Bode</span> searches the library for all artists that contain the word Bode, <span style=\" font-weight:600;\">playcount:</span><span style=\" font-style:italic;\">>=2</span> searches the library for songs played at least twice, <span style=\" font-weight:600;\">lastplayed:</span><<span style=\" font-style:italic;\">1h30m</span> searches the library for songs played in the last 180 minutes.</p><p><span style=\" font-weight:600;\">Available fields: </span><span style=\" font-style:italic;\">%1</span>.</p></body></html>"
|
||||
|
||||
#: ../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 <value> 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 <value> 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 <n>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"
|
||||
|
@ -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 <EMAIL@ADDRESS>, 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 <john.maguire@gmail.com>\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
|
||||
|
@ -4,12 +4,12 @@
|
||||
#
|
||||
# Translators:
|
||||
# Coroccotta <adiazubierna@gmail.com>, 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 <adrian.prado@gmail.com>, 2013
|
||||
# Adrián Ramirez Escalante <buried.prophet@gmail.com>, 2012
|
||||
# Amaury Ortega <amauryocortega@gmail.com>, 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 <luis.rosety@gmail.com>\n"
|
||||
"PO-Revision-Date: 2019-08-22 10:45+0000\n"
|
||||
"Last-Translator: hatstand <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <mrkujansuu@gmail.com>\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
|
||||
|
@ -16,7 +16,7 @@
|
||||
# Clément Jonglez <clement.jonglez@isae.fr>, 2015
|
||||
# djabal <djabal@eastblue.net>, 2013
|
||||
# djabal <djabal@eastblue.net>, 2013
|
||||
# Doryan R, 2019
|
||||
# a270031086f2a0d3514bc0cb507b48f6, 2019
|
||||
# Etienne G <etn2010@gmail.com>, 2013
|
||||
# evangeneer <mathieu@evangeneer.net>, 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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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 <clase>:<nivel>, 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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <trebelnik2@gmail.com>\n"
|
||||
"PO-Revision-Date: 2019-08-22 10:45+0000\n"
|
||||
"Last-Translator: hatstand <john.maguire@gmail.com>\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
|
||||
|
@ -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ó <meskobalazs@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <sv1@fellsnet.is>\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
|
||||
|
@ -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 <vinx.reale@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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) <bagjunggyu@gmail.com>\n"
|
||||
"PO-Revision-Date: 2019-08-22 10:45+0000\n"
|
||||
"Last-Translator: hatstand <john.maguire@gmail.com>\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
|
||||
|
@ -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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <abuyop@gmail.com>\n"
|
||||
"PO-Revision-Date: 2019-08-22 10:45+0000\n"
|
||||
"Last-Translator: hatstand <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <pwwpww@gmail.com>\n"
|
||||
"PO-Revision-Date: 2019-08-22 10:45+0000\n"
|
||||
"Last-Translator: hatstand <john.maguire@gmail.com>\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
|
||||
|
@ -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 <xymarior@yandex.com>\n"
|
||||
"PO-Revision-Date: 2019-08-25 10:09+0000\n"
|
||||
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\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
|
||||
|
@ -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 <carlo.gt.valente@gmail.com>\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
|
||||
|
@ -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 <daniel@serbanescu.dk>\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
|
||||
|
@ -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 <adem4ik@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <mdemiray@msn.com>\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
|
||||
|
@ -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 <yurchor@ukr.net>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -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 <zhinengge@gmail.com>\n"
|
||||
"PO-Revision-Date: 2019-08-22 10:45+0000\n"
|
||||
"Last-Translator: hatstand <john.maguire@gmail.com>\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
|
||||
|
@ -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 <john.maguire@gmail.com>\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
|
||||
|
@ -463,7 +463,7 @@
|
||||
<item>
|
||||
<widget class="QLineEdit" name="sort_ignore_prefix_list">
|
||||
<property name="toolTip">
|
||||
<string>Comma seperated list of prefix words to ignore when sorting</string>
|
||||
<string>Comma separated list of prefix words to ignore when sorting</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -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<QPalette&>(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();
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user