Add a new smart playlist wizard. Doesn't do anything yet except look pretty.

This commit is contained in:
David Sansome 2010-10-24 23:46:05 +00:00
parent f8fd0e578c
commit 5d9e43bc14
51 changed files with 4646 additions and 6 deletions

View File

@ -281,5 +281,6 @@
<file>icons/22x22/folder.png</file>
<file>icons/32x32/folder.png</file>
<file>icons/48x48/folder.png</file>
<file>smartplaylistsearchterm.css</file>
</qresource>
</RCC>

View File

@ -0,0 +1,41 @@
#frame {
border: 1px solid palette(mid);
border-radius: 5px;
}
#container {
margin: 2px;
}
#remove {
border-top-left-radius: 0px;
border-top-right-radius: 5px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 5px;
border-left: 1px solid palette(mid);
background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
stop:0 %light,
stop:0.4 %light,
stop:0.6 %dark,
stop:1 %dark);
margin-left: 5px;
padding: 5px;
}
#remove:hover {
background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
stop:0 %light2,
stop:0.4 %light2,
stop:0.6 %base,
stop:1 %base);
}
#remove:pressed {
background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
stop:0 %base,
stop:0.4 %base,
stop:0.6 %light2,
stop:1 %light2);
}

View File

@ -133,7 +133,10 @@ set(SOURCES
smartplaylists/playlistgeneratorinserter.cpp
smartplaylists/smartplaylistcontainer.cpp
smartplaylists/smartplaylistmodel.cpp
smartplaylists/smartplaylistsearchterm.cpp
smartplaylists/smartplaylistsearchtermwidget.cpp
smartplaylists/smartplaylistview.cpp
smartplaylists/smartplaylistwizard.cpp
smartplaylists/queryplaylistgenerator.cpp
songinfo/artistinfoview.cpp
@ -289,7 +292,9 @@ set(HEADERS
smartplaylists/playlistgeneratorinserter.h
smartplaylists/smartplaylistcontainer.h
smartplaylists/smartplaylistmodel.h
smartplaylists/smartplaylistsearchtermwidget.h
smartplaylists/smartplaylistview.h
smartplaylists/smartplaylistwizard.h
songinfo/artistinfoview.h
songinfo/collapsibleinfoheader.h
@ -371,6 +376,8 @@ set(UI
radio/radioviewcontainer.ui
smartplaylists/smartplaylistcontainer.ui
smartplaylists/smartplaylistsearchtermwidget.ui
smartplaylists/smartplaylistwizard.ui
songinfo/lyricsettings.ui

View File

@ -188,6 +188,11 @@ bool Copy(QIODevice* source, QIODevice* destination) {
return true;
}
QString ColorToRgba(const QColor& c) {
return QString("rgba(%1, %2, %3, %4)")
.arg(c.red()).arg(c.green()).arg(c.blue()).arg(c.alpha());
}
} // namespace

View File

@ -17,6 +17,7 @@
#ifndef UTILITIES_H
#define UTILITIES_H
#include <QColor>
#include <QLocale>
#include <QString>
@ -30,6 +31,8 @@ namespace Utilities {
QString WordyTime(quint64 seconds);
QString Ago(int seconds_since_epoch, const QLocale& locale);
QString ColorToRgba(const QColor& color);
quint64 FileSystemCapacity(const QString& path);
quint64 FileSystemFreeSpace(const QString& path);

View File

@ -507,7 +507,6 @@ Qt::ItemFlags Playlist::flags(const QModelIndex &index) const {
}
QStringList Playlist::mimeTypes() const {
qDebug() << __PRETTY_FUNCTION__;
return QStringList() << "text/uri-list" << kRowsMimetype
<< SmartPlaylistModel::kMimeType;
}

View File

@ -16,6 +16,7 @@
#include "smartplaylistcontainer.h"
#include "smartplaylistmodel.h"
#include "smartplaylistwizard.h"
#include "ui_smartplaylistcontainer.h"
#include "playlist/playlistmanager.h"
#include "ui/iconloader.h"
@ -25,11 +26,15 @@ SmartPlaylistContainer::SmartPlaylistContainer(QWidget *parent)
ui_(new Ui_SmartPlaylistContainer),
first_show_(true),
model_(new SmartPlaylistModel(this)),
library_(NULL),
playlist_manager_(NULL)
{
ui_->setupUi(this);
connect(ui_->view, SIGNAL(Play(QModelIndex,bool,bool)), SLOT(Play(QModelIndex,bool,bool)));
connect(ui_->view, SIGNAL(NewSmartPlaylist()), SLOT(NewSmartPlaylist()));
connect(ui_->add, SIGNAL(clicked()), SLOT(NewSmartPlaylist()));
ui_->view->setModel(model_);
}
@ -39,6 +44,7 @@ SmartPlaylistContainer::~SmartPlaylistContainer() {
}
void SmartPlaylistContainer::set_library(LibraryBackend* library) {
library_ = library;
model_->set_library(library);
}
@ -59,3 +65,8 @@ void SmartPlaylistContainer::Play(const QModelIndex& index, bool as_new, bool cl
playlist_manager_->PlaySmartPlaylist(generator, as_new, clear);
}
void SmartPlaylistContainer::NewSmartPlaylist() {
SmartPlaylistWizard* wizard = new SmartPlaylistWizard(library_, this);
wizard->show();
}

View File

@ -43,12 +43,14 @@ protected:
private slots:
void Play(const QModelIndex& index, bool as_new, bool clear);
void NewSmartPlaylist();
private:
Ui_SmartPlaylistContainer* ui_;
bool first_show_;
SmartPlaylistModel* model_;
LibraryBackend* library_;
PlaylistManager* playlist_manager_;
};

View File

@ -0,0 +1,180 @@
/* This file is part of Clementine.
Clementine is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Clementine is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#include "smartplaylistsearchterm.h"
#include "playlist/playlist.h"
SmartPlaylistSearchTerm::SmartPlaylistSearchTerm()
{
}
QString SmartPlaylistSearchTerm::ToSql() const {
const QString col = FieldColumnName(field_);
QString value = value_.toString();
value.replace('\'', "''");
switch (operator_) {
case Op_Contains:
return col + " LIKE '%" + value + "%'";
case Op_NotContains:
return col + " NOT LIKE '%" + value + "%'";
case Op_StartsWith:
return col + " LIKE '" + value + "%'";
case Op_EndsWith:
return col + " LIKE '%" + value + "'";
case Op_Equals:
return col + " LIKE '" + value + "'";
case Op_GreaterThan:
return col + " > '" + value + "'";
case Op_LessThan:
return col + " < '" + value + "'";
}
return QString();
}
SmartPlaylistSearchTerm::Type SmartPlaylistSearchTerm::TypeOf(Field field) {
switch (field) {
case Field_Length:
return Type_Time;
case Field_Track:
case Field_Disc:
case Field_Year:
case Field_BPM:
case Field_Bitrate:
case Field_Samplerate:
case Field_Filesize:
case Field_PlayCount:
case Field_SkipCount:
return Type_Number;
case Field_LastPlayed:
case Field_DateCreated:
case Field_DateModified:
return Type_Date;
case Field_Rating:
return Type_Rating;
default:
return Type_Text;
}
}
OperatorList SmartPlaylistSearchTerm::OperatorsForType(Type type) {
switch (type) {
case Type_Text:
return OperatorList() << Op_Contains << Op_NotContains << Op_Equals
<< Op_StartsWith << Op_EndsWith;
default:
return OperatorList() << Op_Equals << Op_GreaterThan << Op_LessThan;
}
}
QString SmartPlaylistSearchTerm::OperatorText(Type type, Operator op) {
if (type == Type_Date) {
switch (op) {
case Op_GreaterThan: return QObject::tr("after");
case Op_LessThan: return QObject::tr("before");
case Op_Equals: return QObject::tr("on");
default: return QString();
}
}
switch (op) {
case Op_Contains: return QObject::tr("contains");
case Op_NotContains: return QObject::tr("does not contain");
case Op_StartsWith: return QObject::tr("starts with");
case Op_EndsWith: return QObject::tr("ends with");
case Op_GreaterThan: return QObject::tr("greater than");
case Op_LessThan: return QObject::tr("less than");
case Op_Equals: return QObject::tr("equals");
}
return QString();
}
QString SmartPlaylistSearchTerm::FieldColumnName(Field field) {
switch (field) {
case Field_Length: return "length";
case Field_Track: return "track";
case Field_Disc: return "disc";
case Field_Year: return "year";
case Field_BPM: return "bpm";
case Field_Bitrate: return "bitrate";
case Field_Samplerate: return "samplerate";
case Field_Filesize: return "filesize";
case Field_PlayCount: return "playcount";
case Field_SkipCount: return "skipcount";
case Field_LastPlayed: return "lastplayed";
case Field_DateCreated: return "ctime";
case Field_DateModified:return "mtime";
case Field_Rating: return "rating";
case Field_Title: return "title";
case Field_Artist: return "artist";
case Field_Album: return "album";
case Field_AlbumArtist: return "albumartist";
case Field_Composer: return "composer";
case Field_Genre: return "genre";
case Field_Comment: return "comment";
case FieldCount: Q_ASSERT(0);
}
return QString();
}
QString SmartPlaylistSearchTerm::FieldName(Field field) {
switch (field) {
case Field_Length: return Playlist::column_name(Playlist::Column_Length);
case Field_Track: return Playlist::column_name(Playlist::Column_Track);
case Field_Disc: return Playlist::column_name(Playlist::Column_Disc);
case Field_Year: return Playlist::column_name(Playlist::Column_Year);
case Field_BPM: return Playlist::column_name(Playlist::Column_BPM);
case Field_Bitrate: return Playlist::column_name(Playlist::Column_Bitrate);
case Field_Samplerate: return Playlist::column_name(Playlist::Column_Samplerate);
case Field_Filesize: return Playlist::column_name(Playlist::Column_Filesize);
case Field_PlayCount: return Playlist::column_name(Playlist::Column_PlayCount);
case Field_SkipCount: return Playlist::column_name(Playlist::Column_SkipCount);
case Field_LastPlayed: return Playlist::column_name(Playlist::Column_LastPlayed);
case Field_DateCreated: return Playlist::column_name(Playlist::Column_DateCreated);
case Field_DateModified:return Playlist::column_name(Playlist::Column_DateModified);
case Field_Rating: return Playlist::column_name(Playlist::Column_Rating);
case Field_Title: return Playlist::column_name(Playlist::Column_Title);
case Field_Artist: return Playlist::column_name(Playlist::Column_Artist);
case Field_Album: return Playlist::column_name(Playlist::Column_Album);
case Field_AlbumArtist: return Playlist::column_name(Playlist::Column_AlbumArtist);
case Field_Composer: return Playlist::column_name(Playlist::Column_Composer);
case Field_Genre: return Playlist::column_name(Playlist::Column_Genre);
case Field_Comment: return QObject::tr("Comment");
case FieldCount: Q_ASSERT(0);
}
return QString();
}
QDataStream& operator <<(QDataStream& s, const SmartPlaylistSearchTerm& term) {
s << quint8(term.field_);
s << quint8(term.operator_);
s << term.value_;
return s;
}
QDataStream& operator >>(QDataStream& s, SmartPlaylistSearchTerm& term) {
quint8 field, op;
s >> field >> op >> term.value_;
term.field_ = SmartPlaylistSearchTerm::Field(field);
term.operator_ = SmartPlaylistSearchTerm::Operator(op);
return s;
}

View File

@ -0,0 +1,96 @@
/* This file is part of Clementine.
Clementine is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Clementine is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SMARTPLAYLISTSEARCHTERM_H
#define SMARTPLAYLISTSEARCHTERM_H
#include <QDataStream>
#include <QVariant>
class SmartPlaylistSearchTerm {
public:
SmartPlaylistSearchTerm();
// These values are persisted, so add to the end of the enum only
enum Field {
Field_Title = 0,
Field_Artist,
Field_Album,
Field_AlbumArtist,
Field_Composer,
Field_Length,
Field_Track,
Field_Disc,
Field_Year,
Field_Genre,
Field_BPM,
Field_Bitrate,
Field_Samplerate,
Field_Filesize,
Field_DateCreated,
Field_DateModified,
Field_Rating,
Field_PlayCount,
Field_SkipCount,
Field_LastPlayed,
Field_Comment,
FieldCount
};
// These values are persisted, so add to the end of the enum only
enum Operator {
// For text
Op_Contains = 0,
Op_NotContains,
Op_StartsWith,
Op_EndsWith,
// For numbers
Op_GreaterThan,
Op_LessThan,
// For everything
Op_Equals,
};
enum Type {
Type_Text,
Type_Date,
Type_Time,
Type_Number,
Type_Rating,
};
Field field_;
Operator operator_;
QVariant value_;
QString ToSql() const;
static Type TypeOf(Field field);
static QList<Operator> OperatorsForType(Type type);
static QString OperatorText(Type type, Operator op);
static QString FieldName(Field field);
static QString FieldColumnName(Field field);
};
typedef QList<SmartPlaylistSearchTerm::Operator> OperatorList;
QDataStream& operator <<(QDataStream& s, const SmartPlaylistSearchTerm& term);
QDataStream& operator >>(QDataStream& s, SmartPlaylistSearchTerm& term);
#endif // SMARTPLAYLISTSEARCHTERM_H

View File

@ -0,0 +1,261 @@
/* This file is part of Clementine.
Clementine is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Clementine is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#include "smartplaylistsearchterm.h"
#include "smartplaylistsearchtermwidget.h"
#include "ui_smartplaylistsearchtermwidget.h"
#include "core/utilities.h"
#include "playlist/playlist.h"
#include "playlist/playlistdelegates.h"
#include "ui/iconloader.h"
#include <QFile>
#include <QPainter>
#include <QPropertyAnimation>
#include <QTimer>
#include <QtDebug>
// Exported by QtGui
void qt_blurImage(QPainter *p, QImage &blurImage, qreal radius, bool quality, bool alphaOnly, int transposed = 0);
class SmartPlaylistSearchTermWidget::Overlay : public QWidget {
public:
Overlay(SmartPlaylistSearchTermWidget* parent);
void Grab();
void SetOpacity(float opacity);
float opacity() const { return opacity_; }
static const int kSpacing;
static const int kIconSize;
protected:
void paintEvent(QPaintEvent*);
void mouseReleaseEvent(QMouseEvent*);
private:
SmartPlaylistSearchTermWidget* parent_;
float opacity_;
QString text_;
QPixmap pixmap_;
QPixmap icon_;
};
const int SmartPlaylistSearchTermWidget::Overlay::kSpacing = 6;
const int SmartPlaylistSearchTermWidget::Overlay::kIconSize = 22;
SmartPlaylistSearchTermWidget::SmartPlaylistSearchTermWidget(LibraryBackend* library, QWidget* parent)
: QWidget(parent),
ui_(new Ui_SmartPlaylistSearchTermWidget),
library_(library),
overlay_(NULL),
animation_(new QPropertyAnimation(this, "overlay_opacity", this)),
active_(true)
{
ui_->setupUi(this);
connect(ui_->field, SIGNAL(currentIndexChanged(int)), SLOT(FieldChanged(int)));
// Populate the combo boxes
for (int i=0 ; i<SmartPlaylistSearchTerm::FieldCount ; ++i) {
ui_->field->addItem(SmartPlaylistSearchTerm::FieldName(SmartPlaylistSearchTerm::Field(i)));
ui_->field->setItemData(i, i);
}
ui_->field->model()->sort(0);
// Icons on the buttons
ui_->remove->setIcon(IconLoader::Load("list-remove"));
// Set stylesheet
QFile stylesheet_file(":/smartplaylistsearchterm.css");
stylesheet_file.open(QIODevice::ReadOnly);
QString stylesheet = QString::fromAscii(stylesheet_file.readAll());
const QColor base(222, 97, 97, 128);
stylesheet.replace("%light2", Utilities::ColorToRgba(base.lighter(140)));
stylesheet.replace("%light", Utilities::ColorToRgba(base.lighter(120)));
stylesheet.replace("%dark", Utilities::ColorToRgba(base.darker(120)));
stylesheet.replace("%base", Utilities::ColorToRgba(base));
setStyleSheet(stylesheet);
}
SmartPlaylistSearchTermWidget::~SmartPlaylistSearchTermWidget() {
delete ui_;
}
void SmartPlaylistSearchTermWidget::FieldChanged(int index) {
SmartPlaylistSearchTerm::Field field = SmartPlaylistSearchTerm::Field(
ui_->field->itemData(index).toInt());
SmartPlaylistSearchTerm::Type type = SmartPlaylistSearchTerm::TypeOf(field);
// Populate the operator combo box
ui_->op->clear();
foreach (SmartPlaylistSearchTerm::Operator op, SmartPlaylistSearchTerm::OperatorsForType(type)) {
ui_->op->addItem(SmartPlaylistSearchTerm::OperatorText(type, op));
}
// Show the correct value editor
QWidget* page = NULL;
switch (type) {
case SmartPlaylistSearchTerm::Type_Time: page = ui_->page_time; break;
case SmartPlaylistSearchTerm::Type_Number: page = ui_->page_number; break;
case SmartPlaylistSearchTerm::Type_Date: page = ui_->page_date; break;
case SmartPlaylistSearchTerm::Type_Rating: page = ui_->page_number; break; // TODO
case SmartPlaylistSearchTerm::Type_Text: page = ui_->page_text; break;
}
ui_->value_stack->setCurrentWidget(page);
// Maybe set a tag completer
switch (field) {
case SmartPlaylistSearchTerm::Field_Artist:
new TagCompleter(library_, Playlist::Column_Artist, ui_->value_text);
break;
case SmartPlaylistSearchTerm::Field_Album:
new TagCompleter(library_, Playlist::Column_Album, ui_->value_text);
break;
default:
ui_->value_text->setCompleter(NULL);
}
}
void SmartPlaylistSearchTermWidget::SetActive(bool active) {
active_ = active;
delete overlay_;
overlay_ = NULL;
if (!active) {
overlay_ = new Overlay(this);
}
}
void SmartPlaylistSearchTermWidget::enterEvent(QEvent*) {
if (!overlay_)
return;
animation_->stop();
animation_->setEndValue(1.0);
animation_->setDuration(80);
animation_->start();
}
void SmartPlaylistSearchTermWidget::leaveEvent(QEvent*) {
if (!overlay_)
return;
animation_->stop();
animation_->setEndValue(0.0);
animation_->setDuration(160);
animation_->start();
}
void SmartPlaylistSearchTermWidget::resizeEvent(QResizeEvent* e) {
QWidget::resizeEvent(e);
if (overlay_ && overlay_->isVisible()) {
QTimer::singleShot(0, this, SLOT(Grab()));
}
}
void SmartPlaylistSearchTermWidget::showEvent(QShowEvent* e) {
QWidget::showEvent(e);
if (overlay_) {
QTimer::singleShot(0, this, SLOT(Grab()));
}
}
void SmartPlaylistSearchTermWidget::Grab() {
overlay_->Grab();
}
void SmartPlaylistSearchTermWidget::set_overlay_opacity(float opacity) {
if (overlay_)
overlay_->SetOpacity(opacity);
}
float SmartPlaylistSearchTermWidget::overlay_opacity() const {
return overlay_ ? overlay_->opacity() : 0.0;
}
SmartPlaylistSearchTermWidget::Overlay::Overlay(SmartPlaylistSearchTermWidget* parent)
: QWidget(parent),
parent_(parent),
opacity_(0.0),
text_(tr("Add search term")),
icon_(IconLoader::Load("list-add").pixmap(kIconSize))
{
raise();
setCursor(Qt::PointingHandCursor);
}
void SmartPlaylistSearchTermWidget::Overlay::SetOpacity(float opacity) {
opacity_ = opacity;
update();
}
void SmartPlaylistSearchTermWidget::Overlay::Grab() {
hide();
// Take a "screenshot" of the window
QPixmap pixmap = QPixmap::grabWidget(parent_);
QImage image = pixmap.toImage();
// Blur it
QImage blurred(image.size(), QImage::Format_ARGB32_Premultiplied);
blurred.fill(Qt::transparent);
QPainter blur_painter(&blurred);
qt_blurImage(&blur_painter, image, 10.0, true, false);
blur_painter.end();
pixmap_ = QPixmap::fromImage(blurred);
resize(parent_->size());
show();
update();
}
void SmartPlaylistSearchTermWidget::Overlay::paintEvent(QPaintEvent*) {
QPainter p(this);
// Background
p.fillRect(rect(), palette().window());
// Blurred parent widget
p.setOpacity(0.25 + opacity_ * 0.25);
p.drawPixmap(0, 0, pixmap_);
// Geometry
const QSize contents_size(kIconSize + kSpacing + fontMetrics().width(text_),
qMax(kIconSize, fontMetrics().height()));
const QRect contents(QPoint((width() - contents_size.width()) / 2,
(height() - contents_size.height()) / 2),
contents_size);
const QRect icon(contents.topLeft(), QSize(kIconSize, kIconSize));
const QRect text(icon.right() + kSpacing, icon.top(),
contents.width() - kSpacing - kIconSize,
contents.height());
// Icon and text
p.setOpacity(1.0);
p.drawPixmap(icon, icon_);
p.drawText(text, text_);
}
void SmartPlaylistSearchTermWidget::Overlay::mouseReleaseEvent(QMouseEvent*) {
emit parent_->Clicked();
}

View File

@ -0,0 +1,68 @@
/* This file is part of Clementine.
Clementine is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Clementine is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SMARTPLAYLISTSEARCHTERMWIDGET_H
#define SMARTPLAYLISTSEARCHTERMWIDGET_H
#include <QPushButton>
#include <QWidget>
class LibraryBackend;
class Ui_SmartPlaylistSearchTermWidget;
class QPropertyAnimation;
class SmartPlaylistSearchTermWidget : public QWidget {
Q_OBJECT
Q_PROPERTY(float overlay_opacity
READ overlay_opacity
WRITE set_overlay_opacity);
public:
SmartPlaylistSearchTermWidget(LibraryBackend* library, QWidget* parent);
~SmartPlaylistSearchTermWidget();
void SetActive(bool active);
float overlay_opacity() const;
void set_overlay_opacity(float opacity);
signals:
void Clicked();
protected:
void showEvent(QShowEvent*);
void enterEvent(QEvent*);
void leaveEvent(QEvent*);
void resizeEvent(QResizeEvent*);
private slots:
void FieldChanged(int index);
void Grab();
private:
class Overlay;
friend class Overlay;
Ui_SmartPlaylistSearchTermWidget* ui_;
LibraryBackend* library_;
Overlay* overlay_;
QPropertyAnimation* animation_;
bool active_;
};
#endif // SMARTPLAYLISTSEARCHTERMWIDGET_H

View File

@ -0,0 +1,169 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SmartPlaylistSearchTermWidget</class>
<widget class="QWidget" name="SmartPlaylistSearchTermWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>640</width>
<height>33</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="QFrame" name="frame">
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="QFrame" name="container">
<layout class="QHBoxLayout" name="horizontalLayout">
<property name="spacing">
<number>6</number>
</property>
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="QComboBox" name="field"/>
</item>
<item>
<widget class="QComboBox" name="op"/>
</item>
<item>
<widget class="QStackedWidget" name="value_stack">
<widget class="QWidget" name="page_text">
<layout class="QVBoxLayout" name="verticalLayout_2">
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="QLineEdit" name="value_text">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="page_time">
<layout class="QVBoxLayout" name="verticalLayout_5">
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="QTimeEdit" name="value_time">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="page_number">
<layout class="QVBoxLayout" name="verticalLayout_3">
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="QSpinBox" name="value_number">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="page_date">
<layout class="QVBoxLayout" name="verticalLayout_4">
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="QDateEdit" name="value_date">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="calendarPopup">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QPushButton" name="remove">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>Remove</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>

View File

@ -44,7 +44,7 @@ void SmartPlaylistView::contextMenuEvent(QContextMenuEvent* e) {
tr("Add as new playlist..."), this, SLOT(AddAsNewPlaylist()));
menu_->addSeparator();
new_smart_action_ = menu_->addAction(IconLoader::Load("list-add"),
tr("New smart playlist..."), this, SLOT(NewSmartPlaylist()));
tr("New smart playlist..."), this, SIGNAL(NewSmartPlaylist()));
new_folder_action_ = menu_->addAction(IconLoader::Load("folder-new"),
tr("New folder..."), this, SLOT(NewFolder()));
remove_action_ = menu_->addAction(IconLoader::Load("list-remove"),
@ -78,9 +78,6 @@ void SmartPlaylistView::AddAsNewPlaylist() {
emit Play(menu_index_, true, false);
}
void SmartPlaylistView::NewSmartPlaylist() {
}
void SmartPlaylistView::NewFolder() {
}

View File

@ -30,6 +30,7 @@ public:
signals:
void Play(const QModelIndex& index, bool as_new, bool clear);
void NewSmartPlaylist();
protected:
void contextMenuEvent(QContextMenuEvent*);
@ -38,7 +39,6 @@ private slots:
void Load();
void AddToPlaylist();
void AddAsNewPlaylist();
void NewSmartPlaylist();
void NewFolder();
void Remove();

View File

@ -0,0 +1,47 @@
/* This file is part of Clementine.
Clementine is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Clementine is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#include "smartplaylistsearchtermwidget.h"
#include "smartplaylistwizard.h"
#include "ui_smartplaylistwizard.h"
SmartPlaylistWizard::SmartPlaylistWizard(LibraryBackend* library, QWidget* parent)
: QWizard(parent),
ui_(new Ui_SmartPlaylistWizard),
library_(library)
{
ui_->setupUi(this);
new_search_term_ = new SmartPlaylistSearchTermWidget(library_, this);
new_search_term_->SetActive(false);
connect(new_search_term_, SIGNAL(Clicked()), SLOT(AddSearchTerm()));
search_term_layout_ = new QVBoxLayout(ui_->page_query_search);
search_term_layout_->addWidget(new_search_term_);
search_term_layout_->addStretch();
AddSearchTerm();
}
void SmartPlaylistWizard::AddSearchTerm() {
SmartPlaylistSearchTermWidget* widget =
new SmartPlaylistSearchTermWidget(library_, this);
search_term_layout_->insertWidget(search_terms_.count(), widget);
search_terms_ << widget;
}
SmartPlaylistWizard::~SmartPlaylistWizard() {
delete ui_;
}

View File

@ -0,0 +1,47 @@
/* This file is part of Clementine.
Clementine is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Clementine is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SMARTPLAYLISTWIZARD_H
#define SMARTPLAYLISTWIZARD_H
#include <QWizard>
class LibraryBackend;
class SmartPlaylistSearchTermWidget;
class Ui_SmartPlaylistWizard;
class QVBoxLayout;
class SmartPlaylistWizard : public QWizard {
Q_OBJECT
public:
SmartPlaylistWizard(LibraryBackend* library, QWidget* parent);
~SmartPlaylistWizard();
private slots:
void AddSearchTerm();
private:
Ui_SmartPlaylistWizard* ui_;
LibraryBackend* library_;
QVBoxLayout* search_term_layout_;
QList<SmartPlaylistSearchTermWidget*> search_terms_;
SmartPlaylistSearchTermWidget* new_search_term_;
};
#endif // SMARTPLAYLISTWIZARD_H

View File

@ -26,6 +26,9 @@ msgstr ""
msgid " seconds"
msgstr ""
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr ""
@ -119,6 +122,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr ""
@ -174,6 +188,9 @@ msgstr ""
msgid "Add new folder..."
msgstr "أضف مجلد جديد..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr ""
@ -285,6 +302,9 @@ msgstr ""
msgid "Artist"
msgstr "الفنان"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -388,6 +408,9 @@ msgstr ""
msgid "Choose from the list"
msgstr ""
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr ""
@ -858,6 +881,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "المستوى الأول"
@ -1096,6 +1122,9 @@ msgstr ""
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1111,12 +1140,29 @@ msgstr ""
msgid "Length"
msgstr "المدة"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr ""
msgid "Library advanced grouping"
msgstr ""
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr ""
@ -1347,6 +1393,9 @@ msgstr ""
msgid "Ogg Vorbis"
msgstr ""
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1452,6 +1501,9 @@ msgstr "خيارات قائمة التشغيل"
msgid "Playlist search"
msgstr ""
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1504,6 +1556,9 @@ msgstr ""
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr ""
@ -1645,6 +1700,12 @@ msgstr ""
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "المستوى الثاني"
@ -1726,6 +1787,9 @@ msgstr ""
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr ""
@ -1780,6 +1844,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1798,6 +1865,12 @@ msgstr ""
msgid "Sonogram"
msgstr ""
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "ابدأ قئمة التشغيل اللتي تعمل حالياً"
@ -2114,6 +2187,12 @@ msgstr ""
msgid "Year"
msgstr "السنة"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "سنة - البوم"
@ -2177,19 +2256,46 @@ msgstr ""
msgid "add %n songs"
msgstr "أضِف %n أغاني\\أغنية"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr ""
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr ""
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr ""
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "انقل الأغاني"
msgid "on"
msgstr ""
msgid "options"
msgstr "الخيارات"
@ -2197,6 +2303,9 @@ msgstr "الخيارات"
msgid "remove %n songs"
msgstr "أزِل %n أغاني\\أغنية"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr ""
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr ""
@ -120,6 +123,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr ""
@ -175,6 +189,9 @@ msgstr ""
msgid "Add new folder..."
msgstr ""
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr ""
@ -286,6 +303,9 @@ msgstr ""
msgid "Artist"
msgstr ""
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -389,6 +409,9 @@ msgstr ""
msgid "Choose from the list"
msgstr ""
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr ""
@ -859,6 +882,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr ""
@ -1097,6 +1123,9 @@ msgstr ""
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1112,12 +1141,29 @@ msgstr ""
msgid "Length"
msgstr ""
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr ""
msgid "Library advanced grouping"
msgstr ""
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr ""
@ -1348,6 +1394,9 @@ msgstr ""
msgid "Ogg Vorbis"
msgstr ""
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1453,6 +1502,9 @@ msgstr ""
msgid "Playlist search"
msgstr ""
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1505,6 +1557,9 @@ msgstr ""
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr ""
@ -1646,6 +1701,12 @@ msgstr ""
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr ""
@ -1727,6 +1788,9 @@ msgstr ""
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr ""
@ -1781,6 +1845,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1799,6 +1866,12 @@ msgstr ""
msgid "Sonogram"
msgstr ""
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr ""
@ -2115,6 +2188,12 @@ msgstr ""
msgid "Year"
msgstr ""
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr ""
@ -2178,19 +2257,46 @@ msgstr ""
msgid "add %n songs"
msgstr ""
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr ""
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr ""
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr ""
msgid "less than"
msgstr ""
msgid "move songs"
msgstr ""
msgid "on"
msgstr ""
msgid "options"
msgstr ""
@ -2198,6 +2304,9 @@ msgstr ""
msgid "remove %n songs"
msgstr ""
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr " segons"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 àlbums"
@ -126,6 +129,17 @@ msgstr ""
"remplaçament, aquesta secció no es mostrarà si la fitxa de remplaçament es "
"troba buida.</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -181,6 +195,9 @@ msgstr "Afegir música"
msgid "Add new folder..."
msgstr "Afegir nova carpeta..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Afegir flux..."
@ -294,6 +311,9 @@ msgstr "Estas segur de que vols esborrar el \"%1\" preestablert?"
msgid "Artist"
msgstr "Artista"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -398,6 +418,9 @@ msgstr "Tria el color..."
msgid "Choose from the list"
msgstr "Tria de la llista"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Tria la caràtula manualment"
@ -879,6 +902,9 @@ msgstr "Número de sèrie dels fitxers de sistema"
msgid "Filesystem type"
msgstr "Tipus de sistema de fitxers"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Primer nivell"
@ -1122,6 +1148,9 @@ msgstr "Contrasenya de Last.fm"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1139,12 +1168,29 @@ msgstr ""
msgid "Length"
msgstr "Durada"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Biblioteca"
msgid "Library advanced grouping"
msgstr "Agrupació avançada de la Biblioteca"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "En directe"
@ -1377,6 +1423,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Obrir dispositiu"
@ -1482,6 +1531,9 @@ msgstr "Opcions de la llista de reproducció"
msgid "Playlist search"
msgstr "Buscar llista de reproducció"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1534,6 +1586,9 @@ msgstr "Progrés"
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Qualitat"
@ -1675,6 +1730,12 @@ msgstr "Cercar a Magnatune"
msgid "Search for album covers..."
msgstr "Cercar caratules dels àlbums"
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Segon nivell"
@ -1756,6 +1817,9 @@ msgstr "Mostra un OSD bonic"
msgid "Show above status bar"
msgstr "Mostra sota la barra d'estat"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Mostra a mida completa..."
@ -1810,6 +1874,9 @@ msgstr "Caràtula petita"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1828,6 +1895,12 @@ msgstr ""
msgid "Sonogram"
msgstr ""
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Inicia la llista de reproducció que s'està reproduint"
@ -2154,6 +2227,12 @@ msgstr "Audio Windows Media"
msgid "Year"
msgstr "Any"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Any - Àlbum"
@ -2223,19 +2302,46 @@ msgstr "[clickar per editar]"
msgid "add %n songs"
msgstr "afegeix %n cançons"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "Tempo"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "disc %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kbps"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "moure cançons"
msgid "on"
msgstr ""
msgid "options"
msgstr "opcions"
@ -2243,6 +2349,9 @@ msgstr "opcions"
msgid "remove %n songs"
msgstr "elimina %n cançons"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "atura"

View File

@ -28,6 +28,9 @@ msgstr ""
msgid " seconds"
msgstr " sekund"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr ""
@ -121,6 +124,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -176,6 +190,9 @@ msgstr ""
msgid "Add new folder..."
msgstr "Přidat novou složku..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Přidat proud..."
@ -287,6 +304,9 @@ msgstr "Opravdu chcete smazat \"%1\" přednastavení?"
msgid "Artist"
msgstr "Umělec"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -390,6 +410,9 @@ msgstr "Vyber barvu..."
msgid "Choose from the list"
msgstr ""
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Vybrat obal ručně"
@ -862,6 +885,9 @@ msgstr ""
msgid "Filesystem type"
msgstr "Typ souborového systému"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "První úroveň"
@ -1101,6 +1127,9 @@ msgstr "Heslo k Last.fm"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1116,12 +1145,29 @@ msgstr ""
msgid "Length"
msgstr "Délka"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Knihovna"
msgid "Library advanced grouping"
msgstr "Pokročilé řazení knihoven"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Živě"
@ -1352,6 +1398,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1457,6 +1506,9 @@ msgstr "Nastavení playlistu"
msgid "Playlist search"
msgstr ""
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1509,6 +1561,9 @@ msgstr "Průběh"
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Kvalita"
@ -1650,6 +1705,12 @@ msgstr ""
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Druhá úroveň"
@ -1731,6 +1792,9 @@ msgstr ""
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Zobrazit v plné velikosti..."
@ -1785,6 +1849,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1803,6 +1870,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonogram"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Pusť právě přehrávaný playlist."
@ -2119,6 +2192,12 @@ msgstr "Zvuk Windows Media"
msgid "Year"
msgstr "Rok"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Rok - Album"
@ -2182,19 +2261,46 @@ msgstr "[pro úpravy klikněte]"
msgid "add %n songs"
msgstr "Přidej %n skladby"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "disk %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kb/s"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "Přesuň skladby"
msgid "on"
msgstr ""
msgid "options"
msgstr "volby"
@ -2202,6 +2308,9 @@ msgstr "volby"
msgid "remove %n songs"
msgstr "Odeber %n skladeb"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "zastavit"

View File

@ -28,6 +28,9 @@ msgstr ""
msgid " seconds"
msgstr " sekunder"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr ""
@ -121,6 +124,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -176,6 +190,9 @@ msgstr "Tilføj medie"
msgid "Add new folder..."
msgstr "Tilføj ny mappe..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Tilføj stream..."
@ -287,6 +304,9 @@ msgstr "Vil du slettet \"%1\"-forudindstilling?"
msgid "Artist"
msgstr "Kunstner"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -390,6 +410,9 @@ msgstr "Vælg farve..."
msgid "Choose from the list"
msgstr "Vælg fra listen"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Vælg omslag manuelt"
@ -862,6 +885,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Første niveau"
@ -1102,6 +1128,9 @@ msgstr "Last.fm-adgangskode"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1117,12 +1146,29 @@ msgstr "Lad stå blank for standard. Eksempler: \"/dev/dsp\", \"front\", osv."
msgid "Length"
msgstr "Længde"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Bibliotek"
msgid "Library advanced grouping"
msgstr "Avanceret bibliotektsgruppering"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Live"
@ -1353,6 +1399,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1458,6 +1507,9 @@ msgstr "Indstillinger for spilleliste"
msgid "Playlist search"
msgstr ""
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1510,6 +1562,9 @@ msgstr ""
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr ""
@ -1651,6 +1706,12 @@ msgstr ""
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Andet niveau"
@ -1734,6 +1795,9 @@ msgstr "Vis en køn OSD"
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Vis i fuld størrelse..."
@ -1788,6 +1852,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1806,6 +1873,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonogram"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Start den spilleliste der afspiller nu"
@ -2122,6 +2195,12 @@ msgstr ""
msgid "Year"
msgstr "År"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "År - Album"
@ -2185,19 +2264,46 @@ msgstr "[Klik for at redigere]"
msgid "add %n songs"
msgstr "tilføj %n sange"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr ""
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "disk %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr ""
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "flyt sange"
msgid "on"
msgstr ""
msgid "options"
msgstr "indstillinger"
@ -2205,6 +2311,9 @@ msgstr "indstillinger"
msgid "remove %n songs"
msgstr "fjern %n sange"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""

View File

@ -28,6 +28,9 @@ msgstr ""
msgid " seconds"
msgstr " Sekunden"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 Alben"
@ -125,6 +128,17 @@ msgstr ""
"<p>Steht ein Textbereich in geschweiften Klammern, wird dieser nicht "
"angezeigt, falls das Schlüsselwort leer ist.</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -180,6 +194,9 @@ msgstr "Datei öffnen"
msgid "Add new folder..."
msgstr "Ordner hinzufügen"
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Stream hinzufügen..."
@ -293,6 +310,9 @@ msgstr "Profil \"%1\" wirklich löschen?"
msgid "Artist"
msgstr "Interpret"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -396,6 +416,9 @@ msgstr "Farbe wählen..."
msgid "Choose from the list"
msgstr "Von der Liste wählen"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Cover selbst auswählen"
@ -878,6 +901,9 @@ msgstr "Seriennummer des Dateisystems"
msgid "Filesystem type"
msgstr "Typ des Dateisystems"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Erste Stufe"
@ -1123,6 +1149,9 @@ msgstr "Last.fm Passwort"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1140,12 +1169,29 @@ msgstr ""
msgid "Length"
msgstr "Länge"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Sammlung"
msgid "Library advanced grouping"
msgstr "Benutzerdefinierte Gruppierung"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Live"
@ -1378,6 +1424,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Gerät öffnen"
@ -1483,6 +1532,9 @@ msgstr "Wiedergabeliste einrichten"
msgid "Playlist search"
msgstr "Wiedergabeliste durchsuchen"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1535,6 +1587,9 @@ msgstr "Fortschritt"
msgid "Push Wiiremote button"
msgstr "Taste auf Wii-Fernbedienung drücken"
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Qualität"
@ -1676,6 +1731,12 @@ msgstr "Magnatune durchsuchen"
msgid "Search for album covers..."
msgstr "Nach Covern suchen..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Zweite Stufe"
@ -1757,6 +1818,9 @@ msgstr "Clementines Benachrichtigungen benutzen"
msgid "Show above status bar"
msgstr "Über der Statusleiste zeigen"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Vollbild..."
@ -1811,6 +1875,9 @@ msgstr "Kleines Albumcover"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1829,6 +1896,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonogramm"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Spiele das aktuelle Stück in der Wiedergabeliste ab"
@ -2161,6 +2234,12 @@ msgstr "Windows Media Audio"
msgid "Year"
msgstr "Jahr"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Jahr Album"
@ -2236,19 +2315,46 @@ msgstr "[zum Bearbeiten klicken]"
msgid "add %n songs"
msgstr "%n Stücke hinzufügen"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "BPM"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "CD %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "Kb/s"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "Stücke verschieben"
msgid "on"
msgstr ""
msgid "options"
msgstr "Einstellungen"
@ -2256,6 +2362,9 @@ msgstr "Einstellungen"
msgid "remove %n songs"
msgstr "%n Stücke entfernen"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "Anhalten"

View File

@ -29,6 +29,9 @@ msgstr ""
msgid " seconds"
msgstr " δευτερόλεπτα"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 άλμπουμ"
@ -127,6 +130,17 @@ msgstr ""
"<p>Αν κλείσεις ένα κείμενο που περιέχει λέξη με % σε άγκιστρα ({}), το "
"τμήμα αυτό δεν θα είναι ορατό η λέξη λείπει</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -182,6 +196,9 @@ msgstr "Προσθήκη μέσου"
msgid "Add new folder..."
msgstr "Προσθήκη νέου φακέλου..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Προσθήκη ροής..."
@ -294,6 +311,9 @@ msgstr "Είστε σίγουροι πως θέλετε να διαγράψετ
msgid "Artist"
msgstr "Καλλιτέχνης"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -397,6 +417,9 @@ msgstr "Επέλεξε χρώμα..."
msgid "Choose from the list"
msgstr "Επιλογή από τη λίστα"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Επιλογή εξώφυλλου χειροκίνητα"
@ -883,6 +906,9 @@ msgstr "Αριθμός σειράς συστήματος αρχείων"
msgid "Filesystem type"
msgstr "Τύπος συστήματος αρχείων"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Πρώτο επίπεδο"
@ -1128,6 +1154,9 @@ msgstr "Last.fm συνθηματικό"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1143,12 +1172,29 @@ msgstr "Κενό για τα προεπιλεγμένα. Π.χ. \"/dev/dsp\", \
msgid "Length"
msgstr "Διάρκεια"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Βιβλιοθήκη"
msgid "Library advanced grouping"
msgstr "Προχωρημένη ομαδοποίηση βιβλιοθήκης"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Ζωντανά"
@ -1381,6 +1427,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Άνοιγμα συσκευής"
@ -1486,6 +1535,9 @@ msgstr "Επιλογές λίστας αναπαραγωγής"
msgid "Playlist search"
msgstr "Αναζήτηση στη λίστα αναπαραγωγής"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1538,6 +1590,9 @@ msgstr "Πρόοδος"
msgid "Push Wiiremote button"
msgstr "πιέστε ένα πλήκτρο Wiiremote"
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Ποιότητα"
@ -1679,6 +1734,12 @@ msgstr "Εύρεση στο Magnatune"
msgid "Search for album covers..."
msgstr "Αναζήτηση για εξώφυλλο άλμπουμ..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Δεύτερο επίπεδο"
@ -1760,6 +1821,9 @@ msgstr "Εμφάνισε ένα όμορφο OSD"
msgid "Show above status bar"
msgstr "Εμφάνιση πάνω από την μπάρα κατάστασης"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Εμφάνισε σε πλήρες μέγεθος..."
@ -1814,6 +1878,9 @@ msgstr "Μικρό εξώφυλλο άλμπουμ"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1832,6 +1899,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonogram"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Εκκίνηση της λίστας αναπαραγωγής που παίζει τώρα"
@ -2166,6 +2239,12 @@ msgstr "Windows Media audio"
msgid "Year"
msgstr "Έτος"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Έτος - Άλμπουμ"
@ -2242,19 +2321,46 @@ msgstr "[κλικ για τροποποίηση]"
msgid "add %n songs"
msgstr "προσθήκη %n τραγουδιών"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "δίσκος %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kbps"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "μετακίνηση τραγουδιών"
msgid "on"
msgstr ""
msgid "options"
msgstr "επιλογές"
@ -2262,6 +2368,9 @@ msgstr "επιλογές"
msgid "remove %n songs"
msgstr "αφαίρεση %n τραγουδιών"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "διακοπή"

View File

@ -26,6 +26,9 @@ msgstr ""
msgid " seconds"
msgstr " seconds"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr ""
@ -119,6 +122,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -174,6 +188,9 @@ msgstr "Add media"
msgid "Add new folder..."
msgstr "Add new folder..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Add stream..."
@ -285,6 +302,9 @@ msgstr "Are you sure you want to delete the \"%1\" preset?"
msgid "Artist"
msgstr "Artist"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -388,6 +408,9 @@ msgstr "Choose colour..."
msgid "Choose from the list"
msgstr ""
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Choose manual cover"
@ -861,6 +884,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "First level"
@ -1100,6 +1126,9 @@ msgstr "Last.fm password"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1115,12 +1144,29 @@ msgstr "Leave blank for the default. Examples: \"/dev/dsp\", \"front\", etc."
msgid "Length"
msgstr "Length"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Library"
msgid "Library advanced grouping"
msgstr "Library advanced grouping"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Live"
@ -1352,6 +1398,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1457,6 +1506,9 @@ msgstr "Playlist options"
msgid "Playlist search"
msgstr "Playlist search"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1509,6 +1561,9 @@ msgstr "Progress"
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr ""
@ -1650,6 +1705,12 @@ msgstr "Search Magnatune"
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Second level"
@ -1731,6 +1792,9 @@ msgstr "Show a pretty OSD"
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Show fullsize..."
@ -1785,6 +1849,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1803,6 +1870,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonogram"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Start the playlist currently playing"
@ -2119,6 +2192,12 @@ msgstr ""
msgid "Year"
msgstr "Year"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Year - Album"
@ -2182,19 +2261,46 @@ msgstr "[click to edit]"
msgid "add %n songs"
msgstr "add %n songs"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr ""
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "disc %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr ""
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "move songs"
msgid "on"
msgstr ""
msgid "options"
msgstr "options"
@ -2202,6 +2308,9 @@ msgstr "options"
msgid "remove %n songs"
msgstr "remove %n songs"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""

View File

@ -26,6 +26,9 @@ msgstr ""
msgid " seconds"
msgstr " seconds"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr ""
@ -119,6 +122,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -174,6 +188,9 @@ msgstr ""
msgid "Add new folder..."
msgstr "Add new folder..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Add stream..."
@ -285,6 +302,9 @@ msgstr "Are you sure you want to delete the \"%1\" preset?"
msgid "Artist"
msgstr "Artist"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -388,6 +408,9 @@ msgstr "Choose colour..."
msgid "Choose from the list"
msgstr ""
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Choose manual cover"
@ -859,6 +882,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "First level"
@ -1098,6 +1124,9 @@ msgstr "Last.fm password"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1113,12 +1142,29 @@ msgstr "Leave blank for the default. Examples: \"/dev/dsp\", \"front\", etc."
msgid "Length"
msgstr "Length"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Library"
msgid "Library advanced grouping"
msgstr "Library advanced grouping"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Live"
@ -1349,6 +1395,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1454,6 +1503,9 @@ msgstr "Playlist options"
msgid "Playlist search"
msgstr ""
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1506,6 +1558,9 @@ msgstr ""
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr ""
@ -1647,6 +1702,12 @@ msgstr ""
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Second level"
@ -1728,6 +1789,9 @@ msgstr "Show a pretty OSD"
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Show fullsize..."
@ -1782,6 +1846,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1800,6 +1867,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonogram"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Start the playlist currently playing"
@ -2116,6 +2189,12 @@ msgstr ""
msgid "Year"
msgstr "Year"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Year - Album"
@ -2179,19 +2258,46 @@ msgstr "[click to edit]"
msgid "add %n songs"
msgstr ""
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr ""
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "disc %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr ""
msgid "less than"
msgstr ""
msgid "move songs"
msgstr ""
msgid "on"
msgstr ""
msgid "options"
msgstr "options"
@ -2199,6 +2305,9 @@ msgstr "options"
msgid "remove %n songs"
msgstr ""
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""

View File

@ -28,6 +28,9 @@ msgstr ""
msgid " seconds"
msgstr " segundos"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 álbumes"
@ -127,6 +130,17 @@ msgstr ""
"remplazo, esa sección no se mostrará si la ficha de remplazo se encuentra "
"vacía.</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -182,6 +196,9 @@ msgstr "Añadir música"
msgid "Add new folder..."
msgstr "Añadir nueva carpeta..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Añadir flujo..."
@ -294,6 +311,9 @@ msgstr "¿Estás seguro de que quieres eliminar la predefinición \"%1\"?"
msgid "Artist"
msgstr "Artista"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -398,6 +418,9 @@ msgstr "Elegir color..."
msgid "Choose from the list"
msgstr "Elegir de la lista"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Establecer carátula personalizada"
@ -881,6 +904,9 @@ msgstr "Número de serie del sistema de ficheros"
msgid "Filesystem type"
msgstr "Tipo de sistema de archivos"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Primer nivel"
@ -1127,6 +1153,9 @@ msgstr "Contraseña"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1144,12 +1173,29 @@ msgstr ""
msgid "Length"
msgstr "Duración"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Colección"
msgid "Library advanced grouping"
msgstr "Agrupamiento avanzado de la colección"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "En vivo"
@ -1382,6 +1428,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Abrir dispositivo"
@ -1487,6 +1536,9 @@ msgstr "Opciones de la lista de reproducción"
msgid "Playlist search"
msgstr "Búsqueda en la lista"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1539,6 +1591,9 @@ msgstr "Progreso"
msgid "Push Wiiremote button"
msgstr "Pulse el botón del Wiiremote"
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Calidad"
@ -1680,6 +1735,12 @@ msgstr "Buscar en Magnatune"
msgid "Search for album covers..."
msgstr "Buscar caratulas de álbumes..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Segundo nivel"
@ -1761,6 +1822,9 @@ msgstr "Mostrar OSD Estético"
msgid "Show above status bar"
msgstr "Mostrar la barra de estado superior"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Mostrar carátula..."
@ -1815,6 +1879,9 @@ msgstr "Caratula de álbum pequeña"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1833,6 +1900,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonograma"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Iniciar la lista de reproducción actualmente reproduciendose"
@ -2161,6 +2234,12 @@ msgstr "Audio de Windows Media"
msgid "Year"
msgstr "Año"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Año - Álbum"
@ -2237,19 +2316,46 @@ msgstr "[click para editar]"
msgid "add %n songs"
msgstr "agregar %n pistas"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "Disco %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kbps"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "mover pistas"
msgid "on"
msgstr ""
msgid "options"
msgstr "opciones"
@ -2257,6 +2363,9 @@ msgstr "opciones"
msgid "remove %n songs"
msgstr "remover %n pistas"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "detener"

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr " sekuntia"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 levyä"
@ -120,6 +123,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -175,6 +189,9 @@ msgstr ""
msgid "Add new folder..."
msgstr "Lisää uusi kansio..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Lisää virta..."
@ -286,6 +303,9 @@ msgstr ""
msgid "Artist"
msgstr "Esittäjä"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -389,6 +409,9 @@ msgstr "Valitse väri..."
msgid "Choose from the list"
msgstr ""
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr ""
@ -859,6 +882,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr ""
@ -1098,6 +1124,9 @@ msgstr "Last.fm-salasana"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1113,12 +1142,29 @@ msgstr ""
msgid "Length"
msgstr "Kesto"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Kirjasto"
msgid "Library advanced grouping"
msgstr ""
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr ""
@ -1350,6 +1396,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1455,6 +1504,9 @@ msgstr ""
msgid "Playlist search"
msgstr ""
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1507,6 +1559,9 @@ msgstr ""
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Laatu"
@ -1648,6 +1703,12 @@ msgstr ""
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr ""
@ -1729,6 +1790,9 @@ msgstr ""
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr ""
@ -1783,6 +1847,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1801,6 +1868,12 @@ msgstr ""
msgid "Sonogram"
msgstr ""
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr ""
@ -2117,6 +2190,12 @@ msgstr ""
msgid "Year"
msgstr "Vuosi"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Vuosi - Levy"
@ -2180,19 +2259,46 @@ msgstr ""
msgid "add %n songs"
msgstr ""
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr ""
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr ""
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr ""
msgid "less than"
msgstr ""
msgid "move songs"
msgstr ""
msgid "on"
msgstr ""
msgid "options"
msgstr ""
@ -2200,6 +2306,9 @@ msgstr ""
msgid "remove %n songs"
msgstr ""
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""

View File

@ -28,6 +28,9 @@ msgstr ""
msgid " seconds"
msgstr " secondes"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 albums"
@ -126,6 +129,17 @@ msgstr ""
"champ, celle-ci ne sera pas affichée si le contenu du champ n'est pas "
"renseigné.</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -181,6 +195,9 @@ msgstr "Ajouter un média"
msgid "Add new folder..."
msgstr "Ajouter un nouveau dossier..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Ajouter un flux..."
@ -297,6 +314,9 @@ msgstr "Êtes-vous sûr de vouloir supprimer la valeur prédéfinie « %1 »"
msgid "Artist"
msgstr "Artiste"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -401,6 +421,9 @@ msgstr "Choisir une couleur..."
msgid "Choose from the list"
msgstr "Choisir depuis la liste"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Choisir une jaquette manuellement"
@ -885,6 +908,9 @@ msgstr "Numéro de série du système de fichiers"
msgid "Filesystem type"
msgstr "Type de système de fichiers"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Premier niveau"
@ -1131,6 +1157,9 @@ msgstr "Mot de passe"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1148,12 +1177,29 @@ msgstr ""
msgid "Length"
msgstr "Durée"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Bibliothèque"
msgid "Library advanced grouping"
msgstr "Groupement avancé de la bibliothèque"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "En direct"
@ -1386,6 +1432,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Ouvrir le périphérique"
@ -1491,6 +1540,9 @@ msgstr "Options de la liste de lecture"
msgid "Playlist search"
msgstr "Rechercher dans la liste de lecture"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1543,6 +1595,9 @@ msgstr "Progression"
msgid "Push Wiiremote button"
msgstr "Appuyer sur le bouton Wiiremote"
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Qualité"
@ -1684,6 +1739,12 @@ msgstr "Recherche Magnatune"
msgid "Search for album covers..."
msgstr "Chercher jaquettes d'album"
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Deuxième niveau"
@ -1765,6 +1826,9 @@ msgstr "Utiliser l'affichage à l'écran (OSD)"
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Afficher en taille réelle..."
@ -1819,6 +1883,9 @@ msgstr "Petite jaquette d'album"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1837,6 +1904,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonogramme"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Commencer la liste de lecture jouée actuellement"
@ -2167,6 +2240,12 @@ msgstr "audio Windows Media"
msgid "Year"
msgstr "Année"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Année - Album"
@ -2237,19 +2316,46 @@ msgstr "[cliquer pour modifier]"
msgid "add %n songs"
msgstr ""
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "CD %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kbps"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "déplacer les chansons"
msgid "on"
msgstr ""
msgid "options"
msgstr "options"
@ -2257,6 +2363,9 @@ msgstr "options"
msgid "remove %n songs"
msgstr ""
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "stop"

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr " segundos"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 álbumes"
@ -120,6 +123,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -175,6 +189,9 @@ msgstr "Engadir media"
msgid "Add new folder..."
msgstr "Engadir novo cartafol"
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Engadir fluxo..."
@ -286,6 +303,9 @@ msgstr "Está certo que quer apagar o \"%1\" predefinido?"
msgid "Artist"
msgstr "Artista"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -389,6 +409,9 @@ msgstr "Elexir cor..."
msgid "Choose from the list"
msgstr "Elixir da lista"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Escoller unha capa manualmente"
@ -863,6 +886,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr ""
@ -1103,6 +1129,9 @@ msgstr ""
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1118,12 +1147,29 @@ msgstr ""
msgid "Length"
msgstr "Durazón"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr ""
msgid "Library advanced grouping"
msgstr ""
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Ao Vivo"
@ -1354,6 +1400,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1459,6 +1508,9 @@ msgstr ""
msgid "Playlist search"
msgstr ""
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1511,6 +1563,9 @@ msgstr ""
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr ""
@ -1652,6 +1707,12 @@ msgstr ""
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr ""
@ -1733,6 +1794,9 @@ msgstr ""
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr ""
@ -1787,6 +1851,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1805,6 +1872,12 @@ msgstr ""
msgid "Sonogram"
msgstr ""
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Reproducir a playlist actualmente reproducindo"
@ -2121,6 +2194,12 @@ msgstr ""
msgid "Year"
msgstr "Ano"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr ""
@ -2184,19 +2263,46 @@ msgstr "[clique para editar]"
msgid "add %n songs"
msgstr ""
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr ""
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "disco %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr ""
msgid "less than"
msgstr ""
msgid "move songs"
msgstr ""
msgid "on"
msgstr ""
msgid "options"
msgstr "Opzóns"
@ -2204,6 +2310,9 @@ msgstr "Opzóns"
msgid "remove %n songs"
msgstr ""
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr " másodperc"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 album"
@ -125,6 +128,17 @@ msgstr ""
"<p>Ha egy szövegrészt kapcsos zárójelekkel fog közre, akkor az rejtve marad, "
"ha a benne lévő címke helyére nem helyettesíthető semmi.</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -180,6 +194,9 @@ msgstr "Zene hozzáadása"
msgid "Add new folder..."
msgstr "Új mappa hozzáadása..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Adatfolyam hozzáadása..."
@ -291,6 +308,9 @@ msgstr "Biztos benne, hogy törli a \"%1\" beállítást?"
msgid "Artist"
msgstr "Előadó"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -394,6 +414,9 @@ msgstr "Szín választása..."
msgid "Choose from the list"
msgstr "Választás a listáról"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Borító választása manuálisan"
@ -878,6 +901,9 @@ msgstr "Fájlrendszer szériaszám"
msgid "Filesystem type"
msgstr "Fájlrendszertípus"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Első szinten"
@ -1121,6 +1147,9 @@ msgstr "Last.fm jelszó"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1137,12 +1166,29 @@ msgstr ""
msgid "Length"
msgstr "Időtartam"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Zenetár"
msgid "Library advanced grouping"
msgstr "Zenetár egyedi csoportosítása"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Élő"
@ -1375,6 +1421,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Eszköz megnyitása"
@ -1480,6 +1529,9 @@ msgstr "Lejátszási lista beállítások"
msgid "Playlist search"
msgstr "Keresés a lejátszási listán"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1532,6 +1584,9 @@ msgstr "Folyamat"
msgid "Push Wiiremote button"
msgstr "Nyomja meg a Wiiremote gombot"
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Minőség"
@ -1673,6 +1728,12 @@ msgstr "Keresés a Magnatuneon"
msgid "Search for album covers..."
msgstr "Album borítok keresése..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Második szinten"
@ -1755,6 +1816,9 @@ msgstr "Pretty OSD megjelenítése"
msgid "Show above status bar"
msgstr "Jelenítse meg az állapotsáv fölött"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Jelenítse meg teljes méretben..."
@ -1809,6 +1873,9 @@ msgstr "Kis albumborító"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1827,6 +1894,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Szonográfia"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Az éppen lejátszott lista indítása"
@ -2156,6 +2229,12 @@ msgstr "Windows Media audio"
msgid "Year"
msgstr "Év"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Év - Album"
@ -2230,19 +2309,46 @@ msgstr "[kattintson a szerkesztéshez]"
msgid "add %n songs"
msgstr "%n szám felvétele"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "%1 lemez"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kbps"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "számok mozgatása"
msgid "on"
msgstr ""
msgid "options"
msgstr "beállítások"
@ -2250,6 +2356,9 @@ msgstr "beállítások"
msgid "remove %n songs"
msgstr "%n szám eltávolítása"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "leállítás"

View File

@ -28,6 +28,9 @@ msgstr ""
msgid " seconds"
msgstr " secondi"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 album"
@ -127,6 +130,17 @@ msgstr ""
"graffe, queste sezioni saranno nascoste se la variabile non contiene alcun \n"
"valore.</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -182,6 +196,9 @@ msgstr "Aggiungi media"
msgid "Add new folder..."
msgstr "Aggiungi nuova cartella..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Aggiungi flusso..."
@ -298,6 +315,9 @@ msgstr "Sei sicuro di voler eliminare la preimpostazione \"%1\"?"
msgid "Artist"
msgstr "Artista"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -401,6 +421,9 @@ msgstr "Scegli colore..."
msgid "Choose from the list"
msgstr "Scegli dall'elenco"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Scelta manuale della copertina"
@ -883,6 +906,9 @@ msgstr "Numero seriale del filesystem"
msgid "Filesystem type"
msgstr "Tipo di file system"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Primo livello"
@ -1130,6 +1156,9 @@ msgstr "Password Last.fm"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1147,12 +1176,29 @@ msgstr ""
msgid "Length"
msgstr "Durata"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Raccolta"
msgid "Library advanced grouping"
msgstr "Raggruppamento avanzato della raccolta"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Live"
@ -1386,6 +1432,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Apri dispositivo"
@ -1491,6 +1540,9 @@ msgstr "Opzioni della scaletta"
msgid "Playlist search"
msgstr "Ricerca nella scaletta"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1543,6 +1595,9 @@ msgstr "Avanzamento"
msgid "Push Wiiremote button"
msgstr "Premi pulsante del Wiiremote"
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Qualità"
@ -1684,6 +1739,12 @@ msgstr "Cerca in Magnatune"
msgid "Search for album covers..."
msgstr "Cerca copertine degli album..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Secondo livello"
@ -1765,6 +1826,9 @@ msgstr "Mostra un OSD gradevole"
msgid "Show above status bar"
msgstr "Mostra la barra di stato superiore"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Mostra a dimensioni originali..."
@ -1819,6 +1883,9 @@ msgstr "Copertine piccole"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1837,6 +1904,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonogramma"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Avvia la scaletta attualmente in riproduzione"
@ -2172,6 +2245,12 @@ msgstr "Windows Media audio"
msgid "Year"
msgstr "Anno"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Anno - Album"
@ -2247,19 +2326,46 @@ msgstr "[clic per modificare]"
msgid "add %n songs"
msgstr "aggiungi %n brani"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "disco %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kbps"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "sposta brani"
msgid "on"
msgstr ""
msgid "options"
msgstr "opzioni"
@ -2267,6 +2373,9 @@ msgstr "opzioni"
msgid "remove %n songs"
msgstr "rimuovi %n brani"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "ferma"

View File

@ -26,6 +26,9 @@ msgstr ""
msgid " seconds"
msgstr ""
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr ""
@ -119,6 +122,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -174,6 +188,9 @@ msgstr ""
msgid "Add new folder..."
msgstr ""
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr ""
@ -285,6 +302,9 @@ msgstr ""
msgid "Artist"
msgstr "Орындайтын"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -388,6 +408,9 @@ msgstr ""
msgid "Choose from the list"
msgstr ""
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr ""
@ -858,6 +881,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr ""
@ -1098,6 +1124,9 @@ msgstr ""
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1113,12 +1142,29 @@ msgstr ""
msgid "Length"
msgstr "Ұзындығы"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr ""
msgid "Library advanced grouping"
msgstr ""
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr ""
@ -1349,6 +1395,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1454,6 +1503,9 @@ msgstr ""
msgid "Playlist search"
msgstr ""
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1506,6 +1558,9 @@ msgstr ""
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr ""
@ -1647,6 +1702,12 @@ msgstr ""
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr ""
@ -1728,6 +1789,9 @@ msgstr ""
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr ""
@ -1782,6 +1846,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1800,6 +1867,12 @@ msgstr ""
msgid "Sonogram"
msgstr ""
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr ""
@ -2116,6 +2189,12 @@ msgstr ""
msgid "Year"
msgstr "Шығ. жылы"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr ""
@ -2179,19 +2258,46 @@ msgstr ""
msgid "add %n songs"
msgstr ""
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr ""
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr ""
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr ""
msgid "less than"
msgstr ""
msgid "move songs"
msgstr ""
msgid "on"
msgstr ""
msgid "options"
msgstr "опциялар"
@ -2199,6 +2305,9 @@ msgstr "опциялар"
msgid "remove %n songs"
msgstr ""
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr " sekundžių"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 albumai"
@ -120,6 +123,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr ""
@ -175,6 +189,9 @@ msgstr ""
msgid "Add new folder..."
msgstr ""
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr ""
@ -286,6 +303,9 @@ msgstr ""
msgid "Artist"
msgstr ""
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -389,6 +409,9 @@ msgstr ""
msgid "Choose from the list"
msgstr ""
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr ""
@ -859,6 +882,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr ""
@ -1097,6 +1123,9 @@ msgstr ""
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1112,12 +1141,29 @@ msgstr ""
msgid "Length"
msgstr ""
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr ""
msgid "Library advanced grouping"
msgstr ""
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr ""
@ -1348,6 +1394,9 @@ msgstr ""
msgid "Ogg Vorbis"
msgstr ""
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1453,6 +1502,9 @@ msgstr ""
msgid "Playlist search"
msgstr ""
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1505,6 +1557,9 @@ msgstr ""
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr ""
@ -1646,6 +1701,12 @@ msgstr ""
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr ""
@ -1727,6 +1788,9 @@ msgstr ""
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr ""
@ -1781,6 +1845,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1799,6 +1866,12 @@ msgstr ""
msgid "Sonogram"
msgstr ""
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr ""
@ -2115,6 +2188,12 @@ msgstr ""
msgid "Year"
msgstr ""
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr ""
@ -2178,19 +2257,46 @@ msgstr ""
msgid "add %n songs"
msgstr ""
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr ""
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr ""
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr ""
msgid "less than"
msgstr ""
msgid "move songs"
msgstr ""
msgid "on"
msgstr ""
msgid "options"
msgstr ""
@ -2198,6 +2304,9 @@ msgstr ""
msgid "remove %n songs"
msgstr ""
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr " sekunder"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 album"
@ -120,6 +123,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -175,6 +189,9 @@ msgstr ""
msgid "Add new folder..."
msgstr "Legg til ny katalog"
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Legg til strøm..."
@ -286,6 +303,9 @@ msgstr "Er du sikker på at du vil slette \"%1\" innstillingen?"
msgid "Artist"
msgstr "Artist"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -389,6 +409,9 @@ msgstr "Velg farge..."
msgid "Choose from the list"
msgstr ""
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Velg cover manuelt"
@ -860,6 +883,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Første nivå"
@ -1100,6 +1126,9 @@ msgstr "Last.fm passord"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1115,12 +1144,29 @@ msgstr ""
msgid "Length"
msgstr "Lengde"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Bibliotek"
msgid "Library advanced grouping"
msgstr "Avansert biblioteksgruppering"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Live"
@ -1351,6 +1397,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1456,6 +1505,9 @@ msgstr ""
msgid "Playlist search"
msgstr ""
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1508,6 +1560,9 @@ msgstr ""
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Kvalitet"
@ -1649,6 +1704,12 @@ msgstr ""
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Andre nivå"
@ -1730,6 +1791,9 @@ msgstr "Vis en Clementine-spesifikk skrivebordsmelding"
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Vis i fullskjerm..."
@ -1784,6 +1848,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1802,6 +1869,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonogram"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr ""
@ -2119,6 +2192,12 @@ msgstr ""
msgid "Year"
msgstr "År"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "År - Album"
@ -2182,19 +2261,46 @@ msgstr "[klikk for å endre]"
msgid "add %n songs"
msgstr ""
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr ""
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "disk %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr ""
msgid "less than"
msgstr ""
msgid "move songs"
msgstr ""
msgid "on"
msgstr ""
msgid "options"
msgstr "innstillinger"
@ -2202,6 +2308,9 @@ msgstr "innstillinger"
msgid "remove %n songs"
msgstr ""
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "stopp"

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr " seconden"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 albums"
@ -124,6 +127,17 @@ msgstr ""
"<p>Als u tekstgedeelten, doe tokens bevatten, tussen accolades zet, dan zal "
"dat gedeelte worden verborgen als de token leeg is.</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -179,6 +193,9 @@ msgstr "Media toevoegen"
msgid "Add new folder..."
msgstr "Nieuwe map toevoegen..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Radiostream toevoegen..."
@ -294,6 +311,9 @@ msgstr "Weet u zeker dat u voorinstelling \"%1\" wilt wissen?"
msgid "Artist"
msgstr "Artiest"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -397,6 +417,9 @@ msgstr "Kleur kiezen..."
msgid "Choose from the list"
msgstr "Kies uit de lijst"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Albumhoes handmatig kiezen"
@ -879,6 +902,9 @@ msgstr "Bestandssysteem serienummer"
msgid "Filesystem type"
msgstr "Bestandssysteem type"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Eerste niveau"
@ -1125,6 +1151,9 @@ msgstr "Last.fm wachtwoord"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1141,12 +1170,29 @@ msgstr ""
msgid "Length"
msgstr "Duur"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Bibliotheek"
msgid "Library advanced grouping"
msgstr "Bibliotheek geavanceerd groeperen"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Live"
@ -1381,6 +1427,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Apparaat openen"
@ -1486,6 +1535,9 @@ msgstr "Afspeellijst-opties"
msgid "Playlist search"
msgstr "Zoeken in afspeellijst"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1538,6 +1590,9 @@ msgstr "Voortgang"
msgid "Push Wiiremote button"
msgstr "druk op Wiiremote knop"
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Kwaliteit"
@ -1679,6 +1734,12 @@ msgstr "Zoeken op Magnatune"
msgid "Search for album covers..."
msgstr "Zoeken naar albumhoezen..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Tweede niveau"
@ -1760,6 +1821,9 @@ msgstr "Mooie OSD weergeven"
msgid "Show above status bar"
msgstr "Boven statusbalk weergeven"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Volledig weergeven..."
@ -1814,6 +1878,9 @@ msgstr "Kleine albumhoes"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1832,6 +1899,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonogram"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Momenteel spelende afspeellijst starten"
@ -2166,6 +2239,12 @@ msgstr "Windows Media-audio"
msgid "Year"
msgstr "Jaar"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Jaar - Album"
@ -2241,19 +2320,46 @@ msgstr "[klik om te bewerken:]"
msgid "add %n songs"
msgstr "%n nummers toevoegen"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "schijf %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kbps"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "nummers verplaatsen"
msgid "on"
msgstr ""
msgid "options"
msgstr "opties"
@ -2261,6 +2367,9 @@ msgstr "opties"
msgid "remove %n songs"
msgstr "%n nummers verwijderen"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "stoppen"

View File

@ -26,6 +26,9 @@ msgstr ""
msgid " seconds"
msgstr " segondas"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr ""
@ -119,6 +122,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -174,6 +188,9 @@ msgstr ""
msgid "Add new folder..."
msgstr ""
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Apondre un flux..."
@ -285,6 +302,9 @@ msgstr ""
msgid "Artist"
msgstr "Artista"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -388,6 +408,9 @@ msgstr ""
msgid "Choose from the list"
msgstr ""
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr ""
@ -858,6 +881,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Primièr nivèl"
@ -1096,6 +1122,9 @@ msgstr ""
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1111,12 +1140,29 @@ msgstr ""
msgid "Length"
msgstr "Longor"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Bibliotèca"
msgid "Library advanced grouping"
msgstr ""
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Live"
@ -1347,6 +1393,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1452,6 +1501,9 @@ msgstr ""
msgid "Playlist search"
msgstr ""
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1504,6 +1556,9 @@ msgstr "Progression"
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr ""
@ -1645,6 +1700,12 @@ msgstr ""
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr ""
@ -1726,6 +1787,9 @@ msgstr ""
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr ""
@ -1780,6 +1844,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1798,6 +1865,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonograma"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr ""
@ -2114,6 +2187,12 @@ msgstr ""
msgid "Year"
msgstr "Annada"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Annada - Album"
@ -2177,19 +2256,46 @@ msgstr ""
msgid "add %n songs"
msgstr ""
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr ""
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "CD %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr ""
msgid "less than"
msgstr ""
msgid "move songs"
msgstr ""
msgid "on"
msgstr ""
msgid "options"
msgstr "opcions"
@ -2197,6 +2303,9 @@ msgstr "opcions"
msgid "remove %n songs"
msgstr ""
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""

View File

@ -28,6 +28,9 @@ msgstr ""
msgid " seconds"
msgstr " sekundy"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 albumów"
@ -128,6 +131,17 @@ msgstr ""
"reprezentuje nową linię. Rozpocznij nową linią w odpowiedniej pozycji "
"tłumaczenia."
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -183,6 +197,9 @@ msgstr "Dodaj multimedia"
msgid "Add new folder..."
msgstr "Dodaj nowy katalog..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Dodaj strumień..."
@ -294,6 +311,9 @@ msgstr "Czy na pewno chcesz usunąć preset \"%1\"?"
msgid "Artist"
msgstr "Wykonawca"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -397,6 +417,9 @@ msgstr "Wybierz kolor..."
msgid "Choose from the list"
msgstr "Wybierz z listy"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Wybierz okładkę ręcznie"
@ -878,6 +901,9 @@ msgstr "Numer seryjny systemu plików"
msgid "Filesystem type"
msgstr "Typ systemu plików"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Pierwszy poziom"
@ -1122,6 +1148,9 @@ msgstr "Hasło Last.fm"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1139,12 +1168,29 @@ msgstr ""
msgid "Length"
msgstr "Długość"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Biblioteka"
msgid "Library advanced grouping"
msgstr "Zaawansowanie grupowanie Biblioteki"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Na żywo"
@ -1377,6 +1423,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Otwórz urządzenie"
@ -1482,6 +1531,9 @@ msgstr "Opcje listy odtwarzania"
msgid "Playlist search"
msgstr "Przeszukuj listę odtwarzania"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1534,6 +1586,9 @@ msgstr "Postęp"
msgid "Push Wiiremote button"
msgstr "Naciśnij przycisk na pilocie"
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Jakość"
@ -1675,6 +1730,12 @@ msgstr "Przeszukaj Magnatune"
msgid "Search for album covers..."
msgstr "Szukaj okładek..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Drugi poziom"
@ -1756,6 +1817,9 @@ msgstr "Pokazuj ładne OSD (wyświetlanie-na-ekranie)"
msgid "Show above status bar"
msgstr "Pokaż ponad paskiem stanu"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Pokaż w pełnej wielkości..."
@ -1810,6 +1874,9 @@ msgstr "Mała okładka albumu"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1828,6 +1895,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonogram"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Rozpocznij aktualnie odtwarzaną playliste"
@ -2156,6 +2229,12 @@ msgstr "Windows Media audio"
msgid "Year"
msgstr "Rok"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Rok - Album"
@ -2225,19 +2304,46 @@ msgstr "[kliknij aby edytować]"
msgid "add %n songs"
msgstr "dodaj %n utworów"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "dysk %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kbps"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "przenieś utwory"
msgid "on"
msgstr ""
msgid "options"
msgstr "opcje"
@ -2245,6 +2351,9 @@ msgstr "opcje"
msgid "remove %n songs"
msgstr "usuń %n utworów"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "zatrzymaj"

View File

@ -29,6 +29,9 @@ msgstr ""
msgid " seconds"
msgstr " segundos"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 álbuns"
@ -126,6 +129,17 @@ msgstr ""
"<p>Ao colocar parênteses entre as secções de texto que contenham itens, essa "
"secção será ocultada se o item estiver vazio.</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -181,6 +195,9 @@ msgstr "Adicionar \"media\""
msgid "Add new folder..."
msgstr "Adicionar nova pasta..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Adicionar emissão..."
@ -293,6 +310,9 @@ msgstr "Tem a certeza que quer apagar o pré-ajuste \"%1\"?"
msgid "Artist"
msgstr "Artista"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -397,6 +417,9 @@ msgstr "Escolha a cor.."
msgid "Choose from the list"
msgstr "Escolher da lista"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Escolher a capa manualmente"
@ -879,6 +902,9 @@ msgstr "Número de série do sistema de ficheiros"
msgid "Filesystem type"
msgstr "Tipo do sistema de ficheiros"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Primeiro nível"
@ -1122,6 +1148,9 @@ msgstr "Senha Last.fm"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1139,12 +1168,29 @@ msgstr ""
msgid "Length"
msgstr "Duração"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Biblioteca"
msgid "Library advanced grouping"
msgstr "Agrupamento avançado da biblioteca"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Ao vivo"
@ -1378,6 +1424,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Abrir dispositivo"
@ -1483,6 +1532,9 @@ msgstr "Opções da lista de reprodução"
msgid "Playlist search"
msgstr "Pesquisa na lista de reprodução"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1535,6 +1587,9 @@ msgstr "Evolução"
msgid "Push Wiiremote button"
msgstr "Carregar no botão do \"Wiiremote\""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Qualidade"
@ -1676,6 +1731,12 @@ msgstr "Pesquisar na Magnatune"
msgid "Search for album covers..."
msgstr "Pesquisar capas de álbuns..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Segundo nível"
@ -1757,6 +1818,9 @@ msgstr "Mostrar um OSD personalizado"
msgid "Show above status bar"
msgstr "Mostrar acima da barra de estado"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Mostar tamanho total..."
@ -1811,6 +1875,9 @@ msgstr "Capa de álbum pequena"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1829,6 +1896,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonograma"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Iniciar a lista de reprodução atual"
@ -2160,6 +2233,12 @@ msgstr "Windows Media Áudio"
msgid "Year"
msgstr "Ano"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Ano - álbum"
@ -2234,19 +2313,46 @@ msgstr "[clique para editar]"
msgid "add %n songs"
msgstr "adicionar %n músicas"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "disco %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kbps"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "mover músicas"
msgid "on"
msgstr ""
msgid "options"
msgstr "opções"
@ -2254,6 +2360,9 @@ msgstr "opções"
msgid "remove %n songs"
msgstr "remover %n músicas"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "parar"

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr " segundos"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 albuns"
@ -123,6 +126,17 @@ msgstr ""
"<p>Se você cercar seções de text que contenham separadores com chaves, "
"aquela seção será escondida se o separador estiver vazio.</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -178,6 +192,9 @@ msgstr "Adicionar mídia"
msgid "Add new folder..."
msgstr "Adicionar nova pasta..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Adicionar transmissão..."
@ -291,6 +308,9 @@ msgstr "Tem certeza que deseja apagar a pré-regulagem \"%1\" ?"
msgid "Artist"
msgstr "Artista"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -394,6 +414,9 @@ msgstr "Escolher cor..."
msgid "Choose from the list"
msgstr "Escolher da lista"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Escolher capa manualmente"
@ -872,6 +895,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Primeiro nível"
@ -1113,6 +1139,9 @@ msgstr "Senha do Last.fm"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1128,12 +1157,29 @@ msgstr "Deixe em brando por padrão. Exemplos: \"/dev/dsp\", \"front\", etc."
msgid "Length"
msgstr "Duração"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Biblioteca"
msgid "Library advanced grouping"
msgstr "Organização avançada de biblioteca"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Ao vivo"
@ -1366,6 +1412,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1471,6 +1520,9 @@ msgstr "Opções da lista de reprodução"
msgid "Playlist search"
msgstr "Procurar lista de reprodução"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1523,6 +1575,9 @@ msgstr "Andamento"
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Qualidade"
@ -1664,6 +1719,12 @@ msgstr "Procurar Magnatune"
msgid "Search for album covers..."
msgstr "Procurar por capas de álbuns..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Segundo nível"
@ -1745,6 +1806,9 @@ msgstr "Mostrar aviso estilizado na tela"
msgid "Show above status bar"
msgstr "Mostrar barra de status em baixo"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Exibir tamanho real..."
@ -1799,6 +1863,9 @@ msgstr "Capa pequena de álbum"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1817,6 +1884,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonograma"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Iniciar a lista de reprodução que encontra-se em execução"
@ -2134,6 +2207,12 @@ msgstr ""
msgid "Year"
msgstr "Ano"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Ano do Álbum"
@ -2204,19 +2283,46 @@ msgstr "[clique para editar]"
msgid "add %n songs"
msgstr "Adicionar %n músicas"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "disco %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kbps"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "mover músicas"
msgid "on"
msgstr ""
msgid "options"
msgstr "opções"
@ -2224,6 +2330,9 @@ msgstr "opções"
msgid "remove %n songs"
msgstr "Remover %n músicas"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""

View File

@ -26,6 +26,9 @@ msgstr ""
msgid " seconds"
msgstr " secunde"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr ""
@ -119,6 +122,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -174,6 +188,9 @@ msgstr ""
msgid "Add new folder..."
msgstr ""
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Adaugă flux..."
@ -285,6 +302,9 @@ msgstr "Sigur doriți să ștergeți presetarea \"%1\"?"
msgid "Artist"
msgstr "Artist"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -388,6 +408,9 @@ msgstr "Alege culoare..."
msgid "Choose from the list"
msgstr ""
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr ""
@ -858,6 +881,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Primul nivel"
@ -1097,6 +1123,9 @@ msgstr ""
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1112,12 +1141,29 @@ msgstr ""
msgid "Length"
msgstr "Durată"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Bibliotecă"
msgid "Library advanced grouping"
msgstr ""
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr ""
@ -1348,6 +1394,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1453,6 +1502,9 @@ msgstr ""
msgid "Playlist search"
msgstr ""
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1505,6 +1557,9 @@ msgstr ""
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr ""
@ -1646,6 +1701,12 @@ msgstr ""
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Al doilea nivel"
@ -1727,6 +1788,9 @@ msgstr ""
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr ""
@ -1781,6 +1845,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1799,6 +1866,12 @@ msgstr ""
msgid "Sonogram"
msgstr ""
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr ""
@ -2115,6 +2188,12 @@ msgstr ""
msgid "Year"
msgstr "An"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "An - Album"
@ -2178,19 +2257,46 @@ msgstr ""
msgid "add %n songs"
msgstr ""
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr ""
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "disc %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr ""
msgid "less than"
msgstr ""
msgid "move songs"
msgstr ""
msgid "on"
msgstr ""
msgid "options"
msgstr "opțiuni"
@ -2198,6 +2304,9 @@ msgstr "opțiuni"
msgid "remove %n songs"
msgstr ""
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""

View File

@ -26,6 +26,9 @@ msgstr ""
msgid " seconds"
msgstr " секунд"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 альбом(ов)"
@ -123,6 +126,17 @@ msgstr ""
"<p>Если вы окружили часть текста фигурными скобками, то эта часть текста не "
"будет видна если в значения полей будут отсутствовать</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -178,6 +192,9 @@ msgstr "Добавить файлы"
msgid "Add new folder..."
msgstr "Добавить каталог..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Добавить поток..."
@ -289,6 +306,9 @@ msgstr "Вы действительно хотите удалить настро
msgid "Artist"
msgstr "Исполнитель"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -392,6 +412,9 @@ msgstr "Выбрать цвет..."
msgid "Choose from the list"
msgstr "Выбор из списка"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Укажите обложку вручную"
@ -872,6 +895,9 @@ msgstr "Серийный номер файловой системы"
msgid "Filesystem type"
msgstr "Тип файловой системы"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Первый уровень"
@ -1116,6 +1142,9 @@ msgstr "Пароль Last.fm"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1132,12 +1161,29 @@ msgstr ""
msgid "Length"
msgstr "Длительность"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Коллекция"
msgid "Library advanced grouping"
msgstr "Расширенная сортировка коллекции"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Live"
@ -1370,6 +1416,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Открыть устройство"
@ -1475,6 +1524,9 @@ msgstr "Настройки списка воспроизведения"
msgid "Playlist search"
msgstr "Поиск по списку воспроизведения"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1527,6 +1579,9 @@ msgstr "Ход выполнения"
msgid "Push Wiiremote button"
msgstr "Нажмите на кнопку пульта Wiiremote"
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Качество"
@ -1668,6 +1723,12 @@ msgstr "Искать на Magnatune"
msgid "Search for album covers..."
msgstr "Искать обложки альбомов..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Второй уровень"
@ -1749,6 +1810,9 @@ msgstr "Показывать OSD"
msgid "Show above status bar"
msgstr "Показать над строкой состояния"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Показать полный размер..."
@ -1803,6 +1867,9 @@ msgstr "Маленькая обложка альбома"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1821,6 +1888,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Сонограмма"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Запустить список воспроизведения проигрываемый в данный момент"
@ -2150,6 +2223,12 @@ msgstr "Windows Media"
msgid "Year"
msgstr "Год"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Год - Альбом"
@ -2224,19 +2303,46 @@ msgstr "[щелкните, чтобы изменить]"
msgid "add %n songs"
msgstr "добавить %n композиций"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "диск %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "кбит/с"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "переместить композиции"
msgid "on"
msgstr ""
msgid "options"
msgstr "настройки"
@ -2244,6 +2350,9 @@ msgstr "настройки"
msgid "remove %n songs"
msgstr "удалить %n композиций"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "Остановить"

View File

@ -28,6 +28,9 @@ msgstr ""
msgid " seconds"
msgstr " sekundy"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 albumov"
@ -125,6 +128,17 @@ msgstr ""
"<p>Ak naplníte sekciu znakmi ktoré obsahujú štítok so zloženými zátvorkami, "
"táto sekcia bude skrytá, ak je štítok prázdny.</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -180,6 +194,9 @@ msgstr "Pridať médium"
msgid "Add new folder..."
msgstr "Pridať nový priečinok..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Pridať stream..."
@ -291,6 +308,9 @@ msgstr "Ste si istý, že chcete vymazať predvoľbu \"%1\"?"
msgid "Artist"
msgstr "Interprét"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -394,6 +414,9 @@ msgstr "Vybrať farbu..."
msgid "Choose from the list"
msgstr "Vybrať zo zoznamu"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Vybrať obal ručne"
@ -876,6 +899,9 @@ msgstr "Sériové číslo súborového systému"
msgid "Filesystem type"
msgstr "Typ súborového systému"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Prvá úroveň"
@ -1119,6 +1145,9 @@ msgstr "Last.fm heslo"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1134,12 +1163,29 @@ msgstr "Nechať pôvodne - prázdne. Príklady: \"/dev/dsp\", \"front\", atď."
msgid "Length"
msgstr "Dĺžka"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Zbierka"
msgid "Library advanced grouping"
msgstr "Pokročilé zoraďovanie zbierky"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Live"
@ -1371,6 +1417,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Otvoriť zariadenie"
@ -1476,6 +1525,9 @@ msgstr "Možnosti playlistu"
msgid "Playlist search"
msgstr "Hľadanie v playliste"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1528,6 +1580,9 @@ msgstr "Priebeh"
msgid "Push Wiiremote button"
msgstr "Stlač tlačidlo na Wiiremote"
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Kvalita"
@ -1669,6 +1724,12 @@ msgstr "Hľadať v Magnatune"
msgid "Search for album covers..."
msgstr "Hľadať obaly albumov..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Druhá úroveň"
@ -1750,6 +1811,9 @@ msgstr "Zobrazovať krásne OSD"
msgid "Show above status bar"
msgstr "Zobraziť nad stavovou lištou"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Ukázať celú veľkosť..."
@ -1804,6 +1868,9 @@ msgstr "Malý obal albumu"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1822,6 +1889,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonogram"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Začať playlist práve prehrávanou"
@ -2152,6 +2225,12 @@ msgstr "Wma"
msgid "Year"
msgstr "Rok"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Rok - Album"
@ -2225,19 +2304,46 @@ msgstr "[kliknite pre úpravu]"
msgid "add %n songs"
msgstr "pridať %n piesní"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "disk %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kbps"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "presunúť piesne"
msgid "on"
msgstr ""
msgid "options"
msgstr "možnosti"
@ -2245,6 +2351,9 @@ msgstr "možnosti"
msgid "remove %n songs"
msgstr "odstrániť %n piesní"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "zastaviť"

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr " sekund"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 albumov"
@ -124,6 +127,17 @@ msgstr ""
"<p>V primeru da odseke besedila, ki vsebujejo žetone, obdate z zavitimi "
"oklepaji, bodo odseki skriti, če je žeton prazen.</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -179,6 +193,9 @@ msgstr "Dodaj medije"
msgid "Add new folder..."
msgstr "Dodaj novo mapo ..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Dodaj pretok ..."
@ -290,6 +307,9 @@ msgstr "Ali resnično želite izbrisati prednastavitev \"%1\"?"
msgid "Artist"
msgstr "Izvajalec"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -393,6 +413,9 @@ msgstr "Izberi barvo ..."
msgid "Choose from the list"
msgstr "Izberi s seznama"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Ročno izberite ovitek"
@ -875,6 +898,9 @@ msgstr "Zaporedna številka datotečnega sistema"
msgid "Filesystem type"
msgstr "Vrsta datotečnega sistema"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Prva raven"
@ -1118,6 +1144,9 @@ msgstr "Geslo Last.fm"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1133,12 +1162,29 @@ msgstr "Pustite prazno za privzeto. Primeri: \"/dev/dsp\", \"front\", itd."
msgid "Length"
msgstr "Dolžina"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Knjižnica"
msgid "Library advanced grouping"
msgstr "Napredno združevanje v knjižnici"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "V živo"
@ -1371,6 +1417,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Odpri napravo"
@ -1476,6 +1525,9 @@ msgstr "Možnosti seznama predvajanja"
msgid "Playlist search"
msgstr "Iskanje po seznamu predvajanja"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1528,6 +1580,9 @@ msgstr "Potek"
msgid "Push Wiiremote button"
msgstr "Pritisnite gumb Wiiremote"
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Kakovost"
@ -1669,6 +1724,12 @@ msgstr "Išči na Magnatune"
msgid "Search for album covers..."
msgstr "Najdi ovitke albumov ..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Druga raven"
@ -1750,6 +1811,9 @@ msgstr "Pokaži lep zaslonski prikaz"
msgid "Show above status bar"
msgstr "Pokaži nad vrstico stanja"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Pokaži v polni velikosti ..."
@ -1804,6 +1868,9 @@ msgstr "Majhen ovitek albuma"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1822,6 +1889,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonogram"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Predvajaj skladbo, ki je označena v predvajalnem seznamu"
@ -2150,6 +2223,12 @@ msgstr "Windows Media Audio"
msgid "Year"
msgstr "Leto"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Leto - Album"
@ -2224,19 +2303,46 @@ msgstr "[kliknite za urejanje]"
msgid "add %n songs"
msgstr "dodaj %n skladb"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "udarcev/min"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "disk %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kb/s"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "premakni skladbe"
msgid "on"
msgstr ""
msgid "options"
msgstr "možnosti"
@ -2244,6 +2350,9 @@ msgstr "možnosti"
msgid "remove %n songs"
msgstr "odstrani %n skladb"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "zaustavi"

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr " секунди"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 албума"
@ -120,6 +123,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "АИФФ"
@ -175,6 +189,9 @@ msgstr "Додај медијум"
msgid "Add new folder..."
msgstr "Додај нову фасциклу..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Додај ток..."
@ -286,6 +303,9 @@ msgstr "Сигурнисте да желите обрисати претподе
msgid "Artist"
msgstr "Извођач"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -389,6 +409,9 @@ msgstr "Одабери боју..."
msgid "Choose from the list"
msgstr "Одабери са листе"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Ручно одабери омот"
@ -862,6 +885,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Први ниво"
@ -1102,6 +1128,9 @@ msgstr "ЛастФМ лозинка"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1117,12 +1146,29 @@ msgstr ""
msgid "Length"
msgstr "Трајање"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Библиотека"
msgid "Library advanced grouping"
msgstr "Напредно груписање библиотеке"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Уживо"
@ -1353,6 +1399,9 @@ msgstr ""
msgid "Ogg Vorbis"
msgstr "ОГГ Ворбис"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1458,6 +1507,9 @@ msgstr "Опције листе нуера"
msgid "Playlist search"
msgstr "Претрага листе нумера"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1510,6 +1562,9 @@ msgstr "Напредак"
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Квалитет"
@ -1651,6 +1706,12 @@ msgstr "Претражи Магнатјун"
msgid "Search for album covers..."
msgstr "Тражи омоте албума"
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Други ниво"
@ -1732,6 +1793,9 @@ msgstr ""
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr ""
@ -1786,6 +1850,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1804,6 +1871,12 @@ msgstr ""
msgid "Sonogram"
msgstr ""
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr ""
@ -2120,6 +2193,12 @@ msgstr ""
msgid "Year"
msgstr "Година"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Година — Албум"
@ -2185,19 +2264,46 @@ msgstr ""
msgid "add %n songs"
msgstr "додај %n песама"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "опм"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "диск %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kb/s"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr ""
msgid "on"
msgstr ""
msgid "options"
msgstr "Опције"
@ -2205,6 +2311,9 @@ msgstr "Опције"
msgid "remove %n songs"
msgstr "remove %n песама"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "Заустави"

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr " sekunder"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 album"
@ -120,6 +123,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -175,6 +189,9 @@ msgstr "Lägg till media"
msgid "Add new folder..."
msgstr "Lägg till mapp..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Lägg till ström..."
@ -286,6 +303,9 @@ msgstr "Är du säker på att du vill ta bort förinställningen \"%1\"?"
msgid "Artist"
msgstr "Artist"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -389,6 +409,9 @@ msgstr "Välj färg..."
msgid "Choose from the list"
msgstr "Välj från listan"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Ange omslag manuellt"
@ -865,6 +888,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Första nivån"
@ -1106,6 +1132,9 @@ msgstr "Last.fm lösenord"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1121,12 +1150,29 @@ msgstr "Lämna tomt för standardvärde. Exempel: \"/dev/dsp\", \"front\", etc."
msgid "Length"
msgstr "Speltid"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Bibliotek"
msgid "Library advanced grouping"
msgstr "Bibliotek avancerad gruppering"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Live"
@ -1357,6 +1403,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1462,6 +1511,9 @@ msgstr "Flaggor för spellista"
msgid "Playlist search"
msgstr "Sök spellista"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1514,6 +1566,9 @@ msgstr "Förlopp"
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Kvalitet"
@ -1655,6 +1710,12 @@ msgstr "Sök Magnatune"
msgid "Search for album covers..."
msgstr "Sök efter omslagsbilder..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Andra nivån"
@ -1736,6 +1797,9 @@ msgstr "Visa en snygg OSD"
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Visa full storlek..."
@ -1790,6 +1854,9 @@ msgstr "Liten omslagsbild"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1808,6 +1875,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Spektrogram"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Starta spellistan som spelas för tillfället"
@ -2133,6 +2206,12 @@ msgstr ""
msgid "Year"
msgstr "År"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "År - Album"
@ -2200,19 +2279,46 @@ msgstr "[klicka för att redigera]"
msgid "add %n songs"
msgstr "Lägg till %n songer"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "skiva %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kbps"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "Flytta songer"
msgid "on"
msgstr ""
msgid "options"
msgstr "alternativ"
@ -2220,6 +2326,9 @@ msgstr "alternativ"
msgid "remove %n songs"
msgstr "Ta bort %n songer"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "stoppa"

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr " saniye"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 albüm"
@ -124,6 +127,17 @@ msgstr ""
"<p>İşaret içeren metnin bölümlerini süslü parantez ile sarmalarsanız, işaret "
"boşsa o bölüm görünmeyecektir.</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -179,6 +193,9 @@ msgstr "Ortam ekle"
msgid "Add new folder..."
msgstr "Yeni dosya ekle..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Yayın ekle..."
@ -290,6 +307,9 @@ msgstr "\"%1\" ayarını silmek istediğinizden emin misiniz?"
msgid "Artist"
msgstr "Sanatçı"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -393,6 +413,9 @@ msgstr "Rengi seç..."
msgid "Choose from the list"
msgstr "Listeden seç"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Elle kapak seç"
@ -875,6 +898,9 @@ msgstr "Dosya sistemi seri numarası"
msgid "Filesystem type"
msgstr "Dosya sistemi türü"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "İlk Seviye"
@ -1119,6 +1145,9 @@ msgstr "Last.fm parolası"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1136,12 +1165,29 @@ msgstr ""
msgid "Length"
msgstr "Süre"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Kütüphane"
msgid "Library advanced grouping"
msgstr "Kütüphane gelişmiş gruplama"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Canlı"
@ -1374,6 +1420,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Aygıtı aç"
@ -1479,6 +1528,9 @@ msgstr "Çalma listesi seçenekleri"
msgid "Playlist search"
msgstr "Çalma listesi araması"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1531,6 +1583,9 @@ msgstr "İlerleme"
msgid "Push Wiiremote button"
msgstr "Wiiremote düğmesine basın"
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Kalite"
@ -1672,6 +1727,12 @@ msgstr "Magnatune'da Ara"
msgid "Search for album covers..."
msgstr "Albüm kapaklarını ara..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "İkinci seviye"
@ -1753,6 +1814,9 @@ msgstr "Şirin bir OSD göster"
msgid "Show above status bar"
msgstr "Durum çubuğunun üzerinde göster"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Tam boyutta göster"
@ -1807,6 +1871,9 @@ msgstr "Küçük albüm kapağı"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1825,6 +1892,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Sonogram"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr ""
@ -2145,6 +2218,12 @@ msgstr "Windows Media audio"
msgid "Year"
msgstr "Yıl"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Yıl - Albüm"
@ -2219,19 +2298,46 @@ msgstr "[düzenlemek için tıklayın]"
msgid "add %n songs"
msgstr "%n şarkıyı ekle"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "disk %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kbps"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "parçaları taşı"
msgid "on"
msgstr ""
msgid "options"
msgstr "seçenekler"
@ -2239,6 +2345,9 @@ msgstr "seçenekler"
msgid "remove %n songs"
msgstr "%n şarkkıyı çıkart"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "stop"

View File

@ -17,6 +17,9 @@ msgstr ""
msgid " seconds"
msgstr ""
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr ""
@ -110,6 +113,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr ""
@ -165,6 +179,9 @@ msgstr ""
msgid "Add new folder..."
msgstr ""
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr ""
@ -276,6 +293,9 @@ msgstr ""
msgid "Artist"
msgstr ""
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -379,6 +399,9 @@ msgstr ""
msgid "Choose from the list"
msgstr ""
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr ""
@ -849,6 +872,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr ""
@ -1087,6 +1113,9 @@ msgstr ""
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1102,12 +1131,29 @@ msgstr ""
msgid "Length"
msgstr ""
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr ""
msgid "Library advanced grouping"
msgstr ""
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr ""
@ -1338,6 +1384,9 @@ msgstr ""
msgid "Ogg Vorbis"
msgstr ""
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1443,6 +1492,9 @@ msgstr ""
msgid "Playlist search"
msgstr ""
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1495,6 +1547,9 @@ msgstr ""
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr ""
@ -1636,6 +1691,12 @@ msgstr ""
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr ""
@ -1717,6 +1778,9 @@ msgstr ""
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr ""
@ -1771,6 +1835,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1789,6 +1856,12 @@ msgstr ""
msgid "Sonogram"
msgstr ""
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr ""
@ -2105,6 +2178,12 @@ msgstr ""
msgid "Year"
msgstr ""
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr ""
@ -2168,19 +2247,46 @@ msgstr ""
msgid "add %n songs"
msgstr ""
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr ""
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr ""
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr ""
msgid "less than"
msgstr ""
msgid "move songs"
msgstr ""
msgid "on"
msgstr ""
msgid "options"
msgstr ""
@ -2188,6 +2294,9 @@ msgstr ""
msgid "remove %n songs"
msgstr ""
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr " секунд"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 альбом(ів)"
@ -124,6 +127,17 @@ msgstr ""
"<p>Якщо ви берете частину тексту з міткою у фігурні дужки, ця частина буде "
"приховуватись, якщо мітка порожня.</p>"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -179,6 +193,9 @@ msgstr "Додати носій"
msgid "Add new folder..."
msgstr "Додати нову теку..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "Додати потік..."
@ -290,6 +307,9 @@ msgstr "Ви дійсно хочите вилучити задане \"%1\"?"
msgid "Artist"
msgstr "Виконавець"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -393,6 +413,9 @@ msgstr "Вибрати колір..."
msgid "Choose from the list"
msgstr "Вибрати зі списку"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "Виберіть обкладинку вручну"
@ -874,6 +897,9 @@ msgstr "Серійний номер файлової системи"
msgid "Filesystem type"
msgstr "Тип файлової системи"
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "Перший рівень"
@ -1118,6 +1144,9 @@ msgstr "Пароль Last.fm"
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1133,12 +1162,29 @@ msgstr "Типово, залишити порожнім. Наприклад: \"
msgid "Length"
msgstr "Тривалість"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "Фонотека"
msgid "Library advanced grouping"
msgstr "Розширене групування фонотеки"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "Наживо"
@ -1371,6 +1417,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr "Відкрити пристрій"
@ -1476,6 +1525,9 @@ msgstr "Параметри списку відтворення"
msgid "Playlist search"
msgstr "Пошук списку відтворення"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1528,6 +1580,9 @@ msgstr "Поступ"
msgid "Push Wiiremote button"
msgstr "Натиснути кнопку Wiiremote"
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr "Якість"
@ -1669,6 +1724,12 @@ msgstr "Пошук на Magnatune"
msgid "Search for album covers..."
msgstr "Пошук обкладинок альбомів..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "Другий рівень"
@ -1750,6 +1811,9 @@ msgstr "Показувати приємні повідомлення OSD"
msgid "Show above status bar"
msgstr "Показати вище, в рядку стану"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "Показати на повний розмір..."
@ -1804,6 +1868,9 @@ msgstr "Маленька обкладинка альбому"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1822,6 +1889,12 @@ msgstr ""
msgid "Sonogram"
msgstr "Сонограма"
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "Запустити список відтворення, що відтворюється на цей час"
@ -2145,6 +2218,12 @@ msgstr "Windows Media audio"
msgid "Year"
msgstr "Рік"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "Рік - Альбом"
@ -2219,19 +2298,46 @@ msgstr "[клацніть, щоб змінити]"
msgid "add %n songs"
msgstr "додати %n композицій"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "такт/хв."
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr "диск %1"
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "КБ/с"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "перемістити композиції"
msgid "on"
msgstr ""
msgid "options"
msgstr "параметри"
@ -2239,6 +2345,9 @@ msgstr "параметри"
msgid "remove %n songs"
msgstr "вилучити %n композицій"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr "зупинити"

View File

@ -26,6 +26,9 @@ msgstr ""
msgid " seconds"
msgstr ""
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr ""
@ -119,6 +122,17 @@ msgid ""
"that section will be hidden if the token is empty.</p>"
msgstr ""
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr ""
@ -174,6 +188,9 @@ msgstr ""
msgid "Add new folder..."
msgstr "添加新文件夹..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr ""
@ -285,6 +302,9 @@ msgstr ""
msgid "Artist"
msgstr "艺人"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -388,6 +408,9 @@ msgstr ""
msgid "Choose from the list"
msgstr ""
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr ""
@ -858,6 +881,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr ""
@ -1096,6 +1122,9 @@ msgstr ""
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1111,12 +1140,29 @@ msgstr ""
msgid "Length"
msgstr "长度"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr ""
msgid "Library advanced grouping"
msgstr ""
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr ""
@ -1347,6 +1393,9 @@ msgstr ""
msgid "Ogg Vorbis"
msgstr ""
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1452,6 +1501,9 @@ msgstr "播放列表选项"
msgid "Playlist search"
msgstr ""
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1504,6 +1556,9 @@ msgstr ""
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr ""
@ -1645,6 +1700,12 @@ msgstr ""
msgid "Search for album covers..."
msgstr ""
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr ""
@ -1726,6 +1787,9 @@ msgstr ""
msgid "Show above status bar"
msgstr ""
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr ""
@ -1780,6 +1844,9 @@ msgstr ""
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1798,6 +1865,12 @@ msgstr ""
msgid "Sonogram"
msgstr ""
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr ""
@ -2114,6 +2187,12 @@ msgstr ""
msgid "Year"
msgstr "年份"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "年份 - 专辑"
@ -2177,19 +2256,46 @@ msgstr ""
msgid "add %n songs"
msgstr ""
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr ""
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr ""
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr ""
msgid "less than"
msgstr ""
msgid "move songs"
msgstr ""
msgid "on"
msgstr ""
msgid "options"
msgstr "选项"
@ -2197,6 +2303,9 @@ msgstr "选项"
msgid "remove %n songs"
msgstr ""
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""

View File

@ -27,6 +27,9 @@ msgstr ""
msgid " seconds"
msgstr " 秒"
msgid " songs"
msgstr ""
#, qt-format
msgid "%1 albums"
msgstr "%1 專輯"
@ -124,6 +127,17 @@ msgstr ""
"<p>若您將一段文字的前後用大括號括起來那段文字將在token是空白的情況下被隱"
"藏。"
msgid ""
"A smart playlist is a dynamic list of songs that come from your library. "
"There are different types of smart playlist that offer different ways of "
"selecting songs."
msgstr ""
msgid ""
"A song will be included in the playlist if it matches all of these "
"conditions."
msgstr ""
msgid "AIFF"
msgstr "AIFF"
@ -179,6 +193,9 @@ msgstr "加入媒體"
msgid "Add new folder..."
msgstr "新增檔案夾..."
msgid "Add search term"
msgstr ""
msgid "Add stream..."
msgstr "加入網路串流..."
@ -290,6 +307,9 @@ msgstr ""
msgid "Artist"
msgstr "演出者"
msgid "Artist A-Z"
msgstr ""
msgid "Artist info"
msgstr ""
@ -393,6 +413,9 @@ msgstr "選擇顏色 ..."
msgid "Choose from the list"
msgstr "從清單中選擇"
msgid "Choose how the playlist is sorted and how many songs it will contain."
msgstr ""
msgid "Choose manual cover"
msgstr "選擇手動覆蓋"
@ -863,6 +886,9 @@ msgstr ""
msgid "Filesystem type"
msgstr ""
msgid "Find songs in your library that match the criteria you specify."
msgstr ""
msgid "First level"
msgstr "第一層次"
@ -1102,6 +1128,9 @@ msgstr ""
msgid "Last.fm play counts"
msgstr ""
msgid "Last.fm similar artists"
msgstr ""
msgid "Last.fm tags"
msgstr ""
@ -1117,12 +1146,29 @@ msgstr ""
msgid "Length"
msgstr "長度"
msgid "Length (longest first)"
msgstr ""
msgid "Length (shortest first)"
msgstr ""
msgid ""
"Let Last.fm suggest songs from your library that are similar to one you "
"specify."
msgstr ""
msgid "Library"
msgstr "音樂庫"
msgid "Library advanced grouping"
msgstr "音樂庫進階的歸類"
msgid "Library search"
msgstr ""
msgid "Limits"
msgstr ""
msgid "Live"
msgstr "即時"
@ -1353,6 +1399,9 @@ msgstr "Ogg Speex"
msgid "Ogg Vorbis"
msgstr "Ogg Vorbis"
msgid "Only show the first"
msgstr ""
msgid "Open device"
msgstr ""
@ -1458,6 +1507,9 @@ msgstr "播放清單選擇"
msgid "Playlist search"
msgstr "播放清單搜尋"
msgid "Playlist type"
msgstr ""
msgid "Playlists"
msgstr ""
@ -1510,6 +1562,9 @@ msgstr "進展"
msgid "Push Wiiremote button"
msgstr ""
msgid "Put songs in a random order"
msgstr ""
msgid "Quality"
msgstr ""
@ -1651,6 +1706,12 @@ msgstr "搜尋 Magnatune"
msgid "Search for album covers..."
msgstr "搜尋專輯封面..."
msgid "Search options"
msgstr ""
msgid "Search terms"
msgstr ""
msgid "Second level"
msgstr "第二個層次"
@ -1732,6 +1793,9 @@ msgstr "顯示一個漂亮的OSD"
msgid "Show above status bar"
msgstr "顯示在狀態欄上方"
msgid "Show all the songs"
msgstr ""
msgid "Show fullsize..."
msgstr "全螢幕..."
@ -1786,6 +1850,9 @@ msgstr "小專輯封面"
msgid "Small sidebar"
msgstr ""
msgid "Smart playlist"
msgstr ""
msgid "Smart playlists"
msgstr ""
@ -1804,6 +1871,12 @@ msgstr ""
msgid "Sonogram"
msgstr ""
msgid "Sort songs by"
msgstr ""
msgid "Sorting"
msgstr ""
msgid "Start the playlist currently playing"
msgstr "開始播放目前播放清單"
@ -2120,6 +2193,12 @@ msgstr ""
msgid "Year"
msgstr "年份"
msgid "Year (newest first)"
msgstr ""
msgid "Year (oldest first)"
msgstr ""
msgid "Year - Album"
msgstr "年份 - 專輯"
@ -2185,19 +2264,46 @@ msgstr "[點擊以編輯]"
msgid "add %n songs"
msgstr "加入 %n 歌"
msgid "after"
msgstr ""
msgid "before"
msgstr ""
msgid "bpm"
msgstr "bpm"
msgid "contains"
msgstr ""
#, qt-format
msgid "disc %1"
msgstr ""
msgid "does not contain"
msgstr ""
msgid "ends with"
msgstr ""
msgid "equals"
msgstr ""
msgid "greater than"
msgstr ""
msgid "kbps"
msgstr "kbps"
msgid "less than"
msgstr ""
msgid "move songs"
msgstr "移動歌曲"
msgid "on"
msgstr ""
msgid "options"
msgstr "選項"
@ -2205,6 +2311,9 @@ msgstr "選項"
msgid "remove %n songs"
msgstr "移除 %n 歌"
msgid "starts with"
msgstr ""
msgid "stop"
msgstr ""