Add an "Install script from file..." button

This commit is contained in:
David Sansome 2011-01-18 23:10:22 +00:00
parent 4db998c0b6
commit 3f9dec3808
58 changed files with 1929 additions and 35 deletions

View File

@ -154,6 +154,7 @@ set(SOURCES
radio/savedradio.cpp
radio/somafmservice.cpp
scripting/installscriptdialog.cpp
scripting/languageengine.cpp
scripting/script.cpp
scripting/scriptarchive.cpp
@ -335,6 +336,7 @@ set(HEADERS
radio/savedradio.h
radio/somafmservice.h
scripting/installscriptdialog.h
scripting/languageengine.h
scripting/scriptdialog.h
scripting/scriptinterface.h
@ -428,6 +430,7 @@ set(UI
radio/magnatunedownloaddialog.ui
radio/radioviewcontainer.ui
scripting/installscriptdialog.ui
scripting/scriptdialog.ui
smartplaylists/querysearchpage.ui

View File

@ -17,13 +17,14 @@
#include "utilities.h"
#include <QtGlobal>
#include <QCoreApplication>
#include <QDateTime>
#include <QDir>
#include <QIODevice>
#include <QStringList>
#include <QTemporaryFile>
#include <QtDebug>
#include <QtGlobal>
#if defined(Q_OS_UNIX)
# include <sys/statvfs.h>
@ -152,15 +153,38 @@ QString MakeTempDir() {
void RemoveRecursive(const QString& path) {
QDir dir(path);
foreach (const QString& child, dir.entryList(QDir::NoDotAndDotDot | QDir::Dirs))
foreach (const QString& child, dir.entryList(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Hidden))
RemoveRecursive(path + "/" + child);
foreach (const QString& child, dir.entryList(QDir::NoDotAndDotDot | QDir::Files))
foreach (const QString& child, dir.entryList(QDir::NoDotAndDotDot | QDir::Files | QDir::Hidden))
QFile::remove(path + "/" + child);
dir.rmdir(path);
}
bool CopyRecursive(const QString& source, const QString& destination) {
// Make the destination directory
QString dir_name = source.section('/', -1, -1);
QString dest_path = destination + "/" + dir_name;
QDir().mkpath(dest_path);
QDir dir(source);
foreach (const QString& child, dir.entryList(QDir::NoDotAndDotDot | QDir::Dirs)) {
if (!CopyRecursive(source + "/" + child, dest_path)) {
qWarning() << "Failed to copy dir" << source + "/" + child << "to" << dest_path;
return false;
}
}
foreach (const QString& child, dir.entryList(QDir::NoDotAndDotDot | QDir::Files)) {
if (!QFile::copy(source + "/" + child, dest_path + "/" + child)) {
qWarning() << "Failed to copy file" << source + "/" + child << "to" << dest_path;
return false;
}
}
return true;
}
bool Copy(QIODevice* source, QIODevice* destination) {
if (!source->open(QIODevice::ReadOnly))
return false;

View File

@ -39,6 +39,7 @@ namespace Utilities {
QString MakeTempDir();
void RemoveRecursive(const QString& path);
bool CopyRecursive(const QString& source, const QString& destination);
bool Copy(QIODevice* source, QIODevice* destination);

View File

@ -0,0 +1,50 @@
/* This file is part of Clementine.
Copyright 2010, David Sansome <me@davidsansome.com>
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 "installscriptdialog.h"
#include "scriptarchive.h"
#include "ui_installscriptdialog.h"
#include <QListWidgetItem>
#include <QMessageBox>
InstallScriptDialog::InstallScriptDialog(ScriptArchive* archive, QWidget *parent)
: QDialog(parent),
ui_(new Ui_InstallScriptDialog),
archive_(archive)
{
setAttribute(Qt::WA_DeleteOnClose);
ui_->setupUi(this);
// Add the script info to the list
foreach (const ScriptInfo& info, archive->info()) {
ui_->list->addItem(new QListWidgetItem(info.icon(), info.name(), ui_->list));
}
}
InstallScriptDialog::~InstallScriptDialog() {
delete ui_;
delete archive_;
}
void InstallScriptDialog::accept() {
if (!archive_->Install()) {
QMessageBox::warning(this, tr("Error installing script"),
tr("Some files failed to install. The script may not work correctly."));
}
QDialog::accept();
}

View File

@ -0,0 +1,44 @@
/* This file is part of Clementine.
Copyright 2010, David Sansome <me@davidsansome.com>
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 INSTALLSCRIPTDIALOG_H
#define INSTALLSCRIPTDIALOG_H
#include <QDialog>
class ScriptArchive;
class Ui_InstallScriptDialog;
class InstallScriptDialog : public QDialog {
Q_OBJECT
public:
// The dialog will take ownership of the archive and will destroy the archive
// *and itself* when it is closed.
InstallScriptDialog(ScriptArchive* archive, QWidget* parent = 0);
~InstallScriptDialog();
public slots:
void accept();
private:
Ui_InstallScriptDialog* ui_;
ScriptArchive* archive_;
};
#endif // INSTALLSCRIPTDIALOG_H

View File

@ -0,0 +1,118 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>InstallScriptDialog</class>
<widget class="QDialog" name="InstallScriptDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>419</width>
<height>277</height>
</rect>
</property>
<property name="windowTitle">
<string>Install scripts</string>
</property>
<property name="styleSheet">
<string notr="true">#warning {
background: rgba(255, 127, 127, 128);
border: 1px solid palette(dark);
border-radius: 5px;
padding: 2px;
}
#list {
font-weight: bold;
}</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>Are you sure you want to install the following scripts?</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QListWidget" name="list">
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::NoSelection</enum>
</property>
<property name="iconSize">
<size>
<width>32</width>
<height>32</height>
</size>
</property>
<property name="spacing">
<number>5</number>
</property>
<property name="uniformItemSizes">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="warning">
<property name="text">
<string>Warning: scripts have full access to your computer and your music. Only install scripts that you trust.</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>InstallScriptDialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>248</x>
<y>254</y>
</hint>
<hint type="destinationlabel">
<x>157</x>
<y>274</y>
</hint>
</hints>
</connection>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>InstallScriptDialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>316</x>
<y>260</y>
</hint>
<hint type="destinationlabel">
<x>286</x>
<y>274</y>
</hint>
</hints>
</connection>
</connections>
</ui>

View File

@ -17,8 +17,12 @@
#include "config.h"
#include "scriptarchive.h"
#include "core/utilities.h"
#include <QDir>
#include <QFile>
#include <QTemporaryFile>
#include <QtConcurrentRun>
#ifdef HAVE_LIBARCHIVE
# include <archive.h>
@ -30,7 +34,7 @@ namespace {
// Read callbacks for libarchive
struct IODeviceReadState {
QIODevice* device_;
char buf_[1024];
char buf_[4096];
};
ssize_t IODeviceRead(struct archive* a, void* client_data, const void** buf) {
@ -46,19 +50,60 @@ namespace {
state->device_->close();
return 0;
}
// Utility function to copy an entry to a QIODevice
void CopyArchiveEntry(struct archive* in, struct archive* out) {
char buf[4096];
forever {
size_t bytes_read = archive_read_data(in, buf, sizeof(buf));
if (bytes_read == ARCHIVE_FATAL ||
bytes_read == ARCHIVE_WARN ||
bytes_read == ARCHIVE_RETRY) {
qWarning() << "Error reading archive:" << archive_error_string(in);
return;
}
if (bytes_read == 0) {
break;
}
if (archive_write_data(out, buf, bytes_read) == -1) {
qWarning() << "Error extracting archive:" << archive_error_string(out);
return;
}
}
}
}
#endif // HAVE_LIBARCHIVE
bool ScriptArchive::Load(const QString& filename) {
ScriptArchive::ScriptArchive(ScriptManager* manager)
: manager_(manager)
{
}
ScriptArchive::~ScriptArchive() {
if (!temp_dir_name_.isEmpty() && QFile::exists(temp_dir_name_)) {
Utilities::RemoveRecursive(temp_dir_name_);
}
}
QFuture<bool> ScriptArchive::LoadFromFileAsync(const QString& filename) {
return QtConcurrent::run(this, &ScriptArchive::LoadFromFile, filename);
}
QFuture<bool> ScriptArchive::LoadFromDeviceAsync(QIODevice* device) {
return QtConcurrent::run(this, &ScriptArchive::LoadFromDevice, device);
}
bool ScriptArchive::LoadFromFile(const QString& filename) {
QFile file(filename);
if (!file.open(QIODevice::ReadOnly)) {
return false;
}
return Load(&file);
return LoadFromDevice(&file);
}
bool ScriptArchive::Load(QIODevice* device) {
bool ScriptArchive::LoadFromDevice(QIODevice* device) {
#ifdef HAVE_LIBARCHIVE
archive* a = archive_read_new();
archive_read_support_compression_gzip(a);
@ -67,20 +112,73 @@ bool ScriptArchive::Load(QIODevice* device) {
IODeviceReadState read_state;
read_state.device_ = device;
// Open the archive
if (archive_read_open(a, &read_state, NULL, IODeviceRead, IODeviceClose)) {
archive_read_finish(a);
return false;
}
info_.clear();
// Open a writer to a location in /tmp
temp_dir_name_ = Utilities::MakeTempDir();
archive* writer = archive_write_disk_new();
archive_write_disk_set_options(writer,
ARCHIVE_EXTRACT_SECURE_SYMLINKS | ARCHIVE_EXTRACT_SECURE_NODOTDOT);
archive_entry* entry;
archive_entry* out_entry = archive_entry_new();
while (archive_read_next_header(a, &entry) == 0) {
// TODO
// Figure out where we'll extract this file
const QString pathname = QString::fromUtf8(archive_entry_pathname(entry));
const QString destination = temp_dir_name_ + "/" + pathname;
// Copy the header and change the path name
archive_entry_clear(out_entry);
archive_entry_set_size(out_entry, archive_entry_size(entry));
archive_entry_set_filetype(out_entry, archive_entry_filetype(entry));
archive_entry_set_mode(out_entry, archive_entry_mode(entry));
archive_entry_copy_pathname(out_entry, destination.toLocal8Bit().constData());
// Write the file
archive_write_header(writer, out_entry);
CopyArchiveEntry(a, writer);
// Have we found a script.ini?
const QStringList source_parts = pathname.split('/');
if (source_parts.count() == 2 && source_parts[1] == ScriptInfo::kIniFileName) {
// Parse it
ScriptInfo info;
info.InitFromFile(manager_,
destination.section('/', -2, -2),
destination.section('/', 0, -2),
destination);
if (info.is_valid()) {
info_ << info;
}
}
}
archive_entry_free(out_entry);
archive_read_finish(a);
return true;
return !info_.isEmpty();
#else // HAVE_LIBARCHIVE
return false;
#endif // HAVE_LIBARCHIVE
}
bool ScriptArchive::Install() const {
// Where should they go?
QString destination = Utilities::GetConfigPath(Utilities::Path_Scripts);
// Copy each directory
foreach (const ScriptInfo& info, info_) {
if (!Utilities::CopyRecursive(info.path(), destination))
return false;
}
return true;
}

View File

@ -22,19 +22,29 @@
#include <QFuture>
class ScriptManager;
class ScriptArchive {
public:
bool Load(const QString& filename);
bool Load(QIODevice* device);
QFuture<bool> LoadAsync(const QString& filename);
QFuture<bool> LoadAsync(QIODevice* device);
ScriptArchive(ScriptManager* manager);
~ScriptArchive();
const ScriptInfo& info() const { return info_; }
bool LoadFromFile(const QString& filename);
bool LoadFromDevice(QIODevice* device);
QFuture<bool> LoadFromFileAsync(const QString& filename);
QFuture<bool> LoadFromDeviceAsync(QIODevice* device);
const QList<ScriptInfo>& info() const { return info_; }
bool Install() const;
private:
ScriptInfo info_;
Q_DISABLE_COPY(ScriptArchive);
ScriptManager* manager_;
QString temp_dir_name_;
QList<ScriptInfo> info_;
};
#endif // SCRIPTARCHIVE_H

View File

@ -15,12 +15,20 @@
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include "installscriptdialog.h"
#include "scriptarchive.h"
#include "scriptdialog.h"
#include "scriptmanager.h"
#include "ui_scriptdialog.h"
#include "core/boundfuturewatcher.h"
#include "ui/iconloader.h"
#include <QFileDialog>
#include <QMessageBox>
#include <QPainter>
#include <QPushButton>
#include <QSettings>
#include <QtDebug>
const int ScriptDelegate::kIconSize = 64;
@ -28,6 +36,8 @@ const int ScriptDelegate::kPadding = 6;
const int ScriptDelegate::kItemHeight = kIconSize + kPadding*2;
const int ScriptDelegate::kLinkSpacing = 10;
const char* ScriptDialog::kSettingsGroup = "ScriptDialog";
ScriptDelegate::ScriptDelegate(QObject* parent)
: QStyledItemDelegate(parent),
bold_metrics_(bold_)
@ -99,11 +109,31 @@ ScriptDialog::ScriptDialog(QWidget* parent)
connect(ui_->settings, SIGNAL(clicked()), SLOT(Settings()));
connect(ui_->reload, SIGNAL(clicked()), SLOT(Reload()));
// Add a button to install a script from a file
QPushButton* install_button = new QPushButton(
IconLoader::Load("document-open"), tr("Install from file..."), this);
connect(install_button, SIGNAL(clicked()), SLOT(InstallFromFile()));
ui_->button_box->addButton(install_button, QDialogButtonBox::ActionRole);
// But disable it if we don't have libarchive
#ifndef HAVE_LIBARCHIVE
install_button->setEnabled(false);
#endif
// Start on the first tab
ui_->tab_widget->setCurrentIndex(0);
// Make the list pretty
ui_->list->setItemDelegate(new ScriptDelegate(this));
// Hide developer mode stuff by default
ui_->console->hide();
ui_->reload->hide();
// Make the dialog smaller
resize(width(), minimumSizeHint().height());
ReloadSettings();
}
ScriptDialog::~ScriptDialog() {
@ -165,3 +195,52 @@ void ScriptDialog::Reload() {
void ScriptDialog::LogLineAdded(const QString& html) {
ui_->console->append(html);
}
void ScriptDialog::ReloadSettings() {
QSettings s;
s.beginGroup(kSettingsGroup);
last_open_dir_ = s.value("last_open_dir", QDir::homePath()).toString();
}
void ScriptDialog::InstallFromFile() {
QString filename = QFileDialog::getOpenFileName(
this, tr("Install script file"), last_open_dir_,
tr("Clementine scripts") + " (*.tar.gz *.clem)");
if (filename.isEmpty())
return;
// Save this directory
last_open_dir_ = filename;
QSettings s;
s.beginGroup(kSettingsGroup);
s.setValue("last_open_dir", last_open_dir_);
// Try opening the archive. We do this in the background.
ScriptArchive* archive = new ScriptArchive(manager_);
QFuture<bool> future = archive->LoadFromFileAsync(filename);
BoundFutureWatcher<bool, ScriptArchive*>* watcher =
new BoundFutureWatcher<bool, ScriptArchive*>(archive);
watcher->setFuture(future);
connect(watcher, SIGNAL(finished()), SLOT(InstallFromFileLoaded()));
}
void ScriptDialog::InstallFromFileLoaded() {
BoundFutureWatcher<bool, ScriptArchive*>* watcher =
reinterpret_cast<BoundFutureWatcher<bool, ScriptArchive*>*>(sender());
watcher->deleteLater();
ScriptArchive* archive = watcher->data();
const bool success = watcher->result();
if (success) {
// The dialog will delete itself and the archive when it's done.
InstallScriptDialog* dialog = new InstallScriptDialog(archive, this);
dialog->show();
} else {
QMessageBox::warning(this, tr("Error opening script archive"),
tr("This is not a valid Clementine script file."), QMessageBox::Close);
delete archive;
}
}

View File

@ -54,6 +54,8 @@ public:
ScriptDialog(QWidget* parent = 0);
~ScriptDialog();
static const char* kSettingsGroup;
void SetManager(ScriptManager* manager);
private slots:
@ -66,10 +68,18 @@ private slots:
void Settings();
void Reload();
void InstallFromFile();
void InstallFromFileLoaded();
private:
void ReloadSettings();
private:
Ui_ScriptDialog* ui_;
ScriptManager* manager_;
QString last_open_dir_;
};
#endif // SCRIPTDIALOG_H

View File

@ -55,16 +55,6 @@
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="reload">
<property name="enabled">
<bool>false</bool>
</property>
<property name="text">
<string>Reload</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="settings">
<property name="enabled">
@ -75,6 +65,16 @@
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="reload">
<property name="enabled">
<bool>false</bool>
</property>
<property name="text">
<string>Reload</string>
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
@ -147,8 +147,8 @@
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>398</x>
<y>392</y>
<x>548</x>
<y>342</y>
</hint>
<hint type="destinationlabel">
<x>157</x>
@ -163,8 +163,8 @@
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>466</x>
<y>392</y>
<x>616</x>
<y>342</y>
</hint>
<hint type="destinationlabel">
<x>286</x>
@ -179,8 +179,8 @@
<slot>setVisible(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>68</x>
<y>379</y>
<x>78</x>
<y>339</y>
</hint>
<hint type="destinationlabel">
<x>81</x>
@ -188,5 +188,21 @@
</hint>
</hints>
</connection>
<connection>
<sender>developer_mode</sender>
<signal>toggled(bool)</signal>
<receiver>reload</receiver>
<slot>setVisible(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>118</x>
<y>330</y>
</hint>
<hint type="destinationlabel">
<x>699</x>
<y>164</y>
</hint>
</hints>
</connection>
</connections>
</ui>

View File

@ -74,7 +74,7 @@ void ScriptInfo::InitFromFile(const ScriptManager* manager,
d->author_ = s.value("author").toString();
d->url_ = s.value("url").toString();
d->script_file_ = QFileInfo(QDir(path), s.value("script_file").toString()).absoluteFilePath();
d->icon_ = QIcon(QFileInfo(QDir(path), s.value("icon").toString()).absoluteFilePath());
d->icon_filename_ = QFileInfo(QDir(path), s.value("icon").toString()).absoluteFilePath();
}
bool ScriptInfo::operator ==(const ScriptInfo& other) const {
@ -97,7 +97,7 @@ void ScriptInfo::TakeMetadataFrom(const ScriptInfo& other) {
d->description_ = other.description();
d->author_ = other.author();
d->url_ = other.url();
d->icon_ = other.icon();
d->icon_filename_ = other.icon_filename();
d->language_ = other.language();
d->script_file_ = other.script_file();
}

View File

@ -55,7 +55,8 @@ public:
const QString& description() const { return d->description_; }
const QString& author() const { return d->author_; }
const QString& url() const { return d->url_; }
const QIcon& icon() const { return d->icon_; }
const QString& icon_filename() const { return d->icon_filename_; }
QIcon icon() const { return QIcon(icon_filename()); }
Language language() const { return d->language_; }
const QString& script_file() const { return d->script_file_; }
@ -74,7 +75,7 @@ private:
QString description_;
QString author_;
QString url_;
QIcon icon_;
QString icon_filename_;
Language language_;
QString script_file_;

View File

@ -342,6 +342,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr ""
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "اضغط هنا لإضافة بعض الموسيقى"
@ -899,10 +905,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1150,6 +1162,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr ""
@ -2101,6 +2122,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2258,6 +2282,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2417,6 +2444,11 @@ msgstr ""
msgid "WAV"
msgstr ""
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -346,6 +346,9 @@ msgstr "Ужыць кампрэсію для прадухілення скажэ
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Вы сапраўды жадаеце выдаліць настройку \"%1\"?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -516,6 +519,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Прагляд малюнкаў у Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Пстрыкніце тут, каб дадаць музыку"
@ -914,10 +920,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1165,6 +1177,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr ""
@ -2116,6 +2137,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2273,6 +2297,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2432,6 +2459,11 @@ msgstr ""
msgid "WAV"
msgstr ""
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -351,6 +351,9 @@ msgstr "Прилагане на компресия за да се предотв
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Сигурни ли сте,че искате да изтриете \"%1\" настройката?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr "Сигурни ли сте,че иската да нулирате статистиката за тази песен"
@ -522,6 +525,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Клементин мениджър на изображения"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Натиснете тук за да добавите музика"
@ -924,10 +930,16 @@ msgstr "Грешка при копиране на песни"
msgid "Error deleting songs"
msgstr "Грешка при изтриване на песни"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Грешка при зареждане на %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Грешка при обработване на %1: %2"
@ -1185,6 +1197,15 @@ msgstr "Информация"
msgid "Insert..."
msgstr "Вмъкване..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Интернет"
@ -2144,6 +2165,9 @@ msgstr "Лек"
msgid "Soft Rock"
msgstr "Лек рок"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Информация за песен"
@ -2313,6 +2337,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr "Това е iPod,но вие сте компилирали Клементин без подръжка за libgpod"
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2475,6 +2502,11 @@ msgstr "Име на тома"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -343,6 +343,9 @@ msgstr "Koazhañ a-benn pareañ an troc'hadennoù"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Ha sur oc'h da gaout c'hoant skarzhan an talvoud raktermenet « %1»"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -508,6 +511,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Gweler skeudennoù Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Klikit aze evit krouiñ ho levraoueg sonerezh"
@ -900,10 +906,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1151,6 +1163,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr ""
@ -2103,6 +2124,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2260,6 +2284,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2419,6 +2446,11 @@ msgstr ""
msgid "WAV"
msgstr ""
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -354,6 +354,9 @@ msgstr "Afegir compressió per evitar el clipping"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Estas segur de que vols esborrar el \"%1\" preestablert?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -527,6 +530,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Visor d'imatges Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Fes click aquí per afegir música"
@ -928,10 +934,16 @@ msgstr "Error copiant cançons"
msgid "Error deleting songs"
msgstr "Error esborrant cançons"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Error carregant %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Error processant %1: %2"
@ -1184,6 +1196,15 @@ msgstr "Informació"
msgid "Insert..."
msgstr "Insereix..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2140,6 +2161,9 @@ msgstr "Suau"
msgid "Soft Rock"
msgstr "Rock suau"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2304,6 +2328,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2466,6 +2493,11 @@ msgstr ""
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -353,6 +353,9 @@ msgstr "Použít zhuštění kvůli zabránění stříhání"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Jste si jistý, že chcete smazat \"%1\" přednastavení?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr "Jste si jistý, že chcete statistiku k této písničce nastavit znovu?"
@ -524,6 +527,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Prohlížeč obrázků pro Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Zde klepněte pro přidání nějaké hudby"
@ -924,10 +930,16 @@ msgstr "Chyba při kopírování písniček"
msgid "Error deleting songs"
msgstr "Chyba při mazání písniček"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Chyba při nahrávání %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Chyba při zpracovávání %1: %2"
@ -1186,6 +1198,15 @@ msgstr "Informace"
msgid "Insert..."
msgstr "Vložit..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2141,6 +2162,9 @@ msgstr "Měkké"
msgid "Soft Rock"
msgstr "Měkčí rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Informace o písničce"
@ -2309,6 +2333,9 @@ msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
"Toto je zařízení iPod, ale Clementine byla sestavena bez podpory pro libgpod."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2471,6 +2498,11 @@ msgstr "Název hlasitosti"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "WAV"

View File

@ -342,6 +342,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr ""
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr ""
@ -899,10 +905,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1150,6 +1162,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr ""
@ -2101,6 +2122,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2258,6 +2282,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2417,6 +2444,11 @@ msgstr ""
msgid "WAV"
msgstr ""
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -342,6 +342,9 @@ msgstr "Påfør kompression for at undgå klipping"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Vil du slettet \"%1\"-forudindstilling?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Klik her for at tilføje musik"
@ -901,10 +907,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1154,6 +1166,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr ""
@ -2107,6 +2128,9 @@ msgstr "Soft"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2264,6 +2288,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2423,6 +2450,11 @@ msgstr ""
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -354,6 +354,9 @@ msgstr "Komprimieren um Clippingfehler zu vermeiden"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Profil \"%1\" wirklich löschen?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -527,6 +530,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Clementine Bildbetrachter"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Klicken Sie hier um das zu ändern"
@ -927,10 +933,16 @@ msgstr "Fehler beim Kopieren der Titel"
msgid "Error deleting songs"
msgstr "Fehler beim Löschen der Titel"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Fehler beim Laden von %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Fehler bei %1: %2"
@ -1188,6 +1200,15 @@ msgstr "Information"
msgid "Insert..."
msgstr "Einfügen..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2143,6 +2164,9 @@ msgstr "Soft"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Titelinformationen"
@ -2314,6 +2338,9 @@ msgstr ""
"Dies ist ein iPod, aber Clementine wurde ohne Unterstützung für libgpod "
"kompiliert."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2476,6 +2503,11 @@ msgstr "Volumename"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "WAV"

View File

@ -357,6 +357,9 @@ msgstr "Εφαρμογή συμπίεσης για αποφυγή κολλημά
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Είστε σίγουροι πως θέλετε να διαγράψετε τη ρύθμιση \"%1\";"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
"Είστε σίγουροι πως θέλετε να επαναφέρετε τα στατιστικά του τραγουδιού;"
@ -531,6 +534,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Προβολή εικόνων του Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Κλικ εδώ για να προσθέσετε μουσική"
@ -935,10 +941,16 @@ msgstr "Σφάλμα κατά την αντιγραφή τραγουδιών"
msgid "Error deleting songs"
msgstr "Σφάλμα κατά την διαγραφή τραγουδιών"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Σφάλμα φόρτωσης του %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Σφάλμα επεξεργασίας %1: %2"
@ -1198,6 +1210,15 @@ msgstr "Πληροφορία"
msgid "Insert..."
msgstr "Εισαγωγή..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Διαδίκτυο"
@ -2157,6 +2178,9 @@ msgstr "Απαλή"
msgid "Soft Rock"
msgstr "Απαλή Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Πληροφορίες τραγουδιού"
@ -2329,6 +2353,9 @@ msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
"Αυτό είναι iPod, αλλά φτιάξατε τον Clementine χωρίς υποστήριξη της libgpod."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2492,6 +2519,11 @@ msgstr "Όνομα τομέα"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -341,6 +341,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr ""
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -506,6 +509,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr ""
@ -898,10 +904,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1149,6 +1161,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr ""
@ -2100,6 +2121,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2257,6 +2281,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2416,6 +2443,11 @@ msgstr ""
msgid "WAV"
msgstr ""
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -342,6 +342,9 @@ msgstr "Apply compression to prevent clipping"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Are you sure you want to delete the \"%1\" preset?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Click here to add some music"
@ -902,10 +908,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Error processing %1: %2"
@ -1154,6 +1166,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2107,6 +2128,9 @@ msgstr "Soft"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2264,6 +2288,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2423,6 +2450,11 @@ msgstr ""
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -342,6 +342,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Are you sure you want to delete the \"%1\" preset?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Click here to add some music"
@ -900,10 +906,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1152,6 +1164,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr ""
@ -2104,6 +2125,9 @@ msgstr "Soft"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2261,6 +2285,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2420,6 +2447,11 @@ msgstr ""
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -342,6 +342,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr ""
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr ""
@ -899,10 +905,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1150,6 +1162,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr ""
@ -2101,6 +2122,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2258,6 +2282,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2417,6 +2444,11 @@ msgstr ""
msgid "WAV"
msgstr ""
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -357,6 +357,9 @@ msgstr "Aplicar compresión para evitar clipping"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "¿Está seguro de que quiere eliminar la predefinición \"%1\"?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
"¿Está seguro de que desea reinicializar las estadísticas de esta canción?"
@ -531,6 +534,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Visor de imágenes de Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Haz clic aquí para añadir música"
@ -933,10 +939,16 @@ msgstr "Error copiando canciones"
msgid "Error deleting songs"
msgstr "Error al borrar canciones"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Error cargando %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Error procesando %1: %2"
@ -1197,6 +1209,15 @@ msgstr "Información"
msgid "Insert..."
msgstr "Insertar..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2156,6 +2177,9 @@ msgstr "Soft"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Información de la canción"
@ -2323,6 +2347,9 @@ msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
"Esto es un iPod, pero ha compilado Clementine sin soporte para libgpod."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2484,6 +2511,11 @@ msgstr "Nombre del volumen"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -342,6 +342,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr ""
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr ""
@ -900,10 +906,16 @@ msgstr "Viga laulude kopeerimisel"
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1152,6 +1164,15 @@ msgstr "Informatsioon"
msgid "Insert..."
msgstr "Lisa..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2104,6 +2125,9 @@ msgstr "Mahe"
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Laulu andmed"
@ -2261,6 +2285,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2420,6 +2447,11 @@ msgstr ""
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -342,6 +342,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr ""
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr ""
@ -899,10 +905,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1150,6 +1162,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr ""
@ -2101,6 +2122,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2258,6 +2282,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2417,6 +2444,11 @@ msgstr ""
msgid "WAV"
msgstr ""
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -342,6 +342,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr ""
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Napsauta tästä lisätäksesi musiikkia"
@ -899,10 +905,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1151,6 +1163,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2103,6 +2124,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2260,6 +2284,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2419,6 +2446,11 @@ msgstr ""
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -359,6 +359,9 @@ msgstr "Appliquer une compression pour prévenir les coupures"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Êtes-vous sûr de vouloir supprimer la valeur prédéfinie « %1»"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
"Êtes vous sûr de vouloir réinitialiser les statistiques de ce morceau ?"
@ -532,6 +535,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Visionneur d'images de Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Cliquez ici pour créer votre bibliothèque musicale"
@ -934,10 +940,16 @@ msgstr "Erreur lors de la copie des morceaux"
msgid "Error deleting songs"
msgstr "Erreur lors de la suppression des morceaux"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Erreur lors du chargement de %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Erreur lors du traitement de %1: %2"
@ -1198,6 +1210,15 @@ msgstr "Information"
msgid "Insert..."
msgstr "Insérer..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2158,6 +2179,9 @@ msgstr "Soft"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Informations sur le morceau"
@ -2331,6 +2355,9 @@ msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
"Ceci est un iPod, mais vous avez compilé Clementine sans le support libgpod."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2493,6 +2520,11 @@ msgstr "Nom du volume"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -346,6 +346,9 @@ msgstr "Aplicar compresión para evitar clipping"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Está certo que quer apagar o \"%1\" predefinido?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -515,6 +518,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Clique aqui para adicionar música"
@ -907,10 +913,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1159,6 +1171,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr ""
@ -2111,6 +2132,9 @@ msgstr "Soft"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2268,6 +2292,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2427,6 +2454,11 @@ msgstr ""
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -348,6 +348,9 @@ msgstr "כווץ כדי למנוע חיתוך"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "האם אתה בטוח שברצונך למחוק את האפשרות הקבועה \"%1\"?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr "האם לאפס את סטטיסטיקות השיר?"
@ -517,6 +520,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "מציג התמונות של Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "לחץ כאן כדי להוסיף מוזיקה"
@ -914,10 +920,16 @@ msgstr "שגיאה בהעתקת שירים"
msgid "Error deleting songs"
msgstr "שגיאה במחיקת שירים"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "שגיאה בטעינת %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "שגיאה בעיבוד %1: %2"
@ -1170,6 +1182,15 @@ msgstr "מידע"
msgid "Insert..."
msgstr "הכנס..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "אינטרנט"
@ -2123,6 +2144,9 @@ msgstr "רך"
msgid "Soft Rock"
msgstr "רוק קל"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "מידע אודות השיר"
@ -2283,6 +2307,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr "זהו iPod, אולם Clementine לא קומפל עם תמיכה ב-libgpod."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2444,6 +2471,11 @@ msgstr "שם מחיצה"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -342,6 +342,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr ""
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr ""
@ -899,10 +905,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1150,6 +1162,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr ""
@ -2101,6 +2122,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2258,6 +2282,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2417,6 +2444,11 @@ msgstr ""
msgid "WAV"
msgstr ""
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -352,6 +352,9 @@ msgstr "Primjenite kompresiju da spriječite isječak"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Jeste li sigurni da želite izbrisati \"%1\" postavke?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr "Jeste li sigurni da želite resetirati statistiku pjesama?"
@ -523,6 +526,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Clementine preglednik slika"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Kliknite ovdje za dodavanje glazbe"
@ -923,10 +929,16 @@ msgstr "Pogreška u kopiranju pjesama"
msgid "Error deleting songs"
msgstr "Pogreška u brisanju pjesama"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Pogreška pri učitavanju %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Pogreška pri obradi %1: %2"
@ -1182,6 +1194,15 @@ msgstr "Informacije"
msgid "Insert..."
msgstr "Umetni..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2136,6 +2157,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Informacije o pjesmi"
@ -2302,6 +2326,9 @@ msgstr "Ovo je MTP uređaj, kompajlirali ste Clementine bez libmtp potpore."
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr "Ovo je iPod uređaj, kompajlirali ste Clementine bez libgpod potpore."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2463,6 +2490,11 @@ msgstr ""
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -351,6 +351,9 @@ msgstr "Tömörítés engedélyezése a túlvezérlés elkerülése érdekében"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Biztos benne, hogy törli a \"%1\" beállítást?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
"Biztos vagy benne, hogy visszaállítod ennek a számnak a statisztikáit?"
@ -524,6 +527,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Clementine képmegjelenítő"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Zene felvételéhez kattintson ide"
@ -926,10 +932,16 @@ msgstr "Hiba történt a számok másolása közben"
msgid "Error deleting songs"
msgstr "Hiba történt a számok törlése közben"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Hiba %1 betöltésekor"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Hiba %1: %2 feldolgozásakor"
@ -1188,6 +1200,15 @@ msgstr "Információ"
msgid "Insert..."
msgstr "Beszúrás..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2143,6 +2164,9 @@ msgstr "Lágy"
msgid "Soft Rock"
msgstr "Lágy Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Száminformációk"
@ -2311,6 +2335,9 @@ msgstr ""
"Ez az eszköz egy iPod, de a Clementine libgpod támogatás nélkül lett "
"fordítva."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2472,6 +2499,11 @@ msgstr "Meghajtó név"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "WAV"

View File

@ -357,6 +357,9 @@ msgstr "Applica la compressione per evitare il taglio"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Sei sicuro di voler eliminare la preimpostazione \"%1\"?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr "Sei sicuro di voler azzerare le statistiche del brano?"
@ -527,6 +530,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Visualizzatore immagini di Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Fai clic qui per aggiungere della musica"
@ -927,10 +933,16 @@ msgstr "Errore durante la copia dei brani"
msgid "Error deleting songs"
msgstr "Errore durante l'eliminazione dei brani"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Errore durante il caricamento di %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Errore durante l'elaborazione di %1: %2"
@ -1191,6 +1203,15 @@ msgstr "Informazioni"
msgid "Insert..."
msgstr "Inserisci..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2149,6 +2170,9 @@ msgstr "Leggere"
msgid "Soft Rock"
msgstr "Rock leggero"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Informazioni brano"
@ -2322,6 +2346,9 @@ msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
"Questo è un iPod, ma hai compilato Clementine senza il supporto a libgpod."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2484,6 +2511,11 @@ msgstr "Nome del volume"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -347,6 +347,9 @@ msgstr "圧縮を適用してクリップを禁止する"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "\"%1\" プリセットを削除してもよろしいですか?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr "この曲の統計をリセットしてもよろしいですか?"
@ -516,6 +519,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Clementine イメージ ビューアー"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "ミュージックを追加するにはここをクリックします"
@ -917,10 +923,16 @@ msgstr "曲のコピー エラー"
msgid "Error deleting songs"
msgstr "曲の削除エラー"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "%1 の読み込みエラー"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "%1 の処理エラー: %2"
@ -1177,6 +1189,15 @@ msgstr "情報"
msgid "Insert..."
msgstr "挿入..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "インターネット"
@ -2131,6 +2152,9 @@ msgstr "Soft"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "曲の情報"
@ -2294,6 +2318,9 @@ msgstr ""
"これは iPod ですが、Clementine は libgpod サポートなしでコンパイルされていま"
"す。"
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2455,6 +2482,11 @@ msgstr "ボリューム名"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -342,6 +342,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr ""
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr ""
@ -899,10 +905,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1152,6 +1164,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr ""
@ -2103,6 +2124,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2260,6 +2284,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2419,6 +2446,11 @@ msgstr ""
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -352,6 +352,9 @@ msgstr "Pritaikyti suspaudimą, kad išvengti nukirtimų"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Ar tikrai norite ištrinti \"%1\" šabloną?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr "Ar tikrai norite atstatyti šios dainos statistiką?"
@ -523,6 +526,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Clementine nuotraukų peržiūros programa"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Paspauskite čia, kad pridėti muzikos"
@ -923,10 +929,16 @@ msgstr "Klaida kopijuojant dainas"
msgid "Error deleting songs"
msgstr "Klaida trinant dainas"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Klaida įkeliant %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Klaida apdorojant %1: %2"
@ -1182,6 +1194,15 @@ msgstr "Informacija"
msgid "Insert..."
msgstr "Įterpti..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internetas"
@ -2138,6 +2159,9 @@ msgstr "Rami"
msgid "Soft Rock"
msgstr "Ramus rokas"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Dainos informacija"
@ -2300,6 +2324,9 @@ msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
"Tai yra iPod įrenginys, bet jūs sukompiliavę Clementine be libgpod palaikymo."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2461,6 +2488,11 @@ msgstr "Rinkinio pavadinimas"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -345,6 +345,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Er du sikker på at du vil slette \"%1\" innstillingen?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -514,6 +517,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Klikk her for å legge til musikk"
@ -911,10 +917,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1164,6 +1176,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internett"
@ -2116,6 +2137,9 @@ msgstr "Myk"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2274,6 +2298,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2433,6 +2460,11 @@ msgstr ""
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -354,6 +354,9 @@ msgstr "Compressie toepassen om vervorming te voorkomen."
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Weet u zeker dat u voorinstelling \"%1\" wilt wissen?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -524,6 +527,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Klik hier om muziek toe te voegen"
@ -924,10 +930,16 @@ msgstr "Fout tijdens het kopiëren van de liedjes"
msgid "Error deleting songs"
msgstr "Fout tijdens het verwijderen van de liedjes"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Fout bij laden van %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Fout bij verwerken van %1: %2"
@ -1183,6 +1195,15 @@ msgstr "Informatie"
msgid "Insert..."
msgstr "Invoegen..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2141,6 +2162,9 @@ msgstr "Zacht"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2314,6 +2338,9 @@ msgstr ""
"Dit is een iPod maar u hebt Clementine gecompileerd zonder libgpod "
"ondersteuning."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2475,6 +2502,11 @@ msgstr "Volumenaam"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -342,6 +342,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr ""
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr ""
@ -899,10 +905,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1150,6 +1162,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Sus Internet"
@ -2101,6 +2122,9 @@ msgstr "Soft"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2258,6 +2282,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2417,6 +2444,11 @@ msgstr ""
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -351,6 +351,9 @@ msgstr "Skompresuj, aby zapobiec przesterowaniu"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Na pewno chcesz usunąć ustawienie \"%1\"?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr "Na pewno zresetować statystykę tego utworu?"
@ -522,6 +525,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Przeglądarka obrazów Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Kliknij, aby dodać jakąś muzykę"
@ -922,10 +928,16 @@ msgstr "Błąd przy kopiowaniu utworów"
msgid "Error deleting songs"
msgstr "Błąd przy usuwaniu utworów"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Błąd wczytywania %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Błąd przetwarzania %1: %2"
@ -1184,6 +1196,15 @@ msgstr "Informacja"
msgid "Insert..."
msgstr "Wstaw..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2142,6 +2163,9 @@ msgstr "Miękki"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Informacje o utworze"
@ -2307,6 +2331,9 @@ msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
"To jest urządzenie iPod, ale skompilowałeś Clementine bez obsługi libgpod."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2468,6 +2495,11 @@ msgstr "Nazwa woluminu"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -353,6 +353,9 @@ msgstr "Aplicar compressão para prevenir o corte"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Tem a certeza que quer apagar o pré-ajuste \"%1\"?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr "Tem a certeza que que reiniciar as estatísticas desta música?"
@ -527,6 +530,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Visualizador de imagens do Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Clique aqui para adicionar músicas"
@ -927,10 +933,16 @@ msgstr "Erro ao copiar músicas"
msgid "Error deleting songs"
msgstr "Erro ao apagar músicas"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Erro ao carregar %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Erro ao processar %1: %2"
@ -1187,6 +1199,15 @@ msgstr "Informações"
msgid "Insert..."
msgstr "Inserir..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2144,6 +2165,9 @@ msgstr "Suave"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Informações da música"
@ -2315,6 +2339,9 @@ msgstr ""
"Este é um dispositivo iPod, mas você compilou o Clementine sem suporte a "
"libgpod."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2476,6 +2503,11 @@ msgstr "Nome do disco"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -350,6 +350,9 @@ msgstr "Aplicar compressão para prevenir travamento"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Tem certeza que deseja apagar a pré-regulagem \"%1\" ?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr "Você tem certeza que quer limpar as estatísticas dessa música?"
@ -520,6 +523,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Visualizador de imagens do Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Clique aqui para adicionar algumas músicas"
@ -920,10 +926,16 @@ msgstr "Erro ao copiar músicas"
msgid "Error deleting songs"
msgstr "Erro ao apagar músicas"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Erro carregando %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Erro processando %1:%2"
@ -1183,6 +1195,15 @@ msgstr "Informação"
msgid "Insert..."
msgstr "Inserir..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2141,6 +2162,9 @@ msgstr "Suave"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Informações da música"
@ -2310,6 +2334,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr "Este é um iPod, mas você compilou o Clementine sem suporte a libgpod"
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2471,6 +2498,11 @@ msgstr "Nome do volume"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -342,6 +342,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Sigur doriți să ștergeți presetarea \"%1\"?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Clic aici pentru a adăuga muzică"
@ -899,10 +905,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1151,6 +1163,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr ""
@ -2102,6 +2123,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2259,6 +2283,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2418,6 +2445,11 @@ msgstr ""
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -349,6 +349,9 @@ msgstr "Применить компрессию для предотвращен
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Вы действительно хотите удалить настройку \"%1\"?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr "Вы действительно хотите сбросить статистику этих песен?"
@ -520,6 +523,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Просмотр изображений в Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Щелкните здесь, чтобы добавить музыку"
@ -919,10 +925,16 @@ msgstr "Ошибка копирования композиций"
msgid "Error deleting songs"
msgstr "Ошибка удаления композиций"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Ошибка загрузки %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Ошибка при обработке %1: %2"
@ -1182,6 +1194,15 @@ msgstr "Сведения"
msgid "Insert..."
msgstr "Вставить..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Интернет"
@ -2138,6 +2159,9 @@ msgstr "Soft"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Информация о композиции"
@ -2305,6 +2329,9 @@ msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
"Это iPod, а ваша версия Clementine скомпилирована без поддержки libgpod."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2467,6 +2494,11 @@ msgstr "Имя тома"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -350,6 +350,9 @@ msgstr "Použiť kompresiu na zabránenie odrezávania"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Ste si istý, že chcete vymazať predvoľbu \"%1\"?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr "Ste si istý, že chcete zresetovať štatistiky tejto piesne?"
@ -520,6 +523,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Clementine prehliadač obrázkov"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Kliknite sem aby ste pridali nejakú hudbu"
@ -920,10 +926,16 @@ msgstr "Chyba pri kopírovaní piesní"
msgid "Error deleting songs"
msgstr "Chyba pri vymazávaní piesní"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Chyba pri načítavaní %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Chyba spracovania %1: %2"
@ -1180,6 +1192,15 @@ msgstr "Informácie"
msgid "Insert..."
msgstr "Vložiť..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2133,6 +2154,9 @@ msgstr "Soft"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Informácie o piesni"
@ -2302,6 +2326,9 @@ msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
"Toto síce je iPod, ale skompilovali ste Clementine bez podpory libgpod."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2463,6 +2490,11 @@ msgstr "Názov diskového oddielu"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -352,6 +352,9 @@ msgstr "Uporabi stiskanje za preprečitev odrezanja"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Ali resnično želite izbrisati prednastavitev \"%1\"?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr "Ste prepričani, da želite ponastaviti statistike te skladbe"
@ -524,6 +527,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Pregledovalnik datotek Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Kliknite sem za dodajanje glasbe"
@ -924,10 +930,16 @@ msgstr "Napaka pri kopiranju skladb"
msgid "Error deleting songs"
msgstr "Napaka pri brisanju skladb"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Napaka med nalaganjem %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Napaka med obdelavo %1: %2"
@ -1184,6 +1196,15 @@ msgstr "Podrobnosti"
msgid "Insert..."
msgstr "Vstavi ..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Medmrežje"
@ -2139,6 +2160,9 @@ msgstr "Soft"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Podrobnosti o skladbi"
@ -2307,6 +2331,9 @@ msgstr "To je naprava MTP, Clementine pa je preveden brez podpore libmtp."
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr "To je naprava iPod, Clementine pa je preveden brez podpore libgpod."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2468,6 +2495,11 @@ msgstr "Ime nosilca"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "WAV"

View File

@ -342,6 +342,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Сигурнисте да желите обрисати претподешавање \"%1\"?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Кликни овде да додате неку музику"
@ -902,10 +908,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Грешка при учитавању %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Грешка при обради %1: %2"
@ -1154,6 +1166,15 @@ msgstr ""
msgid "Insert..."
msgstr "Убаци..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Интернет"
@ -2107,6 +2128,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2264,6 +2288,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2423,6 +2450,11 @@ msgstr ""
msgid "WAV"
msgstr "ВАВ"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -352,6 +352,9 @@ msgstr "Tillämpa komprimering för att förhindra distorsion"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Är du säker på att du vill ta bort förinställningen \"%1\"?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -524,6 +527,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Clementine-bildvisare"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Klicka här för att lägga till musik"
@ -925,10 +931,16 @@ msgstr "Fel vid kopiering av låtar"
msgid "Error deleting songs"
msgstr "Fel vid borttagning av låtar"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Fel vid insläsning av %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Fel vid bearbetning av %1: %2"
@ -1184,6 +1196,15 @@ msgstr "Information"
msgid "Insert..."
msgstr "Infoga..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2137,6 +2158,9 @@ msgstr "Soft"
msgid "Soft Rock"
msgstr "Soft Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Låtinformation"
@ -2306,6 +2330,9 @@ msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
"Detta är en iPod, men du kompilerade Clementine utan stöd av libgpod."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2467,6 +2494,11 @@ msgstr "Volymnamn"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "WAV"

View File

@ -349,6 +349,9 @@ msgstr "Kesintiyi engellemek için sıkıştırma uygula"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "\"%1\" ayarını silmek istediğinizden emin misiniz?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -518,6 +521,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Clementine resim görüntüleyici"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Parça eklemek için buraya tıklayın"
@ -918,10 +924,16 @@ msgstr "Şarkılar kopyalanırken hata"
msgid "Error deleting songs"
msgstr "Şarkılar silinirken hata"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "%1 yüklenirken hata"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "%1 işlenirken hata: %2"
@ -1178,6 +1190,15 @@ msgstr "Bilgi"
msgid "Insert..."
msgstr "Ekle..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Internet"
@ -2133,6 +2154,9 @@ msgstr "Hafif"
msgid "Soft Rock"
msgstr "Hafif Rock"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Şarkı Bilgisi"
@ -2292,6 +2316,9 @@ msgstr "Bu bir MTP aygıtı fakat Clementine libmtp desteği olmadan derlenmiş.
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr "Bu bir iPod fakat Clementine libgpod desteği olmadan derlenmiş."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2453,6 +2480,11 @@ msgstr "Hacim adı"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -331,6 +331,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr ""
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -496,6 +499,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr ""
@ -888,10 +894,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1139,6 +1151,15 @@ msgstr ""
msgid "Insert..."
msgstr ""
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr ""
@ -2090,6 +2111,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2247,6 +2271,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2406,6 +2433,11 @@ msgstr ""
msgid "WAV"
msgstr ""
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""

View File

@ -351,6 +351,9 @@ msgstr "Застосувати стиснення для запобігання
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr "Ви дійсно хочите вилучити задане \"%1\"?"
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr "Впевнені, що бажаєте скинути статистику цієї композиції?"
@ -521,6 +524,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Переглядач зображень Clementine"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "Клацніть тут, щоб додати музику"
@ -920,10 +926,16 @@ msgstr "Помилка копіювання композицій"
msgid "Error deleting songs"
msgstr "Помилка вилучення композицій"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "Помилка завантаження %1"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "Помилка обробляння %1: %2"
@ -1182,6 +1194,15 @@ msgstr "Інформація"
msgid "Insert..."
msgstr "Вставити..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "Інтернет"
@ -2136,6 +2157,9 @@ msgstr "Легка"
msgid "Soft Rock"
msgstr "Легкий рок"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "Про композицію"
@ -2299,6 +2323,9 @@ msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
"Це пристрій iPod, але ви скомпілювали Clementine без підтримки libgpod."
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2460,6 +2487,11 @@ msgstr "Назва тому"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -342,6 +342,9 @@ msgstr ""
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr ""
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -507,6 +510,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr "Clementine 图像查看器"
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "点击此处添加一些音乐"
@ -899,10 +905,16 @@ msgstr "复制曲目出错"
msgid "Error deleting songs"
msgstr "删除曲目出错"
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr "载入 %1 出错"
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr "处理 %1 出错:%2"
@ -1151,6 +1163,15 @@ msgstr "信息"
msgid "Insert..."
msgstr "插入..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "互联网"
@ -2102,6 +2123,9 @@ msgstr ""
msgid "Soft Rock"
msgstr ""
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr "曲目信息"
@ -2259,6 +2283,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2418,6 +2445,11 @@ msgstr "卷名称"
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr "Wav"

View File

@ -345,6 +345,9 @@ msgstr "使用壓縮,以防止截波失真"
msgid "Are you sure you want to delete the \"%1\" preset?"
msgstr ""
msgid "Are you sure you want to install the following scripts?"
msgstr ""
msgid "Are you sure you want to reset this song's statistics?"
msgstr ""
@ -510,6 +513,9 @@ msgstr ""
msgid "Clementine image viewer"
msgstr ""
msgid "Clementine scripts"
msgstr ""
msgid "Click here to add some music"
msgstr "點擊此處加入一些音樂"
@ -902,10 +908,16 @@ msgstr ""
msgid "Error deleting songs"
msgstr ""
msgid "Error installing script"
msgstr ""
#, qt-format
msgid "Error loading %1"
msgstr ""
msgid "Error opening script archive"
msgstr ""
#, qt-format
msgid "Error processing %1: %2"
msgstr ""
@ -1154,6 +1166,15 @@ msgstr ""
msgid "Insert..."
msgstr "插入..."
msgid "Install from file..."
msgstr ""
msgid "Install script file"
msgstr ""
msgid "Install scripts"
msgstr ""
msgid "Internet"
msgstr "網際網路"
@ -2105,6 +2126,9 @@ msgstr "輕柔的音樂"
msgid "Soft Rock"
msgstr "比較輕柔的搖滾樂"
msgid "Some files failed to install. The script may not work correctly."
msgstr ""
msgid "Song Information"
msgstr ""
@ -2262,6 +2286,9 @@ msgstr ""
msgid "This is an iPod, but you compiled Clementine without libgpod support."
msgstr ""
msgid "This is not a valid Clementine script file."
msgstr ""
msgid ""
"This is the first time you have connected this device. Clementine will now "
"scan the device to find music files - this may take some time."
@ -2421,6 +2448,11 @@ msgstr ""
msgid "WAV"
msgstr "WAV"
msgid ""
"Warning: scripts have full access to your computer and your music. Only "
"install scripts that you trust."
msgstr ""
msgid "Wav"
msgstr ""